diff --git a/spec/System/TestCompareBuySimilar_spec.lua b/spec/System/TestCompareBuySimilar_spec.lua new file mode 100644 index 00000000000..e69c147d08a --- /dev/null +++ b/spec/System/TestCompareBuySimilar_spec.lua @@ -0,0 +1,107 @@ +describe("Buy similar mod stat matching", function() + local bs = LoadModule("Classes/CompareBuySimilar") + + describe("addModEntries mod matching", function() + it("matches impossible escape mods as options", function() + local fromNothing = new("Item", [[ +Impossible Escape +Viridian Jewel +LevelReq: 0 +Radius: Small +Limited to: 1 +Implicits: 0 +Passive skills in radius of Elemental Overload can be Allocated without being connected to your tree +Corrupted]]) + + local modSources = { + { list = fromNothing.explicitModLines, type = "explicit" } + } + local modEntries = bs.addModEntries(fromNothing, modSources) + assert.equal(1, #modEntries) + assert.same( + { + formattedLines = { colorCodes.MAGIC .. "Passive skills in radius of Elemental Overload can be Allocated without being connected to your tree" }, + type = + "explicit", + isOption = true, + invert = false, + tradeIds = { "explicit.stat_2422708892" }, + value = 22088 + }, + modEntries[1]) + + local thread = new("Item", [[ +Rarity: UNIQUE +Thread of Hope +Crimson Jewel +Radius: Variable +Implicits: 0 +Only affects Passives in Massive Ring +-15% to all Elemental Resistances +Passive Skills in Radius can be Allocated without being connected to your tree +Passage]]) + local modSources = { + { list = thread.explicitModLines, type = "explicit" } + } + local modEntries = bs.addModEntries(thread, modSources) + assert.equal(4, #modEntries) + assert.equal(modEntries[1].tradeIds[1], "explicit.stat_3642528642") + assert.equal(modEntries[1].value, 5) + end) + + it("combines mods that are the same stat", function() + local lifeDiamond = new("Item", [[ +Test Subject +Diamond +Implicits: 0 ++100 to Maximum Life ++50 to Maximum Life ++50% to Fire Resistance]]) + + local entries = bs.addModEntries(lifeDiamond, { { list = lifeDiamond.explicitModLines, type = "explicit" } }) + assert.equal(2, #entries) + assert.equal(2, #entries[1].formattedLines) + assert.equal("+100 to Maximum Life", StripEscapes(entries[1].formattedLines[1])) + assert.equal("+50 to Maximum Life", StripEscapes(entries[1].formattedLines[2])) + assert.equal(150, entries[1].value) + + local lifelessDiamond = new("Item", [[ +Test Subject +Diamond +Implicits: 0 +-100 to Maximum Life ++50 to Maximum Life ++50% to Fire Resistance]]) + local entries = bs.addModEntries(lifelessDiamond, + { { list = lifelessDiamond.explicitModLines, type = "explicit" } }) + assert.equal(2, #entries) + assert.equal(2, #entries[1].formattedLines) + assert.equal(-50, entries[1].value) + end) + + it("is not case-sensitive", function () + local funnyItem = new("Item", [[ +Test Subject +Diamond +Implicits: 1 ++50 tO MaxIMum lifE]]) + + local entries = bs.addModEntries(funnyItem, {{list = funnyItem.implicitModLines, type = "implicit"}}) + assert.equal(1, #entries) + end) + + it("does not combine implicit and explicit mods", function() + local lifelessDiamond = new("Item", [[ +Test Subject +Diamond +Implicits: 1 +-100 to Maximum Life ++50 to Maximum Life]]) + local entries = bs.addModEntries(lifelessDiamond, + { { list = lifelessDiamond.implicitModLines, type = "implicit" }, { list = lifelessDiamond.explicitModLines, type = "explicit" } }) + assert.equal(2, #entries) + assert.equal(-100, entries[1].value) + assert.equal(50, entries[2].value) + end) + end) +end) diff --git a/spec/System/TestTradeHelpers_spec.lua b/spec/System/TestTradeHelpers_spec.lua new file mode 100644 index 00000000000..fcc328dad92 --- /dev/null +++ b/spec/System/TestTradeHelpers_spec.lua @@ -0,0 +1,130 @@ +describe("TradeHelpers trade hash matching", function() + local tradeHelpers = LoadModule("Classes/TradeHelpers") + + ---@param ids number[] + ---@param expected number + ---@return boolean contains whether the given array contains the expected id + local function contains(ids, expected) + for _, id in ipairs(ids) do + if id == expected then return true end + end + return false + end + + describe("modLineValue", function() + it("returns the single number on a line", function() + assert.equal(50, tradeHelpers.modLineValue("+50 to maximum Life")) + end) + + it("returns the midpoint of a '# to #' range", function() + assert.equal(15, tradeHelpers.modLineValue("Adds 10 to 20 Fire Damage")) + assert.equal(12.5, tradeHelpers.modLineValue("Adds 10 to 15 Fire Damage")) + end) + + it("handles negative numbers", function() + assert.equal(-10, tradeHelpers.modLineValue("-10% to Fire Resistance")) + end) + + it("returns nil when onlyFromTo is set and there is no range", function() + assert.is_nil(tradeHelpers.modLineValue("+50 to maximum Life", true)) + end) + end) + + describe("findTradeIdOption", function() + it("matches a '#'-valued option and returns its value", function() + local tradeId, value = tradeHelpers.findTradeIdOption("Grants Level 20 Summon Bestial Snake Skill", + "explicit") + assert.equal("explicit.stat_2878779644", tradeId) + assert.equal(3, value) + end) + + it("matches an exact-text option and returns no value", function() + local tradeId, value = tradeHelpers.findTradeIdOption("Allocates Tranquility", "enchant") + assert.equal("enchant.stat_2954116742", tradeId) + assert.equal(16246, value) + end) + + it("matches a timeless jewel", function() + local tradeId, value = tradeHelpers.findTradeIdOption( + "Bathed in the blood of 666 sacrificed in the name of Doryani", "explicit") + assert.equal("explicit.pseudo_timeless_jewel_doryani", tradeId) + assert.equal(666, value) + end) + + it("returns nil for an unmatchable line", function() + assert.is_nil(tradeHelpers.findTradeIdOption("+100 to IQ", "explicit")) + end) + end) + describe("findTradeHash", function() + it("matches a simple mod", function() + local ids, value = tradeHelpers.findTradeHash("+50 to maximum Life") + assert.equal(50, value) + assert.is_true(contains(ids, HashStats({ "base_maximum_life" }))) + end) + + it("matches a percentage mod", function() + local ids, value = tradeHelpers.findTradeHash("25% reduced maximum Energy Shield") + assert.equal(25, value) + assert.is_true(contains(ids, HashStats({ "maximum_energy_shield_+%" }))) + end) + + it("matches a # to # mod", function() + local ids, value = tradeHelpers.findTradeHash("Adds 5 to 15 Fire Damage") + assert.equal(10, value) + assert.is_true(contains(ids, + HashStats({ "local_minimum_added_fire_damage", "local_maximum_added_fire_damage" }))) + end) + + it("is case-insensitive", function() + local ids = tradeHelpers.findTradeHash( + "1 aDDED PASSiVe sKilL IS ONE wITh The ShiELd") + assert.is_true(contains(ids, HashStats({ "local_affliction_notable_one_with_the_shield" }))) + end) + + it("returns no results for an unmatchable line", function() + local ids = tradeHelpers.findTradeHash("+100 to IQ") + assert.equal(0, #ids) + end) + + it("works thrice in a row", function() + local a = tradeHelpers.findTradeHash("+50 to maximum Life") + local b = tradeHelpers.findTradeHash("+50 to maximum Life") + local c = tradeHelpers.findTradeHash("+50 to maximum Life") + assert.same(a, b) + assert.same(b, c) + end) + + it("detects inverted mods correctly", function() + -- note that this stat is a handwrap mod and doesn't actually exist on the trade site + local ids, value, shouldNegate = tradeHelpers.findTradeHash( + "Debuffs on you expire 100% slower while affected by Haste") + assert.equal(100, value) + assert.is_true(shouldNegate) + assert.equal(1, #ids) + + local ids, value, shouldNegate = tradeHelpers.findTradeHash("67% reduced maximum life") + assert.equal(67, value) + assert.is_true(shouldNegate) + assert.equal(1, #ids) + end) + it("detects mods with lua pattern characters correctly", function() + local ids, value = tradeHelpers.findTradeHash( + "trigger Socketed Spells when you focus, with a 0.25 second cooldown") + assert.is_true(contains(ids, HashStats({ "trigger_socketed_spells_when_you_focus_%" }))) + assert.equal(100, value) + + local ids, value, shouldNegate = tradeHelpers.findTradeHash( + "10% reduced effect of Non-Curse Auras from your Skills on your Minions") + assert.is_true(contains(ids, HashStats({ "minions_have_non_curse_aura_effect_+%_from_parent_skills" }))) + assert.equal(10, value) + assert.is_true(shouldNegate) + end) + it("detects passage modline correctly", function() + local ids = tradeHelpers.findTradeHash( + "Passive Skills in Radius can be Allocated without being connected to your tree") + assert.is_true(contains(ids, + HashStats({ "local_unique_jewel_nearby_disconnected_passives_can_be_allocated", + "unique_thread_of_hope_base_resist_all_elements_%" }))) + end) + end) +end) diff --git a/src/Classes/CompareBuySimilar.lua b/src/Classes/CompareBuySimilar.lua index 698d5be9b83..c6418ed8a81 100644 --- a/src/Classes/CompareBuySimilar.lua +++ b/src/Classes/CompareBuySimilar.lua @@ -6,7 +6,16 @@ local t_insert = table.insert local m_floor = math.floor local dkjson = require "dkjson" -local tradeHelpers = LoadModule("Classes/CompareTradeHelpers") +local tradeHelpers = LoadModule("Classes/TradeHelpers") +local tradeStats = tradeHelpers.getTradeStats() + +-- used to check what stats actually exist on the trade site. +local existingStats = {} +for _, cat in ipairs(tradeStats or {}) do + for _, entry in ipairs(cat.entries) do + existingStats[entry.id] = true + end +end local M = {} @@ -19,8 +28,8 @@ local REALM_API_IDS = { -- Listed status display names and their API option values local LISTED_STATUS_OPTIONS = { - { label = "Instant Buyout & In Person", apiValue = "available" }, { label = "Instant Buyout", apiValue = "securable" }, + { label = "Instant Buyout & In Person", apiValue = "available" }, { label = "In Person (Online)", apiValue = "online" }, { label = "Any", apiValue = "any" }, } @@ -29,17 +38,7 @@ for i, entry in ipairs(LISTED_STATUS_OPTIONS) do LISTED_STATUS_LABELS[i] = entry.label end --- Helper: create a numeric EditControl without +/- spinner buttons -local function newPlainNumericEdit(anchor, rect, init, prompt, limit) - local ctrl = new("EditControl", anchor, rect, init, prompt, "%D", limit) - -- Remove the +/- spinner buttons that "%D" filter triggers - ctrl.isNumeric = false - if ctrl.controls then - if ctrl.controls.buttonDown then ctrl.controls.buttonDown.shown = false end - if ctrl.controls.buttonUp then ctrl.controls.buttonUp.shown = false end - end - return ctrl -end + -- Build the trade search URL based on popup selections local function buildURL(item, slotName, controls, modEntries, defenceEntries, isUnique) @@ -84,7 +83,7 @@ local function buildURL(item, slotName, controls, modEntries, defenceEntries, is end else -- Category filter - local categoryStr = tradeHelpers.getTradeCategory(slotName, item) + local categoryStr, _ = tradeHelpers.getTradeCategory(slotName, item) if categoryStr then queryFilters.type_filters = { filters = { @@ -137,17 +136,45 @@ local function buildURL(item, slotName, controls, modEntries, defenceEntries, is -- Mod filters for i, entry in ipairs(modEntries) do local prefix = "mod" .. i - if entry.tradeId and controls[prefix .. "Check"] and controls[prefix .. "Check"].state then - local minVal = tonumber(controls[prefix .. "Min"].buf) - local maxVal = tonumber(controls[prefix .. "Max"].buf) - local filter = { id = entry.tradeId } - local value = {} - if minVal then value.min = minVal end - if maxVal then value.max = maxVal end - if next(value) then - filter.value = value + local function getFilter(tradeId) + local filter = { id = tradeId } + if entry.isOption then + -- timeless jewels use a min max range despite matching as an option + filter.value = tradeId:match("timeless") and { min = entry.value, max = entry.value } or + { option = entry.value } + elseif entry.value then + local minVal = tonumber(controls[prefix .. "Min"].buf) + local maxVal = tonumber(controls[prefix .. "Max"].buf) + local value = {} + if minVal then + value.min = minVal + end + if maxVal then + value.max = maxVal + end + if entry.invert then + value.min, value.max = value.max, value.min + value.min = value.min and -value.min + value.max = value.max and -value.max + end + if next(value) then + filter.value = value + end + end + return filter + end + if controls[prefix .. "Check"] and controls[prefix .. "Check"].state then + if #entry.tradeIds == 1 then + -- 1 id entries are added to the stat filters section + t_insert(queryTable.query.stats[1].filters, getFilter(entry.tradeIds[1])) + elseif #entry.tradeIds > 1 then + -- ambiguous entries are added as a separate count filter + local countFilter = { type = "count", value = { min = 1 }, filters = {} } + for _, tradeId in ipairs(entry.tradeIds) do + t_insert(countFilter.filters, getFilter(tradeId)) + end + t_insert(queryTable.query.stats, countFilter) end - t_insert(queryTable.query.stats[1].filters, filter) end end @@ -171,52 +198,110 @@ local function buildURL(item, slotName, controls, modEntries, defenceEntries, is return url end +---@param item any +---@param modTypeSources ModTypeSources +---@return table[] entries mod entries used in buy similar popup +function M.addModEntries(item, modTypeSources) + local modEntries = {} + -- this adds a single aggregated entry for matching stats (e.g. transformed flat dmg mods) which + -- avoids issues with confusing results. mods with different types are not summed as e.g. + -- implicit and explicit mods are separate in the search. options are also avoided as they don't + -- represent values that can be added combined + local function insertOrAddToExisting(entry) + for _, existingFilter in ipairs(modEntries) do + -- check if all result trade ids are equal + local sameHashes = #entry.tradeIds > 0 and tableDeepEquals(entry.tradeIds, existingFilter.tradeIds) + if sameHashes and existingFilter.type == entry.type then + if entry.value then + local value = (entry.invert ~= existingFilter.invert) and -entry.value or entry.value or 0 + existingFilter.value = (existingFilter.value or 0) + value + end + t_insert(existingFilter.formattedLines, entry.formattedLines[1]) + return + end + ::continue:: + end + t_insert(modEntries, entry) + end + for _, source in ipairs(modTypeSources) do + if source.list then + for _, modLine in ipairs(source.list) do + if item:CheckModLineVariant(modLine) then + local modLine = copyTable(modLine) + -- remove unsupported data. the formatting of unsupported + -- mods is confusing here + modLine.extra = nil + local formatted = itemLib.formatModLine(modLine) + if formatted then + -- Use range-resolved text for matching + local resolvedLine = (modLine.range and itemLib.applyRange(modLine.line, modLine.range, modLine.valueScalar)) or + modLine.line + -- check option first, because even if we match a line via the descriptors, the values for option-based stats are different + local tradeId, value = tradeHelpers.findTradeIdOption(resolvedLine, source.type) + + local entry = { + -- this array will always start with one line, but if multiple mods are + -- aggregated together it will contain the original mod lines for each + formattedLines = { formatted }, + type = source.type, + isOption = not not tradeId, + invert = false, + tradeIds = { tradeId }, + value = value, + } + if not tradeId then + local resultHashes, value, invert = tradeHelpers.findTradeHash(resolvedLine) + -- convert hashes to string ids + local resultIds = {} + if resultHashes then + for idx = 1, #resultHashes do + local id = string.format("%s.stat_%s", source.type, resultHashes[idx]) + if existingStats[id] then + t_insert(resultIds, id) + end + end + end + entry.tradeIds = resultIds + entry.value = value + entry.invert = invert + end + insertOrAddToExisting(entry) + end + end + end + end + end + return modEntries +end -- Open the Buy Similar popup for a compared item function M.openPopup(item, slotName, primaryBuild) if not item then return end local isUnique = item.rarity == "UNIQUE" or item.rarity == "RELIC" local controls = {} + local uri = "" local rowHeight = 24 local popupWidth = 700 local leftMargin = 20 local minFieldX = popupWidth - 130 local maxFieldX = popupWidth - 50 - local fieldW = 60 + local fieldW = 74 local fieldH = 20 local checkboxSize = 20 - -- Collect mod entries with trade IDs - local modEntries = {} + ---@class ModTypeSources local modTypeSources = { + { list = item.enchantModLines, type = "enchant" }, { list = item.implicitModLines, type = "implicit" }, - { list = item.enchantModLines, type = "enchant" }, - { list = item.scourgeModLines, type = "explicit" }, { list = item.explicitModLines, type = "explicit" }, - { list = item.crucibleModLines, type = "explicit" }, + { list = item.scourgeModLines, type = "scourge" } + -- disabled due to matching difficulty. the trade site searches for + -- crucible mods, while for other things, it matches by stats + -- { list =item.crucibleModLines, type = "crucible" }, } - for _, source in ipairs(modTypeSources) do - if source.list then - for _, modLine in ipairs(source.list) do - if item:CheckModLineVariant(modLine) then - local formatted = itemLib.formatModLine(modLine) - if formatted then - -- Use range-resolved text for matching - local resolvedLine = (modLine.range and itemLib.applyRange(modLine.line, modLine.range, modLine.valueScalar)) or modLine.line - local tradeId = tradeHelpers.findTradeModId(resolvedLine, source.type) - local value = tradeHelpers.modLineValue(resolvedLine) - t_insert(modEntries, { - line = modLine.line, - formatted = formatted:gsub("%^x%x%x%x%x%x%x", ""):gsub("%^%x", ""), -- strip color codes - tradeId = tradeId, - value = value, - modType = source.type, - }) - end - end - end - end - end + + -- Collect mod entries with trade IDs + local modEntries = M.addModEntries(item, modTypeSources) -- Collect defence stats for non-unique gear items local defenceEntries = {} @@ -251,6 +336,7 @@ function M.openPopup(item, slotName, primaryBuild) -- Helper to fetch and populate leagues for a given realm API id local function fetchLeaguesForRealm(realmApiId) + local lastIdx = M.lastLeagueIdx controls.leagueDrop:SetList({"Loading..."}) controls.leagueDrop.selIndex = 1 tradeQueryRequests:FetchLeagues(realmApiId, function(leagues, errMsg) @@ -273,33 +359,60 @@ function M.openPopup(item, slotName, primaryBuild) t_insert(leagueList, "Ruthless") t_insert(leagueList, "Hardcore Ruthless") controls.leagueDrop:SetList(leagueList) + -- default to sc + for i,v in ipairs(controls.leagueDrop.list) do + if not v:match("^HC") then + controls.leagueDrop:SetSel(i) + break + end + end + if lastIdx then + controls.leagueDrop:SetSel(lastIdx) + end end) end + local function rebuildUrl() + local result = buildURL(item, slotName, controls, modEntries, defenceEntries, isUnique) + uri = result + end -- Realm dropdown controls.realmLabel = new("LabelControl", {"TOPLEFT", nil, "TOPLEFT"}, {leftMargin, ctrlY, 0, 16}, "^7Realm:") controls.realmDrop = new("DropDownControl", {"LEFT", controls.realmLabel, "RIGHT"}, {4, 0, 80, 20}, {"PC", "PS4", "Xbox"}, function(index, value) local realmApiId = REALM_API_IDS[value] or "pc" fetchLeaguesForRealm(realmApiId) + rebuildUrl() + M.lastRealmIdx = index end) + if M.lastRealmIdx then + controls.realmDrop:SetSel(M.lastRealmIdx, true) + end -- League dropdown controls.leagueLabel = new("LabelControl", {"LEFT", controls.realmDrop, "RIGHT"}, {12, 0, 0, 16}, "^7League:") controls.leagueDrop = new("DropDownControl", {"LEFT", controls.leagueLabel, "RIGHT"}, {4, 0, 160, 20}, {"Loading..."}, function(index, value) -- League selection stored in the dropdown itself + rebuildUrl() + M.lastLeagueIdx = index end) controls.leagueDrop.enabled = function() return #controls.leagueDrop.list > 0 and controls.leagueDrop.list[1] ~= "Loading..." end -- Listed status dropdown controls.listedDrop = new("DropDownControl", {"TOPRIGHT", nil, "TOPRIGHT"}, {-leftMargin, ctrlY, 242, 20}, LISTED_STATUS_LABELS, function(index, value) -- Listed status selection stored in the dropdown itself + rebuildUrl() + M.lastListedIndex = index end) + if M.lastListedIndex then + controls.listedDrop:SetSel(M.lastListedIndex, true) + end controls.listedLabel = new("LabelControl", {"RIGHT", controls.listedDrop, "LEFT"}, {-4, 0, 0, 16}, "^7Listed:") -- Fetch initial leagues for default realm fetchLeaguesForRealm("pc") ctrlY = ctrlY + rowHeight + 4 + if isUnique then -- Unique item name label controls.nameLabel = new("LabelControl", nil, {0, ctrlY, 0, 16}, "^x" .. (colorCodes[item.rarity] or "FFFFFF"):gsub("%^x","") .. item.name) @@ -311,24 +424,24 @@ function M.openPopup(item, slotName, primaryBuild) ctrlY = ctrlY + rowHeight -- Base type checkbox - controls.baseTypeCheck = new("CheckBoxControl", nil, {-popupWidth/2 + leftMargin + checkboxSize/2, ctrlY, checkboxSize}, "", nil, nil) + controls.baseTypeCheck = new("CheckBoxControl", nil, {-popupWidth/2 + leftMargin + checkboxSize/2, ctrlY, checkboxSize}, "", rebuildUrl) controls.baseTypeLabel = new("LabelControl", {"LEFT", controls.baseTypeCheck, "RIGHT"}, {4, 0, 0, 16}, "^7Use specific base: " .. (item.baseName or "Unknown")) ctrlY = ctrlY + rowHeight -- Item level ctrlY = ctrlY + 4 controls.ilvlLabel = new("LabelControl", {"TOPLEFT", nil, "TOPLEFT"}, {leftMargin, ctrlY, 0, 16}, "^7Item Level:") - controls.ilvlMin = newPlainNumericEdit(nil, {minFieldX - popupWidth/2, ctrlY, fieldW, fieldH}, "", "Min", 4) - controls.ilvlMax = newPlainNumericEdit(nil, {maxFieldX - popupWidth/2, ctrlY, fieldW, fieldH}, "", "Max", 4) + controls.ilvlMin = tradeHelpers.newPlainNumericEdit(nil, { minFieldX - popupWidth / 2, ctrlY, fieldW, fieldH }, "", "Min", 4, true, rebuildUrl) + controls.ilvlMax = tradeHelpers.newPlainNumericEdit(nil, { maxFieldX - popupWidth / 2, ctrlY, fieldW, fieldH }, "", "Max", 4, true, rebuildUrl) ctrlY = ctrlY + rowHeight -- Defence stat rows for i, def in ipairs(defenceEntries) do local prefix = "def" .. i - controls[prefix .. "Check"] = new("CheckBoxControl", nil, {-popupWidth/2 + leftMargin + checkboxSize/2, ctrlY, checkboxSize}, "", nil, nil) + controls[prefix .. "Check"] = new("CheckBoxControl", nil, {-popupWidth/2 + leftMargin + checkboxSize/2, ctrlY, checkboxSize}, "", rebuildUrl) controls[prefix .. "Label"] = new("LabelControl", {"LEFT", controls[prefix .. "Check"], "RIGHT"}, {4, 0, 0, 16}, "^7" .. def.label) - controls[prefix .. "Min"] = newPlainNumericEdit(nil, {minFieldX - popupWidth/2, ctrlY, fieldW, fieldH}, tostring(m_floor(def.value)), "Min", 6) - controls[prefix .. "Max"] = newPlainNumericEdit(nil, {maxFieldX - popupWidth/2, ctrlY, fieldW, fieldH}, "", "Max", 6) + controls[prefix .. "Min"] = tradeHelpers.newPlainNumericEdit(nil, { minFieldX - popupWidth / 2, ctrlY, fieldW, fieldH }, tostring(m_floor(def.value)), "Min", 6, true, rebuildUrl) + controls[prefix .. "Max"] = tradeHelpers.newPlainNumericEdit(nil, { maxFieldX - popupWidth / 2, ctrlY, fieldW, fieldH }, "", "Max", 6, true, rebuildUrl) ctrlY = ctrlY + rowHeight end @@ -339,51 +452,75 @@ function M.openPopup(item, slotName, primaryBuild) end -- Mod rows + local prevType for i, entry in ipairs(modEntries) do + -- add extra row to separate e.g. implicits + if prevType and prevType ~= entry.type then + ctrlY = ctrlY + rowHeight + end + prevType = entry.type local prefix = "mod" .. i - local canSearch = entry.tradeId ~= nil - controls[prefix .. "Check"] = new("CheckBoxControl", nil, {-popupWidth/2 + leftMargin + checkboxSize/2, ctrlY, checkboxSize}, "", nil, nil) + local canSearch = #entry.tradeIds > 0 + + local rows = #entry.formattedLines + + local fontSize = 16 + -- adjust down by half a text row for each row over 1 + local controlYPos = ctrlY + (rows - 1) * 8 + local checkBoxXPos = -popupWidth/2 + leftMargin + checkboxSize/2 + controls[prefix .. "Check"] = new("CheckBoxControl", nil, {checkBoxXPos, controlYPos, checkboxSize}, "", rebuildUrl) controls[prefix .. "Check"].enabled = function() return canSearch end + + -- Truncate long mod text to fit - local displayText = entry.formatted - if #displayText > 45 then - displayText = displayText:sub(1, 42) .. "..." + --- @type string[] + local displayTexts = entry.formattedLines + for index, displayText in ipairs(displayTexts) do + -- shorten time-lost jewel affix labels to fit better + displayText = displayText:gsub(" Passive Skills in Radius also grant", ":") + local colorCodeLength = displayText:match("(%^x%x%x%x%x%x%x)") or displayText:gsub("(%^%x)", "") or "" + + if not canSearch then + -- strip color codes and replace with gray + displayText = "^8" .. displayText:gsub("%^x%x%x%x%x%x%x", ""):gsub("%^%x", "") + end + if #displayText > (#colorCodeLength + 62) then + displayText = displayText:sub(1, #colorCodeLength + 54) .. "..." + end + displayTexts[index] = displayText end - controls[prefix .. "Label"] = new("LabelControl", {"LEFT", controls[prefix .. "Check"], "RIGHT"}, {4, 0, 0, 16}, (canSearch and "^7" or "^8") .. displayText) - controls[prefix .. "Min"] = newPlainNumericEdit(nil, {minFieldX - popupWidth/2, ctrlY, fieldW, fieldH}, entry.value ~= 0 and tostring(m_floor(entry.value)) or "", "Min", 8) - controls[prefix .. "Max"] = newPlainNumericEdit(nil, {maxFieldX - popupWidth/2, ctrlY, fieldW, fieldH}, "", "Max", 8) - if not canSearch then - controls[prefix .. "Min"].enabled = function() return false end - controls[prefix .. "Max"].enabled = function() return false end + + + local displayText = table.concat(displayTexts, "\n") + -- labels anchor based on the first row instead of the middle row, so adjust upwards + local labelXOffset = (rows - 1) * -8 + + controls[prefix .. "Label"] = new("LabelControl", {"LEFT", controls[prefix .. "Check"], "RIGHT"},{ 4, labelXOffset, 0, fontSize }, + displayText) + -- when the trade site has a dropdown for the value, we opt to disable + -- the inputs as they are numeric + if not (entry.isOption or entry.needsExactValue) and entry.value then + controls[prefix .. "Min"] = tradeHelpers.newPlainNumericEdit(nil, { minFieldX - popupWidth / 2, controlYPos, fieldW, fieldH }, entry.value ~= 0 and tostring(entry.value) or "", "Min", 8, nil, rebuildUrl) + controls[prefix .. "Max"] = tradeHelpers.newPlainNumericEdit(nil, { maxFieldX - popupWidth / 2, controlYPos, fieldW, fieldH }, "", "Max", 8, nil, rebuildUrl) + if not canSearch then + controls[prefix .. "Min"].enabled = function() return false end + controls[prefix .. "Max"].enabled = function() return false end + end end - ctrlY = ctrlY + rowHeight + ctrlY = ctrlY + math.max(rowHeight, fontSize*rows + 8) end -- Search button ctrlY = ctrlY + 8 - controls.search = new("ButtonControl", nil, {0, ctrlY, 110, 20}, "Generate URL", function() - local success, result = pcall(function() - return buildURL(item, slotName, controls, modEntries, defenceEntries, isUnique) - end) - if success and result then - controls.uri:SetText(result, true) - elseif not success then - controls.uri:SetText("Error: " .. tostring(result), true) - else - controls.uri:SetText("Error: could not determine league", true) - end - end) - ctrlY = ctrlY + rowHeight + 4 - - -- URL field - controls.uri = new("EditControl", nil, {-30, ctrlY, popupWidth - 100, fieldH}, "", nil, "^%C\t\n") - controls.uri:SetPlaceholder("Press 'Generate URL' then Ctrl+Click to open") - controls.uri.tooltipFunc = function(tooltip) - tooltip:Clear() - if controls.uri.buf and controls.uri.buf ~= "" then - tooltip:AddLine(16, "^7Ctrl + Click to open in web browser") - end + controls.search = new("ButtonControl", nil, {0, ctrlY, 110, 20}, "Open URL", function() + Copy(uri) + OpenURL(uri) + end, nil) + controls.search.tooltipText = "The URL is also copied to the clipboard." + controls.search.enabled = function() + return uri and uri ~= "" end + controls.close = new("ButtonControl", nil, {popupWidth/2 - 50, ctrlY, 60, 20}, "Close", function() main:ClosePopup() end) diff --git a/src/Classes/CompareTab.lua b/src/Classes/CompareTab.lua index 24506313c6c..0b95248aa79 100644 --- a/src/Classes/CompareTab.lua +++ b/src/Classes/CompareTab.lua @@ -9,11 +9,11 @@ local m_min = math.min local m_max = math.max local m_floor = math.floor local s_format = string.format -local dkjson = require "dkjson" -local tradeHelpers = LoadModule("Classes/CompareTradeHelpers") +local tradeHelpers = LoadModule("Classes/TradeHelpers") local buySimilar = LoadModule("Classes/CompareBuySimilar") local calcsHelpers = LoadModule("Classes/CompareCalcsHelpers") local buildListHelpers = LoadModule("Modules/BuildListHelpers") +local itemSlotHelper = LoadModule("Modules/ItemSlotHelper") local configVisibility = LoadModule("Modules/ConfigVisibility") -- Node IDs below this value are normal passive tree nodes; IDs at or above are cluster jewel nodes @@ -1231,6 +1231,10 @@ function CompareTabClass:ImportBuild(xmlText, label) t_insert(self.compareEntries, entry) self.activeCompareIndex = #self.compareEntries self:UpdateBuildSelector() + -- Restore primary build's window title + if self.primaryBuild.spec then + self.primaryBuild.spec:SetWindowTitleWithBuildClass() + end return true end return false @@ -3798,13 +3802,33 @@ function CompareTabClass:DrawItems(vp, compareEntry, inputEvents) drawY = drawY + maxH + 6 else -- === COMPACT MODE === + local slot = self.primaryBuild.itemsTab.slots[equipSlotName] + local nodeId = slot and slot.nodeId + local shouldUnderline = not not nodeId local pHover, cHover, b1Hover, b2Hover, b3Hover, b2X, b2Y, b2W, b2H, rowHoverItem, rowHoverItemsTab, rowHoverX, rowHoverY, rowHoverW, rowHoverH = tradeHelpers.drawCompactSlotRow(drawY, label, pItem, cItem, colWidth, cursorX, cursorY, labelW, self.primaryBuild.itemsTab, compareEntry.itemsTab, pWarn, cWarn, slotMissing, - LAYOUT.itemsCopyBtnW, LAYOUT.itemsCopyBtnH, LAYOUT.itemsBuyBtnW, LAYOUT.itemsEquipBtnW, scrollOffsetX) - + LAYOUT.itemsCopyBtnW, LAYOUT.itemsCopyBtnH, LAYOUT.itemsBuyBtnW, LAYOUT.itemsEquipBtnW, scrollOffsetX, + shouldUnderline) + + local labelX = (scrollOffsetX or 0) + 10 + -- draw passive tree view when hovering over the label, if the slot is a jewel socket + if labelX <= cursorX and cursorX <= (labelX + labelW) + and drawY < cursorY and cursorY <= (drawY + 20) then + if nodeId then + local boxSize = 250 + -- anchor bottom left to label top left, keeping in mind what our viewport was + SetViewport() + local boxX = vp.x + labelX + local boxY = (vp.y + checkboxOffset) + drawY - boxSize + itemSlotHelper.DrawViewer(self.primaryBuild.itemsTab, nodeId, boxX, boxY, boxSize, + boxSize) + -- restore viewport + SetViewport(vp.x, vp.y + checkboxOffset, vp.width, scrollViewH) + end + end if rowHoverItem then hoverItem = rowHoverItem hoverItemsTab = rowHoverItemsTab diff --git a/src/Classes/ItemSlotControl.lua b/src/Classes/ItemSlotControl.lua index d7b549f3a26..3c5958c5a03 100644 --- a/src/Classes/ItemSlotControl.lua +++ b/src/Classes/ItemSlotControl.lua @@ -7,6 +7,7 @@ local pairs = pairs local t_insert = table.insert local m_min = math.min +local itemSlotHelper = LoadModule("Modules/ItemSlotHelper") local ItemSlotClass = newClass("ItemSlotControl", "DropDownControl", function(self, anchor, x, y, itemsTab, slotName, slotLabel, nodeId) self.DropDownControl(anchor, {x, y, 310, 20}, { }, function(index, value) if self.items[index] ~= self.selItemId then @@ -135,30 +136,15 @@ function ItemSlotClass:Draw(viewPort) self.DropDownControl:Draw(viewPort) self:DrawControls(viewPort) if not main.popups[1] and self.nodeId and (self.dropped or (self:IsMouseOver() and (self.otherDragSource or not self.itemsTab.selControl))) then - SetDrawLayer(nil, 15) + local width = 308 + local height = 280 local viewerY if self.DropDownControl.dropUp and self.DropDownControl.dropped then viewerY = y + 20 else - viewerY = m_min(y - 300 - 5, viewPort.y + viewPort.height - 304) + viewerY = m_min(y - height - 4, viewPort.y + viewPort.height - height) end - local viewerX = x - SetDrawColor(1, 1, 1) - DrawImage(nil, viewerX, viewerY, 304, 304) - local viewer = self.itemsTab.socketViewer - local node = self.itemsTab.build.spec.nodes[self.nodeId] - viewer.zoom = 5 - local scale = self.itemsTab.build.spec.tree.size / 1500 - viewer.zoomX = -node.x / scale - viewer.zoomY = -node.y / scale - SetViewport(viewerX + 2, viewerY + 2, 300, 300) - viewer:Draw(self.itemsTab.build, { x = 0, y = 0, width = 300, height = 300 }, { }) - SetDrawLayer(nil, 30) - SetDrawColor(1, 1, 1, 0.2) - DrawImage(nil, 149, 0, 2, 300) - DrawImage(nil, 0, 149, 300, 2) - SetViewport() - SetDrawLayer(nil, 0) + itemSlotHelper.DrawViewer(self.itemsTab, self.nodeId, x, viewerY, width, height) end end diff --git a/src/Classes/ItemsTab.lua b/src/Classes/ItemsTab.lua index e6083ea7839..c7b952077d4 100644 --- a/src/Classes/ItemsTab.lua +++ b/src/Classes/ItemsTab.lua @@ -14,6 +14,7 @@ local m_min = math.min local m_ceil = math.ceil local m_floor = math.floor local m_modf = math.modf +local buySimilar = LoadModule("Classes/CompareBuySimilar") local rarityDropList = { { label = colorCodes.NORMAL.."Normal", rarity = "NORMAL" }, @@ -353,6 +354,15 @@ holding Shift will put it in the second.]]) self:SetDisplayItem() end) + self.controls.displayItemBuySimilar = new("ButtonControl", + { "LEFT", self.controls.removeDisplayItem, "RIGHT", true }, + { 8, 0, 100, 20 }, "Buy similar", function() + local itemSlot = self:GetComparisonSlotNameForItem(self.displayItem) + buySimilar.openPopup(self.displayItem, itemSlot, self.build) + end) + self.controls.displayItemBuySimilar.shown = function() + return self.displayItem + end -- Section: Variant(s) self.controls.displayItemSectionVariant = new("Control", {"TOPLEFT",self.controls.addDisplayItem,"BOTTOMLEFT"}, {0, 8, 0, function() @@ -2056,6 +2066,20 @@ function ItemsTabClass:GetEquippedSlotForItem(item) end end +function ItemsTabClass:GetComparisonSlotNameForItem(item) + local equippedSlot = self:GetEquippedSlotForItem(item) + if equippedSlot then + return equippedSlot.slotName + end + if item.type == "Jewel" then + for _, slot in ipairs(self.orderedSlots) do + if not slot.inactive and slot.selItemId == 0 and slot:IsShown() and self:IsItemValidForSlot(item, slot.slotName) then + return slot.slotName + end + end + end + return item:GetPrimarySlot() +end -- Check if the given item could be equipped in the given slot, taking into account possible conflicts with currently equipped items -- For example, a shield is not valid for Weapon 2 if Weapon 1 is a staff, and a wand is not valid for Weapon 2 if Weapon 1 is a dagger function ItemsTabClass:IsItemValidForSlot(item, slotName, itemSet) diff --git a/src/Classes/CompareTradeHelpers.lua b/src/Classes/TradeHelpers.lua similarity index 51% rename from src/Classes/CompareTradeHelpers.lua rename to src/Classes/TradeHelpers.lua index eb1802348d8..7cb67ac368b 100644 --- a/src/Classes/CompareTradeHelpers.lua +++ b/src/Classes/TradeHelpers.lua @@ -4,109 +4,104 @@ -- Stateless trade mod lookup/matching and item display helper functions -- local m_floor = math.floor -local dkjson = require "dkjson" -local queryModsData -do - local queryModFile = io.open("Data/QueryMods.lua", "r") - if queryModFile then - queryModFile:close() - queryModsData = LoadModule("Data/QueryMods") +local statDescData = require("Data.StatDescriptions.stat_descriptions") + +-- precalculate patterns used for matching stat lines +local numberPattern = "%%d%+%%.%?%%d*" +for _, statDescEntry in ipairs(statDescData) do + for _, desc in ipairs(statDescEntry[1] or {}) do + -- pob doesn't parse this as a part of other mods + desc.text = desc.text:gsub("\nPassage", "") + desc.pat = desc.text + -- ignore uppercase letters to help custom items match + :lower() + -- remove minus and plus signs + :gsub("%-{", "{") + :gsub("%+{", "{") + -- escape existing characters + :gsub("([%(%)%.%%%+%-%*%?%[%]%^%$])", "%%%1") + -- match # to # as one block since the trade site uses the midpoint. these don't seem to + -- ever have plus or minus signs, and can't be negative as even flat damage turns into + -- flat damage against you instead of being negative + :gsub("{.-} to {.-}", string.format("(%s to %s)", numberPattern, numberPattern)) + + -- match number variables like {}, {0}, {0:-d}, {0:+d}, or {:d} + :gsub("{.-}", + -- and add optional plus and number signs. this is not necessarily correct as some + -- stats do require the plus sign to parse, but this simplifies handling reflected + -- mods + "%%%+%?(%%%-%?" .. numberPattern .. ")") end end local M = {} -- Helper: get rarity color code for an item +--- @param item table function M.getRarityColor(item) if not item then return "^7" end - if item.rarity == "UNIQUE" then return colorCodes.UNIQUE - elseif item.rarity == "RARE" then return colorCodes.RARE - elseif item.rarity == "MAGIC" then return colorCodes.MAGIC - else return colorCodes.NORMAL end + if item.rarity and colorCodes[item.rarity] then + return colorCodes[item.rarity] + else + return "^7" + end end -- Helper: normalize a mod line by replacing numbers with "#" for template matching +--- @param line string function M.modLineTemplate(line) -- Replace decimal numbers first (e.g. "1.5"), then integers - return line:gsub("[%d]+%.?[%d]*", "#") + return line:gsub("%-?[%d]+%.?[%d]*", "#") end --- Helper: extract the first number from a mod line for value comparison -function M.modLineValue(line) - return tonumber(line:match("[%d]+%.?[%d]*")) or 0 +-- Helper: extract the first number from a mod line for value comparison, or in the case of # to # +-- mods, the midpoint of that range +--- @param line string +--- @param onlyFromTo? boolean whether we should only check for # to # matches +function M.modLineValue(line, onlyFromTo) + local low, high = line:match("(%-?%d+%.?%d*) to (%-?%d+%.?%d*)") + if low and high then + return (tonumber(low) + tonumber(high)) / 2 + elseif onlyFromTo then + return nil + end + return tonumber(line:match("%-?[%d]+%.?[%d]*")) end --- Helper: lazily build a reverse lookup from QueryMods tradeMod.text → tradeMod.id -local _tradeModLookup = nil -local function getTradeModLookup() - if _tradeModLookup then return _tradeModLookup end - _tradeModLookup = {} - if not queryModsData then return _tradeModLookup end - for _groupName, mods in pairs(queryModsData) do - for _modKey, modData in pairs(mods) do - if type(modData) == "table" and modData.tradeMod then - local text = modData.tradeMod.text - local modType = modData.tradeMod.type or "explicit" - local id = modData.tradeMod.id - local key = text .. "|" .. modType - _tradeModLookup[key] = id - if not _tradeModLookup[text] then - _tradeModLookup[text] = id - end - -- Also store with template-converted text for mods with literal numbers - -- (e.g. "1 Added Passive Skill is X" → "# Added Passive Skill is X") - local template = M.modLineTemplate(text) - if template ~= text then - local templateKey = template .. "|" .. modType - if not _tradeModLookup[templateKey] then - _tradeModLookup[templateKey] = id - end - if not _tradeModLookup[template] then - _tradeModLookup[template] = id +local _tradeStats + +---@return table? tradeStats +function M.getTradeStats() + if _tradeStats then return _tradeStats end + _tradeStats = LoadModule("Data/TradeSiteStats") + return _tradeStats +end + +local _optionTradeStatMap + +---@param tradeStats table table of data from https://www.pathofexile.com/api/trade2/data/stats +---@return table optionTradeStatMap table containing helper data for matching trade option filters +local function getOptionTradeStatMap(tradeStats) + if _optionTradeStatMap then return _optionTradeStatMap end + local optionTradeStatMap = {} + for _, cat in ipairs(tradeStats) do + if cat.id == "enchant" or cat.id == "explicit" or cat.id == "implicit" then + for _, entry in ipairs(cat.entries) do + if entry.option and entry.text:match("#") then + -- pob parses the passage part as a separate mod line, which + -- causes trouble + local matchKey = entry.text:gsub("#", "(.*)"):gsub(" Passage", ""):lower() + -- make options lowercase + for _, option in ipairs(entry.option.options) do + option.text = option.text and option.text:lower() end + optionTradeStatMap[matchKey] = { type = cat.id, options = entry.option.options, tradeId = entry.id } end end end end - return _tradeModLookup -end --- Helper: lazily fetch and cache the trade API stats for comprehensive mod matching --- Covers mods not in QueryMods.lua (cluster enchants, unique-specific mods, etc.) -local _tradeStatsLookup = nil -local _tradeStatsFetched = false -local function getTradeStatsLookup() - if _tradeStatsFetched then return _tradeStatsLookup end - _tradeStatsFetched = true - local tradeStats = "" - local easy = common.curl.easy() - if not easy then return nil end - easy:setopt_url("https://www.pathofexile.com/api/trade/data/stats") - easy:setopt_useragent("Path of Building/" .. (launch.versionNumber or "")) - easy:setopt_writefunction(function(d) - tradeStats = tradeStats .. d - return true - end) - local ok = easy:perform() - easy:close() - if not ok or tradeStats == "" then return nil end - local parsed = dkjson.decode(tradeStats) - if not parsed or not parsed.result then return nil end - _tradeStatsLookup = {} - for _, category in ipairs(parsed.result) do - local catLabel = category.label - for _, entry in ipairs(category.entries) do - local stripped = entry.text:gsub("[#()0-9%-%+%.]", "") - local key = stripped .. "|" .. catLabel - if not _tradeStatsLookup[key] then - _tradeStatsLookup[key] = entry - end - if not _tradeStatsLookup[stripped] then - _tradeStatsLookup[stripped] = entry - end - end - end - return _tradeStatsLookup + return optionTradeStatMap end -- Map source types used in OpenBuySimilarPopup to trade API category labels @@ -116,54 +111,166 @@ M.sourceTypeToCategory = { ["enchant"] = "Enchant", } --- Helper: find the trade stat ID for a mod line -function M.findTradeModId(modLine, modType) - -- Try QueryMods-based lookup - local lookup = getTradeModLookup() - local template = M.modLineTemplate(modLine) - -- Try exact match with type first - local key = template .. "|" .. modType - if lookup[key] then - return lookup[key] +-- inverses a mod. e.g. more x -> less x +--- @param modLine string +function M.swapInverse(modLine) + local priorStr = modLine + local inverseKey + if modLine:match("increased") then + modLine = modLine:gsub("([^ ]+) increased", "-%1 reduced") + if modLine ~= priorStr then inverseKey = "increased" end + elseif modLine:match("reduced") then + modLine = modLine:gsub("([^ ]+) reduced", "-%1 increased") + if modLine ~= priorStr then inverseKey = "reduced" end + elseif modLine:match("more") then + modLine = modLine:gsub("([^ ]+) more", "-%1 less") + if modLine ~= priorStr then inverseKey = "more" end + elseif modLine:match("less") then + modLine = modLine:gsub("([^ ]+) less", "-%1 more") + if modLine ~= priorStr then inverseKey = "less" end + elseif modLine:match("expires ([^ ]+) slower") then + modLine = modLine:gsub("([^ ]+) slower", "-%1 faster") + if modLine ~= priorStr then inverseKey = "slower" end + elseif modLine:match("expires ([^ ]+) faster") then + modLine = modLine:gsub("([^ ]+) faster", "-%1 slower") + if modLine ~= priorStr then inverseKey = "faster" end end - -- Try without leading +/- sign - local stripped = template:gsub("^[%+%-]", "") - key = stripped .. "|" .. modType - if lookup[key] then - return lookup[key] - end - -- Fallback: match by template text only (any type) - if lookup[template] then - return lookup[template] + return modLine, inverseKey +end + + +---@return string? tradeId +---@return number? value Only returned when applicable (primarily timeless jewels) +function M.findTradeIdOption(modLine, modType) + -- match stringify() behaviour and ignore casing + modLine = modLine:gsub("\n", " "):lower() + -- exception: timeless jewels + -- these have special pseudo trade ids and are not options in poe1 + local timelessPatterns = { "bathed in the blood of (%d+) sacrificed in the name of (.+)", + "carved to glorify (%d+) new faithful converted by high templar (.+)", + "commanded leadership over (%d+) warriors under (.+)", + "commissioned (%d+) coins to commemorate (.+)", + "denoted service of (%d+) dekhara in the akhara of (.+)", + "remembrancing (%d+) songworthy deeds by the line of (.+)" } + for _, pat in ipairs(timelessPatterns) do + local value, conqueror = modLine:match(pat) + if conqueror then + return "explicit.pseudo_timeless_jewel_" .. conqueror, tonumber(value) + end end - if lookup[stripped] then - return lookup[stripped] + local tradeStats = M.getTradeStats() + local optionTradeStatMap = getOptionTradeStatMap(tradeStats) + if not tradeStats or not optionTradeStatMap then return end + + -- reformat double-line cluster enchants + modLine = modLine:gsub(".added small passive skills grant: ", " ") + for pat, entry in pairs(optionTradeStatMap) do + local match = modLine:match(pat) + if entry.type == modType and match then + for _, option in ipairs(entry.options) do + if option.text == match then + return entry.tradeId, option.id + end + end + end end +end - -- Try trade API stats (covers mods not in QueryMods) - local tradeStats = getTradeStatsLookup() - if tradeStats then - local strippedLine = modLine:gsub("[#()0-9%-%+%.]", "") - local category = M.sourceTypeToCategory[modType] - if category then - local catKey = strippedLine .. "|" .. category - if tradeStats[catKey] then - return tradeStats[catKey].id +-- Helper: find the trade stat ID for a mod line +---@param modLine string +---@return table[] results Can include more than one result if the results are ambiguous +---@return number? value Might be nil if the line has no sensible number value +---@return boolean shouldNegate whether the mod needs to be negated when given to the trade site +function M.findTradeHash(modLine) + modLine = modLine:lower() + local resultIds = {} + local value + local shouldNegate + local extraStat + -- time-lost jewels don't have proper stat descriptors and need to be handled separately + local timeLostJewelLines = { + ["^notable passive skills in radius also grant "] = "local_jewel_mod_stats_added_to_notable_passives", + ["^small passive skills in radius also grant "] = "local_jewel_mod_stats_added_to_small_passives", + } + for pat, stat in pairs(timeLostJewelLines) do + if modLine:match(pat) then + modLine = modLine:lower():gsub(pat, "") + extraStat = stat + break + end + end + for _, statDescEntry in ipairs(statDescData) do + local statDescriptions = statDescEntry[1] + if not statDescriptions then + goto continue + end + -- by default, the trade site uses the first form listed in the stat descriptions, but there + -- can be a flag that says otherwise + -- local canonical_line = 1 + -- the stat descriptions default to using the first stat for the trade site, but this + -- flag can define it to be another one + local canonical_stat = 1 + local canonical_negated = false + for statFormIdx, statForm in ipairs(statDescriptions) do + local negate = false + for _, flag in ipairs(statForm) do + if (flag.k == "negate" or flag.k == "negate_and_double") and flag.v == 1 then + negate = true + end + if flag.k == "canonical_stat" then + canonical_stat = flag.v + end + if statFormIdx == 1 or (flag.k == "canonical_line" and flag.v) then + -- canonical_line = desc_idx + canonical_negated = negate + end end end - -- Fallback: any category - if tradeStats[strippedLine] then - return tradeStats[strippedLine].id + for _, statForm in ipairs(statDescriptions) do + local negate = false + for _, flag in ipairs(statForm) do + if (flag.k == "negate" or flag.k == "negate_and_double") and flag.v == 1 then + negate = true + end + end + -- stat has no variables + if modLine == statForm.text:lower() then + local tradeHash = HashStats(statDescEntry.stats, extraStat) + table.insert(resultIds, tradeHash) + shouldNegate = false + -- it's hard to know the correct value, but many stats have a form with no variables when the chance to do something is 100%. this should assign a value for those + value = tonumber(statForm.limit and statForm.limit[1] and statForm.limit[1][1]) + goto continue + end + -- ensure no false positives by requiring a full line match. this is not possible in gmatch as it doesn't support ^ + if modLine:match("^" .. statForm.pat .. "$") then + local idx = 1 + for match in modLine:gmatch(statForm.pat) do + -- note that if the desired value isn't the first match and this is a # to #, + -- this will break as it contains two values. however, there is only a single + -- example where # to # are not the first two values currently + local number = tonumber(match) or M.modLineValue(match) + if number and idx == canonical_stat then + shouldNegate = negate ~= canonical_negated + local tradeHash = HashStats(statDescEntry.stats, extraStat) + table.insert(resultIds, tradeHash) + value = number + end + idx = idx + 1 + end + end end + ::continue:: end - - return nil + return resultIds, value, shouldNegate end -- Map slot name + item type to (trade API category string, itemCategoryTags key). -- queryStr: e.g. "armour.shield", "weapon.onemace" -- categoryLabel: e.g. "Shield", "1HMace", "1HWeapon" (nil for flask / generic jewel / unsupported) -function M.getTradeCategoryInfo(slotName, item) +--- @param slotName string +--- @param item table +function M.getTradeCategory(slotName, item) if not slotName then return nil, nil end local itemType = item and (item.type or (item.base and item.base.type)) if slotName:find("^Weapon %d") then @@ -200,14 +307,9 @@ function M.getTradeCategoryInfo(slotName, item) end end --- Helper: map slot name + item type to trade API category string -function M.getTradeCategory(slotName, item) - if not item or not item.base then return nil end - local queryStr = M.getTradeCategoryInfo(slotName, item) - return queryStr -end -- Helper: get a display-friendly category name from slot name +--- @param item table function M.getTradeCategoryLabel(slotName, item) if not item or not item.base then return "Item" end local baseType = item.base.type or item.type @@ -216,6 +318,7 @@ end -- Helper: build a mod comparison map from an item. -- Returns a table keyed by template string → { line = original text, value = first number } +--- @param item table function M.buildModMap(item) local modMap = {} if not item then return modMap end @@ -234,6 +337,8 @@ function M.buildModMap(item) end -- Helper: get diff label string for an item slot comparison +--- @param pItem table +--- @param cItem table function M.getSlotDiffLabel(pItem, cItem) if not pItem and not cItem then return "^8(both empty)" @@ -338,7 +443,7 @@ local ITEM_BOX_H = 20 function M.drawCompactSlotRow(drawY, slotLabel, pItem, cItem, colWidth, cursorX, cursorY, maxLabelW, primaryItemsTab, compareItemsTab, pWarn, cWarn, slotMissing, - copyBtnW, copyBtnH, buyBtnW, equipBtnW, xOffset) + copyBtnW, copyBtnH, buyBtnW, equipBtnW, xOffset, shouldUnderlineLabel) xOffset = xOffset or 0 local pName = pItem and pItem.name or "(empty)" @@ -368,7 +473,13 @@ function M.drawCompactSlotRow(drawY, slotLabel, pItem, cItem, -- Draw slot label SetDrawColor(1, 1, 1) - DrawString(labelX, drawY + 2, "LEFT", 16, "VAR", "^7" .. slotLabel .. ":") + local labelText = "^7" .. slotLabel .. ":" + DrawString(labelX, drawY + 2, "LEFT", 16, "VAR", labelText) + + if shouldUnderlineLabel then + local labelW = DrawStringWidth(16, "VAR", labelText) + DrawImage(nil, labelX, drawY + 2 + 16, labelW, 1) + end -- Draw primary item box local pBorderGray = pHover and 0.5 or 0.33 @@ -417,4 +528,17 @@ function M.drawCompactSlotRow(drawY, slotLabel, pItem, cItem, hoverItem, hoverItemsTab, hoverBoxX, hoverBoxY, hoverBoxW, hoverBoxH end +-- Helper: create a numeric EditControl without +/- spinner buttons, and +-- with a preset changeFunc intended for mod values +function M.newPlainNumericEdit(anchor, rect, init, prompt, limit, integer, changeFunc) + local format = integer and "%D" or "^%d." + local ctrl = new("EditControl", anchor, rect, init, prompt, format, limit, changeFunc) + -- Remove the +/- spinner buttons that "%D" filter triggers + ctrl.isNumeric = false + if ctrl.controls then + if ctrl.controls.buttonDown then ctrl.controls.buttonDown.shown = false end + if ctrl.controls.buttonUp then ctrl.controls.buttonUp.shown = false end + end + return ctrl +end return M diff --git a/src/Classes/TradeQuery.lua b/src/Classes/TradeQuery.lua index 9e1308bfb9e..58b58acfccf 100644 --- a/src/Classes/TradeQuery.lua +++ b/src/Classes/TradeQuery.lua @@ -6,6 +6,7 @@ local dkjson = require "dkjson" +local itemSlotHelper = LoadModule("Modules/ItemSlotHelper") local get_time = os.time local t_insert = table.insert @@ -1007,6 +1008,18 @@ function TradeQueryClass:PriceItemRowDisplay(row_idx, top_pane_alignment_ref, ro controls["bestButton"..row_idx].shown = function() return not self.resultTbl[row_idx] end controls["bestButton"..row_idx].enabled = function() return self.pbLeague end controls["bestButton"..row_idx].tooltipText = "Creates a weighted search to find the highest Stat Value items for this slot." + controls["bestButton" .. row_idx].onHover = function() + local button = controls["bestButton" .. row_idx] + local x, y = button:GetPos() + local buttonWidth, _ = button:GetSize() + local nodeId = slotTbl.nodeId + if not nodeId then return end + local boxSize = 250 + -- anchor bottom to top of button + local viewerY = y - boxSize - 4 + local viewerX = x - boxSize / 2 + buttonWidth / 2 + itemSlotHelper.DrawViewer(self.itemsTab, nodeId, viewerX, viewerY, boxSize, boxSize) + end local pbURL controls["uri"..row_idx] = new("EditControl", { "TOPLEFT", controls["bestButton"..row_idx], "TOPRIGHT"}, {8, 0, 514, row_height}, nil, nil, "^%C\t\n", nil, function(buf) local subpath = buf:match(self.hostName .. "trade/search/(.+)$") or "" diff --git a/src/Classes/TradeQueryGenerator.lua b/src/Classes/TradeQueryGenerator.lua index eeb2fdeaab2..fd844560fa8 100644 --- a/src/Classes/TradeQueryGenerator.lua +++ b/src/Classes/TradeQueryGenerator.lua @@ -9,7 +9,7 @@ local curl = require("lcurl.safe") local m_max = math.max local s_format = string.format local t_insert = table.insert -local tradeHelpers = LoadModule("Classes/CompareTradeHelpers") +local tradeHelpers = LoadModule("Classes/TradeHelpers") -- TODO generate these from data files local itemCategoryTags = { @@ -116,20 +116,6 @@ local TradeQueryGeneratorClass = newClass("TradeQueryGenerator", function(self, self.lastMaxLevel = nil end) -local function fetchStats() - local tradeStats = "" - local easy = common.curl.easy() - easy:setopt_url("https://www.pathofexile.com/api/trade/data/stats") - easy:setopt_useragent("Path of Building/" .. launch.versionNumber) - easy:setopt_writefunction(function(data) - tradeStats = tradeStats..data - return true - end) - easy:perform() - easy:close() - return tradeStats -end - local function stripInfluenceSuffix(key) local influenceSuffixPos = nil for _, suffix in ipairs(influenceSuffixes) do @@ -242,30 +228,7 @@ function TradeQueryGeneratorClass:ProcessMod(modId, mod, tradeQueryStatsParsed, goto continue end - local function swapInverse(modLine) - local priorStr = modLine - local inverseKey - if modLine:match("increased") then - modLine = modLine:gsub("([^ ]+) increased", "-%1 reduced") - if modLine ~= priorStr then inverseKey = "increased" end - elseif modLine:match("reduced") then - modLine = modLine:gsub("([^ ]+) reduced", "-%1 increased") - if modLine ~= priorStr then inverseKey = "reduced" end - elseif modLine:match("more") then - modLine = modLine:gsub("([^ ]+) more", "-%1 less") - if modLine ~= priorStr then inverseKey = "more" end - elseif modLine:match("less") then - modLine = modLine:gsub("([^ ]+) less", "-%1 more") - if modLine ~= priorStr then inverseKey = "less" end - elseif modLine:match("expires ([^ ]+) slower") then - modLine = modLine:gsub("([^ ]+) slower", "-%1 faster") - if modLine ~= priorStr then inverseKey = "slower" end - elseif modLine:match("expires ([^ ]+) faster") then - modLine = modLine:gsub("([^ ]+) faster", "-%1 slower") - if modLine ~= priorStr then inverseKey = "faster" end - end - return modLine, inverseKey - end + local uniqueIndex = tostring(statOrder).."_"..mod.group local inverse = false @@ -298,7 +261,7 @@ function TradeQueryGeneratorClass:ProcessMod(modId, mod, tradeQueryStatsParsed, logToFile("Unable to match %s mod: %s", modType, modLine) goto nextModLine else -- try swapping increased / decreased and signed and other similar mods. - modLine, inverseKey = swapInverse(modLine) + modLine, inverseKey = tradeHelpers.swapInverse(modLine) inverse = true if inverseKey then goto reparseMod @@ -312,7 +275,7 @@ function TradeQueryGeneratorClass:ProcessMod(modId, mod, tradeQueryStatsParsed, self.modData[modType][uniqueIndex] = { tradeMod = tradeMod, specialCaseData = specialCaseData, inverseKey = inverseKey } elseif self.modData[modType][uniqueIndex].inverseKey and modLine:match(self.modData[modType][uniqueIndex].inverseKey) then inverse = true - modLine = swapInverse(modLine) + modLine = tradeHelpers.swapInverse(modLine) end -- tokenize the numerical variables for this mod and store the sign if there is one @@ -399,6 +362,48 @@ function TradeQueryGeneratorClass:InitMods() return end + -- Download stats JSON from GGG API. Do not use launch:DownloadPage here as it is async, and QueryMods.lua must use the freshly downloaded stats. + local tradeStats = "" + local easy = curl.easy() + easy:setopt_url("https://www.pathofexile.com/api/trade/data/stats") + easy:setopt_useragent("Path of Building/" .. launch.versionNumber) + easy:setopt_writefunction(function(data) + tradeStats = tradeStats .. data + return true + end) + local ok = easy:perform() + easy:close() + if not ok or tradeStats == "" then + error("Error while downloading stats.json") + end + local body = dkjson.decode(tradeStats) + + if body.error then + error("Error received from api/trade/data/stats: " .. body.error.message) + end + + local f = io.open("./Data/TradeSiteStats.lua", "w") + if not f then + error("Could not open file for writing trade stat data") + end + + for catIdx, _ in ipairs(body.result) do + table.sort(body.result[catIdx].entries, function(a, b) + if a.text == b.text then + return a.id < b.id + end + return a.text < b.text + end) + end + + local template = [[-- This file is automatically downloaded, do not edit! +-- Trade site stat data (c) Grinding Gear Games +-- https://www.pathofexile.com/api/trade2/data/stats +-- spell-checker: disable +return %s +-- spell-checker: enable]] + f:write(s_format(template, stringify(body.result))) + f:close() self.modData = { ["Explicit"] = { }, ["Implicit"] = { }, @@ -411,10 +416,7 @@ function TradeQueryGeneratorClass:InitMods() ["WatchersEye"] = { }, } - -- originates from: https://www.pathofexile.com/api/trade/data/stats - local tradeStats = fetchStats() - tradeStats:gsub("\n", " ") - local tradeQueryStatsParsed = dkjson.decode(tradeStats) + local tradeQueryStatsParsed = body -- Create second table only containing local mods this should speedup generation slightly tradeQueryStatsParsed.localResults = { } @@ -764,7 +766,7 @@ function TradeQueryGeneratorClass:StartQuery(slot, options) itemCategoryQueryStr = "jewel" end else - itemCategoryQueryStr, itemCategory = tradeHelpers.getTradeCategoryInfo(slot.slotName, existingItem) + itemCategoryQueryStr, itemCategory = tradeHelpers.getTradeCategory(slot.slotName, existingItem) -- Generic Jewel slot: caller selects the jewel subtype. if slot.slotName:find("Jewel") ~= nil and not slot.slotName:find("Abyssal") then diff --git a/src/Data/ModFoulborn.lua b/src/Data/ModFoulborn.lua index ea90bb2cfaa..fafb5489e8b 100644 --- a/src/Data/ModFoulborn.lua +++ b/src/Data/ModFoulborn.lua @@ -56,6 +56,18 @@ return { ["MutatedUniqueBodyInt13IncreasedAllResistances"] = { affix = "", "50% increased Elemental and Chaos Resistances", statOrder = { 4629 }, level = 1, group = "IncreasedAllResistances", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "resistance" }, tradeHashes = { [1195367742] = { "50% increased Elemental and Chaos Resistances" }, } }, ["MutatedUniqueBodyInt14aSocketedGemQuality"] = { affix = "", "+30% to Quality of Socketed Gems", statOrder = { 204 }, level = 1, group = "SocketedGemQuality", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "gem" }, tradeHashes = { [3828613551] = { "+30% to Quality of Socketed Gems" }, } }, ["MutatedUniqueBodyInt14IncreasedAllResistances"] = { affix = "", "50% increased Elemental and Chaos Resistances", statOrder = { 4629 }, level = 1, group = "IncreasedAllResistances", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "resistance" }, tradeHashes = { [1195367742] = { "50% increased Elemental and Chaos Resistances" }, } }, + ["MutatedUniqueJewel85FireResistAlsoGrantsMaximumLifePercent"] = { affix = "", "Passives granting Fire Resistance or all Elemental Resistances in Radius", "also grant increased Maximum Life at 50% of its value", statOrder = { 8074, 8074.1 }, level = 1, group = "UniqueJewelFireResistAlsoGrantsMaximumLifePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "life", "elemental", "fire" }, tradeHashes = { [4068640319] = { "Passives granting Fire Resistance or all Elemental Resistances in Radius", "also grant increased Maximum Life at 50% of its value" }, [3802517517] = { "" }, } }, + ["MutatedUniqueJewel85ChaosResistancePerEnduranceCharge"] = { affix = "", "+4% to Chaos Resistance per Endurance Charge", statOrder = { 5739 }, level = 1, group = "ChaosResistancePerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "chaos", "resistance" }, tradeHashes = { [4210011075] = { "+4% to Chaos Resistance per Endurance Charge" }, } }, + ["MutatedUniqueJewel87ColdResistAlsoGrantsMaximumManaPercent"] = { affix = "", "Passives granting Cold Resistance or all Elemental Resistances in Radius", "also grant increased Maximum Mana at 75% of its value", statOrder = { 8049, 8049.1 }, level = 1, group = "UniqueJewelColdResistAlsoGrantsMaximumManaPercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "mana", "elemental", "cold" }, tradeHashes = { [3802517517] = { "" }, [1535088208] = { "Passives granting Cold Resistance or all Elemental Resistances in Radius", "also grant increased Maximum Mana at 75% of its value" }, } }, + ["MutatedUniqueJewel87MovementSpeedPerFrenzyCharge"] = { affix = "", "1% increased Movement Speed per Frenzy Charge", statOrder = { 1802 }, level = 1, group = "MovementSpeedPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge", "mutatedunique" }, tradeHashes = { [1541516339] = { "1% increased Movement Speed per Frenzy Charge" }, } }, + ["MutatedUniqueJewel89LightningResistAlsoGrantsMaximumESPercent"] = { affix = "", "Passives granting Lightning Resistance or all Elemental Resistances in Radius", "also grant increased Maximum Energy Shield at 75% of its value", statOrder = { 8090, 8090.1 }, level = 1, group = "UniqueJewelLightningResistAlsoGrantsMaximumESPercent", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "defences", "energy_shield", "elemental", "lightning" }, tradeHashes = { [3802517517] = { "" }, [1348513056] = { "Passives granting Lightning Resistance or all Elemental Resistances in Radius", "also grant increased Maximum Energy Shield at 75% of its value" }, } }, + ["MutatedUniqueJewel89CriticalMultiplierPerPowerCharge"] = { affix = "", "+3% to Critical Strike Multiplier per Power Charge", statOrder = { 3282 }, level = 1, group = "CriticalMultiplierPerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "damage", "critical" }, tradeHashes = { [4164870816] = { "+3% to Critical Strike Multiplier per Power Charge" }, } }, + ["MutatedUniqueJewel86UniqueJewelFireResistAlsoGrantsConvertFireToChaos"] = { affix = "", "Passives granting Fire Resistance or all Elemental Resistances in Radius", "also grant Fire Damage Converted to Chaos Damage at 100% of its value", statOrder = { 8073, 8073.1 }, level = 1, group = "UniqueJewelFireResistAlsoGrantsConvertFireToChaos", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "elemental", "fire", "chaos" }, tradeHashes = { [1124207360] = { "Passives granting Fire Resistance or all Elemental Resistances in Radius", "also grant Fire Damage Converted to Chaos Damage at 100% of its value" }, [223497523] = { "" }, } }, + ["MutatedUniqueJewel86ExtraDamageRollsWithFireIfBlockedAttackRecently"] = { affix = "", "Fire Damage with Hits is Lucky if you've Blocked an Attack Recently", statOrder = { 6534 }, level = 1, group = "ExtraDamageRollsWithFireIfBlockedAttackRecently", weightKey = { }, weightVal = { }, modTags = { "block", "mutatedunique", "elemental", "fire" }, tradeHashes = { [3601177816] = { "Fire Damage with Hits is Lucky if you've Blocked an Attack Recently" }, } }, + ["MutatedUniqueJewel88UniqueJewelColdResistAlsoGrantsConvertColdToChaos"] = { affix = "", "Passives granting Cold Resistance or all Elemental Resistances in Radius", "also grant Cold Damage Converted to Chaos Damage at 100% of its value", statOrder = { 8047, 8047.1 }, level = 1, group = "UniqueJewelColdResistAlsoGrantsConvertColdToChaos", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "elemental", "cold", "chaos" }, tradeHashes = { [248241207] = { "Passives granting Cold Resistance or all Elemental Resistances in Radius", "also grant Cold Damage Converted to Chaos Damage at 100% of its value" }, [223497523] = { "" }, } }, + ["MutatedUniqueJewel88ExtraDamageRollsWithColdIfSuppressedRecently"] = { affix = "", "Cold Damage with Hits is Lucky if you've Suppressed Spell Damage Recently", statOrder = { 6533 }, level = 1, group = "ExtraDamageRollsWithColdIfSuppressedRecently", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "elemental", "cold" }, tradeHashes = { [3810337989] = { "Cold Damage with Hits is Lucky if you've Suppressed Spell Damage Recently" }, } }, + ["MutatedUniqueJewel90UniqueJewelLightningResistAlsoGrantsConvertLightningToChaos"] = { affix = "", "Passives granting Lightning Resistance or all Elemental Resistances in Radius", "also grant Lightning Damage Converted to Chaos Damage at 100% of its value", statOrder = { 8089, 8089.1 }, level = 1, group = "UniqueJewelLightningResistAlsoGrantsConvertLightningToChaos", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "elemental", "lightning", "chaos" }, tradeHashes = { [1525329150] = { "Passives granting Lightning Resistance or all Elemental Resistances in Radius", "also grant Lightning Damage Converted to Chaos Damage at 100% of its value" }, [223497523] = { "" }, } }, + ["MutatedUniqueJewel90ExtraDamageRollsWithLightningIfBlockedSpellRecently"] = { affix = "", "Lightning Damage with Hits is Lucky if you've Blocked Spell Damage Recently", statOrder = { 6535 }, level = 1, group = "ExtraDamageRollsWithLightningIfBlockedSpellRecently", weightKey = { }, weightVal = { }, modTags = { "block", "mutatedunique", "elemental", "lightning" }, tradeHashes = { [1327356547] = { "Lightning Damage with Hits is Lucky if you've Blocked Spell Damage Recently" }, } }, ["MutatedUniqueBodyDexInt1DisplaySocketedGemsSupportedByIntensify"] = { affix = "", "Socketed Gems are Supported by Level 20 Intensify", statOrder = { 406 }, level = 1, group = "DisplaySocketedGemsSupportedByIntensify", weightKey = { }, weightVal = { }, modTags = { "support", "mutatedunique", "gem" }, tradeHashes = { [1792524915] = { "Socketed Gems are Supported by Level 20 Intensify" }, } }, ["MutatedUniqueBodyDexInt1AuraEffectOnEnemies"] = { affix = "", "(15-30)% increased Effect of Non-Curse Auras from your Skills on Enemies", statOrder = { 3567 }, level = 1, group = "AuraEffectOnEnemies", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "aura" }, tradeHashes = { [1636209393] = { "(15-30)% increased Effect of Non-Curse Auras from your Skills on Enemies" }, } }, ["MutatedUniqueGlovesInt4DisplaySocketedGemsSupportedByFocusedChannelling"] = { affix = "", "Socketed Gems are Supported by Level 18 Focused Channelling", statOrder = { 503 }, level = 1, group = "DisplaySocketedGemsSupportedByFocusedChannelling", weightKey = { }, weightVal = { }, modTags = { "support", "mutatedunique", "gem" }, tradeHashes = { [1948535732] = { "Socketed Gems are Supported by Level 18 Focused Channelling" }, } }, @@ -119,6 +131,16 @@ return { ["MutatedUniqueHelmetStrDex2AttackSpeedWithMovementSkills"] = { affix = "", "20% increased Attack Speed with Movement Skills", statOrder = { 1432 }, level = 1, group = "AttackSpeedWithMovementSkills", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "attack", "speed" }, tradeHashes = { [3683134121] = { "20% increased Attack Speed with Movement Skills" }, } }, ["MutatedUniqueHelmetStrDex2ChanceToSuppressSpells"] = { affix = "", "+(10-20)% chance to Suppress Spell Damage", statOrder = { 1143 }, level = 1, group = "ChanceToSuppressSpells", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [3680664274] = { "+(10-20)% chance to Suppress Spell Damage" }, } }, ["MutatedUniqueBow6ProjectilesPierceAllNearbyTargets"] = { affix = "", "Projectiles Pierce all nearby Targets", statOrder = { 9754 }, level = 1, group = "ProjectilesPierceAllNearbyTargets", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [1284333657] = { "Projectiles Pierce all nearby Targets" }, } }, + ["MutatedUniqueJewel174BurnDurationForJewel"] = { affix = "", "(25-50)% increased Ignite Duration on Enemies", statOrder = { 1859 }, level = 1, group = "BurnDurationForJewel", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "elemental", "fire", "ailment" }, tradeHashes = { [1086147743] = { "(25-50)% increased Ignite Duration on Enemies" }, } }, + ["MutatedUniqueJewel174FireDamageOverTimeMultiplier"] = { affix = "", "+(10-15)% to Fire Damage over Time Multiplier", statOrder = { 1251 }, level = 1, group = "FireDamageOverTimeMultiplier", weightKey = { }, weightVal = { }, modTags = { "dot_multi", "elemental_damage", "mutatedunique", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(10-15)% to Fire Damage over Time Multiplier" }, } }, + ["MutatedUniqueJewel175CurseEnemiesExplode25%Chaos"] = { affix = "", "Cursed Enemies you or your Minions Kill have a (10-15)% chance to Explode, dealing a quarter of their maximum Life as Chaos Damage", statOrder = { 3306 }, level = 1, group = "CurseEnemiesExplode25%Chaos", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "chaos" }, tradeHashes = { [1763939859] = { "Cursed Enemies you or your Minions Kill have a (10-15)% chance to Explode, dealing a quarter of their maximum Life as Chaos Damage" }, } }, + ["MutatedUniqueJewel175CurseDuration"] = { affix = "", "Curse Skills have (10-15)% increased Skill Effect Duration", statOrder = { 6000 }, level = 1, group = "CurseDuration", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "caster", "curse" }, tradeHashes = { [1435748744] = { "Curse Skills have (10-15)% increased Skill Effect Duration" }, } }, + ["MutatedUniqueJewel173ShockEffect"] = { affix = "", "(25-50)% increased Effect of Shock", statOrder = { 10009 }, level = 1, group = "ShockEffect", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "elemental", "lightning", "ailment" }, tradeHashes = { [2527686725] = { "(25-50)% increased Effect of Shock" }, } }, + ["MutatedUniqueJewel173ShockDuration"] = { affix = "", "(10-15)% increased Shock Duration on Enemies", statOrder = { 1857 }, level = 1, group = "ShockDuration", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "elemental", "lightning", "ailment" }, tradeHashes = { [3668351662] = { "(10-15)% increased Shock Duration on Enemies" }, } }, + ["MutatedUniqueJewel177SpellDamageSuppressed"] = { affix = "", "Prevent +(3-5)% of Suppressed Spell Damage", statOrder = { 1141 }, level = 1, group = "SpellDamageSuppressed", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [4116705863] = { "Prevent +(3-5)% of Suppressed Spell Damage" }, } }, + ["MutatedUniqueJewel177ChanceToSuppressSpells"] = { affix = "", "+(5-10)% chance to Suppress Spell Damage", statOrder = { 1143 }, level = 1, group = "ChanceToSuppressSpells", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [3680664274] = { "+(5-10)% chance to Suppress Spell Damage" }, } }, + ["MutatedUniqueJewel112Medium"] = { affix = "", "75% increased Effect of non-Keystone Passive Skills in Radius", "Notable Passive Skills in Radius grant nothing", statOrder = { 8100, 8101 }, level = 1, group = "PassiveEffectivenessJewel", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [607548408] = { "75% increased Effect of non-Keystone Passive Skills in Radius" }, [2627243269] = { "Notable Passive Skills in Radius grant nothing" }, [3802517517] = { "" }, } }, + ["MutatedUniqueJewel112Small"] = { affix = "", "100% increased Effect of non-Keystone Passive Skills in Radius", "Notable Passive Skills in Radius grant nothing", statOrder = { 8100, 8101 }, level = 1, group = "PassiveEffectivenessJewel", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [607548408] = { "100% increased Effect of non-Keystone Passive Skills in Radius" }, [2627243269] = { "Notable Passive Skills in Radius grant nothing" }, [3802517517] = { "" }, } }, ["MutatedUniqueBelt21EverlastingSacrifice"] = { affix = "", "Everlasting Sacrifice", statOrder = { 10786 }, level = 1, group = "EverlastingSacrifice", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "defences", "resistance" }, tradeHashes = { [145598447] = { "Everlasting Sacrifice" }, } }, ["MutatedUniqueBelt21AnimalCharmLeechPercentIsInstant"] = { affix = "", "(8-12)% of Leech is Instant", statOrder = { 7339 }, level = 1, group = "AnimalCharmLeechPercentIsInstant", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [3561837752] = { "(8-12)% of Leech is Instant" }, } }, ["MutatedUniqueBelt13CurseEffectOnYou"] = { affix = "", "20% reduced Effect of Curses on you", statOrder = { 2170 }, level = 1, group = "CurseEffectOnYouJewel", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "curse" }, tradeHashes = { [3407849389] = { "20% reduced Effect of Curses on you" }, } }, diff --git a/src/Data/ModImplicit.lua b/src/Data/ModImplicit.lua deleted file mode 100644 index d8026cd3237..00000000000 --- a/src/Data/ModImplicit.lua +++ /dev/null @@ -1,8251 +0,0 @@ --- This file is automatically generated, do not edit! --- Item data (c) Grinding Gear Games - -return { - ["StrengthUniqueRing2"] = { affix = "", "+(10-20) to Strength", statOrder = { 1177 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(10-20) to Strength" }, } }, - ["StrengthImplicitAmulet1"] = { affix = "", "+(20-30) to Strength", statOrder = { 1177 }, level = 7, group = "StrengthImplicit", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(20-30) to Strength" }, } }, - ["StrengthImplicitBelt1"] = { affix = "", "+(25-35) to Strength", statOrder = { 1177 }, level = 10, group = "StrengthImplicit", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(25-35) to Strength" }, } }, - ["StrengthUniqueHelmetDexInt1"] = { affix = "", "+20 to Strength", statOrder = { 1177 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+20 to Strength" }, } }, - ["StrengthUniqueTwoHandMace1"] = { affix = "", "+10 to Strength", statOrder = { 1177 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+10 to Strength" }, } }, - ["StrengthUniqueAmulet5"] = { affix = "", "+(20-30) to Strength", statOrder = { 1177 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(20-30) to Strength" }, } }, - ["StrengthUniqueIntHelmet3"] = { affix = "", "+(20-30) to Strength", statOrder = { 1177 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(20-30) to Strength" }, } }, - ["StrengthUniqueBootsInt1"] = { affix = "", "+(5-30) to Strength", statOrder = { 1177 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(5-30) to Strength" }, } }, - ["StrengthUniqueDagger2"] = { affix = "", "+25 to Strength", statOrder = { 1177 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+25 to Strength" }, } }, - ["StrengthUniqueBootsStrDex1"] = { affix = "", "+(40-60) to Strength", statOrder = { 1177 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(40-60) to Strength" }, } }, - ["StrengthUniqueGlovesDex1"] = { affix = "", "+(20-30) to Strength", statOrder = { 1177 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(20-30) to Strength" }, } }, - ["StrengthUniqueBelt1"] = { affix = "", "+(20-30) to Strength", statOrder = { 1177 }, level = 10, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(20-30) to Strength" }, } }, - ["StrengthUniqueBelt2"] = { affix = "", "+(40-50) to Strength", statOrder = { 1177 }, level = 20, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(40-50) to Strength" }, } }, - ["StrengthUniqueBelt4"] = { affix = "", "+25 to Strength", statOrder = { 1177 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+25 to Strength" }, } }, - ["StrengthUniqueGlovesStr2"] = { affix = "", "+50 to Strength", statOrder = { 1177 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+50 to Strength" }, } }, - ["StrengthUniqueTwoHandAxe3"] = { affix = "", "+(15-30) to Strength", statOrder = { 1177 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(15-30) to Strength" }, } }, - ["StrengthUniqueBodyStrInt3"] = { affix = "", "+(30-40) to Strength", statOrder = { 1177 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(30-40) to Strength" }, } }, - ["StrengthUniqueGlovesStrDex3"] = { affix = "", "+10 to Strength", statOrder = { 1177 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+10 to Strength" }, } }, - ["StrengthUniqueHelmetStrDex3"] = { affix = "", "+(20-30) to Strength", statOrder = { 1177 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(20-30) to Strength" }, } }, - ["StrengthUniqueClaw5_"] = { affix = "", "+(20-30) to Strength", statOrder = { 1177 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(20-30) to Strength" }, } }, - ["StrengthUniqueRing8"] = { affix = "", "+(20-30) to Strength", statOrder = { 1177 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(20-30) to Strength" }, } }, - ["StrengthUniqueBootsDexInt2"] = { affix = "", "+(20-30) to Strength", statOrder = { 1177 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(20-30) to Strength" }, } }, - ["StrengthUniqueTwoHandAxe5"] = { affix = "", "+10 to Strength", statOrder = { 1177 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+10 to Strength" }, } }, - ["StrengthUniqueTwoHandSword5"] = { affix = "", "+(40-50) to Strength", statOrder = { 1177 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(40-50) to Strength" }, } }, - ["StrengthUniqueBelt7"] = { affix = "", "+(40-55) to Strength", statOrder = { 1177 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(40-55) to Strength" }, } }, - ["StrengthUniqueSceptre6"] = { affix = "", "+(50-70) to Strength", statOrder = { 1177 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(50-70) to Strength" }, } }, - ["StrengthUniqueBodyStr4"] = { affix = "", "+(10-20) to Strength", statOrder = { 1177 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(10-20) to Strength" }, } }, - ["StrengthUniqueQuiver6"] = { affix = "", "+(15-25) to Strength", statOrder = { 1177 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(15-25) to Strength" }, } }, - ["StrengthUniqueOneHandSword8"] = { affix = "", "+(35-50) to Strength", statOrder = { 1177 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(35-50) to Strength" }, } }, - ["StrengthUniqueGlovesStrInt2"] = { affix = "", "+(20-30) to Strength", statOrder = { 1177 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(20-30) to Strength" }, } }, - ["StrengthUniqueRing31__"] = { affix = "", "+(15-25) to Strength", statOrder = { 1177 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(15-25) to Strength" }, } }, - ["StrengthUniqueClaw9"] = { affix = "", "+(10-15) to Strength", statOrder = { 1177 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(10-15) to Strength" }, } }, - ["StrengthUniqueRing36"] = { affix = "", "+(30-40) to Strength", statOrder = { 1177 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(30-40) to Strength" }, } }, - ["StrengthUnique__1"] = { affix = "", "+30 to Strength", statOrder = { 1177 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+30 to Strength" }, } }, - ["StrengthUnique___2"] = { affix = "", "+(30-50) to Strength", statOrder = { 1177 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(30-50) to Strength" }, } }, - ["StrengthUnique__3"] = { affix = "", "+(20-30) to Strength", statOrder = { 1177 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(20-30) to Strength" }, } }, - ["StrengthUnique__4"] = { affix = "", "+30 to Strength", statOrder = { 1177 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+30 to Strength" }, } }, - ["StrengthUnique__5"] = { affix = "", "+(20-40) to Strength", statOrder = { 1177 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(20-40) to Strength" }, } }, - ["StrengthUnique__6"] = { affix = "", "+(20-30) to Strength", statOrder = { 1177 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(20-30) to Strength" }, } }, - ["StrengthUnique__7_"] = { affix = "", "+(20-30) to Strength", statOrder = { 1177 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(20-30) to Strength" }, } }, - ["StrengthUnique__8"] = { affix = "", "+(20-30) to Strength", statOrder = { 1177 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(20-30) to Strength" }, } }, - ["StrengthUnique__9"] = { affix = "", "+(20-40) to Strength", statOrder = { 1177 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(20-40) to Strength" }, } }, - ["StrengthUnique__10"] = { affix = "", "+(20-40) to Strength", statOrder = { 1177 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(20-40) to Strength" }, } }, - ["StrengthUnique__11"] = { affix = "", "+(30-40) to Strength", statOrder = { 1177 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(30-40) to Strength" }, } }, - ["StrengthUnique__12"] = { affix = "", "+200 to Strength", statOrder = { 1177 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+200 to Strength" }, } }, - ["StrengthUnique__13_"] = { affix = "", "+(60-120) to Strength", statOrder = { 1177 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(60-120) to Strength" }, } }, - ["StrengthUnique__14"] = { affix = "", "+(20-30) to Strength", statOrder = { 1177 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(20-30) to Strength" }, } }, - ["StrengthUnique__15"] = { affix = "", "+20 to Strength", statOrder = { 1177 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+20 to Strength" }, } }, - ["StrengthUnique__16"] = { affix = "", "+(20-30) to Strength", statOrder = { 1177 }, level = 65, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(20-30) to Strength" }, } }, - ["StrengthUnique__17"] = { affix = "", "+(20-30) to Strength", statOrder = { 1177 }, level = 62, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(20-30) to Strength" }, } }, - ["StrengthUnique__18"] = { affix = "", "+(30-50) to Strength", statOrder = { 1177 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(30-50) to Strength" }, } }, - ["StrengthUnique__19_"] = { affix = "", "+(20-40) to Strength", statOrder = { 1177 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(20-40) to Strength" }, } }, - ["StrengthUnique__20_"] = { affix = "", "+20 to Strength", statOrder = { 1177 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+20 to Strength" }, } }, - ["StrengthUnique__21"] = { affix = "", "+(10-20) to Strength", statOrder = { 1177 }, level = 50, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(10-20) to Strength" }, } }, - ["StrengthUnique__22"] = { affix = "", "+(20-50) to Strength", statOrder = { 1177 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(20-50) to Strength" }, } }, - ["StrengthUnique__23"] = { affix = "", "+(20-30) to Strength", statOrder = { 1177 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(20-30) to Strength" }, } }, - ["StrengthUnique__24"] = { affix = "", "+(20-30) to Strength", statOrder = { 1177 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(20-30) to Strength" }, } }, - ["StrengthUnique__25"] = { affix = "", "+(30-40) to Strength", statOrder = { 1177 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(30-40) to Strength" }, } }, - ["StrengthUnique__26"] = { affix = "", "+(30-50) to Strength", statOrder = { 1177 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(30-50) to Strength" }, } }, - ["StrengthUnique__27"] = { affix = "", "+(30-50) to Strength", statOrder = { 1177 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(30-50) to Strength" }, } }, - ["StrengthUnique__28"] = { affix = "", "+(30-40) to Strength", statOrder = { 1177 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(30-40) to Strength" }, } }, - ["StrengthUnique__29"] = { affix = "", "+(30-40) to Strength", statOrder = { 1177 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(30-40) to Strength" }, } }, - ["StrengthUnique__30"] = { affix = "", "+(30-40) to Strength", statOrder = { 1177 }, level = 75, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(30-40) to Strength" }, } }, - ["StrengthUnique__31"] = { affix = "", "+(15-35) to Strength", statOrder = { 1177 }, level = 40, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(15-35) to Strength" }, } }, - ["StrengthUnique__32"] = { affix = "", "+(30-50) to Strength", statOrder = { 1177 }, level = 100, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(30-50) to Strength" }, } }, - ["StrengthUnique__33"] = { affix = "", "+(15-25) to Strength", statOrder = { 1177 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(15-25) to Strength" }, } }, - ["StrengthUnique__34"] = { affix = "", "+(15-25) to Strength", statOrder = { 1177 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(15-25) to Strength" }, } }, - ["PercentageStrengthUniqueBootsStrInt2"] = { affix = "", "(15-18)% increased Strength", statOrder = { 1184 }, level = 1, group = "PercentageStrength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [734614379] = { "(15-18)% increased Strength" }, } }, - ["PercentageStrengthUniqueHelmetStrDex6"] = { affix = "", "(5-15)% increased Strength", statOrder = { 1184 }, level = 1, group = "PercentageStrength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [734614379] = { "(5-15)% increased Strength" }, } }, - ["PercentageStrengthUnique__1"] = { affix = "", "100% reduced Strength", statOrder = { 1184 }, level = 1, group = "PercentageStrength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [734614379] = { "100% reduced Strength" }, } }, - ["PercentageStrengthUnique__3"] = { affix = "", "10% increased Strength", statOrder = { 1184 }, level = 1, group = "PercentageStrength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [734614379] = { "10% increased Strength" }, } }, - ["PercentageStrengthUnique__4_"] = { affix = "", "10% reduced Strength", statOrder = { 1184 }, level = 1, group = "PercentageStrength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [734614379] = { "10% reduced Strength" }, } }, - ["PercentageStrengthUnique__5"] = { affix = "", "(6-12)% increased Strength", statOrder = { 1184 }, level = 1, group = "PercentageStrength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [734614379] = { "(6-12)% increased Strength" }, } }, - ["PercentageStrengthImplicitMace1"] = { affix = "", "10% increased Strength", statOrder = { 1184 }, level = 1, group = "PercentageStrength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [734614379] = { "10% increased Strength" }, } }, - ["DexterityImplicitAmulet1"] = { affix = "", "+(20-30) to Dexterity", statOrder = { 1178 }, level = 7, group = "DexterityImplicit", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(20-30) to Dexterity" }, } }, - ["DexterityImplicitQuiver1"] = { affix = "", "+(30-40) to Dexterity", statOrder = { 1178 }, level = 15, group = "DexterityImplicit", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(30-40) to Dexterity" }, } }, - ["DexterityUniqueRing3"] = { affix = "", "+10 to Dexterity", statOrder = { 1178 }, level = 10, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+10 to Dexterity" }, } }, - ["DexterityUniqueBodyDex1"] = { affix = "", "+(40-50) to Dexterity", statOrder = { 1178 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(40-50) to Dexterity" }, } }, - ["DexterityUniqueBootsInt1"] = { affix = "", "+(5-30) to Dexterity", statOrder = { 1178 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(5-30) to Dexterity" }, } }, - ["DexterityUniqueBootsStrDex1"] = { affix = "", "+(40-60) to Dexterity", statOrder = { 1178 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(40-60) to Dexterity" }, } }, - ["DexterityUniqueBootsInt2"] = { affix = "", "+5 to Dexterity", statOrder = { 1178 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+5 to Dexterity" }, } }, - ["DexterityUniqueBootsInt3"] = { affix = "", "+10 to Dexterity", statOrder = { 1178 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+10 to Dexterity" }, } }, - ["DexterityUniqueGlovesDex2"] = { affix = "", "+(20-30) to Dexterity", statOrder = { 1178 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(20-30) to Dexterity" }, } }, - ["DexterityUniqueGlovesStrDex1"] = { affix = "", "+(40-50) to Dexterity", statOrder = { 1178 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(40-50) to Dexterity" }, } }, - ["DexterityUniqueAmulet7"] = { affix = "", "+10 to Dexterity", statOrder = { 1178 }, level = 10, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+10 to Dexterity" }, } }, - ["DexterityUniqueHelmetStrDex2"] = { affix = "", "+(50-65) to Dexterity", statOrder = { 1178 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(50-65) to Dexterity" }, } }, - ["DexterityUniqueBootsDex1"] = { affix = "", "+(20-30) to Dexterity", statOrder = { 1178 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(20-30) to Dexterity" }, } }, - ["DexterityUniqueDagger3"] = { affix = "", "+(10-20) to Dexterity", statOrder = { 1178 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(10-20) to Dexterity" }, } }, - ["DexterityUniqueShieldStrInt2"] = { affix = "", "+(20-30) to Dexterity", statOrder = { 1178 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(20-30) to Dexterity" }, } }, - ["DexterityUniqueBow4"] = { affix = "", "+(10-20) to Dexterity", statOrder = { 1178 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(10-20) to Dexterity" }, } }, - ["DexterityUniqueBow6"] = { affix = "", "+(10-20) to Dexterity", statOrder = { 1178 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(10-20) to Dexterity" }, } }, - ["DexterityUniqueBootsDex3"] = { affix = "", "+15 to Dexterity", statOrder = { 1178 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+15 to Dexterity" }, } }, - ["DexterityUniqueBow7"] = { affix = "", "+(20-30) to Dexterity", statOrder = { 1178 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(20-30) to Dexterity" }, } }, - ["DexterityUniqueBodyDex4"] = { affix = "", "+(20-30) to Dexterity", statOrder = { 1178 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(20-30) to Dexterity" }, } }, - ["DexterityUniqueHelmetDex4"] = { affix = "", "+(50-70) to Dexterity", statOrder = { 1178 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(50-70) to Dexterity" }, } }, - ["DexterityUniqueGlovesStrDex3"] = { affix = "", "+10 to Dexterity", statOrder = { 1178 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+10 to Dexterity" }, } }, - ["DexterityUniqueGlovesInt4__"] = { affix = "", "+(20-30) to Dexterity", statOrder = { 1178 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(20-30) to Dexterity" }, } }, - ["DexterityUniqueGlovesDexInt4"] = { affix = "", "+(40-50) to Dexterity", statOrder = { 1178 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(40-50) to Dexterity" }, } }, - ["DexterityUniqueHelmetStrDex3"] = { affix = "", "+(20-30) to Dexterity", statOrder = { 1178 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(20-30) to Dexterity" }, } }, - ["DexterityUniqueRing8"] = { affix = "", "+(10-20) to Dexterity", statOrder = { 1178 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(10-20) to Dexterity" }, } }, - ["DexterityUniqueBootsDex4_"] = { affix = "", "+(30-40) to Dexterity", statOrder = { 1178 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(30-40) to Dexterity" }, } }, - ["DexterityUniqueHelmetDexInt2"] = { affix = "", "+(20-30) to Dexterity", statOrder = { 1178 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(20-30) to Dexterity" }, } }, - ["DexterityUniqueBootsDexInt2"] = { affix = "", "+(20-30) to Dexterity", statOrder = { 1178 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(20-30) to Dexterity" }, } }, - ["DexterityUniqueBelt7"] = { affix = "", "+(40-55) to Dexterity", statOrder = { 1178 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(40-55) to Dexterity" }, } }, - ["DexterityUniqueQuiver6"] = { affix = "", "+(35-45) to Dexterity", statOrder = { 1178 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(35-45) to Dexterity" }, } }, - ["DexterityUniqueQuiver7"] = { affix = "", "+30 to Dexterity", statOrder = { 1178 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+30 to Dexterity" }, } }, - ["DexterityUniqueBootsDex8"] = { affix = "", "+(20-30) to Dexterity", statOrder = { 1178 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(20-30) to Dexterity" }, } }, - ["DexterityUniqueDagger11"] = { affix = "", "+(10-15) to Dexterity", statOrder = { 1178 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(10-15) to Dexterity" }, } }, - ["DexterityUniqueDagger12"] = { affix = "", "+20 to Dexterity", statOrder = { 1178 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+20 to Dexterity" }, } }, - ["DexterityUniqueClaw9"] = { affix = "", "+(10-15) to Dexterity", statOrder = { 1178 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(10-15) to Dexterity" }, } }, - ["DexterityUnique__1"] = { affix = "", "+(20-30) to Dexterity", statOrder = { 1178 }, level = 53, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(20-30) to Dexterity" }, } }, - ["DexterityUniqueBootsDex9"] = { affix = "", "+(25-35) to Dexterity", statOrder = { 1178 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(25-35) to Dexterity" }, } }, - ["DexterityUnique__2"] = { affix = "", "+(30-40) to Dexterity", statOrder = { 1178 }, level = 57, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(30-40) to Dexterity" }, } }, - ["DexterityUnique__3"] = { affix = "", "+(30-50) to Dexterity", statOrder = { 1178 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(30-50) to Dexterity" }, } }, - ["DexterityUnique__4"] = { affix = "", "+(30-40) to Dexterity", statOrder = { 1178 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(30-40) to Dexterity" }, } }, - ["DexterityUnique__5"] = { affix = "", "+(30-40) to Dexterity", statOrder = { 1178 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(30-40) to Dexterity" }, } }, - ["DexterityUnique__6"] = { affix = "", "+(20-40) to Dexterity", statOrder = { 1178 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(20-40) to Dexterity" }, } }, - ["DexterityUnique__7"] = { affix = "", "+(40-50) to Dexterity", statOrder = { 1178 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(40-50) to Dexterity" }, } }, - ["DexterityUnique__8"] = { affix = "", "+(40-50) to Dexterity", statOrder = { 1178 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(40-50) to Dexterity" }, } }, - ["DexterityUnique__9"] = { affix = "", "+25 to Dexterity", statOrder = { 1178 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+25 to Dexterity" }, } }, - ["DexterityUnique__10_"] = { affix = "", "+(30-40) to Dexterity", statOrder = { 1178 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(30-40) to Dexterity" }, } }, - ["DexterityUnique__11"] = { affix = "", "+(40-50) to Dexterity", statOrder = { 1178 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(40-50) to Dexterity" }, } }, - ["DexterityUnique__12"] = { affix = "", "+(20-30) to Dexterity", statOrder = { 1178 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(20-30) to Dexterity" }, } }, - ["DexterityUnique__13"] = { affix = "", "+20 to Dexterity", statOrder = { 1178 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+20 to Dexterity" }, } }, - ["DexterityUnique__14"] = { affix = "", "+(20-30) to Dexterity", statOrder = { 1178 }, level = 65, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(20-30) to Dexterity" }, } }, - ["DexterityUnique__15"] = { affix = "", "+(40-80) to Dexterity", statOrder = { 1178 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(40-80) to Dexterity" }, } }, - ["DexterityUnique__16"] = { affix = "", "+(30-40) to Dexterity", statOrder = { 1178 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(30-40) to Dexterity" }, } }, - ["DexterityUnique__17"] = { affix = "", "+(20-30) to Dexterity", statOrder = { 1178 }, level = 62, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(20-30) to Dexterity" }, } }, - ["DexterityUnique__18"] = { affix = "", "+(20-40) to Dexterity", statOrder = { 1178 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(20-40) to Dexterity" }, } }, - ["DexterityUnique__19"] = { affix = "", "+(30-40) to Dexterity", statOrder = { 1178 }, level = 54, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(30-40) to Dexterity" }, } }, - ["DexterityUnique__20__"] = { affix = "", "+(20-40) to Dexterity", statOrder = { 1178 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(20-40) to Dexterity" }, } }, - ["DexterityUnique__21_"] = { affix = "", "+(10-20) to Dexterity", statOrder = { 1178 }, level = 50, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(10-20) to Dexterity" }, } }, - ["DexterityUnique__22"] = { affix = "", "+(30-50) to Dexterity", statOrder = { 1178 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(30-50) to Dexterity" }, } }, - ["DexterityUnique__23"] = { affix = "", "+(20-50) to Dexterity", statOrder = { 1178 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(20-50) to Dexterity" }, } }, - ["DexterityUnique__24"] = { affix = "", "+(30-55) to Dexterity", statOrder = { 1178 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(30-55) to Dexterity" }, } }, - ["DexterityUnique__25"] = { affix = "", "+(30-50) to Dexterity", statOrder = { 1178 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(30-50) to Dexterity" }, } }, - ["DexterityUnique__26"] = { affix = "", "+(5-10) to Dexterity", statOrder = { 1178 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(5-10) to Dexterity" }, } }, - ["DexterityUnique__27"] = { affix = "", "+(20-40) to Dexterity", statOrder = { 1178 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(20-40) to Dexterity" }, } }, - ["DexterityUnique__28"] = { affix = "", "+(20-30) to Dexterity", statOrder = { 1178 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(20-30) to Dexterity" }, } }, - ["DexterityUnique__29"] = { affix = "", "+(20-30) to Dexterity", statOrder = { 1178 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(20-30) to Dexterity" }, } }, - ["DexterityUnique__30"] = { affix = "", "+(30-40) to Dexterity", statOrder = { 1178 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(30-40) to Dexterity" }, } }, - ["DexterityUnique__31"] = { affix = "", "+(20-30) to Dexterity", statOrder = { 1178 }, level = 20, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(20-30) to Dexterity" }, } }, - ["DexterityUnique__32"] = { affix = "", "+(30-40) to Dexterity", statOrder = { 1178 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(30-40) to Dexterity" }, } }, - ["DexterityUnique__34"] = { affix = "", "+(15-25) to Dexterity", statOrder = { 1178 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(15-25) to Dexterity" }, } }, - ["StrengthAndDexterityUnique_1"] = { affix = "", "+(25-40) to Strength and Dexterity", statOrder = { 1180 }, level = 1, group = "StrengthAndDexterity", weightKey = { }, weightVal = { }, modTags = { "unveiled_mod", "attribute" }, tradeHashes = { [538848803] = { "+(25-40) to Strength and Dexterity" }, } }, - ["PercentageDexterityUniqueBodyDex7"] = { affix = "", "15% increased Dexterity", statOrder = { 1185 }, level = 1, group = "PercentageDexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4139681126] = { "15% increased Dexterity" }, } }, - ["PercentageDexterityUniqueHelmetStrDex6"] = { affix = "", "(5-15)% increased Dexterity", statOrder = { 1185 }, level = 1, group = "PercentageDexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4139681126] = { "(5-15)% increased Dexterity" }, } }, - ["PercentageDexterityUnique__1"] = { affix = "", "100% reduced Dexterity", statOrder = { 1185 }, level = 1, group = "PercentageDexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4139681126] = { "100% reduced Dexterity" }, } }, - ["PercentageDexterityUnique__3"] = { affix = "", "(8-12)% increased Dexterity", statOrder = { 1185 }, level = 1, group = "PercentageDexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4139681126] = { "(8-12)% increased Dexterity" }, } }, - ["PercentageDexterityUnique__4"] = { affix = "", "(10-15)% increased Dexterity", statOrder = { 1185 }, level = 1, group = "PercentageDexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4139681126] = { "(10-15)% increased Dexterity" }, } }, - ["PercentageDexterityUnique__5"] = { affix = "", "15% increased Dexterity", statOrder = { 1185 }, level = 1, group = "PercentageDexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4139681126] = { "15% increased Dexterity" }, } }, - ["IntelligenceUniqueOneHandSword2"] = { affix = "", "+10 to Intelligence", statOrder = { 1179 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+10 to Intelligence" }, } }, - ["IntelligenceImplicitAmulet1"] = { affix = "", "+(20-30) to Intelligence", statOrder = { 1179 }, level = 7, group = "IntelligenceImplicit", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(20-30) to Intelligence" }, } }, - ["IntelligenceUniqueRing4"] = { affix = "", "+(5-20) to Intelligence", statOrder = { 1179 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(5-20) to Intelligence" }, } }, - ["IntelligenceUniqueBootsInt1"] = { affix = "", "+(5-30) to Intelligence", statOrder = { 1179 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(5-30) to Intelligence" }, } }, - ["IntelligenceUniqueBootsInt3"] = { affix = "", "+(20-30) to Intelligence", statOrder = { 1179 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(20-30) to Intelligence" }, } }, - ["IntelligenceUniqueGlovesInt2"] = { affix = "", "+(20-50) to Intelligence", statOrder = { 1179 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(20-50) to Intelligence" }, } }, - ["IntelligenceUniqueBelt1"] = { affix = "", "+(20-30) to Intelligence", statOrder = { 1179 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(20-30) to Intelligence" }, } }, - ["IntelligenceUniqueWand1"] = { affix = "", "+10 to Intelligence", statOrder = { 1179 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+10 to Intelligence" }, } }, - ["IntelligenceUniqueBootsDex1"] = { affix = "", "+(20-30) to Intelligence", statOrder = { 1179 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(20-30) to Intelligence" }, } }, - ["IntelligenceUniqueWand2"] = { affix = "", "+(10-20) to Intelligence", statOrder = { 1179 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(10-20) to Intelligence" }, } }, - ["IntelligenceUniqueBootsDex3"] = { affix = "", "+15 to Intelligence", statOrder = { 1179 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+15 to Intelligence" }, } }, - ["IntelligenceUniqueBodyInt3"] = { affix = "", "+(20-30) to Intelligence", statOrder = { 1179 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(20-30) to Intelligence" }, } }, - ["IntelligenceUniqueShieldDex3"] = { affix = "", "+(40-60) to Intelligence", statOrder = { 1179 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(40-60) to Intelligence" }, } }, - ["IntelligenceUniqueBodyStrInt3"] = { affix = "", "+(30-40) to Intelligence", statOrder = { 1179 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(30-40) to Intelligence" }, } }, - ["IntelligenceUniqueGlovesInt3"] = { affix = "", "+(20-30) to Intelligence", statOrder = { 1179 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(20-30) to Intelligence" }, } }, - ["IntelligenceUniqueGlovesInt5"] = { affix = "", "+(20-30) to Intelligence", statOrder = { 1179 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(20-30) to Intelligence" }, } }, - ["IntelligenceUniqueHelmetInt5"] = { affix = "", "+(30-40) to Intelligence", statOrder = { 1179 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(30-40) to Intelligence" }, } }, - ["IntelligenceUniqueHelmetInt6"] = { affix = "", "+(40-50) to Intelligence", statOrder = { 1179 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(40-50) to Intelligence" }, } }, - ["IntelligenceUniqueHelmetWard1"] = { affix = "", "+(20-30) to Intelligence", statOrder = { 1179 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(20-30) to Intelligence" }, } }, - ["IntelligenceUniqueRing13"] = { affix = "", "+(60-75) to Intelligence", statOrder = { 1179 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(60-75) to Intelligence" }, } }, - ["IntelligenceUniqueOneHandAxe1"] = { affix = "", "+(10-20) to Intelligence", statOrder = { 1179 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(10-20) to Intelligence" }, } }, - ["IntelligenceUniqueSceptre5"] = { affix = "", "+(10-20) to Intelligence", statOrder = { 1179 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(10-20) to Intelligence" }, } }, - ["IntelligenceUniqueGlovesStr3"] = { affix = "", "+(60-80) to Intelligence", statOrder = { 1179 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(60-80) to Intelligence" }, } }, - ["IntelligenceUniqueQuiver6"] = { affix = "", "+(15-25) to Intelligence", statOrder = { 1179 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(15-25) to Intelligence" }, } }, - ["IntelligenceUniqueShieldInt4"] = { affix = "", "+(20-30) to Intelligence", statOrder = { 1179 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(20-30) to Intelligence" }, } }, - ["IntelligenceUniqueStaff8"] = { affix = "", "+(80-120) to Intelligence", statOrder = { 1179 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(80-120) to Intelligence" }, } }, - ["IntelligenceUniqueBelt11"] = { affix = "", "+(15-25) to Intelligence", statOrder = { 1179 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(15-25) to Intelligence" }, } }, - ["IntelligenceUniqueWand8"] = { affix = "", "+(10-30) to Intelligence", statOrder = { 1179 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(10-30) to Intelligence" }, } }, - ["IntelligenceUniqueHelmetInt9"] = { affix = "", "+(20-30) to Intelligence", statOrder = { 1179 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(20-30) to Intelligence" }, } }, - ["IntelligenceUniqueDagger10_"] = { affix = "", "+(20-40) to Intelligence", statOrder = { 1179 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(20-40) to Intelligence" }, } }, - ["IntelligenceUniqueRing34"] = { affix = "", "+(15-25) to Intelligence", statOrder = { 1179 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(15-25) to Intelligence" }, } }, - ["Intelligence__1"] = { affix = "", "+(20-30) to Intelligence", statOrder = { 1179 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(20-30) to Intelligence" }, } }, - ["IntelligenceUnique__3"] = { affix = "", "+(15-25) to Intelligence", statOrder = { 1179 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(15-25) to Intelligence" }, } }, - ["IntelligenceUnique__4"] = { affix = "", "+(20-30) to Intelligence", statOrder = { 1179 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(20-30) to Intelligence" }, } }, - ["IntelligenceUnique__5"] = { affix = "", "+40 to Intelligence", statOrder = { 1179 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+40 to Intelligence" }, } }, - ["IntelligenceUnique__6"] = { affix = "", "+(20-40) to Intelligence", statOrder = { 1179 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(20-40) to Intelligence" }, } }, - ["IntelligenceUnique__7"] = { affix = "", "+(20-30) to Intelligence", statOrder = { 1179 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(20-30) to Intelligence" }, } }, - ["IntelligenceUnique__8"] = { affix = "", "+(30-40) to Intelligence", statOrder = { 1179 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(30-40) to Intelligence" }, } }, - ["IntelligenceUnique__9"] = { affix = "", "+(40-50) to Intelligence", statOrder = { 1179 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(40-50) to Intelligence" }, } }, - ["IntelligenceUnique__10"] = { affix = "", "+(30-40) to Intelligence", statOrder = { 1179 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(30-40) to Intelligence" }, } }, - ["IntelligenceUnique__11"] = { affix = "", "+(40-50) to Intelligence", statOrder = { 1179 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(40-50) to Intelligence" }, } }, - ["IntelligenceUnique__12"] = { affix = "", "+(20-30) to Intelligence", statOrder = { 1179 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(20-30) to Intelligence" }, } }, - ["IntelligenceUnique__13"] = { affix = "", "+20 to Intelligence", statOrder = { 1179 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+20 to Intelligence" }, } }, - ["IntelligenceUnique__14"] = { affix = "", "+(20-30) to Intelligence", statOrder = { 1179 }, level = 65, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(20-30) to Intelligence" }, } }, - ["IntelligenceUnique__15_"] = { affix = "", "+(30-40) to Intelligence", statOrder = { 1179 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(30-40) to Intelligence" }, } }, - ["IntelligenceUnique__16"] = { affix = "", "+(30-40) to Intelligence", statOrder = { 1179 }, level = 60, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(30-40) to Intelligence" }, } }, - ["IntelligenceUnique__17"] = { affix = "", "+(40-70) to Intelligence", statOrder = { 1179 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(40-70) to Intelligence" }, } }, - ["IntelligenceUnique__18"] = { affix = "", "+(20-30) to Intelligence", statOrder = { 1179 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(20-30) to Intelligence" }, } }, - ["IntelligenceUnique__19"] = { affix = "", "+(30-50) to Intelligence", statOrder = { 1179 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(30-50) to Intelligence" }, } }, - ["IntelligenceUnique__20"] = { affix = "", "+(20-30) to Intelligence", statOrder = { 1179 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(20-30) to Intelligence" }, } }, - ["IntelligenceUnique__21"] = { affix = "", "+(5-10) to Intelligence", statOrder = { 1179 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(5-10) to Intelligence" }, } }, - ["IntelligenceUnique__22_"] = { affix = "", "+(30-50) to Intelligence", statOrder = { 1179 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(30-50) to Intelligence" }, } }, - ["IntelligenceUnique__23"] = { affix = "", "+(20-30) to Intelligence", statOrder = { 1179 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(20-30) to Intelligence" }, } }, - ["IntelligenceUnique__24"] = { affix = "", "-(25-15) to Intelligence", statOrder = { 1179 }, level = 28, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "-(25-15) to Intelligence" }, } }, - ["IntelligenceUnique__25"] = { affix = "", "+(20-40) to Intelligence", statOrder = { 1179 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(20-40) to Intelligence" }, } }, - ["IntelligenceUnique__26_"] = { affix = "", "+(30-40) to Intelligence", statOrder = { 1179 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(30-40) to Intelligence" }, } }, - ["IntelligenceUnique__27"] = { affix = "", "+(20-30) to Intelligence", statOrder = { 1179 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(20-30) to Intelligence" }, } }, - ["IntelligenceUnique__28"] = { affix = "", "+(10-20) to Intelligence", statOrder = { 1179 }, level = 50, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(10-20) to Intelligence" }, } }, - ["IntelligenceUnique__29"] = { affix = "", "+(20-50) to Intelligence", statOrder = { 1179 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(20-50) to Intelligence" }, } }, - ["IntelligenceUnique__30"] = { affix = "", "+(30-40) to Intelligence", statOrder = { 1179 }, level = 62, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(30-40) to Intelligence" }, } }, - ["IntelligenceUnique__32"] = { affix = "", "+(20-30) to Intelligence", statOrder = { 1179 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(20-30) to Intelligence" }, } }, - ["IntelligenceUnique__33"] = { affix = "", "+(30-40) to Intelligence", statOrder = { 1179 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(30-40) to Intelligence" }, } }, - ["IntelligenceUnique__34"] = { affix = "", "+(40-50) to Intelligence", statOrder = { 1179 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(40-50) to Intelligence" }, } }, - ["IntelligenceUnique__35"] = { affix = "", "+(30-50) to Intelligence", statOrder = { 1179 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(30-50) to Intelligence" }, } }, - ["IntelligenceUnique__36"] = { affix = "", "+(5-15) to Intelligence", statOrder = { 1179 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(5-15) to Intelligence" }, } }, - ["IntelligenceUnique__37"] = { affix = "", "+(15-25) to Intelligence", statOrder = { 1179 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(15-25) to Intelligence" }, } }, - ["IntelligenceUnique__38"] = { affix = "", "+(23-32) to Intelligence", statOrder = { 1179 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(23-32) to Intelligence" }, } }, - ["PercentageIntelligenceUniqueHelmetStrDex6"] = { affix = "", "(5-15)% increased Intelligence", statOrder = { 1186 }, level = 1, group = "PercentageIntelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [656461285] = { "(5-15)% increased Intelligence" }, } }, - ["PercentageIntelligenceUniqueStaff12_"] = { affix = "", "(14-18)% increased Intelligence", statOrder = { 1186 }, level = 1, group = "PercentageIntelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [656461285] = { "(14-18)% increased Intelligence" }, } }, - ["PercentageIntelligenceUnique__1"] = { affix = "", "100% reduced Intelligence", statOrder = { 1186 }, level = 1, group = "PercentageIntelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [656461285] = { "100% reduced Intelligence" }, } }, - ["PercentageIntelligenceUnique__3"] = { affix = "", "(8-12)% increased Intelligence", statOrder = { 1186 }, level = 1, group = "PercentageIntelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [656461285] = { "(8-12)% increased Intelligence" }, } }, - ["PercentageIntelligenceUnique__4"] = { affix = "", "(5-8)% increased Intelligence", statOrder = { 1186 }, level = 1, group = "PercentageIntelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [656461285] = { "(5-8)% increased Intelligence" }, } }, - ["PercentageIntelligenceUnique__5"] = { affix = "", "(1-7)% increased Intelligence", statOrder = { 1186 }, level = 1, group = "PercentageIntelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [656461285] = { "(1-7)% increased Intelligence" }, } }, - ["AllAttributesImplicitAmulet1"] = { affix = "", "+(10-16) to all Attributes", statOrder = { 1176 }, level = 25, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(10-16) to all Attributes" }, } }, - ["AllAttributesUniqueAmulet8"] = { affix = "", "+(80-100) to all Attributes", statOrder = { 1176 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(80-100) to all Attributes" }, } }, - ["AllAttributesUniqueBelt3"] = { affix = "", "+(20-30) to all Attributes", statOrder = { 1176 }, level = 20, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(20-30) to all Attributes" }, } }, - ["AllAttributesUniqueAmulet9"] = { affix = "", "+(20-40) to all Attributes", statOrder = { 1176 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(20-40) to all Attributes" }, } }, - ["AllAttributesImplicitWreath1"] = { affix = "", "+(16-24) to all Attributes", statOrder = { 1176 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(16-24) to all Attributes" }, } }, - ["AllAttributesUniqueRing6"] = { affix = "", "+(10-30) to all Attributes", statOrder = { 1176 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(10-30) to all Attributes" }, } }, - ["AllAttributesUniqueHelmetStr3"] = { affix = "", "+(20-25) to all Attributes", statOrder = { 1176 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(20-25) to all Attributes" }, } }, - ["AllAttributesTestUniqueAmulet1"] = { affix = "", "+500 to all Attributes", statOrder = { 1176 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+500 to all Attributes" }, } }, - ["AllAttributesUniqueBodyStr3"] = { affix = "", "+(40-50) to all Attributes", statOrder = { 1176 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(40-50) to all Attributes" }, } }, - ["AllAttributesUniqueTwoHandMace7"] = { affix = "", "+(25-50) to all Attributes", statOrder = { 1176 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(25-50) to all Attributes" }, } }, - ["AllAttributesImplicitDemigodRing1"] = { affix = "", "+(8-12) to all Attributes", statOrder = { 1176 }, level = 16, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(8-12) to all Attributes" }, } }, - ["AllAttributesImplicitDemigodOneHandSword1"] = { affix = "", "+(16-24) to all Attributes", statOrder = { 1176 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(16-24) to all Attributes" }, } }, - ["AllAttributesUniqueRing26"] = { affix = "", "+(10-15) to all Attributes", statOrder = { 1176 }, level = 25, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(10-15) to all Attributes" }, } }, - ["AllAttributesUniqueHelmetStrInt5"] = { affix = "", "+(10-15) to all Attributes", statOrder = { 1176 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(10-15) to all Attributes" }, } }, - ["AllAttributesUniqueStaff10"] = { affix = "", "+(15-20) to all Attributes", statOrder = { 1176 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(15-20) to all Attributes" }, } }, - ["AllAttributesUniqueAmulet22"] = { affix = "", "+(10-20) to all Attributes", statOrder = { 1176 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(10-20) to all Attributes" }, } }, - ["AllAttributesUnique__1"] = { affix = "", "+(30-50) to all Attributes", statOrder = { 1176 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(30-50) to all Attributes" }, } }, - ["AllAttributesUnique__2"] = { affix = "", "+(10-15) to all Attributes", statOrder = { 1176 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(10-15) to all Attributes" }, } }, - ["AllAttributesUnique__3"] = { affix = "", "+(10-20) to all Attributes", statOrder = { 1176 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(10-20) to all Attributes" }, } }, - ["AllAttributesUnique__4"] = { affix = "", "+(15-20) to all Attributes", statOrder = { 1176 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(15-20) to all Attributes" }, } }, - ["AllAttributesUnique__5"] = { affix = "", "+(25-75) to all Attributes", statOrder = { 1176 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(25-75) to all Attributes" }, } }, - ["AllAttributesUnique__6"] = { affix = "", "+(8-24) to all Attributes", statOrder = { 1176 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(8-24) to all Attributes" }, } }, - ["AllAttributesUnique__7"] = { affix = "", "+(15-30) to all Attributes", statOrder = { 1176 }, level = 57, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(15-30) to all Attributes" }, } }, - ["AllAttributesUnique__8_"] = { affix = "", "+(20-30) to all Attributes", statOrder = { 1176 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(20-30) to all Attributes" }, } }, - ["AllAttributesUnique__9"] = { affix = "", "+(15-20) to all Attributes", statOrder = { 1176 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(15-20) to all Attributes" }, } }, - ["AllAttributesUnique__10_"] = { affix = "", "+(15-20) to all Attributes", statOrder = { 1176 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(15-20) to all Attributes" }, } }, - ["AllAttributesUnique__11"] = { affix = "", "+(20-30) to all Attributes", statOrder = { 1176 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(20-30) to all Attributes" }, } }, - ["AllAttributesUnique__12"] = { affix = "", "+(15-20) to all Attributes", statOrder = { 1176 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(15-20) to all Attributes" }, } }, - ["AllAttributesUnique__13_"] = { affix = "", "+20 to all Attributes", statOrder = { 1176 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+20 to all Attributes" }, } }, - ["AllAttributesUnique__14"] = { affix = "", "+(15-25) to all Attributes", statOrder = { 1176 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(15-25) to all Attributes" }, } }, - ["AllAttributesUnique__15"] = { affix = "", "+(25-30) to all Attributes", statOrder = { 1176 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(25-30) to all Attributes" }, } }, - ["AllAttributesUnique__16_"] = { affix = "", "+(15-25) to all Attributes", statOrder = { 1176 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(15-25) to all Attributes" }, } }, - ["AllAttributesUnique__17_"] = { affix = "", "+(10-20) to all Attributes", statOrder = { 1176 }, level = 65, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(10-20) to all Attributes" }, } }, - ["AllAttributesUnique__18"] = { affix = "", "+(20-30) to all Attributes", statOrder = { 1176 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(20-30) to all Attributes" }, } }, - ["AllAttributesUnique__19"] = { affix = "", "+(20-30) to all Attributes", statOrder = { 1176 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(20-30) to all Attributes" }, } }, - ["AllAttributesUnique__20"] = { affix = "", "+(15-20) to all Attributes", statOrder = { 1176 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(15-20) to all Attributes" }, } }, - ["AllAttributesUnique__21"] = { affix = "", "+(25-30) to all Attributes", statOrder = { 1176 }, level = 85, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(25-30) to all Attributes" }, } }, - ["AllAttributesUnique__22_"] = { affix = "", "+(20-30) to all Attributes", statOrder = { 1176 }, level = 60, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(20-30) to all Attributes" }, } }, - ["AllAttributesUnique__23"] = { affix = "", "+(5-10) to all Attributes", statOrder = { 1176 }, level = 50, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(5-10) to all Attributes" }, } }, - ["AllAttributesUnique__24"] = { affix = "", "+(10-20) to all Attributes", statOrder = { 1176 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(10-20) to all Attributes" }, } }, - ["AllAttributesUnique__25"] = { affix = "", "+(10-20) to all Attributes", statOrder = { 1176 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(10-20) to all Attributes" }, } }, - ["AllAttributesUnique__26"] = { affix = "", "+(10-15) to all Attributes", statOrder = { 1176 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(10-15) to all Attributes" }, } }, - ["AllAttributesUnique__27"] = { affix = "", "+(10-20) to all Attributes", statOrder = { 1176 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(10-20) to all Attributes" }, } }, - ["AllAttributesUnique__28"] = { affix = "", "+(10-15) to all Attributes", statOrder = { 1176 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(10-15) to all Attributes" }, } }, - ["AllAttributesUnique__29"] = { affix = "", "+(10-20) to all Attributes", statOrder = { 1176 }, level = 85, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(10-20) to all Attributes" }, } }, - ["AllAttributesUnique__30"] = { affix = "", "+(10-20) to all Attributes", statOrder = { 1176 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(10-20) to all Attributes" }, } }, - ["AllAttributesUnique__31"] = { affix = "", "+(7-13) to all Attributes", statOrder = { 1176 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(7-13) to all Attributes" }, } }, - ["IncreasedLifeImplicitShield1"] = { affix = "", "+(10-20) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(10-20) to maximum Life" }, } }, - ["IncreasedLifeImplicitShield2"] = { affix = "", "+(20-30) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(20-30) to maximum Life" }, } }, - ["IncreasedLifeImplicitShield3"] = { affix = "", "+(30-40) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(30-40) to maximum Life" }, } }, - ["IncreasedLifeUniqueRing1"] = { affix = "", "+(20-30) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(20-30) to maximum Life" }, } }, - ["IncreasedLifeUniqueOneHandSword1"] = { affix = "", "+(20-30) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(20-30) to maximum Life" }, } }, - ["IncreasedLifeUniqueHelmetStr1"] = { affix = "", "+(25-50) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(25-50) to maximum Life" }, } }, - ["IncreasedLifeImplicitRing1"] = { affix = "", "+(20-30) to maximum Life", statOrder = { 1569 }, level = 2, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(20-30) to maximum Life" }, } }, - ["IncreasedLifeImplicitBelt1"] = { affix = "", "+(25-40) to maximum Life", statOrder = { 1569 }, level = 10, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(25-40) to maximum Life" }, } }, - ["IncreasedLifeUniqueBodyStr1"] = { affix = "", "+1000 to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+1000 to maximum Life" }, } }, - ["IncreasedLifeUniqueAmulet4"] = { affix = "", "+(30-50) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(30-50) to maximum Life" }, } }, - ["IncreasedLifeUniqueShieldDex2"] = { affix = "", "+(60-80) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-80) to maximum Life" }, } }, - ["IncreasedLifeUniqueShieldStr1"] = { affix = "", "+(160-180) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(160-180) to maximum Life" }, } }, - ["IncreasedLifeUniqueBootsInt4"] = { affix = "", "+20 to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+20 to maximum Life" }, } }, - ["IncreasedLifeUniqueShieldStr2"] = { affix = "", "+(30-50) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(30-50) to maximum Life" }, } }, - ["IncreasedLifeUniqueTwoHandAxe4"] = { affix = "", "+100 to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+100 to maximum Life" }, } }, - ["IncreasedLifeUniqueBodyDexInt1"] = { affix = "", "+(50-70) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(50-70) to maximum Life" }, } }, - ["IncreasedLifeUniqueHelmetDex4"] = { affix = "", "+(80-100) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(80-100) to maximum Life" }, } }, - ["IncreasedLifeUniqueBodyInt5"] = { affix = "", "+(25-50) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(25-50) to maximum Life" }, } }, - ["IncreasedLifeUniqueGlovesInt3"] = { affix = "", "+(60-80) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-80) to maximum Life" }, } }, - ["ReducedLifeUniqueGlovesDexInt4"] = { affix = "", "-20 to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "-20 to maximum Life" }, } }, - ["IncreasedLifeUniqueHelmetStrDex4"] = { affix = "", "+(200-300) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(200-300) to maximum Life" }, } }, - ["IncreasedLifeUniqueAmulet14"] = { affix = "", "+(30-40) to maximum Life", statOrder = { 1569 }, level = 40, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(30-40) to maximum Life" }, } }, - ["IncreasedLifeUniqueTwoHandMace6"] = { affix = "", "+(35-40) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(35-40) to maximum Life" }, } }, - ["IncreasedLifeUniqueBodyDex6"] = { affix = "", "+(60-70) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-70) to maximum Life" }, } }, - ["IncreasedLifeUniqueHelmetDexInt2"] = { affix = "", "+(60-100) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-100) to maximum Life" }, } }, - ["IncreasedLifeUniqueHelmetDex5"] = { affix = "", "+(10-20) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(10-20) to maximum Life" }, } }, - ["IncreasedLifeUniqueBodyStrDex3_"] = { affix = "", "+(60-90) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-90) to maximum Life" }, } }, - ["IncreasedLifeUniqueShieldStrInt6"] = { affix = "", "+(40-60) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(40-60) to maximum Life" }, } }, - ["IncreasedLifeUniqueBodyStrDex2"] = { affix = "", "+(60-80) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-80) to maximum Life" }, } }, - ["IncreasedLifeUniqueBootsDex6"] = { affix = "", "+(35-45) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(35-45) to maximum Life" }, } }, - ["IncreasedLifeUniqueRing19"] = { affix = "", "+(30-40) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(30-40) to maximum Life" }, } }, - ["IncreasedLifeUniqueBelt7"] = { affix = "", "+(50-60) to maximum Life", statOrder = { 1569 }, level = 50, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(50-60) to maximum Life" }, } }, - ["IncreasedLifeUniqueBelt8"] = { affix = "", "+(75-100) to maximum Life", statOrder = { 1569 }, level = 63, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(75-100) to maximum Life" }, } }, - ["IncreasedLifeUniqueBodyStr2"] = { affix = "", "+(30-60) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(30-60) to maximum Life" }, } }, - ["IncreasedLifeUniqueDescentShield1"] = { affix = "", "+15 to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+15 to maximum Life" }, } }, - ["IncreasedLifeUniqueDescentHelmet1"] = { affix = "", "+10 to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+10 to maximum Life" }, } }, - ["IncreasedLifeUniqueWand4"] = { affix = "", "+(15-20) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(15-20) to maximum Life" }, } }, - ["IncreasedLifeImplicitGlovesDemigods1"] = { affix = "", "+(20-30) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(20-30) to maximum Life" }, } }, - ["IncreasedLifeUniqueOneHandAxe3"] = { affix = "", "+(10-15) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(10-15) to maximum Life" }, } }, - ["IncreasedLifeUniqueBootsStrDex3"] = { affix = "", "+(20-30) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(20-30) to maximum Life" }, } }, - ["IncreasedLifeUniqueGlovesDexInt5"] = { affix = "", "+(60-70) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-70) to maximum Life" }, } }, - ["IncreasedLifeUniqueHelmetStrDex5"] = { affix = "", "+(50-70) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(50-70) to maximum Life" }, } }, - ["IncreasedLifeUniqueGlovesStrDex4"] = { affix = "", "+(50-70) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(50-70) to maximum Life" }, } }, - ["IncreasedLifeUniqueQuiver3"] = { affix = "", "+(40-50) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(40-50) to maximum Life" }, } }, - ["IncreasedLifeUniqueBootsDex7"] = { affix = "", "+(55-75) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(55-75) to maximum Life" }, } }, - ["IncreasedLifeUniqueGlovesStr3"] = { affix = "", "+(60-75) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-75) to maximum Life" }, } }, - ["IncreasedLifeUniqueBodyStrDexInt1"] = { affix = "", "+(90-100) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(90-100) to maximum Life" }, } }, - ["IncreasedLifeUniqueBodyStrInt5"] = { affix = "", "+(80-90) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(80-90) to maximum Life" }, } }, - ["IncreasedLifeUniqueBootsStr2"] = { affix = "", "+(150-200) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(150-200) to maximum Life" }, } }, - ["IncreasedLifeUniqueShieldDexInt1"] = { affix = "", "+(60-80) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-80) to maximum Life" }, } }, - ["IncreasedLifeUniqueShieldDex5"] = { affix = "", "+(70-90) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(70-90) to maximum Life" }, } }, - ["IncreasedLifeUniqueBodyStrDex4"] = { affix = "", "+(70-100) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(70-100) to maximum Life" }, } }, - ["IncreasedLifeUniqueGlovesStrInt2"] = { affix = "", "+(50-70) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(50-70) to maximum Life" }, } }, - ["IncreasedLifeUniqueShieldDex6"] = { affix = "", "+(50-70) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(50-70) to maximum Life" }, } }, - ["IncreasedLifeUniqueShieldStrDex7"] = { affix = "", "+(50-70) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(50-70) to maximum Life" }, } }, - ["IncreasedLifeUniqueAmulet18"] = { affix = "", "+(30-50) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(30-50) to maximum Life" }, } }, - ["IncreasedLifeUniqueQuiver9"] = { affix = "", "+(50-70) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(50-70) to maximum Life" }, } }, - ["IncreasedLifeUniqueBelt13"] = { affix = "", "+(30-40) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(30-40) to maximum Life" }, } }, - ["IncreasedLifeUniqueBodyStrDex5"] = { affix = "", "+(200-300) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(200-300) to maximum Life" }, } }, - ["IncreasedLifeUniqueRing28"] = { affix = "", "+(20-40) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(20-40) to maximum Life" }, } }, - ["IncreasedLifeUniqueAmulet19"] = { affix = "", "+(40-80) to maximum Life", statOrder = { 1569 }, level = 60, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(40-80) to maximum Life" }, } }, - ["IncreasedLifeUniqueRing32"] = { affix = "", "+(0-60) to maximum Life", statOrder = { 1569 }, level = 82, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(0-60) to maximum Life" }, } }, - ["IncreasedLifeFireResistUniqueBelt14"] = { affix = "", "+(70-85) to maximum Life", statOrder = { 1569 }, level = 65, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(70-85) to maximum Life" }, } }, - ["IncreasedLifeUniqueBodyDexInt3"] = { affix = "", "+(60-80) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-80) to maximum Life" }, } }, - ["IncreasedLifeUniqueAmulet22"] = { affix = "", "+(20-40) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(20-40) to maximum Life" }, } }, - ["IncreasedLifeUniqueBodyStr6"] = { affix = "", "+(60-100) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-100) to maximum Life" }, } }, - ["IncreasedLifeUniqueBodyStrInt6"] = { affix = "", "+(60-90) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-90) to maximum Life" }, } }, - ["IncreasedLifeUniqueBodyStrInt7"] = { affix = "", "+(80-100) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(80-100) to maximum Life" }, } }, - ["IncreasedLifeUniqueOneHandMace7"] = { affix = "", "+70 to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+70 to maximum Life" }, } }, - ["IncreasedLifeUniqueShieldStr4"] = { affix = "", "+(50-60) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(50-60) to maximum Life" }, } }, - ["IncreasedLifeUniqueShieldStr5"] = { affix = "", "+(40-60) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(40-60) to maximum Life" }, } }, - ["IncreasedLifeUniqueBootsStr3_"] = { affix = "", "+(50-70) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(50-70) to maximum Life" }, } }, - ["IncreasedLifeUnique__15"] = { affix = "", "+(30-50) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(30-50) to maximum Life" }, } }, - ["IncreasedLifeUnique__4"] = { affix = "", "+(30-50) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(30-50) to maximum Life" }, } }, - ["IncreasedLifeUnique__5"] = { affix = "", "+(20-40) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(20-40) to maximum Life" }, } }, - ["IncreasedLifeUnique__6"] = { affix = "", "+(60-80) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-80) to maximum Life" }, } }, - ["IncreasedLifeUniqueAmulet25"] = { affix = "", "+(60-70) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-70) to maximum Life" }, } }, - ["IncreasedLifeUnique__1"] = { affix = "", "+(30-60) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(30-60) to maximum Life" }, } }, - ["IncreasedLifeUnique__2"] = { affix = "", "+(50-70) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(50-70) to maximum Life" }, } }, - ["IncreasedLifeUnique__3"] = { affix = "", "+(60-80) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-80) to maximum Life" }, } }, - ["IncreasedLifeUnique___7"] = { affix = "", "+(50-70) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(50-70) to maximum Life" }, } }, - ["IncreasedLifeUnique__8"] = { affix = "", "+(30-50) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(30-50) to maximum Life" }, } }, - ["IncreasedLifeUnique__9"] = { affix = "", "+(60-70) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-70) to maximum Life" }, } }, - ["IncreasedLifeUnique__10"] = { affix = "", "+(30-40) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(30-40) to maximum Life" }, } }, - ["IncreasedLifeUnique__11"] = { affix = "", "+(30-50) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(30-50) to maximum Life" }, } }, - ["IncreasedLifeUnique__12_"] = { affix = "", "+(50-70) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(50-70) to maximum Life" }, } }, - ["IncreasedLifeUniqueBootsDex9__"] = { affix = "", "+(50-70) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(50-70) to maximum Life" }, } }, - ["IncreasedLifeUnique__14"] = { affix = "", "+(45-60) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(45-60) to maximum Life" }, } }, - ["IncreasedLifeUnique__13"] = { affix = "", "+(40-80) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(40-80) to maximum Life" }, } }, - ["IncreasedLifeUnique__16"] = { affix = "", "+(30-60) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(30-60) to maximum Life" }, } }, - ["IncreasedLifeUnique__18"] = { affix = "", "+(35-45) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(35-45) to maximum Life" }, } }, - ["IncreasedLifeUnique__19"] = { affix = "", "+(30-40) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(30-40) to maximum Life" }, } }, - ["IncreasedLifeUnique__20"] = { affix = "", "+(30-50) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(30-50) to maximum Life" }, } }, - ["IncreasedLifeUnique__21"] = { affix = "", "+(60-90) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-90) to maximum Life" }, } }, - ["IncreasedLifeUnique__22"] = { affix = "", "+(100-150) to maximum Life", statOrder = { 1569 }, level = 50, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(100-150) to maximum Life" }, } }, - ["IncreasedLifeUnique__23"] = { affix = "", "+(50-80) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(50-80) to maximum Life" }, } }, - ["IncreasedLifeUnique__24"] = { affix = "", "+(90-100) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(90-100) to maximum Life" }, } }, - ["IncreasedLifeUnique__25"] = { affix = "", "+(25-35) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(25-35) to maximum Life" }, } }, - ["IncreasedLifeUnique__26"] = { affix = "", "+(40-60) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(40-60) to maximum Life" }, } }, - ["IncreasedLifeUnique__27"] = { affix = "", "+(30-60) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(30-60) to maximum Life" }, } }, - ["IncreasedLifeUnique__28"] = { affix = "", "+(50-70) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(50-70) to maximum Life" }, } }, - ["IncreasedLifeUnique__29"] = { affix = "", "+(80-100) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(80-100) to maximum Life" }, } }, - ["IncreasedLifeUnique__30"] = { affix = "", "+(40-60) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(40-60) to maximum Life" }, } }, - ["IncreasedLifeUnique__31"] = { affix = "", "+(65-80) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(65-80) to maximum Life" }, } }, - ["IncreasedLifeUnique__32"] = { affix = "", "+(60-100) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-100) to maximum Life" }, } }, - ["IncreasedLifeUnique__33"] = { affix = "", "+(60-100) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-100) to maximum Life" }, } }, - ["IncreasedLifeUnique__34"] = { affix = "", "+(240-300) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(240-300) to maximum Life" }, } }, - ["IncreasedLifeUnique__35"] = { affix = "", "+(80-100) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(80-100) to maximum Life" }, } }, - ["IncreasedLifeUnique__36_"] = { affix = "", "+(70-100) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(70-100) to maximum Life" }, } }, - ["IncreasedLifeUnique__37"] = { affix = "", "+(70-100) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(70-100) to maximum Life" }, } }, - ["IncreasedLifeUnique__38"] = { affix = "", "+(60-80) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-80) to maximum Life" }, } }, - ["IncreasedLifeUnique__39"] = { affix = "", "+(20-30) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(20-30) to maximum Life" }, } }, - ["IncreasedLifeUnique__40"] = { affix = "", "+(30-50) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(30-50) to maximum Life" }, } }, - ["IncreasedLifeUnique__41"] = { affix = "", "+(40-50) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(40-50) to maximum Life" }, } }, - ["IncreasedLifeUnique__42_"] = { affix = "", "+(60-80) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-80) to maximum Life" }, } }, - ["IncreasedLifeUnique__43"] = { affix = "", "+(60-80) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-80) to maximum Life" }, } }, - ["IncreasedLifeUnique__44"] = { affix = "", "+(50-70) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(50-70) to maximum Life" }, } }, - ["IncreasedLifeUnique__45"] = { affix = "", "+(60-80) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-80) to maximum Life" }, } }, - ["IncreasedLifeUnique__46"] = { affix = "", "+(60-80) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-80) to maximum Life" }, } }, - ["IncreasedLifeUnique__47"] = { affix = "", "+(40-50) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(40-50) to maximum Life" }, } }, - ["IncreasedLifeUnique__48"] = { affix = "", "+(30-40) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(30-40) to maximum Life" }, } }, - ["IncreasedLifeUnique__49_"] = { affix = "", "+(50-70) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(50-70) to maximum Life" }, } }, - ["IncreasedLifeUnique__50"] = { affix = "", "+(50-70) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(50-70) to maximum Life" }, } }, - ["IncreasedLifeUnique__51"] = { affix = "", "+(90-100) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(90-100) to maximum Life" }, } }, - ["IncreasedLifeUnique__52"] = { affix = "", "+(60-80) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-80) to maximum Life" }, } }, - ["IncreasedLifeUnique__53"] = { affix = "", "+(60-80) to maximum Life", statOrder = { 1569 }, level = 75, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-80) to maximum Life" }, } }, - ["IncreasedLifeUnique__54"] = { affix = "", "+(50-70) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(50-70) to maximum Life" }, } }, - ["IncreasedLifeUnique__55"] = { affix = "", "+(60-70) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-70) to maximum Life" }, } }, - ["IncreasedLifeUnique__56"] = { affix = "", "+(60-80) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-80) to maximum Life" }, } }, - ["IncreasedLifeUnique__57"] = { affix = "", "+(60-70) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-70) to maximum Life" }, } }, - ["IncreasedLifeUnique__58"] = { affix = "", "+(60-80) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-80) to maximum Life" }, } }, - ["IncreasedLifeUnique__59"] = { affix = "", "+(60-80) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-80) to maximum Life" }, } }, - ["IncreasedLifeUnique__60"] = { affix = "", "+(60-70) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-70) to maximum Life" }, } }, - ["IncreasedLifeUnique__61"] = { affix = "", "+(40-50) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(40-50) to maximum Life" }, } }, - ["IncreasedLifeUnique__62"] = { affix = "", "+(50-70) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(50-70) to maximum Life" }, } }, - ["IncreasedLifeUnique__63_"] = { affix = "", "+(60-80) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-80) to maximum Life" }, } }, - ["IncreasedLifeUnique__64"] = { affix = "", "+(60-80) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-80) to maximum Life" }, } }, - ["IncreasedLifeUnique__65"] = { affix = "", "+(50-70) to maximum Life", statOrder = { 1569 }, level = 81, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(50-70) to maximum Life" }, } }, - ["IncreasedLifeUnique__66"] = { affix = "", "+(60-80) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-80) to maximum Life" }, } }, - ["IncreasedLifeUnique__67_"] = { affix = "", "+(50-60) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(50-60) to maximum Life" }, } }, - ["IncreasedLifeUnique__68_"] = { affix = "", "+(50-60) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(50-60) to maximum Life" }, } }, - ["IncreasedLifeUnique__69"] = { affix = "", "+(30-60) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(30-60) to maximum Life" }, } }, - ["IncreasedLifeUnique__70"] = { affix = "", "+(90-100) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(90-100) to maximum Life" }, } }, - ["IncreasedLifeUnique__71"] = { affix = "", "+(40-60) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(40-60) to maximum Life" }, } }, - ["IncreasedLifeUnique__72_"] = { affix = "", "+(100-120) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(100-120) to maximum Life" }, } }, - ["IncreasedLifeUnique__73"] = { affix = "", "+(50-70) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(50-70) to maximum Life" }, } }, - ["IncreasedLifeUnique__74"] = { affix = "", "+(80-100) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(80-100) to maximum Life" }, } }, - ["IncreasedLifeUnique__75"] = { affix = "", "+(50-70) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(50-70) to maximum Life" }, } }, - ["IncreasedLifeUnique__76"] = { affix = "", "+(50-70) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(50-70) to maximum Life" }, } }, - ["IncreasedLifeUnique__77"] = { affix = "", "+(40-50) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(40-50) to maximum Life" }, } }, - ["IncreasedLifeUnique__78"] = { affix = "", "+(60-80) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-80) to maximum Life" }, } }, - ["IncreasedLifeUnique__79"] = { affix = "", "+(60-80) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-80) to maximum Life" }, } }, - ["IncreasedLifeUnique__80_"] = { affix = "", "+(20-60) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(20-60) to maximum Life" }, } }, - ["IncreasedLifeUnique__81"] = { affix = "", "+(60-90) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-90) to maximum Life" }, } }, - ["IncreasedLifeUnique__82"] = { affix = "", "+(80-100) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(80-100) to maximum Life" }, } }, - ["IncreasedLifeUnique__83"] = { affix = "", "+(50-70) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(50-70) to maximum Life" }, } }, - ["IncreasedLifeUnique__84"] = { affix = "", "+(50-70) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(50-70) to maximum Life" }, } }, - ["IncreasedLifeUnique__85_"] = { affix = "", "+(60-80) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-80) to maximum Life" }, } }, - ["IncreasedLifeUnique__86_"] = { affix = "", "+(100-120) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(100-120) to maximum Life" }, } }, - ["IncreasedLifeUnique__87"] = { affix = "", "+23 to maximum Life", statOrder = { 1569 }, level = 25, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+23 to maximum Life" }, } }, - ["IncreasedLifeUnique__88"] = { affix = "", "+(50-175) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(50-175) to maximum Life" }, } }, - ["IncreasedLifeUnique__89"] = { affix = "", "+(50-70) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(50-70) to maximum Life" }, } }, - ["IncreasedLifeUnique__90"] = { affix = "", "+(80-100) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(80-100) to maximum Life" }, } }, - ["IncreasedLifeUnique__91"] = { affix = "", "+(70-100) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(70-100) to maximum Life" }, } }, - ["IncreasedLifeUnique__92_"] = { affix = "", "+(50-70) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(50-70) to maximum Life" }, } }, - ["IncreasedLifeUnique__93"] = { affix = "", "+(50-70) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(50-70) to maximum Life" }, } }, - ["IncreasedLifeUnique__94"] = { affix = "", "+(60-80) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-80) to maximum Life" }, } }, - ["IncreasedLifeUnique__95"] = { affix = "", "+(50-70) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(50-70) to maximum Life" }, } }, - ["IncreasedLifeUnique__96__"] = { affix = "", "+(50-70) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(50-70) to maximum Life" }, } }, - ["IncreasedLifeUnique__97"] = { affix = "", "+(50-80) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(50-80) to maximum Life" }, } }, - ["IncreasedLifeUnique__98"] = { affix = "", "+(50-70) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(50-70) to maximum Life" }, } }, - ["IncreasedLifeUnique__99"] = { affix = "", "+(50-70) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(50-70) to maximum Life" }, } }, - ["IncreasedLifeUnique__100"] = { affix = "", "+(60-90) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-90) to maximum Life" }, } }, - ["IncreasedLifeUnique__101"] = { affix = "", "+(60-90) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-90) to maximum Life" }, } }, - ["IncreasedLifeUnique__102"] = { affix = "", "+(50-70) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(50-70) to maximum Life" }, } }, - ["IncreasedLifeUnique__103"] = { affix = "", "+(60-80) to maximum Life", statOrder = { 1569 }, level = 77, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-80) to maximum Life" }, } }, - ["IncreasedLifeUnique__104_"] = { affix = "", "+100 to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+100 to maximum Life" }, } }, - ["IncreasedLifeUnique__105"] = { affix = "", "+(60-80) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-80) to maximum Life" }, } }, - ["IncreasedLifeUnique__106_"] = { affix = "", "+(120-160) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(120-160) to maximum Life" }, } }, - ["IncreasedLifeUnique__107"] = { affix = "", "+(30-50) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(30-50) to maximum Life" }, } }, - ["IncreasedLifeUnique__108"] = { affix = "", "+(80-100) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(80-100) to maximum Life" }, } }, - ["IncreasedLifeUnique__109_"] = { affix = "", "+(45-65) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(45-65) to maximum Life" }, } }, - ["IncreasedLifeUnique__110"] = { affix = "", "+(50-70) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(50-70) to maximum Life" }, } }, - ["IncreasedLifeUnique__111__"] = { affix = "", "+(40-70) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(40-70) to maximum Life" }, } }, - ["IncreasedLifeUnique__112"] = { affix = "", "+(80-100) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(80-100) to maximum Life" }, } }, - ["IncreasedLifeUnique__113"] = { affix = "", "+(50-70) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(50-70) to maximum Life" }, } }, - ["IncreasedLifeUnique__114"] = { affix = "", "+(50-70) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(50-70) to maximum Life" }, } }, - ["IncreasedLifeUnique__115"] = { affix = "", "+(50-100) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(50-100) to maximum Life" }, } }, - ["IncreasedLifeUnique__116"] = { affix = "", "+(80-100) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(80-100) to maximum Life" }, } }, - ["IncreasedLifeUnique__117"] = { affix = "", "+(-200-200) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(-200-200) to maximum Life" }, } }, - ["IncreasedLifeUnique__118"] = { affix = "", "+(40-50) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(40-50) to maximum Life" }, } }, - ["IncreasedLifeUnique__119"] = { affix = "", "+(50-70) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(50-70) to maximum Life" }, } }, - ["IncreasedLifeUnique__120"] = { affix = "", "+(60-80) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-80) to maximum Life" }, } }, - ["IncreasedLifeUnique__121"] = { affix = "", "+(60-80) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-80) to maximum Life" }, } }, - ["IncreasedLifeUnique__122"] = { affix = "", "+(25-30) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(25-30) to maximum Life" }, } }, - ["IncreasedLifeUnique__123"] = { affix = "", "+(30-50) to maximum Life", statOrder = { 1569 }, level = 25, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(30-50) to maximum Life" }, } }, - ["IncreasedLifeUnique__124"] = { affix = "", "+(60-80) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-80) to maximum Life" }, } }, - ["IncreasedLifeUnique__125"] = { affix = "", "+(1-100) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(1-100) to maximum Life" }, } }, - ["IncreasedLifeUnique__126"] = { affix = "", "+(60-90) to maximum Life", statOrder = { 1569 }, level = 98, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-90) to maximum Life" }, } }, - ["IncreasedLifeUnique__127"] = { affix = "", "+(80-100) to maximum Life", statOrder = { 1569 }, level = 70, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(80-100) to maximum Life" }, } }, - ["IncreasedManaImplicitRing1"] = { affix = "", "+(20-30) to maximum Mana", statOrder = { 1579 }, level = 2, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(20-30) to maximum Mana" }, } }, - ["IncreasedManaImplicitArmour1"] = { affix = "", "+(20-25) to maximum Mana", statOrder = { 1579 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(20-25) to maximum Mana" }, } }, - ["IncreasedManaUniqueAmulet1"] = { affix = "", "+(40-70) to maximum Mana", statOrder = { 1579 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(40-70) to maximum Mana" }, } }, - ["IncreasedManaUniqueBow1"] = { affix = "", "+(80-100) to maximum Mana", statOrder = { 1579 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(80-100) to maximum Mana" }, } }, - ["IncreasedManaUniqueTwoHandSword2"] = { affix = "", "+(20-30) to maximum Mana", statOrder = { 1579 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(20-30) to maximum Mana" }, } }, - ["IncreasedManaUniqueQuiver1"] = { affix = "", "+(10-30) to maximum Mana", statOrder = { 1579 }, level = 28, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(10-30) to maximum Mana" }, } }, - ["IncreasedManaUniqueQuiver1a"] = { affix = "", "+(10-30) to maximum Mana", statOrder = { 1579 }, level = 28, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(10-30) to maximum Mana" }, } }, - ["IncreasedManaUniqueDexHelmet1"] = { affix = "", "+(15-30) to maximum Mana", statOrder = { 1579 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(15-30) to maximum Mana" }, } }, - ["IncreasedManaUniqueIntHelmet3"] = { affix = "", "+(20-30) to maximum Mana", statOrder = { 1579 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(20-30) to maximum Mana" }, } }, - ["IncreasedManaUniqueGlovesStr1"] = { affix = "", "(10-15)% reduced maximum Mana", statOrder = { 1580 }, level = 1, group = "MaximumManaIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2748665614] = { "(10-15)% reduced maximum Mana" }, } }, - ["IncreasedManaUniqueHelmetInt4"] = { affix = "", "+(25-75) to maximum Mana", statOrder = { 1579 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(25-75) to maximum Mana" }, } }, - ["IncreasedManaUniqueBootsInt4"] = { affix = "", "+20 to maximum Mana", statOrder = { 1579 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+20 to maximum Mana" }, } }, - ["IncreasedManaUniqueShieldInt2"] = { affix = "", "+(15-25) to maximum Mana", statOrder = { 1579 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(15-25) to maximum Mana" }, } }, - ["IncreasedManaUniqueDagger4"] = { affix = "", "+(60-100) to maximum Mana", statOrder = { 1579 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(60-100) to maximum Mana" }, } }, - ["IncreasedManaUniqueBodyInt5"] = { affix = "", "+(25-50) to maximum Mana", statOrder = { 1579 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(25-50) to maximum Mana" }, } }, - ["IncreasedManaUniqueBootsInt5"] = { affix = "", "+(40-60) to maximum Mana", statOrder = { 1579 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(40-60) to maximum Mana" }, } }, - ["IncreasedManaUniqueGlovesInt3"] = { affix = "", "+(60-80) to maximum Mana", statOrder = { 1579 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(60-80) to maximum Mana" }, } }, - ["IncreasedManaUniqueAmulet10"] = { affix = "", "+100 to maximum Mana", statOrder = { 1579 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+100 to maximum Mana" }, } }, - ["IncreasedManaUniqueWand3"] = { affix = "", "+(40-50) to maximum Mana", statOrder = { 1579 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(40-50) to maximum Mana" }, } }, - ["IncreasedManaUniqueBelt5"] = { affix = "", "+(45-55) to maximum Mana", statOrder = { 1579 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(45-55) to maximum Mana" }, } }, - ["IncreasedManaUniqueRing14"] = { affix = "", "+(25-30) to maximum Mana", statOrder = { 1579 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(25-30) to maximum Mana" }, } }, - ["IncreasedManaUniqueHelmetDexInt2"] = { affix = "", "+(60-100) to maximum Mana", statOrder = { 1579 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(60-100) to maximum Mana" }, } }, - ["IncreasedManaUniqueHelmetStrInt3"] = { affix = "", "+(100-120) to maximum Mana", statOrder = { 1579 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(100-120) to maximum Mana" }, } }, - ["IncreasedManaUniqueClaw7"] = { affix = "", "+(30-40) to maximum Mana", statOrder = { 1579 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(30-40) to maximum Mana" }, } }, - ["IncreasedManaUniqueRing20"] = { affix = "", "+(30-40) to maximum Mana", statOrder = { 1579 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(30-40) to maximum Mana" }, } }, - ["IncreasedManaUniqueHelmetDexInt3"] = { affix = "", "+(30-40) to maximum Mana", statOrder = { 1579 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(30-40) to maximum Mana" }, } }, - ["IncreasedManaUniqueBodyDexInt2"] = { affix = "", "+(100-150) to maximum Mana", statOrder = { 1579 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(100-150) to maximum Mana" }, } }, - ["IncreasedManaUniqueSceptre6"] = { affix = "", "+(20-30) to maximum Mana", statOrder = { 1579 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(20-30) to maximum Mana" }, } }, - ["IncreasedManaUniqueWand4"] = { affix = "", "+(15-20) to maximum Mana", statOrder = { 1579 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(15-20) to maximum Mana" }, } }, - ["IncreasedManaUniqueBootsStrDex4"] = { affix = "", "+(20-40) to maximum Mana", statOrder = { 1579 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(20-40) to maximum Mana" }, } }, - ["IncreasedManaUniqueBootsStrDex3"] = { affix = "", "+(10-20) to maximum Mana", statOrder = { 1579 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(10-20) to maximum Mana" }, } }, - ["IncreasedManaUniqueRing17"] = { affix = "", "+(40-60) to maximum Mana", statOrder = { 1579 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(40-60) to maximum Mana" }, } }, - ["IncreasedManaUniqueHelmetStrDex5_"] = { affix = "", "+(50-70) to maximum Mana", statOrder = { 1579 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(50-70) to maximum Mana" }, } }, - ["IncreasedManaUniqueBodyInt9"] = { affix = "", "+(20-30) to maximum Mana", statOrder = { 1579 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(20-30) to maximum Mana" }, } }, - ["IncreasedManaUniqueAmulet18"] = { affix = "", "+(30-50) to maximum Mana", statOrder = { 1579 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(30-50) to maximum Mana" }, } }, - ["IncreasedManaUniqueRing29"] = { affix = "", "+(20-40) to maximum Mana", statOrder = { 1579 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(20-40) to maximum Mana" }, } }, - ["IncreasedManaUniqueHelmetInt8"] = { affix = "", "+(30-60) to maximum Mana", statOrder = { 1579 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(30-60) to maximum Mana" }, } }, - ["IncreasedManaUniqueAmulet19"] = { affix = "", "+(20-40) to maximum Mana", statOrder = { 1579 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(20-40) to maximum Mana" }, } }, - ["IncreasedManaUniqueTwoHandAxe9"] = { affix = "", "+(100-150) to maximum Mana", statOrder = { 1579 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(100-150) to maximum Mana" }, } }, - ["IncreasedManaUniqueBodyStrInt6"] = { affix = "", "+(50-70) to maximum Mana", statOrder = { 1579 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(50-70) to maximum Mana" }, } }, - ["IncreasedManaUniqueOneHandMace7"] = { affix = "", "+70 to maximum Mana", statOrder = { 1579 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+70 to maximum Mana" }, } }, - ["IncreasedManaUnique__3"] = { affix = "", "+(50-70) to maximum Mana", statOrder = { 1579 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(50-70) to maximum Mana" }, } }, - ["IncreasedManaUnique__1"] = { affix = "", "+(60-120) to maximum Mana", statOrder = { 1579 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(60-120) to maximum Mana" }, } }, - ["IncreasedManaUnique__2"] = { affix = "", "+30 to maximum Mana", statOrder = { 1579 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+30 to maximum Mana" }, } }, - ["IncreasedManaUnique__4"] = { affix = "", "+(80-120) to maximum Mana", statOrder = { 1579 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(80-120) to maximum Mana" }, } }, - ["IncreasedManaUnique__5"] = { affix = "", "+(30-50) to maximum Mana", statOrder = { 1579 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(30-50) to maximum Mana" }, } }, - ["IncreasedManaUnique__6"] = { affix = "", "+(30-50) to maximum Mana", statOrder = { 1579 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(30-50) to maximum Mana" }, } }, - ["IncreasedManaUnique__7"] = { affix = "", "+(30-50) to maximum Mana", statOrder = { 1579 }, level = 24, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(30-50) to maximum Mana" }, } }, - ["IncreasedManaUnique__8"] = { affix = "", "+(30-60) to maximum Mana", statOrder = { 1579 }, level = 28, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(30-60) to maximum Mana" }, } }, - ["IncreasedManaUnique__9"] = { affix = "", "+(50-80) to maximum Mana", statOrder = { 1579 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(50-80) to maximum Mana" }, } }, - ["IncreasedManaUnique__10"] = { affix = "", "+(150-200) to maximum Mana", statOrder = { 1579 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(150-200) to maximum Mana" }, } }, - ["IncreasedManaUnique__12"] = { affix = "", "+(20-50) to maximum Mana", statOrder = { 1579 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(20-50) to maximum Mana" }, } }, - ["IncreasedManaUnique__13"] = { affix = "", "+(50-60) to maximum Mana", statOrder = { 1579 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(50-60) to maximum Mana" }, } }, - ["IncreasedManaUnique__14"] = { affix = "", "+(40-60) to maximum Mana", statOrder = { 1579 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(40-60) to maximum Mana" }, } }, - ["IncreasedManaUnique__15"] = { affix = "", "+(1-75) to maximum Mana", statOrder = { 1579 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(1-75) to maximum Mana" }, } }, - ["IncreasedManaUnique__16"] = { affix = "", "+(30-50) to maximum Mana", statOrder = { 1579 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(30-50) to maximum Mana" }, } }, - ["IncreasedManaUnique__17"] = { affix = "", "+(80-100) to maximum Mana", statOrder = { 1579 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(80-100) to maximum Mana" }, } }, - ["IncreasedManaUnique__18"] = { affix = "", "+(1-100) to maximum Mana", statOrder = { 1579 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(1-100) to maximum Mana" }, } }, - ["IncreasedManaUnique__19"] = { affix = "", "+500 to maximum Mana", statOrder = { 1579 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+500 to maximum Mana" }, } }, - ["IncreasedManaUnique__20_"] = { affix = "", "+(120-160) to maximum Mana", statOrder = { 1579 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(120-160) to maximum Mana" }, } }, - ["IncreasedManaUnique__21"] = { affix = "", "+(40-70) to maximum Mana", statOrder = { 1579 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(40-70) to maximum Mana" }, } }, - ["IncreasedManaUnique__22__"] = { affix = "", "+(50-70) to maximum Mana", statOrder = { 1579 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(50-70) to maximum Mana" }, } }, - ["IncreasedManaUnique__23"] = { affix = "", "+(40-70) to maximum Mana", statOrder = { 1579 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(40-70) to maximum Mana" }, } }, - ["IncreasedManaUnique__24"] = { affix = "", "+(40-60) to maximum Mana", statOrder = { 1579 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(40-60) to maximum Mana" }, } }, - ["IncreasedManaUnique__25"] = { affix = "", "+(40-60) to maximum Mana", statOrder = { 1579 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(40-60) to maximum Mana" }, } }, - ["IncreasedManaUnique__26"] = { affix = "", "+(150-200) to maximum Mana", statOrder = { 1579 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(150-200) to maximum Mana" }, } }, - ["IncreasedManaUnique__27"] = { affix = "", "+(60-80) to maximum Mana", statOrder = { 1579 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(60-80) to maximum Mana" }, } }, - ["IncreasedManaUnique__28"] = { affix = "", "+(60-100) to maximum Mana", statOrder = { 1579 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(60-100) to maximum Mana" }, } }, - ["IncreasedManaUnique__29"] = { affix = "", "+(20-25) to maximum Mana", statOrder = { 1579 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(20-25) to maximum Mana" }, } }, - ["IncreasedManaUnique__30"] = { affix = "", "+(40-70) to maximum Mana", statOrder = { 1579 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(40-70) to maximum Mana" }, } }, - ["IncreasedManaUnique__31"] = { affix = "", "+(55-70) to maximum Mana", statOrder = { 1579 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(55-70) to maximum Mana" }, } }, - ["IncreasedEnergyShieldImplicitBelt1"] = { affix = "", "+(9-20) to maximum Energy Shield", statOrder = { 1558 }, level = 2, group = "EnergyShieldImplicit", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+(9-20) to maximum Energy Shield" }, } }, - ["IncreasedEnergyShieldImplicitBelt2"] = { affix = "", "+(60-80) to maximum Energy Shield", statOrder = { 1558 }, level = 99, group = "EnergyShieldImplicit", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+(60-80) to maximum Energy Shield" }, } }, - ["IncreasedEnergyShieldUniqueClaw1"] = { affix = "", "+(200-300) to maximum Energy Shield", statOrder = { 1558 }, level = 1, group = "EnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+(200-300) to maximum Energy Shield" }, } }, - ["IncreasedEnergyShieldUniqueDagger4"] = { affix = "", "+50 to maximum Energy Shield", statOrder = { 1558 }, level = 1, group = "EnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+50 to maximum Energy Shield" }, } }, - ["IncreasedEnergyShieldUniqueGlovesInt6"] = { affix = "", "+15 to maximum Energy Shield", statOrder = { 1558 }, level = 1, group = "EnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+15 to maximum Energy Shield" }, } }, - ["IncreasedEnergyShieldImplicitRing1"] = { affix = "", "+(15-25) to maximum Energy Shield", statOrder = { 1558 }, level = 25, group = "EnergyShieldImplicit", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+(15-25) to maximum Energy Shield" }, } }, - ["IncreasedEnergyShieldUniqueAmulet14"] = { affix = "", "+(20-30) to maximum Energy Shield", statOrder = { 1558 }, level = 40, group = "EnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+(20-30) to maximum Energy Shield" }, } }, - ["IncreasedEnergyShieldUniqueBelt5"] = { affix = "", "+(60-70) to maximum Energy Shield", statOrder = { 1558 }, level = 70, group = "EnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+(60-70) to maximum Energy Shield" }, } }, - ["IncreasedEnergyShieldUniqueRing18"] = { affix = "", "+(30-40) to maximum Energy Shield", statOrder = { 1558 }, level = 25, group = "EnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+(30-40) to maximum Energy Shield" }, } }, - ["IncreasedEnergyShieldUniqueBodyStrDexInt1"] = { affix = "", "+(70-80) to maximum Energy Shield", statOrder = { 1559 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(70-80) to maximum Energy Shield" }, } }, - ["IncreasedEnergyShieldUniqueQuiver7"] = { affix = "", "+(100-120) to maximum Energy Shield", statOrder = { 1558 }, level = 1, group = "EnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+(100-120) to maximum Energy Shield" }, } }, - ["IncreasedEnergyShieldUniqueBelt11"] = { affix = "", "+(20-30) to maximum Energy Shield", statOrder = { 1558 }, level = 1, group = "EnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+(20-30) to maximum Energy Shield" }, } }, - ["IncreasedEnergyShieldUniqueRing27"] = { affix = "", "+(15-25) to maximum Energy Shield", statOrder = { 1558 }, level = 1, group = "EnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+(15-25) to maximum Energy Shield" }, } }, - ["IncreasedEnergyShieldUniqueRing35"] = { affix = "", "+(15-25) to maximum Energy Shield", statOrder = { 1558 }, level = 1, group = "EnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+(15-25) to maximum Energy Shield" }, } }, - ["IncreasedEnergyShieldUnique___1"] = { affix = "", "+(20-30) to maximum Energy Shield", statOrder = { 1558 }, level = 1, group = "EnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+(20-30) to maximum Energy Shield" }, } }, - ["IncreasedEnergyShieldUnique__2"] = { affix = "", "+35 to maximum Energy Shield", statOrder = { 1558 }, level = 1, group = "EnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+35 to maximum Energy Shield" }, } }, - ["IncreasedEnergyShieldUnique__3"] = { affix = "", "+(70-150) to maximum Energy Shield", statOrder = { 1558 }, level = 1, group = "EnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+(70-150) to maximum Energy Shield" }, } }, - ["IncreasedEnergyShieldUnique__4"] = { affix = "", "+(75-80) to maximum Energy Shield", statOrder = { 1558 }, level = 1, group = "EnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+(75-80) to maximum Energy Shield" }, } }, - ["IncreasedEnergyShieldUnique__5"] = { affix = "", "+(30-40) to maximum Energy Shield", statOrder = { 1558 }, level = 1, group = "EnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+(30-40) to maximum Energy Shield" }, } }, - ["IncreasedEnergyShieldUnique__6"] = { affix = "", "+250 to maximum Energy Shield", statOrder = { 1558 }, level = 1, group = "EnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+250 to maximum Energy Shield" }, } }, - ["IncreasedEnergyShieldUnique__7"] = { affix = "", "+(80-120) to maximum Energy Shield", statOrder = { 1558 }, level = 1, group = "EnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+(80-120) to maximum Energy Shield" }, } }, - ["IncreasedEnergyShieldUnique__8"] = { affix = "", "+(40-45) to maximum Energy Shield", statOrder = { 1558 }, level = 1, group = "EnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+(40-45) to maximum Energy Shield" }, } }, - ["IncreasedEnergyShieldUnique__9"] = { affix = "", "+(50-70) to maximum Energy Shield", statOrder = { 1558 }, level = 1, group = "EnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+(50-70) to maximum Energy Shield" }, } }, - ["IncreasedEnergyShieldUnique__10"] = { affix = "", "+(60-70) to maximum Energy Shield", statOrder = { 1558 }, level = 1, group = "EnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+(60-70) to maximum Energy Shield" }, } }, - ["IncreasedEnergyShieldUnique__11"] = { affix = "", "+(30-35) to maximum Energy Shield", statOrder = { 1558 }, level = 1, group = "EnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+(30-35) to maximum Energy Shield" }, } }, - ["IncreasedEnergyShieldUnique__12"] = { affix = "", "+(40-60) to maximum Energy Shield", statOrder = { 1558 }, level = 1, group = "EnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+(40-60) to maximum Energy Shield" }, } }, - ["IncreasedEnergyShieldUnique__13"] = { affix = "", "+(40-60) to maximum Energy Shield", statOrder = { 1558 }, level = 1, group = "EnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+(40-60) to maximum Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldUniqueBootsDex1"] = { affix = "", "+(100-150) to maximum Energy Shield", statOrder = { 1559 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(100-150) to maximum Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldUniqueBodyInt5"] = { affix = "", "+(30-60) to maximum Energy Shield", statOrder = { 1559 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(30-60) to maximum Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldUniqueHelmetDexInt5"] = { affix = "", "+(30-40) to maximum Energy Shield", statOrder = { 1559 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(30-40) to maximum Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldUniqueBodyInt9"] = { affix = "", "(200-220)% increased Energy Shield", statOrder = { 1560 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(200-220)% increased Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldUniqueBootsDex8"] = { affix = "", "+(15-30) to maximum Energy Shield", statOrder = { 1559 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(15-30) to maximum Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldUniqueHelmetStrInt5_"] = { affix = "", "+(50-70) to maximum Energy Shield", statOrder = { 1559 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(50-70) to maximum Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldUniqueGlovesStr4"] = { affix = "", "+(80-100) to maximum Energy Shield", statOrder = { 1559 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(80-100) to maximum Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldUniqueShieldInt5"] = { affix = "", "+(70-90) to maximum Energy Shield", statOrder = { 1559 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(70-90) to maximum Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldUniqueBootsDexInt4"] = { affix = "", "+(80-100) to maximum Energy Shield", statOrder = { 1559 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(80-100) to maximum Energy Shield" }, } }, - ["LocalIncreasedEnergyShiledUniqueBootsInt6"] = { affix = "", "+(20-30) to maximum Energy Shield", statOrder = { 1559 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(20-30) to maximum Energy Shield" }, } }, - ["LocalIncreasedEnergySheildUnique__2_"] = { affix = "", "+(30-40) to maximum Energy Shield", statOrder = { 1559 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(30-40) to maximum Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldUnique___4"] = { affix = "", "+20 to maximum Energy Shield", statOrder = { 1559 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+20 to maximum Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldUnique__5"] = { affix = "", "+(40-50) to maximum Energy Shield", statOrder = { 1559 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(40-50) to maximum Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldUnique__6"] = { affix = "", "+(20-30) to maximum Energy Shield", statOrder = { 1559 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(20-30) to maximum Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldUnique__7"] = { affix = "", "+(150-200) to maximum Energy Shield", statOrder = { 1559 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(150-200) to maximum Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldUnique__8"] = { affix = "", "+(110-130) to maximum Energy Shield", statOrder = { 1559 }, level = 65, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(110-130) to maximum Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldUnique__9"] = { affix = "", "+(100-120) to maximum Energy Shield", statOrder = { 1559 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(100-120) to maximum Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldUnique__10"] = { affix = "", "+(50-70) to maximum Energy Shield", statOrder = { 1559 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(50-70) to maximum Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldUnique__11"] = { affix = "", "+(30-45) to maximum Energy Shield", statOrder = { 1559 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(30-45) to maximum Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldUnique__12"] = { affix = "", "+(40-60) to maximum Energy Shield", statOrder = { 1559 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(40-60) to maximum Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldUnique__13_"] = { affix = "", "+40 to maximum Energy Shield", statOrder = { 1559 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+40 to maximum Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldUnique__14"] = { affix = "", "+(50-80) to maximum Energy Shield", statOrder = { 1559 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(50-80) to maximum Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldUnique__15"] = { affix = "", "+(130-160) to maximum Energy Shield", statOrder = { 1559 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(130-160) to maximum Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldUnique__16"] = { affix = "", "+(90-110) to maximum Energy Shield", statOrder = { 1559 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(90-110) to maximum Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldUnique__17__"] = { affix = "", "+(30-50) to maximum Energy Shield", statOrder = { 1559 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(30-50) to maximum Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldUnique__18_"] = { affix = "", "+(64-96) to maximum Energy Shield", statOrder = { 1559 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(64-96) to maximum Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldUnique__19"] = { affix = "", "+(180-200) to maximum Energy Shield", statOrder = { 1559 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(180-200) to maximum Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldUnique__20"] = { affix = "", "+(15-50) to maximum Energy Shield", statOrder = { 1559 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(15-50) to maximum Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldUnique__21"] = { affix = "", "+(80-100) to maximum Energy Shield", statOrder = { 1559 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(80-100) to maximum Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldUnique__22"] = { affix = "", "+(130-150) to maximum Energy Shield", statOrder = { 1559 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(130-150) to maximum Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldUnique__23"] = { affix = "", "+(60-80) to maximum Energy Shield", statOrder = { 1559 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(60-80) to maximum Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldUnique__24_"] = { affix = "", "+(160-180) to maximum Energy Shield", statOrder = { 1559 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(160-180) to maximum Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldUnique__25"] = { affix = "", "+(100-120) to maximum Energy Shield", statOrder = { 1559 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(100-120) to maximum Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldUnique__26"] = { affix = "", "+(40-80) to maximum Energy Shield", statOrder = { 1559 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(40-80) to maximum Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldUnique__27_"] = { affix = "", "+(50-90) to maximum Energy Shield", statOrder = { 1559 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(50-90) to maximum Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldUnique__28"] = { affix = "", "+(50-70) to maximum Energy Shield", statOrder = { 1559 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(50-70) to maximum Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldUnique__29"] = { affix = "", "+(15-20) to maximum Energy Shield", statOrder = { 1559 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(15-20) to maximum Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldUnique__30__"] = { affix = "", "+(150-200) to maximum Energy Shield", statOrder = { 1559 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(150-200) to maximum Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldUnique__31"] = { affix = "", "+(30-60) to maximum Energy Shield", statOrder = { 1559 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(30-60) to maximum Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldUnique__32"] = { affix = "", "+(30-50) to maximum Energy Shield", statOrder = { 1559 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(30-50) to maximum Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldUnique__33"] = { affix = "", "+(100-200) to maximum Energy Shield", statOrder = { 1559 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(100-200) to maximum Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldUnique__34"] = { affix = "", "+(40-60) to maximum Energy Shield", statOrder = { 1559 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(40-60) to maximum Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldUnique__35"] = { affix = "", "+(40-60) to maximum Energy Shield", statOrder = { 1559 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(40-60) to maximum Energy Shield" }, } }, - ["AddedPhysicalDamageImplicitRing1"] = { affix = "", "Adds 1 to 4 Physical Damage to Attacks", statOrder = { 1266 }, level = 2, group = "PhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds 1 to 4 Physical Damage to Attacks" }, } }, - ["AddedPhysicalDamageImplicitRing2"] = { affix = "", "Adds (3-4) to (10-14) Physical Damage to Attacks", statOrder = { 1266 }, level = 100, group = "PhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (3-4) to (10-14) Physical Damage to Attacks" }, } }, - ["AddedPhysicalDamageImplicitQuiver1"] = { affix = "", "Adds 1 to 4 Physical Damage to Attacks", statOrder = { 1266 }, level = 7, group = "PhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds 1 to 4 Physical Damage to Attacks" }, } }, - ["AddedPhysicalDamageImplicitQuiver1New"] = { affix = "", "Adds 1 to 4 Physical Damage to Attacks", statOrder = { 1266 }, level = 5, group = "PhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds 1 to 4 Physical Damage to Attacks" }, } }, - ["AddedPhysicalDamageImplicitQuiver6New"] = { affix = "", "Adds (7-9) to (13-16) Physical Damage to Attacks", statOrder = { 1266 }, level = 39, group = "PhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (7-9) to (13-16) Physical Damage to Attacks" }, } }, - ["AddedPhysicalDamageImplicitQuiver12New"] = { affix = "", "Adds (12-15) to (24-27) Physical Damage to Attacks", statOrder = { 1266 }, level = 77, group = "PhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (12-15) to (24-27) Physical Damage to Attacks" }, } }, - ["AddedPhysicalDamageImplicitQuiver6_"] = { affix = "", "1 to 4 Added Physical Damage with Bow Attacks", statOrder = { 2070 }, level = 7, group = "PhysicalDamageWithBows", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1760576992] = { "1 to 4 Added Physical Damage with Bow Attacks" }, } }, - ["AddedPhysicalDamageImplicitQuiverDescent"] = { affix = "", "1 to 4 Added Physical Damage with Bow Attacks", statOrder = { 2070 }, level = 1, group = "PhysicalDamageWithBows", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1760576992] = { "1 to 4 Added Physical Damage with Bow Attacks" }, } }, - ["AddedPhysicalDamageImplicitQuiver11"] = { affix = "", "6 to 12 Added Physical Damage with Bow Attacks", statOrder = { 2070 }, level = 35, group = "PhysicalDamageWithBows", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1760576992] = { "6 to 12 Added Physical Damage with Bow Attacks" }, } }, - ["AddedPhysicalDamageUniqueBelt4"] = { affix = "", "Adds 10 to 20 Physical Damage to Attacks", statOrder = { 1266 }, level = 1, group = "PhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds 10 to 20 Physical Damage to Attacks" }, } }, - ["AddedPhysicalDamageUniqueBodyStr2"] = { affix = "", "Adds 2 to 4 Physical Damage to Attacks", statOrder = { 1266 }, level = 1, group = "PhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds 2 to 4 Physical Damage to Attacks" }, } }, - ["AddedPhysicalDamageUniqueBodyDex2"] = { affix = "", "Your Attacks deal -3 Physical Damage", statOrder = { 2466 }, level = 1, group = "DewathsHidePhysicalDamageDealt", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHashes = { [1454654776] = { "Your Attacks deal -3 Physical Damage" }, } }, - ["AddedPhysicalDamageUniqueBodyDex4"] = { affix = "", "Adds 5 to 12 Physical Damage to Attacks", statOrder = { 1266 }, level = 1, group = "PhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds 5 to 12 Physical Damage to Attacks" }, } }, - ["AddedPhysicalDamageUniqueHelmetStr3"] = { affix = "", "Adds 40 to 60 Physical Damage to Attacks", statOrder = { 1266 }, level = 1, group = "PhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds 40 to 60 Physical Damage to Attacks" }, } }, - ["AddedPhysicalDamageUniqueRing8"] = { affix = "", "Adds 5 to 9 Physical Damage to Attacks", statOrder = { 1266 }, level = 1, group = "PhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds 5 to 9 Physical Damage to Attacks" }, } }, - ["AddedPhysicalDamageUniqueHelmetStrDex4"] = { affix = "", "Adds 20 to 30 Physical Damage to Attacks", statOrder = { 1266 }, level = 1, group = "PhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds 20 to 30 Physical Damage to Attacks" }, } }, - ["AddedPhysicalDamageUniqueQuiver3"] = { affix = "", "(10-14) to (19-24) Added Physical Damage with Bow Attacks", statOrder = { 2070 }, level = 1, group = "PhysicalDamageWithBows", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1760576992] = { "(10-14) to (19-24) Added Physical Damage with Bow Attacks" }, } }, - ["AddedPhysicalDamageUniqueQuiver8"] = { affix = "", "6 to 10 Added Physical Damage with Bow Attacks", statOrder = { 2070 }, level = 1, group = "PhysicalDamageWithBows", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1760576992] = { "6 to 10 Added Physical Damage with Bow Attacks" }, } }, - ["AddedPhysicalDamageUniqueShieldDex6"] = { affix = "", "Adds (8-12) to (15-20) Physical Damage to Attacks", statOrder = { 1266 }, level = 1, group = "PhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (8-12) to (15-20) Physical Damage to Attacks" }, } }, - ["AddedPhysicalDamageUniqueQuiver9"] = { affix = "", "(8-10) to (14-16) Added Physical Damage with Bow Attacks", statOrder = { 2070 }, level = 1, group = "PhysicalDamageWithBows", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1760576992] = { "(8-10) to (14-16) Added Physical Damage with Bow Attacks" }, } }, - ["AddedPhysicalDamageUniqueShieldStrDex3"] = { affix = "", "Adds 4 to 8 Physical Damage to Attacks", statOrder = { 1266 }, level = 1, group = "PhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds 4 to 8 Physical Damage to Attacks" }, } }, - ["AddedPhysicalDamageUniqueRing37"] = { affix = "", "Adds (5-10) to (11-15) Physical Damage to Attacks", statOrder = { 1266 }, level = 1, group = "PhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (5-10) to (11-15) Physical Damage to Attacks" }, } }, - ["AddedPhysicalDamageUniqueBootsStr3"] = { affix = "", "Adds (2-5) to (7-10) Physical Damage to Attacks", statOrder = { 1266 }, level = 1, group = "PhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (2-5) to (7-10) Physical Damage to Attacks" }, } }, - ["AddedPhysicalDamageUnique___1"] = { affix = "", "Adds 5 to 10 Physical Damage to Attacks", statOrder = { 1266 }, level = 1, group = "PhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds 5 to 10 Physical Damage to Attacks" }, } }, - ["AddedPhysicalDamageUniqueAmulet25"] = { affix = "", "Adds 10 to 20 Physical Damage to Attacks", statOrder = { 1266 }, level = 1, group = "PhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds 10 to 20 Physical Damage to Attacks" }, } }, - ["AddedPhysicalDamageUnique__2"] = { affix = "", "Adds (5-15) to (25-50) Physical Damage to Attacks", statOrder = { 1266 }, level = 1, group = "PhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (5-15) to (25-50) Physical Damage to Attacks" }, } }, - ["AddedPhysicalDamageUnique__3"] = { affix = "", "Adds 10 to 20 Physical Damage to Attacks", statOrder = { 1266 }, level = 1, group = "PhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds 10 to 20 Physical Damage to Attacks" }, } }, - ["AddedPhysicalDamageUnique__4"] = { affix = "", "Adds 1 to (15-20) Physical Damage to Attacks", statOrder = { 1266 }, level = 1, group = "PhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds 1 to (15-20) Physical Damage to Attacks" }, } }, - ["AddedPhysicalDamageUnique__5"] = { affix = "", "Adds (5-8) to (12-16) Physical Damage to Attacks", statOrder = { 1266 }, level = 1, group = "PhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (5-8) to (12-16) Physical Damage to Attacks" }, } }, - ["AddedPhysicalDamageUnique__6_"] = { affix = "", "Adds (4-10) to (14-36) Physical Damage to Attacks", statOrder = { 1266 }, level = 1, group = "PhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (4-10) to (14-36) Physical Damage to Attacks" }, } }, - ["AddedPhysicalDamageUnique__8"] = { affix = "", "Adds (8-12) to (15-20) Physical Damage to Attacks", statOrder = { 1266 }, level = 1, group = "PhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (8-12) to (15-20) Physical Damage to Attacks" }, } }, - ["AddedPhysicalDamageUnique__9_"] = { affix = "", "Adds (5-7) to (11-12) Physical Damage to Attacks", statOrder = { 1266 }, level = 1, group = "PhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (5-7) to (11-12) Physical Damage to Attacks" }, } }, - ["AddedPhysicalDamageUnique__10"] = { affix = "", "Adds (13-18) to (26-32) Physical Damage to Attacks", statOrder = { 1266 }, level = 1, group = "PhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (13-18) to (26-32) Physical Damage to Attacks" }, } }, - ["AddedPhysicalDamageUnique__11__"] = { affix = "", "Adds (2-3) to (22-26) Physical Damage to Attacks", statOrder = { 1266 }, level = 1, group = "PhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (2-3) to (22-26) Physical Damage to Attacks" }, } }, - ["AddedPhysicalDamageUnique__12"] = { affix = "", "Adds (8-12) to (18-24) Physical Damage to Attacks", statOrder = { 1266 }, level = 1, group = "PhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (8-12) to (18-24) Physical Damage to Attacks" }, } }, - ["AddedPhysicalDamageUnique__13"] = { affix = "", "Adds (6-10) to (16-22) Physical Damage to Attacks", statOrder = { 1266 }, level = 1, group = "PhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (6-10) to (16-22) Physical Damage to Attacks" }, } }, - ["LocalAddedPhysicalDamageUnique__1"] = { affix = "", "Adds (15-20) to (30-40) Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (15-20) to (30-40) Physical Damage" }, } }, - ["LocalAddedPhysicalDamageUniqueSceptre9"] = { affix = "", "Adds (8-13) to (26-31) Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (8-13) to (26-31) Physical Damage" }, } }, - ["LocalAddedPhysicalDamageUniqueTwoHandAxe3"] = { affix = "", "Adds 5 to 10 Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds 5 to 10 Physical Damage" }, } }, - ["LocalAddedPhysicalDamageUniqueRapier2"] = { affix = "", "Adds 10 to 15 Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds 10 to 15 Physical Damage" }, } }, - ["LocalAddedPhysicalDamagePercentUniqueClaw4"] = { affix = "", "Adds 2 to 10 Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds 2 to 10 Physical Damage" }, } }, - ["LocalAddedPhysicalDamageUniqueTwoHandMace6"] = { affix = "", "Adds (43-56) to (330-400) Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (43-56) to (330-400) Physical Damage" }, } }, - ["LocalAddedPhysicalDamageUniqueTwoHandMace7"] = { affix = "", "Adds 5 to 25 Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds 5 to 25 Physical Damage" }, } }, - ["LocalAddedPhysicalDamageUniqueOneHandSword5"] = { affix = "", "Adds (60-70) to (71-80) Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (60-70) to (71-80) Physical Damage" }, } }, - ["LocalAddedPhysicalDamageUniqueOneHandAxe3"] = { affix = "", "Adds (10-15) to (25-30) Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (10-15) to (25-30) Physical Damage" }, } }, - ["LocalAddedPhysicalDamageUniqueTwoHandAxe7"] = { affix = "", "Adds (310-330) to (370-390) Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (310-330) to (370-390) Physical Damage" }, } }, - ["LocalAddedPhysicalDamageUniqueStaff7"] = { affix = "", "Adds (135-145) to (160-175) Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (135-145) to (160-175) Physical Damage" }, } }, - ["LocalAddedPhysicalDamageUniqueDescentOneHandSword1"] = { affix = "", "Adds 2 to 6 Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds 2 to 6 Physical Damage" }, } }, - ["LocalAddedPhysicalDamageUniqueDescentClaw1"] = { affix = "", "Adds 2 to 6 Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds 2 to 6 Physical Damage" }, } }, - ["LocalAddedPhysicalDamageUniqueOneHandAxe5"] = { affix = "", "Adds (11-14) to (18-23) Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (11-14) to (18-23) Physical Damage" }, } }, - ["LocalAddedPhysicalDamageUniqueBow7"] = { affix = "", "Adds (25-35) to (36-45) Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (25-35) to (36-45) Physical Damage" }, } }, - ["LocalAddedPhysicalDamageUniqueBow5"] = { affix = "", "Adds (15-20) to (25-30) Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (15-20) to (25-30) Physical Damage" }, } }, - ["LocalAddedPhysicalDamageUniqueTwoHandSword8"] = { affix = "", "Adds (65-75) to (100-110) Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (65-75) to (100-110) Physical Damage" }, } }, - ["LocalAddedPhysicalDamageUniqueOneHandMace5"] = { affix = "", "Adds (5-10) to (15-23) Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (5-10) to (15-23) Physical Damage" }, } }, - ["LocalAddedPhysicalDamageUniqueSceptre10"] = { affix = "", "Adds (35-46) to (85-128) Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (35-46) to (85-128) Physical Damage" }, } }, - ["LocalAddedPhysicalDamageUniqueOneHandSword11"] = { affix = "", "Adds (5-10) to (13-20) Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (5-10) to (13-20) Physical Damage" }, } }, - ["LocalAddedPhysicalDamageUniqueWand9"] = { affix = "", "Adds (5-8) to (13-17) Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (5-8) to (13-17) Physical Damage" }, } }, - ["LocalAddedPhysicalDamageUnique__6"] = { affix = "", "Adds (60-80) to (150-180) Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (60-80) to (150-180) Physical Damage" }, } }, - ["LocalAddedPhysicalDamageUnique__7"] = { affix = "", "Adds (50-70) to (135-165) Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (50-70) to (135-165) Physical Damage" }, } }, - ["LocalAddedPhysicalDamageUnique__8"] = { affix = "", "Adds (35-40) to (55-60) Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (35-40) to (55-60) Physical Damage" }, } }, - ["LocalAddedPhysicalDamageUnique__9"] = { affix = "", "Adds (24-30) to (34-40) Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (24-30) to (34-40) Physical Damage" }, } }, - ["LocalAddedPhysicalDamageUnique__10"] = { affix = "", "Adds (5-8) to (15-20) Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (5-8) to (15-20) Physical Damage" }, } }, - ["LocalAddedPhysicalDamageUnique__11"] = { affix = "", "Adds (30-38) to (40-50) Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (30-38) to (40-50) Physical Damage" }, } }, - ["LocalAddedPhysicalDamageUnique__12"] = { affix = "", "Adds (30-45) to (80-100) Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (30-45) to (80-100) Physical Damage" }, } }, - ["LocalAddedPhysicalDamageUnique__13"] = { affix = "", "Adds (25-35) to (50-65) Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (25-35) to (50-65) Physical Damage" }, } }, - ["LocalAddedPhysicalDamageUnique__14"] = { affix = "", "Adds (40-50) to (130-150) Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (40-50) to (130-150) Physical Damage" }, } }, - ["LocalAddedPhysicalDamageUnique__15"] = { affix = "", "Adds (90-115) to (230-260) Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (90-115) to (230-260) Physical Damage" }, } }, - ["LocalAddedPhysicalDamageUnique__16_"] = { affix = "", "Adds (10-16) to (45-60) Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (10-16) to (45-60) Physical Damage" }, } }, - ["LocalAddedPhysicalDamageUnique__17_"] = { affix = "", "Adds (6-12) to (20-25) Physical Damage", statOrder = { 1276 }, level = 50, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (6-12) to (20-25) Physical Damage" }, } }, - ["LocalAddedPhysicalDamageUnique__18"] = { affix = "", "Adds (30-40) to (70-80) Physical Damage", statOrder = { 1276 }, level = 40, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (30-40) to (70-80) Physical Damage" }, } }, - ["LocalAddedPhysicalDamageUnique__19"] = { affix = "", "Adds (15-25) to (50-60) Physical Damage", statOrder = { 1276 }, level = 45, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (15-25) to (50-60) Physical Damage" }, } }, - ["LocalAddedPhysicalDamageUnique__20_"] = { affix = "", "Adds (10-20) to (30-40) Physical Damage", statOrder = { 1276 }, level = 46, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (10-20) to (30-40) Physical Damage" }, } }, - ["LocalAddedPhysicalDamageUnique__21"] = { affix = "", "Adds (90-110) to (145-170) Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (90-110) to (145-170) Physical Damage" }, } }, - ["LocalAddedPhysicalDamageUnique__22"] = { affix = "", "Adds (80-95) to (220-240) Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (80-95) to (220-240) Physical Damage" }, } }, - ["LocalAddedPhysicalDamageUnique__23_"] = { affix = "", "Adds (35-50) to (100-125) Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (35-50) to (100-125) Physical Damage" }, } }, - ["LocalAddedPhysicalDamageUnique__24"] = { affix = "", "Adds (100-130) to (360-430) Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (100-130) to (360-430) Physical Damage" }, } }, - ["LocalAddedPhysicalDamageUnique__25"] = { affix = "", "Adds (8-13) to (20-30) Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (8-13) to (20-30) Physical Damage" }, } }, - ["LocalAddedPhysicalDamageUnique__26"] = { affix = "", "Adds (70-80) to (340-375) Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (70-80) to (340-375) Physical Damage" }, } }, - ["LocalAddedPhysicalDamageUnique__27"] = { affix = "", "Adds (80-115) to (150-205) Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (80-115) to (150-205) Physical Damage" }, } }, - ["LocalAddedPhysicalDamageUnique__28"] = { affix = "", "Adds (225-265) to (315-385) Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (225-265) to (315-385) Physical Damage" }, } }, - ["LocalAddedPhysicalDamageUnique__29___"] = { affix = "", "Adds (80-100) to (200-225) Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (80-100) to (200-225) Physical Damage" }, } }, - ["LocalAddedPhysicalDamageUnique__30_"] = { affix = "", "Adds (45-60) to (100-120) Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (45-60) to (100-120) Physical Damage" }, } }, - ["LocalAddedPhysicalDamageUnique__31"] = { affix = "", "Adds (220-240) to (270-300) Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (220-240) to (270-300) Physical Damage" }, } }, - ["LocalAddedPhysicalDamageUnique__32"] = { affix = "", "Adds (94-98) to (115-121) Physical Damage", statOrder = { 1276 }, level = 77, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (94-98) to (115-121) Physical Damage" }, } }, - ["LocalAddedPhysicalDamageUnique__33_"] = { affix = "", "Adds (242-260) to (268-285) Physical Damage", statOrder = { 1276 }, level = 75, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (242-260) to (268-285) Physical Damage" }, } }, - ["LocalAddedPhysicalDamageUnique__34"] = { affix = "", "Adds (11-14) to (17-21) Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (11-14) to (17-21) Physical Damage" }, } }, - ["LocalAddedPhysicalDamageUnique__35"] = { affix = "", "Adds (83-91) to (123-130) Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (83-91) to (123-130) Physical Damage" }, } }, - ["LocalAddedPhysicalDamageUnique__36"] = { affix = "", "Adds (70-85) to (110-118) Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (70-85) to (110-118) Physical Damage" }, } }, - ["LocalAddedPhysicalDamageUnique__37"] = { affix = "", "Adds (42-47) to (66-71) Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (42-47) to (66-71) Physical Damage" }, } }, - ["LocalAddedPhyiscalDamageUnique__38"] = { affix = "", "Adds (25-35) to (45-55) Physical Damage", statOrder = { 1276 }, level = 75, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (25-35) to (45-55) Physical Damage" }, } }, - ["LocalAddedPhyiscalDamageUnique__39"] = { affix = "", "Adds (85-110) to (135-150) Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (85-110) to (135-150) Physical Damage" }, } }, - ["LocalAddedPhyiscalDamageUnique__40__"] = { affix = "", "Adds (16-22) to (40-45) Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (16-22) to (40-45) Physical Damage" }, } }, - ["LocalAddedPhyiscalDamageUnique__41_"] = { affix = "", "Adds (40-65) to (70-100) Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (40-65) to (70-100) Physical Damage" }, } }, - ["LocalAddedPhyiscalDamageUnique__42"] = { affix = "", "Adds (20-25) to (40-50) Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (20-25) to (40-50) Physical Damage" }, } }, - ["LocalAddedPhyiscalDamageUnique__43"] = { affix = "", "Adds (5-9) to (13-18) Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (5-9) to (13-18) Physical Damage" }, } }, - ["LocalAddedPhyiscalDamageUnique__44"] = { affix = "", "Adds (20-30) to (40-50) Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (20-30) to (40-50) Physical Damage" }, } }, - ["AddedFireDamageImplicitQuiver1"] = { affix = "", "Adds 2 to 4 Fire Damage to Attacks", statOrder = { 1360 }, level = 2, group = "FireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds 2 to 4 Fire Damage to Attacks" }, } }, - ["AddedFireDamageImplicitQuiver2New"] = { affix = "", "Adds 3 to 5 Fire Damage to Attacks", statOrder = { 1360 }, level = 12, group = "FireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds 3 to 5 Fire Damage to Attacks" }, } }, - ["AddedFireDamageImplicitQuiver9New"] = { affix = "", "Adds (12-15) to (24-27) Fire Damage to Attacks", statOrder = { 1360 }, level = 57, group = "FireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds (12-15) to (24-27) Fire Damage to Attacks" }, } }, - ["AddedFireDamageImplicitQuiver10"] = { affix = "", "4 to 8 Added Fire Damage with Bow Attacks", statOrder = { 2080 }, level = 28, group = "FireDamageWithBows", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [3120164895] = { "4 to 8 Added Fire Damage with Bow Attacks" }, } }, - ["AddedFireDamageUniqueQuiver1a"] = { affix = "", "5 to 10 Added Fire Damage with Bow Attacks", statOrder = { 2080 }, level = 1, group = "FireDamageWithBows", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [3120164895] = { "5 to 10 Added Fire Damage with Bow Attacks" }, } }, - ["AddedFireDamageUniqueBootsStrDex1"] = { affix = "", "Adds 12 to 24 Fire Damage to Attacks", statOrder = { 1360 }, level = 1, group = "FireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds 12 to 24 Fire Damage to Attacks" }, } }, - ["AddedFireDamageUniqueGlovesInt1"] = { affix = "", "Adds 4 to 8 Fire Damage to Attacks", statOrder = { 1360 }, level = 1, group = "FireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds 4 to 8 Fire Damage to Attacks" }, } }, - ["AddedFireDamageUniqueAmulet7"] = { affix = "", "Adds (18-24) to (32-40) Fire Damage to Attacks", statOrder = { 1360 }, level = 1, group = "FireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds (18-24) to (32-40) Fire Damage to Attacks" }, } }, - ["AddedFireDamageUniqueBodyInt5"] = { affix = "", "Adds (2-4) to (5-9) Fire Damage to Spells and Attacks", statOrder = { 1373 }, level = 1, group = "AddedFireDamageSpellsAndAttacks", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "attack", "caster" }, tradeHashes = { [3964634628] = { "Adds (2-4) to (5-9) Fire Damage to Spells and Attacks" }, } }, - ["AddedFireDamageUniqueRing10"] = { affix = "", "Adds (8-15) to (20-28) Fire Damage to Attacks", statOrder = { 1360 }, level = 1, group = "FireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds (8-15) to (20-28) Fire Damage to Attacks" }, } }, - ["AddedFireDamageUniqueRing20"] = { affix = "", "Adds (20-25) to (30-50) Fire Damage to Spells and Attacks", statOrder = { 1373 }, level = 1, group = "AddedFireDamageSpellsAndAttacks", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "attack", "caster" }, tradeHashes = { [3964634628] = { "Adds (20-25) to (30-50) Fire Damage to Spells and Attacks" }, } }, - ["AddedFireDamageUniqueBelt10"] = { affix = "", "Adds (14-16) to (30-32) Fire Damage to Attacks", statOrder = { 1360 }, level = 1, group = "FireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds (14-16) to (30-32) Fire Damage to Attacks" }, } }, - ["AddedFireDamageUniqueRing31"] = { affix = "", "Adds (20-25) to (30-35) Fire Damage to Spells and Attacks", statOrder = { 1373 }, level = 1, group = "AddedFireDamageSpellsAndAttacks", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "attack", "caster" }, tradeHashes = { [3964634628] = { "Adds (20-25) to (30-35) Fire Damage to Spells and Attacks" }, } }, - ["AddedFireDamageUniqueRing28"] = { affix = "", "Adds (12-15) to (25-30) Fire Damage to Attacks", statOrder = { 1360 }, level = 1, group = "FireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds (12-15) to (25-30) Fire Damage to Attacks" }, } }, - ["AddedFireDamageUniqueShieldStr3"] = { affix = "", "Adds (12-15) to (30-35) Fire Damage to Spells and Attacks", statOrder = { 1373 }, level = 1, group = "AddedFireDamageSpellsAndAttacks", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "attack", "caster" }, tradeHashes = { [3964634628] = { "Adds (12-15) to (30-35) Fire Damage to Spells and Attacks" }, } }, - ["AddedFireDamageUniqueShieldDemigods"] = { affix = "", "Adds 10 to 20 Fire Damage to Attacks", statOrder = { 1360 }, level = 1, group = "FireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds 10 to 20 Fire Damage to Attacks" }, } }, - ["AddedFireDamageUniqueRing36"] = { affix = "", "Adds (8-12) to (20-30) Fire Damage to Attacks", statOrder = { 1360 }, level = 1, group = "FireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds (8-12) to (20-30) Fire Damage to Attacks" }, } }, - ["AddedFireDamageUnique__1_"] = { affix = "", "Adds (16-20) to (25-30) Fire Damage to Spells and Attacks", statOrder = { 1373 }, level = 1, group = "AddedFireDamageSpellsAndAttacks", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "attack", "caster" }, tradeHashes = { [3964634628] = { "Adds (16-20) to (25-30) Fire Damage to Spells and Attacks" }, } }, - ["AddedFireDamageUnique__2"] = { affix = "", "Adds (19-22) to (30-35) Fire Damage to Spells and Attacks", statOrder = { 1373 }, level = 1, group = "AddedFireDamageSpellsAndAttacks", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "attack", "caster" }, tradeHashes = { [3964634628] = { "Adds (19-22) to (30-35) Fire Damage to Spells and Attacks" }, } }, - ["AddedFireDamageUnique__3"] = { affix = "", "Adds (25-30) to (40-45) Fire Damage to Spells and Attacks", statOrder = { 1373 }, level = 1, group = "AddedFireDamageSpellsAndAttacks", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "attack", "caster" }, tradeHashes = { [3964634628] = { "Adds (25-30) to (40-45) Fire Damage to Spells and Attacks" }, } }, - ["AddedFireDamageUnique__4"] = { affix = "", "Adds 40 to 75 Fire Damage to Attacks", statOrder = { 1360 }, level = 1, group = "FireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds 40 to 75 Fire Damage to Attacks" }, } }, - ["AddedColdDamageImplicitQuiver1"] = { affix = "", "Adds 2 to 3 Cold Damage to Attacks", statOrder = { 1369 }, level = 2, group = "ColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds 2 to 3 Cold Damage to Attacks" }, } }, - ["AddedColdDamageUniqueBodyDex1"] = { affix = "", "(105-145) to (160-200) Added Cold Damage with Bow Attacks", statOrder = { 2088 }, level = 47, group = "AddedColdDamageWithBowsForUnique", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [215124030] = { "(105-145) to (160-200) Added Cold Damage with Bow Attacks" }, } }, - ["AddedColdDamageUniqueDexHelmet1"] = { affix = "", "Adds 15 to 25 Cold Damage to Attacks", statOrder = { 1369 }, level = 15, group = "ColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds 15 to 25 Cold Damage to Attacks" }, } }, - ["AddedColdDamageUniqueBodyInt5"] = { affix = "", "Adds (2-4) to (5-9) Cold Damage to Spells and Attacks", statOrder = { 1374 }, level = 1, group = "AddedColdDamageToSpellsAndAttacks", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "attack", "caster" }, tradeHashes = { [1662717006] = { "Adds (2-4) to (5-9) Cold Damage to Spells and Attacks" }, } }, - ["AddedColdDamageUniqueBow9"] = { affix = "", "Adds (48-60) to (72-90) Cold Damage", statOrder = { 1371 }, level = 1, group = "LocalColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (48-60) to (72-90) Cold Damage" }, } }, - ["AddedColdDamageUniqueRing18"] = { affix = "", "Adds (20-25) to (30-50) Cold Damage to Spells and Attacks", statOrder = { 1374 }, level = 1, group = "AddedColdDamageToSpellsAndAttacks", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "attack", "caster" }, tradeHashes = { [1662717006] = { "Adds (20-25) to (30-50) Cold Damage to Spells and Attacks" }, } }, - ["AddedColdDamageUniqueBelt10"] = { affix = "", "Adds (10-12) to (24-28) Cold Damage to Attacks", statOrder = { 1369 }, level = 1, group = "ColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds (10-12) to (24-28) Cold Damage to Attacks" }, } }, - ["AddedColdDamageUniqueRing30"] = { affix = "", "Adds (7-10) to (15-20) Cold Damage to Spells and Attacks", statOrder = { 1374 }, level = 25, group = "AddedColdDamageToSpellsAndAttacks", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "attack", "caster" }, tradeHashes = { [1662717006] = { "Adds (7-10) to (15-20) Cold Damage to Spells and Attacks" }, } }, - ["AddedColdDamageUniqueGlovesStrInt3_"] = { affix = "", "Adds (60-72) to (88-100) Cold Damage to Attacks", statOrder = { 1369 }, level = 1, group = "ColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds (60-72) to (88-100) Cold Damage to Attacks" }, } }, - ["AddedColdDamageUniqueShieldStrDex3"] = { affix = "", "Adds 12 to 15 Cold Damage to Attacks", statOrder = { 1369 }, level = 1, group = "ColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds 12 to 15 Cold Damage to Attacks" }, } }, - ["AddedColdDamageUnique__1"] = { affix = "", "Adds 10 to 20 Cold Damage to Attacks", statOrder = { 1369 }, level = 1, group = "ColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds 10 to 20 Cold Damage to Attacks" }, } }, - ["AddedColdDamageUnique__2"] = { affix = "", "Adds (16-20) to (25-30) Cold Damage to Spells and Attacks", statOrder = { 1374 }, level = 1, group = "AddedColdDamageToSpellsAndAttacks", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "attack", "caster" }, tradeHashes = { [1662717006] = { "Adds (16-20) to (25-30) Cold Damage to Spells and Attacks" }, } }, - ["AddedColdDamageUnique__3"] = { affix = "", "Adds (19-22) to (30-35) Cold Damage to Spells and Attacks", statOrder = { 1374 }, level = 1, group = "AddedColdDamageToSpellsAndAttacks", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "attack", "caster" }, tradeHashes = { [1662717006] = { "Adds (19-22) to (30-35) Cold Damage to Spells and Attacks" }, } }, - ["AddedColdDamageUnique__4"] = { affix = "", "Adds (25-30) to (40-45) Cold Damage to Spells and Attacks", statOrder = { 1374 }, level = 1, group = "AddedColdDamageToSpellsAndAttacks", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "attack", "caster" }, tradeHashes = { [1662717006] = { "Adds (25-30) to (40-45) Cold Damage to Spells and Attacks" }, } }, - ["AddedColdDamageUnique__5"] = { affix = "", "Adds (26-32) to (42-48) Cold Damage to Attacks", statOrder = { 1369 }, level = 1, group = "ColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds (26-32) to (42-48) Cold Damage to Attacks" }, } }, - ["AddedColdDamageUnique__6"] = { affix = "", "Adds (12-15) to (25-30) Cold Damage to Attacks", statOrder = { 1369 }, level = 1, group = "ColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds (12-15) to (25-30) Cold Damage to Attacks" }, } }, - ["AddedColdDamageUnique__7"] = { affix = "", "Adds (30-40) to (80-100) Cold Damage to Attacks", statOrder = { 1369 }, level = 1, group = "ColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds (30-40) to (80-100) Cold Damage to Attacks" }, } }, - ["AddedColdDamageUnique__9"] = { affix = "", "Adds 30 to 65 Cold Damage to Attacks", statOrder = { 1369 }, level = 1, group = "ColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds 30 to 65 Cold Damage to Attacks" }, } }, - ["AddedColdDamageUnique__10"] = { affix = "", "Adds (15-20) to (25-35) Cold Damage to Spells and Attacks", statOrder = { 1374 }, level = 25, group = "AddedColdDamageToSpellsAndAttacks", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "attack", "caster" }, tradeHashes = { [1662717006] = { "Adds (15-20) to (25-35) Cold Damage to Spells and Attacks" }, } }, - ["AddedColdDamageUnique__11"] = { affix = "", "Adds (30-40) to (60-70) Cold Damage to Attacks", statOrder = { 1369 }, level = 71, group = "ColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds (30-40) to (60-70) Cold Damage to Attacks" }, } }, - ["AddedLightningDamageImplicitQuiver1"] = { affix = "", "Adds 1 to 5 Lightning Damage to Attacks", statOrder = { 1380 }, level = 2, group = "LightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds 1 to 5 Lightning Damage to Attacks" }, } }, - ["AddedLightningDamageUniqueHelmetStrInt1"] = { affix = "", "Adds 1 to 30 Lightning Damage to Spells and Attacks", statOrder = { 1409 }, level = 1, group = "AddedLightningDamageSpellsAndAttacks", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "attack", "caster" }, tradeHashes = { [2885144362] = { "Adds 1 to 30 Lightning Damage to Spells and Attacks" }, } }, - ["AddedLightningDamageUniqueBootsStrInt1"] = { affix = "", "Adds 1 to 120 Lightning Damage to Attacks", statOrder = { 1380 }, level = 1, group = "LightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds 1 to 120 Lightning Damage to Attacks" }, } }, - ["AddedLightningDamageUniqueGlovesInt1"] = { affix = "", "Adds 1 to 13 Lightning Damage to Attacks", statOrder = { 1380 }, level = 1, group = "LightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds 1 to 13 Lightning Damage to Attacks" }, } }, - ["AddedLightningDamageUniqueGlovesDexInt1"] = { affix = "", "Adds (1-4) to (30-50) Lightning Damage to Attacks", statOrder = { 1380 }, level = 1, group = "LightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds (1-4) to (30-50) Lightning Damage to Attacks" }, } }, - ["AddedLightningDamageUniqueDagger3"] = { affix = "", "Adds 3 to 30 Lightning Damage", statOrder = { 1382 }, level = 1, group = "LocalLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds 3 to 30 Lightning Damage" }, } }, - ["AddedLocalLightningDamageUniqueClaw1"] = { affix = "", "Adds 1 to (650-850) Lightning Damage", statOrder = { 1382 }, level = 1, group = "LocalLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds 1 to (650-850) Lightning Damage" }, } }, - ["AddedLightningDamageUniqueBow8"] = { affix = "", "Adds 1 to 85 Lightning Damage", statOrder = { 1382 }, level = 1, group = "LocalLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds 1 to 85 Lightning Damage" }, } }, - ["AddedLightningDamageUniqueBodyInt5_"] = { affix = "", "Adds 1 to (4-12) Lightning Damage to Spells and Attacks", statOrder = { 1409 }, level = 1, group = "AddedLightningDamageSpellsAndAttacks", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "attack", "caster" }, tradeHashes = { [2885144362] = { "Adds 1 to (4-12) Lightning Damage to Spells and Attacks" }, } }, - ["AddedLightningDamageUniqueGlovesDexInt3"] = { affix = "", "Adds 1 to 100 Lightning Damage to Attacks", statOrder = { 1380 }, level = 1, group = "LightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds 1 to 100 Lightning Damage to Attacks" }, } }, - ["AddedLightningDamageUniqueBodyInt8"] = { affix = "", "Adds 1 to 40 Lightning Damage to Attacks", statOrder = { 1380 }, level = 1, group = "LightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds 1 to 40 Lightning Damage to Attacks" }, } }, - ["AddedLightningDamageUniqueBow9"] = { affix = "", "Adds 1 to (120-150) Lightning Damage", statOrder = { 1382 }, level = 1, group = "LocalLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds 1 to (120-150) Lightning Damage" }, } }, - ["AddedLightningDamageUniqueBodyStrDex2"] = { affix = "", "Adds 1 to (20-30) Lightning Damage to Attacks", statOrder = { 1380 }, level = 1, group = "LightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds 1 to (20-30) Lightning Damage to Attacks" }, } }, - ["AddedLightningDamageUniqueRing19"] = { affix = "", "Adds 1 to (50-70) Lightning Damage to Spells and Attacks", statOrder = { 1409 }, level = 25, group = "AddedLightningDamageSpellsAndAttacks", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "attack", "caster" }, tradeHashes = { [2885144362] = { "Adds 1 to (50-70) Lightning Damage to Spells and Attacks" }, } }, - ["AddedLightningDamageUniqueBelt10"] = { affix = "", "Adds 1 to (60-68) Lightning Damage to Attacks", statOrder = { 1380 }, level = 1, group = "LightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds 1 to (60-68) Lightning Damage to Attacks" }, } }, - ["AddedLightningDamageUniqueBelt12"] = { affix = "", "Adds 1 to (30-50) Lightning Damage to Attacks", statOrder = { 1380 }, level = 55, group = "LightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds 1 to (30-50) Lightning Damage to Attacks" }, } }, - ["LocalAddedLightningDamageUniqueOneHandSword6"] = { affix = "", "Adds 1 to (550-650) Lightning Damage", statOrder = { 1382 }, level = 1, group = "LocalLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds 1 to (550-650) Lightning Damage" }, } }, - ["AddedLightningDamageUnique__1"] = { affix = "", "Adds (1-3) to (42-47) Lightning Damage to Spells and Attacks", statOrder = { 1409 }, level = 1, group = "AddedLightningDamageSpellsAndAttacks", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "attack", "caster" }, tradeHashes = { [2885144362] = { "Adds (1-3) to (42-47) Lightning Damage to Spells and Attacks" }, } }, - ["AddedLightningDamageUnique__2_"] = { affix = "", "Adds (1-3) to (68-72) Lightning Damage to Spells and Attacks", statOrder = { 1409 }, level = 1, group = "AddedLightningDamageSpellsAndAttacks", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "attack", "caster" }, tradeHashes = { [2885144362] = { "Adds (1-3) to (68-72) Lightning Damage to Spells and Attacks" }, } }, - ["AddedLightningDamageUnique__3"] = { affix = "", "Adds 10 to 130 Lightning Damage to Attacks", statOrder = { 1380 }, level = 1, group = "LightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds 10 to 130 Lightning Damage to Attacks" }, } }, - ["AddedLightningDamageUnique__4"] = { affix = "", "(12-18) to (231-347) Added Lightning Damage with Wand Attacks", statOrder = { 2102 }, level = 1, group = "AddedLightningDamageWithWandsForUnique", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [2787733863] = { "(12-18) to (231-347) Added Lightning Damage with Wand Attacks" }, } }, - ["AddedChaosDamageUniqueRing1"] = { affix = "", "Adds (10-15) to (20-25) Chaos Damage to Attacks", statOrder = { 1387 }, level = 1, group = "ChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [674553446] = { "Adds (10-15) to (20-25) Chaos Damage to Attacks" }, } }, - ["AddedChaosDamageUniqueBootsStrDex4"] = { affix = "", "Adds (6-9) to (12-16) Chaos Damage to Attacks", statOrder = { 1387 }, level = 1, group = "ChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [674553446] = { "Adds (6-9) to (12-16) Chaos Damage to Attacks" }, } }, - ["AddedChaosDamageUniqueBootsStrInt2"] = { affix = "", "Adds 1 to 80 Chaos Damage to Attacks", statOrder = { 1387 }, level = 1, group = "ChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [674553446] = { "Adds 1 to 80 Chaos Damage to Attacks" }, } }, - ["AddedChaosDamageUniqueQuiver7"] = { affix = "", "Adds (13-18) to (26-32) Chaos Damage to Attacks", statOrder = { 1387 }, level = 1, group = "ChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [674553446] = { "Adds (13-18) to (26-32) Chaos Damage to Attacks" }, } }, - ["AddedChaosDamageUniqueAmulet23"] = { affix = "", "Adds 19 to 43 Chaos Damage to Attacks", statOrder = { 1387 }, level = 1, group = "ChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [674553446] = { "Adds 19 to 43 Chaos Damage to Attacks" }, } }, - ["AddedChaosDamageUniqueBow12"] = { affix = "", "Adds (50-80) to (130-180) Chaos Damage", statOrder = { 1390 }, level = 1, group = "LocalChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (50-80) to (130-180) Chaos Damage" }, } }, - ["AddedChaosDamageUnique__1"] = { affix = "", "Adds 12 to 24 Chaos Damage to Attacks", statOrder = { 1387 }, level = 25, group = "ChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [674553446] = { "Adds 12 to 24 Chaos Damage to Attacks" }, } }, - ["AddedChaosDamageUnique__2"] = { affix = "", "Adds (7-10) to (15-18) Chaos Damage to Attacks", statOrder = { 1387 }, level = 1, group = "ChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [674553446] = { "Adds (7-10) to (15-18) Chaos Damage to Attacks" }, } }, - ["LifeLeechUniqueRing2"] = { affix = "", "2% of Physical Attack Damage Leeched as Life", statOrder = { 1647 }, level = 1, group = "LifeLeech", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [3933739162] = { "2% of Physical Attack Damage Leeched as Life" }, } }, - ["LifeLeechPermyriadUniqueRing2"] = { affix = "", "0.4% of Physical Attack Damage Leeched as Life", statOrder = { 1649 }, level = 1, group = "LifeLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [3593843976] = { "0.4% of Physical Attack Damage Leeched as Life" }, } }, - ["LifeLeechImplicitClaw1"] = { affix = "", "8% of Physical Attack Damage Leeched as Life", statOrder = { 1650 }, level = 1, group = "LifeLeechLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [4277433910] = { "8% of Physical Attack Damage Leeched as Life" }, } }, - ["LifeLeechPermyriadImplicitClaw1"] = { affix = "", "1.6% of Physical Attack Damage Leeched as Life", statOrder = { 1651 }, level = 1, group = "LifeLeechLocalPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [55876295] = { "1.6% of Physical Attack Damage Leeched as Life" }, } }, - ["LifeLeechImplicitClaw2"] = { affix = "", "10% of Physical Attack Damage Leeched as Life", statOrder = { 1650 }, level = 1, group = "LifeLeechLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [4277433910] = { "10% of Physical Attack Damage Leeched as Life" }, } }, - ["LifeLeechPermyriadImplicitClaw2"] = { affix = "", "2% of Physical Attack Damage Leeched as Life", statOrder = { 1651 }, level = 1, group = "LifeLeechLocalPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [55876295] = { "2% of Physical Attack Damage Leeched as Life" }, } }, - ["LifeLeechAllAttackDamagePermyriadImplicitClaw2"] = { affix = "", "2% of Attack Damage Leeched as Life", statOrder = { 7987 }, level = 1, group = "LifeLeechLocalAllDamagePermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHashes = { [1828023575] = { "2% of Attack Damage Leeched as Life" }, } }, - ["LifeLeechUniqueTwoHandMace1"] = { affix = "", "5% of Physical Attack Damage Leeched as Life", statOrder = { 1650 }, level = 1, group = "LifeLeechLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [4277433910] = { "5% of Physical Attack Damage Leeched as Life" }, } }, - ["LifeLeechPermyriadUniqueTwoHandMace1"] = { affix = "", "1% of Physical Attack Damage Leeched as Life", statOrder = { 1651 }, level = 1, group = "LifeLeechLocalPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [55876295] = { "1% of Physical Attack Damage Leeched as Life" }, } }, - ["LifeLeechUniqueGlovesStrDex1"] = { affix = "", "3% of Physical Attack Damage Leeched as Life", statOrder = { 1647 }, level = 1, group = "LifeLeech", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [3933739162] = { "3% of Physical Attack Damage Leeched as Life" }, } }, - ["LifeLeechPermyriadUniqueGlovesStrDex1"] = { affix = "", "0.6% of Physical Attack Damage Leeched as Life", statOrder = { 1649 }, level = 1, group = "LifeLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [3593843976] = { "0.6% of Physical Attack Damage Leeched as Life" }, } }, - ["LifeLeechUniqueBelt1"] = { affix = "", "2% of Physical Attack Damage Leeched as Life", statOrder = { 1647 }, level = 1, group = "LifeLeech", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [3933739162] = { "2% of Physical Attack Damage Leeched as Life" }, } }, - ["LifeLeechPermyriadUniqueBelt1"] = { affix = "", "2% of Physical Attack Damage Leeched as Life", statOrder = { 1649 }, level = 1, group = "LifeLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [3593843976] = { "2% of Physical Attack Damage Leeched as Life" }, } }, - ["LifeLeechUniqueShieldDex2"] = { affix = "", "3% of Physical Attack Damage Leeched as Life", statOrder = { 1647 }, level = 1, group = "LifeLeech", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [3933739162] = { "3% of Physical Attack Damage Leeched as Life" }, } }, - ["LifeLeechPermyriadUniqueShieldDex2"] = { affix = "", "0.6% of Physical Attack Damage Leeched as Life", statOrder = { 1649 }, level = 1, group = "LifeLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [3593843976] = { "0.6% of Physical Attack Damage Leeched as Life" }, } }, - ["LifeLeechUniqueAmulet9"] = { affix = "", "(6-10)% of Physical Attack Damage Leeched as Life", statOrder = { 1647 }, level = 1, group = "LifeLeech", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [3933739162] = { "(6-10)% of Physical Attack Damage Leeched as Life" }, } }, - ["LifeLeechPermyriadUniqueAmulet9"] = { affix = "", "(1.2-2)% of Physical Attack Damage Leeched as Life", statOrder = { 1649 }, level = 1, group = "LifeLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [3593843976] = { "(1.2-2)% of Physical Attack Damage Leeched as Life" }, } }, - ["LifeLeechUniqueTwoHandAxe4"] = { affix = "", "5% of Physical Attack Damage Leeched as Life", statOrder = { 1650 }, level = 1, group = "LifeLeechLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [4277433910] = { "5% of Physical Attack Damage Leeched as Life" }, } }, - ["LifeLeechPermyriadUniqueTwoHandAxe4"] = { affix = "", "1% of Physical Attack Damage Leeched as Life", statOrder = { 1651 }, level = 1, group = "LifeLeechLocalPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [55876295] = { "1% of Physical Attack Damage Leeched as Life" }, } }, - ["LifeLeechUniqueClaw3"] = { affix = "", "6% of Physical Attack Damage Leeched as Life", statOrder = { 1650 }, level = 1, group = "LifeLeechLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [4277433910] = { "6% of Physical Attack Damage Leeched as Life" }, } }, - ["LifeLeechPermyriadUniqueClaw3"] = { affix = "", "1.2% of Physical Attack Damage Leeched as Life", statOrder = { 1651 }, level = 1, group = "LifeLeechLocalPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [55876295] = { "1.2% of Physical Attack Damage Leeched as Life" }, } }, - ["LifeLeechUniqueClaw6"] = { affix = "", "15% of Physical Attack Damage Leeched as Life", statOrder = { 1650 }, level = 1, group = "LifeLeechLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [4277433910] = { "15% of Physical Attack Damage Leeched as Life" }, } }, - ["LifeLeechPermyriadUniqueClaw6"] = { affix = "", "3% of Physical Attack Damage Leeched as Life", statOrder = { 1651 }, level = 1, group = "LifeLeechLocalPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [55876295] = { "3% of Physical Attack Damage Leeched as Life" }, } }, - ["LifeLeechUniqueRing12"] = { affix = "", "(3-4)% of Physical Attack Damage Leeched as Life", statOrder = { 1647 }, level = 1, group = "LifeLeech", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [3933739162] = { "(3-4)% of Physical Attack Damage Leeched as Life" }, } }, - ["LifeLeechPermyriadUniqueRing12"] = { affix = "", "(0.6-0.8)% of Physical Attack Damage Leeched as Life", statOrder = { 1649 }, level = 1, group = "LifeLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [3593843976] = { "(0.6-0.8)% of Physical Attack Damage Leeched as Life" }, } }, - ["LifeLeechUniqueHelmetInt7"] = { affix = "", "(2-4)% of Physical Attack Damage Leeched as Life", statOrder = { 1647 }, level = 1, group = "LifeLeech", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [3933739162] = { "(2-4)% of Physical Attack Damage Leeched as Life" }, } }, - ["LifeLeechPermyriadUniqueHelmetInt7"] = { affix = "", "(0.4-0.8)% of Attack Damage Leeched as Life", statOrder = { 1664 }, level = 1, group = "LifeLeechFromAttacksPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHashes = { [141810208] = { "(0.4-0.8)% of Attack Damage Leeched as Life" }, } }, - ["LifeLeechUniqueBodyStr3"] = { affix = "", "5% of Physical Attack Damage Leeched as Life", statOrder = { 1647 }, level = 1, group = "LifeLeech", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [3933739162] = { "5% of Physical Attack Damage Leeched as Life" }, } }, - ["LifeLeechPermyriadUniqueBodyStr3"] = { affix = "", "1% of Attack Damage Leeched as Life", statOrder = { 1664 }, level = 1, group = "LifeLeechFromAttacksPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHashes = { [141810208] = { "1% of Attack Damage Leeched as Life" }, } }, - ["LifeLeechUniqueBodyStrDex3"] = { affix = "", "(2-3)% of Physical Attack Damage Leeched as Life", statOrder = { 1647 }, level = 1, group = "LifeLeech", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [3933739162] = { "(2-3)% of Physical Attack Damage Leeched as Life" }, } }, - ["LifeLeechPermyriadUniqueBodyStrDex3"] = { affix = "", "2% of Attack Damage Leeched as Life", statOrder = { 1664 }, level = 1, group = "LifeLeechFromAttacksPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHashes = { [141810208] = { "2% of Attack Damage Leeched as Life" }, } }, - ["LifeLeechUniqueBodyStrInt5"] = { affix = "", "(4-5)% of Physical Attack Damage Leeched as Life", statOrder = { 1647 }, level = 1, group = "LifeLeech", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [3933739162] = { "(4-5)% of Physical Attack Damage Leeched as Life" }, } }, - ["LifeLeechPermyriadUniqueBodyStrInt5"] = { affix = "", "(0.8-1)% of Attack Damage Leeched as Life", statOrder = { 1664 }, level = 1, group = "LifeLeechFromAttacksPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHashes = { [141810208] = { "(0.8-1)% of Attack Damage Leeched as Life" }, } }, - ["LifeLeechUniqueShieldDex5"] = { affix = "", "2% of Physical Attack Damage Leeched as Life", statOrder = { 1647 }, level = 1, group = "LifeLeech", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [3933739162] = { "2% of Physical Attack Damage Leeched as Life" }, } }, - ["LifeLeechPermyriadUniqueShieldDex5"] = { affix = "", "0.4% of Physical Attack Damage Leeched as Life", statOrder = { 1649 }, level = 1, group = "LifeLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [3593843976] = { "0.4% of Physical Attack Damage Leeched as Life" }, } }, - ["LifeLeechPermyriadUniqueHelmetDexInt6"] = { affix = "", "(0.4-0.8)% of Physical Attack Damage Leeched as Life", statOrder = { 1649 }, level = 1, group = "LifeLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [3593843976] = { "(0.4-0.8)% of Physical Attack Damage Leeched as Life" }, } }, - ["LifeLeechPermyriadUnique__2"] = { affix = "", "0.2% of Physical Attack Damage Leeched as Life", statOrder = { 1649 }, level = 1, group = "LifeLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [3593843976] = { "0.2% of Physical Attack Damage Leeched as Life" }, } }, - ["LifeLeechPermyriadUnique__3"] = { affix = "", "0.4% of Physical Attack Damage Leeched as Life", statOrder = { 1649 }, level = 1, group = "LifeLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [3593843976] = { "0.4% of Physical Attack Damage Leeched as Life" }, } }, - ["LifeLeechPermyriad__1"] = { affix = "", "1% of Physical Attack Damage Leeched as Life", statOrder = { 1649 }, level = 1, group = "LifeLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [3593843976] = { "1% of Physical Attack Damage Leeched as Life" }, } }, - ["LifeLeechPermyriadUnique__4"] = { affix = "", "0.6% of Physical Attack Damage Leeched as Life", statOrder = { 1651 }, level = 1, group = "LifeLeechLocalPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [55876295] = { "0.6% of Physical Attack Damage Leeched as Life" }, } }, - ["LifeLeechPermyriadUnique__5"] = { affix = "", "1% of Physical Attack Damage Leeched as Life", statOrder = { 1651 }, level = 1, group = "LifeLeechLocalPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [55876295] = { "1% of Physical Attack Damage Leeched as Life" }, } }, - ["LifeLeechPermyriadUnique__7"] = { affix = "", "(0.3-0.5)% of Physical Attack Damage Leeched as Life", statOrder = { 1649 }, level = 1, group = "LifeLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [3593843976] = { "(0.3-0.5)% of Physical Attack Damage Leeched as Life" }, } }, - ["LifeLeechPermyriadUnique__8"] = { affix = "", "(2-3)% of Physical Attack Damage Leeched as Life", statOrder = { 1649 }, level = 1, group = "LifeLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [3593843976] = { "(2-3)% of Physical Attack Damage Leeched as Life" }, } }, - ["LifeLeechPermyriadUnique__9"] = { affix = "", "(2-3)% of Physical Attack Damage Leeched as Life", statOrder = { 1649 }, level = 1, group = "LifeLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [3593843976] = { "(2-3)% of Physical Attack Damage Leeched as Life" }, } }, - ["AxeBonus1"] = { affix = "Butcher's", "5% increased Physical Damage with Axes", "2% increased Attack Speed with Axes", "3% increased Accuracy Rating with Axes", statOrder = { 1303, 1420, 1438 }, level = 6, group = "AxeBonuses", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack", "speed" }, tradeHashes = { [2538120572] = { "3% increased Accuracy Rating with Axes" }, [3550868361] = { "2% increased Attack Speed with Axes" }, [2008219439] = { "5% increased Physical Damage with Axes" }, } }, - ["StaffBonus1"] = { affix = "Monk's", "5% increased Physical Damage with Staves", "2% increased Attack Speed with Staves", "3% increased Accuracy Rating with Staves", statOrder = { 1307, 1421, 1439 }, level = 8, group = "StaffBonuses", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack", "speed" }, tradeHashes = { [1394963553] = { "2% increased Attack Speed with Staves" }, [1617235962] = { "3% increased Accuracy Rating with Staves" }, [3150705301] = { "5% increased Physical Damage with Staves" }, } }, - ["ClawBonus1"] = { affix = "Feline", "5% increased Physical Damage with Claws", "2% increased Attack Speed with Claws", "3% increased Accuracy Rating with Claws", statOrder = { 1315, 1422, 1440 }, level = 10, group = "ClawBonuses", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack", "speed" }, tradeHashes = { [1421645223] = { "2% increased Attack Speed with Claws" }, [1297965523] = { "3% increased Accuracy Rating with Claws" }, [635761691] = { "5% increased Physical Damage with Claws" }, } }, - ["DaggerBonus1"] = { affix = "Assassin's", "5% increased Physical Damage with Daggers", "2% increased Attack Speed with Daggers", "3% increased Accuracy Rating with Daggers", statOrder = { 1321, 1423, 1441 }, level = 7, group = "DaggerBonuses", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack", "speed" }, tradeHashes = { [2538566497] = { "2% increased Attack Speed with Daggers" }, [3882531569] = { "5% increased Physical Damage with Daggers" }, [2054715690] = { "3% increased Accuracy Rating with Daggers" }, } }, - ["MaceBonus1"] = { affix = "Crusher's", "5% increased Physical Damage with Maces or Sceptres", "2% increased Attack Speed with Maces or Sceptres", "3% increased Accuracy Rating with Maces or Sceptres", statOrder = { 1327, 1424, 1442 }, level = 5, group = "MaceBonuses", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack", "speed" }, tradeHashes = { [3208450870] = { "3% increased Accuracy Rating with Maces or Sceptres" }, [3774831856] = { "5% increased Physical Damage with Maces or Sceptres" }, [2515515064] = { "2% increased Attack Speed with Maces or Sceptres" }, } }, - ["BowBonus1"] = { affix = "Archer's", "5% increased Physical Damage with Bows", "2% increased Attack Speed with Bows", "3% increased Accuracy Rating with Bows", statOrder = { 1333, 1425, 1443 }, level = 3, group = "BowBonuses", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack", "speed" }, tradeHashes = { [3759735052] = { "2% increased Attack Speed with Bows" }, [402920808] = { "5% increased Physical Damage with Bows" }, [169946467] = { "3% increased Accuracy Rating with Bows" }, } }, - ["SwordBonus1"] = { affix = "Blademaster's", "5% increased Physical Damage with Swords", "2% increased Attack Speed with Swords", "3% increased Accuracy Rating with Swords", statOrder = { 1338, 1426, 1444 }, level = 2, group = "SwordBonuses", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack", "speed" }, tradeHashes = { [3293699237] = { "2% increased Attack Speed with Swords" }, [3814560373] = { "5% increased Physical Damage with Swords" }, [2090868905] = { "3% increased Accuracy Rating with Swords" }, } }, - ["WandBonus1"] = { affix = "Magician's", "5% increased Physical Damage with Wands", "2% increased Attack Speed with Wands", "3% increased Accuracy Rating with Wands", statOrder = { 1345, 1427, 1445 }, level = 4, group = "WandBonuses", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack", "speed" }, tradeHashes = { [2150183156] = { "3% increased Accuracy Rating with Wands" }, [3720627346] = { "2% increased Attack Speed with Wands" }, [2769075491] = { "5% increased Physical Damage with Wands" }, } }, - ["AccuracyPercentImplicitSword1"] = { affix = "", "40% increased Global Accuracy Rating", statOrder = { 1434 }, level = 1, group = "LocalAccuracyRatingIncrease", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [624954515] = { "40% increased Global Accuracy Rating" }, } }, - ["AccuracyPercentImplicitSword2"] = { affix = "", "30% increased Global Accuracy Rating", statOrder = { 1434 }, level = 1, group = "LocalAccuracyRatingIncrease", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [624954515] = { "30% increased Global Accuracy Rating" }, } }, - ["AccuracyPercentImplicit2HSword1"] = { affix = "", "60% increased Global Accuracy Rating", statOrder = { 1434 }, level = 1, group = "LocalAccuracyRatingIncrease", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [624954515] = { "60% increased Global Accuracy Rating" }, } }, - ["AccuracyPercentImplicit2HSword2_"] = { affix = "", "45% increased Global Accuracy Rating", statOrder = { 1434 }, level = 1, group = "LocalAccuracyRatingIncrease", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [624954515] = { "45% increased Global Accuracy Rating" }, } }, - ["AccuracyPercentUniqueBow5"] = { affix = "", "(15-30)% increased Global Accuracy Rating", statOrder = { 1434 }, level = 1, group = "LocalAccuracyRatingIncrease", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [624954515] = { "(15-30)% increased Global Accuracy Rating" }, } }, - ["AccuracyPercentUniqueClaw9"] = { affix = "", "15% reduced Global Accuracy Rating", statOrder = { 1434 }, level = 1, group = "LocalAccuracyRatingIncrease", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [624954515] = { "15% reduced Global Accuracy Rating" }, } }, - ["AccuracyPercentUnique__1"] = { affix = "", "100% reduced Global Accuracy Rating", statOrder = { 1434 }, level = 1, group = "LocalAccuracyRatingIncrease", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [624954515] = { "100% reduced Global Accuracy Rating" }, } }, - ["StaffBlockPercentImplicitStaff1"] = { affix = "", "+20% Chance to Block Attack Damage while wielding a Staff", statOrder = { 1151 }, level = 1, group = "StaffBlockPercent", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [1001829678] = { "+20% Chance to Block Attack Damage while wielding a Staff" }, } }, - ["StaffBlockPercentImplicitStaff2"] = { affix = "", "+22% Chance to Block Attack Damage while wielding a Staff", statOrder = { 1151 }, level = 1, group = "StaffBlockPercent", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [1001829678] = { "+22% Chance to Block Attack Damage while wielding a Staff" }, } }, - ["StaffBlockPercentImplicitStaff3"] = { affix = "", "+25% Chance to Block Attack Damage while wielding a Staff", statOrder = { 1151 }, level = 1, group = "StaffBlockPercent", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [1001829678] = { "+25% Chance to Block Attack Damage while wielding a Staff" }, } }, - ["StaffBlockPercentUniqueStaff7"] = { affix = "", "+6% Chance to Block Attack Damage while wielding a Staff", statOrder = { 1151 }, level = 1, group = "StaffBlockPercent", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [1001829678] = { "+6% Chance to Block Attack Damage while wielding a Staff" }, } }, - ["StaffBlockPercentUniqueStaff9"] = { affix = "", "+12% Chance to Block Attack Damage while wielding a Staff", statOrder = { 1151 }, level = 1, group = "StaffBlockPercent", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [1001829678] = { "+12% Chance to Block Attack Damage while wielding a Staff" }, } }, - ["StaffBlockPercentUnique__1"] = { affix = "", "+15% Chance to Block Attack Damage while wielding a Staff", statOrder = { 1151 }, level = 36, group = "StaffBlockPercent", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [1001829678] = { "+15% Chance to Block Attack Damage while wielding a Staff" }, } }, - ["StaffBlockPercentUnique__2_"] = { affix = "", "+10% Chance to Block Attack Damage while wielding a Staff", statOrder = { 1151 }, level = 1, group = "StaffBlockPercent", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [1001829678] = { "+10% Chance to Block Attack Damage while wielding a Staff" }, } }, - ["StaffBlockPercentUnique__3"] = { affix = "", "+(12-16)% Chance to Block Attack Damage while wielding a Staff", statOrder = { 1151 }, level = 1, group = "StaffBlockPercent", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [1001829678] = { "+(12-16)% Chance to Block Attack Damage while wielding a Staff" }, } }, - ["StaffBlockPercentUnique__4_"] = { affix = "", "+5% Chance to Block Attack Damage while wielding a Staff", statOrder = { 1151 }, level = 1, group = "StaffBlockPercent", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [1001829678] = { "+5% Chance to Block Attack Damage while wielding a Staff" }, } }, - ["StaffBlockPercentUnique__5"] = { affix = "", "+15% Chance to Block Attack Damage while wielding a Staff", statOrder = { 1151 }, level = 1, group = "StaffBlockPercent", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [1001829678] = { "+15% Chance to Block Attack Damage while wielding a Staff" }, } }, - ["StaffSpellBlockPercentImplicitStaff__1"] = { affix = "", "+20% Chance to Block Spell Damage while wielding a Staff", statOrder = { 1150 }, level = 1, group = "StaffSpellBlockPercent", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2120297997] = { "+20% Chance to Block Spell Damage while wielding a Staff" }, } }, - ["StaffSpellBlockPercent2"] = { affix = "", "+22% Chance to Block Spell Damage while wielding a Staff", statOrder = { 1150 }, level = 1, group = "StaffSpellBlockPercent", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2120297997] = { "+22% Chance to Block Spell Damage while wielding a Staff" }, } }, - ["StaffSpellBlockPercent3"] = { affix = "", "+25% Chance to Block Spell Damage while wielding a Staff", statOrder = { 1150 }, level = 1, group = "StaffSpellBlockPercent", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2120297997] = { "+25% Chance to Block Spell Damage while wielding a Staff" }, } }, - ["BlockPercentUniqueHelmetStrDex4"] = { affix = "", "6% Chance to Block Attack Damage", statOrder = { 1138 }, level = 1, group = "BlockPercent", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2530372417] = { "6% Chance to Block Attack Damage" }, } }, - ["BlockPercentUniqueAmulet16"] = { affix = "", "(10-15)% Chance to Block Attack Damage", statOrder = { 1138 }, level = 1, group = "BlockPercent", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2530372417] = { "(10-15)% Chance to Block Attack Damage" }, } }, - ["BlockPercentUniqueDescentStaff1"] = { affix = "", "16% Chance to Block Attack Damage", statOrder = { 1138 }, level = 1, group = "BlockPercent", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2530372417] = { "16% Chance to Block Attack Damage" }, } }, - ["BlockPercentUniqueQuiver4"] = { affix = "", "(20-24)% Chance to Block Attack Damage", statOrder = { 1138 }, level = 35, group = "BlockPercent", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2530372417] = { "(20-24)% Chance to Block Attack Damage" }, } }, - ["BlockPercentMarakethDaggerImplicit1"] = { affix = "", "4% Chance to Block Attack Damage", statOrder = { 1138 }, level = 1, group = "BlockPercent", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2530372417] = { "4% Chance to Block Attack Damage" }, } }, - ["BlockPercentMarakethDaggerImplicit2_"] = { affix = "", "6% Chance to Block Attack Damage", statOrder = { 1138 }, level = 1, group = "BlockPercent", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2530372417] = { "6% Chance to Block Attack Damage" }, } }, - ["BlockPercentUnique__1"] = { affix = "", "(8-12)% Chance to Block Attack Damage", statOrder = { 1138 }, level = 1, group = "BlockPercent", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2530372417] = { "(8-12)% Chance to Block Attack Damage" }, } }, - ["BlockPercentUnique__2"] = { affix = "", "20% Chance to Block Attack Damage", statOrder = { 1138 }, level = 1, group = "BlockPercent", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2530372417] = { "20% Chance to Block Attack Damage" }, } }, - ["BlockPercentUnique__3"] = { affix = "", "(4-6)% Chance to Block Attack Damage", statOrder = { 1138 }, level = 40, group = "BlockPercent", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2530372417] = { "(4-6)% Chance to Block Attack Damage" }, } }, - ["ElementalDamagePercentImplicitSceptre1"] = { affix = "", "20% increased Elemental Damage", statOrder = { 1980 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "20% increased Elemental Damage" }, } }, - ["ElementalDamagePercentImplicitSceptre2"] = { affix = "", "30% increased Elemental Damage", statOrder = { 1980 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "30% increased Elemental Damage" }, } }, - ["ElementalDamagePercentImplicitSceptre3"] = { affix = "", "40% increased Elemental Damage", statOrder = { 1980 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "40% increased Elemental Damage" }, } }, - ["ElementalDamagePercentImplicitSceptreNew1"] = { affix = "", "10% increased Elemental Damage", statOrder = { 1980 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "10% increased Elemental Damage" }, } }, - ["ElementalDamagePercentImplicitSceptreNew2"] = { affix = "", "12% increased Elemental Damage", statOrder = { 1980 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "12% increased Elemental Damage" }, } }, - ["ElementalDamagePercentImplicitSceptreNew3"] = { affix = "", "12% increased Elemental Damage", statOrder = { 1980 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "12% increased Elemental Damage" }, } }, - ["ElementalDamagePercentImplicitSceptreNew4"] = { affix = "", "20% increased Elemental Damage", statOrder = { 1980 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "20% increased Elemental Damage" }, } }, - ["ElementalDamagePercentImplicitSceptreNew5"] = { affix = "", "14% increased Elemental Damage", statOrder = { 1980 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "14% increased Elemental Damage" }, } }, - ["ElementalDamagePercentImplicitSceptreNew6"] = { affix = "", "16% increased Elemental Damage", statOrder = { 1980 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "16% increased Elemental Damage" }, } }, - ["ElementalDamagePercentImplicitSceptreNew7"] = { affix = "", "16% increased Elemental Damage", statOrder = { 1980 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "16% increased Elemental Damage" }, } }, - ["ElementalDamagePercentImplicitSceptreNew8"] = { affix = "", "22% increased Elemental Damage", statOrder = { 1980 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "22% increased Elemental Damage" }, } }, - ["ElementalDamagePercentImplicitSceptreNew9"] = { affix = "", "18% increased Elemental Damage", statOrder = { 1980 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "18% increased Elemental Damage" }, } }, - ["ElementalDamagePercentImplicitSceptreNew10"] = { affix = "", "18% increased Elemental Damage", statOrder = { 1980 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "18% increased Elemental Damage" }, } }, - ["ElementalDamagePercentImplicitSceptreNew11"] = { affix = "", "30% increased Elemental Damage", statOrder = { 1980 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "30% increased Elemental Damage" }, } }, - ["ElementalDamagePercentImplicitSceptreNew12___"] = { affix = "", "22% increased Elemental Damage", statOrder = { 1980 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "22% increased Elemental Damage" }, } }, - ["ElementalDamagePercentImplicitSceptreNew13"] = { affix = "", "24% increased Elemental Damage", statOrder = { 1980 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "24% increased Elemental Damage" }, } }, - ["ElementalDamagePercentImplicitSceptreNew14"] = { affix = "", "24% increased Elemental Damage", statOrder = { 1980 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "24% increased Elemental Damage" }, } }, - ["ElementalDamagePercentImplicitSceptreNew15"] = { affix = "", "30% increased Elemental Damage", statOrder = { 1980 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "30% increased Elemental Damage" }, } }, - ["ElementalDamagePercentImplicitSceptreNew16"] = { affix = "", "26% increased Elemental Damage", statOrder = { 1980 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "26% increased Elemental Damage" }, } }, - ["ElementalDamagePercentImplicitSceptreNew17"] = { affix = "", "26% increased Elemental Damage", statOrder = { 1980 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "26% increased Elemental Damage" }, } }, - ["ElementalDamagePercentImplicitSceptreNew18"] = { affix = "", "40% increased Elemental Damage", statOrder = { 1980 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "40% increased Elemental Damage" }, } }, - ["ElementalDamagePercentImplicitSceptreNew19"] = { affix = "", "30% increased Elemental Damage", statOrder = { 1980 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "30% increased Elemental Damage" }, } }, - ["ElementalDamagePercentImplicitSceptreNew20"] = { affix = "", "32% increased Elemental Damage", statOrder = { 1980 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "32% increased Elemental Damage" }, } }, - ["ElementalDamagePercentImplicitSceptreNew21__"] = { affix = "", "32% increased Elemental Damage", statOrder = { 1980 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "32% increased Elemental Damage" }, } }, - ["ElementalDamagePercentImplicitSceptreNew22"] = { affix = "", "40% increased Elemental Damage", statOrder = { 1980 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "40% increased Elemental Damage" }, } }, - ["ElementalDamagePercentImplicitAtlasRing_"] = { affix = "", "(15-25)% increased Elemental Damage", statOrder = { 1980 }, level = 100, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(15-25)% increased Elemental Damage" }, } }, - ["ElementalDamagePercentUnique__1"] = { affix = "", "(15-50)% increased Elemental Damage", statOrder = { 1980 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(15-50)% increased Elemental Damage" }, } }, - ["ElementalDamagePercentUnique__2"] = { affix = "", "10% increased Elemental Damage", statOrder = { 1980 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "10% increased Elemental Damage" }, } }, - ["IncreasedPhysicalDamagePercentImplicitBelt1"] = { affix = "", "(12-24)% increased Global Physical Damage", statOrder = { 1231 }, level = 2, group = "PhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "(12-24)% increased Global Physical Damage" }, } }, - ["IncreasedPhysicalDamagePercentImplicitMarakethOneHandAxe1"] = { affix = "", "8% increased Global Physical Damage", statOrder = { 1231 }, level = 1, group = "PhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "8% increased Global Physical Damage" }, } }, - ["IncreasedPhysicalDamagePercentImplicitMarakethOneHandAxe2"] = { affix = "", "12% increased Global Physical Damage", statOrder = { 1231 }, level = 1, group = "PhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "12% increased Global Physical Damage" }, } }, - ["IncreasedPhysicalDamagePercentUniqueRing1"] = { affix = "", "5% increased Global Physical Damage", statOrder = { 1231 }, level = 1, group = "PhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "5% increased Global Physical Damage" }, } }, - ["IncreasedPhysicalDamagePercentUniqueHelmetStr1"] = { affix = "", "20% increased Global Physical Damage", statOrder = { 1231 }, level = 1, group = "PhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "20% increased Global Physical Damage" }, } }, - ["IncreasedPhysicalDamagePercentUniqueQuiver2"] = { affix = "", "30% increased Global Physical Damage", statOrder = { 1231 }, level = 7, group = "PhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "30% increased Global Physical Damage" }, } }, - ["IncreasedPhysicalDamagePercentUniqueBelt2"] = { affix = "", "(25-40)% increased Global Physical Damage", statOrder = { 1231 }, level = 1, group = "PhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "(25-40)% increased Global Physical Damage" }, } }, - ["IncreasedPhysicalDamagePercentUniqueShieldStrDex1"] = { affix = "", "20% increased Global Physical Damage", statOrder = { 1231 }, level = 1, group = "PhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "20% increased Global Physical Damage" }, } }, - ["IncreasedPhysicalDamagePercentUniqueHelmetStrDex2"] = { affix = "", "10% reduced Global Physical Damage", statOrder = { 1231 }, level = 1, group = "PhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "10% reduced Global Physical Damage" }, } }, - ["IncreasedPhysicalDamagePercentUniqueGlovesStr2"] = { affix = "", "10% increased Global Physical Damage", statOrder = { 1231 }, level = 1, group = "PhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "10% increased Global Physical Damage" }, } }, - ["IncreasedPhysicalDamagePercentUniqueBelt9d"] = { affix = "", "(20-30)% increased Global Physical Damage", statOrder = { 1231 }, level = 1, group = "PhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "(20-30)% increased Global Physical Damage" }, } }, - ["IncreasedPhysicalDamagePercentUniqueDescentClaw1"] = { affix = "", "30% increased Global Physical Damage", statOrder = { 1231 }, level = 1, group = "PhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "30% increased Global Physical Damage" }, } }, - ["IncreasedPhysicalDamagePercentUniqueShieldDexInt1"] = { affix = "", "(15-25)% increased Global Physical Damage", statOrder = { 1231 }, level = 1, group = "PhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "(15-25)% increased Global Physical Damage" }, } }, - ["IncreasedPhysicalDamagePercentUniqueBelt13"] = { affix = "", "(15-25)% increased Global Physical Damage", statOrder = { 1231 }, level = 1, group = "PhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "(15-25)% increased Global Physical Damage" }, } }, - ["IncreasedPhysicalDamagePercentUniqueBootsDexInt4"] = { affix = "", "20% increased Global Physical Damage", statOrder = { 1231 }, level = 1, group = "PhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "20% increased Global Physical Damage" }, } }, - ["IncreasedPhysicalDamagePercentUniqueSwordImplicit1"] = { affix = "", "30% increased Global Physical Damage", statOrder = { 1231 }, level = 1, group = "PhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "30% increased Global Physical Damage" }, } }, - ["IncreasedPhysicalDamagePercentUniqueBowImplicit1"] = { affix = "", "(20-24)% increased Global Physical Damage", statOrder = { 1231 }, level = 1, group = "PhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "(20-24)% increased Global Physical Damage" }, } }, - ["IncreasedPhysicalDamagePercentUnique__3"] = { affix = "", "(10-15)% increased Global Physical Damage", statOrder = { 1231 }, level = 55, group = "PhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "(10-15)% increased Global Physical Damage" }, } }, - ["IncreasedPhysicalDamagePercentUnique__4"] = { affix = "", "100% increased Global Physical Damage", statOrder = { 1231 }, level = 1, group = "PhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "100% increased Global Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUniqueBow2"] = { affix = "", "(80-100)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(80-100)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUniqueOneHandSword2"] = { affix = "", "150% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "150% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUniqueTwoHandAxe1"] = { affix = "", "(100-140)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(100-140)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUniqueOneHandSword1"] = { affix = "", "50% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "50% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUniqueBow1"] = { affix = "", "(180-200)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(180-200)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUniqueBow3"] = { affix = "", "(90-105)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(90-105)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUniqueTwoHandMace1"] = { affix = "", "(140-200)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(140-200)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUniqueTwoHandMace2"] = { affix = "", "200% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "200% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUniqueTwoHandSword1"] = { affix = "", "(120-150)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(120-150)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUniqueTwoHandSword2"] = { affix = "", "(80-100)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(80-100)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUniqueDagger2"] = { affix = "", "(80-100)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(80-100)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUniqueTwoHandAxe2"] = { affix = "", "(100-125)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(100-125)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUniqueTwoHandSword3"] = { affix = "", "(180-220)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(180-220)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUniqueRapier1"] = { affix = "", "(250-300)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(250-300)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUniqueWand1"] = { affix = "", "(250-275)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(250-275)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUniqueTwoHandMace3"] = { affix = "", "(500-600)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(500-600)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUniqueDagger3"] = { affix = "", "(80-100)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(80-100)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUniqueOneHandMace1"] = { affix = "", "(50-75)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(50-75)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUniqueBow4"] = { affix = "", "30% less Damage", statOrder = { 2456 }, level = 1, group = "QuillRainWeaponDamageFinalPercent", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [412462523] = { "30% less Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUniqueBow5"] = { affix = "", "(60-80)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(60-80)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUniqueTwoHandAxe3"] = { affix = "", "(80-100)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(80-100)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUniqueTwoHandMace4"] = { affix = "", "150% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "150% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUniqueBow6"] = { affix = "", "(100-140)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(100-140)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUniqueBow7"] = { affix = "", "(70-80)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(70-80)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUniqueClaw1"] = { affix = "", "(140-180)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(140-180)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUniqueSceptre1"] = { affix = "", "(80-100)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(80-100)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUniqueClaw2"] = { affix = "", "(75-100)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(75-100)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUniqueTwoHandAxe4"] = { affix = "", "(180-200)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(180-200)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUniqueClaw3"] = { affix = "", "(200-250)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(200-250)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUniqueTwoHandMace5"] = { affix = "", "(200-220)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(200-220)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUniqueRapier2"] = { affix = "", "(120-150)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(120-150)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUniqueClaw4"] = { affix = "", "(80-100)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(80-100)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUniqueClaw5"] = { affix = "", "(80-100)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(80-100)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUniqueClaw6"] = { affix = "", "(100-120)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(100-120)% increased Physical Damage" }, } }, - ["LocalReducedPhysicalDamagePercentUniqueBow8"] = { affix = "", "No Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalNoWeaponPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [385756972] = { "No Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUniqueOneHandAxe1"] = { affix = "", "(140-180)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(140-180)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUniqueOneHandSword4"] = { affix = "", "(250-300)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(250-300)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUniqueTwoHandAxe5"] = { affix = "", "(120-160)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(120-160)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUniqueTwoHandSword5"] = { affix = "", "(80-120)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(80-120)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUniqueSceptre5"] = { affix = "", "(80-120)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(80-120)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUniqueTwoHandAxe6"] = { affix = "", "(60-80)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(60-80)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUniqueBow10"] = { affix = "", "(50-70)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(50-70)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUniqueTwoHandMace7"] = { affix = "", "(80-100)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(80-100)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUniqueDescentStaff1"] = { affix = "", "100% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "100% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUniqueDescentBow1"] = { affix = "", "100% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "100% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUniqueOneHandMace3"] = { affix = "", "(80-120)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(80-120)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUniqueDagger9"] = { affix = "", "(250-270)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(250-270)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUniqueOneHandSword8"] = { affix = "", "(230-260)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(230-260)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUniqueOneHandAxe5"] = { affix = "", "(130-150)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(130-150)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUniqueTwoHandSword7"] = { affix = "", "(40-60)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(40-60)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUniqueTwoHandAxe8"] = { affix = "", "(120-140)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(120-140)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUniqueTwoHandSword8"] = { affix = "", "(30-50)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(30-50)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUniqueStaff9"] = { affix = "", "100% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "100% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamageUniqueSceptre9"] = { affix = "", "20% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "20% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamageUniqueOneHandMace4"] = { affix = "", "(140-180)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(140-180)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamageUniqueOneHandMace5"] = { affix = "", "(150-200)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(150-200)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamageUniqueOneHandSceptre10"] = { affix = "", "(80-100)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(80-100)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamageUniqueOneHandSword11"] = { affix = "", "(80-95)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(80-95)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamageUniqueClaw8"] = { affix = "", "(160-180)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(160-180)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUniqueWand9"] = { affix = "", "(80-140)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(80-140)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUniqueWand9x"] = { affix = "", "(110-170)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(110-170)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUniqueTwoHandAxe9"] = { affix = "", "(300-360)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(300-360)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUniqueDagger11"] = { affix = "", "(50-70)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(50-70)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUniqueDagger12"] = { affix = "", "(20-40)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(20-40)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUnique13"] = { affix = "", "(120-160)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(120-160)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUniqueOneHandAxe8"] = { affix = "", "(30-50)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(30-50)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUniqueOneHandSword12"] = { affix = "", "(20-50)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(20-50)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUniqueOneHandSword13"] = { affix = "", "(60-80)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(60-80)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUniqueOneHandMace6"] = { affix = "", "(300-360)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(300-360)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUniqueOneHandMace7"] = { affix = "", "(160-200)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(160-200)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUniqueOneHandMace8"] = { affix = "", "(60-80)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(60-80)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUniqueStaff14"] = { affix = "", "(80-100)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(80-100)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUniqueSceptre2"] = { affix = "", "(150-200)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(150-200)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUniqueTwoHandMace8"] = { affix = "", "(150-200)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(150-200)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUnique__1"] = { affix = "", "(110-130)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(110-130)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUnique__2"] = { affix = "", "(100-125)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(100-125)% increased Physical Damage" }, } }, - ["LocalIncreasedPhyiscalDamagePercentUnique__3"] = { affix = "", "(60-80)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(60-80)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUnique__4"] = { affix = "", "(100-140)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(100-140)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUnique__5"] = { affix = "", "(140-160)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(140-160)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUnique__6"] = { affix = "", "(40-60)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(40-60)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUnique__7"] = { affix = "", "(130-160)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(130-160)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUnique__8"] = { affix = "", "(40-60)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(40-60)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUnique__9"] = { affix = "", "(170-190)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(170-190)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUnique__10"] = { affix = "", "(100-120)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(100-120)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUnique__11_"] = { affix = "", "(60-80)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(60-80)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUnique__12"] = { affix = "", "(80-100)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(80-100)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUnique__13"] = { affix = "", "(100-140)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(100-140)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUnique__14"] = { affix = "", "(35-50)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(35-50)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUnique__15"] = { affix = "", "(50-75)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(50-75)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUnique__16"] = { affix = "", "(260-310)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(260-310)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUnique__17_"] = { affix = "", "(170-190)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(170-190)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUnique__18"] = { affix = "", "(220-250)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(220-250)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUnique__19"] = { affix = "", "(400-450)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(400-450)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUnique__20"] = { affix = "", "(180-200)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(180-200)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUnique__21"] = { affix = "", "(160-190)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(160-190)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUnique__22"] = { affix = "", "(230-270)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(230-270)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUnique__23"] = { affix = "", "(200-240)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(200-240)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUnique__24"] = { affix = "", "(280-320)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(280-320)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUnique__25"] = { affix = "", "(170-200)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(170-200)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUnique__26"] = { affix = "", "100% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "100% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUnique__27"] = { affix = "", "(140-160)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(140-160)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUnique__28__"] = { affix = "", "(150-170)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(150-170)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUnique__29"] = { affix = "", "(180-200)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(180-200)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUnique__30"] = { affix = "", "(185-215)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(185-215)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUnique__31"] = { affix = "", "(180-220)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(180-220)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUnique__33"] = { affix = "", "(140-152)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(140-152)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUnique__34___"] = { affix = "", "(180-210)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(180-210)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUnique__35"] = { affix = "", "(180-210)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(180-210)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUnique__36_"] = { affix = "", "(60-80)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(60-80)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUnique__37__"] = { affix = "", "(130-150)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(130-150)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUnique__38"] = { affix = "", "(165-195)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(165-195)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUnique__39"] = { affix = "", "(175-200)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(175-200)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUnique__40"] = { affix = "", "(200-250)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(200-250)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUnique__41___"] = { affix = "", "(140-180)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(140-180)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUnique__42"] = { affix = "", "(230-260)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(230-260)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUnique__43"] = { affix = "", "(200-250)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(200-250)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUnique__44"] = { affix = "", "(120-160)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(120-160)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUnique__45"] = { affix = "", "(700-800)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(700-800)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUnique__46"] = { affix = "", "(150-180)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(150-180)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUnique__47"] = { affix = "", "(300-350)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(300-350)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUnique__48"] = { affix = "", "(100-140)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(100-140)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUnique__49"] = { affix = "", "(250-300)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(250-300)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUnique__50"] = { affix = "", "(150-250)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(150-250)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUnique__52"] = { affix = "", "(50-75)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(50-75)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUnique__53"] = { affix = "", "(200-300)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(200-300)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUnique__54"] = { affix = "", "(180-240)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(180-240)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUnique__55"] = { affix = "", "(130-160)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(130-160)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUnique__56"] = { affix = "", "(120-160)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(120-160)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUnique__57"] = { affix = "", "(120-160)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(120-160)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUnique__58"] = { affix = "", "(90-130)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(90-130)% increased Physical Damage" }, } }, - ["LocalReducedPhysicalDamagePercentUniqueTwoHandSword6"] = { affix = "", "No Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalNoWeaponPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [385756972] = { "No Physical Damage" }, } }, - ["LocalReducedPhysicalDamagePercentUniqueWand6"] = { affix = "", "No Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalNoWeaponPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [385756972] = { "No Physical Damage" }, } }, - ["LocalReducedPhysicalDamagePercentUniqueOneHandSword7"] = { affix = "", "No Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalNoWeaponPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [385756972] = { "No Physical Damage" }, } }, - ["LocalReducedPhysicalDamagePercentUnique__1"] = { affix = "", "No Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalNoWeaponPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [385756972] = { "No Physical Damage" }, } }, - ["LocalReducedPhysicalDamagePercentUnique__2"] = { affix = "", "No Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalNoWeaponPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [385756972] = { "No Physical Damage" }, } }, - ["IncreasedPhysicalDamagePercentOnLowLifeUniqueOneHandSword1"] = { affix = "", "100% increased Damage when on Low Life", statOrder = { 1215 }, level = 1, group = "PhysicalDamagePercentOnLowLife", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [1513447578] = { "100% increased Damage when on Low Life" }, } }, - ["ReducedPhysicalDamagePercentOnLowLifeUniqueHelmetDex4"] = { affix = "", "50% reduced Damage when on Low Life", statOrder = { 1215 }, level = 1, group = "PhysicalDamagePercentOnLowLife", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [1513447578] = { "50% reduced Damage when on Low Life" }, } }, - ["LocalAddedPhysicalDamageUniqueBow1"] = { affix = "", "Adds (7-14) to (24-34) Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (7-14) to (24-34) Physical Damage" }, } }, - ["LocalAddedPhysicalDamageUniqueOneHandSword1"] = { affix = "", "Adds 2 to 6 Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds 2 to 6 Physical Damage" }, } }, - ["LocalAddedPhysicalDamageUniqueClaw3"] = { affix = "", "Adds 25 to 30 Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds 25 to 30 Physical Damage" }, } }, - ["LocalAddedPhysicalDamageOneHandAxe1"] = { affix = "", "Adds 30 to 40 Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds 30 to 40 Physical Damage" }, } }, - ["LocalAddedPhysicalDamageOneHandSword3"] = { affix = "", "Adds (49-98) to (101-140) Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (49-98) to (101-140) Physical Damage" }, } }, - ["LocalAddedPhysicalDamageUniqueDescentDagger1"] = { affix = "", "Adds 1 to 4 Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds 1 to 4 Physical Damage" }, } }, - ["LocalAddedPhysicalDamageUniqueDescentOneHandAxe1"] = { affix = "", "Adds 2 to 4 Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds 2 to 4 Physical Damage" }, } }, - ["LocalAddedPhysicalDamageUniqueDescentStaff1"] = { affix = "", "Adds 2 to 4 Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds 2 to 4 Physical Damage" }, } }, - ["LocalAddedPhysicalDamageUniqueDagger2"] = { affix = "", "Adds 12 to 24 Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds 12 to 24 Physical Damage" }, } }, - ["LocalAddedPhysicalDamageUniqueDagger8"] = { affix = "", "Adds (140-155) to (210-235) Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (140-155) to (210-235) Physical Damage" }, } }, - ["LocalAddedPhysicalDamageUniqueSceptre7"] = { affix = "", "Adds (65-85) to (100-160) Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (65-85) to (100-160) Physical Damage" }, } }, - ["LocalAddedPhysicalDamageUniqueOneHandSword9"] = { affix = "", "Adds (30-50) to (65-80) Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (30-50) to (65-80) Physical Damage" }, } }, - ["LocalAddedPhysicalDamageUniqueOneHandSword10"] = { affix = "", "Adds (3-6) to (33-66) Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (3-6) to (33-66) Physical Damage" }, } }, - ["LocalAddedPhysicalDamageUniqueBow11"] = { affix = "", "Adds (12-16) to (20-24) Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (12-16) to (20-24) Physical Damage" }, } }, - ["LocalAddedPhysicalDamageUniqueDagger11"] = { affix = "", "Adds (1-2) to (3-5) Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (1-2) to (3-5) Physical Damage" }, } }, - ["LocalAddedPhysicalDamageUniqueDagger12"] = { affix = "", "Adds (3-6) to (9-13) Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (3-6) to (9-13) Physical Damage" }, } }, - ["LocalAddedPhysicalDamageUniqueClaw9"] = { affix = "", "Adds (2-6) to (16-22) Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (2-6) to (16-22) Physical Damage" }, } }, - ["LocalAddedPhysicalDamageUniqueOneHandAxe7"] = { affix = "", "Adds (5-15) to (20-25) Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (5-15) to (20-25) Physical Damage" }, } }, - ["LocalAddedPhysicalDamageUniqueOneHandAxe8"] = { affix = "", "Adds (5-9) to (13-17) Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (5-9) to (13-17) Physical Damage" }, } }, - ["LocalAddedPhysicalDamageUniqueOneHandSword12"] = { affix = "", "Adds (3-4) to (5-8) Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (3-4) to (5-8) Physical Damage" }, } }, - ["LocalAddedPhysicalDamageUniqueOneHandSword13"] = { affix = "", "Adds (5-8) to (10-14) Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (5-8) to (10-14) Physical Damage" }, } }, - ["LocalAddedPhysicalDamageUniqueOneHandMace8"] = { affix = "", "Adds 10 to 15 Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds 10 to 15 Physical Damage" }, } }, - ["LocalAddedPhysicalDamageUnique14"] = { affix = "", "Adds (10-16) to (12-30) Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (10-16) to (12-30) Physical Damage" }, } }, - ["LocalAddedPhysicalDamage__1"] = { affix = "", "Adds (7-10) to (15-25) Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (7-10) to (15-25) Physical Damage" }, } }, - ["LocalAddedPhysicalDamageUnique__2_"] = { affix = "", "Adds (25-50) to (85-125) Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (25-50) to (85-125) Physical Damage" }, } }, - ["LocalAddedPhysicalDamageUnique__3"] = { affix = "", "Adds 20 to 50 Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds 20 to 50 Physical Damage" }, } }, - ["LocalAddedPhysicalDamageUnique__4"] = { affix = "", "Adds (18-22) to (36-44) Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (18-22) to (36-44) Physical Damage" }, } }, - ["LocalAddedPhysicalDamageUnique__5"] = { affix = "", "Adds (8-12) to (16-24) Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (8-12) to (16-24) Physical Damage" }, } }, - ["LocalAddedPhysicalDamageUnique__6_"] = { affix = "", "Adds (26-32) to (36-42) Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (26-32) to (36-42) Physical Damage" }, } }, - ["LocalAddedPhysicalDamageUnique__7_"] = { affix = "", "Adds (75-92) to (125-154) Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (75-92) to (125-154) Physical Damage" }, } }, - ["LocalIncreasedEnergyShieldPercentUniqueBodyStrInt1"] = { affix = "", "60% increased Energy Shield", statOrder = { 1560 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "60% increased Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldPercentUniqueIntHelmet1"] = { affix = "", "+(150-225) to maximum Energy Shield", statOrder = { 1559 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(150-225) to maximum Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldPercentUniqueBootsInt1"] = { affix = "", "+(5-30) to maximum Energy Shield", statOrder = { 1559 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(5-30) to maximum Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldPercentUniqueShieldInt1"] = { affix = "", "(120-160)% increased Energy Shield", statOrder = { 1560 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(120-160)% increased Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldPercentUniqueShieldInt2"] = { affix = "", "(40-80)% increased Energy Shield", statOrder = { 1560 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(40-80)% increased Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldPercentUniqueBodyInt8"] = { affix = "", "(125-150)% increased Energy Shield", statOrder = { 1560 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(125-150)% increased Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldUniqueBootsInt2"] = { affix = "", "+(10-20) to maximum Energy Shield", statOrder = { 1559 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(10-20) to maximum Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldUniqueGlovesInt1"] = { affix = "", "+18 to maximum Energy Shield", statOrder = { 1559 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+18 to maximum Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldUniqueGlovesInt2"] = { affix = "", "+32 to maximum Energy Shield", statOrder = { 1559 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+32 to maximum Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldUniqueHelmetInt4"] = { affix = "", "50% increased Energy Shield", statOrder = { 1560 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "50% increased Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldUniqueBootsInt4"] = { affix = "", "(40-60)% increased Energy Shield", statOrder = { 1560 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(40-60)% increased Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldUniqueBodyInt1"] = { affix = "", "(100-150)% increased Energy Shield", statOrder = { 1560 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(100-150)% increased Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldUniqueBodyInt3"] = { affix = "", "(210-250)% increased Energy Shield", statOrder = { 1560 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(210-250)% increased Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldUniqueBodyInt4"] = { affix = "", "(120-160)% increased Energy Shield", statOrder = { 1560 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(120-160)% increased Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldPercentUniqueBootsInt5"] = { affix = "", "(140-180)% increased Energy Shield", statOrder = { 1560 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(140-180)% increased Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldUniqueBodyInt7"] = { affix = "", "(100-120)% increased Energy Shield", statOrder = { 1560 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(100-120)% increased Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldUniqueGlovesInt4"] = { affix = "", "(40-60)% increased Energy Shield", statOrder = { 1560 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(40-60)% increased Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldUniqueGlovesInt5"] = { affix = "", "(100-120)% increased Energy Shield", statOrder = { 1560 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(100-120)% increased Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldUniqueGlovesInt6"] = { affix = "", "(180-250)% increased Energy Shield", statOrder = { 1560 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(180-250)% increased Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldUniqueGlovesDexInt3"] = { affix = "", "+(25-30) to maximum Energy Shield", statOrder = { 1559 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(25-30) to maximum Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldUniqueHelmetInt5_"] = { affix = "", "+(40-60) to maximum Energy Shield", statOrder = { 1559 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(40-60) to maximum Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldUniqueHelmetInt6"] = { affix = "", "+(40-60) to maximum Energy Shield", statOrder = { 1559 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(40-60) to maximum Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldUniqueHelmetInt7"] = { affix = "", "(120-150)% increased Energy Shield", statOrder = { 1560 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(120-150)% increased Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldUniqueShieldInt3"] = { affix = "", "(80-100)% increased Energy Shield", statOrder = { 1560 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(80-100)% increased Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldUniqueBodyStrDexInt1g"] = { affix = "", "(270-300)% increased Energy Shield", statOrder = { 1560 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(270-300)% increased Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldUniqueHelmetInt10"] = { affix = "", "(130-170)% increased Energy Shield", statOrder = { 1560 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(130-170)% increased Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldPercentUniqueBootsInt6"] = { affix = "", "(50-80)% increased Energy Shield", statOrder = { 1560 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(50-80)% increased Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldPercent__1"] = { affix = "", "(250-300)% increased Energy Shield", statOrder = { 1560 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(250-300)% increased Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldPercent__2"] = { affix = "", "(210-250)% increased Energy Shield", statOrder = { 1560 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(210-250)% increased Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldPercent___3"] = { affix = "", "(120-160)% increased Energy Shield", statOrder = { 1560 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(120-160)% increased Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldPercentUnique___4_"] = { affix = "", "(80-100)% increased Energy Shield", statOrder = { 1560 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(80-100)% increased Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldPercentUnique__5"] = { affix = "", "(150-200)% increased Energy Shield", statOrder = { 1560 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(150-200)% increased Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldPercentUnique__6"] = { affix = "", "(80-100)% increased Energy Shield", statOrder = { 1560 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(80-100)% increased Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldPercentUnique__7"] = { affix = "", "(170-230)% increased Energy Shield", statOrder = { 1560 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(170-230)% increased Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldPercentUnique__8"] = { affix = "", "(475-600)% increased Energy Shield", statOrder = { 1560 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(475-600)% increased Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldPercentUnique__9"] = { affix = "", "(240-260)% increased Energy Shield", statOrder = { 1560 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(240-260)% increased Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldPercentUnique__10"] = { affix = "", "(150-180)% increased Energy Shield", statOrder = { 1560 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(150-180)% increased Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldPercentUnique__11"] = { affix = "", "(100-120)% increased Energy Shield", statOrder = { 1560 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(100-120)% increased Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldPercentUnique__12"] = { affix = "", "(120-150)% increased Energy Shield", statOrder = { 1560 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(120-150)% increased Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldPercentUnique__13"] = { affix = "", "(150-180)% increased Energy Shield", statOrder = { 1560 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(150-180)% increased Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldPercentUnique__14"] = { affix = "", "(130-150)% increased Energy Shield", statOrder = { 1560 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(130-150)% increased Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldPercentUnique__15_"] = { affix = "", "(200-250)% increased Energy Shield", statOrder = { 1560 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(200-250)% increased Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldPercentUnique__16"] = { affix = "", "(150-180)% increased Energy Shield", statOrder = { 1560 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(150-180)% increased Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldPercentUnique__17"] = { affix = "", "(120-140)% increased Energy Shield", statOrder = { 1560 }, level = 84, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(120-140)% increased Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldPercentUnique__18"] = { affix = "", "(220-250)% increased Energy Shield", statOrder = { 1560 }, level = 82, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(220-250)% increased Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldPercentUnique__19"] = { affix = "", "(180-220)% increased Energy Shield", statOrder = { 1560 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(180-220)% increased Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldPercentUnique__20_"] = { affix = "", "(100-130)% increased Energy Shield", statOrder = { 1560 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(100-130)% increased Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldPercentUnique__21"] = { affix = "", "(180-220)% increased Energy Shield", statOrder = { 1560 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(180-220)% increased Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldPercentUnique__22"] = { affix = "", "(200-230)% increased Energy Shield", statOrder = { 1560 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(200-230)% increased Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldPercentUnique__23"] = { affix = "", "(240-280)% increased Energy Shield", statOrder = { 1560 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(240-280)% increased Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldPercentUnique__24"] = { affix = "", "(180-230)% increased Energy Shield", statOrder = { 1560 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(180-230)% increased Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldPercentUnique__25_"] = { affix = "", "(200-250)% increased Energy Shield", statOrder = { 1560 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(200-250)% increased Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldPercentUnique__26"] = { affix = "", "(60-80)% increased Energy Shield", statOrder = { 1560 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(60-80)% increased Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldPercentUnique__27"] = { affix = "", "(80-120)% increased Energy Shield", statOrder = { 1560 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(80-120)% increased Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldPercentUnique__28__"] = { affix = "", "(100-150)% increased Energy Shield", statOrder = { 1560 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(100-150)% increased Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldPercentUnique__29"] = { affix = "", "(80-130)% increased Energy Shield", statOrder = { 1560 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(80-130)% increased Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldPercentUnique__30___"] = { affix = "", "(300-350)% increased Energy Shield", statOrder = { 1560 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(300-350)% increased Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldPercentUnique__31____"] = { affix = "", "(140-180)% increased Energy Shield", statOrder = { 1560 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(140-180)% increased Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldPercentUnique__32"] = { affix = "", "(200-250)% increased Energy Shield", statOrder = { 1560 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(200-250)% increased Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldPercentUnique__33"] = { affix = "", "(200-250)% increased Energy Shield", statOrder = { 1560 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(200-250)% increased Energy Shield" }, } }, - ["IncreasedEnergyShieldPercentUniqueOneHandSword2"] = { affix = "", "(40-50)% increased maximum Energy Shield", statOrder = { 1561 }, level = 1, group = "GlobalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2482852589] = { "(40-50)% increased maximum Energy Shield" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingUniqueBodyStrInt1"] = { affix = "", "60% increased Armour", statOrder = { 1542 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "60% increased Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingUniqueHelmetStr1"] = { affix = "", "+(75-100) to Armour", statOrder = { 1540 }, level = 1, group = "LocalPhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [3484657501] = { "+(75-100) to Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingUniqueBootsStr1"] = { affix = "", "(50-80)% increased Armour", statOrder = { 1542 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(50-80)% increased Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingUniqueGlovesStr1"] = { affix = "", "+(10-20) to Armour", statOrder = { 1540 }, level = 1, group = "LocalPhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [3484657501] = { "+(10-20) to Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingUniqueGlovesStr2"] = { affix = "", "(150-200)% increased Armour", statOrder = { 1542 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(150-200)% increased Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingUniqueShieldStr2"] = { affix = "", "(60-80)% increased Armour", statOrder = { 1542 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(60-80)% increased Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingUniqueShieldStr3"] = { affix = "", "(120-150)% increased Armour", statOrder = { 1542 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(120-150)% increased Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingUniqueGlovesStrDex3"] = { affix = "", "+(35-45) to Armour", statOrder = { 1540 }, level = 1, group = "LocalPhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [3484657501] = { "+(35-45) to Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingUniqueHelmetStr3"] = { affix = "", "(100-120)% increased Armour", statOrder = { 1542 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(100-120)% increased Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingUniqueHelmetStrDex3"] = { affix = "", "+(200-300) to Armour", statOrder = { 1540 }, level = 1, group = "LocalPhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [3484657501] = { "+(200-300) to Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingUniqueBodyStr3"] = { affix = "", "(180-220)% increased Armour", statOrder = { 1542 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(180-220)% increased Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingUniqueBodyStrDex1"] = { affix = "", "(150-200)% increased Armour", statOrder = { 1542 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(150-200)% increased Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingUniqueBodyStr4"] = { affix = "", "(60-80)% increased Armour", statOrder = { 1542 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(60-80)% increased Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingUniqueShieldStrDex2"] = { affix = "", "+(20-40) to Armour", statOrder = { 1540 }, level = 1, group = "LocalPhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [3484657501] = { "+(20-40) to Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingUniqueBootsStrInt2"] = { affix = "", "+(180-220) to Armour", statOrder = { 1540 }, level = 1, group = "LocalPhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [3484657501] = { "+(180-220) to Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingUniqueGlovesStr5"] = { affix = "", "+(400-600) to Armour", statOrder = { 1540 }, level = 1, group = "LocalPhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [3484657501] = { "+(400-600) to Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingPercentUniqueGlovesStr3"] = { affix = "", "(200-220)% increased Armour", statOrder = { 1542 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(200-220)% increased Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingPercentUniqueBodyStrDexInt1a"] = { affix = "", "(380-420)% increased Armour", statOrder = { 1542 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(380-420)% increased Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingPercentUniqueHelmetStrDex6"] = { affix = "", "(100-150)% increased Armour", statOrder = { 1542 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(100-150)% increased Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingPercentUniqueBodyStr6"] = { affix = "", "(200-250)% increased Armour", statOrder = { 1542 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(200-250)% increased Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingPercentUniqueBootsStr3"] = { affix = "", "(150-200)% increased Armour", statOrder = { 1542 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(150-200)% increased Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingUniqueBootsStr_1"] = { affix = "", "+(100-150) to Armour", statOrder = { 1540 }, level = 1, group = "LocalPhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [3484657501] = { "+(100-150) to Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingPercentUnique__1"] = { affix = "", "(100-140)% increased Armour", statOrder = { 1542 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(100-140)% increased Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingPercentUnique6"] = { affix = "", "(90-140)% increased Armour", statOrder = { 1542 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(90-140)% increased Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingPercentUnique7"] = { affix = "", "(120-180)% increased Armour", statOrder = { 1542 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(120-180)% increased Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingPercentUnique8_"] = { affix = "", "(90-150)% increased Armour", statOrder = { 1542 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(90-150)% increased Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingPercentUnique__2"] = { affix = "", "+(120-160) to Armour", statOrder = { 1540 }, level = 1, group = "LocalPhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [3484657501] = { "+(120-160) to Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingPercentUnique__3"] = { affix = "", "(350-400)% increased Armour", statOrder = { 1542 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(350-400)% increased Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingPercentUnique__4"] = { affix = "", "100% increased Armour", statOrder = { 1542 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "100% increased Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingPercentUnique__5"] = { affix = "", "(165-205)% increased Armour", statOrder = { 1542 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(165-205)% increased Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingPercentUnique__6"] = { affix = "", "(80-120)% increased Armour", statOrder = { 1542 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(80-120)% increased Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingPercentUnique__7"] = { affix = "", "(60-100)% increased Armour", statOrder = { 1542 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(60-100)% increased Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingPercentUnique__8"] = { affix = "", "(50-100)% increased Armour", statOrder = { 1542 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(50-100)% increased Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingPercentUnique__9"] = { affix = "", "(80-100)% increased Armour", statOrder = { 1542 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(80-100)% increased Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingPercentUnique__10"] = { affix = "", "(100-120)% increased Armour", statOrder = { 1542 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(100-120)% increased Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingPercentUnique__11"] = { affix = "", "(130-150)% increased Armour", statOrder = { 1542 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(130-150)% increased Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingPercentUnique__12"] = { affix = "", "(80-100)% increased Armour", statOrder = { 1542 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(80-100)% increased Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingPercentUnique__13"] = { affix = "", "(100-120)% increased Armour", statOrder = { 1542 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(100-120)% increased Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingPercentUnique__14_"] = { affix = "", "(180-220)% increased Armour", statOrder = { 1542 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(180-220)% increased Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingPercentUnique__15"] = { affix = "", "(80-100)% increased Armour", statOrder = { 1542 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(80-100)% increased Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingPercentUnique__16"] = { affix = "", "(200-250)% increased Armour", statOrder = { 1542 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(200-250)% increased Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingPercentUnique__17"] = { affix = "", "(150-200)% increased Armour", statOrder = { 1542 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(150-200)% increased Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingPercentUnique__18"] = { affix = "", "(150-180)% increased Armour", statOrder = { 1542 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(150-180)% increased Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingPercentUnique__19"] = { affix = "", "(80-120)% increased Armour", statOrder = { 1542 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(80-120)% increased Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingPercentUnique__20"] = { affix = "", "(60-80)% increased Armour", statOrder = { 1542 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(60-80)% increased Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingPercentUnique__21"] = { affix = "", "(50-80)% increased Armour", statOrder = { 1542 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(50-80)% increased Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingPercentUnique__22"] = { affix = "", "(80-120)% increased Armour", statOrder = { 1542 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(80-120)% increased Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingPercentUnique__23"] = { affix = "", "(120-150)% increased Armour", statOrder = { 1542 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(120-150)% increased Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingPercentUnique__24"] = { affix = "", "(100-150)% increased Armour", statOrder = { 1542 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(100-150)% increased Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingPercentUnique__25"] = { affix = "", "(150-250)% increased Armour", statOrder = { 1542 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(150-250)% increased Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingPercentUnique__26"] = { affix = "", "(80-120)% increased Armour", statOrder = { 1542 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(80-120)% increased Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingPercentUnique__27"] = { affix = "", "(60-100)% increased Armour", statOrder = { 1542 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(60-100)% increased Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingPercentUnique__28"] = { affix = "", "(100-150)% increased Armour", statOrder = { 1542 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(100-150)% increased Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingPercentUnique__29"] = { affix = "", "(80-120)% increased Armour", statOrder = { 1542 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(80-120)% increased Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingPercentUnique__30"] = { affix = "", "(100-150)% increased Armour", statOrder = { 1542 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(100-150)% increased Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingPercentUnique__31"] = { affix = "", "(80-120)% increased Armour", statOrder = { 1542 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(80-120)% increased Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingPercentUnique__32"] = { affix = "", "(100-140)% increased Armour", statOrder = { 1542 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(100-140)% increased Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingPercentUnique__33"] = { affix = "", "(100-160)% increased Armour", statOrder = { 1542 }, level = 75, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(100-160)% increased Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingPercentUnique__34"] = { affix = "", "(50-100)% increased Armour", statOrder = { 1542 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(50-100)% increased Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingPercentUnique__35"] = { affix = "", "(150-230)% increased Armour", statOrder = { 1542 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(150-230)% increased Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingPercentUnique__36UNUSED"] = { affix = "", "(120-200)% increased Armour", statOrder = { 1542 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(120-200)% increased Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingPercentUnique__37"] = { affix = "", "(80-120)% increased Armour", statOrder = { 1542 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(80-120)% increased Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingPercentUnique__38"] = { affix = "", "(120-240)% increased Armour", statOrder = { 1542 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(120-240)% increased Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingTransformedUnique__1"] = { affix = "", "+2000 to Armour", statOrder = { 1540 }, level = 38, group = "LocalPhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [3484657501] = { "+2000 to Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingUnique__1"] = { affix = "", "+(100-120) to Armour", statOrder = { 1540 }, level = 1, group = "LocalPhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [3484657501] = { "+(100-120) to Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingUnique__2"] = { affix = "", "(200-250)% increased Armour", statOrder = { 1542 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(200-250)% increased Armour" }, } }, - ["LocalIncreasedEvasionRatingPercentUniqueBodyDex1"] = { affix = "", "(140-220)% increased Evasion Rating", statOrder = { 1550 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(140-220)% increased Evasion Rating" }, } }, - ["LocalIncreasedEvasionRatingPercentUniqueDexHelmet2"] = { affix = "", "(80-100)% increased Evasion Rating", statOrder = { 1550 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(80-100)% increased Evasion Rating" }, } }, - ["LocalIncreasedEvasionRatingPercentUniqueBootsDexInt1"] = { affix = "", "(80-120)% increased Evasion Rating", statOrder = { 1550 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(80-120)% increased Evasion Rating" }, } }, - ["LocalIncreasedEvasionRatingPercentUniqueGlovesDex1"] = { affix = "", "+(40-50) to Evasion Rating", statOrder = { 1548 }, level = 1, group = "LocalEvasionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(40-50) to Evasion Rating" }, } }, - ["LocalIncreasedEvasionRatingPercentUniqueGlovesStrDex1"] = { affix = "", "(60-100)% increased Evasion Rating", statOrder = { 1550 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(60-100)% increased Evasion Rating" }, } }, - ["LocalIncreasedEvasionRatingPercentUniqueShieldDex1"] = { affix = "", "(60-100)% increased Evasion Rating", statOrder = { 1550 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(60-100)% increased Evasion Rating" }, } }, - ["LocalIncreasedEvasionRatingPercentUniqueBootsDex1"] = { affix = "", "(80-100)% increased Evasion Rating", statOrder = { 1550 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(80-100)% increased Evasion Rating" }, } }, - ["LocalIncreasedEvasionRatingPercentUniqueBootsDex3"] = { affix = "", "(100-150)% increased Evasion Rating", statOrder = { 1550 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(100-150)% increased Evasion Rating" }, } }, - ["LocalIncreasedEvasionRatingPercentUniqueBodyDex2"] = { affix = "", "(100-150)% increased Evasion Rating", statOrder = { 1550 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(100-150)% increased Evasion Rating" }, } }, - ["LocalIncreasedEvasionRatingPercentUniqueBodyDex3"] = { affix = "", "(80-100)% increased Evasion Rating", statOrder = { 1550 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(80-100)% increased Evasion Rating" }, } }, - ["LocalIncreasedEvasionRatingPercentUniqueBodyDex4"] = { affix = "", "(50-70)% increased Evasion Rating", statOrder = { 1550 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(50-70)% increased Evasion Rating" }, } }, - ["LocalIncreasedEvasionRatingPercentUniqueHelmetDex3"] = { affix = "", "+(30-50) to Evasion Rating", statOrder = { 1548 }, level = 1, group = "LocalEvasionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(30-50) to Evasion Rating" }, } }, - ["LocalIncreasedEvasionRatingPercentUniqueShieldDex3"] = { affix = "", "(180-200)% increased Evasion Rating", statOrder = { 1550 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(180-200)% increased Evasion Rating" }, } }, - ["LocalIncreasedEvasionRatingPercentUniqueGlovesDex2"] = { affix = "", "(60-80)% increased Evasion Rating", statOrder = { 1550 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(60-80)% increased Evasion Rating" }, } }, - ["LocalIncreasedEvasionRatingPercentUniqueHelmetDex5"] = { affix = "", "(80-100)% increased Evasion Rating", statOrder = { 1550 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(80-100)% increased Evasion Rating" }, } }, - ["LocalIncreasedEvasionRatingPercentUniqueBodyDex5"] = { affix = "", "(200-250)% increased Evasion Rating", statOrder = { 1550 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(200-250)% increased Evasion Rating" }, } }, - ["LocalIncreasedEvasionRatingPercentUniqueGlovesStrDex3"] = { affix = "", "+(35-45) to Evasion Rating", statOrder = { 1548 }, level = 1, group = "LocalEvasionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(35-45) to Evasion Rating" }, } }, - ["LocalIncreasedEvasionRatingPercentUniqueHelmetDex6"] = { affix = "", "150% increased Evasion Rating", statOrder = { 1550 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "150% increased Evasion Rating" }, } }, - ["LocalIncreasedEvasionRatingUniqueBodyDex6"] = { affix = "", "+(240-380) to Evasion Rating", statOrder = { 1548 }, level = 1, group = "LocalEvasionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(240-380) to Evasion Rating" }, } }, - ["LocalIncreasedEvasionRatingPercentUniqueBodyDex6"] = { affix = "", "(200-240)% increased Evasion Rating", statOrder = { 1550 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(200-240)% increased Evasion Rating" }, } }, - ["LocalIncreasedEvasionRatingPercentUniqueBootsDex5"] = { affix = "", "+(20-30) to Evasion Rating", statOrder = { 1548 }, level = 1, group = "LocalEvasionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(20-30) to Evasion Rating" }, } }, - ["LocalIncreasedArmourAndEvasionRatingUniqueBodyStrDex3"] = { affix = "", "(180-220)% increased Armour and Evasion", statOrder = { 1553 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(180-220)% increased Armour and Evasion" }, } }, - ["LocalIncreasedArmourAndEvasionRatingUnique__1"] = { affix = "", "(300-400)% increased Armour and Evasion", statOrder = { 1553 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(300-400)% increased Armour and Evasion" }, } }, - ["LocalIncreasedEvasionRatingPercentUniqueBootsDex6"] = { affix = "", "(160-200)% increased Evasion Rating", statOrder = { 1550 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(160-200)% increased Evasion Rating" }, } }, - ["LocalIncreasedEvasionRatingPercentUniqueBootsStrDex4"] = { affix = "", "+(40-60) to Evasion Rating", statOrder = { 1548 }, level = 1, group = "LocalEvasionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(40-60) to Evasion Rating" }, } }, - ["LocalIncreasedEvasionRatingUniqueBodyDex7"] = { affix = "", "+(120-180) to Evasion Rating", statOrder = { 1548 }, level = 1, group = "LocalEvasionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(120-180) to Evasion Rating" }, } }, - ["LocalIncreasedEvasionRatingUnique__1"] = { affix = "", "+(100-150) to Evasion Rating", statOrder = { 1548 }, level = 1, group = "LocalEvasionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(100-150) to Evasion Rating" }, } }, - ["LocalIncreasedEvasionRatingUnique__2"] = { affix = "", "+(600-700) to Evasion Rating", statOrder = { 1548 }, level = 1, group = "LocalEvasionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(600-700) to Evasion Rating" }, } }, - ["LocalIncreasedEvasionRatingUnique__3"] = { affix = "", "+(400-500) to Evasion Rating", statOrder = { 1548 }, level = 1, group = "LocalEvasionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(400-500) to Evasion Rating" }, } }, - ["LocalIncreasedEvasionRatingUnique__4"] = { affix = "", "+(350-500) to Evasion Rating", statOrder = { 1548 }, level = 1, group = "LocalEvasionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(350-500) to Evasion Rating" }, } }, - ["LocalIncreasedEvasionRatingUnique__5"] = { affix = "", "+(80-120) to Evasion Rating", statOrder = { 1548 }, level = 1, group = "LocalEvasionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(80-120) to Evasion Rating" }, } }, - ["LocalIncreasedEvasionRatingPercentUniqueShieldDex4"] = { affix = "", "(30-50)% increased Evasion Rating", statOrder = { 1550 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(30-50)% increased Evasion Rating" }, } }, - ["LocalIncreasedEvasionRatingPercentUniqueGlovesDexInt5"] = { affix = "", "(150-180)% increased Evasion Rating", statOrder = { 1550 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(150-180)% increased Evasion Rating" }, } }, - ["LocalIncreasedEvasionRatingPercentUniqueBootsDex7"] = { affix = "", "180% increased Evasion Rating", statOrder = { 1550 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "180% increased Evasion Rating" }, } }, - ["LocalIncreasedEvasionRatingPercentUniqueBodyStrDexInt1c"] = { affix = "", "(380-420)% increased Evasion Rating", statOrder = { 1550 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(380-420)% increased Evasion Rating" }, } }, - ["LocalIncreasedEvasionRatingPercentUniqueShieldDex5"] = { affix = "", "(100-120)% increased Evasion Rating", statOrder = { 1550 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(100-120)% increased Evasion Rating" }, } }, - ["LocalIncreasedEvasionRatingPercentUniqueBodyStrDex5"] = { affix = "", "(100-120)% increased Evasion Rating", statOrder = { 1550 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(100-120)% increased Evasion Rating" }, } }, - ["LocalIncreasedEvasionRatingPercentUniqueBootsStrDex5"] = { affix = "", "(100-150)% increased Evasion Rating", statOrder = { 1550 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(100-150)% increased Evasion Rating" }, } }, - ["LocalIncreasedEvationRatingPercentUniqueBootsDex9"] = { affix = "", "(20-40)% increased Evasion Rating", statOrder = { 1550 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(20-40)% increased Evasion Rating" }, } }, - ["LocalIncreasedEvasionRatingPercentUnique__1"] = { affix = "", "(160-220)% increased Evasion Rating", statOrder = { 1550 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(160-220)% increased Evasion Rating" }, } }, - ["LocalIncreasedEvasionRatingPercentUnique__2"] = { affix = "", "(150-200)% increased Evasion Rating", statOrder = { 1550 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(150-200)% increased Evasion Rating" }, } }, - ["LocalIncreasedEvasionRatingPercentUnique__3"] = { affix = "", "(100-120)% increased Evasion Rating", statOrder = { 1550 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(100-120)% increased Evasion Rating" }, } }, - ["LocalIncreasedEvasionRatingPercentUnique__4"] = { affix = "", "(150-200)% increased Evasion Rating", statOrder = { 1550 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(150-200)% increased Evasion Rating" }, } }, - ["LocalIncreasedEvasionRatingPercentUnique__5"] = { affix = "", "(80-100)% increased Evasion Rating", statOrder = { 1550 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(80-100)% increased Evasion Rating" }, } }, - ["LocalIncreasedEvasionRatingPercentUnique__6"] = { affix = "", "(300-340)% increased Evasion Rating", statOrder = { 1550 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(300-340)% increased Evasion Rating" }, } }, - ["LocalIncreasedEvasionRatingPercentUnique__7"] = { affix = "", "(100-130)% increased Evasion Rating", statOrder = { 1550 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(100-130)% increased Evasion Rating" }, } }, - ["LocalIncreasedEvasionRatingPercentUnique__8"] = { affix = "", "(80-100)% increased Evasion Rating", statOrder = { 1550 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(80-100)% increased Evasion Rating" }, } }, - ["LocalIncreasedEvasionRatingPercentUnique__9"] = { affix = "", "(130-150)% increased Evasion Rating", statOrder = { 1550 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(130-150)% increased Evasion Rating" }, } }, - ["LocalIncreasedEvasionRatingPercentUnique__10"] = { affix = "", "(100-120)% increased Evasion Rating", statOrder = { 1550 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(100-120)% increased Evasion Rating" }, } }, - ["LocalIncreasedEvasionRatingPercentUnique__11"] = { affix = "", "(450-500)% increased Evasion Rating", statOrder = { 1550 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(450-500)% increased Evasion Rating" }, } }, - ["LocalIncreasedEvasionRatingPercentUnique__12"] = { affix = "", "(60-80)% increased Evasion Rating", statOrder = { 1550 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(60-80)% increased Evasion Rating" }, } }, - ["LocalIncreasedEvasionRatingPercentUnique__13"] = { affix = "", "(110-150)% increased Evasion Rating", statOrder = { 1550 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(110-150)% increased Evasion Rating" }, } }, - ["LocalIncreasedEvasionRatingPercentUnique__14"] = { affix = "", "(120-150)% increased Evasion Rating", statOrder = { 1550 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(120-150)% increased Evasion Rating" }, } }, - ["LocalIncreasedEvasionRatingPercentUnique__15_"] = { affix = "", "(60-80)% increased Evasion Rating", statOrder = { 1550 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(60-80)% increased Evasion Rating" }, } }, - ["LocalIncreasedEvasionRatingPercentUnique__16"] = { affix = "", "(60-120)% increased Evasion Rating", statOrder = { 1550 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(60-120)% increased Evasion Rating" }, } }, - ["LocalIncreasedEvasionRatingPercentUnique__17"] = { affix = "", "(120-150)% increased Evasion Rating", statOrder = { 1550 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(120-150)% increased Evasion Rating" }, } }, - ["LocalIncreasedEvasionRatingPercentUnique__18"] = { affix = "", "(170-250)% increased Evasion Rating", statOrder = { 1550 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(170-250)% increased Evasion Rating" }, } }, - ["LocalIncreasedEvasionRatingPercentUnique__19"] = { affix = "", "(60-100)% increased Evasion Rating", statOrder = { 1550 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(60-100)% increased Evasion Rating" }, } }, - ["LocalIncreasedEvasionRatingPercentUnique__20"] = { affix = "", "(100-150)% increased Evasion Rating", statOrder = { 1550 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(100-150)% increased Evasion Rating" }, } }, - ["LocalIncreasedEvasionRatingPercentUnique__21"] = { affix = "", "(100-150)% increased Evasion Rating", statOrder = { 1550 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(100-150)% increased Evasion Rating" }, } }, - ["LocalIncreasedArmourAndEnergyShieldUniqueBodyStrInt1"] = { affix = "", "(100-150)% increased Armour and Energy Shield", statOrder = { 1552 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(100-150)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEnergyShieldUniqueHelmetStrInt1"] = { affix = "", "(100-150)% increased Armour and Energy Shield", statOrder = { 1552 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(100-150)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEnergyShieldUniqueHelmetStrInt2"] = { affix = "", "(120-150)% increased Armour and Energy Shield", statOrder = { 1552 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(120-150)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEnergyShieldUniqueBootsStrInt1"] = { affix = "", "(20-60)% increased Armour and Energy Shield", statOrder = { 1552 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(20-60)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEnergyShieldUniqueBodyStrInt2"] = { affix = "", "(180-220)% increased Armour and Energy Shield", statOrder = { 1552 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(180-220)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEnergyShieldUniqueShieldStrInt3"] = { affix = "", "(80-120)% increased Armour and Energy Shield", statOrder = { 1552 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(80-120)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEnergyShieldUniqueShieldStrInt4"] = { affix = "", "(300-400)% increased Armour and Energy Shield", statOrder = { 1552 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(300-400)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEnergyShieldUniqueShieldStrInt5"] = { affix = "", "(240-300)% increased Armour and Energy Shield", statOrder = { 1552 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(240-300)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEnergyShieldUniqueBodyStrInt3"] = { affix = "", "(140-160)% increased Armour and Energy Shield", statOrder = { 1552 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(140-160)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEnergyShieldUniqueBodyStrInt4"] = { affix = "", "(120-140)% increased Armour and Energy Shield", statOrder = { 1552 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(120-140)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEnergyShieldUniqueShieldStrInt6"] = { affix = "", "(140-180)% increased Armour and Energy Shield", statOrder = { 1552 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(140-180)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEnergyShieldUniqueBodyStrDexInt1e"] = { affix = "", "(200-220)% increased Armour and Energy Shield", statOrder = { 1552 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(200-220)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEnergyShieldUniqueBodyStrDexInt1h"] = { affix = "", "(200-220)% increased Armour and Energy Shield", statOrder = { 1552 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(200-220)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEnergyShieldUniqueBodyStrInt5"] = { affix = "", "(220-240)% increased Armour and Energy Shield", statOrder = { 1552 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(220-240)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEnergyShieldUniqueBootsStrInt3"] = { affix = "", "(160-180)% increased Armour and Energy Shield", statOrder = { 1552 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(160-180)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEnergySheildUniqueGlovesStrInt2"] = { affix = "", "(150-180)% increased Armour and Energy Shield", statOrder = { 1552 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(150-180)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEnergyShieldUniqueHelmetStrInt5"] = { affix = "", "(60-100)% increased Armour and Energy Shield", statOrder = { 1552 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(60-100)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEnergyShieldUniqueHelmetStrInt6"] = { affix = "", "(70-80)% increased Armour and Energy Shield", statOrder = { 1552 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(70-80)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEnergyShieldUnique__1"] = { affix = "", "(400-500)% increased Armour and Energy Shield", statOrder = { 1552 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(400-500)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEnergyShieldUniqueBodyStrInt6"] = { affix = "", "(150-170)% increased Armour and Energy Shield", statOrder = { 1552 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(150-170)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEnergyShieldUniqueBodyStrInt7"] = { affix = "", "(150-170)% increased Armour and Energy Shield", statOrder = { 1552 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(150-170)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEnergyShieldUnique__2"] = { affix = "", "(50-75)% increased Armour and Energy Shield", statOrder = { 1552 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(50-75)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEnergyShieldUnique__3"] = { affix = "", "(140-190)% increased Armour and Energy Shield", statOrder = { 1552 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(140-190)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEnergyShieldUnique__4"] = { affix = "", "200% increased Armour and Energy Shield", statOrder = { 1552 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "200% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEnergyShieldUnique__5"] = { affix = "", "(80-120)% increased Armour and Energy Shield", statOrder = { 1552 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(80-120)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEnergyShieldUnique__6"] = { affix = "", "(240-300)% increased Armour and Energy Shield", statOrder = { 1552 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(240-300)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEnergyShieldUnique__7"] = { affix = "", "(60-140)% increased Armour and Energy Shield", statOrder = { 1552 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(60-140)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEnergyShieldUnique__8"] = { affix = "", "(200-250)% increased Armour and Energy Shield", statOrder = { 1552 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(200-250)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEnergyShieldUnique__9_"] = { affix = "", "(140-180)% increased Armour and Energy Shield", statOrder = { 1552 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(140-180)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEnergyShieldUnique__10_"] = { affix = "", "(140-180)% increased Armour and Energy Shield", statOrder = { 1552 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(140-180)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEnergyShieldUnique__11"] = { affix = "", "(150-190)% increased Armour and Energy Shield", statOrder = { 1552 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(150-190)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEnergyShieldUnique__12"] = { affix = "", "(140-220)% increased Armour and Energy Shield", statOrder = { 1552 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(140-220)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEnergyShieldUnique__13_"] = { affix = "", "(150-200)% increased Armour and Energy Shield", statOrder = { 1552 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(150-200)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEnergyShieldUnique__14"] = { affix = "", "(250-300)% increased Armour and Energy Shield", statOrder = { 1552 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(250-300)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEnergyShieldUnique__15"] = { affix = "", "(150-200)% increased Armour and Energy Shield", statOrder = { 1552 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(150-200)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEnergyShieldUnique__16"] = { affix = "", "(80-120)% increased Armour and Energy Shield", statOrder = { 1552 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(80-120)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEnergyShieldUnique__17_"] = { affix = "", "(100-140)% increased Armour and Energy Shield", statOrder = { 1552 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(100-140)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEnergyShieldUnique__18_"] = { affix = "", "(200-250)% increased Armour and Energy Shield", statOrder = { 1552 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(200-250)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEnergyShieldUnique__19"] = { affix = "", "333% increased Armour and Energy Shield", statOrder = { 1552 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "333% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEnergyShieldUnique__20"] = { affix = "", "(150-200)% increased Armour and Energy Shield", statOrder = { 1552 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(150-200)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEnergyShieldUnique__21"] = { affix = "", "(150-200)% increased Armour and Energy Shield", statOrder = { 1552 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(150-200)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEnergyShieldUnique__22"] = { affix = "", "1000% increased Armour and Energy Shield", statOrder = { 1552 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "1000% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEnergyShieldUnique__23_"] = { affix = "", "(70-130)% increased Armour and Energy Shield", statOrder = { 1552 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(70-130)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEnergyShieldUnique__24"] = { affix = "", "(120-160)% increased Armour and Energy Shield", statOrder = { 1552 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(120-160)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEnergyShieldUnique__25"] = { affix = "", "(150-200)% increased Armour and Energy Shield", statOrder = { 1552 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(150-200)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEnergyShieldUnique__26"] = { affix = "", "(150-250)% increased Armour and Energy Shield", statOrder = { 1552 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(150-250)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEnergyShieldUnique__27"] = { affix = "", "(80-120)% increased Armour and Energy Shield", statOrder = { 1552 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(80-120)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEnergyShieldUnique__28"] = { affix = "", "(50-70)% increased Armour and Energy Shield", statOrder = { 1552 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(50-70)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEnergyShieldUnique__30"] = { affix = "", "(40-80)% increased Armour and Energy Shield", statOrder = { 1552 }, level = 97, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(40-80)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEvasionUniqueStrDexHelmet1"] = { affix = "", "(40-60)% increased Armour and Evasion", statOrder = { 1553 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(40-60)% increased Armour and Evasion" }, } }, - ["LocalIncreasedArmourAndEvasionUniqueGlovesStrDex2"] = { affix = "", "(40-60)% increased Armour and Evasion", statOrder = { 1553 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(40-60)% increased Armour and Evasion" }, } }, - ["LocalIncreasedArmourAndEvasionUniqueShieldStrDex1"] = { affix = "", "(200-250)% increased Armour and Evasion", statOrder = { 1553 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(200-250)% increased Armour and Evasion" }, } }, - ["LocalIncreasedArmourAndEvasionUniqueHelmetStrDex2"] = { affix = "", "(150-200)% increased Armour and Evasion", statOrder = { 1553 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(150-200)% increased Armour and Evasion" }, } }, - ["LocalIncreasedArmourAndEvasionUniqueHelmetStrDex4"] = { affix = "", "(200-300)% increased Armour and Evasion", statOrder = { 1553 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(200-300)% increased Armour and Evasion" }, } }, - ["LocalIncreasedArmourAndEvasionUniqueBootsStrDex3"] = { affix = "", "(60-100)% increased Armour and Evasion", statOrder = { 1553 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(60-100)% increased Armour and Evasion" }, } }, - ["LocalIncreasedArmourAndEvasionUniqueBodyStrDex2"] = { affix = "", "(90-120)% increased Armour and Evasion", statOrder = { 1553 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(90-120)% increased Armour and Evasion" }, } }, - ["LocalIncreasedArmourAndEvasionUniqueHelmetStrDex5"] = { affix = "", "(60-80)% increased Armour and Evasion", statOrder = { 1553 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(60-80)% increased Armour and Evasion" }, } }, - ["LocalIncreasedArmourAndEvasionUniqueGlovesStrDex4"] = { affix = "", "(120-140)% increased Armour and Evasion", statOrder = { 1553 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(120-140)% increased Armour and Evasion" }, } }, - ["LocalIncreasedArmourAndEvasionUniqueBodyStrDexInt1b"] = { affix = "", "(200-220)% increased Armour and Evasion", statOrder = { 1553 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(200-220)% increased Armour and Evasion" }, } }, - ["LocalIncreasedArmourAndEvasionUniqueBodyStrDex4"] = { affix = "", "(160-200)% increased Armour and Evasion", statOrder = { 1553 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(160-200)% increased Armour and Evasion" }, } }, - ["LocalIncreasedArmourAndEvasionUniqueGlovesStrDex5"] = { affix = "", "(80-120)% increased Armour and Evasion", statOrder = { 1553 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(80-120)% increased Armour and Evasion" }, } }, - ["LocalIncreasedArmourAndEvasionUniqueBodyStrDex5"] = { affix = "", "(80-120)% increased Armour and Evasion", statOrder = { 1553 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(80-120)% increased Armour and Evasion" }, } }, - ["LocalIncreasedArmourAndEvasionUniqueGlovesStrDex6"] = { affix = "", "(90-110)% increased Armour and Evasion", statOrder = { 1553 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(90-110)% increased Armour and Evasion" }, } }, - ["LocalIncreasedArmourAndEvasionUniqueShieldStrDex3"] = { affix = "", "(90-130)% increased Armour and Evasion", statOrder = { 1553 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(90-130)% increased Armour and Evasion" }, } }, - ["LocalIncreasedArmourAndEvasionUniqueShieldStrDex4"] = { affix = "", "(100-150)% increased Armour and Evasion", statOrder = { 1553 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(100-150)% increased Armour and Evasion" }, } }, - ["LocalIncreasedArmourAndEvasionUniqueShieldStrDex5"] = { affix = "", "(170-250)% increased Armour and Evasion", statOrder = { 1553 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(170-250)% increased Armour and Evasion" }, } }, - ["LocalIncreasedArmourAndEvasionUnique__1"] = { affix = "", "(120-160)% increased Armour and Evasion", statOrder = { 1553 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(120-160)% increased Armour and Evasion" }, } }, - ["LocalIncreasedArmourAndEvasionUnique__2"] = { affix = "", "(80-100)% increased Armour and Evasion", statOrder = { 1553 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(80-100)% increased Armour and Evasion" }, } }, - ["LocalIncreasedArmourAndEvasionUnique__3_"] = { affix = "", "(40-70)% increased Armour and Evasion", statOrder = { 1553 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(40-70)% increased Armour and Evasion" }, } }, - ["LocalIncreasedArmourAndEvasionUnique__4"] = { affix = "", "(200-250)% increased Armour and Evasion", statOrder = { 1553 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(200-250)% increased Armour and Evasion" }, } }, - ["LocalIncreasedArmourAndEvasionUnique__5_"] = { affix = "", "(120-150)% increased Armour and Evasion", statOrder = { 1553 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(120-150)% increased Armour and Evasion" }, } }, - ["LocalIncreasedArmourAndEvasionUnique__6"] = { affix = "", "(100-150)% increased Armour and Evasion", statOrder = { 1553 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(100-150)% increased Armour and Evasion" }, } }, - ["LocalIncreasedArmourAndEvasionUnique__7"] = { affix = "", "(100-150)% increased Armour and Evasion", statOrder = { 1553 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(100-150)% increased Armour and Evasion" }, } }, - ["LocalIncreasedArmourAndEvasionUnique__8_"] = { affix = "", "(100-140)% increased Armour and Evasion", statOrder = { 1553 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(100-140)% increased Armour and Evasion" }, } }, - ["LocalIncreasedArmourAndEvasionUnique__9"] = { affix = "", "(170-200)% increased Armour and Evasion", statOrder = { 1553 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(170-200)% increased Armour and Evasion" }, } }, - ["LocalIncreasedArmourAndEvasionUnique__10_"] = { affix = "", "(80-100)% increased Armour and Evasion", statOrder = { 1553 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(80-100)% increased Armour and Evasion" }, } }, - ["LocalIncreasedArmourAndEvasionUnique__11"] = { affix = "", "(120-150)% increased Armour and Evasion", statOrder = { 1553 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(120-150)% increased Armour and Evasion" }, } }, - ["LocalIncreasedArmourAndEvasionUnique__12"] = { affix = "", "(100-150)% increased Armour and Evasion", statOrder = { 1553 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(100-150)% increased Armour and Evasion" }, } }, - ["LocalIncreasedArmourAndEvasionUnique__13"] = { affix = "", "(150-300)% increased Armour and Evasion", statOrder = { 1553 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(150-300)% increased Armour and Evasion" }, } }, - ["LocalIncreasedArmourAndEvasionUnique__14"] = { affix = "", "(100-150)% increased Armour and Evasion", statOrder = { 1553 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(100-150)% increased Armour and Evasion" }, } }, - ["LocalIncreasedArmourAndEvasionUnique__15_"] = { affix = "", "(120-150)% increased Armour and Evasion", statOrder = { 1553 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(120-150)% increased Armour and Evasion" }, } }, - ["LocalIncreasedArmourAndEvasionUnique__16__"] = { affix = "", "(300-400)% increased Armour and Evasion", statOrder = { 1553 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(300-400)% increased Armour and Evasion" }, } }, - ["LocalIncreasedArmourAndEvasionUnique__17_"] = { affix = "", "(150-200)% increased Armour and Evasion", statOrder = { 1553 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(150-200)% increased Armour and Evasion" }, } }, - ["LocalIncreasedArmourAndEvasionUnique__18"] = { affix = "", "(200-300)% increased Armour and Evasion", statOrder = { 1553 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(200-300)% increased Armour and Evasion" }, } }, - ["LocalIncreasedArmourAndEvasionUnique__19_"] = { affix = "", "(100-150)% increased Armour and Evasion", statOrder = { 1553 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(100-150)% increased Armour and Evasion" }, } }, - ["LocalIncreasedArmourAndEvasionUnique__20"] = { affix = "", "(200-250)% increased Armour and Evasion", statOrder = { 1553 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(200-250)% increased Armour and Evasion" }, } }, - ["LocalIncreasedArmourAndEvasionUnique__21"] = { affix = "", "(60-100)% increased Armour and Evasion", statOrder = { 1553 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(60-100)% increased Armour and Evasion" }, } }, - ["LocalIncreasedArmourAndEvasionUnique__22"] = { affix = "", "(100-150)% increased Armour and Evasion", statOrder = { 1553 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(100-150)% increased Armour and Evasion" }, } }, - ["LocalIncreasedArmourAndEvasionUnique__23"] = { affix = "", "(80-120)% increased Armour and Evasion", statOrder = { 1553 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(80-120)% increased Armour and Evasion" }, } }, - ["LocalIncreasedArmourAndEvasionUnique__24"] = { affix = "", "(100-150)% increased Armour and Evasion", statOrder = { 1553 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(100-150)% increased Armour and Evasion" }, } }, - ["LocalIncreasedArmourAndEvasionUnique__25"] = { affix = "", "(60-100)% increased Armour and Evasion", statOrder = { 1553 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(60-100)% increased Armour and Evasion" }, } }, - ["LocalIncreasedArmourAndEvasionUnique__26"] = { affix = "", "(100-150)% increased Armour and Evasion", statOrder = { 1553 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(100-150)% increased Armour and Evasion" }, } }, - ["LocalIncreasedArmourAndEvasionUnique__27"] = { affix = "", "(80-120)% increased Armour and Evasion", statOrder = { 1553 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(80-120)% increased Armour and Evasion" }, } }, - ["LocalIncreasedArmourAndEvasionUnique__28"] = { affix = "", "(160-200)% increased Armour and Evasion", statOrder = { 1553 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(160-200)% increased Armour and Evasion" }, } }, - ["LocalIncreasedEvasionAndEnergyShieldUniqueBodyDexInt1"] = { affix = "", "(120-150)% increased Evasion and Energy Shield", statOrder = { 1554 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(120-150)% increased Evasion and Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShieldUniqueHelmetDexInt3"] = { affix = "", "(120-150)% increased Evasion and Energy Shield", statOrder = { 1554 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(120-150)% increased Evasion and Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShieldUniqueBodyDexInt2"] = { affix = "", "(300-400)% increased Evasion and Energy Shield", statOrder = { 1554 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(300-400)% increased Evasion and Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShieldUniqueBodyStrDexInt1d"] = { affix = "", "(200-220)% increased Evasion and Energy Shield", statOrder = { 1554 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(200-220)% increased Evasion and Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShieldUniqueBodyStrDexInt1f"] = { affix = "", "(200-220)% increased Evasion and Energy Shield", statOrder = { 1554 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(200-220)% increased Evasion and Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShieldUniqueHelmetDexInt5"] = { affix = "", "(245-280)% increased Evasion and Energy Shield", statOrder = { 1554 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(245-280)% increased Evasion and Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShieldUniqueGlovesDexInt6"] = { affix = "", "(100-130)% increased Evasion and Energy Shield", statOrder = { 1554 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(100-130)% increased Evasion and Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShieldUniqueBodyDexInt3"] = { affix = "", "(220-250)% increased Evasion and Energy Shield", statOrder = { 1554 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(220-250)% increased Evasion and Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShieldUniqueBodyDexInt4"] = { affix = "", "(120-150)% increased Evasion and Energy Shield", statOrder = { 1554 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(120-150)% increased Evasion and Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShieldUniqueHelmetDexInt6"] = { affix = "", "(150-200)% increased Evasion and Energy Shield", statOrder = { 1554 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(150-200)% increased Evasion and Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShieldUnique__1"] = { affix = "", "(120-140)% increased Evasion and Energy Shield", statOrder = { 1554 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(120-140)% increased Evasion and Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShieldUnique__2"] = { affix = "", "(90-110)% increased Evasion and Energy Shield", statOrder = { 1554 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(90-110)% increased Evasion and Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShieldUnique__3"] = { affix = "", "(230-260)% increased Evasion and Energy Shield", statOrder = { 1554 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(230-260)% increased Evasion and Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShieldUnique__4"] = { affix = "", "(140-170)% increased Evasion and Energy Shield", statOrder = { 1554 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(140-170)% increased Evasion and Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShieldUnique__5"] = { affix = "", "(140-180)% increased Evasion and Energy Shield", statOrder = { 1554 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(140-180)% increased Evasion and Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShieldUnique__6_"] = { affix = "", "(100-120)% increased Evasion and Energy Shield", statOrder = { 1554 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(100-120)% increased Evasion and Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShieldUnique__7"] = { affix = "", "(130-150)% increased Evasion and Energy Shield", statOrder = { 1554 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(130-150)% increased Evasion and Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShieldUnique__8"] = { affix = "", "(80-100)% increased Evasion and Energy Shield", statOrder = { 1554 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(80-100)% increased Evasion and Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShieldUnique__9"] = { affix = "", "(500-600)% increased Evasion and Energy Shield", statOrder = { 1554 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(500-600)% increased Evasion and Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShieldUnique__10"] = { affix = "", "(150-200)% increased Evasion and Energy Shield", statOrder = { 1554 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(150-200)% increased Evasion and Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShieldUnique__11_"] = { affix = "", "(160-180)% increased Evasion and Energy Shield", statOrder = { 1554 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(160-180)% increased Evasion and Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShieldUnique__12"] = { affix = "", "(180-220)% increased Evasion and Energy Shield", statOrder = { 1554 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(180-220)% increased Evasion and Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShieldUnique__13"] = { affix = "", "(120-170)% increased Evasion and Energy Shield", statOrder = { 1554 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(120-170)% increased Evasion and Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShieldUnique__14"] = { affix = "", "(160-200)% increased Evasion and Energy Shield", statOrder = { 1554 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(160-200)% increased Evasion and Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShieldUnique__15"] = { affix = "", "(260-300)% increased Evasion and Energy Shield", statOrder = { 1554 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(260-300)% increased Evasion and Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShieldUnique__16"] = { affix = "", "(200-250)% increased Evasion and Energy Shield", statOrder = { 1554 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(200-250)% increased Evasion and Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShieldUnique__17"] = { affix = "", "(200-250)% increased Evasion and Energy Shield", statOrder = { 1554 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(200-250)% increased Evasion and Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShieldUnique__18"] = { affix = "", "(100-150)% increased Evasion and Energy Shield", statOrder = { 1554 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(100-150)% increased Evasion and Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShieldUnique__19___"] = { affix = "", "(250-300)% increased Evasion and Energy Shield", statOrder = { 1554 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(250-300)% increased Evasion and Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShieldUnique__20"] = { affix = "", "(300-400)% increased Evasion and Energy Shield", statOrder = { 1554 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(300-400)% increased Evasion and Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShieldUnique__21_"] = { affix = "", "(100-150)% increased Evasion and Energy Shield", statOrder = { 1554 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(100-150)% increased Evasion and Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShieldUnique__22"] = { affix = "", "(140-180)% increased Evasion and Energy Shield", statOrder = { 1554 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(140-180)% increased Evasion and Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShieldUnique__23"] = { affix = "", "(200-250)% increased Evasion and Energy Shield", statOrder = { 1554 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(200-250)% increased Evasion and Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShieldUnique__24"] = { affix = "", "(100-150)% increased Evasion and Energy Shield", statOrder = { 1554 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(100-150)% increased Evasion and Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShieldUnique__25"] = { affix = "", "(400-500)% increased Evasion and Energy Shield", statOrder = { 1554 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(400-500)% increased Evasion and Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShieldUnique__26"] = { affix = "", "(100-150)% increased Evasion and Energy Shield", statOrder = { 1554 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(100-150)% increased Evasion and Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShieldUnique__27"] = { affix = "", "(100-150)% increased Evasion and Energy Shield", statOrder = { 1554 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(100-150)% increased Evasion and Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShieldUnique__28"] = { affix = "", "(80-120)% increased Evasion and Energy Shield", statOrder = { 1554 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(80-120)% increased Evasion and Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShieldUnique__29"] = { affix = "", "(350-400)% increased Evasion and Energy Shield", statOrder = { 1554 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(350-400)% increased Evasion and Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShieldUnique__30_"] = { affix = "", "(400-500)% increased Evasion and Energy Shield", statOrder = { 1554 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(400-500)% increased Evasion and Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShieldUnique__31"] = { affix = "", "(120-200)% increased Evasion and Energy Shield", statOrder = { 1554 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(120-200)% increased Evasion and Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShieldUnique__32_"] = { affix = "", "(160-220)% increased Evasion and Energy Shield", statOrder = { 1554 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(160-220)% increased Evasion and Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShieldUnique__33"] = { affix = "", "(140-160)% increased Evasion and Energy Shield", statOrder = { 1554 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(140-160)% increased Evasion and Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShieldUnique__34"] = { affix = "", "(120-150)% increased Evasion and Energy Shield", statOrder = { 1554 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(120-150)% increased Evasion and Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShieldUnique__35"] = { affix = "", "(150-200)% increased Evasion and Energy Shield", statOrder = { 1554 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(150-200)% increased Evasion and Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShieldUnique__36"] = { affix = "", "(100-150)% increased Evasion and Energy Shield", statOrder = { 1554 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(100-150)% increased Evasion and Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShieldUnique__37"] = { affix = "", "(80-120)% increased Evasion and Energy Shield", statOrder = { 1554 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(80-120)% increased Evasion and Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShieldUnique__39"] = { affix = "", "(120-160)% increased Evasion and Energy Shield", statOrder = { 1554 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(120-160)% increased Evasion and Energy Shield" }, } }, - ["LocalIncreasedArmourEvasionEnergyShieldUnique__1_"] = { affix = "", "(250-350)% increased Armour, Evasion and Energy Shield", statOrder = { 1555 }, level = 1, group = "LocalArmourAndEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion", "energy_shield" }, tradeHashes = { [3523867985] = { "(250-350)% increased Armour, Evasion and Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldPercentAndStunRecoveryUniqueHelmetInt2"] = { affix = "", "+(30-50) to maximum Energy Shield", "(10-15)% increased Stun and Block Recovery", statOrder = { 1559, 1902 }, level = 1, group = "IncreasedEnergyShieldAndStunRecovery", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2511217560] = { "(10-15)% increased Stun and Block Recovery" }, [4052037485] = { "+(30-50) to maximum Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldPercentAndStunRecoveryUniqueBootsInt3"] = { affix = "", "(100-140)% increased Energy Shield", "(150-200)% increased Stun and Block Recovery", statOrder = { 1560, 1902 }, level = 1, group = "LocalEnergyShieldAndStunRecoveryPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(100-140)% increased Energy Shield" }, [2511217560] = { "(150-200)% increased Stun and Block Recovery" }, } }, - ["LocalIncreasedEnergyShieldPercentAndStunRecoveryUnique__1"] = { affix = "", "+(100-120) to maximum Energy Shield", "(30-40)% increased Stun and Block Recovery", statOrder = { 1559, 1902 }, level = 1, group = "IncreasedEnergyShieldAndStunRecovery", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2511217560] = { "(30-40)% increased Stun and Block Recovery" }, [4052037485] = { "+(100-120) to maximum Energy Shield" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingPercentAndStunRecoveryUniqueStrHelmet2"] = { affix = "", "(100-120)% increased Armour", "10% increased Stun and Block Recovery", statOrder = { 1542, 1902 }, level = 1, group = "LocalPhysicalDamageReductionRatingAndStunRecoveryPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(100-120)% increased Armour" }, [2511217560] = { "10% increased Stun and Block Recovery" }, } }, - ["LocalIncreasedArmourPercentAndStunRecoveryUniqueShieldStr1"] = { affix = "", "(180-220)% increased Armour", "20% increased Stun and Block Recovery", statOrder = { 1542, 1902 }, level = 1, group = "LocalPhysicalDamageReductionRatingAndStunRecoveryPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(180-220)% increased Armour" }, [2511217560] = { "20% increased Stun and Block Recovery" }, } }, - ["LocalIncreasedEvasionPercentAndStunRecoveryUniqueDexHelmet1"] = { affix = "", "70% increased Evasion Rating", statOrder = { 1550 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "70% increased Evasion Rating" }, } }, - ["LocalAddedFireDamageUniqueTwoHandAxe1"] = { affix = "", "Adds (16-21) to (32-38) Fire Damage", statOrder = { 1362 }, level = 37, group = "LocalFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (16-21) to (32-38) Fire Damage" }, } }, - ["LocalAddedFireDamageUniqueRapier1"] = { affix = "", "Adds 3 to 7 Fire Damage", statOrder = { 1362 }, level = 1, group = "LocalFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds 3 to 7 Fire Damage" }, } }, - ["LocalAddedFireDamageUniqueBow6"] = { affix = "", "Adds 25 to 50 Fire Damage", statOrder = { 1362 }, level = 1, group = "LocalFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds 25 to 50 Fire Damage" }, } }, - ["LocalAddedFireDamageUniqueOneHandSword3"] = { affix = "", "Adds (49-98) to (101-140) Fire Damage", statOrder = { 1362 }, level = 1, group = "LocalFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (49-98) to (101-140) Fire Damage" }, } }, - ["LocalAddedFireDamageUniqueTwoHandSword6"] = { affix = "", "Adds (425-475) to (550-600) Fire Damage", statOrder = { 1362 }, level = 1, group = "LocalFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (425-475) to (550-600) Fire Damage" }, } }, - ["LocalAddedFireDamageUniqueDescentOneHandMace1"] = { affix = "", "Adds 3 to 6 Fire Damage", statOrder = { 1362 }, level = 1, group = "LocalFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds 3 to 6 Fire Damage" }, } }, - ["LocalAddedFireDamageUniqueStaff13"] = { affix = "", "Adds (10-15) to (20-25) Fire Damage", statOrder = { 1362 }, level = 1, group = "LocalFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (10-15) to (20-25) Fire Damage" }, } }, - ["LocalAddedFireDamageUniqueOneHandAxe7"] = { affix = "", "Adds (5-15) to (20-25) Fire Damage", statOrder = { 1362 }, level = 1, group = "LocalFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (5-15) to (20-25) Fire Damage" }, } }, - ["LocalAddedFireDamageUnique__1"] = { affix = "", "Adds 100 to 100 Fire Damage", statOrder = { 1362 }, level = 1, group = "LocalFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds 100 to 100 Fire Damage" }, } }, - ["LocalAddedFireDamageUnique__2"] = { affix = "", "Adds (20-24) to (38-46) Fire Damage", statOrder = { 1362 }, level = 1, group = "LocalFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (20-24) to (38-46) Fire Damage" }, } }, - ["LocalAddedFireDamageUnique__3"] = { affix = "", "Adds (315-360) to (450-540) Fire Damage", statOrder = { 1362 }, level = 1, group = "LocalFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (315-360) to (450-540) Fire Damage" }, } }, - ["LocalAddedFireDamageUnique__4"] = { affix = "", "Adds (223-250) to (264-280) Fire Damage", statOrder = { 1362 }, level = 1, group = "LocalFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (223-250) to (264-280) Fire Damage" }, } }, - ["LocalAddedFireDamageUnique__5__"] = { affix = "", "Adds (130-160) to (220-240) Fire Damage", statOrder = { 1362 }, level = 1, group = "LocalFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (130-160) to (220-240) Fire Damage" }, } }, - ["LocalAddedFireDamageUnique__6"] = { affix = "", "Adds (30-45) to (60-80) Fire Damage", statOrder = { 1362 }, level = 1, group = "LocalFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (30-45) to (60-80) Fire Damage" }, } }, - ["LocalAddedFireDamageUnique__7"] = { affix = "", "Adds (76-98) to (161-176) Fire Damage", statOrder = { 1362 }, level = 1, group = "LocalFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (76-98) to (161-176) Fire Damage" }, } }, - ["LocalAddedFireDamageUnique__8"] = { affix = "", "Adds (180-230) to (310-360) Fire Damage", statOrder = { 1362 }, level = 1, group = "LocalFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (180-230) to (310-360) Fire Damage" }, } }, - ["LocalAddedFireDamageImplicitE1_"] = { affix = "", "Adds (46-55) to (69-83) Fire Damage", statOrder = { 1362 }, level = 30, group = "LocalFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (46-55) to (69-83) Fire Damage" }, } }, - ["LocalAddedFireDamageImplicitE2_"] = { affix = "", "Adds (80-97) to (126-144) Fire Damage", statOrder = { 1362 }, level = 50, group = "LocalFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (80-97) to (126-144) Fire Damage" }, } }, - ["LocalAddedFireDamageImplicitE3_"] = { affix = "", "Adds (121-133) to (184-197) Fire Damage", statOrder = { 1362 }, level = 70, group = "LocalFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (121-133) to (184-197) Fire Damage" }, } }, - ["LocalAddedColdDamageUniqueTwoHandMace2"] = { affix = "", "Adds 11 to 23 Cold Damage", statOrder = { 1371 }, level = 19, group = "LocalColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds 11 to 23 Cold Damage" }, } }, - ["LocalAddedColdDamageUniqueTwoHandSword2"] = { affix = "", "Adds 35 to 70 Cold Damage", statOrder = { 1371 }, level = 18, group = "LocalColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds 35 to 70 Cold Damage" }, } }, - ["LocalAddedColdDamageUniqueClaw5"] = { affix = "", "Adds 25 to 50 Cold Damage", statOrder = { 1371 }, level = 1, group = "LocalColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds 25 to 50 Cold Damage" }, } }, - ["LocalAddedColdDamageUniqueOneHandSword3"] = { affix = "", "Adds (49-98) to (101-140) Cold Damage", statOrder = { 1371 }, level = 1, group = "LocalColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (49-98) to (101-140) Cold Damage" }, } }, - ["LocalAddedColdDamageUniqueDescentOneHandAxe1"] = { affix = "", "Adds 2 to 4 Cold Damage", statOrder = { 1371 }, level = 1, group = "LocalColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds 2 to 4 Cold Damage" }, } }, - ["LocalAddedColdDamageUniqueOneHandMace4_"] = { affix = "", "Adds (10-20) to (30-50) Cold Damage", statOrder = { 1371 }, level = 1, group = "LocalColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (10-20) to (30-50) Cold Damage" }, } }, - ["LocalAddedColdDamageUniqueStaff13"] = { affix = "", "Adds (10-15) to (20-25) Cold Damage", statOrder = { 1371 }, level = 1, group = "LocalColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (10-15) to (20-25) Cold Damage" }, } }, - ["LocalAddedColdDamageUniqueStaff14"] = { affix = "", "Adds (25-35) to (45-60) Cold Damage", statOrder = { 1371 }, level = 1, group = "LocalColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (25-35) to (45-60) Cold Damage" }, } }, - ["LocalAddedColdDamageUnique__1"] = { affix = "", "Adds 100 to 100 Cold Damage", statOrder = { 1371 }, level = 1, group = "LocalColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds 100 to 100 Cold Damage" }, } }, - ["LocalAddedColdDamageUnique__2"] = { affix = "", "Adds (26-32) to (36-42) Cold Damage", statOrder = { 1371 }, level = 1, group = "LocalColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (26-32) to (36-42) Cold Damage" }, } }, - ["LocalAddedColdDamageUnique__3"] = { affix = "", "Adds (30-38) to (40-50) Cold Damage", statOrder = { 1371 }, level = 1, group = "LocalColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (30-38) to (40-50) Cold Damage" }, } }, - ["LocalAddedColdDamageUnique__4"] = { affix = "", "Adds (180-210) to (240-280) Cold Damage", statOrder = { 1371 }, level = 1, group = "LocalColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (180-210) to (240-280) Cold Damage" }, } }, - ["LocalAddedColdDamageUnique__5"] = { affix = "", "Adds (80-100) to (160-200) Cold Damage", statOrder = { 1371 }, level = 1, group = "LocalColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (80-100) to (160-200) Cold Damage" }, } }, - ["LocalAddedColdDamageUnique__6_"] = { affix = "", "Adds (310-350) to (460-500) Cold Damage", statOrder = { 1371 }, level = 1, group = "LocalColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (310-350) to (460-500) Cold Damage" }, } }, - ["LocalAddedColdDamageUnique__7"] = { affix = "", "Adds (160-190) to (280-320) Cold Damage", statOrder = { 1371 }, level = 1, group = "LocalColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (160-190) to (280-320) Cold Damage" }, } }, - ["LocalAddedColdDamageUnique__8"] = { affix = "", "Adds (130-150) to (270-300) Cold Damage", statOrder = { 1371 }, level = 1, group = "LocalColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (130-150) to (270-300) Cold Damage" }, } }, - ["LocalAddedColdDamageUnique__9_"] = { affix = "", "Adds (385-440) to (490-545) Cold Damage", statOrder = { 1371 }, level = 1, group = "LocalColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (385-440) to (490-545) Cold Damage" }, } }, - ["LocalAddedColdDamageUnique__10"] = { affix = "", "Adds (150-200) to (300-350) Cold Damage", statOrder = { 1371 }, level = 1, group = "LocalColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (150-200) to (300-350) Cold Damage" }, } }, - ["LocalAddedColdDamageUnique__11"] = { affix = "", "Adds (164-204) to (250-300) Cold Damage", statOrder = { 1371 }, level = 1, group = "LocalColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (164-204) to (250-300) Cold Damage" }, } }, - ["LocalAddedLightningDamageUniqueOneHandSword3"] = { affix = "", "Adds 1 to (210-250) Lightning Damage", statOrder = { 1382 }, level = 1, group = "LocalLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds 1 to (210-250) Lightning Damage" }, } }, - ["LocalAddedLightningDamageUniqueBow10"] = { affix = "", "Adds 1 to (600-750) Lightning Damage", statOrder = { 1382 }, level = 1, group = "LocalLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds 1 to (600-750) Lightning Damage" }, } }, - ["LocalAddedLightningDamageUniqueDescentTwoHandSword1_"] = { affix = "", "Adds 1 to 9 Lightning Damage", statOrder = { 1382 }, level = 1, group = "LocalLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds 1 to 9 Lightning Damage" }, } }, - ["LocalAddedLightningDamageUniqueOneHandSword7"] = { affix = "", "Adds 1 to (40-50) Lightning Damage", statOrder = { 1382 }, level = 1, group = "LocalLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds 1 to (40-50) Lightning Damage" }, } }, - ["LocalAddedLightningDamageUniqueStaff14"] = { affix = "", "Adds (1-10) to (70-90) Lightning Damage", statOrder = { 1382 }, level = 1, group = "LocalLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (1-10) to (70-90) Lightning Damage" }, } }, - ["LocalAddedLightningDamageUnique__1"] = { affix = "", "Adds 100 to 100 Lightning Damage", statOrder = { 1382 }, level = 1, group = "LocalLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds 100 to 100 Lightning Damage" }, } }, - ["LocalAddedLightningDamageUnique__2"] = { affix = "", "Adds 1 to (35-45) Lightning Damage", statOrder = { 1382 }, level = 1, group = "LocalLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds 1 to (35-45) Lightning Damage" }, } }, - ["LocalAddedLightningDamageUnique__3"] = { affix = "", "Adds 1 to (45-55) Lightning Damage", statOrder = { 1382 }, level = 1, group = "LocalLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds 1 to (45-55) Lightning Damage" }, } }, - ["LocalAddedLightningDamageUnique__4"] = { affix = "", "Adds 1 to (50-60) Lightning Damage", statOrder = { 1382 }, level = 1, group = "LocalLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds 1 to (50-60) Lightning Damage" }, } }, - ["LocalAddedLightningDamageUnique__5"] = { affix = "", "Adds 1 to (60-70) Lightning Damage", statOrder = { 1382 }, level = 1, group = "LocalLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds 1 to (60-70) Lightning Damage" }, } }, - ["LocalAddedLightningDamageUnique__6"] = { affix = "", "Adds 1 to 75 Lightning Damage", statOrder = { 1382 }, level = 1, group = "LocalLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds 1 to 75 Lightning Damage" }, } }, - ["LocalAddedLightningDamageUnique__7"] = { affix = "", "Adds 1 to (550-600) Lightning Damage", statOrder = { 1382 }, level = 1, group = "LocalLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds 1 to (550-600) Lightning Damage" }, } }, - ["IncreasedEvasionRatingPercentUnique__1_"] = { affix = "", "(60-100)% increased Evasion Rating", statOrder = { 1549 }, level = 1, group = "GlobalEvasionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [2106365538] = { "(60-100)% increased Evasion Rating" }, } }, - ["IncreasedEvasionRatingPercentUnique__2"] = { affix = "", "(15-25)% increased Evasion Rating", statOrder = { 1549 }, level = 1, group = "GlobalEvasionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [2106365538] = { "(15-25)% increased Evasion Rating" }, } }, - ["IncreasedEnergyShieldPercentUnique__1"] = { affix = "", "20% increased maximum Energy Shield", statOrder = { 1561 }, level = 1, group = "GlobalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2482852589] = { "20% increased maximum Energy Shield" }, } }, - ["IncreasedEnergyShieldPercentUnique__3"] = { affix = "", "(6-10)% increased maximum Energy Shield", statOrder = { 1561 }, level = 1, group = "GlobalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2482852589] = { "(6-10)% increased maximum Energy Shield" }, } }, - ["IncreasedEnergyShieldPercentUnique__4"] = { affix = "", "5% increased maximum Energy Shield", statOrder = { 1561 }, level = 1, group = "GlobalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2482852589] = { "5% increased maximum Energy Shield" }, } }, - ["IncreasedEnergyShieldPercentUnique__5"] = { affix = "", "(6-10)% increased maximum Energy Shield", statOrder = { 1561 }, level = 1, group = "GlobalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2482852589] = { "(6-10)% increased maximum Energy Shield" }, } }, - ["IncreasedEnergyShieldPercentUnique__6"] = { affix = "", "20% increased maximum Energy Shield", statOrder = { 1561 }, level = 1, group = "GlobalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2482852589] = { "20% increased maximum Energy Shield" }, } }, - ["ReducedEnergyShieldPercentUniqueAmulet13"] = { affix = "", "50% reduced maximum Energy Shield", statOrder = { 1561 }, level = 20, group = "GlobalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2482852589] = { "50% reduced maximum Energy Shield" }, } }, - ["ReducedEnergyShieldPercentUniqueRing16"] = { affix = "", "25% reduced maximum Energy Shield", statOrder = { 1561 }, level = 1, group = "GlobalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2482852589] = { "25% reduced maximum Energy Shield" }, } }, - ["IncreasedEvasionRatingUniqueQuiver1"] = { affix = "", "+(80-100) to Evasion Rating", statOrder = { 1544 }, level = 1, group = "EvasionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [2144192055] = { "+(80-100) to Evasion Rating" }, } }, - ["IncreasedEvasionRatingUniqueAmulet7"] = { affix = "", "+(100-150) to Evasion Rating", statOrder = { 1544 }, level = 1, group = "EvasionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [2144192055] = { "+(100-150) to Evasion Rating" }, } }, - ["IncreasedEvasionRatingUniqueRapier1"] = { affix = "", "+(20-40) to Evasion Rating", statOrder = { 1544 }, level = 1, group = "EvasionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [2144192055] = { "+(20-40) to Evasion Rating" }, } }, - ["IncreasedEvasionRatingUniqueOneHandSword4"] = { affix = "", "+(400-500) to Evasion Rating", statOrder = { 1544 }, level = 1, group = "EvasionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [2144192055] = { "+(400-500) to Evasion Rating" }, } }, - ["IncreasedEvasionRatingUniqueAmulet17"] = { affix = "", "+(80-100) to Evasion Rating", statOrder = { 1544 }, level = 1, group = "EvasionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [2144192055] = { "+(80-100) to Evasion Rating" }, } }, - ["IncreasedEvasionRatingUniqueQuiver3_"] = { affix = "", "+350 to Evasion Rating", statOrder = { 1544 }, level = 1, group = "EvasionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [2144192055] = { "+350 to Evasion Rating" }, } }, - ["IncreasedEvasionRatingUniqueOneHandSword9"] = { affix = "", "+(180-200) to Evasion Rating", statOrder = { 1544 }, level = 1, group = "EvasionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [2144192055] = { "+(180-200) to Evasion Rating" }, } }, - ["IncreasedEvasionRatingUniqueRing30"] = { affix = "", "+(200-300) to Evasion Rating", statOrder = { 1544 }, level = 1, group = "EvasionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [2144192055] = { "+(200-300) to Evasion Rating" }, } }, - ["IncreasedEvasionRatingUnique___1"] = { affix = "", "+110 to Evasion Rating", statOrder = { 1544 }, level = 1, group = "EvasionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [2144192055] = { "+110 to Evasion Rating" }, } }, - ["IncreasedEvasionRatingUnique__2"] = { affix = "", "+300 to Evasion Rating", statOrder = { 1544 }, level = 1, group = "EvasionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [2144192055] = { "+300 to Evasion Rating" }, } }, - ["IncreasedEvasionRatingUnique__3"] = { affix = "", "+(1000-1500) to Evasion Rating", statOrder = { 1544 }, level = 1, group = "EvasionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [2144192055] = { "+(1000-1500) to Evasion Rating" }, } }, - ["IncreasedEvasionRatingUnique__4"] = { affix = "", "+(300-500) to Evasion Rating", statOrder = { 1544 }, level = 1, group = "EvasionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [2144192055] = { "+(300-500) to Evasion Rating" }, } }, - ["IncreasedEvasionRatingUnique__5_"] = { affix = "", "+(600-700) to Evasion Rating", statOrder = { 1544 }, level = 1, group = "EvasionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [2144192055] = { "+(600-700) to Evasion Rating" }, } }, - ["IncreasedEvasionRatingUnique__6_"] = { affix = "", "+(600-1000) to Evasion Rating", statOrder = { 1544 }, level = 1, group = "EvasionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [2144192055] = { "+(600-1000) to Evasion Rating" }, } }, - ["IncreasedEvasionRatingUnique__7"] = { affix = "", "+(80-100) to Evasion Rating", statOrder = { 1544 }, level = 1, group = "EvasionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [2144192055] = { "+(80-100) to Evasion Rating" }, } }, - ["LocalIncreasedEvasionRatingUniqueBodyInt5"] = { affix = "", "+(30-60) to Evasion Rating", statOrder = { 1548 }, level = 1, group = "LocalEvasionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(30-60) to Evasion Rating" }, } }, - ["LocalIncreasedEvasionRatingUniqueBootsDex8"] = { affix = "", "+(30-50) to Evasion Rating", statOrder = { 1548 }, level = 1, group = "LocalEvasionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(30-50) to Evasion Rating" }, } }, - ["LocalIncreasedEvasionRatingUniqueShieldStrDex2"] = { affix = "", "+(20-40) to Evasion Rating", statOrder = { 1548 }, level = 1, group = "LocalEvasionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(20-40) to Evasion Rating" }, } }, - ["IncreasedPhysicalDamageReductionRatingUniqueRing12"] = { affix = "", "+(260-300) to Armour", statOrder = { 1539 }, level = 1, group = "PhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [809229260] = { "+(260-300) to Armour" }, } }, - ["IncreasedPhysicalDamageReductionRatingUniqueAmulet16"] = { affix = "", "+(400-500) to Armour", statOrder = { 1539 }, level = 1, group = "PhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [809229260] = { "+(400-500) to Armour" }, } }, - ["IncreasedPhysicalDamageReductionRatingUniqueQuiver4"] = { affix = "", "+(400-450) to Armour", statOrder = { 1539 }, level = 1, group = "PhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [809229260] = { "+(400-450) to Armour" }, } }, - ["IncreasedPhysicalDamageReductionRatingUniqueBelt9"] = { affix = "", "+(300-350) to Armour", statOrder = { 1539 }, level = 1, group = "PhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [809229260] = { "+(300-350) to Armour" }, } }, - ["IncreasedPhysicalDamageReductionRatingUnique__1"] = { affix = "", "+(450-500) to Armour", statOrder = { 1539 }, level = 1, group = "PhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [809229260] = { "+(450-500) to Armour" }, } }, - ["IncreasedPhysicalDamageReductionRatingUnique__3"] = { affix = "", "+(400-500) to Armour", statOrder = { 1539 }, level = 1, group = "PhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [809229260] = { "+(400-500) to Armour" }, } }, - ["IncreasedPhysicalDamageReductionRatingUnique__2"] = { affix = "", "+(260-300) to Armour", statOrder = { 1540 }, level = 1, group = "LocalPhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [3484657501] = { "+(260-300) to Armour" }, } }, - ["IncreasedPhysicalDamageReductionRatingUnique__4"] = { affix = "", "+(350-400) to Armour", statOrder = { 1539 }, level = 1, group = "PhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [809229260] = { "+(350-400) to Armour" }, } }, - ["IncreasedPhysicalDamageReductionRatingUnique__5"] = { affix = "", "+(180-200) to Armour", statOrder = { 1539 }, level = 1, group = "PhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [809229260] = { "+(180-200) to Armour" }, } }, - ["IncreasedPhysicalDamageReductionRatingUnique__6_"] = { affix = "", "+(800-1200) to Armour", statOrder = { 1539 }, level = 1, group = "PhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [809229260] = { "+(800-1200) to Armour" }, } }, - ["IncreasedPhysicalDamageReductionRatingUnique__7"] = { affix = "", "+(600-700) to Armour", statOrder = { 1539 }, level = 1, group = "PhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [809229260] = { "+(600-700) to Armour" }, } }, - ["IncreasedPhysicalDamageReductionRatingUnique__8"] = { affix = "", "+(300-500) to Armour", statOrder = { 1539 }, level = 71, group = "PhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [809229260] = { "+(300-500) to Armour" }, } }, - ["IncreasedPhysicalDamageReductionRatingUnique__9"] = { affix = "", "+(80-100) to Armour", statOrder = { 1539 }, level = 1, group = "PhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [809229260] = { "+(80-100) to Armour" }, } }, - ["IncreasedPhysicalDamageReductionRatingUnique__10"] = { affix = "", "+(600-1000) to Armour", statOrder = { 1539 }, level = 1, group = "PhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [809229260] = { "+(600-1000) to Armour" }, } }, - ["IncreasedPhysicalDamageReductionRatingUnique__11"] = { affix = "", "+(200-400) to Armour", statOrder = { 1539 }, level = 98, group = "PhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [809229260] = { "+(200-400) to Armour" }, } }, - ["MovementVelocityMarakethBowImplicit1"] = { affix = "", "6% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "6% increased Movement Speed" }, } }, - ["MovementVelocityMarakethBowImplicit2"] = { affix = "", "10% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "10% increased Movement Speed" }, } }, - ["MovementVelocityImplicitShield1"] = { affix = "", "3% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "3% increased Movement Speed" }, } }, - ["MovementVelocityImplicitShield2"] = { affix = "", "6% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "6% increased Movement Speed" }, } }, - ["MovementVelocityImplicitShield3"] = { affix = "", "9% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "9% increased Movement Speed" }, } }, - ["MovementVelocityUniqueTwoHandSword1"] = { affix = "", "10% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "10% increased Movement Speed" }, } }, - ["MovementVelocityUniqueAmulet5"] = { affix = "", "10% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "10% increased Movement Speed" }, } }, - ["MovementVelocityUniqueIntHelmet2"] = { affix = "", "5% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "5% increased Movement Speed" }, } }, - ["MovementVelocityUniqueBootsInt1"] = { affix = "", "(10-25)% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "(10-25)% increased Movement Speed" }, } }, - ["MovementVelocityUniqueBootsStrDex1"] = { affix = "", "20% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "20% increased Movement Speed" }, } }, - ["MovementVelocityUniqueBootsInt2"] = { affix = "", "20% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "20% increased Movement Speed" }, } }, - ["MovementVelocityUniqueBootsDexInt1"] = { affix = "", "20% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "20% increased Movement Speed" }, } }, - ["MovementVelocityUniqueBootsStr1"] = { affix = "", "20% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "20% increased Movement Speed" }, } }, - ["MovementVelocityUniqueGlovesStrDex2"] = { affix = "", "5% reduced Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "5% reduced Movement Speed" }, } }, - ["MovementVelocityUniqueShieldStr1"] = { affix = "", "5% reduced Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "5% reduced Movement Speed" }, } }, - ["MovementVelocityImplicitArmour1"] = { affix = "", "3% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "3% increased Movement Speed" }, } }, - ["MovementVelocityUniqueTwoHandSword3"] = { affix = "", "10% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "10% increased Movement Speed" }, } }, - ["MovementVelocityUniqueHelmetStrDex2"] = { affix = "", "20% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "20% increased Movement Speed" }, } }, - ["MovementVelocityUniqueTwoHandMace3"] = { affix = "", "10% reduced Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "10% reduced Movement Speed" }, } }, - ["MovementVelocityUniqueBootsDex1"] = { affix = "", "30% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "30% increased Movement Speed" }, } }, - ["MovementVelocityUniqueBootsDex2"] = { affix = "", "10% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "10% increased Movement Speed" }, } }, - ["MovementVelocityUniqueBootsInt4"] = { affix = "", "(5-15)% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "(5-15)% increased Movement Speed" }, } }, - ["MovementVelocityUniqueBow7"] = { affix = "", "10% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "10% increased Movement Speed" }, } }, - ["MovementVelocityUniqueBodyDex4"] = { affix = "", "10% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "10% increased Movement Speed" }, } }, - ["MovementVelocityUniqueHelmetStrDex1"] = { affix = "", "10% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "10% increased Movement Speed" }, } }, - ["MovementVelocityUniqueClaw3"] = { affix = "", "5% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "5% increased Movement Speed" }, } }, - ["MovementVelocityUniqueBodyDex5"] = { affix = "", "10% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "10% increased Movement Speed" }, } }, - ["MovementVelocityUniqueBootsInt5"] = { affix = "", "20% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "20% increased Movement Speed" }, } }, - ["MovementVelocityUniqueHelmetDex6"] = { affix = "", "10% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "10% increased Movement Speed" }, } }, - ["MovementVelocityUniqueHelmetInt6"] = { affix = "", "10% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "10% increased Movement Speed" }, } }, - ["MovementVeolcityUniqueAmulet12"] = { affix = "", "(10-15)% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "(10-15)% increased Movement Speed" }, } }, - ["MovementVeolcityUniqueBootsDex4"] = { affix = "", "20% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "20% increased Movement Speed" }, } }, - ["MovementVeolcityUniqueBodyDex6"] = { affix = "", "25% reduced Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "25% reduced Movement Speed" }, } }, - ["MovementVeolcityUniqueBootsDemigods1"] = { affix = "", "20% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "20% increased Movement Speed" }, } }, - ["MovementVelocityUnique___6"] = { affix = "", "50% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "50% increased Movement Speed" }, } }, - ["MovementVelocityUniqueBootsDexInt2"] = { affix = "", "15% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "15% increased Movement Speed" }, } }, - ["MovementVelocityDescent2Boots1"] = { affix = "", "10% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "10% increased Movement Speed" }, } }, - ["MovementVelocityUniqueBootsStrDex4"] = { affix = "", "15% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "15% increased Movement Speed" }, } }, - ["MovementVelocityUniqueBodyDex7"] = { affix = "", "5% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "5% increased Movement Speed" }, } }, - ["MovementVelocityUniqueBootsStrDex3"] = { affix = "", "20% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "20% increased Movement Speed" }, } }, - ["MovementVelocityUniqueOneHandAxe3"] = { affix = "", "10% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "10% increased Movement Speed" }, } }, - ["MovementVelocityUniqueBootsStrInt2_"] = { affix = "", "25% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "25% increased Movement Speed" }, } }, - ["MovementVelocityUniqueBootsDex7"] = { affix = "", "30% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "30% increased Movement Speed" }, } }, - ["MovementVelocityUniqueBootsA1"] = { affix = "", "30% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "30% increased Movement Speed" }, } }, - ["MovementVelocityUniqueBootsW1"] = { affix = "", "25% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "25% increased Movement Speed" }, } }, - ["MovementVelocityUniqueOneHandSword9"] = { affix = "", "3% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "3% increased Movement Speed" }, } }, - ["MovementVelocityUniqueBootsStrInt3"] = { affix = "", "25% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "25% increased Movement Speed" }, } }, - ["MovementVelocityUniqueBootsDex8"] = { affix = "", "20% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "20% increased Movement Speed" }, } }, - ["MovementVelocityVictorAmulet"] = { affix = "", "(3-6)% increased Movement Speed", statOrder = { 1798 }, level = 16, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "(3-6)% increased Movement Speed" }, } }, - ["MovementVelocityUniqueBodyStrDex5_"] = { affix = "", "15% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "15% increased Movement Speed" }, } }, - ["MovementVelocityUniqueBodyStr5"] = { affix = "", "20% reduced Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "20% reduced Movement Speed" }, } }, - ["MovementVelocityUniqueAmulet20"] = { affix = "", "(10-15)% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "(10-15)% increased Movement Speed" }, } }, - ["MovementVelocityUniqueOneHandAxe7"] = { affix = "", "5% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "5% increased Movement Speed" }, } }, - ["MovementVelocityUniqueBootsDexInt4"] = { affix = "", "25% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "25% increased Movement Speed" }, } }, - ["MovementVelocityUniqueBootsStrDex5"] = { affix = "", "25% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "25% increased Movement Speed" }, } }, - ["MovementVelocityUniqueBootsStr3"] = { affix = "", "25% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "25% increased Movement Speed" }, } }, - ["MovementVelocityUniqueBootsInt6"] = { affix = "", "30% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "30% increased Movement Speed" }, } }, - ["MovementVelocityUnique__1"] = { affix = "", "30% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "30% increased Movement Speed" }, } }, - ["MovementVelocityUnique__2"] = { affix = "", "(5-10)% reduced Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "(5-10)% reduced Movement Speed" }, } }, - ["MovementVelocityUnique__3"] = { affix = "", "5% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "5% increased Movement Speed" }, } }, - ["MovementVelocityUnique__4"] = { affix = "", "5% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "5% increased Movement Speed" }, } }, - ["MovementVelocityUnique___5"] = { affix = "", "5% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "5% increased Movement Speed" }, } }, - ["MovementVelocityUnique__7"] = { affix = "", "15% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "15% increased Movement Speed" }, } }, - ["MovementVelocityUnique__8"] = { affix = "", "15% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "15% increased Movement Speed" }, } }, - ["MovementVelocityUnique__9_"] = { affix = "", "(3-5)% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "(3-5)% increased Movement Speed" }, } }, - ["MovementVelocityUnique__10"] = { affix = "", "25% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "25% increased Movement Speed" }, } }, - ["MovementVelocityUnique__11"] = { affix = "", "25% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "25% increased Movement Speed" }, } }, - ["MovementVelocityUnique__12"] = { affix = "", "30% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "30% increased Movement Speed" }, } }, - ["MovementVelocityUnique__13"] = { affix = "", "20% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "20% increased Movement Speed" }, } }, - ["MovementVelocityUnique__14"] = { affix = "", "30% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "30% increased Movement Speed" }, } }, - ["MovementVelocityUnique__15"] = { affix = "", "30% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "30% increased Movement Speed" }, } }, - ["MovementVelocityUnique__16"] = { affix = "", "15% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "15% increased Movement Speed" }, } }, - ["MovementVelocityUnique__17__"] = { affix = "", "15% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "15% increased Movement Speed" }, } }, - ["MovementVelocityUnique__18"] = { affix = "", "15% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "15% increased Movement Speed" }, } }, - ["MovementVelocityUnique__19"] = { affix = "", "(10-20)% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "(10-20)% increased Movement Speed" }, } }, - ["MovementVelocityUnique__20_"] = { affix = "", "25% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "25% increased Movement Speed" }, } }, - ["MovementVelocityUnique__21"] = { affix = "", "(1-40)% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "(1-40)% increased Movement Speed" }, } }, - ["MovementVelocityUnique__22"] = { affix = "", "30% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "30% increased Movement Speed" }, } }, - ["MovementVelocityUnique__24"] = { affix = "", "30% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "30% increased Movement Speed" }, } }, - ["MovementVelocityUnique__25"] = { affix = "", "20% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "20% increased Movement Speed" }, } }, - ["MovementVelocityUnique__26"] = { affix = "", "25% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "25% increased Movement Speed" }, } }, - ["MovementVelocityUnique__27"] = { affix = "", "20% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "20% increased Movement Speed" }, } }, - ["MovementVelocityUnique__28"] = { affix = "", "(20-30)% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "(20-30)% increased Movement Speed" }, } }, - ["MovementVelocityUnique__29"] = { affix = "", "25% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "25% increased Movement Speed" }, } }, - ["MovementVelocityUnique__30"] = { affix = "", "20% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "20% increased Movement Speed" }, } }, - ["MovementVelocityUnique__31"] = { affix = "", "25% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "25% increased Movement Speed" }, } }, - ["MovementVelocityUnique__32"] = { affix = "", "(10-15)% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "(10-15)% increased Movement Speed" }, } }, - ["MovementVelocityUnique__33_"] = { affix = "", "(5-10)% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "(5-10)% increased Movement Speed" }, } }, - ["MovementVelocityUnique__34"] = { affix = "", "25% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "25% increased Movement Speed" }, } }, - ["MovementVelocityUnique__35"] = { affix = "", "30% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "30% increased Movement Speed" }, } }, - ["MovementVelocityUnique__36_"] = { affix = "", "(5-8)% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "(5-8)% increased Movement Speed" }, } }, - ["MovementVelocityUnique__37"] = { affix = "", "10% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "10% increased Movement Speed" }, } }, - ["MovementVelocityUnique__38"] = { affix = "", "(1-20)% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "(1-20)% increased Movement Speed" }, } }, - ["MovementVelocityUnique__39_"] = { affix = "", "(20-30)% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "(20-30)% increased Movement Speed" }, } }, - ["MovementVelocityUnique__40"] = { affix = "", "25% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "25% increased Movement Speed" }, } }, - ["MovementVelocityUnique__42"] = { affix = "", "10% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "10% increased Movement Speed" }, } }, - ["MovementVelocityUnique__43"] = { affix = "", "25% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "25% increased Movement Speed" }, } }, - ["MovementVelocityUnique__44"] = { affix = "", "(5-10)% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "(5-10)% increased Movement Speed" }, } }, - ["MovementVelocityUnique__45"] = { affix = "", "30% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "30% increased Movement Speed" }, } }, - ["MovementVelocityUnique__46"] = { affix = "", "(8-12)% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "(8-12)% increased Movement Speed" }, } }, - ["MovementVelocityUnique__47_"] = { affix = "", "20% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "20% increased Movement Speed" }, } }, - ["MovementVelocityUnique__48"] = { affix = "", "30% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "30% increased Movement Speed" }, } }, - ["MovementVelocityUnique__49"] = { affix = "", "30% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "30% increased Movement Speed" }, } }, - ["MovementVelocityUnique__50"] = { affix = "", "30% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "30% increased Movement Speed" }, } }, - ["MovementVelocityUnique__51"] = { affix = "", "(20-30)% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "(20-30)% increased Movement Speed" }, } }, - ["MovementVelocityUnique__52"] = { affix = "", "5% reduced Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "5% reduced Movement Speed" }, } }, - ["MovementVelocityUnique__53"] = { affix = "", "(20-30)% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "(20-30)% increased Movement Speed" }, } }, - ["MovementVelocityUnique__54"] = { affix = "", "30% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "30% increased Movement Speed" }, } }, - ["MovementVelocityUnique__56"] = { affix = "", "(10-15)% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "(10-15)% increased Movement Speed" }, } }, - ["MovementVelocityUnique__57"] = { affix = "", "(15-25)% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "(15-25)% increased Movement Speed" }, } }, - ["MovementVelocityUnique__58"] = { affix = "", "5% increased Movement Speed", statOrder = { 1798 }, level = 100, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "5% increased Movement Speed" }, } }, - ["ReducedMovementVelocityUnique__1"] = { affix = "", "10% reduced Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "10% reduced Movement Speed" }, } }, - ["ReducedMovementVelocityUnique__2"] = { affix = "", "10% reduced Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "10% reduced Movement Speed" }, } }, - ["ReducedMovementVelocityUnique__3"] = { affix = "", "3% reduced Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "3% reduced Movement Speed" }, } }, - ["ReducedMovementVelocityUniqueOneHandMace7"] = { affix = "", "5% reduced Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "5% reduced Movement Speed" }, } }, - ["SpellDamageImplicitShield1"] = { affix = "", "(5-10)% increased Spell Damage", statOrder = { 1223 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(5-10)% increased Spell Damage" }, } }, - ["SpellDamageImplicitShield2"] = { affix = "", "(10-15)% increased Spell Damage", statOrder = { 1223 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(10-15)% increased Spell Damage" }, } }, - ["SpellDamageImplicitShield3"] = { affix = "", "(15-20)% increased Spell Damage", statOrder = { 1223 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(15-20)% increased Spell Damage" }, } }, - ["SpellDamageImplicitArmour1"] = { affix = "", "(3-10)% increased Spell Damage", statOrder = { 1223 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(3-10)% increased Spell Damage" }, } }, - ["SpellDamageImplicitGloves1"] = { affix = "", "(12-16)% increased Spell Damage", statOrder = { 1223 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(12-16)% increased Spell Damage" }, } }, - ["SpellDamageUniqueHelmetDexInt1"] = { affix = "", "(15-30)% increased Spell Damage", statOrder = { 1223 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(15-30)% increased Spell Damage" }, } }, - ["SpellDamageUniqueGlovesInt2"] = { affix = "", "100% increased Spell Damage", statOrder = { 1223 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "100% increased Spell Damage" }, } }, - ["SpellDamageUniqueShieldInt1"] = { affix = "", "(40-60)% increased Spell Damage", statOrder = { 1223 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(40-60)% increased Spell Damage" }, } }, - ["SpellDamageUniqueShieldStrInt1"] = { affix = "", "(20-30)% increased Spell Damage", statOrder = { 1223 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(20-30)% increased Spell Damage" }, } }, - ["SpellDamageUniqueWand1"] = { affix = "", "(30-40)% increased Spell Damage", statOrder = { 1223 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(30-40)% increased Spell Damage" }, } }, - ["SpellDamageUniqueStaff2"] = { affix = "", "(50-60)% increased Spell Damage", statOrder = { 1223 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(50-60)% increased Spell Damage" }, } }, - ["SpellDamageUniqueSceptre2"] = { affix = "", "(20-30)% increased Spell Damage", statOrder = { 1223 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(20-30)% increased Spell Damage" }, } }, - ["SpellDamageUniqueBodyInt7"] = { affix = "", "(20-25)% increased Spell Damage", statOrder = { 1223 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(20-25)% increased Spell Damage" }, } }, - ["SpellDamageUniqueSceptre5"] = { affix = "", "(20-30)% increased Spell Damage", statOrder = { 1223 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(20-30)% increased Spell Damage" }, } }, - ["SpellDamageUniqueDescentWand1"] = { affix = "", "20% increased Spell Damage", statOrder = { 1223 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "20% increased Spell Damage" }, } }, - ["SpellDamageUniqueWand4"] = { affix = "", "(20-28)% increased Spell Damage", statOrder = { 1223 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(20-28)% increased Spell Damage" }, } }, - ["SpellDamageUniqueStaff6"] = { affix = "", "(120-160)% increased Spell Damage", statOrder = { 1223 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(120-160)% increased Spell Damage" }, } }, - ["SpellDamageUniqueWand7"] = { affix = "", "(20-40)% increased Spell Damage", statOrder = { 1223 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(20-40)% increased Spell Damage" }, } }, - ["SpellDamageUniqueHelmetInt8"] = { affix = "", "(80-100)% increased Spell Damage", statOrder = { 1223 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(80-100)% increased Spell Damage" }, } }, - ["SpellDamageUniqueDagger10"] = { affix = "", "(40-60)% increased Fire Damage", statOrder = { 1357 }, level = 1, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(40-60)% increased Fire Damage" }, } }, - ["SpellDamageUniqueStaff12"] = { affix = "", "(50-70)% increased Spell Damage", statOrder = { 1223 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(50-70)% increased Spell Damage" }, } }, - ["SpellDamageUniqueStaff11_"] = { affix = "", "(40-60)% increased Spell Damage", statOrder = { 1223 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(40-60)% increased Spell Damage" }, } }, - ["SpellDamageUniqueRing35"] = { affix = "", "(20-25)% increased Spell Damage", statOrder = { 1223 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(20-25)% increased Spell Damage" }, } }, - ["SpellDamageUnique__2"] = { affix = "", "(60-80)% increased Spell Damage", statOrder = { 1223 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(60-80)% increased Spell Damage" }, } }, - ["SpellDamageUnique__3"] = { affix = "", "40% increased Spell Damage", statOrder = { 1223 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "40% increased Spell Damage" }, } }, - ["SpellDamageUnique__4"] = { affix = "", "(20-45)% increased Spell Damage", statOrder = { 1223 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(20-45)% increased Spell Damage" }, } }, - ["SpellDamageUnique__5"] = { affix = "", "(75-90)% increased Spell Damage", statOrder = { 1223 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(75-90)% increased Spell Damage" }, } }, - ["SpellDamageUnique__6"] = { affix = "", "(30-40)% increased Spell Damage", statOrder = { 1223 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(30-40)% increased Spell Damage" }, } }, - ["SpellDamageUnique__7"] = { affix = "", "(40-50)% increased Spell Damage", statOrder = { 1223 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(40-50)% increased Spell Damage" }, } }, - ["SpellDamageUnique__8_"] = { affix = "", "(100-140)% increased Spell Damage", statOrder = { 1223 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(100-140)% increased Spell Damage" }, } }, - ["SpellDamageUnique__9"] = { affix = "", "(70-100)% increased Spell Damage", statOrder = { 1223 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(70-100)% increased Spell Damage" }, } }, - ["SpellDamageUnique__10"] = { affix = "", "(30-50)% increased Spell Damage", statOrder = { 1223 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(30-50)% increased Spell Damage" }, } }, - ["SpellDamageUnique__11"] = { affix = "", "(20-40)% increased Spell Damage", statOrder = { 1223 }, level = 85, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(20-40)% increased Spell Damage" }, } }, - ["SpellDamageUnique__12"] = { affix = "", "(20-25)% increased Spell Damage", statOrder = { 1223 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(20-25)% increased Spell Damage" }, } }, - ["SpellDamageUnique__13"] = { affix = "", "(20-25)% increased Spell Damage", statOrder = { 1223 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(20-25)% increased Spell Damage" }, } }, - ["SpellDamageUnique__14"] = { affix = "", "(30-60)% increased Spell Damage", statOrder = { 1223 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(30-60)% increased Spell Damage" }, } }, - ["SpellDamageUnique__15"] = { affix = "", "(150-200)% increased Spell Damage", statOrder = { 1223 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(150-200)% increased Spell Damage" }, } }, - ["SpellDamageUnique__16"] = { affix = "", "(30-40)% increased Spell Damage", statOrder = { 1223 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(30-40)% increased Spell Damage" }, } }, - ["SpellDamageUnique__17"] = { affix = "", "(100-150)% increased Spell Damage", statOrder = { 1223 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(100-150)% increased Spell Damage" }, } }, - ["SpellDamageUnique__18"] = { affix = "", "(60-80)% increased Spell Damage", statOrder = { 1223 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(60-80)% increased Spell Damage" }, } }, - ["SpellDamageOnWeaponUniqueDagger1"] = { affix = "", "(150-200)% increased Spell Damage", statOrder = { 1223 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(150-200)% increased Spell Damage" }, } }, - ["SpellDamageOnWeaponUniqueDagger4"] = { affix = "", "(60-70)% increased Spell Damage", statOrder = { 1223 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(60-70)% increased Spell Damage" }, } }, - ["SpellDamageOnWeaponUniqueWand3"] = { affix = "", "80% reduced Spell Damage", statOrder = { 1223 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "80% reduced Spell Damage" }, } }, - ["SpellDamageOnWeaponUniqueTwoHandAxe9"] = { affix = "", "(100-200)% increased Spell Damage", statOrder = { 1223 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(100-200)% increased Spell Damage" }, } }, - ["SpellDamageOnWeaponImplicitWand1"] = { affix = "", "(8-12)% increased Spell Damage", statOrder = { 1223 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(8-12)% increased Spell Damage" }, } }, - ["SpellDamageOnWeaponImplicitWand2"] = { affix = "", "(10-14)% increased Spell Damage", statOrder = { 1223 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(10-14)% increased Spell Damage" }, } }, - ["SpellDamageOnWeaponImplicitWand3"] = { affix = "", "(11-15)% increased Spell Damage", statOrder = { 1223 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(11-15)% increased Spell Damage" }, } }, - ["SpellDamageOnWeaponImplicitWand4"] = { affix = "", "(13-17)% increased Spell Damage", statOrder = { 1223 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(13-17)% increased Spell Damage" }, } }, - ["SpellDamageOnWeaponImplicitWand5"] = { affix = "", "(15-19)% increased Spell Damage", statOrder = { 1223 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(15-19)% increased Spell Damage" }, } }, - ["SpellDamageOnWeaponImplicitWand6"] = { affix = "", "(17-21)% increased Spell Damage", statOrder = { 1223 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(17-21)% increased Spell Damage" }, } }, - ["SpellDamageOnWeaponImplicitWand7"] = { affix = "", "(18-22)% increased Spell Damage", statOrder = { 1223 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(18-22)% increased Spell Damage" }, } }, - ["SpellDamageOnWeaponImplicitWand8"] = { affix = "", "(20-24)% increased Spell Damage", statOrder = { 1223 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(20-24)% increased Spell Damage" }, } }, - ["SpellDamageOnWeaponImplicitWand9"] = { affix = "", "(22-26)% increased Spell Damage", statOrder = { 1223 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(22-26)% increased Spell Damage" }, } }, - ["SpellDamageOnWeaponImplicitWand10"] = { affix = "", "(24-28)% increased Spell Damage", statOrder = { 1223 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(24-28)% increased Spell Damage" }, } }, - ["SpellDamageOnWeaponImplicitWand11"] = { affix = "", "(26-30)% increased Spell Damage", statOrder = { 1223 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(26-30)% increased Spell Damage" }, } }, - ["SpellDamageOnWeaponImplicitWand12"] = { affix = "", "(27-31)% increased Spell Damage", statOrder = { 1223 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(27-31)% increased Spell Damage" }, } }, - ["SpellDamageOnWeaponImplicitWand13"] = { affix = "", "(29-33)% increased Spell Damage", statOrder = { 1223 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(29-33)% increased Spell Damage" }, } }, - ["SpellDamageOnWeaponImplicitWand14"] = { affix = "", "(31-35)% increased Spell Damage", statOrder = { 1223 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(31-35)% increased Spell Damage" }, } }, - ["SpellDamageOnWeaponImplicitWand15"] = { affix = "", "(33-37)% increased Spell Damage", statOrder = { 1223 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(33-37)% increased Spell Damage" }, } }, - ["SpellDamageOnWeaponImplicitWand16"] = { affix = "", "(35-39)% increased Spell Damage", statOrder = { 1223 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(35-39)% increased Spell Damage" }, } }, - ["SpellDamageOnWeaponImplicitWand17"] = { affix = "", "(36-40)% increased Spell Damage", statOrder = { 1223 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(36-40)% increased Spell Damage" }, } }, - ["SpellDamageOnWeaponImplicitWand18"] = { affix = "", "(38-42)% increased Spell Damage", statOrder = { 1223 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(38-42)% increased Spell Damage" }, } }, - ["TrapThrowingSpeedUnique_1"] = { affix = "", "(6-12)% increased Trap Throwing Speed", statOrder = { 1927 }, level = 1, group = "TrapThrowSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [118398748] = { "(6-12)% increased Trap Throwing Speed" }, } }, - ["NumberOfAdditionalTrapsUnique_1"] = { affix = "", "Can have up to (3-5) additional Traps placed at a time", statOrder = { 2255 }, level = 1, group = "NumberOfAdditionalTraps", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2224292784] = { "Can have up to (3-5) additional Traps placed at a time" }, } }, - ["GraspFromBeyondTrapUnique_1"] = { affix = "", "Grants Level 30 Will of the Lords Skill", statOrder = { 693 }, level = 85, group = "GrantsBreachHandTrap", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [608058997] = { "Grants Level 30 Will of the Lords Skill" }, } }, - ["HeraldOfTheBreachUnique_1"] = { affix = "", "Grants Level 30 Herald of the Hive Skill", statOrder = { 708 }, level = 53, group = "GrantsHeraldOfTheBreach", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [3610535490] = { "Grants Level 30 Herald of the Hive Skill" }, } }, - ["SoulcordDiamondShrineUnique_1"] = { affix = "", "You have Diamond Shrine Buff while affected by no Flasks", statOrder = { 592 }, level = 70, group = "SoulcordDiamondShrine", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1962944794] = { "You have Diamond Shrine Buff while affected by no Flasks" }, [1939175721] = { "" }, } }, - ["SoulcordGloomShrineUnique__1"] = { affix = "", "You have Gloom Shrine Buff while affected by no Flasks", statOrder = { 594 }, level = 70, group = "SoulcordGloomShrine", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1939175721] = { "" }, [1525347447] = { "You have Gloom Shrine Buff while affected by no Flasks" }, } }, - ["SoulcordAccelerationShrineUnique__1"] = { affix = "", "You have Acceleration Shrine Buff while affected by no Flasks", statOrder = { 589 }, level = 70, group = "SoulcordAccelerationShrine", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1939175721] = { "" }, [845062586] = { "You have Acceleration Shrine Buff while affected by no Flasks" }, } }, - ["SoulcordEchoingShrineUnique__1"] = { affix = "", "You have Echoing Shrine Buff while affected by no Flasks", statOrder = { 593 }, level = 70, group = "SoulcordEchoingShrine", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1941745370] = { "You have Echoing Shrine Buff while affected by no Flasks" }, [1939175721] = { "" }, } }, - ["SoulcordMassiveShrineUnique_1"] = { affix = "", "You have Massive Shrine Buff while affected by no Flasks", statOrder = { 596 }, level = 70, group = "SoulcordMassiveShrine", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1939175721] = { "" }, [3810260531] = { "You have Massive Shrine Buff while affected by no Flasks" }, } }, - ["SoulcordResonatingShrineUnique_1"] = { affix = "", "You have Resonating Shrine Buff while affected by no Flasks", statOrder = { 599 }, level = 70, group = "SoulcordResonatingShrine", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1939175721] = { "" }, [736980450] = { "You have Resonating Shrine Buff while affected by no Flasks" }, } }, - ["SoulcordBrutalShrineUnique_1"] = { affix = "", "You have Brutal Shrine Buff while affected by no Flasks", statOrder = { 590 }, level = 70, group = "SoulcordBrutalShrine", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1665800734] = { "You have Brutal Shrine Buff while affected by no Flasks" }, [1939175721] = { "" }, } }, - ["SoulcordReplenishingShrineUnique_1"] = { affix = "", "You have Replenishing Shrine Buff while affected by no Flasks", statOrder = { 597 }, level = 70, group = "SoulcordReplenishingShrine", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2752009372] = { "You have Replenishing Shrine Buff while affected by no Flasks" }, [1939175721] = { "" }, } }, - ["SoulcordImpenetrableShrineUnique_1"] = { affix = "", "You have Impenetrable Shrine Buff while affected by no Flasks", statOrder = { 595 }, level = 70, group = "SoulcordImpenetrableShrine", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1451444229] = { "You have Impenetrable Shrine Buff while affected by no Flasks" }, [1939175721] = { "" }, } }, - ["SoulcordResistanceShrineUnique_1"] = { affix = "", "You have Resistance Shrine Buff while affected by no Flasks", statOrder = { 598 }, level = 70, group = "SoulcordResistanceShrine", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3934633832] = { "You have Resistance Shrine Buff while affected by no Flasks" }, [1939175721] = { "" }, } }, - ["SoulcordShockingShrineUnique_1"] = { affix = "", "You have Greater Shocking Shrine Buff while affected by no Flasks", "(15-20)% increased Effect of Shrine Buffs on you", statOrder = { 600, 2812 }, level = 70, group = "SoulcordShockingShrine", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1939175721] = { "(15-20)% increased Effect of Shrine Buffs on you" }, [1838429243] = { "You have Greater Shocking Shrine Buff while affected by no Flasks" }, } }, - ["SoulcordSkeletonShrineUnique_1"] = { affix = "", "You have Greater Skeletal Shrine Buff while affected by no Flasks", "(15-20)% increased Effect of Shrine Buffs on you", statOrder = { 601, 2812 }, level = 70, group = "SoulcordSkeletonShrine", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1939175721] = { "(15-20)% increased Effect of Shrine Buffs on you" }, [3878995435] = { "You have Greater Skeletal Shrine Buff while affected by no Flasks" }, } }, - ["SoulcordChillingShrineUnique_1"] = { affix = "", "You have Greater Freezing Shrine Buff while affected by no Flasks", "(15-20)% increased Effect of Shrine Buffs on you", statOrder = { 591, 2812 }, level = 70, group = "SoulcordChillingShrine", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3677336814] = { "You have Greater Freezing Shrine Buff while affected by no Flasks" }, [1939175721] = { "(15-20)% increased Effect of Shrine Buffs on you" }, } }, - ["BlindedEnemiesCannotInflictAilmentsUnique_1"] = { affix = "", "Enemies Blinded by you cannot inflict Damaging Ailments", statOrder = { 6365 }, level = 30, group = "BlindedEnemiesCannotInflictAilments", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [445314012] = { "Enemies Blinded by you cannot inflict Damaging Ailments" }, } }, - ["CeaselessFleshGrantedSkillUnique__1"] = { affix = "", "Trigger level 25 Ceaseless Flesh once every second", statOrder = { 20 }, level = 80, group = "CeaselessFleshGrantedSkill", weightKey = { }, weightVal = { }, modTags = { "skill", "minion" }, tradeHashes = { [2397674290] = { "Trigger level 25 Ceaseless Flesh once every second" }, [1560737213] = { "" }, } }, - ["FleshShieldOnMinionDeathUnique__1"] = { affix = "", "When a nearby Minion dies, gain Rotten Bulwark equal to (7-9)% of its maximum Life", statOrder = { 9311 }, level = 80, group = "FleshShieldOnMinionDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, tradeHashes = { [1960869129] = { "When a nearby Minion dies, gain Rotten Bulwark equal to (7-9)% of its maximum Life" }, } }, - ["ConsumeLifeFlaskChargesForDoTMultiOnAttackUnique__1"] = { affix = "", "On non-channelling Attack, set a Life Flask with greater than 50% of maximum Charges remaining to 50%", "For each Charge removed this way, that Attack gains +2% to Damage over time Multiplier", statOrder = { 5864, 5864.1 }, level = 70, group = "ConsumeLifeFlaskChargesForDoTMultiOnAttack", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, tradeHashes = { [1341154644] = { "On non-channelling Attack, set a Life Flask with greater than 50% of maximum Charges remaining to 50%", "For each Charge removed this way, that Attack gains +2% to Damage over time Multiplier" }, } }, - ["CannotUseManaFlaskUnique__1"] = { affix = "", "Can't use Mana Flasks", statOrder = { 5450 }, level = 70, group = "CannotUseManaFlask", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "mana" }, tradeHashes = { [1863071073] = { "Can't use Mana Flasks" }, } }, - ["IncreasedGoldFoundUnique__1"] = { affix = "", "(25-35)% increased Quantity of Gold Dropped by Slain Enemies", statOrder = { 7304 }, level = 55, group = "IncreasedGold", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [253956903] = { "(25-35)% increased Quantity of Gold Dropped by Slain Enemies" }, } }, - ["SandMirageOnCastUnique__1"] = { affix = "", "Trigger level 20 Suspend in Time on Casting a Spell", statOrder = { 191 }, level = 1, group = "SandMirageOnCast", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1925643497] = { "Trigger level 20 Suspend in Time on Casting a Spell" }, } }, - ["SpellDamagePerUniqueSpellRecentlyUnique__1"] = { affix = "", "10% increased Cast Speed for each different Non-Instant Spell you've Cast Recently", statOrder = { 5462 }, level = 1, group = "SpellDamagePerUniqueSpellRecently", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHashes = { [1518586897] = { "10% increased Cast Speed for each different Non-Instant Spell you've Cast Recently" }, } }, - ["WeaponElementalDamageUniqueShieldStrInt4"] = { affix = "", "(10-20)% increased Elemental Damage with Attack Skills", statOrder = { 6322 }, level = 1, group = "IncreasedWeaponElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "(10-20)% increased Elemental Damage with Attack Skills" }, } }, - ["WeaponElementalDamageUniqueRing10"] = { affix = "", "(20-30)% increased Elemental Damage with Attack Skills", statOrder = { 6322 }, level = 1, group = "IncreasedWeaponElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "(20-30)% increased Elemental Damage with Attack Skills" }, } }, - ["WeaponElementalDamageUniqueBelt5"] = { affix = "", "(10-20)% increased Elemental Damage with Attack Skills", statOrder = { 6322 }, level = 1, group = "IncreasedWeaponElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "(10-20)% increased Elemental Damage with Attack Skills" }, } }, - ["WeaponElementalDamageImplicitBow1"] = { affix = "", "(20-24)% increased Elemental Damage with Attack Skills", statOrder = { 6322 }, level = 1, group = "IncreasedWeaponElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "(20-24)% increased Elemental Damage with Attack Skills" }, } }, - ["WeaponElementalDamageImplicitBow2"] = { affix = "", "(25-28)% increased Elemental Damage with Attack Skills", statOrder = { 6322 }, level = 1, group = "IncreasedWeaponElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "(25-28)% increased Elemental Damage with Attack Skills" }, } }, - ["WeaponElementalDamageImplicitBow3"] = { affix = "", "(29-32)% increased Elemental Damage with Attack Skills", statOrder = { 6322 }, level = 1, group = "IncreasedWeaponElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "(29-32)% increased Elemental Damage with Attack Skills" }, } }, - ["WeaponElementalDamageImplicitSword1"] = { affix = "", "30% increased Elemental Damage with Attack Skills", statOrder = { 6322 }, level = 1, group = "IncreasedWeaponElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "30% increased Elemental Damage with Attack Skills" }, } }, - ["WeaponElementalDamageImplicitQuiver13New"] = { affix = "", "(20-30)% increased Elemental Damage with Attack Skills", statOrder = { 6322 }, level = 83, group = "IncreasedWeaponElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "(20-30)% increased Elemental Damage with Attack Skills" }, } }, - ["WeaponElementalDamageUniqueBelt10"] = { affix = "", "10% increased Elemental Damage with Attack Skills", statOrder = { 6322 }, level = 1, group = "IncreasedWeaponElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "10% increased Elemental Damage with Attack Skills" }, } }, - ["WeaponElementalDamageUnique__2"] = { affix = "", "(60-80)% increased Elemental Damage with Attack Skills", statOrder = { 6322 }, level = 1, group = "IncreasedWeaponElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "(60-80)% increased Elemental Damage with Attack Skills" }, } }, - ["WeaponElementalDamageUnique__3"] = { affix = "", "(40-55)% increased Elemental Damage with Attack Skills", statOrder = { 6322 }, level = 1, group = "IncreasedWeaponElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "(40-55)% increased Elemental Damage with Attack Skills" }, } }, - ["WeaponElementalDamageUnique__4"] = { affix = "", "(20-25)% increased Elemental Damage with Attack Skills", statOrder = { 6322 }, level = 1, group = "IncreasedWeaponElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "(20-25)% increased Elemental Damage with Attack Skills" }, } }, - ["WeaponElementalDamageUnique__5"] = { affix = "", "(25-30)% increased Elemental Damage with Attack Skills", statOrder = { 6322 }, level = 1, group = "IncreasedWeaponElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "(25-30)% increased Elemental Damage with Attack Skills" }, } }, - ["WeaponElementalDamageUnique__6"] = { affix = "", "(20-30)% increased Elemental Damage with Attack Skills", statOrder = { 6322 }, level = 1, group = "IncreasedWeaponElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "(20-30)% increased Elemental Damage with Attack Skills" }, } }, - ["ThisWeaponsWeaponElementalDamageUniqueWand6"] = { affix = "", "Attacks with this Weapon have (100-115)% increased Elemental Damage", statOrder = { 2929 }, level = 1, group = "ThisWeaponWeaponElementalDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [17526298] = { "Attacks with this Weapon have (100-115)% increased Elemental Damage" }, } }, - ["ManaLeechUniqueOneHandSword2"] = { affix = "", "(3-5)% of Physical Attack Damage Leeched as Mana", statOrder = { 1700 }, level = 1, group = "ManaLeechLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [2825755397] = { "(3-5)% of Physical Attack Damage Leeched as Mana" }, } }, - ["ManaLeechPermyriadUniqueOneHandSword2"] = { affix = "", "(0.6-1)% of Physical Attack Damage Leeched as Mana", statOrder = { 1701 }, level = 1, group = "ManaLeechLocalPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [669069897] = { "(0.6-1)% of Physical Attack Damage Leeched as Mana" }, } }, - ["ManaLeechUniqueTwoHandSword2"] = { affix = "", "3% of Physical Attack Damage Leeched as Mana", statOrder = { 1700 }, level = 1, group = "ManaLeechLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [2825755397] = { "3% of Physical Attack Damage Leeched as Mana" }, } }, - ["ManaLeechPermyriadUniqueTwoHandSword2"] = { affix = "", "0.6% of Physical Attack Damage Leeched as Mana", statOrder = { 1701 }, level = 1, group = "ManaLeechLocalPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [669069897] = { "0.6% of Physical Attack Damage Leeched as Mana" }, } }, - ["ManaLeechUniqueAmulet3"] = { affix = "", "1% of Physical Attack Damage Leeched as Mana", statOrder = { 1697 }, level = 1, group = "ManaLeech", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [3907785920] = { "1% of Physical Attack Damage Leeched as Mana" }, } }, - ["ManaLeechPermyriadUniqueAmulet3"] = { affix = "", "0.2% of Physical Attack Damage Leeched as Mana", statOrder = { 1699 }, level = 1, group = "ManaLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [3237948413] = { "0.2% of Physical Attack Damage Leeched as Mana" }, } }, - ["ManaLeechStrDexHelmet1"] = { affix = "", "1% of Physical Attack Damage Leeched as Mana", statOrder = { 1697 }, level = 1, group = "ManaLeech", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [3907785920] = { "1% of Physical Attack Damage Leeched as Mana" }, } }, - ["ManaLeechPermyriadStrDexHelmet1"] = { affix = "", "0.4% of Attack Damage Leeched as Mana", statOrder = { 1705 }, level = 1, group = "AttackDamageManaLeech", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "attack" }, tradeHashes = { [350069479] = { "0.4% of Attack Damage Leeched as Mana" }, } }, - ["ManaLeechUniqueGlovesStrDex1"] = { affix = "", "2% of Physical Attack Damage Leeched as Mana", statOrder = { 1697 }, level = 1, group = "ManaLeech", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [3907785920] = { "2% of Physical Attack Damage Leeched as Mana" }, } }, - ["ManaLeechPermyriadUniqueGlovesStrDex1"] = { affix = "", "0.4% of Physical Attack Damage Leeched as Mana", statOrder = { 1699 }, level = 1, group = "ManaLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [3237948413] = { "0.4% of Physical Attack Damage Leeched as Mana" }, } }, - ["ManaLeechUniqueBelt1"] = { affix = "", "2% of Physical Attack Damage Leeched as Mana", statOrder = { 1697 }, level = 1, group = "ManaLeech", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [3907785920] = { "2% of Physical Attack Damage Leeched as Mana" }, } }, - ["ManaLeechPermyriadUniqueBelt1"] = { affix = "", "2% of Physical Attack Damage Leeched as Mana", statOrder = { 1699 }, level = 1, group = "ManaLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [3237948413] = { "2% of Physical Attack Damage Leeched as Mana" }, } }, - ["ManaLeechUniqueTwoHandMace4"] = { affix = "", "2% of Physical Attack Damage Leeched as Mana", statOrder = { 1700 }, level = 1, group = "ManaLeechLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [2825755397] = { "2% of Physical Attack Damage Leeched as Mana" }, } }, - ["ManaLeechPermyriadUniqueTwoHandMace4"] = { affix = "", "0.4% of Physical Attack Damage Leeched as Mana", statOrder = { 1701 }, level = 1, group = "ManaLeechLocalPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [669069897] = { "0.4% of Physical Attack Damage Leeched as Mana" }, } }, - ["ManaLeechUniqueHelmetInt7"] = { affix = "", "(1-2)% of Physical Attack Damage Leeched as Mana", statOrder = { 1697 }, level = 1, group = "ManaLeech", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [3907785920] = { "(1-2)% of Physical Attack Damage Leeched as Mana" }, } }, - ["ManaLeechPermyriadUniqueHelmetInt7"] = { affix = "", "(0.2-0.4)% of Attack Damage Leeched as Mana", statOrder = { 1705 }, level = 1, group = "AttackDamageManaLeech", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "attack" }, tradeHashes = { [350069479] = { "(0.2-0.4)% of Attack Damage Leeched as Mana" }, } }, - ["ManaLeechUniqueRing17"] = { affix = "", "2% of Physical Attack Damage Leeched as Mana", statOrder = { 1697 }, level = 1, group = "ManaLeech", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [3907785920] = { "2% of Physical Attack Damage Leeched as Mana" }, } }, - ["ManaLeechPermyriadUniqueRing17"] = { affix = "", "0.4% of Physical Attack Damage Leeched as Mana", statOrder = { 1699 }, level = 1, group = "ManaLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [3237948413] = { "0.4% of Physical Attack Damage Leeched as Mana" }, } }, - ["ManaLeechUniqueGlovesDexInt6"] = { affix = "", "1% of Physical Attack Damage Leeched as Mana", statOrder = { 1697 }, level = 1, group = "ManaLeech", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [3907785920] = { "1% of Physical Attack Damage Leeched as Mana" }, } }, - ["ManaLeechPermyriadUniqueGlovesDexInt6"] = { affix = "", "0.2% of Attack Damage Leeched as Mana", statOrder = { 1705 }, level = 1, group = "AttackDamageManaLeech", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "attack" }, tradeHashes = { [350069479] = { "0.2% of Attack Damage Leeched as Mana" }, } }, - ["ManaLeechUniqueBodyStr6"] = { affix = "", "2% of Physical Attack Damage Leeched as Mana", statOrder = { 1697 }, level = 1, group = "ManaLeech", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [3907785920] = { "2% of Physical Attack Damage Leeched as Mana" }, } }, - ["ManaLeechPermyriadUniqueBodyStr6"] = { affix = "", "0.4% of Physical Attack Damage Leeched as Mana", statOrder = { 1699 }, level = 1, group = "ManaLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [3237948413] = { "0.4% of Physical Attack Damage Leeched as Mana" }, } }, - ["ManaLeechPermyriadUnique__1"] = { affix = "", "0.2% of Physical Attack Damage Leeched as Mana", statOrder = { 1699 }, level = 1, group = "ManaLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [3237948413] = { "0.2% of Physical Attack Damage Leeched as Mana" }, } }, - ["ManaLeechPermyriadUnique__2"] = { affix = "", "1% of Physical Attack Damage Leeched as Mana", statOrder = { 1701 }, level = 1, group = "ManaLeechLocalPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [669069897] = { "1% of Physical Attack Damage Leeched as Mana" }, } }, - ["ManaLeechPermyriadUnique__3"] = { affix = "", "(1-1.5)% of Physical Attack Damage Leeched as Mana", statOrder = { 1699 }, level = 1, group = "ManaLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [3237948413] = { "(1-1.5)% of Physical Attack Damage Leeched as Mana" }, } }, - ["ItemFoundQuantityIncreaseUniqueGlovesInt1"] = { affix = "", "(5-10)% increased Quantity of Items found", statOrder = { 1592 }, level = 14, group = "ItemFoundQuantityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [884586851] = { "(5-10)% increased Quantity of Items found" }, } }, - ["ItemFoundQuantityIncreaseUniqueBelt3"] = { affix = "", "(6-8)% increased Quantity of Items found", statOrder = { 1592 }, level = 1, group = "ItemFoundQuantityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [884586851] = { "(6-8)% increased Quantity of Items found" }, } }, - ["ItemFoundQuantityIncreaseUniqueBootsDex2"] = { affix = "", "(6-10)% increased Quantity of Items found", statOrder = { 1592 }, level = 1, group = "ItemFoundQuantityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [884586851] = { "(6-10)% increased Quantity of Items found" }, } }, - ["ItemFoundQuantityIncreaseUniqueRing7"] = { affix = "", "(10-16)% increased Quantity of Items found", statOrder = { 1592 }, level = 1, group = "ItemFoundQuantityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [884586851] = { "(10-16)% increased Quantity of Items found" }, } }, - ["ItemFoundQuantityIncreaseUniqueShieldInt4"] = { affix = "", "(4-8)% increased Quantity of Items found", statOrder = { 1592 }, level = 1, group = "ItemFoundQuantityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [884586851] = { "(4-8)% increased Quantity of Items found" }, } }, - ["ItemFoundQuantityIncreaseUniqueBodyStr5"] = { affix = "", "(10-15)% increased Quantity of Items found", statOrder = { 1592 }, level = 1, group = "ItemFoundQuantityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [884586851] = { "(10-15)% increased Quantity of Items found" }, } }, - ["ItemFoundQuantityIncreaseUniqueRing32"] = { affix = "", "(-10-10)% reduced Quantity of Items found", statOrder = { 1592 }, level = 1, group = "ItemFoundQuantityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [884586851] = { "(-10-10)% reduced Quantity of Items found" }, } }, - ["ItemFoundQuantityIncreasedUnique__1"] = { affix = "", "5% increased Quantity of Items found", statOrder = { 1592 }, level = 1, group = "ItemFoundQuantityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [884586851] = { "5% increased Quantity of Items found" }, } }, - ["ItemFoundRarityIncreaseImplicitRing1"] = { affix = "", "(6-15)% increased Rarity of Items found", statOrder = { 1596 }, level = 25, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(6-15)% increased Rarity of Items found" }, } }, - ["ItemFoundRarityIncreaseImplicitAmulet1"] = { affix = "", "(12-20)% increased Rarity of Items found", statOrder = { 1596 }, level = 10, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(12-20)% increased Rarity of Items found" }, } }, - ["ItemFoundRarityIncreaseUniqueRing3"] = { affix = "", "(50-70)% increased Rarity of Items found", statOrder = { 1596 }, level = 25, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(50-70)% increased Rarity of Items found" }, } }, - ["ItemFoundRarityIncreaseUniqueAmulet6"] = { affix = "", "30% increased Rarity of Items found", statOrder = { 1596 }, level = 25, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "30% increased Rarity of Items found" }, } }, - ["ItemFoundRarityIncreaseUniqueStrDexHelmet1"] = { affix = "", "(20-30)% increased Rarity of Items found", statOrder = { 1596 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(20-30)% increased Rarity of Items found" }, } }, - ["ItemFoundRarityIncreaseUniqueBootsDexInt1"] = { affix = "", "(20-30)% increased Rarity of Items found", statOrder = { 1596 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(20-30)% increased Rarity of Items found" }, } }, - ["ItemFoundRarityIncreaseUniqueGlovesStrDex2"] = { affix = "", "(40-50)% increased Rarity of Items found", statOrder = { 1596 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(40-50)% increased Rarity of Items found" }, } }, - ["ItemFoundRarityIncreaseUniqueTwoHandAxe2"] = { affix = "", "(30-40)% increased Rarity of Items found", statOrder = { 1596 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(30-40)% increased Rarity of Items found" }, } }, - ["ItemFoundRarityDecreaseUniqueRapier1"] = { affix = "", "20% reduced Rarity of Items found", statOrder = { 1596 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "20% reduced Rarity of Items found" }, } }, - ["ItemFoundRarityDecreaseUniqueTwoHandMace4"] = { affix = "", "(30-50)% reduced Rarity of Items found", statOrder = { 1596 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(30-50)% reduced Rarity of Items found" }, } }, - ["ItemFoundRarityDecreaseUniqueRing10"] = { affix = "", "(10-20)% reduced Rarity of Items found", statOrder = { 1596 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(10-20)% reduced Rarity of Items found" }, } }, - ["ItemFoundRarityIncreaseUniqueHelmetDex3"] = { affix = "", "10% increased Rarity of Items found", statOrder = { 1596 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "10% increased Rarity of Items found" }, } }, - ["ItemFoundRarityIncreaseUniqueHelmetWreath1"] = { affix = "", "(20-30)% increased Rarity of Items found", statOrder = { 1596 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(20-30)% increased Rarity of Items found" }, } }, - ["ItemFoundRarityIncreaseUniqueRing6"] = { affix = "", "(10-30)% increased Rarity of Items found", statOrder = { 1596 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(10-30)% increased Rarity of Items found" }, } }, - ["ItemFoundRarityIncreaseUniqueHelmetDex6"] = { affix = "", "(20-25)% increased Rarity of Items found", statOrder = { 1596 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(20-25)% increased Rarity of Items found" }, } }, - ["ItemFoundRarityIncreaseUniqueRapier2"] = { affix = "", "20% reduced Rarity of Items found", statOrder = { 1596 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "20% reduced Rarity of Items found" }, } }, - ["ItemFoundRarityDecreaseUniqueOneHandSword4"] = { affix = "", "50% reduced Rarity of Items found", statOrder = { 1596 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "50% reduced Rarity of Items found" }, } }, - ["ItemFoundRarityIncreaseUniqueBootsDemigods1"] = { affix = "", "(20-30)% increased Rarity of Items found", statOrder = { 1596 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(20-30)% increased Rarity of Items found" }, } }, - ["ItemFoundRarityIncreaseUniqueShieldStrDex2"] = { affix = "", "(30-40)% increased Rarity of Items found", statOrder = { 1596 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(30-40)% increased Rarity of Items found" }, } }, - ["ItemFoundRarityIncreaseImplicitDemigodsBelt1"] = { affix = "", "(20-30)% increased Rarity of Items found", statOrder = { 1596 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(20-30)% increased Rarity of Items found" }, } }, - ["ItemFoundRarityIncreaseUniqueRingDemigods1"] = { affix = "", "(16-24)% increased Rarity of Items found", statOrder = { 1596 }, level = 16, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(16-24)% increased Rarity of Items found" }, } }, - ["ItemFoundRarityIncreaseUniqueBodyStr5"] = { affix = "", "100% increased Rarity of Items found", statOrder = { 1596 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "100% increased Rarity of Items found" }, } }, - ["ItemFoundRarityIncreaseUniqueRing32_"] = { affix = "", "(-40-40)% reduced Rarity of Items found", statOrder = { 1596 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(-40-40)% reduced Rarity of Items found" }, } }, - ["ItemFoundRarityIncreaseUniqueShieldDemigods"] = { affix = "", "(10-20)% increased Rarity of Items found", statOrder = { 1596 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(10-20)% increased Rarity of Items found" }, } }, - ["ItemFoundRarityIncreaseUnique__1"] = { affix = "", "10% increased Rarity of Items found", statOrder = { 1596 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "10% increased Rarity of Items found" }, } }, - ["ItemFoundRarityIncreaseUnique__2"] = { affix = "", "30% increased Rarity of Items found", statOrder = { 1596 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "30% increased Rarity of Items found" }, } }, - ["ItemFoundRarityIncreaseUnique__3"] = { affix = "", "(6-30)% increased Rarity of Items found", statOrder = { 1596 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(6-30)% increased Rarity of Items found" }, } }, - ["ItemFoundRarityIncreaseUnique__4_"] = { affix = "", "(10-20)% increased Rarity of Items found", statOrder = { 1596 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(10-20)% increased Rarity of Items found" }, } }, - ["ItemFoundRarityIncreaseUnique__5"] = { affix = "", "(15-25)% increased Rarity of Items found", statOrder = { 1596 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(15-25)% increased Rarity of Items found" }, } }, - ["ItemFoundRarityIncreaseUnique__6"] = { affix = "", "(15-25)% increased Rarity of Items found", statOrder = { 1596 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(15-25)% increased Rarity of Items found" }, } }, - ["ItemFoundRarityIncreaseUnique__7"] = { affix = "", "(5-15)% increased Rarity of Items found", statOrder = { 1596 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(5-15)% increased Rarity of Items found" }, } }, - ["ItemFoundRarityIncreaseUnique__8"] = { affix = "", "(10-20)% increased Rarity of Items found", statOrder = { 1596 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(10-20)% increased Rarity of Items found" }, } }, - ["ItemFoundRarityIncreaseUnique__9"] = { affix = "", "(20-30)% increased Rarity of Items found", statOrder = { 1596 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(20-30)% increased Rarity of Items found" }, } }, - ["ItemFoundRarityIncreaseUnique__10"] = { affix = "", "(20-40)% increased Rarity of Items found", statOrder = { 1596 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(20-40)% increased Rarity of Items found" }, } }, - ["ReducedEnergyShieldDelayUniqueBodyInt1"] = { affix = "", "10% faster start of Energy Shield Recharge", statOrder = { 1562 }, level = 1, group = "EnergyShieldDelay", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1782086450] = { "10% faster start of Energy Shield Recharge" }, } }, - ["ReducedEnergyShieldDelayUniqueDagger4"] = { affix = "", "(40-80)% faster start of Energy Shield Recharge", statOrder = { 1562 }, level = 1, group = "EnergyShieldDelay", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1782086450] = { "(40-80)% faster start of Energy Shield Recharge" }, } }, - ["ReducedEnergyShieldDelayUniqueQuiver7"] = { affix = "", "80% faster start of Energy Shield Recharge", statOrder = { 1562 }, level = 1, group = "EnergyShieldDelay", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1782086450] = { "80% faster start of Energy Shield Recharge" }, } }, - ["ReducedEnergyShieldDelayUniqueBelt11"] = { affix = "", "50% increased Energy Shield Recharge Rate", statOrder = { 1565 }, level = 28, group = "EnergyShieldRegeneration", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2339757871] = { "50% increased Energy Shield Recharge Rate" }, } }, - ["IncreasedEnergyShieldDelayUniqueHelmetInt4"] = { affix = "", "50% reduced Energy Shield Recharge Rate", statOrder = { 1565 }, level = 1, group = "EnergyShieldRegeneration", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2339757871] = { "50% reduced Energy Shield Recharge Rate" }, } }, - ["ReducedEnergyShieldDelayUnique__1"] = { affix = "", "(30-50)% faster start of Energy Shield Recharge", statOrder = { 1562 }, level = 1, group = "EnergyShieldDelay", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1782086450] = { "(30-50)% faster start of Energy Shield Recharge" }, } }, - ["ReducedEnergyShieldDelayImplicit1_"] = { affix = "", "(10-15)% faster start of Energy Shield Recharge", statOrder = { 1562 }, level = 93, group = "EnergyShieldDelay", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1782086450] = { "(10-15)% faster start of Energy Shield Recharge" }, } }, - ["IncreasedCastSpeedImplicitMarakethWand1"] = { affix = "", "10% increased Cast Speed", statOrder = { 1446 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "10% increased Cast Speed" }, } }, - ["IncreasedCastSpeedImplicitMarakethWand2"] = { affix = "", "14% increased Cast Speed", statOrder = { 1446 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "14% increased Cast Speed" }, } }, - ["IncreasedCastSpeedUniqueAmulet1"] = { affix = "", "(15-20)% increased Cast Speed", statOrder = { 1446 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(15-20)% increased Cast Speed" }, } }, - ["IncreasedCastSpeedUniqueStaff1"] = { affix = "", "10% increased Cast Speed", statOrder = { 1446 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "10% increased Cast Speed" }, } }, - ["IncreasedCastSpeedUniqueIntHelmet2"] = { affix = "", "(10-15)% increased Cast Speed", statOrder = { 1446 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(10-15)% increased Cast Speed" }, } }, - ["IncreasedCastSpeedUniqueGlovesInt2"] = { affix = "", "(15-25)% reduced Cast Speed", statOrder = { 1446 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(15-25)% reduced Cast Speed" }, } }, - ["IncreasedCastSpeedUniqueGlovesStr1"] = { affix = "", "(10-15)% increased Cast Speed", statOrder = { 1446 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(10-15)% increased Cast Speed" }, } }, - ["IncreasedCastSpeedUniqueWand1"] = { affix = "", "10% increased Cast Speed", statOrder = { 1446 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "10% increased Cast Speed" }, } }, - ["IncreasedCastSpeedUniqueStaff2"] = { affix = "", "(10-20)% increased Cast Speed", statOrder = { 1446 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(10-20)% increased Cast Speed" }, } }, - ["IncreasedCastSpeedUniqueGlovesInt4"] = { affix = "", "10% increased Cast Speed", statOrder = { 1446 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "10% increased Cast Speed" }, } }, - ["IncreasedCastSpeedUniqueWand3"] = { affix = "", "(10-20)% increased Cast Speed", statOrder = { 1446 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(10-20)% increased Cast Speed" }, } }, - ["IncreasedCastSpeedUniqueAmulet16"] = { affix = "", "10% reduced Cast Speed", statOrder = { 1446 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "10% reduced Cast Speed" }, } }, - ["IncreasedCastSpeedUniqueClaw7"] = { affix = "", "(15-20)% increased Cast Speed", statOrder = { 1446 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(15-20)% increased Cast Speed" }, } }, - ["IncreasedCastSpeedUniqueDescentWand1"] = { affix = "", "12% increased Cast Speed", statOrder = { 1446 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "12% increased Cast Speed" }, } }, - ["IncreasedCastSpeedUniqueSceptre6"] = { affix = "", "(15-18)% increased Cast Speed", statOrder = { 1446 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(15-18)% increased Cast Speed" }, } }, - ["IncreasedCastSpeedUniqueWand4"] = { affix = "", "(5-8)% increased Cast Speed", statOrder = { 1446 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(5-8)% increased Cast Speed" }, } }, - ["IncreasedCastSpeedUniqueGlovesDemigods1"] = { affix = "", "(6-10)% increased Cast Speed", statOrder = { 1446 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(6-10)% increased Cast Speed" }, } }, - ["IncreasedCastSpeedUniqueStaff5"] = { affix = "", "18% increased Cast Speed", statOrder = { 1446 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "18% increased Cast Speed" }, } }, - ["IncreasedCastSpeedUniqueSceptre7"] = { affix = "", "(6-10)% increased Cast Speed", statOrder = { 1446 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(6-10)% increased Cast Speed" }, } }, - ["IncreasedCastSpeedUniqueWand7"] = { affix = "", "(25-30)% increased Cast Speed", statOrder = { 1446 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(25-30)% increased Cast Speed" }, } }, - ["IncreasedCastSpeedUniqueRing27"] = { affix = "", "(10-15)% increased Cast Speed", statOrder = { 1446 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(10-15)% increased Cast Speed" }, } }, - ["ReducedCastSpeedUniqueBootsDex5"] = { affix = "", "10% reduced Cast Speed", statOrder = { 1446 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "10% reduced Cast Speed" }, } }, - ["ReducedCastSpeedUniqueHelmetInt8"] = { affix = "", "15% reduced Cast Speed", statOrder = { 1446 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "15% reduced Cast Speed" }, } }, - ["ReducedCastSpeedUniqueHelmetStrInt6"] = { affix = "", "15% reduced Cast Speed", statOrder = { 1446 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "15% reduced Cast Speed" }, } }, - ["ReducedCastSpeedUniqueGlovesStrInt4_"] = { affix = "", "(20-30)% reduced Cast Speed", statOrder = { 1446 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(20-30)% reduced Cast Speed" }, } }, - ["ReducedCastSpeedUnique__1_"] = { affix = "", "(20-30)% reduced Cast Speed", statOrder = { 1446 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(20-30)% reduced Cast Speed" }, } }, - ["IncreasedCastSpeedUniqueAmulet20"] = { affix = "", "(10-25)% increased Cast Speed", statOrder = { 1446 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(10-25)% increased Cast Speed" }, } }, - ["IncreasedCastSpeedUniqueStaff12"] = { affix = "", "(8-12)% increased Cast Speed", statOrder = { 1446 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(8-12)% increased Cast Speed" }, } }, - ["IncreasedCastSpeedUniqueWand10"] = { affix = "", "10% increased Cast Speed", statOrder = { 1446 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "10% increased Cast Speed" }, } }, - ["IncreasedCastSpeedUniqueWand11"] = { affix = "", "(7-13)% increased Cast Speed", statOrder = { 1446 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(7-13)% increased Cast Speed" }, } }, - ["IncreasedCastSpeedUniqueTwoHandMace8"] = { affix = "", "(8-12)% increased Cast Speed", statOrder = { 1446 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(8-12)% increased Cast Speed" }, } }, - ["IncreasedCastSpeedUniqueRing38"] = { affix = "", "(5-10)% increased Cast Speed", statOrder = { 1446 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(5-10)% increased Cast Speed" }, } }, - ["IncreasedCastSpeedUnique__1"] = { affix = "", "(4-8)% increased Cast Speed", statOrder = { 1446 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(4-8)% increased Cast Speed" }, } }, - ["IncreasedCastSpeedUnique__2"] = { affix = "", "(14-18)% increased Cast Speed", statOrder = { 1446 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(14-18)% increased Cast Speed" }, } }, - ["IncreasedCastSpeedUnique__3"] = { affix = "", "(30-40)% increased Cast Speed", statOrder = { 1446 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(30-40)% increased Cast Speed" }, } }, - ["IncreasedCastSpeedUnique__4"] = { affix = "", "(4-6)% increased Cast Speed", statOrder = { 1446 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(4-6)% increased Cast Speed" }, } }, - ["IncreasedCastSpeedUnique__5"] = { affix = "", "(8-12)% increased Cast Speed", statOrder = { 1446 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(8-12)% increased Cast Speed" }, } }, - ["IncreasedCastSpeedUnique__6"] = { affix = "", "(5-10)% increased Cast Speed", statOrder = { 1446 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(5-10)% increased Cast Speed" }, } }, - ["IncreasedCastSpeedUnique__7"] = { affix = "", "(10-15)% increased Cast Speed", statOrder = { 1446 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(10-15)% increased Cast Speed" }, } }, - ["IncreasedCastSpeedUnique__8"] = { affix = "", "(10-20)% increased Cast Speed", statOrder = { 1446 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(10-20)% increased Cast Speed" }, } }, - ["IncreasedCastSpeedUnique__9"] = { affix = "", "(8-12)% increased Cast Speed", statOrder = { 1446 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(8-12)% increased Cast Speed" }, } }, - ["IncreasedCastSpeedUnique__10"] = { affix = "", "(12-20)% increased Cast Speed", statOrder = { 1446 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(12-20)% increased Cast Speed" }, } }, - ["IncreasedCastSpeedUnique__11__"] = { affix = "", "(15-20)% increased Cast Speed", statOrder = { 1446 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(15-20)% increased Cast Speed" }, } }, - ["IncreasedCastSpeedUnique__12"] = { affix = "", "(6-10)% increased Cast Speed", statOrder = { 1446 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(6-10)% increased Cast Speed" }, } }, - ["IncreasedCastSpeedUnique__13"] = { affix = "", "(25-30)% increased Cast Speed", statOrder = { 1446 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(25-30)% increased Cast Speed" }, } }, - ["IncreasedCastSpeedUnique__14"] = { affix = "", "(15-20)% increased Cast Speed", statOrder = { 1446 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(15-20)% increased Cast Speed" }, } }, - ["IncreasedCastSpeedUnique__15_"] = { affix = "", "(5-10)% increased Cast Speed", statOrder = { 1446 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(5-10)% increased Cast Speed" }, } }, - ["IncreasedCastSpeedUnique__16"] = { affix = "", "(15-20)% increased Cast Speed", statOrder = { 1446 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(15-20)% increased Cast Speed" }, } }, - ["IncreasedCastSpeedUnique__17"] = { affix = "", "(1-20)% increased Cast Speed", statOrder = { 1446 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(1-20)% increased Cast Speed" }, } }, - ["IncreasedCastSpeedUnique__18_"] = { affix = "", "(5-7)% increased Cast Speed", statOrder = { 1446 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(5-7)% increased Cast Speed" }, } }, - ["IncreasedCastSpeedUnique__19__"] = { affix = "", "(8-15)% increased Cast Speed", statOrder = { 1446 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(8-15)% increased Cast Speed" }, } }, - ["IncreasedCastSpeedUnique__20"] = { affix = "", "(10-15)% increased Cast Speed", statOrder = { 1446 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(10-15)% increased Cast Speed" }, } }, - ["IncreasedCastSpeedUnique__21"] = { affix = "", "(7-12)% increased Cast Speed", statOrder = { 1446 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(7-12)% increased Cast Speed" }, } }, - ["IncreasedCastSpeedUnique__22"] = { affix = "", "(15-25)% increased Cast Speed", statOrder = { 1446 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(15-25)% increased Cast Speed" }, } }, - ["IncreasedCastSpeedUnique__23"] = { affix = "", "(10-15)% increased Cast Speed", statOrder = { 1446 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(10-15)% increased Cast Speed" }, } }, - ["IncreasedCastSpeedUnique__24"] = { affix = "", "(8-10)% increased Cast Speed", statOrder = { 1446 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(8-10)% increased Cast Speed" }, } }, - ["IncreasedCastSpeedUnique__25"] = { affix = "", "(20-30)% increased Cast Speed", statOrder = { 1446 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(20-30)% increased Cast Speed" }, } }, - ["IncreasedCastSpeedUnique__26"] = { affix = "", "(5-10)% increased Cast Speed", statOrder = { 1446 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(5-10)% increased Cast Speed" }, } }, - ["IncreasedCastSpeedUnique__27"] = { affix = "", "(5-15)% increased Cast Speed", statOrder = { 1446 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(5-15)% increased Cast Speed" }, } }, - ["IncreasedCastSpeedUnique__28"] = { affix = "", "(12-18)% increased Cast Speed", statOrder = { 1446 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(12-18)% increased Cast Speed" }, } }, - ["IncreasedCastSpeedFishing__Unique1"] = { affix = "", "(10-15)% increased Cast Speed", statOrder = { 1446 }, level = 1, group = "IncreasedCastSpeedFishing", weightKey = { }, weightVal = { }, modTags = { "red_herring", "caster", "speed" }, tradeHashes = { [2891184298] = { "(10-15)% increased Cast Speed" }, } }, - ["LocalIncreasedAttackSpeedImplicitMarakethOneHandMace1"] = { affix = "", "4% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "4% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedImplicitMarakethOneHandMace2"] = { affix = "", "6% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "6% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUniqueOneHandSword1"] = { affix = "", "10% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "10% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUniqueBow1"] = { affix = "", "(10-20)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(10-20)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUniqueBow2"] = { affix = "", "10% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "10% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUniqueBow3"] = { affix = "", "10% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "10% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUniqueTwoHandSword1"] = { affix = "", "20% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "20% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUniqueTwoHandSword3"] = { affix = "", "20% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "20% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUniqueRapier1"] = { affix = "", "20% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "20% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUniqueTwoHandMace3"] = { affix = "", "25% reduced Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "25% reduced Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUniqueDagger3"] = { affix = "", "10% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "10% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUniqueOneHandMace1"] = { affix = "", "45% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "45% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUniqueBow4"] = { affix = "", "100% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "100% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUniqueBow5"] = { affix = "", "20% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "20% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUniqueTwoHandMace4"] = { affix = "", "50% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "50% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUniqueBow6"] = { affix = "", "(10-14)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(10-14)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUniqueClaw1"] = { affix = "", "(20-30)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(20-30)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUniqueSceptre1"] = { affix = "", "(10-20)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(10-20)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUniqueClaw2"] = { affix = "", "20% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "20% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUniqueBow8"] = { affix = "", "(36-50)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(36-50)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUniqueClaw3"] = { affix = "", "5% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "5% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUniqueOneHandAxe1"] = { affix = "", "(25-35)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(25-35)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUniqueBow9"] = { affix = "", "(10-15)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(10-15)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedOneHandSword3"] = { affix = "", "(10-20)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(10-20)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUniqueBow10"] = { affix = "", "(10-15)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(10-15)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUniqueTwoHandSword6"] = { affix = "", "(10-15)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(10-15)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUniqueOneHandAxe2"] = { affix = "", "(10-15)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(10-15)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUniqueDescentDagger1"] = { affix = "", "10% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "10% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUniqueDescentBow1"] = { affix = "", "10% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "10% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUniqueDescentOneHandMace1"] = { affix = "", "20% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "20% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUniqueTwoHandAxe7"] = { affix = "", "(12-16)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(12-16)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUniqueSceptre7"] = { affix = "", "(11-15)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(11-15)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUniqueWand6"] = { affix = "", "(10-18)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(10-18)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUniqueBow11"] = { affix = "", "(10-14)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(10-14)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUniqueOneHandSword6"] = { affix = "", "(7-10)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(7-10)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUniqueOneHandSword7"] = { affix = "", "(25-30)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(25-30)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUniqueStaff7"] = { affix = "", "(12-16)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(12-16)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUniqueOneHandSword8"] = { affix = "", "(22-27)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(22-27)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUniqueOneHandSword9"] = { affix = "", "(20-25)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(20-25)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUniqueTwoHandSword8"] = { affix = "", "(6-12)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(6-12)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUniqueStaff9"] = { affix = "", "(5-10)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(5-10)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUniqueSceptre9"] = { affix = "", "(15-20)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(15-20)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUniqueBow12"] = { affix = "", "(7-12)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(7-12)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUniqueOneHandSword11"] = { affix = "", "(20-25)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(20-25)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUniqueClaw8"] = { affix = "", "(10-15)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(10-15)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUniqueWand9"] = { affix = "", "(5-10)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(5-10)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUniqueTwoHandAxe9"] = { affix = "", "(7-12)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(7-12)% increased Attack Speed" }, } }, - ["LocalReducedAttackSpeedUniqueDagger9"] = { affix = "", "20% reduced Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "20% reduced Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUniqueDagger12"] = { affix = "", "10% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "10% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUniqueClaw9"] = { affix = "", "(10-15)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(10-15)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUniqueOneHandAxe7"] = { affix = "", "(7-10)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(7-10)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUniqueOneHandSword12"] = { affix = "", "15% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "15% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUniqueOneHandSword13_"] = { affix = "", "(10-15)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(10-15)% increased Attack Speed" }, } }, - ["LocalReducedAttackSpeedUniqueOneHandMace6"] = { affix = "", "20% reduced Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "20% reduced Attack Speed" }, } }, - ["LocalReducedAttackSpeedUnique__1"] = { affix = "", "50% reduced Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "50% reduced Attack Speed" }, } }, - ["LocalReducedAttackSpeedUnique__2"] = { affix = "", "15% reduced Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "15% reduced Attack Speed" }, } }, - ["LocalReducedAttackSpeedUnique__3"] = { affix = "", "(25-30)% reduced Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(25-30)% reduced Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUniqueOneHandMace8"] = { affix = "", "10% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "10% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUniqueTwoHandMace8_"] = { affix = "", "(8-12)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(8-12)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUnique__2"] = { affix = "", "(8-12)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(8-12)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUnique__1"] = { affix = "", "(4-8)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(4-8)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUnique__3"] = { affix = "", "(5-10)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(5-10)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUnique__4"] = { affix = "", "(10-15)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(10-15)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUnique__5"] = { affix = "", "(25-30)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(25-30)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUnique__6"] = { affix = "", "(14-20)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(14-20)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUnique__7"] = { affix = "", "(10-15)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(10-15)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUnique__8"] = { affix = "", "(10-15)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(10-15)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUnique__9"] = { affix = "", "(8-12)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(8-12)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUnique__10"] = { affix = "", "(8-10)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(8-10)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUnique__11"] = { affix = "", "(8-14)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(8-14)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUnique__12"] = { affix = "", "(8-14)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(8-14)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUnique__13"] = { affix = "", "(10-15)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(10-15)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUnique__14"] = { affix = "", "(17-25)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(17-25)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUnique__15"] = { affix = "", "(16-22)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(16-22)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUnique__16"] = { affix = "", "(8-12)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(8-12)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUnique__17"] = { affix = "", "(10-15)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(10-15)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUnique__18"] = { affix = "", "(8-14)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(8-14)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUnique__19"] = { affix = "", "(5-8)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(5-8)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUnique__20"] = { affix = "", "(10-15)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(10-15)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUnique__21"] = { affix = "", "(20-25)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(20-25)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUnique__22"] = { affix = "", "(10-15)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(10-15)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUnique__23"] = { affix = "", "(10-15)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(10-15)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUnique__24"] = { affix = "", "(8-12)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(8-12)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUnique__25"] = { affix = "", "(15-20)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(15-20)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUnique__26_"] = { affix = "", "(10-15)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(10-15)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUnique__27"] = { affix = "", "(5-8)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(5-8)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUnique__28"] = { affix = "", "(8-12)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(8-12)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUnique__29"] = { affix = "", "(10-15)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(10-15)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUnique__30"] = { affix = "", "(20-30)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(20-30)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUnique__31"] = { affix = "", "(8-12)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(8-12)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUnique__32"] = { affix = "", "(20-26)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(20-26)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUnique__33"] = { affix = "", "(15-20)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(15-20)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUnique__34"] = { affix = "", "(14-18)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(14-18)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUnique__35"] = { affix = "", "(25-30)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(25-30)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUnique__36"] = { affix = "", "(5-10)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(5-10)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUnique__37___"] = { affix = "", "(16-20)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(16-20)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUnique__38"] = { affix = "", "(-16-16)% reduced Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(-16-16)% reduced Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUnique__39"] = { affix = "", "(15-20)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(15-20)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUnique__40"] = { affix = "", "(25-35)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(25-35)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUnique__42"] = { affix = "", "(6-10)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(6-10)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUnique__43"] = { affix = "", "(10-16)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(10-16)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUnique__44"] = { affix = "", "(20-30)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(20-30)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUnique__45"] = { affix = "", "(14-18)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(14-18)% increased Attack Speed" }, } }, - ["IncreasedAttackSpeedImplicitShield1"] = { affix = "", "6% increased Attack Speed", statOrder = { 1410 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "6% increased Attack Speed" }, } }, - ["IncreasedAttackSpeedImplicitShield2"] = { affix = "", "12% increased Attack Speed", statOrder = { 1410 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "12% increased Attack Speed" }, } }, - ["IncreasedAttackSpeedImplicitShield3"] = { affix = "", "18% increased Attack Speed", statOrder = { 1410 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "18% increased Attack Speed" }, } }, - ["IncreasedAttackSpeedImplicitQuiver10New"] = { affix = "", "(8-10)% increased Attack Speed", statOrder = { 1410 }, level = 62, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(8-10)% increased Attack Speed" }, } }, - ["IncreasedAttackSpeedUniqueQuiver1"] = { affix = "", "10% increased Attack Speed", statOrder = { 1410 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "10% increased Attack Speed" }, } }, - ["IncreasedAttackSpeedUniqueIntHelmet2"] = { affix = "", "(10-15)% increased Attack Speed", statOrder = { 1410 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(10-15)% increased Attack Speed" }, } }, - ["IncreasedAttackSpeedUniqueBootsDexInt1"] = { affix = "", "10% increased Attack Speed", statOrder = { 1410 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "10% increased Attack Speed" }, } }, - ["IncreasedAttackSpeedUniqueGlovesDex2"] = { affix = "", "5% increased Attack Speed", statOrder = { 1410 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "5% increased Attack Speed" }, } }, - ["IncreasedAttackSpeedUniqueGlovesStrDex1"] = { affix = "", "(5-10)% increased Attack Speed", statOrder = { 1410 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(5-10)% increased Attack Speed" }, } }, - ["IncreasedAttackSpeedUniqueGlovesStr1"] = { affix = "", "(10-15)% increased Attack Speed", statOrder = { 1410 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(10-15)% increased Attack Speed" }, } }, - ["IncreasedAttackSpeedUniqueHelmetStrDex2"] = { affix = "", "16% increased Attack Speed", statOrder = { 1410 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "16% increased Attack Speed" }, } }, - ["IncreasedAttackSpeedUniqueGlovesStr2"] = { affix = "", "(5-15)% reduced Attack Speed", statOrder = { 1410 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(5-15)% reduced Attack Speed" }, } }, - ["IncreasedAttackSpeedUniqueHelmetDex4"] = { affix = "", "10% increased Attack Speed", statOrder = { 1410 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "10% increased Attack Speed" }, } }, - ["IncreasedAttackSpeedUniqueBodyDex5"] = { affix = "", "10% increased Attack Speed", statOrder = { 1410 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "10% increased Attack Speed" }, } }, - ["IncreasedAttackSpeedUniqueGlovesDexInt3"] = { affix = "", "10% increased Attack Speed", statOrder = { 1410 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "10% increased Attack Speed" }, } }, - ["IncreasedAttackSpeedUniqueHelmetDex6"] = { affix = "", "15% increased Attack Speed", statOrder = { 1410 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "15% increased Attack Speed" }, } }, - ["IncreasedAttackSpeedUniqueBodyStr3"] = { affix = "", "(10-15)% increased Attack Speed", statOrder = { 1410 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(10-15)% increased Attack Speed" }, } }, - ["IncreasedAttackSpeedUniqueGlovesDemigods1"] = { affix = "", "(10-16)% increased Attack Speed", statOrder = { 1410 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(10-16)% increased Attack Speed" }, } }, - ["IncreasedAttackSpeedUniqueBodyDex7"] = { affix = "", "10% increased Attack Speed", statOrder = { 1410 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "10% increased Attack Speed" }, } }, - ["IncreasedAttackSpeedUniqueQuiver3"] = { affix = "", "(8-12)% increased Attack Speed", statOrder = { 1410 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(8-12)% increased Attack Speed" }, } }, - ["IncreasedAttackSpeedUniqueQuiver5"] = { affix = "", "(8-12)% increased Attack Speed", statOrder = { 1410 }, level = 4, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(8-12)% increased Attack Speed" }, } }, - ["IncreasedAttackSpeedUniqueQuiver6"] = { affix = "", "(7-10)% increased Attack Speed", statOrder = { 1410 }, level = 10, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(7-10)% increased Attack Speed" }, } }, - ["IncreasedAttackSpeedUniqueQuiver7"] = { affix = "", "(8-12)% increased Attack Speed", statOrder = { 1410 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(8-12)% increased Attack Speed" }, } }, - ["IncreasedAttackSpeedUniqueGlovesStrDex5"] = { affix = "", "(6-9)% increased Attack Speed", statOrder = { 1410 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(6-9)% increased Attack Speed" }, } }, - ["IncreasedAttackSpeedUniqueShieldDex6"] = { affix = "", "(6-10)% increased Attack Speed", statOrder = { 1410 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(6-10)% increased Attack Speed" }, } }, - ["IncreasedAttackSpeedUniqueShieldDexInt2"] = { affix = "", "(10-15)% increased Attack Speed", statOrder = { 1410 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(10-15)% increased Attack Speed" }, } }, - ["IncreasedAttackSpeedUniqueQuiver9"] = { affix = "", "10% increased Attack Speed", statOrder = { 1410 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "10% increased Attack Speed" }, } }, - ["IncreasedAttackSpeedUniqueRing27"] = { affix = "", "(10-15)% increased Attack Speed", statOrder = { 1410 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(10-15)% increased Attack Speed" }, } }, - ["IncreasedAttackSpeedUniqueShieldInt5"] = { affix = "", "(8-12)% increased Attack Speed", statOrder = { 1410 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(8-12)% increased Attack Speed" }, } }, - ["ReducedAttackSpeedUniqueAmulet16"] = { affix = "", "10% reduced Attack Speed", statOrder = { 1410 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "10% reduced Attack Speed" }, } }, - ["ReducedAttackSpeedUniqueGlovesStrInt4"] = { affix = "", "(20-30)% reduced Attack Speed", statOrder = { 1410 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(20-30)% reduced Attack Speed" }, } }, - ["ReducedAttackSpeedUnique__1"] = { affix = "", "30% reduced Attack Speed", statOrder = { 1410 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "30% reduced Attack Speed" }, } }, - ["ReducedAttackSpeedUnique__2"] = { affix = "", "10% reduced Attack Speed", statOrder = { 1410 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "10% reduced Attack Speed" }, } }, - ["IncreasedAttackSpeedUniqueAmulet20"] = { affix = "", "(10-25)% increased Attack Speed", statOrder = { 1410 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(10-25)% increased Attack Speed" }, } }, - ["IncreasedAttackSpeedUniqueRing37"] = { affix = "", "(5-10)% increased Attack Speed", statOrder = { 1410 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(5-10)% increased Attack Speed" }, } }, - ["IncreasedAttackSpeedUnique_1"] = { affix = "", "(8-13)% increased Attack Speed", statOrder = { 1410 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(8-13)% increased Attack Speed" }, } }, - ["IncreasedAttackSpeedUnique__2"] = { affix = "", "(5-10)% increased Attack Speed", statOrder = { 1410 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(5-10)% increased Attack Speed" }, } }, - ["IncreasedAttackSpeedUnique__3_"] = { affix = "", "(1-20)% increased Attack Speed", statOrder = { 1410 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(1-20)% increased Attack Speed" }, } }, - ["IncreasedAttackSpeedUnique__4_"] = { affix = "", "(7-12)% increased Attack Speed", statOrder = { 1410 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(7-12)% increased Attack Speed" }, } }, - ["IncreasedAttackSpeedUnique__5"] = { affix = "", "(8-12)% increased Attack Speed", statOrder = { 1410 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(8-12)% increased Attack Speed" }, } }, - ["IncreasedAttackSpeedUnique__6"] = { affix = "", "(5-10)% increased Attack Speed", statOrder = { 1410 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(5-10)% increased Attack Speed" }, } }, - ["IncreasedAttackSpeedUnique__7"] = { affix = "", "(6-12)% increased Attack Speed", statOrder = { 1410 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(6-12)% increased Attack Speed" }, } }, - ["IncreasedAttackSpeedUnique__8"] = { affix = "", "(8-16)% increased Attack Speed", statOrder = { 1410 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(8-16)% increased Attack Speed" }, } }, - ["IncreasedAttackSpeedUnique__9"] = { affix = "", "(5-15)% increased Attack Speed", statOrder = { 1410 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(5-15)% increased Attack Speed" }, } }, - ["IncreasedAttackSpeedTransformedUnique__1"] = { affix = "", "(5-10)% increased Attack Speed", statOrder = { 1410 }, level = 30, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(5-10)% increased Attack Speed" }, } }, - ["IncreasedAccuracyUniqueBow2"] = { affix = "", "+30 to Accuracy Rating", statOrder = { 2024 }, level = 1, group = "LocalAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+30 to Accuracy Rating" }, } }, - ["IncreasedAccuracyUniqueTwoHandAxe1"] = { affix = "", "+(150-250) to Accuracy Rating", statOrder = { 2024 }, level = 1, group = "LocalAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+(150-250) to Accuracy Rating" }, } }, - ["IncreasedAccuracyUniqueTwoHandSword1"] = { affix = "", "+(300-350) to Accuracy Rating", statOrder = { 2024 }, level = 1, group = "LocalAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+(300-350) to Accuracy Rating" }, } }, - ["IncreasedAccuracyUniqueAmulet5"] = { affix = "", "+100 to Accuracy Rating", statOrder = { 1433 }, level = 7, group = "IncreasedAccuracy", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+100 to Accuracy Rating" }, } }, - ["IncreasedAccuracyUniqueStrDexHelmet1"] = { affix = "", "+500 to Accuracy Rating", statOrder = { 1433 }, level = 1, group = "IncreasedAccuracy", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+500 to Accuracy Rating" }, } }, - ["IncreasedAccuracyUniqueGlovesDexInt1"] = { affix = "", "+(100-200) to Accuracy Rating", statOrder = { 1433 }, level = 1, group = "IncreasedAccuracy", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(100-200) to Accuracy Rating" }, } }, - ["IncreasedAccuracyUniqueAmulet7"] = { affix = "", "+(100-150) to Accuracy Rating", statOrder = { 1433 }, level = 1, group = "IncreasedAccuracy", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(100-150) to Accuracy Rating" }, } }, - ["IncreasedAccuracyUniqueTwoHandMace3"] = { affix = "", "-500 to Accuracy Rating", statOrder = { 2024 }, level = 1, group = "LocalAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [691932474] = { "-500 to Accuracy Rating" }, } }, - ["IncreasedAccuracyUniqueBow4"] = { affix = "", "+(25-50) to Accuracy Rating", statOrder = { 2024 }, level = 1, group = "LocalAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+(25-50) to Accuracy Rating" }, } }, - ["IncreasedAccuracyUniqueBow7"] = { affix = "", "+(350-400) to Accuracy Rating", statOrder = { 2024 }, level = 1, group = "LocalAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+(350-400) to Accuracy Rating" }, } }, - ["IncreasedAccuracyUniqueRing12"] = { affix = "", "+(300-350) to Accuracy Rating", statOrder = { 1433 }, level = 1, group = "IncreasedAccuracy", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(300-350) to Accuracy Rating" }, } }, - ["IncreasedAccuracyUniqueHelmetInt7"] = { affix = "", "+(300-350) to Accuracy Rating", statOrder = { 1433 }, level = 1, group = "IncreasedAccuracy", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(300-350) to Accuracy Rating" }, } }, - ["IncreasedAccuracyUniqueTwoHandAxe5"] = { affix = "", "+(120-150) to Accuracy Rating", statOrder = { 2024 }, level = 1, group = "LocalAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+(120-150) to Accuracy Rating" }, } }, - ["ReducedAccuracyUniqueTwoHandSword5"] = { affix = "", "-150 to Accuracy Rating", statOrder = { 1433 }, level = 1, group = "IncreasedAccuracy", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [803737631] = { "-150 to Accuracy Rating" }, } }, - ["IncreasedAccuracyUniqueAmulet17_"] = { affix = "", "+(80-120) to Accuracy Rating", statOrder = { 1433 }, level = 1, group = "IncreasedAccuracy", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(80-120) to Accuracy Rating" }, } }, - ["IncreasedAccuracyUniqueDescentBow1"] = { affix = "", "+30 to Accuracy Rating", statOrder = { 1433 }, level = 1, group = "IncreasedAccuracy", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+30 to Accuracy Rating" }, } }, - ["IncreasedAccuracyUniqueRing17"] = { affix = "", "+333 to Accuracy Rating", statOrder = { 1433 }, level = 1, group = "IncreasedAccuracy", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+333 to Accuracy Rating" }, } }, - ["IncreasedAccuracyUniqueWand6"] = { affix = "", "+(340-400) to Accuracy Rating", statOrder = { 2024 }, level = 1, group = "LocalAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+(340-400) to Accuracy Rating" }, } }, - ["IncreasedAccuracyUniqueOneHandSword9"] = { affix = "", "+(280-300) to Accuracy Rating", statOrder = { 2024 }, level = 1, group = "LocalAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+(280-300) to Accuracy Rating" }, } }, - ["IncreasedAccuracyUniqueTwoHandSword7"] = { affix = "", "+(90-120) to Accuracy Rating", statOrder = { 1433 }, level = 1, group = "IncreasedAccuracy", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(90-120) to Accuracy Rating" }, } }, - ["IncreasedAccuracyUniqueSceptre8"] = { affix = "", "+(160-220) to Accuracy Rating", statOrder = { 1433 }, level = 1, group = "IncreasedAccuracy", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(160-220) to Accuracy Rating" }, } }, - ["IncreasedAccuracyUnique__1"] = { affix = "", "+(300-400) to Accuracy Rating", statOrder = { 2024 }, level = 1, group = "LocalAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+(300-400) to Accuracy Rating" }, } }, - ["IncreasedAccuracyUnique__2"] = { affix = "", "+(350-400) to Accuracy Rating", statOrder = { 2024 }, level = 1, group = "LocalAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+(350-400) to Accuracy Rating" }, } }, - ["IncreasedAccuracyUnique__3"] = { affix = "", "+(600-1000) to Accuracy Rating", statOrder = { 1433 }, level = 1, group = "IncreasedAccuracy", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(600-1000) to Accuracy Rating" }, } }, - ["IncreasedAccuracyUnique__4"] = { affix = "", "+(800-1000) to Accuracy Rating", statOrder = { 1433 }, level = 1, group = "IncreasedAccuracy", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(800-1000) to Accuracy Rating" }, } }, - ["IncreasedAccuracyUnique__5"] = { affix = "", "+(300-400) to Accuracy Rating", statOrder = { 1433 }, level = 1, group = "IncreasedAccuracy", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(300-400) to Accuracy Rating" }, } }, - ["IncreasedAccuracyUnique__6"] = { affix = "", "+(150-250) to Accuracy Rating", statOrder = { 1433 }, level = 1, group = "IncreasedAccuracy", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(150-250) to Accuracy Rating" }, } }, - ["IncreasedAccuracyUnique__7_"] = { affix = "", "+(200-300) to Accuracy Rating", statOrder = { 1433 }, level = 1, group = "IncreasedAccuracy", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(200-300) to Accuracy Rating" }, } }, - ["IncreasedAccuracyUnique__8"] = { affix = "", "+(350-500) to Accuracy Rating", statOrder = { 1433 }, level = 1, group = "IncreasedAccuracy", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(350-500) to Accuracy Rating" }, } }, - ["IncreasedAccuracyUnique__9____"] = { affix = "", "-5000 to Accuracy Rating", statOrder = { 1433 }, level = 1, group = "IncreasedAccuracy", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [803737631] = { "-5000 to Accuracy Rating" }, } }, - ["IncreasedAccuracyUnique__10"] = { affix = "", "+(300-500) to Accuracy Rating", statOrder = { 1433 }, level = 1, group = "IncreasedAccuracy", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(300-500) to Accuracy Rating" }, } }, - ["LifeRegenerationUniqueRing1"] = { affix = "", "Regenerate (10-15) Life per second", statOrder = { 1574 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "Regenerate (10-15) Life per second" }, } }, - ["LifeRegenerationImplicitAmulet1"] = { affix = "", "Regenerate (2-4) Life per second", statOrder = { 1574 }, level = 2, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "Regenerate (2-4) Life per second" }, } }, - ["LifeRegenerationImplicitAmulet2"] = { affix = "", "Regenerate (1.2-1.6)% of Life per second", statOrder = { 1944 }, level = 93, group = "LifeRegenerationRatePercentage", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [836936635] = { "Regenerate (1.2-1.6)% of Life per second" }, } }, - ["LifeRegenerationUniqueShieldDex2"] = { affix = "", "Regenerate (5-7.5) Life per second", statOrder = { 1574 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "Regenerate (5-7.5) Life per second" }, } }, - ["LifeRegenerationUniqueTwoHandAxe4"] = { affix = "", "Regenerate 20 Life per second", statOrder = { 1574 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "Regenerate 20 Life per second" }, } }, - ["LifeRegenerationUniqueWreath1"] = { affix = "", "Regenerate 2 Life per second", statOrder = { 1574 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "Regenerate 2 Life per second" }, } }, - ["LifeRegenerationUniqueShieldStrInt5"] = { affix = "", "Regenerate (100-200) Life per second", statOrder = { 1574 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "Regenerate (100-200) Life per second" }, } }, - ["LifeRegenerationUniqueBootsDex5"] = { affix = "", "Regenerate (1.7-2.7) Life per second", statOrder = { 1574 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "Regenerate (1.7-2.7) Life per second" }, } }, - ["LifeRegenerationUniqueBelt8"] = { affix = "", "Regenerate (200-350) Life per second", statOrder = { 1574 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "Regenerate (200-350) Life per second" }, } }, - ["LifeRegenerationUniqueGlovesStrDex5"] = { affix = "", "Regenerate (3-4) Life per second", statOrder = { 1574 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "Regenerate (3-4) Life per second" }, } }, - ["LifeRegenerationUniqueRing26"] = { affix = "", "Regenerate (13-17) Life per second", statOrder = { 1574 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "Regenerate (13-17) Life per second" }, } }, - ["LifeRegenerationUniqueRing33"] = { affix = "", "Regenerate (10-15) Life per second", statOrder = { 1574 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "Regenerate (10-15) Life per second" }, } }, - ["LifeRegenerationUniqueAmulet25"] = { affix = "", "Regenerate (16-24) Life per second", statOrder = { 1574 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "Regenerate (16-24) Life per second" }, } }, - ["LifeRegenerationUnique__1"] = { affix = "", "Regenerate (50-70) Life per second", statOrder = { 1574 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "Regenerate (50-70) Life per second" }, } }, - ["LifeRegenerationUnique__2__"] = { affix = "", "Regenerate (50-70) Life per second", statOrder = { 1574 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "Regenerate (50-70) Life per second" }, } }, - ["LifeRegenerationUnique__3"] = { affix = "", "Regenerate (30-50) Life per second", statOrder = { 1574 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "Regenerate (30-50) Life per second" }, } }, - ["LifeRegenerationUnique__4"] = { affix = "", "Regenerate (200-250) Life per second", statOrder = { 1574 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "Regenerate (200-250) Life per second" }, } }, - ["LifeRegenerationUnique__5"] = { affix = "", "Regenerate (30-50) Life per second", statOrder = { 1574 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "Regenerate (30-50) Life per second" }, } }, - ["LifeRegenerationUnique__6"] = { affix = "", "(15-25)% increased Life Regeneration rate", statOrder = { 1577 }, level = 97, group = "LifeRegenerationRate", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [44972811] = { "(15-25)% increased Life Regeneration rate" }, } }, - ["ManaRegenerationImplicitAmulet1"] = { affix = "", "(20-30)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 2, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(20-30)% increased Mana Regeneration Rate" }, } }, - ["ManaRegenerationImplicitAmulet2"] = { affix = "", "(48-56)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 97, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(48-56)% increased Mana Regeneration Rate" }, } }, - ["ManaRegenerationImplicitDemigodsBelt1"] = { affix = "", "(20-40)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(20-40)% increased Mana Regeneration Rate" }, } }, - ["ManaRegenerationUniqueRing5"] = { affix = "", "50% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "50% increased Mana Regeneration Rate" }, } }, - ["ManaRegenerationUniqueDexHelmet2"] = { affix = "", "60% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "60% increased Mana Regeneration Rate" }, } }, - ["ManaRegenerationUniqueIntHelmet2"] = { affix = "", "30% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "30% increased Mana Regeneration Rate" }, } }, - ["ManaRegenerationUniqueBootsInt2"] = { affix = "", "(20-40)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(20-40)% increased Mana Regeneration Rate" }, } }, - ["ManaRegenerationUniqueBootsDex2"] = { affix = "", "60% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "60% increased Mana Regeneration Rate" }, } }, - ["ManaRegenerationUniqueAmulet10"] = { affix = "", "(80-100)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 20, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(80-100)% increased Mana Regeneration Rate" }, } }, - ["ManaRegenerationUniqueRing14"] = { affix = "", "(45-65)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(45-65)% increased Mana Regeneration Rate" }, } }, - ["ManaRegenerationUniqueBootsDex5"] = { affix = "", "(20-30)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(20-30)% increased Mana Regeneration Rate" }, } }, - ["ManaRegenerationUniqueBelt6"] = { affix = "", "20% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "20% increased Mana Regeneration Rate" }, } }, - ["ManaRegenerationUniqueBodyDexInt2"] = { affix = "", "(40-50)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(40-50)% increased Mana Regeneration Rate" }, } }, - ["ManaRegenerationUniqueBootsStrDex4"] = { affix = "", "(30-40)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(30-40)% increased Mana Regeneration Rate" }, } }, - ["ManaRegenerationUniqueOneHandMace3"] = { affix = "", "(30-50)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(30-50)% increased Mana Regeneration Rate" }, } }, - ["ManaRegenerationUniqueBow11"] = { affix = "", "60% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "60% increased Mana Regeneration Rate" }, } }, - ["ManaRegenerationUniqueGlovesStrInt2"] = { affix = "", "(20-40)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(20-40)% increased Mana Regeneration Rate" }, } }, - ["ManaRegenerationUniqueRingDemigod1"] = { affix = "", "(30-40)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 16, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(30-40)% increased Mana Regeneration Rate" }, } }, - ["ManaRegenerationUniqueRing26"] = { affix = "", "(20-40)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(20-40)% increased Mana Regeneration Rate" }, } }, - ["ManaRegenerationUniqueHelmetStrInt5"] = { affix = "", "20% reduced Mana Regeneration Rate", statOrder = { 1584 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "20% reduced Mana Regeneration Rate" }, } }, - ["ManaRegenerationUniqueRing33"] = { affix = "", "(20-40)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(20-40)% increased Mana Regeneration Rate" }, } }, - ["ManaRegenerationUniqueAmulet21"] = { affix = "", "(60-100)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(60-100)% increased Mana Regeneration Rate" }, } }, - ["ManaRegenerationUniqueRing34"] = { affix = "", "(30-40)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(30-40)% increased Mana Regeneration Rate" }, } }, - ["ManaRegenerationUniqueShieldInt5"] = { affix = "", "(20-40)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(20-40)% increased Mana Regeneration Rate" }, } }, - ["ManaRegenerationUnique__1"] = { affix = "", "(15-25)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(15-25)% increased Mana Regeneration Rate" }, } }, - ["ManaRegenerationUnique__2"] = { affix = "", "(20-30)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(20-30)% increased Mana Regeneration Rate" }, } }, - ["ManaRegenerationUnique__3"] = { affix = "", "(20-40)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(20-40)% increased Mana Regeneration Rate" }, } }, - ["ManaRegenerationUnique__4"] = { affix = "", "(20-30)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(20-30)% increased Mana Regeneration Rate" }, } }, - ["ManaRegenerationUnique__5"] = { affix = "", "(20-40)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(20-40)% increased Mana Regeneration Rate" }, } }, - ["ManaRegenerationUnique__6"] = { affix = "", "(30-40)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(30-40)% increased Mana Regeneration Rate" }, } }, - ["ManaRegenerationUnique__7"] = { affix = "", "(45-50)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(45-50)% increased Mana Regeneration Rate" }, } }, - ["ManaRegenerationUnique__8"] = { affix = "", "(40-45)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(40-45)% increased Mana Regeneration Rate" }, } }, - ["ManaRegenerationUnique__9___"] = { affix = "", "(80-100)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(80-100)% increased Mana Regeneration Rate" }, } }, - ["ManaRegenerationUnique__10"] = { affix = "", "(1-100)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(1-100)% increased Mana Regeneration Rate" }, } }, - ["ManaRegenerationUnique__11___"] = { affix = "", "(40-60)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(40-60)% increased Mana Regeneration Rate" }, } }, - ["ManaRegenerationUnique__12"] = { affix = "", "(25-40)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(25-40)% increased Mana Regeneration Rate" }, } }, - ["ManaRegenerationUnique__13"] = { affix = "", "(25-40)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(25-40)% increased Mana Regeneration Rate" }, } }, - ["ManaRegenerationUnique__14___"] = { affix = "", "60% reduced Mana Regeneration Rate", statOrder = { 1584 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "60% reduced Mana Regeneration Rate" }, } }, - ["ManaRegenerationUnique__15"] = { affix = "", "(30-50)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(30-50)% increased Mana Regeneration Rate" }, } }, - ["ManaRegenerationUnique__16"] = { affix = "", "(60-80)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(60-80)% increased Mana Regeneration Rate" }, } }, - ["ReducedManaRegenerationUniqueRing27"] = { affix = "", "15% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "15% increased Mana Regeneration Rate" }, } }, - ["BaseManaRegenerationUniqueBodyDexInt2"] = { affix = "", "Regenerate 1% of Mana per second", statOrder = { 1581 }, level = 1, group = "BaseManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [3188455409] = { "Regenerate 1% of Mana per second" }, } }, - ["StunThresholdReductionImlicitMarakethOneHandSword1"] = { affix = "", "8% reduced Enemy Stun Threshold", statOrder = { 1517 }, level = 1, group = "StunThresholdReduction", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1443060084] = { "8% reduced Enemy Stun Threshold" }, } }, - ["StunThresholdReductionImlicitMarakethOneHandSword2"] = { affix = "", "12% reduced Enemy Stun Threshold", statOrder = { 1517 }, level = 1, group = "StunThresholdReduction", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1443060084] = { "12% reduced Enemy Stun Threshold" }, } }, - ["StunThresholdReductionImplicitMace1"] = { affix = "", "10% reduced Enemy Stun Threshold", statOrder = { 1517 }, level = 1, group = "StunThresholdReduction", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1443060084] = { "10% reduced Enemy Stun Threshold" }, } }, - ["StunThresholdReductionImplicitMace2"] = { affix = "", "15% reduced Enemy Stun Threshold", statOrder = { 1517 }, level = 1, group = "StunThresholdReduction", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1443060084] = { "15% reduced Enemy Stun Threshold" }, } }, - ["StunThresholdReductionImplicitMace3_"] = { affix = "", "20% reduced Enemy Stun Threshold", statOrder = { 1517 }, level = 1, group = "StunThresholdReduction", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1443060084] = { "20% reduced Enemy Stun Threshold" }, } }, - ["StunThresholdReductionUniqueTwoHandMace1"] = { affix = "", "15% reduced Enemy Stun Threshold", statOrder = { 1517 }, level = 1, group = "StunThresholdReduction", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1443060084] = { "15% reduced Enemy Stun Threshold" }, } }, - ["StunThresholdReductionUniqueQuiver2"] = { affix = "", "(10-15)% reduced Enemy Stun Threshold", statOrder = { 1517 }, level = 1, group = "StunThresholdReduction", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1443060084] = { "(10-15)% reduced Enemy Stun Threshold" }, } }, - ["StunThresholdReductionUniqueGlovesDexInt2"] = { affix = "", "10% reduced Enemy Stun Threshold", statOrder = { 1517 }, level = 1, group = "StunThresholdReduction", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1443060084] = { "10% reduced Enemy Stun Threshold" }, } }, - ["StunThresholdReductionUniqueClaw2_"] = { affix = "", "25% reduced Enemy Stun Threshold with this Weapon", statOrder = { 2497 }, level = 1, group = "LocalStunThresholdReduction", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [832404842] = { "25% reduced Enemy Stun Threshold with this Weapon" }, } }, - ["StunThresholdReductionUniqueClaw6"] = { affix = "", "10% reduced Enemy Stun Threshold with this Weapon", statOrder = { 2497 }, level = 1, group = "LocalStunThresholdReduction", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [832404842] = { "10% reduced Enemy Stun Threshold with this Weapon" }, } }, - ["StunThresholdReductionUniqueTwoHandSword5"] = { affix = "", "25% reduced Enemy Stun Threshold with this Weapon", statOrder = { 2497 }, level = 1, group = "LocalStunThresholdReduction", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [832404842] = { "25% reduced Enemy Stun Threshold with this Weapon" }, } }, - ["StunThresholdReductionUniqueQuiver8"] = { affix = "", "(20-25)% reduced Enemy Stun Threshold", statOrder = { 1517 }, level = 1, group = "StunThresholdReduction", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1443060084] = { "(20-25)% reduced Enemy Stun Threshold" }, } }, - ["StunThresholdReductionUniqueOneHandMace5"] = { affix = "", "(15-25)% reduced Enemy Stun Threshold with this Weapon", statOrder = { 2497 }, level = 1, group = "LocalStunThresholdReduction", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [832404842] = { "(15-25)% reduced Enemy Stun Threshold with this Weapon" }, } }, - ["StunThresholdReductionUniqueStaff11"] = { affix = "", "(15-20)% reduced Enemy Stun Threshold", statOrder = { 1517 }, level = 1, group = "StunThresholdReduction", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1443060084] = { "(15-20)% reduced Enemy Stun Threshold" }, } }, - ["StunThresholdReductionUniqueOneHandMace6"] = { affix = "", "(10-20)% reduced Enemy Stun Threshold", statOrder = { 1517 }, level = 1, group = "StunThresholdReduction", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1443060084] = { "(10-20)% reduced Enemy Stun Threshold" }, } }, - ["StunThresholdReductionUniqueBootsStr3"] = { affix = "", "(5-10)% reduced Enemy Stun Threshold", statOrder = { 1517 }, level = 1, group = "StunThresholdReduction", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1443060084] = { "(5-10)% reduced Enemy Stun Threshold" }, } }, - ["StunThresholdReductionUnique__1___"] = { affix = "", "(20-30)% reduced Enemy Stun Threshold with this Weapon", statOrder = { 2497 }, level = 1, group = "LocalStunThresholdReduction", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [832404842] = { "(20-30)% reduced Enemy Stun Threshold with this Weapon" }, } }, - ["StunThresholdReductionUnique__2"] = { affix = "", "(20-30)% reduced Enemy Stun Threshold with this Weapon", statOrder = { 2497 }, level = 1, group = "LocalStunThresholdReduction", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [832404842] = { "(20-30)% reduced Enemy Stun Threshold with this Weapon" }, } }, - ["CriticalStrikeChanceImplicitDagger1"] = { affix = "", "30% increased Global Critical Strike Chance", statOrder = { 1460 }, level = 1, group = "CriticalStrikeChanceDaggerImplicit1", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [340093681] = { "30% increased Global Critical Strike Chance" }, } }, - ["CriticalStrikeChanceImplicitDagger2"] = { affix = "", "40% increased Global Critical Strike Chance", statOrder = { 1461 }, level = 1, group = "CriticalStrikeChanceDaggerImplicit2", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [1824597675] = { "40% increased Global Critical Strike Chance" }, } }, - ["CriticalStrikeChanceImplicitDagger3"] = { affix = "", "50% increased Global Critical Strike Chance", statOrder = { 1462 }, level = 1, group = "CriticalStrikeChanceDaggerImplicit3", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [1410117599] = { "50% increased Global Critical Strike Chance" }, } }, - ["CriticalStrikeChanceImplicitDaggerNew1"] = { affix = "", "30% increased Global Critical Strike Chance", statOrder = { 1459 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [587431675] = { "30% increased Global Critical Strike Chance" }, } }, - ["CriticalStrikeChanceImplicitDaggerNew2"] = { affix = "", "40% increased Global Critical Strike Chance", statOrder = { 1459 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [587431675] = { "40% increased Global Critical Strike Chance" }, } }, - ["CriticalStrikeChanceImplicitDaggerNew3"] = { affix = "", "50% increased Global Critical Strike Chance", statOrder = { 1459 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [587431675] = { "50% increased Global Critical Strike Chance" }, } }, - ["CriticalStrikeChanceImplicitQuiver13"] = { affix = "", "(20-30)% increased Global Critical Strike Chance", statOrder = { 1459 }, level = 57, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(20-30)% increased Global Critical Strike Chance" }, } }, - ["CriticalStrikeChanceImplicitQuiver8New"] = { affix = "", "(20-30)% increased Critical Strike Chance with Bows", statOrder = { 1465 }, level = 50, group = "CriticalStrikeChanceWithBows", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [2091591880] = { "(20-30)% increased Critical Strike Chance with Bows" }, } }, - ["CriticalStrikeChanceImplicitMarakethStaff1"] = { affix = "", "80% increased Global Critical Strike Chance", statOrder = { 1459 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [587431675] = { "80% increased Global Critical Strike Chance" }, } }, - ["CriticalStrikeChanceImplicitMarakethStaff2"] = { affix = "", "100% increased Global Critical Strike Chance", statOrder = { 1459 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [587431675] = { "100% increased Global Critical Strike Chance" }, } }, - ["CriticalStrikeChanceUniqueOneHandSword2"] = { affix = "", "50% increased Global Critical Strike Chance", statOrder = { 1459 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [587431675] = { "50% increased Global Critical Strike Chance" }, } }, - ["CriticalStrikeChanceUniqueGlovesDex2"] = { affix = "", "50% increased Global Critical Strike Chance", statOrder = { 1459 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [587431675] = { "50% increased Global Critical Strike Chance" }, } }, - ["CriticalStrikeChanceUniqueRapier1"] = { affix = "", "30% increased Global Critical Strike Chance", statOrder = { 1459 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [587431675] = { "30% increased Global Critical Strike Chance" }, } }, - ["CriticalStrikeChanceUniqueDagger3"] = { affix = "", "50% increased Global Critical Strike Chance", statOrder = { 1459 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [587431675] = { "50% increased Global Critical Strike Chance" }, } }, - ["CriticalStrikeChanceUniqueBodyInt4"] = { affix = "", "100% increased Global Critical Strike Chance", statOrder = { 1459 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [587431675] = { "100% increased Global Critical Strike Chance" }, } }, - ["CriticalStrikeChanceUniqueHelmetDex4"] = { affix = "", "25% increased Global Critical Strike Chance", statOrder = { 1459 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [587431675] = { "25% increased Global Critical Strike Chance" }, } }, - ["CriticalStrikeChanceUniqueHelmetDex6"] = { affix = "", "(60-75)% increased Global Critical Strike Chance", statOrder = { 1459 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(60-75)% increased Global Critical Strike Chance" }, } }, - ["CriticalStrikeChanceUniqueWand3"] = { affix = "", "(50-65)% increased Global Critical Strike Chance", statOrder = { 1459 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(50-65)% increased Global Critical Strike Chance" }, } }, - ["CriticalStrikeChanceImplicitRing1"] = { affix = "", "(20-30)% increased Global Critical Strike Chance", statOrder = { 1459 }, level = 25, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(20-30)% increased Global Critical Strike Chance" }, } }, - ["CriticalStrikeChanceUniqueRing11_"] = { affix = "", "(30-35)% increased Global Critical Strike Chance", statOrder = { 1459 }, level = 35, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(30-35)% increased Global Critical Strike Chance" }, } }, - ["CriticalStrikeChanceUniqueAmulet17"] = { affix = "", "(200-250)% increased Global Critical Strike Chance", statOrder = { 1459 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(200-250)% increased Global Critical Strike Chance" }, } }, - ["CriticalStrikeChanceUniqueGlovesStr3"] = { affix = "", "(40-60)% increased Global Critical Strike Chance", statOrder = { 1459 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(40-60)% increased Global Critical Strike Chance" }, } }, - ["CriticalStrikeChanceUniqueGlovesDexInt6"] = { affix = "", "(20-30)% increased Global Critical Strike Chance", statOrder = { 1459 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(20-30)% increased Global Critical Strike Chance" }, } }, - ["CriticalStrikeChanceUniqueBow9"] = { affix = "", "(30-40)% increased Critical Strike Chance", statOrder = { 1464 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "(30-40)% increased Critical Strike Chance" }, } }, - ["CriticalSrikeChanceUniqueSceptre7"] = { affix = "", "(30-40)% increased Global Critical Strike Chance", statOrder = { 1459 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(30-40)% increased Global Critical Strike Chance" }, } }, - ["CriticalStrikeChanceUniqueAmulet18"] = { affix = "", "(250-350)% increased Global Critical Strike Chance", statOrder = { 1459 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(250-350)% increased Global Critical Strike Chance" }, } }, - ["CriticalStrikeChanceUniqueWand10"] = { affix = "", "(40-60)% increased Global Critical Strike Chance", statOrder = { 1459 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(40-60)% increased Global Critical Strike Chance" }, } }, - ["CriticalStrikeChanceUnique__2"] = { affix = "", "(20-60)% increased Global Critical Strike Chance", statOrder = { 1459 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(20-60)% increased Global Critical Strike Chance" }, } }, - ["CriticalStrikeChanceUnique__3"] = { affix = "", "(50-70)% increased Global Critical Strike Chance", statOrder = { 1459 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(50-70)% increased Global Critical Strike Chance" }, } }, - ["CriticalStrikeChanceUnique__4_"] = { affix = "", "(120-160)% increased Global Critical Strike Chance", statOrder = { 1459 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(120-160)% increased Global Critical Strike Chance" }, } }, - ["CriticalStrikeChanceUnique__5__"] = { affix = "", "(15-25)% increased Global Critical Strike Chance", statOrder = { 1459 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(15-25)% increased Global Critical Strike Chance" }, } }, - ["CriticalStrikeChanceUnique__6"] = { affix = "", "(30-50)% increased Global Critical Strike Chance", statOrder = { 1459 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(30-50)% increased Global Critical Strike Chance" }, } }, - ["LocalCriticalStrikeChanceImplicitMarakethTwoHandAxe1"] = { affix = "", "50% increased Critical Strike Chance", statOrder = { 1464 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "50% increased Critical Strike Chance" }, } }, - ["LocalCriticalStrikeChanceImplicitMarakethTwoHandAxe2"] = { affix = "", "50% increased Critical Strike Chance", statOrder = { 1464 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "50% increased Critical Strike Chance" }, } }, - ["LocalCriticalStrikeChanceUniqueBow11"] = { affix = "", "(30-40)% increased Critical Strike Chance", statOrder = { 1464 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "(30-40)% increased Critical Strike Chance" }, } }, - ["LocalCriticalStrikeChanceUniqueClaw2"] = { affix = "", "25% increased Critical Strike Chance", statOrder = { 1464 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "25% increased Critical Strike Chance" }, } }, - ["LocalCriticalStrikeChanceImplicitBow1"] = { affix = "", "(30-50)% increased Critical Strike Chance", statOrder = { 1464 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "(30-50)% increased Critical Strike Chance" }, } }, - ["LocalCriticalStrikeChanceUniqueStaff7"] = { affix = "", "(10-20)% increased Critical Strike Chance", statOrder = { 1464 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "(10-20)% increased Critical Strike Chance" }, } }, - ["LocalCriticalStrikeChanceUniqueOneHandSword8"] = { affix = "", "(20-30)% increased Critical Strike Chance", statOrder = { 1464 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "(20-30)% increased Critical Strike Chance" }, } }, - ["LocalCriticalStrikeChanceUniqueOneHandMace4"] = { affix = "", "(15-40)% increased Critical Strike Chance", statOrder = { 1464 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "(15-40)% increased Critical Strike Chance" }, } }, - ["LocalCriticalStrikeChanceUniquSceptre10"] = { affix = "", "(25-50)% increased Critical Strike Chance", statOrder = { 1464 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "(25-50)% increased Critical Strike Chance" }, } }, - ["LocalCriticalStrikeChanceUniqueOneHandSword10"] = { affix = "", "(44-66)% increased Critical Strike Chance", statOrder = { 1464 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "(44-66)% increased Critical Strike Chance" }, } }, - ["LocalCriticalStrikeChanceUniqueWand9"] = { affix = "", "(10-20)% increased Critical Strike Chance", statOrder = { 1464 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "(10-20)% increased Critical Strike Chance" }, } }, - ["LocalCriticalStrikeChanceUniqueDagger11"] = { affix = "", "30% increased Critical Strike Chance", statOrder = { 1464 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "30% increased Critical Strike Chance" }, } }, - ["LocalCriticalStrikeChanceUnique__1"] = { affix = "", "(26-32)% increased Critical Strike Chance", statOrder = { 1464 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "(26-32)% increased Critical Strike Chance" }, } }, - ["LocalCriticalStrikeChanceUnique__2"] = { affix = "", "(22-30)% increased Critical Strike Chance", statOrder = { 1464 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "(22-30)% increased Critical Strike Chance" }, } }, - ["LocalCriticalStrikeChanceUnique14"] = { affix = "", "(15-25)% increased Critical Strike Chance", statOrder = { 1464 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "(15-25)% increased Critical Strike Chance" }, } }, - ["LocalCriticalStrikeChanceUnique__3"] = { affix = "", "(30-40)% increased Critical Strike Chance", statOrder = { 1464 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "(30-40)% increased Critical Strike Chance" }, } }, - ["LocalCriticalStrikeChanceUnique__4"] = { affix = "", "(40-50)% increased Critical Strike Chance", statOrder = { 1464 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "(40-50)% increased Critical Strike Chance" }, } }, - ["LocalCriticalStrikeChanceUnique__5"] = { affix = "", "(15-25)% increased Critical Strike Chance", statOrder = { 1464 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "(15-25)% increased Critical Strike Chance" }, } }, - ["LocalCriticalStrikeChanceUnique__6"] = { affix = "", "(40-60)% increased Critical Strike Chance", statOrder = { 1464 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "(40-60)% increased Critical Strike Chance" }, } }, - ["LocalCriticalStrikeChanceUnique__7"] = { affix = "", "(20-35)% increased Critical Strike Chance", statOrder = { 1464 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "(20-35)% increased Critical Strike Chance" }, } }, - ["LocalCriticalStrikeChanceUnique__8"] = { affix = "", "(50-75)% increased Critical Strike Chance", statOrder = { 1464 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "(50-75)% increased Critical Strike Chance" }, } }, - ["LocalCriticalStrikeChanceUnique__9"] = { affix = "", "(30-40)% increased Critical Strike Chance", statOrder = { 1464 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "(30-40)% increased Critical Strike Chance" }, } }, - ["LocalCriticalStrikeChanceUnique__10"] = { affix = "", "(30-40)% increased Critical Strike Chance", statOrder = { 1464 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "(30-40)% increased Critical Strike Chance" }, } }, - ["LocalCriticalStrikeChanceUnique__11"] = { affix = "", "(20-25)% increased Critical Strike Chance", statOrder = { 1464 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "(20-25)% increased Critical Strike Chance" }, } }, - ["LocalCriticalStrikeChanceUnique__12"] = { affix = "", "(15-25)% increased Critical Strike Chance", statOrder = { 1464 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "(15-25)% increased Critical Strike Chance" }, } }, - ["LocalCriticalStrikeChanceUnique__13"] = { affix = "", "(70-90)% increased Critical Strike Chance", statOrder = { 1464 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "(70-90)% increased Critical Strike Chance" }, } }, - ["LocalCriticalStrikeChanceUnique__14"] = { affix = "", "(80-100)% increased Critical Strike Chance", statOrder = { 1464 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "(80-100)% increased Critical Strike Chance" }, } }, - ["LocalCriticalStrikeChanceUnique__15"] = { affix = "", "(25-35)% increased Critical Strike Chance", statOrder = { 1464 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "(25-35)% increased Critical Strike Chance" }, } }, - ["LocalCriticalStrikeChanceUnique__16"] = { affix = "", "(8-12)% increased Critical Strike Chance", statOrder = { 1464 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "(8-12)% increased Critical Strike Chance" }, } }, - ["LocalCriticalStrikeChanceUnique__17_"] = { affix = "", "(22-28)% increased Critical Strike Chance", statOrder = { 1464 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "(22-28)% increased Critical Strike Chance" }, } }, - ["LocalCriticalStrikeChanceUnique__18"] = { affix = "", "(60-80)% increased Critical Strike Chance", statOrder = { 1464 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "(60-80)% increased Critical Strike Chance" }, } }, - ["LocalCriticalStrikeChanceUnique__19"] = { affix = "", "(40-50)% increased Critical Strike Chance", statOrder = { 1464 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "(40-50)% increased Critical Strike Chance" }, } }, - ["LocalCriticalStrikeChanceUnique__20"] = { affix = "", "(20-40)% increased Critical Strike Chance", statOrder = { 1464 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "(20-40)% increased Critical Strike Chance" }, } }, - ["LocalCriticalStrikeChanceUnique__21"] = { affix = "", "(15-30)% increased Critical Strike Chance", statOrder = { 1464 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "(15-30)% increased Critical Strike Chance" }, } }, - ["LocalCriticalStrikeChanceUnique__22"] = { affix = "", "(20-40)% increased Critical Strike Chance", statOrder = { 1464 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "(20-40)% increased Critical Strike Chance" }, } }, - ["LocalCriticalStrikeChanceUnique__23"] = { affix = "", "(20-30)% increased Critical Strike Chance", statOrder = { 1464 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "(20-30)% increased Critical Strike Chance" }, } }, - ["LocalCriticalStrikeChanceUnique__24"] = { affix = "", "(100-200)% increased Critical Strike Chance", statOrder = { 1464 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "(100-200)% increased Critical Strike Chance" }, } }, - ["LocalCriticalStrikeChanceUnique__25"] = { affix = "", "(20-40)% increased Critical Strike Chance", statOrder = { 1464 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "(20-40)% increased Critical Strike Chance" }, } }, - ["LocalCriticalStrikeChanceUnique__26"] = { affix = "", "(20-40)% increased Critical Strike Chance", statOrder = { 1464 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "(20-40)% increased Critical Strike Chance" }, } }, - ["LocalCriticalStrikeChanceUnique__27"] = { affix = "", "(20-30)% increased Critical Strike Chance", statOrder = { 1464 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "(20-30)% increased Critical Strike Chance" }, } }, - ["LocalCriticalStrikeChanceUnique__28"] = { affix = "", "(20-30)% increased Critical Strike Chance", statOrder = { 1464 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "(20-30)% increased Critical Strike Chance" }, } }, - ["FireResistImplicitRing1"] = { affix = "", "+(20-30)% to Fire Resistance", statOrder = { 1625 }, level = 20, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(20-30)% to Fire Resistance" }, } }, - ["FireResistImplicitAmulet1"] = { affix = "", "+(20-30)% to Fire Resistance", statOrder = { 1625 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(20-30)% to Fire Resistance" }, } }, - ["FireResistUniqueDexHelmet2"] = { affix = "", "+(20-30)% to Fire Resistance", statOrder = { 1625 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(20-30)% to Fire Resistance" }, } }, - ["FireResistUniqueHelmetStrInt2"] = { affix = "", "+(20-30)% to Fire Resistance", statOrder = { 1625 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(20-30)% to Fire Resistance" }, } }, - ["FireResistUniqueAmulet4"] = { affix = "", "+(20-30)% to Fire Resistance", statOrder = { 1625 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(20-30)% to Fire Resistance" }, } }, - ["FireResistUniqueBootsDexInt1"] = { affix = "", "+(30-40)% to Fire Resistance", statOrder = { 1625 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(30-40)% to Fire Resistance" }, } }, - ["FireResistUniqueAmulet7"] = { affix = "", "+20% to Fire Resistance", statOrder = { 1625 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+20% to Fire Resistance" }, } }, - ["FireResistUniqueBelt3"] = { affix = "", "+20% to Fire Resistance", statOrder = { 1625 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+20% to Fire Resistance" }, } }, - ["FireResistUniqueShieldStrDex1"] = { affix = "", "+(10-20)% to Fire Resistance", statOrder = { 1625 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(10-20)% to Fire Resistance" }, } }, - ["FireResistUniqueBootsDex2"] = { affix = "", "+(40-50)% to Fire Resistance", statOrder = { 1625 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(40-50)% to Fire Resistance" }, } }, - ["FireResistUniqueOneHandMace1"] = { affix = "", "+(20-30)% to Fire Resistance", statOrder = { 1625 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(20-30)% to Fire Resistance" }, } }, - ["FireResistUniqueBodyDex3"] = { affix = "", "+(40-50)% to Fire Resistance", statOrder = { 1625 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(40-50)% to Fire Resistance" }, } }, - ["FireResistUniqueBodyInt2"] = { affix = "", "+(50-75)% to Fire Resistance", statOrder = { 1625 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(50-75)% to Fire Resistance" }, } }, - ["FireResistUniqueShieldStr3"] = { affix = "", "+(35-50)% to Fire Resistance", statOrder = { 1625 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(35-50)% to Fire Resistance" }, } }, - ["FireResistUniqueShieldStrInt5"] = { affix = "", "+(20-25)% to Fire Resistance", statOrder = { 1625 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(20-25)% to Fire Resistance" }, } }, - ["FireResistUniqueBodyInt5"] = { affix = "", "+(15-30)% to Fire Resistance", statOrder = { 1625 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(15-30)% to Fire Resistance" }, } }, - ["FireResistUniqueAmulet13"] = { affix = "", "+(30-40)% to Fire Resistance", statOrder = { 1625 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(30-40)% to Fire Resistance" }, } }, - ["FireResistUniqueAmulet16"] = { affix = "", "+(30-45)% to Fire Resistance", statOrder = { 1625 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(30-45)% to Fire Resistance" }, } }, - ["FireResistUniqueHelmetInt7"] = { affix = "", "-30% to Fire Resistance", statOrder = { 1625 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "-30% to Fire Resistance" }, } }, - ["FireResistanceBodyDex6"] = { affix = "", "+(6-10)% to Fire Resistance", statOrder = { 1625 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(6-10)% to Fire Resistance" }, } }, - ["FireResistUniqueOneHandSword4"] = { affix = "", "+(40-50)% to Fire Resistance", statOrder = { 1625 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(40-50)% to Fire Resistance" }, } }, - ["FireResistUniqueBelt6"] = { affix = "", "+(20-30)% to Fire Resistance", statOrder = { 1625 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(20-30)% to Fire Resistance" }, } }, - ["FireResistUniqueBelt9"] = { affix = "", "+(30-35)% to Fire Resistance", statOrder = { 1625 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(30-35)% to Fire Resistance" }, } }, - ["FireResistUniqueRing15"] = { affix = "", "+(25-35)% to Fire Resistance", statOrder = { 1625 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(25-35)% to Fire Resistance" }, } }, - ["FireResistUniqueBootsStrInt3"] = { affix = "", "+(50-60)% to Fire Resistance", statOrder = { 1625 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(50-60)% to Fire Resistance" }, } }, - ["FireResistUniqueBelt13"] = { affix = "", "+(10-20)% to Fire Resistance", statOrder = { 1625 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(10-20)% to Fire Resistance" }, } }, - ["FireResistUniqueBodyStr5"] = { affix = "", "-10% to Fire Resistance", statOrder = { 1625 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "-10% to Fire Resistance" }, } }, - ["FireResistUniqueRing32"] = { affix = "", "+(-25-50)% to Fire Resistance", statOrder = { 1625 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(-25-50)% to Fire Resistance" }, } }, - ["FireResistUniqueBelt14"] = { affix = "", "+(20-40)% to Fire Resistance", statOrder = { 1625 }, level = 65, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(20-40)% to Fire Resistance" }, } }, - ["FireResistUniqueShieldStrDex3"] = { affix = "", "+(30-50)% to Fire Resistance", statOrder = { 1625 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(30-50)% to Fire Resistance" }, } }, - ["FireResistUniqueOneHandAxe7_"] = { affix = "", "+(15-25)% to Fire Resistance", statOrder = { 1625 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(15-25)% to Fire Resistance" }, } }, - ["FireResistUniqueBootsStr3_"] = { affix = "", "+(20-30)% to Fire Resistance", statOrder = { 1625 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(20-30)% to Fire Resistance" }, } }, - ["FireResistUnique__1"] = { affix = "", "+(20-30)% to Fire Resistance", statOrder = { 1625 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(20-30)% to Fire Resistance" }, } }, - ["FireResistUnique__2"] = { affix = "", "+(15-30)% to Fire Resistance", statOrder = { 1625 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(15-30)% to Fire Resistance" }, } }, - ["FireResistUnique__3"] = { affix = "", "-10% to Fire Resistance", statOrder = { 1625 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "-10% to Fire Resistance" }, } }, - ["FireResistUnique__4"] = { affix = "", "+(40-50)% to Fire Resistance", statOrder = { 1625 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(40-50)% to Fire Resistance" }, } }, - ["FireResistUnique__5"] = { affix = "", "+(20-30)% to Fire Resistance", statOrder = { 1625 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(20-30)% to Fire Resistance" }, } }, - ["FireResistUnique__6"] = { affix = "", "+(30-50)% to Fire Resistance", statOrder = { 1625 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(30-50)% to Fire Resistance" }, } }, - ["FireResistUnique__7_"] = { affix = "", "+(26-32)% to Fire Resistance", statOrder = { 1625 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(26-32)% to Fire Resistance" }, } }, - ["FireResistUnique__8"] = { affix = "", "+(30-40)% to Fire Resistance", statOrder = { 1625 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(30-40)% to Fire Resistance" }, } }, - ["FireResistUnique__9"] = { affix = "", "+(20-40)% to Fire Resistance", statOrder = { 1625 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(20-40)% to Fire Resistance" }, } }, - ["FireResistUnique__10"] = { affix = "", "-30% to Fire Resistance", statOrder = { 1625 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "-30% to Fire Resistance" }, } }, - ["FireResistUnique__11"] = { affix = "", "-50% to Fire Resistance", statOrder = { 1625 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "-50% to Fire Resistance" }, } }, - ["FireResistUnique__12"] = { affix = "", "+(30-40)% to Fire Resistance", statOrder = { 1625 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(30-40)% to Fire Resistance" }, } }, - ["FireResistUnique__13"] = { affix = "", "+(20-30)% to Fire Resistance", statOrder = { 1625 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(20-30)% to Fire Resistance" }, } }, - ["FireResistUnique__14"] = { affix = "", "+(20-25)% to Fire Resistance", statOrder = { 1625 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(20-25)% to Fire Resistance" }, } }, - ["FireResistUnique__15"] = { affix = "", "+(10-20)% to Fire Resistance", statOrder = { 1625 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(10-20)% to Fire Resistance" }, } }, - ["FireResistUnique__16"] = { affix = "", "+(30-40)% to Fire Resistance", statOrder = { 1625 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(30-40)% to Fire Resistance" }, } }, - ["FireResistUnique__18"] = { affix = "", "+(20-30)% to Fire Resistance", statOrder = { 1625 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(20-30)% to Fire Resistance" }, } }, - ["FireResistUnique__19"] = { affix = "", "+(20-30)% to Fire Resistance", statOrder = { 1625 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(20-30)% to Fire Resistance" }, } }, - ["FireResistUnique__20_"] = { affix = "", "+(30-40)% to Fire Resistance", statOrder = { 1625 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(30-40)% to Fire Resistance" }, } }, - ["FireResistUnique__21"] = { affix = "", "+(20-30)% to Fire Resistance", statOrder = { 1625 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(20-30)% to Fire Resistance" }, } }, - ["FireResistUnique__22_"] = { affix = "", "-(30-20)% to Fire Resistance", statOrder = { 1625 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "-(30-20)% to Fire Resistance" }, } }, - ["FireResistUnique__23_"] = { affix = "", "+(20-40)% to Fire Resistance", statOrder = { 1625 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(20-40)% to Fire Resistance" }, } }, - ["FireResistUnique__24"] = { affix = "", "+(15-25)% to Fire Resistance", statOrder = { 1625 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(15-25)% to Fire Resistance" }, } }, - ["FireResistUnique__25"] = { affix = "", "+(20-40)% to Fire Resistance", statOrder = { 1625 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(20-40)% to Fire Resistance" }, } }, - ["FireResistUnique__26"] = { affix = "", "+(40-60)% to Fire Resistance", statOrder = { 1625 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(40-60)% to Fire Resistance" }, } }, - ["FireResistUnique__27_"] = { affix = "", "+(15-25)% to Fire Resistance", statOrder = { 1625 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(15-25)% to Fire Resistance" }, } }, - ["FireResistUnique__28_"] = { affix = "", "+(-30-30)% to Fire Resistance", statOrder = { 1625 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(-30-30)% to Fire Resistance" }, } }, - ["FireResistUnique__29"] = { affix = "", "+(20-40)% to Fire Resistance", statOrder = { 1625 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(20-40)% to Fire Resistance" }, } }, - ["FireResistUnique__30"] = { affix = "", "+(20-30)% to Fire Resistance", statOrder = { 1625 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(20-30)% to Fire Resistance" }, } }, - ["FireResistUnique__32"] = { affix = "", "+(15-25)% to Fire Resistance", statOrder = { 1625 }, level = 83, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(15-25)% to Fire Resistance" }, } }, - ["FireResistUnique__34"] = { affix = "", "+(10-40)% to Fire Resistance", statOrder = { 1625 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(10-40)% to Fire Resistance" }, } }, - ["FireResistUnique__35"] = { affix = "", "+(20-30)% to Fire Resistance", statOrder = { 1625 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(20-30)% to Fire Resistance" }, } }, - ["FireResistUnique__36"] = { affix = "", "+(5-30)% to Fire Resistance", statOrder = { 1625 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(5-30)% to Fire Resistance" }, } }, - ["FireResistUnique__37"] = { affix = "", "+(20-30)% to Fire Resistance", statOrder = { 1625 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(20-30)% to Fire Resistance" }, } }, - ["FireResistUnique__38"] = { affix = "", "+(35-50)% to Fire Resistance", statOrder = { 1625 }, level = 30, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(35-50)% to Fire Resistance" }, } }, - ["ColdResistImplicitRing1"] = { affix = "", "+(20-30)% to Cold Resistance", statOrder = { 1631 }, level = 10, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(20-30)% to Cold Resistance" }, } }, - ["ColdResistUniqueAmulet3"] = { affix = "", "+25% to Cold Resistance", statOrder = { 1631 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+25% to Cold Resistance" }, } }, - ["ColdResistDexHelmet2"] = { affix = "", "+(20-30)% to Cold Resistance", statOrder = { 1631 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(20-30)% to Cold Resistance" }, } }, - ["ColdResistUniqueStrHelmet2"] = { affix = "", "+30% to Cold Resistance", statOrder = { 1631 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+30% to Cold Resistance" }, } }, - ["ColdResistUniqueHelmetStrInt2"] = { affix = "", "+(20-30)% to Cold Resistance", statOrder = { 1631 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(20-30)% to Cold Resistance" }, } }, - ["ColdResistUniqueGlovesDex1"] = { affix = "", "+(20-30)% to Cold Resistance", statOrder = { 1631 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(20-30)% to Cold Resistance" }, } }, - ["ColdResistUniqueBelt1"] = { affix = "", "+(20-30)% to Cold Resistance", statOrder = { 1631 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(20-30)% to Cold Resistance" }, } }, - ["ColdResistUniqueBelt4"] = { affix = "", "+(10-20)% to Cold Resistance", statOrder = { 1631 }, level = 10, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(10-20)% to Cold Resistance" }, } }, - ["ColdResistUniqueShieldStrDex1"] = { affix = "", "+(10-20)% to Cold Resistance", statOrder = { 1631 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(10-20)% to Cold Resistance" }, } }, - ["ColdResistUniqueShieldDex1"] = { affix = "", "+50% to Cold Resistance", statOrder = { 1631 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+50% to Cold Resistance" }, } }, - ["ColdResistUniqueHelmetDex5"] = { affix = "", "+(20-30)% to Cold Resistance", statOrder = { 1631 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(20-30)% to Cold Resistance" }, } }, - ["ColdResistUniqueBodyInt5"] = { affix = "", "+(15-30)% to Cold Resistance", statOrder = { 1631 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(15-30)% to Cold Resistance" }, } }, - ["ColdResistUniqueBodyStrInt3"] = { affix = "", "+(50-75)% to Cold Resistance", statOrder = { 1631 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(50-75)% to Cold Resistance" }, } }, - ["ColdResistUniqueGlovesStrDex3"] = { affix = "", "+(40-50)% to Cold Resistance", statOrder = { 1631 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(40-50)% to Cold Resistance" }, } }, - ["ColdResistUniqueAmulet13"] = { affix = "", "+(30-40)% to Cold Resistance", statOrder = { 1631 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(30-40)% to Cold Resistance" }, } }, - ["ColdResistUniqueOneHandAxe1_"] = { affix = "", "+(20-25)% to Cold Resistance", statOrder = { 1631 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(20-25)% to Cold Resistance" }, } }, - ["ColdResistanceBodyDex6"] = { affix = "", "+(26-40)% to Cold Resistance", statOrder = { 1631 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(26-40)% to Cold Resistance" }, } }, - ["ColdResistUniqueBootsDexInt2"] = { affix = "", "+20% to Cold Resistance", statOrder = { 1631 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+20% to Cold Resistance" }, } }, - ["ColdResistUniqueBodyDex7"] = { affix = "", "+(30-40)% to Cold Resistance", statOrder = { 1631 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(30-40)% to Cold Resistance" }, } }, - ["ColdResistUniqueShieldInt3"] = { affix = "", "+(10-20)% to Cold Resistance", statOrder = { 1631 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(10-20)% to Cold Resistance" }, } }, - ["ColdResistUniqueGlovesStrDex4"] = { affix = "", "+40% to Cold Resistance", statOrder = { 1631 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+40% to Cold Resistance" }, } }, - ["ColdResistUniqueBelt9"] = { affix = "", "+(30-35)% to Cold Resistance", statOrder = { 1631 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(30-35)% to Cold Resistance" }, } }, - ["ColdResistUniqueQuiver5"] = { affix = "", "+(30-40)% to Cold Resistance", statOrder = { 1631 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(30-40)% to Cold Resistance" }, } }, - ["ColdResistUniqueRing24"] = { affix = "", "+(25-40)% to Cold Resistance", statOrder = { 1631 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(25-40)% to Cold Resistance" }, } }, - ["ColdResistUniqueBootsDex8"] = { affix = "", "+20% to Cold Resistance", statOrder = { 1631 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+20% to Cold Resistance" }, } }, - ["ColdResistUniqueBelt13"] = { affix = "", "+(10-20)% to Cold Resistance", statOrder = { 1631 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(10-20)% to Cold Resistance" }, } }, - ["ColdResistUniqueRing28"] = { affix = "", "+(10-15)% to Cold Resistance", statOrder = { 1631 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(10-15)% to Cold Resistance" }, } }, - ["ColdResistUniqueBodyStr5"] = { affix = "", "+(20-30)% to Cold Resistance", statOrder = { 1631 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(20-30)% to Cold Resistance" }, } }, - ["ColdResistUniqueGlovesStrInt3"] = { affix = "", "+(40-50)% to Cold Resistance", statOrder = { 1631 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(40-50)% to Cold Resistance" }, } }, - ["ColdResistUniqueRing32"] = { affix = "", "+(-25-50)% to Cold Resistance", statOrder = { 1631 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(-25-50)% to Cold Resistance" }, } }, - ["ColdResistUniqueBelt14"] = { affix = "", "+(20-40)% to Cold Resistance", statOrder = { 1631 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(20-40)% to Cold Resistance" }, } }, - ["ColdResistUniqueShieldDex7"] = { affix = "", "+(20-40)% to Cold Resistance", statOrder = { 1631 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(20-40)% to Cold Resistance" }, } }, - ["ColdResistUniqueBootsStrDex5"] = { affix = "", "+(20-30)% to Cold Resistance", statOrder = { 1631 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(20-30)% to Cold Resistance" }, } }, - ["ColdResistUnique__3"] = { affix = "", "+(20-30)% to Cold Resistance", statOrder = { 1631 }, level = 23, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(20-30)% to Cold Resistance" }, } }, - ["ColdResistUnique__4"] = { affix = "", "+(30-40)% to Cold Resistance", statOrder = { 1631 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(30-40)% to Cold Resistance" }, } }, - ["ColdResistUnique__1"] = { affix = "", "+(20-30)% to Cold Resistance", statOrder = { 1631 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(20-30)% to Cold Resistance" }, } }, - ["ColdResistUnique__2"] = { affix = "", "+(20-30)% to Cold Resistance", statOrder = { 1631 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(20-30)% to Cold Resistance" }, } }, - ["ColdResistUnique__5"] = { affix = "", "+75% to Cold Resistance", statOrder = { 1631 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+75% to Cold Resistance" }, } }, - ["ColdResistUnique__6"] = { affix = "", "+(15-25)% to Cold Resistance", statOrder = { 1631 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(15-25)% to Cold Resistance" }, } }, - ["ColdResistUnique__7"] = { affix = "", "+(32-40)% to Cold Resistance", statOrder = { 1631 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(32-40)% to Cold Resistance" }, } }, - ["ColdResistUnique__8"] = { affix = "", "+(20-40)% to Cold Resistance", statOrder = { 1631 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(20-40)% to Cold Resistance" }, } }, - ["ColdResistUnique__9"] = { affix = "", "-40% to Cold Resistance", statOrder = { 1631 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "-40% to Cold Resistance" }, } }, - ["ColdResistUnique__10"] = { affix = "", "+(30-50)% to Cold Resistance", statOrder = { 1631 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(30-50)% to Cold Resistance" }, } }, - ["ColdResistUnique__11"] = { affix = "", "+(35-40)% to Cold Resistance", statOrder = { 1631 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(35-40)% to Cold Resistance" }, } }, - ["ColdResistUnique__12"] = { affix = "", "+(20-40)% to Cold Resistance", statOrder = { 1631 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(20-40)% to Cold Resistance" }, } }, - ["ColdResistUnique__13"] = { affix = "", "+(20-40)% to Cold Resistance", statOrder = { 1631 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(20-40)% to Cold Resistance" }, } }, - ["ColdResistUnique__14"] = { affix = "", "-30% to Cold Resistance", statOrder = { 1631 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "-30% to Cold Resistance" }, } }, - ["ColdResistUnique__15"] = { affix = "", "+(20-40)% to Cold Resistance", statOrder = { 1631 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(20-40)% to Cold Resistance" }, } }, - ["ColdResistUnique__16"] = { affix = "", "+(30-40)% to Cold Resistance", statOrder = { 1631 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(30-40)% to Cold Resistance" }, } }, - ["ColdResistUnique__17"] = { affix = "", "+(30-40)% to Cold Resistance", statOrder = { 1631 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(30-40)% to Cold Resistance" }, } }, - ["ColdResistUnique__18"] = { affix = "", "+(30-40)% to Cold Resistance", statOrder = { 1631 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(30-40)% to Cold Resistance" }, } }, - ["ColdResistUnique__19"] = { affix = "", "+(15-25)% to Cold Resistance", statOrder = { 1631 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(15-25)% to Cold Resistance" }, } }, - ["ColdResistUnique__20"] = { affix = "", "+(20-25)% to Cold Resistance", statOrder = { 1631 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(20-25)% to Cold Resistance" }, } }, - ["ColdResistUnique__21"] = { affix = "", "+(10-20)% to Cold Resistance", statOrder = { 1631 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(10-20)% to Cold Resistance" }, } }, - ["ColdResistUnique__22_"] = { affix = "", "+(20-30)% to Cold Resistance", statOrder = { 1631 }, level = 80, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(20-30)% to Cold Resistance" }, } }, - ["ColdResistUnique__23"] = { affix = "", "+(25-30)% to Cold Resistance", statOrder = { 1631 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(25-30)% to Cold Resistance" }, } }, - ["ColdResistUnique__24"] = { affix = "", "+(25-30)% to Cold Resistance", statOrder = { 1631 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(25-30)% to Cold Resistance" }, } }, - ["ColdResistUnique__25"] = { affix = "", "+(25-35)% to Cold Resistance", statOrder = { 1631 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(25-35)% to Cold Resistance" }, } }, - ["ColdResistUnique__26"] = { affix = "", "+(30-40)% to Cold Resistance", statOrder = { 1631 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(30-40)% to Cold Resistance" }, } }, - ["ColdResistUnique__27"] = { affix = "", "+(30-40)% to Cold Resistance", statOrder = { 1631 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(30-40)% to Cold Resistance" }, } }, - ["ColdResistUnique__28"] = { affix = "", "+(20-30)% to Cold Resistance", statOrder = { 1631 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(20-30)% to Cold Resistance" }, } }, - ["ColdResistUnique__29"] = { affix = "", "+(20-30)% to Cold Resistance", statOrder = { 1631 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(20-30)% to Cold Resistance" }, } }, - ["ColdResistUnique__30"] = { affix = "", "+(30-40)% to Cold Resistance", statOrder = { 1631 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(30-40)% to Cold Resistance" }, } }, - ["ColdResistUnique__31_"] = { affix = "", "+(20-40)% to Cold Resistance", statOrder = { 1631 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(20-40)% to Cold Resistance" }, } }, - ["ColdResistUnique__32"] = { affix = "", "+(20-30)% to Cold Resistance", statOrder = { 1631 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(20-30)% to Cold Resistance" }, } }, - ["ColdResistUnique__33"] = { affix = "", "+(40-60)% to Cold Resistance", statOrder = { 1631 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(40-60)% to Cold Resistance" }, } }, - ["ColdResistUnique__34"] = { affix = "", "+(15-25)% to Cold Resistance", statOrder = { 1631 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(15-25)% to Cold Resistance" }, } }, - ["ColdResistUnique__35"] = { affix = "", "+(-30-30)% to Cold Resistance", statOrder = { 1631 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(-30-30)% to Cold Resistance" }, } }, - ["ColdResistUnique__36_"] = { affix = "", "+(20-40)% to Cold Resistance", statOrder = { 1631 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(20-40)% to Cold Resistance" }, } }, - ["ColdResistUnique__37"] = { affix = "", "+(20-30)% to Cold Resistance", statOrder = { 1631 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(20-30)% to Cold Resistance" }, } }, - ["ColdResistUnique__38"] = { affix = "", "+(15-25)% to Cold Resistance", statOrder = { 1631 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(15-25)% to Cold Resistance" }, } }, - ["ColdResistUnique__39"] = { affix = "", "+(10-40)% to Cold Resistance", statOrder = { 1631 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(10-40)% to Cold Resistance" }, } }, - ["ColdResistUnique__40"] = { affix = "", "+(20-30)% to Cold Resistance", statOrder = { 1631 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(20-30)% to Cold Resistance" }, } }, - ["ColdResistUnique__41"] = { affix = "", "+(20-30)% to Cold Resistance", statOrder = { 1631 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(20-30)% to Cold Resistance" }, } }, - ["ColdResistUnique__42"] = { affix = "", "+(5-30)% to Cold Resistance", statOrder = { 1631 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(5-30)% to Cold Resistance" }, } }, - ["ColdResistUnique__43"] = { affix = "", "+(20-30)% to Cold Resistance", statOrder = { 1631 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(20-30)% to Cold Resistance" }, } }, - ["LightningResistImplicitRing1"] = { affix = "", "+(20-30)% to Lightning Resistance", statOrder = { 1636 }, level = 15, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(20-30)% to Lightning Resistance" }, } }, - ["LightningResistUniqueHelmetDexInt1"] = { affix = "", "+(20-30)% to Lightning Resistance", statOrder = { 1636 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(20-30)% to Lightning Resistance" }, } }, - ["LightningResistUniqueDexHelmet1"] = { affix = "", "+(20-30)% to Lightning Resistance", statOrder = { 1636 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(20-30)% to Lightning Resistance" }, } }, - ["LightningResistUniqueStrDexHelmet1"] = { affix = "", "+30% to Lightning Resistance", statOrder = { 1636 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+30% to Lightning Resistance" }, } }, - ["LightningResistUniqueHelmetStrInt2"] = { affix = "", "+(20-30)% to Lightning Resistance", statOrder = { 1636 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(20-30)% to Lightning Resistance" }, } }, - ["LightningResistUniqueShieldStrDex1"] = { affix = "", "+(10-20)% to Lightning Resistance", statOrder = { 1636 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(10-20)% to Lightning Resistance" }, } }, - ["LightningResistUniqueShieldInt1"] = { affix = "", "+25% to Lightning Resistance", statOrder = { 1636 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+25% to Lightning Resistance" }, } }, - ["LightningResistUniqueShieldDex2"] = { affix = "", "+30% to Lightning Resistance", statOrder = { 1636 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+30% to Lightning Resistance" }, } }, - ["LightningResistUniqueOneHandMace1"] = { affix = "", "+(20-30)% to Lightning Resistance", statOrder = { 1636 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(20-30)% to Lightning Resistance" }, } }, - ["LightningResistUniqueBodyInt1"] = { affix = "", "+(30-40)% to Lightning Resistance", statOrder = { 1636 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(30-40)% to Lightning Resistance" }, } }, - ["LightningResistUniqueBodyInt5"] = { affix = "", "+(15-30)% to Lightning Resistance", statOrder = { 1636 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(15-30)% to Lightning Resistance" }, } }, - ["LightningResistUniqueBootsStrDex2"] = { affix = "", "+(20-40)% to Lightning Resistance", statOrder = { 1636 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(20-40)% to Lightning Resistance" }, } }, - ["LightningResistUniqueAmulet15"] = { affix = "", "+(30-40)% to Lightning Resistance", statOrder = { 1636 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(30-40)% to Lightning Resistance" }, } }, - ["LightningResistanceBodyDex6"] = { affix = "", "+(11-25)% to Lightning Resistance", statOrder = { 1636 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(11-25)% to Lightning Resistance" }, } }, - ["LightningResistUniqueBodyStrDex2"] = { affix = "", "-60% to Lightning Resistance", statOrder = { 1636 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "-60% to Lightning Resistance" }, } }, - ["LightningResistUniqueDescentTwoHandSword1"] = { affix = "", "+40% to Lightning Resistance", statOrder = { 1636 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+40% to Lightning Resistance" }, } }, - ["LightningResistUniqueShieldInt3"] = { affix = "", "+(10-20)% to Lightning Resistance", statOrder = { 1636 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(10-20)% to Lightning Resistance" }, } }, - ["LightningResistUniqueBelt9"] = { affix = "", "+(30-35)% to Lightning Resistance", statOrder = { 1636 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(30-35)% to Lightning Resistance" }, } }, - ["LightningResistUniqueBelt11"] = { affix = "", "+(5-10)% to Lightning Resistance", statOrder = { 1636 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(5-10)% to Lightning Resistance" }, } }, - ["LightningResistUniqueBodyStr5"] = { affix = "", "-(20-10)% to Lightning Resistance", statOrder = { 1636 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "-(20-10)% to Lightning Resistance" }, } }, - ["LightningResistUniqueRing32"] = { affix = "", "+(-25-50)% to Lightning Resistance", statOrder = { 1636 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(-25-50)% to Lightning Resistance" }, } }, - ["LightningResistUniqueRing35"] = { affix = "", "+(20-40)% to Lightning Resistance", statOrder = { 1636 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(20-40)% to Lightning Resistance" }, } }, - ["LightningResistUniqueBootsDexInt4"] = { affix = "", "+(20-30)% to Lightning Resistance", statOrder = { 1636 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(20-30)% to Lightning Resistance" }, } }, - ["LightningResistUniqueHelmetInt10"] = { affix = "", "+(25-35)% to Lightning Resistance", statOrder = { 1636 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(25-35)% to Lightning Resistance" }, } }, - ["LightningResistUnique__1"] = { affix = "", "+(15-30)% to Lightning Resistance", statOrder = { 1636 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(15-30)% to Lightning Resistance" }, } }, - ["LightningResistUnique__2"] = { affix = "", "+(20-30)% to Lightning Resistance", statOrder = { 1636 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(20-30)% to Lightning Resistance" }, } }, - ["LightningResistUnique__3"] = { affix = "", "+(20-40)% to Lightning Resistance", statOrder = { 1636 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(20-40)% to Lightning Resistance" }, } }, - ["LightningResistUnique__4"] = { affix = "", "+(20-30)% to Lightning Resistance", statOrder = { 1636 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(20-30)% to Lightning Resistance" }, } }, - ["LightningResistUnique__5"] = { affix = "", "+(20-40)% to Lightning Resistance", statOrder = { 1636 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(20-40)% to Lightning Resistance" }, } }, - ["LightningResistUnique__6"] = { affix = "", "+(15-20)% to Lightning Resistance", statOrder = { 1636 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(15-20)% to Lightning Resistance" }, } }, - ["LightningResistUnique__7"] = { affix = "", "+(35-40)% to Lightning Resistance", statOrder = { 1636 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(35-40)% to Lightning Resistance" }, } }, - ["LightningResistUnique__8"] = { affix = "", "+(30-40)% to Lightning Resistance", statOrder = { 1636 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(30-40)% to Lightning Resistance" }, } }, - ["LightningResistUnique__9"] = { affix = "", "-30% to Lightning Resistance", statOrder = { 1636 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "-30% to Lightning Resistance" }, } }, - ["LightningResistUnique__10"] = { affix = "", "+(30-40)% to Lightning Resistance", statOrder = { 1636 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(30-40)% to Lightning Resistance" }, } }, - ["LightningResistUnique__11"] = { affix = "", "+(20-25)% to Lightning Resistance", statOrder = { 1636 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(20-25)% to Lightning Resistance" }, } }, - ["LightningResistUnique__12"] = { affix = "", "+(20-40)% to Lightning Resistance", statOrder = { 1636 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(20-40)% to Lightning Resistance" }, } }, - ["LightningResistUnique__13"] = { affix = "", "+(1-50)% to Lightning Resistance", statOrder = { 1636 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(1-50)% to Lightning Resistance" }, } }, - ["LightningResistUnique__14"] = { affix = "", "+(30-40)% to Lightning Resistance", statOrder = { 1636 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(30-40)% to Lightning Resistance" }, } }, - ["LightningResistUnique__15"] = { affix = "", "+(20-30)% to Lightning Resistance", statOrder = { 1636 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(20-30)% to Lightning Resistance" }, } }, - ["LightningResistUnique__16"] = { affix = "", "+(30-40)% to Lightning Resistance", statOrder = { 1636 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(30-40)% to Lightning Resistance" }, } }, - ["LightningResistUnique__17_"] = { affix = "", "+(25-30)% to Lightning Resistance", statOrder = { 1636 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(25-30)% to Lightning Resistance" }, } }, - ["LightningResistUnique__18"] = { affix = "", "+(25-30)% to Lightning Resistance", statOrder = { 1636 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(25-30)% to Lightning Resistance" }, } }, - ["LightningResistUnique__19_"] = { affix = "", "+(30-40)% to Lightning Resistance", statOrder = { 1636 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(30-40)% to Lightning Resistance" }, } }, - ["LightningResistUnique__20"] = { affix = "", "+(20-30)% to Lightning Resistance", statOrder = { 1636 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(20-30)% to Lightning Resistance" }, } }, - ["LightningResistUnique__21"] = { affix = "", "+(20-30)% to Lightning Resistance", statOrder = { 1636 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(20-30)% to Lightning Resistance" }, } }, - ["LightningResistUnique__22"] = { affix = "", "+(20-30)% to Lightning Resistance", statOrder = { 1636 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(20-30)% to Lightning Resistance" }, } }, - ["LightningResistUnique__23_"] = { affix = "", "+75% to Lightning Resistance", statOrder = { 1636 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+75% to Lightning Resistance" }, } }, - ["LightningResistUnique__24"] = { affix = "", "+(40-60)% to Lightning Resistance", statOrder = { 1636 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(40-60)% to Lightning Resistance" }, } }, - ["LightningResistUnique__25"] = { affix = "", "+(-30-30)% to Lightning Resistance", statOrder = { 1636 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(-30-30)% to Lightning Resistance" }, } }, - ["LightningResistUnique__26"] = { affix = "", "+(50-75)% to Lightning Resistance", statOrder = { 1636 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(50-75)% to Lightning Resistance" }, } }, - ["LightningResistUnique__27"] = { affix = "", "+(15-25)% to Lightning Resistance", statOrder = { 1636 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(15-25)% to Lightning Resistance" }, } }, - ["LightningResistUnique__29"] = { affix = "", "+(10-40)% to Lightning Resistance", statOrder = { 1636 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(10-40)% to Lightning Resistance" }, } }, - ["LightningResistUnique__30"] = { affix = "", "+(20-40)% to Lightning Resistance", statOrder = { 1636 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(20-40)% to Lightning Resistance" }, } }, - ["LightningResistUnique__31"] = { affix = "", "+(20-30)% to Lightning Resistance", statOrder = { 1636 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(20-30)% to Lightning Resistance" }, } }, - ["LightningResistUnique__32"] = { affix = "", "+(5-30)% to Lightning Resistance", statOrder = { 1636 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(5-30)% to Lightning Resistance" }, } }, - ["LightningResistUnique__33"] = { affix = "", "+(20-30)% to Lightning Resistance", statOrder = { 1636 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(20-30)% to Lightning Resistance" }, } }, - ["ChaosResistUniqueHelmetStrInt2"] = { affix = "", "+(20-30)% to Chaos Resistance", statOrder = { 1641 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(20-30)% to Chaos Resistance" }, } }, - ["ChaosResistUniqueBodyInt8"] = { affix = "", "+(40-50)% to Chaos Resistance", statOrder = { 1641 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(40-50)% to Chaos Resistance" }, } }, - ["ChaosResistImplicitRing1"] = { affix = "", "+(17-23)% to Chaos Resistance", statOrder = { 1641 }, level = 38, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(17-23)% to Chaos Resistance" }, } }, - ["ChaosResistImplicitBoots1"] = { affix = "", "+(13-17)% to Chaos Resistance", statOrder = { 1641 }, level = 85, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(13-17)% to Chaos Resistance" }, } }, - ["ChaosResistUniqueAmulet15_"] = { affix = "", "+(8-10)% to Chaos Resistance", statOrder = { 1641 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(8-10)% to Chaos Resistance" }, } }, - ["ChaosResistUniqueRing12"] = { affix = "", "+(15-20)% to Chaos Resistance", statOrder = { 1641 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(15-20)% to Chaos Resistance" }, } }, - ["ChaosResistHelmetStrDex2"] = { affix = "", "+(15-25)% to Chaos Resistance", statOrder = { 1641 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(15-25)% to Chaos Resistance" }, } }, - ["ChaosResistUniqueRing16"] = { affix = "", "+(40-50)% to Chaos Resistance", statOrder = { 1641 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(40-50)% to Chaos Resistance" }, } }, - ["ChaosResistUniqueDagger8"] = { affix = "", "+(17-29)% to Chaos Resistance", statOrder = { 1641 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(17-29)% to Chaos Resistance" }, } }, - ["ChaosResistUniqueBootsStrInt2"] = { affix = "", "+(13-19)% to Chaos Resistance", statOrder = { 1641 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(13-19)% to Chaos Resistance" }, } }, - ["ChaosResistUniqueHelmetDexInt5"] = { affix = "", "+(24-30)% to Chaos Resistance", statOrder = { 1641 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(24-30)% to Chaos Resistance" }, } }, - ["ChaosResistUniqueWand7"] = { affix = "", "+(5-10)% to Chaos Resistance", statOrder = { 1641 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(5-10)% to Chaos Resistance" }, } }, - ["ChaosResistUniqueHelmetStrInt5"] = { affix = "", "+(43-61)% to Chaos Resistance", statOrder = { 1641 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(43-61)% to Chaos Resistance" }, } }, - ["ChaosResistUniqueQuiver9"] = { affix = "", "+(12-16)% to Chaos Resistance", statOrder = { 1641 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(12-16)% to Chaos Resistance" }, } }, - ["ChaosResistUniqueBow12"] = { affix = "", "+(7-11)% to Chaos Resistance", statOrder = { 1641 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(7-11)% to Chaos Resistance" }, } }, - ["ChaosResistUniqueAmulet23"] = { affix = "", "+(17-29)% to Chaos Resistance", statOrder = { 1641 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(17-29)% to Chaos Resistance" }, } }, - ["ChaosResistDemigodsTorchImplicit"] = { affix = "", "+(11-19)% to Chaos Resistance", statOrder = { 1641 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(11-19)% to Chaos Resistance" }, } }, - ["ChaosResistUnique__1"] = { affix = "", "+11% to Chaos Resistance", statOrder = { 1641 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+11% to Chaos Resistance" }, } }, - ["ChaosResistUnique__2"] = { affix = "", "+(8-16)% to Chaos Resistance", statOrder = { 1641 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(8-16)% to Chaos Resistance" }, } }, - ["ChaosResistUnique__3"] = { affix = "", "+(31-53)% to Chaos Resistance", statOrder = { 1641 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(31-53)% to Chaos Resistance" }, } }, - ["ChaosResistUnique__4"] = { affix = "", "+(17-29)% to Chaos Resistance", statOrder = { 1641 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(17-29)% to Chaos Resistance" }, } }, - ["ChaosResistUnique__5"] = { affix = "", "+60% to Chaos Resistance", statOrder = { 1641 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+60% to Chaos Resistance" }, } }, - ["ChaosResistUnique__6"] = { affix = "", "+(17-29)% to Chaos Resistance", statOrder = { 1641 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(17-29)% to Chaos Resistance" }, } }, - ["ChaosResistUnique__7"] = { affix = "", "+(15-25)% to Chaos Resistance", statOrder = { 1641 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(15-25)% to Chaos Resistance" }, } }, - ["ChaosResistUnique__8"] = { affix = "", "-(20-10)% to Chaos Resistance", statOrder = { 1641 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "-(20-10)% to Chaos Resistance" }, } }, - ["ChaosResistUnique__9"] = { affix = "", "+(17-23)% to Chaos Resistance", statOrder = { 1641 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(17-23)% to Chaos Resistance" }, } }, - ["ChaosResistUnique__10"] = { affix = "", "+(17-23)% to Chaos Resistance", statOrder = { 1641 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(17-23)% to Chaos Resistance" }, } }, - ["ChaosResistUnique__11"] = { affix = "", "+(17-23)% to Chaos Resistance", statOrder = { 1641 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(17-23)% to Chaos Resistance" }, } }, - ["ChaosResistUnique__12"] = { affix = "", "+(17-23)% to Chaos Resistance", statOrder = { 1641 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(17-23)% to Chaos Resistance" }, } }, - ["ChaosResistUnique__13"] = { affix = "", "+(17-23)% to Chaos Resistance", statOrder = { 1641 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(17-23)% to Chaos Resistance" }, } }, - ["ChaosResistUnique__14"] = { affix = "", "+(17-23)% to Chaos Resistance", statOrder = { 1641 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(17-23)% to Chaos Resistance" }, } }, - ["ChaosResistUnique__15"] = { affix = "", "+(23-31)% to Chaos Resistance", statOrder = { 1641 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(23-31)% to Chaos Resistance" }, } }, - ["ChaosResistUnique__16"] = { affix = "", "+(29-43)% to Chaos Resistance", statOrder = { 1641 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(29-43)% to Chaos Resistance" }, } }, - ["ChaosResistUnique__17"] = { affix = "", "+(17-23)% to Chaos Resistance", statOrder = { 1641 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(17-23)% to Chaos Resistance" }, } }, - ["ChaosResistUnique__18_"] = { affix = "", "+(20-30)% to Chaos Resistance", statOrder = { 1641 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(20-30)% to Chaos Resistance" }, } }, - ["ChaosResistUnique__19"] = { affix = "", "+(29-41)% to Chaos Resistance", statOrder = { 1641 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(29-41)% to Chaos Resistance" }, } }, - ["ChaosResistUnique__20_"] = { affix = "", "+(23-31)% to Chaos Resistance", statOrder = { 1641 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(23-31)% to Chaos Resistance" }, } }, - ["ChaosResistUnique__21"] = { affix = "", "+(19-29)% to Chaos Resistance", statOrder = { 1641 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(19-29)% to Chaos Resistance" }, } }, - ["ChaosResistUnique__22"] = { affix = "", "+(17-23)% to Chaos Resistance", statOrder = { 1641 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(17-23)% to Chaos Resistance" }, } }, - ["ChaosResistUnique__23"] = { affix = "", "+(19-29)% to Chaos Resistance", statOrder = { 1641 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(19-29)% to Chaos Resistance" }, } }, - ["ChaosResistUnique__24"] = { affix = "", "+(-23-23)% to Chaos Resistance", statOrder = { 1641 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(-23-23)% to Chaos Resistance" }, } }, - ["ChaosResistUnique__25"] = { affix = "", "+(17-29)% to Chaos Resistance", statOrder = { 1641 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(17-29)% to Chaos Resistance" }, } }, - ["ChaosResistUnique__26"] = { affix = "", "+50% to Chaos Resistance", statOrder = { 1641 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+50% to Chaos Resistance" }, } }, - ["ChaosResistUnique__27"] = { affix = "", "+(-13-13)% to Chaos Resistance", statOrder = { 1641 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(-13-13)% to Chaos Resistance" }, } }, - ["ChaosResistUnique__28"] = { affix = "", "+(17-29)% to Chaos Resistance", statOrder = { 1641 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(17-29)% to Chaos Resistance" }, } }, - ["ChaosResistUnique__29"] = { affix = "", "+(17-29)% to Chaos Resistance", statOrder = { 1641 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(17-29)% to Chaos Resistance" }, } }, - ["ChaosResistUnique__30"] = { affix = "", "+(13-23)% to Chaos Resistance", statOrder = { 1641 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(13-23)% to Chaos Resistance" }, } }, - ["ChaosResistUnique__31"] = { affix = "", "+(7-19)% to Chaos Resistance", statOrder = { 1641 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(7-19)% to Chaos Resistance" }, } }, - ["ChaosResistUnique__33"] = { affix = "", "+(17-23)% to Chaos Resistance", statOrder = { 1641 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(17-23)% to Chaos Resistance" }, } }, - ["ChaosResistUnique__34"] = { affix = "", "+(13-29)% to Chaos Resistance", statOrder = { 1641 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(13-29)% to Chaos Resistance" }, } }, - ["ChaosResistUnique__35"] = { affix = "", "+(13-29)% to Chaos Resistance", statOrder = { 1641 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(13-29)% to Chaos Resistance" }, } }, - ["ChaosResistUnique__36"] = { affix = "", "+(23-37)% to Chaos Resistance", statOrder = { 1641 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(23-37)% to Chaos Resistance" }, } }, - ["ChaosResistUnique__37"] = { affix = "", "+(23-37)% to Chaos Resistance", statOrder = { 1641 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(23-37)% to Chaos Resistance" }, } }, - ["ChaosResistUnique__38"] = { affix = "", "+(23-37)% to Chaos Resistance", statOrder = { 1641 }, level = 30, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(23-37)% to Chaos Resistance" }, } }, - ["FireAndLightningResistImplicitRing1"] = { affix = "", "+(12-16)% to Fire and Lightning Resistances", statOrder = { 2799 }, level = 25, group = "FireAndLightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "lightning", "resistance" }, tradeHashes = { [3441501978] = { "+(12-16)% to Fire and Lightning Resistances" }, } }, - ["ColdAndLightningResistImplicitRing1"] = { affix = "", "+(12-16)% to Cold and Lightning Resistances", statOrder = { 2800 }, level = 25, group = "ColdAndLightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "lightning", "resistance" }, tradeHashes = { [4277795662] = { "+(12-16)% to Cold and Lightning Resistances" }, } }, - ["FireAndColdResistImplicitRing1"] = { affix = "", "+(12-16)% to Fire and Cold Resistances", statOrder = { 2798 }, level = 25, group = "FireAndColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "resistance" }, tradeHashes = { [2915988346] = { "+(12-16)% to Fire and Cold Resistances" }, } }, - ["FireAndLightningResistImplicitBoots1"] = { affix = "", "+(8-12)% to Fire and Lightning Resistances", statOrder = { 2799 }, level = 78, group = "FireAndLightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "lightning", "resistance" }, tradeHashes = { [3441501978] = { "+(8-12)% to Fire and Lightning Resistances" }, } }, - ["ColdAndLightningResistImplicitBoots1"] = { affix = "", "+(8-12)% to Cold and Lightning Resistances", statOrder = { 2800 }, level = 78, group = "ColdAndLightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "lightning", "resistance" }, tradeHashes = { [4277795662] = { "+(8-12)% to Cold and Lightning Resistances" }, } }, - ["FireAndColdResistImplicitBoots1_"] = { affix = "", "+(8-12)% to Fire and Cold Resistances", statOrder = { 2798 }, level = 78, group = "FireAndColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "resistance" }, tradeHashes = { [2915988346] = { "+(8-12)% to Fire and Cold Resistances" }, } }, - ["FireAndColdResistUnique__1"] = { affix = "", "+(15-25)% to Fire and Cold Resistances", statOrder = { 2798 }, level = 75, group = "FireAndColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "resistance" }, tradeHashes = { [2915988346] = { "+(15-25)% to Fire and Cold Resistances" }, } }, - ["FireAndColdResistUnique__2"] = { affix = "", "+(20-30)% to Fire and Cold Resistances", statOrder = { 2798 }, level = 1, group = "FireAndColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "resistance" }, tradeHashes = { [2915988346] = { "+(20-30)% to Fire and Cold Resistances" }, } }, - ["FireAndColdResistUnique__3"] = { affix = "", "+(25-30)% to Fire and Cold Resistances", statOrder = { 2798 }, level = 1, group = "FireAndColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "resistance" }, tradeHashes = { [2915988346] = { "+(25-30)% to Fire and Cold Resistances" }, } }, - ["FireAndColdResistUnique__4_"] = { affix = "", "+(10-20)% to Fire and Cold Resistances", statOrder = { 2798 }, level = 1, group = "FireAndColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "resistance" }, tradeHashes = { [2915988346] = { "+(10-20)% to Fire and Cold Resistances" }, } }, - ["ColdAndLightningResistUnique__1"] = { affix = "", "+(20-25)% to Cold and Lightning Resistances", statOrder = { 2800 }, level = 81, group = "ColdAndLightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "lightning", "resistance" }, tradeHashes = { [4277795662] = { "+(20-25)% to Cold and Lightning Resistances" }, } }, - ["ColdAndLightningResistUnique__2"] = { affix = "", "+(15-20)% to Cold and Lightning Resistances", statOrder = { 2800 }, level = 1, group = "ColdAndLightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "lightning", "resistance" }, tradeHashes = { [4277795662] = { "+(15-20)% to Cold and Lightning Resistances" }, } }, - ["FireAndLightningResistUnique__1"] = { affix = "", "+(20-30)% to Fire and Lightning Resistances", statOrder = { 2799 }, level = 1, group = "FireAndLightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "lightning", "resistance" }, tradeHashes = { [3441501978] = { "+(20-30)% to Fire and Lightning Resistances" }, } }, - ["FireAndLightningResistUnique__2"] = { affix = "", "+(20-30)% to Fire and Lightning Resistances", statOrder = { 2799 }, level = 1, group = "FireAndLightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "lightning", "resistance" }, tradeHashes = { [3441501978] = { "+(20-30)% to Fire and Lightning Resistances" }, } }, - ["AllResistancesImplicitShield1"] = { affix = "", "+4% to all Elemental Resistances", statOrder = { 1619 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+4% to all Elemental Resistances" }, } }, - ["AllResistancesImplicitShield2"] = { affix = "", "+8% to all Elemental Resistances", statOrder = { 1619 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+8% to all Elemental Resistances" }, } }, - ["AllResistancesImplicitShield3"] = { affix = "", "+12% to all Elemental Resistances", statOrder = { 1619 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+12% to all Elemental Resistances" }, } }, - ["AllResistancesImplicitArmour1"] = { affix = "", "+(8-12)% to all Elemental Resistances", statOrder = { 1619 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(8-12)% to all Elemental Resistances" }, } }, - ["AllResistancesImplicitRing1"] = { affix = "", "+(8-10)% to all Elemental Resistances", statOrder = { 1619 }, level = 38, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(8-10)% to all Elemental Resistances" }, } }, - ["AllResistancesImplicitVictorAmulet"] = { affix = "", "+(8-12)% to all Elemental Resistances", statOrder = { 1619 }, level = 16, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(8-12)% to all Elemental Resistances" }, } }, - ["AllResistancesUniqueRing3"] = { affix = "", "-20% to all Elemental Resistances", statOrder = { 1619 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "-20% to all Elemental Resistances" }, } }, - ["AllResistancesUniqueAmulet2"] = { affix = "", "+20% to all Elemental Resistances", statOrder = { 1619 }, level = 10, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+20% to all Elemental Resistances" }, } }, - ["AllResistancesUniqueRing4"] = { affix = "", "+(5-20)% to all Elemental Resistances", statOrder = { 1619 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(5-20)% to all Elemental Resistances" }, } }, - ["AllResistancesUniqueIntHelmet3"] = { affix = "", "+10% to all Elemental Resistances", statOrder = { 1619 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+10% to all Elemental Resistances" }, } }, - ["AllResistancesUniqueHelmetStrInt1"] = { affix = "", "+(10-20)% to all Elemental Resistances", statOrder = { 1619 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(10-20)% to all Elemental Resistances" }, } }, - ["AllResistancesUniqueBootsStr1"] = { affix = "", "+(10-15)% to all Elemental Resistances", statOrder = { 1619 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(10-15)% to all Elemental Resistances" }, } }, - ["AllResistancesUniqueGlovesStrDex2"] = { affix = "", "+15% to all Elemental Resistances", statOrder = { 1619 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+15% to all Elemental Resistances" }, } }, - ["AllResistancesUniqueShieldStrInt1"] = { affix = "", "+(20-30)% to all Elemental Resistances", statOrder = { 1619 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(20-30)% to all Elemental Resistances" }, } }, - ["AllResistancesUniqueBodyStrInt2"] = { affix = "", "+15% to all Elemental Resistances", statOrder = { 1619 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+15% to all Elemental Resistances" }, } }, - ["AllResistancesUniqueAmulet9"] = { affix = "", "+(10-20)% to all Elemental Resistances", statOrder = { 1619 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(10-20)% to all Elemental Resistances" }, } }, - ["AllResistancesUniqueShieldStrInt2"] = { affix = "", "+25% to all Elemental Resistances", statOrder = { 1619 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+25% to all Elemental Resistances" }, } }, - ["AllResistancesUniqueHelmetDex3"] = { affix = "", "+(30-40)% to all Elemental Resistances", statOrder = { 1619 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(30-40)% to all Elemental Resistances" }, } }, - ["AllResistancesUniqueShieldStrInt4"] = { affix = "", "+10% to all Elemental Resistances", statOrder = { 1619 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+10% to all Elemental Resistances" }, } }, - ["AllResistancesUniqueShieldDex3"] = { affix = "", "+(20-30)% to all Elemental Resistances", statOrder = { 1619 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(20-30)% to all Elemental Resistances" }, } }, - ["AllResistancesUniqueBodyDexInt1"] = { affix = "", "+(9-12)% to all Elemental Resistances", statOrder = { 1619 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(9-12)% to all Elemental Resistances" }, } }, - ["AllResistancesUniqueRing6"] = { affix = "", "+(10-30)% to all Elemental Resistances", statOrder = { 1619 }, level = 30, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(10-30)% to all Elemental Resistances" }, } }, - ["AllResistancesUniqueBootsInt5"] = { affix = "", "+20% to all Elemental Resistances", statOrder = { 1619 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+20% to all Elemental Resistances" }, } }, - ["AllResistancesUniqueRapier2"] = { affix = "", "+(40-60)% to all Elemental Resistances", statOrder = { 1619 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(40-60)% to all Elemental Resistances" }, } }, - ["AllResistancesUniqueRing7"] = { affix = "", "+(25-40)% to all Elemental Resistances", statOrder = { 1619 }, level = 38, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(25-40)% to all Elemental Resistances" }, } }, - ["AllResistancesUniqueRing9"] = { affix = "", "+10% to all Elemental Resistances", statOrder = { 1619 }, level = 38, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+10% to all Elemental Resistances" }, } }, - ["AllResistancesUniqueAmulet14"] = { affix = "", "+(15-20)% to all Elemental Resistances", statOrder = { 1619 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(15-20)% to all Elemental Resistances" }, } }, - ["AllResistancesUniqueTwoHandMace6_"] = { affix = "", "+(15-20)% to all Elemental Resistances", statOrder = { 1619 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(15-20)% to all Elemental Resistances" }, } }, - ["AllResistancesImplictBootsDemigods1"] = { affix = "", "+(8-16)% to all Elemental Resistances", statOrder = { 1619 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(8-16)% to all Elemental Resistances" }, } }, - ["AllResistancesImplictHelmetDemigods1"] = { affix = "", "+(8-16)% to all Elemental Resistances", statOrder = { 1619 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(8-16)% to all Elemental Resistances" }, } }, - ["AllResistancesUniqueBodyStrDex1"] = { affix = "", "+(10-15)% to all Elemental Resistances", statOrder = { 1619 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(10-15)% to all Elemental Resistances" }, } }, - ["AllResistancesUniqueRing21"] = { affix = "", "+(20-30)% to all Elemental Resistances", statOrder = { 1619 }, level = 38, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(20-30)% to all Elemental Resistances" }, } }, - ["AllResistancesUniqueBelt8"] = { affix = "", "-(25-15)% to all Elemental Resistances", statOrder = { 1619 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "-(25-15)% to all Elemental Resistances" }, } }, - ["AllResistancesUniqueBodyStrDexInt1"] = { affix = "", "+(20-24)% to all Elemental Resistances", statOrder = { 1619 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(20-24)% to all Elemental Resistances" }, } }, - ["AllResistancesUniqueHelmetDexInt4"] = { affix = "", "+(26-30)% to all Elemental Resistances", statOrder = { 1619 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(26-30)% to all Elemental Resistances" }, } }, - ["AllResistancesUniqueBeltDemigods1"] = { affix = "", "+(16-24)% to all Elemental Resistances", statOrder = { 1619 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(16-24)% to all Elemental Resistances" }, } }, - ["AllResistancesUniqueDagger9"] = { affix = "", "+(6-10)% to all Elemental Resistances", statOrder = { 1619 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(6-10)% to all Elemental Resistances" }, } }, - ["AllResistancesUniqueRing25"] = { affix = "", "-20% to all Elemental Resistances", statOrder = { 1619 }, level = 7, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "-20% to all Elemental Resistances" }, } }, - ["AllResistancesUniqueBelt10"] = { affix = "", "+(6-15)% to all Elemental Resistances", statOrder = { 1619 }, level = 32, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(6-15)% to all Elemental Resistances" }, } }, - ["AllResistancesUniqueShieldDexInt2"] = { affix = "", "-50% to all Elemental Resistances", statOrder = { 1619 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "-50% to all Elemental Resistances" }, } }, - ["AllResistancesUniqueBelt13"] = { affix = "", "+(10-15)% to all Elemental Resistances", statOrder = { 1619 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(10-15)% to all Elemental Resistances" }, } }, - ["AllResistajcesUniqueStaff10"] = { affix = "", "+(5-7)% to all Elemental Resistances", statOrder = { 1619 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(5-7)% to all Elemental Resistances" }, } }, - ["AllResistancesUniqueAmulet23"] = { affix = "", "-(10-5)% to all Elemental Resistances", statOrder = { 1619 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "-(10-5)% to all Elemental Resistances" }, } }, - ["AllResistancesDescentUniqueQuiver1"] = { affix = "", "+10% to all Elemental Resistances", statOrder = { 1619 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+10% to all Elemental Resistances" }, } }, - ["AllResistancesUnique__1"] = { affix = "", "+15% to all Elemental Resistances", statOrder = { 1619 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+15% to all Elemental Resistances" }, } }, - ["AllResistancesUnique__2"] = { affix = "", "+(10-15)% to all Elemental Resistances", statOrder = { 1619 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(10-15)% to all Elemental Resistances" }, } }, - ["AllResistancesUnique__3"] = { affix = "", "+(14-18)% to all Elemental Resistances", statOrder = { 1619 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(14-18)% to all Elemental Resistances" }, } }, - ["AllResistancesUnique__4"] = { affix = "", "+(10-15)% to all Elemental Resistances", statOrder = { 1619 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(10-15)% to all Elemental Resistances" }, } }, - ["AllResistancesUnique__5"] = { affix = "", "+(10-15)% to all Elemental Resistances", statOrder = { 1619 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(10-15)% to all Elemental Resistances" }, } }, - ["AllResistancesUnique__6"] = { affix = "", "-(20-10)% to all Elemental Resistances", statOrder = { 1619 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "-(20-10)% to all Elemental Resistances" }, } }, - ["AllResistancesUnique__7"] = { affix = "", "+(10-20)% to all Elemental Resistances", statOrder = { 1619 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(10-20)% to all Elemental Resistances" }, } }, - ["AllResistancesUnique__8"] = { affix = "", "+(20-30)% to all Elemental Resistances", statOrder = { 1619 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(20-30)% to all Elemental Resistances" }, } }, - ["AllResistancesUnique__9"] = { affix = "", "+(10-15)% to all Elemental Resistances", statOrder = { 1619 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(10-15)% to all Elemental Resistances" }, } }, - ["AllResistancesUnique__10"] = { affix = "", "+(10-15)% to all Elemental Resistances", statOrder = { 1619 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(10-15)% to all Elemental Resistances" }, } }, - ["AllResistancesUnique__11__"] = { affix = "", "+(15-25)% to all Elemental Resistances", statOrder = { 1619 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(15-25)% to all Elemental Resistances" }, } }, - ["AllResistancesUnique__12"] = { affix = "", "+(10-15)% to all Elemental Resistances", statOrder = { 1619 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(10-15)% to all Elemental Resistances" }, } }, - ["AllResistancesUnique__13"] = { affix = "", "+10% to all Elemental Resistances", statOrder = { 1619 }, level = 75, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+10% to all Elemental Resistances" }, } }, - ["AllResistancesUnique__14"] = { affix = "", "+(10-15)% to all Elemental Resistances", statOrder = { 1619 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(10-15)% to all Elemental Resistances" }, } }, - ["AllResistancesUnique__15"] = { affix = "", "+(12-18)% to all Elemental Resistances", statOrder = { 1619 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(12-18)% to all Elemental Resistances" }, } }, - ["AllResistancesUnique__16"] = { affix = "", "+(10-16)% to all Elemental Resistances", statOrder = { 1619 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(10-16)% to all Elemental Resistances" }, } }, - ["AllResistancesUnique__17"] = { affix = "", "+(15-20)% to all Elemental Resistances", statOrder = { 1619 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(15-20)% to all Elemental Resistances" }, } }, - ["AllResistancesUnique__18"] = { affix = "", "-(20-10)% to all Elemental Resistances", statOrder = { 10717 }, level = 1, group = "UniqueJewelDonutAllocationAllReistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [4285168237] = { "-(20-10)% to all Elemental Resistances" }, } }, - ["AllResistancesUnique__19"] = { affix = "", "+(15-25)% to all Elemental Resistances", statOrder = { 1619 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(15-25)% to all Elemental Resistances" }, } }, - ["AllResistancesUnique__20"] = { affix = "", "+(10-20)% to all Elemental Resistances", statOrder = { 1619 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(10-20)% to all Elemental Resistances" }, } }, - ["AllResistancesUnique__21"] = { affix = "", "+(15-25)% to all Elemental Resistances", statOrder = { 1619 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(15-25)% to all Elemental Resistances" }, } }, - ["AllResistancesUnique__23__"] = { affix = "", "+(15-25)% to all Elemental Resistances", statOrder = { 1619 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(15-25)% to all Elemental Resistances" }, } }, - ["AllResistancesUnique__24_"] = { affix = "", "-(80-70)% to all Elemental Resistances", statOrder = { 1619 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "-(80-70)% to all Elemental Resistances" }, } }, - ["AllResistancesUnique__26"] = { affix = "", "+(20-25)% to all Elemental Resistances", statOrder = { 1619 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(20-25)% to all Elemental Resistances" }, } }, - ["AllResistancesUnique__27"] = { affix = "", "+(20-25)% to all Elemental Resistances", statOrder = { 1619 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(20-25)% to all Elemental Resistances" }, } }, - ["AllResistancesUnique__29"] = { affix = "", "+(5-10)% to all Elemental Resistances", statOrder = { 1619 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(5-10)% to all Elemental Resistances" }, } }, - ["AllResistancesUnique__30"] = { affix = "", "+(8-10)% to all Elemental Resistances", statOrder = { 1619 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(8-10)% to all Elemental Resistances" }, } }, - ["AllResistancesUnique__31"] = { affix = "", "+(20-30)% to all Elemental Resistances", statOrder = { 1619 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(20-30)% to all Elemental Resistances" }, } }, - ["AllResistancesUnique__32"] = { affix = "", "+(10-15)% to all Elemental Resistances", statOrder = { 1619 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(10-15)% to all Elemental Resistances" }, } }, - ["AllResistancesUnique__33"] = { affix = "", "+(10-20)% to all Elemental Resistances", statOrder = { 1619 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(10-20)% to all Elemental Resistances" }, } }, - ["AllResistancesUnique__34"] = { affix = "", "+(5-15)% to all Elemental Resistances", statOrder = { 1619 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(5-15)% to all Elemental Resistances" }, } }, - ["AllResistancesUnique__35"] = { affix = "", "+(25-35)% to all Elemental Resistances", statOrder = { 1619 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(25-35)% to all Elemental Resistances" }, } }, - ["AllResistancesUnique__36"] = { affix = "", "-(50-40)% to all Elemental Resistances", statOrder = { 1619 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "-(50-40)% to all Elemental Resistances" }, } }, - ["AllResistancesUnique__37"] = { affix = "", "+(10-20)% to all Elemental Resistances", statOrder = { 1619 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(10-20)% to all Elemental Resistances" }, } }, - ["AllResistancesUnique__38"] = { affix = "", "+(-15-15)% to all Elemental Resistances", statOrder = { 1619 }, level = 80, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(-15-15)% to all Elemental Resistances" }, } }, - ["AllResistancesDemigodsImplicit"] = { affix = "", "+(15-25)% to all Elemental Resistances", statOrder = { 1619 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(15-25)% to all Elemental Resistances" }, } }, - ["CriticalMultiplierImplicitSword1"] = { affix = "", "+25% to Global Critical Strike Multiplier", statOrder = { 1488 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "+25% to Global Critical Strike Multiplier" }, } }, - ["CriticalMultiplierImplicitSword2"] = { affix = "", "+35% to Global Critical Strike Multiplier", statOrder = { 1488 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "+35% to Global Critical Strike Multiplier" }, } }, - ["CriticalMultiplierImplicitSword3"] = { affix = "", "+50% to Global Critical Strike Multiplier", statOrder = { 1488 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "+50% to Global Critical Strike Multiplier" }, } }, - ["CriticalMultiplierImplicitSword2H1"] = { affix = "", "+25% to Global Critical Strike Multiplier", statOrder = { 1488 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "+25% to Global Critical Strike Multiplier" }, } }, - ["CriticalMultiplierImplicitSwordM2"] = { affix = "", "+40% to Global Critical Strike Multiplier", statOrder = { 1488 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "+40% to Global Critical Strike Multiplier" }, } }, - ["CriticalMultiplierImplicitBow1"] = { affix = "", "+(15-25)% to Global Critical Strike Multiplier", statOrder = { 1488 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "+(15-25)% to Global Critical Strike Multiplier" }, } }, - ["CriticalMultiplierUniqueGlovesDex2"] = { affix = "", "+(20-30)% to Global Critical Strike Multiplier", statOrder = { 1488 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "+(20-30)% to Global Critical Strike Multiplier" }, } }, - ["CriticalMultiplierUniqueGlovesDexInt2"] = { affix = "", "+30% to Global Critical Strike Multiplier", statOrder = { 1488 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "+30% to Global Critical Strike Multiplier" }, } }, - ["CriticalMultiplierUniqueGlovesDexInt4"] = { affix = "", "+40% to Global Critical Strike Multiplier", statOrder = { 1488 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "+40% to Global Critical Strike Multiplier" }, } }, - ["CriticalMultiplierUniqueHelmetStr3"] = { affix = "", "+60% to Global Critical Strike Multiplier", statOrder = { 1488 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "+60% to Global Critical Strike Multiplier" }, } }, - ["CriticalMultiplierUniqueRing8"] = { affix = "", "-50% to Global Critical Strike Multiplier", statOrder = { 1488 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "-50% to Global Critical Strike Multiplier" }, } }, - ["CriticalMultiplierUniqueAmulet17"] = { affix = "", "+(210-240)% to Global Critical Strike Multiplier", statOrder = { 1488 }, level = 50, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "+(210-240)% to Global Critical Strike Multiplier" }, } }, - ["CriticalMultiplierUniqueDescentDagger1"] = { affix = "", "+45% to Global Critical Strike Multiplier", statOrder = { 1488 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "+45% to Global Critical Strike Multiplier" }, } }, - ["CriticalMultiplierUniqueDagger8"] = { affix = "", "+(15-25)% to Global Critical Strike Multiplier", statOrder = { 1488 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "+(15-25)% to Global Critical Strike Multiplier" }, } }, - ["CriticalMultiplierUniqueRing17"] = { affix = "", "+(15-25)% to Global Critical Strike Multiplier", statOrder = { 1488 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "+(15-25)% to Global Critical Strike Multiplier" }, } }, - ["CriticalMultiplierUniqueGlovesDexInt6_"] = { affix = "", "+(20-30)% to Global Critical Strike Multiplier", statOrder = { 1488 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "+(20-30)% to Global Critical Strike Multiplier" }, } }, - ["CriticalMultiplierUniqueAmulet18"] = { affix = "", "Your Critical Strikes do not deal extra Damage", statOrder = { 2678 }, level = 29, group = "NoCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [4058681894] = { "Your Critical Strikes do not deal extra Damage" }, } }, - ["CriticalMultiplierUnique__1"] = { affix = "", "+(27-33)% to Global Critical Strike Multiplier", statOrder = { 1488 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "+(27-33)% to Global Critical Strike Multiplier" }, } }, - ["CriticalMultiplierUnique__2"] = { affix = "", "+(30-40)% to Global Critical Strike Multiplier", statOrder = { 1488 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "+(30-40)% to Global Critical Strike Multiplier" }, } }, - ["CriticalMultiplierUnique__3__"] = { affix = "", "+(25-50)% to Global Critical Strike Multiplier", statOrder = { 1488 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "+(25-50)% to Global Critical Strike Multiplier" }, } }, - ["CriticalMultiplierUnique__4____"] = { affix = "", "+(15-25)% to Global Critical Strike Multiplier", statOrder = { 1488 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "+(15-25)% to Global Critical Strike Multiplier" }, } }, - ["CriticalMultiplierUnique__5"] = { affix = "", "+(18-35)% to Global Critical Strike Multiplier", statOrder = { 1488 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "+(18-35)% to Global Critical Strike Multiplier" }, } }, - ["CriticalMultiplierUnique__6"] = { affix = "", "+(100-150)% to Global Critical Strike Multiplier", statOrder = { 1488 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "+(100-150)% to Global Critical Strike Multiplier" }, } }, - ["CriticalMultiplierUnique__7"] = { affix = "", "+(15-20)% to Global Critical Strike Multiplier", statOrder = { 1488 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "+(15-20)% to Global Critical Strike Multiplier" }, } }, - ["CriticalMultiplierUnique__8"] = { affix = "", "+(30-40)% to Global Critical Strike Multiplier", statOrder = { 1488 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "+(30-40)% to Global Critical Strike Multiplier" }, } }, - ["StunRecoveryImplicitBelt1"] = { affix = "", "(15-25)% increased Stun and Block Recovery", statOrder = { 1902 }, level = 20, group = "StunRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2511217560] = { "(15-25)% increased Stun and Block Recovery" }, } }, - ["StunRecoveryUniqueBootsStrDex1"] = { affix = "", "20% increased Stun and Block Recovery", statOrder = { 1902 }, level = 1, group = "StunRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2511217560] = { "20% increased Stun and Block Recovery" }, } }, - ["StunRecoveryUniqueHelmetInt6"] = { affix = "", "50% increased Stun and Block Recovery", statOrder = { 1902 }, level = 1, group = "StunRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2511217560] = { "50% increased Stun and Block Recovery" }, } }, - ["StunRecoveryUniqueBootsStrDex3"] = { affix = "", "50% increased Stun and Block Recovery", statOrder = { 1902 }, level = 1, group = "StunRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2511217560] = { "50% increased Stun and Block Recovery" }, } }, - ["StunRecoveryUniqueHelmetStrInt4"] = { affix = "", "(20-22)% increased Stun and Block Recovery", statOrder = { 1902 }, level = 1, group = "StunRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2511217560] = { "(20-22)% increased Stun and Block Recovery" }, } }, - ["StunRecoveryUniqueGlovesStrInt1"] = { affix = "", "(40-60)% increased Stun and Block Recovery", statOrder = { 1902 }, level = 1, group = "StunRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2511217560] = { "(40-60)% increased Stun and Block Recovery" }, } }, - ["StunRecoveryUniqueQuiver4"] = { affix = "", "50% increased Stun and Block Recovery", statOrder = { 1902 }, level = 1, group = "StunRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2511217560] = { "50% increased Stun and Block Recovery" }, } }, - ["StunRecoveryUniqueAmulet18"] = { affix = "", "40% increased Stun and Block Recovery", statOrder = { 1902 }, level = 1, group = "StunRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2511217560] = { "40% increased Stun and Block Recovery" }, } }, - ["StunRecoveryUniqueClaw8"] = { affix = "", "25% increased Stun and Block Recovery", statOrder = { 1902 }, level = 1, group = "StunRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2511217560] = { "25% increased Stun and Block Recovery" }, } }, - ["StunRecoveryUniqueOneHandSword13"] = { affix = "", "(30-40)% reduced Stun and Block Recovery", statOrder = { 1902 }, level = 1, group = "StunRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2511217560] = { "(30-40)% reduced Stun and Block Recovery" }, } }, - ["StunRecoveryUnique__1_"] = { affix = "", "50% increased Stun and Block Recovery", statOrder = { 1902 }, level = 1, group = "StunRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2511217560] = { "50% increased Stun and Block Recovery" }, } }, - ["StunRecoveryUnique__2"] = { affix = "", "(30-40)% increased Stun and Block Recovery", statOrder = { 1902 }, level = 1, group = "StunRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2511217560] = { "(30-40)% increased Stun and Block Recovery" }, } }, - ["StunRecoveryUnique__3"] = { affix = "", "(30-40)% increased Stun and Block Recovery", statOrder = { 1902 }, level = 1, group = "StunRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2511217560] = { "(30-40)% increased Stun and Block Recovery" }, } }, - ["StunRecoveryUnique__5"] = { affix = "", "100% increased Stun and Block Recovery", statOrder = { 1902 }, level = 1, group = "StunRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2511217560] = { "100% increased Stun and Block Recovery" }, } }, - ["StunRecoveryUnique__6"] = { affix = "", "(40-60)% increased Stun and Block Recovery", statOrder = { 1902 }, level = 1, group = "StunRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2511217560] = { "(40-60)% increased Stun and Block Recovery" }, } }, - ["StunRecoveryUnique__7"] = { affix = "", "(30-40)% increased Stun and Block Recovery", statOrder = { 1902 }, level = 1, group = "StunRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2511217560] = { "(30-40)% increased Stun and Block Recovery" }, } }, - ["StunRecoveryUnique__8"] = { affix = "", "(100-200)% increased Stun and Block Recovery", statOrder = { 1902 }, level = 1, group = "StunRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2511217560] = { "(100-200)% increased Stun and Block Recovery" }, } }, - ["StunDurationImplicitBelt1"] = { affix = "", "(20-30)% increased Stun Duration on Enemies", statOrder = { 1863 }, level = 20, group = "StunDurationIncreasePercent", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2517001139] = { "(20-30)% increased Stun Duration on Enemies" }, } }, - ["StunDurationImplicitMace1"] = { affix = "", "30% increased Stun Duration on Enemies", statOrder = { 1863 }, level = 1, group = "StunDurationIncreasePercent", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2517001139] = { "30% increased Stun Duration on Enemies" }, } }, - ["StunDurationImplicitMace2"] = { affix = "", "45% increased Stun Duration on Enemies", statOrder = { 1863 }, level = 1, group = "StunDurationIncreasePercent", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2517001139] = { "45% increased Stun Duration on Enemies" }, } }, - ["StunDurationImplicitQuiver9"] = { affix = "", "(25-35)% increased Stun Duration on Enemies", statOrder = { 1863 }, level = 20, group = "StunDurationIncreasePercent", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2517001139] = { "(25-35)% increased Stun Duration on Enemies" }, } }, - ["StunDurationUniqueTwoHandMace1"] = { affix = "", "(40-50)% increased Stun Duration on Enemies", statOrder = { 1863 }, level = 1, group = "StunDurationIncreasePercent", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2517001139] = { "(40-50)% increased Stun Duration on Enemies" }, } }, - ["StunDurationUniqueTwoHandMace2"] = { affix = "", "(10-20)% increased Stun Duration on Enemies", statOrder = { 1863 }, level = 1, group = "StunDurationIncreasePercent", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2517001139] = { "(10-20)% increased Stun Duration on Enemies" }, } }, - ["StunDurationUniqueQuiver2"] = { affix = "", "(20-30)% increased Stun Duration on Enemies", statOrder = { 1863 }, level = 1, group = "StunDurationIncreasePercent", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2517001139] = { "(20-30)% increased Stun Duration on Enemies" }, } }, - ["StunDurationUniqueTwoHandMace3"] = { affix = "", "(40-50)% increased Stun Duration on Enemies", statOrder = { 1863 }, level = 1, group = "StunDurationIncreasePercent", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2517001139] = { "(40-50)% increased Stun Duration on Enemies" }, } }, - ["StunDurationUniqueGlovesInt4_"] = { affix = "", "50% increased Stun Duration on Enemies", statOrder = { 1863 }, level = 1, group = "StunDurationIncreasePercent", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2517001139] = { "50% increased Stun Duration on Enemies" }, } }, - ["StunDurationUniqueGlovesDexInt3"] = { affix = "", "10% increased Stun Duration on Enemies", statOrder = { 1863 }, level = 1, group = "StunDurationIncreasePercent", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2517001139] = { "10% increased Stun Duration on Enemies" }, } }, - ["StunDurationUniqueTwoHandSword5"] = { affix = "", "400% increased Stun Duration on Enemies", statOrder = { 1863 }, level = 1, group = "StunDurationIncreasePercent", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2517001139] = { "400% increased Stun Duration on Enemies" }, } }, - ["StunDurationUniqueQuiver8"] = { affix = "", "(140-200)% increased Stun Duration on Enemies", statOrder = { 1863 }, level = 1, group = "StunDurationIncreasePercent", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2517001139] = { "(140-200)% increased Stun Duration on Enemies" }, } }, - ["StunDurationUniqueOneHandMace6"] = { affix = "", "(30-50)% increased Stun Duration on Enemies", statOrder = { 1863 }, level = 1, group = "StunDurationIncreasePercent", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2517001139] = { "(30-50)% increased Stun Duration on Enemies" }, } }, - ["StunDurationUnique__1"] = { affix = "", "(20-30)% increased Stun Duration on Enemies", statOrder = { 1863 }, level = 1, group = "StunDurationIncreasePercent", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2517001139] = { "(20-30)% increased Stun Duration on Enemies" }, } }, - ["StunDurationUnique__2"] = { affix = "", "(20-30)% increased Stun Duration on Enemies", statOrder = { 1863 }, level = 1, group = "StunDurationIncreasePercent", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2517001139] = { "(20-30)% increased Stun Duration on Enemies" }, } }, - ["SpellCriticalStrikeChanceUniqueDagger1"] = { affix = "", "(80-100)% increased Spell Critical Strike Chance", statOrder = { 1458 }, level = 1, group = "SpellCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "caster", "critical" }, tradeHashes = { [737908626] = { "(80-100)% increased Spell Critical Strike Chance" }, } }, - ["SpellCriticalStrikeChanceUniqueGlovesInt5"] = { affix = "", "(75-100)% increased Spell Critical Strike Chance", statOrder = { 1458 }, level = 1, group = "SpellCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "caster", "critical" }, tradeHashes = { [737908626] = { "(75-100)% increased Spell Critical Strike Chance" }, } }, - ["SpellCriticalStrikeChanceUniqueGlovesInt6"] = { affix = "", "(125-150)% increased Spell Critical Strike Chance", statOrder = { 1458 }, level = 1, group = "SpellCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "caster", "critical" }, tradeHashes = { [737908626] = { "(125-150)% increased Spell Critical Strike Chance" }, } }, - ["SpellCriticalStrikeChanceUniqueHelmetInt6"] = { affix = "", "(20-25)% increased Spell Critical Strike Chance", statOrder = { 1458 }, level = 1, group = "SpellCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "caster", "critical" }, tradeHashes = { [737908626] = { "(20-25)% increased Spell Critical Strike Chance" }, } }, - ["SpellCriticalStrikeChanceUniqueShieldInt3"] = { affix = "", "(25-35)% increased Spell Critical Strike Chance", statOrder = { 1458 }, level = 1, group = "SpellCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "caster", "critical" }, tradeHashes = { [737908626] = { "(25-35)% increased Spell Critical Strike Chance" }, } }, - ["SpellCriticalStrikeChanceUniqueBootsStrDex5"] = { affix = "", "(50-70)% increased Spell Critical Strike Chance", statOrder = { 1458 }, level = 1, group = "SpellCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "caster", "critical" }, tradeHashes = { [737908626] = { "(50-70)% increased Spell Critical Strike Chance" }, } }, - ["SpellCriticalStrikeChanceUnique__1"] = { affix = "", "(100-140)% increased Spell Critical Strike Chance", statOrder = { 1458 }, level = 1, group = "SpellCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "caster", "critical" }, tradeHashes = { [737908626] = { "(100-140)% increased Spell Critical Strike Chance" }, } }, - ["SpellCriticalStrikeChanceUnique__2"] = { affix = "", "(60-80)% increased Spell Critical Strike Chance", statOrder = { 1458 }, level = 1, group = "SpellCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "caster", "critical" }, tradeHashes = { [737908626] = { "(60-80)% increased Spell Critical Strike Chance" }, } }, - ["SpellCriticalStrikeChanceUnique__3"] = { affix = "", "(60-80)% increased Spell Critical Strike Chance", statOrder = { 1458 }, level = 1, group = "SpellCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "caster", "critical" }, tradeHashes = { [737908626] = { "(60-80)% increased Spell Critical Strike Chance" }, } }, - ["SpellCriticalStrikeChanceUnique__4"] = { affix = "", "(60-80)% increased Spell Critical Strike Chance", statOrder = { 1458 }, level = 1, group = "SpellCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "caster", "critical" }, tradeHashes = { [737908626] = { "(60-80)% increased Spell Critical Strike Chance" }, } }, - ["SpellCriticalStrikeChanceUnique__5"] = { affix = "", "(80-120)% increased Spell Critical Strike Chance", statOrder = { 1458 }, level = 1, group = "SpellCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "caster", "critical" }, tradeHashes = { [737908626] = { "(80-120)% increased Spell Critical Strike Chance" }, } }, - ["ProjectileSpeedImplicitQuiver4New"] = { affix = "", "(20-30)% increased Projectile Speed", statOrder = { 1796 }, level = 25, group = "ProjectileSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [3759663284] = { "(20-30)% increased Projectile Speed" }, } }, - ["ProjectileSpeedUniqueAmulet5"] = { affix = "", "30% increased Projectile Speed", statOrder = { 1796 }, level = 1, group = "ProjectileSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [3759663284] = { "30% increased Projectile Speed" }, } }, - ["ProjectileSpeedUniqueBow4_"] = { affix = "", "(50-100)% increased Projectile Speed", statOrder = { 1796 }, level = 1, group = "ProjectileSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [3759663284] = { "(50-100)% increased Projectile Speed" }, } }, - ["ProjectileSpeedUniqueQuiver2"] = { affix = "", "20% reduced Projectile Speed", statOrder = { 1796 }, level = 1, group = "ProjectileSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [3759663284] = { "20% reduced Projectile Speed" }, } }, - ["ProjectileSpeedUniqueQuiver4"] = { affix = "", "(20-30)% increased Projectile Speed", statOrder = { 1796 }, level = 1, group = "ProjectileSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [3759663284] = { "(20-30)% increased Projectile Speed" }, } }, - ["ProjectileSpeedUniqueQuiver8"] = { affix = "", "25% reduced Projectile Speed", statOrder = { 1796 }, level = 1, group = "ProjectileSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [3759663284] = { "25% reduced Projectile Speed" }, } }, - ["ProjectileSpeedUnique___1"] = { affix = "", "30% increased Projectile Speed", statOrder = { 1796 }, level = 1, group = "ProjectileSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [3759663284] = { "30% increased Projectile Speed" }, } }, - ["ProjectileSpeedUnique__2"] = { affix = "", "30% increased Projectile Speed", statOrder = { 1796 }, level = 1, group = "ProjectileSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [3759663284] = { "30% increased Projectile Speed" }, } }, - ["ProjectileSpeedUnique__3"] = { affix = "", "20% reduced Projectile Speed", statOrder = { 1796 }, level = 1, group = "ProjectileSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [3759663284] = { "20% reduced Projectile Speed" }, } }, - ["ProjectileSpeedUnique__4"] = { affix = "", "20% reduced Projectile Speed", statOrder = { 1796 }, level = 1, group = "ProjectileSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [3759663284] = { "20% reduced Projectile Speed" }, } }, - ["ProjectileSpeedUnique__5__"] = { affix = "", "30% increased Projectile Speed", statOrder = { 1796 }, level = 1, group = "ProjectileSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [3759663284] = { "30% increased Projectile Speed" }, } }, - ["ProjectileSpeedUnique__6"] = { affix = "", "(20-30)% increased Projectile Speed", statOrder = { 1796 }, level = 1, group = "ProjectileSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [3759663284] = { "(20-30)% increased Projectile Speed" }, } }, - ["ProjectileSpeedUnique__7"] = { affix = "", "(30-40)% increased Projectile Speed", statOrder = { 1796 }, level = 1, group = "ProjectileSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [3759663284] = { "(30-40)% increased Projectile Speed" }, } }, - ["ProjectileSpeedUnique__8"] = { affix = "", "(30-50)% increased Projectile Speed", statOrder = { 1796 }, level = 1, group = "ProjectileSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [3759663284] = { "(30-50)% increased Projectile Speed" }, } }, - ["LifeGainPerTargetUniqueRing2"] = { affix = "", "Gain (2-4) Life per Enemy Hit with Attacks", statOrder = { 1740 }, level = 1, group = "LifeGainPerTarget", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHashes = { [2797971005] = { "Gain (2-4) Life per Enemy Hit with Attacks" }, } }, - ["LifeGainPerTargetUniqueOneHandSword1"] = { affix = "", "Grants 2 Life per Enemy Hit", statOrder = { 1738 }, level = 1, group = "LifeGainPerTargetLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHashes = { [821021828] = { "Grants 2 Life per Enemy Hit" }, } }, - ["LifeGainPerTargetUniqueDagger2"] = { affix = "", "Grants 10 Life per Enemy Hit", statOrder = { 1738 }, level = 1, group = "LifeGainPerTargetLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHashes = { [821021828] = { "Grants 10 Life per Enemy Hit" }, } }, - ["LifeGainPerTargetImplicitClaw1"] = { affix = "", "Grants 3 Life per Enemy Hit", statOrder = { 1738 }, level = 1, group = "LifeGainPerTargetLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHashes = { [821021828] = { "Grants 3 Life per Enemy Hit" }, } }, - ["LifeGainPerTargetImplicitClaw2"] = { affix = "", "Grants 8 Life per Enemy Hit", statOrder = { 1738 }, level = 1, group = "LifeGainPerTargetLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHashes = { [821021828] = { "Grants 8 Life per Enemy Hit" }, } }, - ["LifeGainPerTargetImplicitClaw3"] = { affix = "", "Grants 15 Life per Enemy Hit", statOrder = { 1738 }, level = 1, group = "LifeGainPerTargetLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHashes = { [821021828] = { "Grants 15 Life per Enemy Hit" }, } }, - ["LifeGainPerTargetImplicitClaw4"] = { affix = "", "Grants 22 Life per Enemy Hit", statOrder = { 1738 }, level = 1, group = "LifeGainPerTargetLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHashes = { [821021828] = { "Grants 22 Life per Enemy Hit" }, } }, - ["LifeGainPerTargetImplicit2Claw1"] = { affix = "", "Grants 3 Life per Enemy Hit", statOrder = { 1738 }, level = 1, group = "LifeGainPerTargetLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHashes = { [821021828] = { "Grants 3 Life per Enemy Hit" }, } }, - ["LifeGainPerTargetImplicit2Claw2"] = { affix = "", "Grants 6 Life per Enemy Hit", statOrder = { 1738 }, level = 1, group = "LifeGainPerTargetLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHashes = { [821021828] = { "Grants 6 Life per Enemy Hit" }, } }, - ["LifeGainPerTargetImplicit2Claw3"] = { affix = "", "Grants 7 Life per Enemy Hit", statOrder = { 1738 }, level = 1, group = "LifeGainPerTargetLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHashes = { [821021828] = { "Grants 7 Life per Enemy Hit" }, } }, - ["LifeGainPerTargetImplicit2Claw3_1"] = { affix = "", "Grants 8 Life per Enemy Hit", statOrder = { 1738 }, level = 1, group = "LifeGainPerTargetLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHashes = { [821021828] = { "Grants 8 Life per Enemy Hit" }, } }, - ["LifeGainPerTargetImplicit2Claw4"] = { affix = "", "Grants 12 Life per Enemy Hit", statOrder = { 1738 }, level = 1, group = "LifeGainPerTargetLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHashes = { [821021828] = { "Grants 12 Life per Enemy Hit" }, } }, - ["LifeGainPerTargetImplicit2Claw4_1"] = { affix = "", "Grants 19 Life per Enemy Hit", statOrder = { 1738 }, level = 1, group = "LifeGainPerTargetLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHashes = { [821021828] = { "Grants 19 Life per Enemy Hit" }, } }, - ["LifeGainPerTargetImplicit2Claw5"] = { affix = "", "Grants 15 Life per Enemy Hit", statOrder = { 1738 }, level = 1, group = "LifeGainPerTargetLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHashes = { [821021828] = { "Grants 15 Life per Enemy Hit" }, } }, - ["LifeGainPerTargetImplicit2Claw5_1"] = { affix = "", "Grants 20 Life per Enemy Hit", statOrder = { 1738 }, level = 1, group = "LifeGainPerTargetLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHashes = { [821021828] = { "Grants 20 Life per Enemy Hit" }, } }, - ["LifeGainPerTargetImplicit2Claw6"] = { affix = "", "Grants 25 Life per Enemy Hit", statOrder = { 1738 }, level = 1, group = "LifeGainPerTargetLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHashes = { [821021828] = { "Grants 25 Life per Enemy Hit" }, } }, - ["LifeGainPerTargetImplicit2Claw7"] = { affix = "", "Grants 24 Life per Enemy Hit", statOrder = { 1738 }, level = 1, group = "LifeGainPerTargetLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHashes = { [821021828] = { "Grants 24 Life per Enemy Hit" }, } }, - ["LifeGainPerTargetImplicit2Claw8"] = { affix = "", "Grants 44 Life per Enemy Hit", statOrder = { 1738 }, level = 1, group = "LifeGainPerTargetLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHashes = { [821021828] = { "Grants 44 Life per Enemy Hit" }, } }, - ["LifeGainPerTargetImplicit2Claw9_"] = { affix = "", "Grants 40 Life per Enemy Hit", statOrder = { 1738 }, level = 1, group = "LifeGainPerTargetLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHashes = { [821021828] = { "Grants 40 Life per Enemy Hit" }, } }, - ["LifeGainPerTargetImplicit2Claw10"] = { affix = "", "Grants 46 Life per Enemy Hit", statOrder = { 1738 }, level = 1, group = "LifeGainPerTargetLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHashes = { [821021828] = { "Grants 46 Life per Enemy Hit" }, } }, - ["LifeGainPerTargetImplicit2Claw11_"] = { affix = "", "Grants 40 Life per Enemy Hit", statOrder = { 1738 }, level = 1, group = "LifeGainPerTargetLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHashes = { [821021828] = { "Grants 40 Life per Enemy Hit" }, } }, - ["LifeGainPerTargetImplicit2Claw12"] = { affix = "", "Grants 50 Life per Enemy Hit", statOrder = { 1738 }, level = 1, group = "LifeGainPerTargetLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHashes = { [821021828] = { "Grants 50 Life per Enemy Hit" }, } }, - ["LifeGainPerTargetImplicit2Claw13"] = { affix = "", "Grants 46 Life per Enemy Hit", statOrder = { 1738 }, level = 1, group = "LifeGainPerTargetLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHashes = { [821021828] = { "Grants 46 Life per Enemy Hit" }, } }, - ["LifeGainPerTargetImplicitQuiver3New"] = { affix = "", "Gain (6-8) Life per Enemy Hit with Attacks", statOrder = { 1740 }, level = 18, group = "LifeGainPerTarget", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHashes = { [2797971005] = { "Gain (6-8) Life per Enemy Hit with Attacks" }, } }, - ["LifeGainPerTargetImplicitQuiver8"] = { affix = "", "Gain (3-4) Life per Enemy Hit with Attacks", statOrder = { 1740 }, level = 13, group = "LifeGainPerTarget", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHashes = { [2797971005] = { "Gain (3-4) Life per Enemy Hit with Attacks" }, } }, - ["LifeGainPerTargetUniqueSceptre2"] = { affix = "", "Grants (6-10) Life per Enemy Hit", statOrder = { 1738 }, level = 1, group = "LifeGainPerTargetLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHashes = { [821021828] = { "Grants (6-10) Life per Enemy Hit" }, } }, - ["LifeGainPerTargetUniqueRapier2"] = { affix = "", "Grants 3 Life per Enemy Hit", statOrder = { 1738 }, level = 1, group = "LifeGainPerTargetLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHashes = { [821021828] = { "Grants 3 Life per Enemy Hit" }, } }, - ["LifeGainPerTargetUniqueRing7"] = { affix = "", "Gain (40-60) Life per Enemy Hit with Attacks", statOrder = { 1740 }, level = 1, group = "LifeGainPerTarget", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHashes = { [2797971005] = { "Gain (40-60) Life per Enemy Hit with Attacks" }, } }, - ["LifeGainPerTargetUniqueQuiver6_"] = { affix = "", "Gain (2-3) Life per Enemy Hit with Attacks", statOrder = { 1740 }, level = 1, group = "LifeGainPerTarget", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHashes = { [2797971005] = { "Gain (2-3) Life per Enemy Hit with Attacks" }, } }, - ["LifeGainPerTargetUniqueOneHandSword7"] = { affix = "", "Grants 2 Life per Enemy Hit", statOrder = { 1738 }, level = 1, group = "LifeGainPerTargetLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHashes = { [821021828] = { "Grants 2 Life per Enemy Hit" }, } }, - ["LifeGainPerTargetUniqueDescentClaw1"] = { affix = "", "Grants 3 Life per Enemy Hit", statOrder = { 1738 }, level = 1, group = "LifeGainPerTargetLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHashes = { [821021828] = { "Grants 3 Life per Enemy Hit" }, } }, - ["LifeGainPerTargetUnique__1"] = { affix = "", "Gain 7 Life per Enemy Hit with Attacks", statOrder = { 1740 }, level = 1, group = "LifeGainPerTarget", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHashes = { [2797971005] = { "Gain 7 Life per Enemy Hit with Attacks" }, } }, - ["LoseLifePerTargetUnique__1"] = { affix = "", "Lose (20-25) Life per Enemy Hit with Attacks", statOrder = { 1740 }, level = 1, group = "LifeGainPerTarget", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHashes = { [2797971005] = { "Lose (20-25) Life per Enemy Hit with Attacks" }, } }, - ["LoseLifePerTargetUnique__2"] = { affix = "", "Lose (10-20) Life per Enemy Killed", statOrder = { 1748 }, level = 40, group = "LifeGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3695891184] = { "Lose (10-20) Life per Enemy Killed" }, } }, - ["FireDamagePercentUniqueStaff1_"] = { affix = "", "(70-90)% increased Fire Damage", statOrder = { 1357 }, level = 1, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(70-90)% increased Fire Damage" }, } }, - ["FireDamagePercentUniqueStrHelmet2"] = { affix = "", "(30-40)% increased Fire Damage", statOrder = { 1357 }, level = 1, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(30-40)% increased Fire Damage" }, } }, - ["FireDamagePercentUniqueBodyInt4"] = { affix = "", "(25-35)% increased Fire Damage", statOrder = { 1357 }, level = 1, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(25-35)% increased Fire Damage" }, } }, - ["FireDamagePercentUniqueHelmetInt5"] = { affix = "", "50% increased Fire Damage", statOrder = { 1357 }, level = 1, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "50% increased Fire Damage" }, } }, - ["FireDamagePercentUniqueRing18"] = { affix = "", "(25-30)% increased Fire Damage", statOrder = { 1357 }, level = 1, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(25-30)% increased Fire Damage" }, } }, - ["FireDamagePercentUniqueBelt9a"] = { affix = "", "(20-30)% increased Fire Damage", statOrder = { 1357 }, level = 1, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(20-30)% increased Fire Damage" }, } }, - ["FireDamagePercentUniqueRing24"] = { affix = "", "(15-25)% increased Fire Damage", statOrder = { 1357 }, level = 14, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(15-25)% increased Fire Damage" }, } }, - ["FireDamagePercentUniqueSceptre9"] = { affix = "", "30% increased Fire Damage", statOrder = { 1357 }, level = 1, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "30% increased Fire Damage" }, } }, - ["FireDamagePercentUniqueWand10"] = { affix = "", "(20-30)% increased Fire Damage", statOrder = { 1357 }, level = 1, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(20-30)% increased Fire Damage" }, } }, - ["FireDamagePercentUniqueRing36"] = { affix = "", "(20-30)% increased Fire Damage", statOrder = { 1357 }, level = 1, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(20-30)% increased Fire Damage" }, } }, - ["FireDamagePercentUniqueRing38"] = { affix = "", "(30-40)% increased Fire Damage", statOrder = { 1357 }, level = 1, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(30-40)% increased Fire Damage" }, } }, - ["FireDamagePercentUnique__4"] = { affix = "", "(25-30)% increased Fire Damage", statOrder = { 1357 }, level = 1, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(25-30)% increased Fire Damage" }, } }, - ["FireDamagePercentUnique___5"] = { affix = "", "(20-30)% increased Fire Damage", statOrder = { 1357 }, level = 1, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(20-30)% increased Fire Damage" }, } }, - ["FireDamagePercentUnique__6"] = { affix = "", "(50-70)% increased Fire Damage", statOrder = { 1357 }, level = 45, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(50-70)% increased Fire Damage" }, } }, - ["FireDamagePercentUnique___7"] = { affix = "", "25% increased Fire Damage", statOrder = { 1357 }, level = 1, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "25% increased Fire Damage" }, } }, - ["FireDamagePercentUnique__12___"] = { affix = "", "100% increased Fire Damage", statOrder = { 1357 }, level = 1, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "100% increased Fire Damage" }, } }, - ["ColdDamagePercentUniqueStaff2"] = { affix = "", "(40-50)% increased Cold Damage", statOrder = { 1366 }, level = 1, group = "ColdDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(40-50)% increased Cold Damage" }, } }, - ["ColdDamagePercentUniqueHelmetStrInt3"] = { affix = "", "(10-15)% increased Cold Damage", statOrder = { 1366 }, level = 1, group = "ColdDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(10-15)% increased Cold Damage" }, } }, - ["ColdDamagePercentUniqueRing19"] = { affix = "", "(25-30)% increased Cold Damage", statOrder = { 1366 }, level = 1, group = "ColdDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(25-30)% increased Cold Damage" }, } }, - ["ColdDamagePercentUniqueBelt9b"] = { affix = "", "(20-30)% increased Cold Damage", statOrder = { 1366 }, level = 1, group = "ColdDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(20-30)% increased Cold Damage" }, } }, - ["ColdDamagePercentUnique__3"] = { affix = "", "(30-50)% increased Cold Damage", statOrder = { 1366 }, level = 1, group = "ColdDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(30-50)% increased Cold Damage" }, } }, - ["ColdDamagePercentUnique__5"] = { affix = "", "(30-50)% increased Cold Damage", statOrder = { 1366 }, level = 1, group = "ColdDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(30-50)% increased Cold Damage" }, } }, - ["ColdDamagePercentUnique__6"] = { affix = "", "(20-25)% increased Cold Damage", statOrder = { 1366 }, level = 1, group = "ColdDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(20-25)% increased Cold Damage" }, } }, - ["ColdDamagePercentUnique__7"] = { affix = "", "(20-30)% increased Cold Damage", statOrder = { 1366 }, level = 1, group = "ColdDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(20-30)% increased Cold Damage" }, } }, - ["ColdDamagePercentUnique__8"] = { affix = "", "30% increased Cold Damage", statOrder = { 1366 }, level = 1, group = "ColdDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "30% increased Cold Damage" }, } }, - ["ColdDamagePercentUnique__9"] = { affix = "", "(20-40)% increased Cold Damage", statOrder = { 1366 }, level = 1, group = "ColdDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(20-40)% increased Cold Damage" }, } }, - ["ColdDamagePercentUnique___10"] = { affix = "", "(10-20)% increased Cold Damage", statOrder = { 1366 }, level = 1, group = "ColdDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(10-20)% increased Cold Damage" }, } }, - ["ColdDamagePercentUnique___11"] = { affix = "", "(20-30)% increased Cold Damage", statOrder = { 1366 }, level = 1, group = "ColdDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(20-30)% increased Cold Damage" }, } }, - ["LightningDamageUniqueWand1"] = { affix = "", "(20-30)% increased Lightning Damage", statOrder = { 1377 }, level = 1, group = "LightningDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(20-30)% increased Lightning Damage" }, } }, - ["LightningDamageUniqueHelmetDexInt1"] = { affix = "", "(20-30)% increased Lightning Damage", statOrder = { 1377 }, level = 1, group = "LightningDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(20-30)% increased Lightning Damage" }, } }, - ["LightningDamagePercentUniqueHelmetStrInt3"] = { affix = "", "(10-15)% increased Lightning Damage", statOrder = { 1377 }, level = 1, group = "LightningDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(10-15)% increased Lightning Damage" }, } }, - ["LightningDamagePercentUniqueRing20"] = { affix = "", "(25-30)% increased Lightning Damage", statOrder = { 1377 }, level = 1, group = "LightningDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(25-30)% increased Lightning Damage" }, } }, - ["LightningDamagePercentUniqueBelt9c"] = { affix = "", "(20-30)% increased Lightning Damage", statOrder = { 1377 }, level = 1, group = "LightningDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(20-30)% increased Lightning Damage" }, } }, - ["LightningDamagePercentUniqueStaff8"] = { affix = "", "(30-50)% increased Lightning Damage", statOrder = { 1377 }, level = 1, group = "LightningDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(30-50)% increased Lightning Damage" }, } }, - ["LightningDamagePercentUniqueRing29"] = { affix = "", "20% increased Lightning Damage", statOrder = { 1377 }, level = 1, group = "LightningDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "20% increased Lightning Damage" }, } }, - ["LightningDamagePercentUniqueRing34"] = { affix = "", "(15-25)% increased Lightning Damage", statOrder = { 1377 }, level = 1, group = "LightningDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(15-25)% increased Lightning Damage" }, } }, - ["LightningDamagePercentUnique__2"] = { affix = "", "(15-20)% increased Lightning Damage", statOrder = { 1377 }, level = 1, group = "LightningDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(15-20)% increased Lightning Damage" }, } }, - ["LightningDamagePercentUnique__3"] = { affix = "", "35% increased Lightning Damage", statOrder = { 1377 }, level = 1, group = "LightningDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "35% increased Lightning Damage" }, } }, - ["LightningDamagePercentUnique__4"] = { affix = "", "100% increased Lightning Damage", statOrder = { 1377 }, level = 40, group = "LightningDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "100% increased Lightning Damage" }, } }, - ["LightningDamagePercentUnique__7"] = { affix = "", "(20-30)% increased Lightning Damage", statOrder = { 1377 }, level = 70, group = "LightningDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(20-30)% increased Lightning Damage" }, } }, - ["LightningDamagePercentUnique__8"] = { affix = "", "(30-40)% increased Lightning Damage", statOrder = { 1377 }, level = 70, group = "LightningDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(30-40)% increased Lightning Damage" }, } }, - ["LifeGainedFromEnemyDeathUniqueTwoHandAxe1"] = { affix = "", "Gain 20 Life per Enemy Killed", statOrder = { 1748 }, level = 1, group = "LifeGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3695891184] = { "Gain 20 Life per Enemy Killed" }, } }, - ["LifeGainedFromEnemyDeathUniqueDagger1"] = { affix = "", "Gain (100-200) Life per Enemy Killed", statOrder = { 1748 }, level = 1, group = "LifeGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3695891184] = { "Gain (100-200) Life per Enemy Killed" }, } }, - ["LifeGainedFromEnemyDeathUniqueBootsStrInt1"] = { affix = "", "Gain (10-20) Life per Enemy Killed", statOrder = { 1748 }, level = 1, group = "LifeGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3695891184] = { "Gain (10-20) Life per Enemy Killed" }, } }, - ["LifeGainedFromEnemyDeathUniqueTwoHandAxe2"] = { affix = "", "Gain 10 Life per Enemy Killed", statOrder = { 1748 }, level = 1, group = "LifeGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3695891184] = { "Gain 10 Life per Enemy Killed" }, } }, - ["LifeGainedFromEnemyDeathUniqueTwoHandMace7"] = { affix = "", "Gain 10 Life per Enemy Killed", statOrder = { 1748 }, level = 1, group = "LifeGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3695891184] = { "Gain 10 Life per Enemy Killed" }, } }, - ["LifeGainedFromEnemyDeathUniqueHelmetDexInt3"] = { affix = "", "Gain (15-20) Life per Enemy Killed", statOrder = { 1748 }, level = 1, group = "LifeGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3695891184] = { "Gain (15-20) Life per Enemy Killed" }, } }, - ["LifeGainedFromEnemyDeathUniqueOneHandAxe3"] = { affix = "", "Gain (5-7) Life per Enemy Killed", statOrder = { 1748 }, level = 1, group = "LifeGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3695891184] = { "Gain (5-7) Life per Enemy Killed" }, } }, - ["LifeGainedFromEnemyDeathUniqueBodyStrDexInt1"] = { affix = "", "Gain 100 Life per Enemy Killed", statOrder = { 1748 }, level = 94, group = "LifeGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3695891184] = { "Gain 100 Life per Enemy Killed" }, } }, - ["LifeGainedFromEnemyDeathUniqueDagger11"] = { affix = "", "Gain 5 Life per Enemy Killed", statOrder = { 1748 }, level = 1, group = "LifeGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3695891184] = { "Gain 5 Life per Enemy Killed" }, } }, - ["LifeGainedFromEnemyDeathUnique__1"] = { affix = "", "Gain (15-25) Life per Enemy Hit with Attacks", statOrder = { 1740 }, level = 1, group = "LifeGainPerTarget", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHashes = { [2797971005] = { "Gain (15-25) Life per Enemy Hit with Attacks" }, } }, - ["LifeGainedFromEnemyDeathUnique__2"] = { affix = "", "Gain (20-30) Life per Enemy Killed", statOrder = { 1748 }, level = 1, group = "LifeGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3695891184] = { "Gain (20-30) Life per Enemy Killed" }, } }, - ["LifeGainedFromEnemyDeathUnique__3"] = { affix = "", "Gain (15-25) Life per Enemy Killed", statOrder = { 1748 }, level = 1, group = "LifeGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3695891184] = { "Gain (15-25) Life per Enemy Killed" }, } }, - ["LifeGainedFromEnemyDeathUnique__4"] = { affix = "", "Gain 100 Life per Enemy Killed", statOrder = { 1748 }, level = 1, group = "LifeGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3695891184] = { "Gain 100 Life per Enemy Killed" }, } }, - ["LifeGainedFromEnemyDeathUnique__5"] = { affix = "", "Gain 150 Life per Enemy Killed", statOrder = { 1748 }, level = 1, group = "LifeGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3695891184] = { "Gain 150 Life per Enemy Killed" }, } }, - ["ManaGainedFromEnemyDeathUniqueBow2"] = { affix = "", "Gain 10 Mana per Enemy Killed", statOrder = { 1763 }, level = 1, group = "ManaGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1368271171] = { "Gain 10 Mana per Enemy Killed" }, } }, - ["ManaGainedFromEnemyDeathUniqueDagger1"] = { affix = "", "Gain (50-100) Mana per Enemy Killed", statOrder = { 1763 }, level = 1, group = "ManaGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1368271171] = { "Gain (50-100) Mana per Enemy Killed" }, } }, - ["ManaGainedFromEnemyDeathUniqueRing4"] = { affix = "", "Gain (5-20) Mana per Enemy Killed", statOrder = { 1763 }, level = 1, group = "ManaGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1368271171] = { "Gain (5-20) Mana per Enemy Killed" }, } }, - ["ManaGainedFromEnemyDeathUniqueTwoHandSword3"] = { affix = "", "Gain 10 Mana per Enemy Killed", statOrder = { 1763 }, level = 1, group = "ManaGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1368271171] = { "Gain 10 Mana per Enemy Killed" }, } }, - ["ManaGainedFromEnemyDeathUniqueTwoHandAxe5"] = { affix = "", "Gain 10 Mana per Enemy Killed", statOrder = { 1763 }, level = 1, group = "ManaGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1368271171] = { "Gain 10 Mana per Enemy Killed" }, } }, - ["ManaGainedFromEnemyDeathUniqueShieldInt3"] = { affix = "", "Gain 10 Mana per Enemy Killed", statOrder = { 1763 }, level = 1, group = "ManaGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1368271171] = { "Gain 10 Mana per Enemy Killed" }, } }, - ["ManaGainedFromEnemyDeathUniqueBodyStrDexInt1"] = { affix = "", "Gain 100 Mana per Enemy Killed", statOrder = { 1763 }, level = 1, group = "ManaGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1368271171] = { "Gain 100 Mana per Enemy Killed" }, } }, - ["ManaGainedFromEnemyDeathUnique__1"] = { affix = "", "Gain 30 Mana per Enemy Killed", statOrder = { 1763 }, level = 1, group = "ManaGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1368271171] = { "Gain 30 Mana per Enemy Killed" }, } }, - ["ManaGainedFromEnemyDeathUnique__2"] = { affix = "", "Gain (20-40) Mana per Enemy Killed", statOrder = { 1763 }, level = 1, group = "ManaGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1368271171] = { "Gain (20-40) Mana per Enemy Killed" }, } }, - ["ManaGainedFromEnemyDeathUnique__3"] = { affix = "", "Gain (1-100) Mana per Enemy Killed", statOrder = { 1763 }, level = 1, group = "ManaGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1368271171] = { "Gain (1-100) Mana per Enemy Killed" }, } }, - ["LocalCriticalStrikeChanceUniqueOneHandMace1"] = { affix = "", "25% increased Critical Strike Chance", statOrder = { 1464 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "25% increased Critical Strike Chance" }, } }, - ["LocalCriticalStrikeChanceUniqueOneHandSword4"] = { affix = "", "(90-110)% increased Critical Strike Chance", statOrder = { 1464 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "(90-110)% increased Critical Strike Chance" }, } }, - ["LocalCriticalStrikeChanceUniqueDescentDagger1"] = { affix = "", "100% increased Critical Strike Chance", statOrder = { 1464 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "100% increased Critical Strike Chance" }, } }, - ["LocalCriticalStrikeChanceUniqueDagger8"] = { affix = "", "(40-50)% increased Critical Strike Chance", statOrder = { 1464 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "(40-50)% increased Critical Strike Chance" }, } }, - ["LocalCriticalStrikeChanceUniqueWand6_"] = { affix = "", "(20-30)% increased Critical Strike Chance", statOrder = { 1464 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "(20-30)% increased Critical Strike Chance" }, } }, - ["LocalCriticalStrikeChanceUniqueSceptre9"] = { affix = "", "(30-40)% increased Critical Strike Chance", statOrder = { 1464 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "(30-40)% increased Critical Strike Chance" }, } }, - ["LocalCriticalStrikeChanceUniqueOneHandAxe8_"] = { affix = "", "(30-50)% increased Critical Strike Chance", statOrder = { 1464 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "(30-50)% increased Critical Strike Chance" }, } }, - ["LocalCriticalStrikeChanceUniqueStaff14"] = { affix = "", "(20-35)% increased Critical Strike Chance", statOrder = { 1464 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "(20-35)% increased Critical Strike Chance" }, } }, - ["LocalCriticalStrikeChanceUniqueTwoHandMace6"] = { affix = "", "(30-40)% increased Critical Strike Chance", statOrder = { 1464 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "(30-40)% increased Critical Strike Chance" }, } }, - ["LocalCriticalMultiplierUniqueBow3"] = { affix = "", "+50% to Global Critical Strike Multiplier", statOrder = { 1488 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "+50% to Global Critical Strike Multiplier" }, } }, - ["LocalCriticalMultiplierUniqueClaw2"] = { affix = "", "+40% to Global Critical Strike Multiplier", statOrder = { 1488 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "+40% to Global Critical Strike Multiplier" }, } }, - ["LocalCriticalMultiplierUniqueDagger4"] = { affix = "", "+(30-40)% to Global Critical Strike Multiplier", statOrder = { 1488 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "+(30-40)% to Global Critical Strike Multiplier" }, } }, - ["LocalCriticalMultiplierUniqueOneHandSword4"] = { affix = "", "+(20-30)% to Global Critical Strike Multiplier", statOrder = { 1488 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "+(20-30)% to Global Critical Strike Multiplier" }, } }, - ["GlobalSpellGemsLevelUnique__1"] = { affix = "", "+2 to Level of all Spell Skill Gems", statOrder = { 1608 }, level = 1, group = "GlobalIncreaseSpellSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "caster", "gem" }, tradeHashes = { [124131830] = { "+2 to Level of all Spell Skill Gems" }, } }, - ["GlobalColdSpellGemsLevelUnique__1"] = { affix = "", "+3 to Level of all Cold Spell Skill Gems", statOrder = { 1611 }, level = 1, group = "GlobalIncreaseColdSpellSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "caster", "gem" }, tradeHashes = { [2254480358] = { "+3 to Level of all Cold Spell Skill Gems" }, } }, - ["LocalIncreaseSocketedLightningGemLevelUniqueStaff8"] = { affix = "", "+2 to Level of all Lightning Spell Skill Gems", statOrder = { 1612 }, level = 1, group = "GlobalIncreaseLightningSpellSkillGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "caster", "gem" }, tradeHashes = { [1545858329] = { "+2 to Level of all Lightning Spell Skill Gems" }, } }, - ["LocalIncreaseSocketedLightningGemLevelUnique__1"] = { affix = "", "+(1-3) to Level of Socketed Lightning Gems", statOrder = { 169 }, level = 1, group = "LocalIncreaseSocketedLightningGemLevel", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "gem" }, tradeHashes = { [4043416969] = { "+(1-3) to Level of Socketed Lightning Gems" }, } }, - ["LocalIncreaseSocketedChaosGemLevelUnique__1"] = { affix = "", "+2 to Level of all Chaos Spell Skill Gems", statOrder = { 1613 }, level = 1, group = "GlobalIncreaseChaosSpellSkillGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos", "caster", "gem" }, tradeHashes = { [4226189338] = { "+2 to Level of all Chaos Spell Skill Gems" }, } }, - ["GlobalPhysicalSpellGemsLevelUnique__1"] = { affix = "", "+3 to Level of all Physical Spell Skill Gems", statOrder = { 1609 }, level = 1, group = "GlobalIncreasePhysicalSpellSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "physical", "caster", "gem" }, tradeHashes = { [1600707273] = { "+3 to Level of all Physical Spell Skill Gems" }, } }, - ["GlobalVaalGemsLevelImplicit1_"] = { affix = "", "+1 to Level of all Vaal Skill Gems", statOrder = { 10518 }, level = 1, group = "GlobalVaalGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [4180346416] = { "+1 to Level of all Vaal Skill Gems" }, } }, - ["LocalIncreaseSocketedProjectileGemLevel1"] = { affix = "", "+1 to Level of Socketed Projectile Gems", statOrder = { 177 }, level = 1, group = "LocalIncreaseSocketedProjectileGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "gem" }, tradeHashes = { [2176571093] = { "+1 to Level of Socketed Projectile Gems" }, } }, - ["LocalIncreaseSocketedSpellGemLevel1"] = { affix = "", "+1 to Level of Socketed Spell Gems", statOrder = { 174 }, level = 1, group = "LocalIncreaseSocketedSpellGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "gem" }, tradeHashes = { [446733281] = { "+1 to Level of Socketed Spell Gems" }, } }, - ["LocalIncreaseSocketedSpellGemLevelUniqueWand4"] = { affix = "", "+1 to Level of Socketed Spell Gems", statOrder = { 174 }, level = 1, group = "LocalIncreaseSocketedSpellGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "gem" }, tradeHashes = { [446733281] = { "+1 to Level of Socketed Spell Gems" }, } }, - ["GlobalIncreaseMinionSpellSkillGemLevelUnique__1"] = { affix = "", "+(1-2) to Level of all Minion Skill Gems", statOrder = { 1614 }, level = 1, group = "GlobalIncreaseMinionSpellSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "minion", "gem" }, tradeHashes = { [2162097452] = { "+(1-2) to Level of all Minion Skill Gems" }, } }, - ["GlobalIncreaseMinionSpellSkillGemLevelUnique__2"] = { affix = "", "+(1-2) to Level of all Minion Skill Gems", statOrder = { 1614 }, level = 1, group = "GlobalIncreaseMinionSpellSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "minion", "gem" }, tradeHashes = { [2162097452] = { "+(1-2) to Level of all Minion Skill Gems" }, } }, - ["GlobalIncreaseMinionSpellSkillGemLevelUnique__3"] = { affix = "", "+1 to Level of all Minion Skill Gems", statOrder = { 1614 }, level = 1, group = "GlobalIncreaseMinionSpellSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "minion", "gem" }, tradeHashes = { [2162097452] = { "+1 to Level of all Minion Skill Gems" }, } }, - ["GlobalIncreaseMinionSpellSkillGemLevelUnique__4"] = { affix = "", "+1 to Level of all Minion Skill Gems", statOrder = { 1614 }, level = 100, group = "GlobalIncreaseMinionSpellSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "minion", "gem" }, tradeHashes = { [2162097452] = { "+1 to Level of all Minion Skill Gems" }, } }, - ["GlobalIncreaseMinionSpellSkillGemLevelUnique__5"] = { affix = "", "+(1-2) to Level of all Minion Skill Gems", statOrder = { 1614 }, level = 1, group = "GlobalIncreaseMinionSpellSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "minion", "gem" }, tradeHashes = { [2162097452] = { "+(1-2) to Level of all Minion Skill Gems" }, } }, - ["GlobalIncreaseMeleeSkillGemLevelUnique__1"] = { affix = "", "+(1-3) to Level of all Melee Skill Gems", statOrder = { 9209 }, level = 1, group = "GlobalIncreaseMeleeSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "attack", "gem" }, tradeHashes = { [9187492] = { "+(1-3) to Level of all Melee Skill Gems" }, } }, - ["LocalIncreaseSocketedMinionGemLevelUnique__1"] = { affix = "", "+2 to Level of Socketed Minion Gems", statOrder = { 180 }, level = 1, group = "LocalIncreaseSocketedMinionGemLevel", weightKey = { }, weightVal = { }, modTags = { "minion", "gem" }, tradeHashes = { [3604946673] = { "+2 to Level of Socketed Minion Gems" }, } }, - ["LocalIncreaseSocketedMinionGemLevelUnique__2_"] = { affix = "", "+2 to Level of Socketed Minion Gems", statOrder = { 180 }, level = 1, group = "LocalIncreaseSocketedMinionGemLevel", weightKey = { }, weightVal = { }, modTags = { "minion", "gem" }, tradeHashes = { [3604946673] = { "+2 to Level of Socketed Minion Gems" }, } }, - ["LocalIncreaseSocketedMinionGemLevelUnique__3"] = { affix = "", "+2 to Level of Socketed Minion Gems", statOrder = { 180 }, level = 1, group = "LocalIncreaseSocketedMinionGemLevel", weightKey = { }, weightVal = { }, modTags = { "minion", "gem" }, tradeHashes = { [3604946673] = { "+2 to Level of Socketed Minion Gems" }, } }, - ["LocalIncreaseSocketedMinionGemLevelUnique__4"] = { affix = "", "+2 to Level of Socketed Minion Gems", statOrder = { 180 }, level = 1, group = "LocalIncreaseSocketedMinionGemLevel", weightKey = { }, weightVal = { }, modTags = { "minion", "gem" }, tradeHashes = { [3604946673] = { "+2 to Level of Socketed Minion Gems" }, } }, - ["LocalIncreaseSocketedMinionGemLevelUnique__5____"] = { affix = "", "+3 to Level of Socketed Minion Gems", statOrder = { 180 }, level = 1, group = "LocalIncreaseSocketedMinionGemLevel", weightKey = { }, weightVal = { }, modTags = { "minion", "gem" }, tradeHashes = { [3604946673] = { "+3 to Level of Socketed Minion Gems" }, } }, - ["LocalIncreaseSocketedSpellGemLevelUnique__1"] = { affix = "", "+2 to Level of Socketed Spell Gems", statOrder = { 174 }, level = 1, group = "LocalIncreaseSocketedSpellGemLevel", weightKey = { }, weightVal = { }, modTags = { "caster", "gem" }, tradeHashes = { [446733281] = { "+2 to Level of Socketed Spell Gems" }, } }, - ["LocalIncreaseSocketedFireGemLevelUniqueStaff1"] = { affix = "", "+2 to Level of all Fire Spell Skill Gems", statOrder = { 1610 }, level = 1, group = "GlobalIncreaseFireSpellSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "caster", "gem" }, tradeHashes = { [591105508] = { "+2 to Level of all Fire Spell Skill Gems" }, } }, - ["LocalIncreaseSocketedFireGemLevelUniqueDagger10"] = { affix = "", "+1 to Level of all Fire Spell Skill Gems", statOrder = { 1610 }, level = 1, group = "GlobalIncreaseFireSpellSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "caster", "gem" }, tradeHashes = { [591105508] = { "+1 to Level of all Fire Spell Skill Gems" }, } }, - ["LocalIncreaseSocketedFireGemLevelUniqueStaff13"] = { affix = "", "+1 to Level of Socketed Fire Gems", statOrder = { 167 }, level = 1, group = "LocalIncreaseSocketedFireGemLevel", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "gem" }, tradeHashes = { [339179093] = { "+1 to Level of Socketed Fire Gems" }, } }, - ["LocalIncreaseSocketedFireGemLevelUnique__1_"] = { affix = "", "+2 to Level of Socketed Fire Gems", statOrder = { 167 }, level = 1, group = "LocalIncreaseSocketedFireGemLevel", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "gem" }, tradeHashes = { [339179093] = { "+2 to Level of Socketed Fire Gems" }, } }, - ["LocalIncreaseSocketedFireGemLevelUnique__2"] = { affix = "", "+2 to Level of Socketed Fire Gems", statOrder = { 167 }, level = 1, group = "LocalIncreaseSocketedFireGemLevel", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "gem" }, tradeHashes = { [339179093] = { "+2 to Level of Socketed Fire Gems" }, } }, - ["LocalIncreaseSocketedBowGemLevelUniqueBow2"] = { affix = "", "+1 to Level of Socketed Bow Gems", statOrder = { 178 }, level = 1, group = "LocalIncreaseSocketedBowGemLevel", weightKey = { }, weightVal = { }, modTags = { "attack", "gem" }, tradeHashes = { [2027269580] = { "+1 to Level of Socketed Bow Gems" }, } }, - ["LocalIncreaseSocketedColdGemLevelUniqueDexHelmet2"] = { affix = "", "+1 to Level of Socketed Cold Gems", statOrder = { 168 }, level = 1, group = "LocalIncreaseSocketedColdGemLevel", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "gem" }, tradeHashes = { [1645459191] = { "+1 to Level of Socketed Cold Gems" }, } }, - ["LocalIncreaseSocketedColdGemLevelUniqueStaff13"] = { affix = "", "+1 to Level of Socketed Cold Gems", statOrder = { 168 }, level = 1, group = "LocalIncreaseSocketedColdGemLevel", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "gem" }, tradeHashes = { [1645459191] = { "+1 to Level of Socketed Cold Gems" }, } }, - ["LocalIncreaseSocketedColdGemLevelUnique__1"] = { affix = "", "+2 to Level of Socketed Cold Gems", statOrder = { 168 }, level = 1, group = "LocalIncreaseSocketedColdGemLevel", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "gem" }, tradeHashes = { [1645459191] = { "+2 to Level of Socketed Cold Gems" }, } }, - ["LocalIncreaseSocketedFireGemLevelUniqueDexHelmet2"] = { affix = "", "+1 to Level of Socketed Fire Gems", statOrder = { 167 }, level = 1, group = "LocalIncreaseSocketedFireGemLevel", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "gem" }, tradeHashes = { [339179093] = { "+1 to Level of Socketed Fire Gems" }, } }, - ["LocalIncreaseSocketedGemLevelUniqueHelmetStrInt2"] = { affix = "", "+1 to Level of Socketed Gems", statOrder = { 162 }, level = 1, group = "LocalIncreaseSocketedGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [2843100721] = { "+1 to Level of Socketed Gems" }, } }, - ["LocalIncreaseSocketedGemLevelUnique__4"] = { affix = "", "+1 to Level of Socketed Gems", statOrder = { 162 }, level = 1, group = "LocalIncreaseSocketedGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [2843100721] = { "+1 to Level of Socketed Gems" }, } }, - ["LocalIncreaseSocketedGemLevelUnique__5"] = { affix = "", "+1 to Level of Socketed Gems", statOrder = { 162 }, level = 1, group = "LocalIncreaseSocketedGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [2843100721] = { "+1 to Level of Socketed Gems" }, } }, - ["LocalIncreaseSocketedMeleeGemLevelUniqueRapier1"] = { affix = "", "+1 to Level of Socketed Melee Gems", statOrder = { 179 }, level = 1, group = "LocalIncreaseSocketedMeleeGemLevel", weightKey = { }, weightVal = { }, modTags = { "attack", "gem" }, tradeHashes = { [829382474] = { "+1 to Level of Socketed Melee Gems" }, } }, - ["LocalIncreaseSocketedColdGemLevelUniqueStaff2"] = { affix = "", "+2 to Level of all Cold Spell Skill Gems", statOrder = { 1611 }, level = 1, group = "GlobalIncreaseColdSpellSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "caster", "gem" }, tradeHashes = { [2254480358] = { "+2 to Level of all Cold Spell Skill Gems" }, } }, - ["LocalIncreaseSocketedGemLevelUniqueSceptre1"] = { affix = "", "+1 to Level of Socketed Gems", statOrder = { 162 }, level = 1, group = "LocalIncreaseSocketedGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [2843100721] = { "+1 to Level of Socketed Gems" }, } }, - ["LocalIncreaseSocketedGemLevelUniqueHelmetStrDex6"] = { affix = "", "+1 to Level of Socketed Gems", statOrder = { 162 }, level = 1, group = "LocalIncreaseSocketedGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [2843100721] = { "+1 to Level of Socketed Gems" }, } }, - ["LocalIncreaseSocketedFireGemLevelUniqueBodyInt4"] = { affix = "", "+3 to Level of Socketed Fire Gems", statOrder = { 167 }, level = 1, group = "LocalIncreaseSocketedFireGemLevel", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "gem" }, tradeHashes = { [339179093] = { "+3 to Level of Socketed Fire Gems" }, } }, - ["LocalIncreaseSocketedMinionGemLevelUniqueShieldInt2"] = { affix = "", "+2 to Level of Socketed Minion Gems", statOrder = { 180 }, level = 1, group = "LocalIncreaseSocketedMinionGemLevel", weightKey = { }, weightVal = { }, modTags = { "minion", "gem" }, tradeHashes = { [3604946673] = { "+2 to Level of Socketed Minion Gems" }, } }, - ["LocalIncreaseSocketedMeleeGemLevelUniqueTwoHandMace5"] = { affix = "", "+1 to Level of Socketed Melee Gems", statOrder = { 179 }, level = 1, group = "LocalIncreaseSocketedMeleeGemLevel", weightKey = { }, weightVal = { }, modTags = { "attack", "gem" }, tradeHashes = { [829382474] = { "+1 to Level of Socketed Melee Gems" }, } }, - ["LocalIncreaseSocketedMinionGemLevelUniqueTwoHandMace5"] = { affix = "", "+1 to Level of Socketed Minion Gems", statOrder = { 180 }, level = 1, group = "LocalIncreaseSocketedMinionGemLevel", weightKey = { }, weightVal = { }, modTags = { "minion", "gem" }, tradeHashes = { [3604946673] = { "+1 to Level of Socketed Minion Gems" }, } }, - ["LocalIncreaseSocketedAuraGemLevelUniqueHelmetDex5"] = { affix = "", "+2 to Level of Socketed Aura Gems", statOrder = { 181 }, level = 1, group = "LocalIncreaseSocketedAuraLevel", weightKey = { }, weightVal = { }, modTags = { "aura", "gem" }, tradeHashes = { [2452998583] = { "+2 to Level of Socketed Aura Gems" }, } }, - ["LocalIncreaseSocketedAuraGemLevelUniqueBodyDexInt4"] = { affix = "", "+1 to Level of Socketed Aura Gems", statOrder = { 181 }, level = 1, group = "LocalIncreaseSocketedAuraLevel", weightKey = { }, weightVal = { }, modTags = { "aura", "gem" }, tradeHashes = { [2452998583] = { "+1 to Level of Socketed Aura Gems" }, } }, - ["LocalIncreaseSocketedAuraGemLevelUnique___1"] = { affix = "", "+2 to Level of Socketed Aura Gems", statOrder = { 181 }, level = 1, group = "LocalIncreaseSocketedAuraLevel", weightKey = { }, weightVal = { }, modTags = { "aura", "gem" }, tradeHashes = { [2452998583] = { "+2 to Level of Socketed Aura Gems" }, } }, - ["LocalIncreaseSocketedAuraGemLevelUnique___2___"] = { affix = "", "+5 to Level of Socketed Aura Gems", statOrder = { 181 }, level = 1, group = "LocalIncreaseSocketedAuraLevel", weightKey = { }, weightVal = { }, modTags = { "aura", "gem" }, tradeHashes = { [2452998583] = { "+5 to Level of Socketed Aura Gems" }, } }, - ["LocalIncreaseSocketedAuraGemLevelUnique___3"] = { affix = "", "+(3-5) to Level of Socketed Aura Gems", statOrder = { 181 }, level = 1, group = "LocalIncreaseSocketedAuraLevel", weightKey = { }, weightVal = { }, modTags = { "aura", "gem" }, tradeHashes = { [2452998583] = { "+(3-5) to Level of Socketed Aura Gems" }, } }, - ["LocalIncreaseSocketedColdGemLevelUniqueClaw5"] = { affix = "", "+1 to Level of Socketed Cold Gems", statOrder = { 168 }, level = 1, group = "LocalIncreaseSocketedColdGemLevel", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "gem" }, tradeHashes = { [1645459191] = { "+1 to Level of Socketed Cold Gems" }, } }, - ["LocalIncreaseSocketedGemLevelUniqueRing23"] = { affix = "", "+5 to Level of Socketed Gems", statOrder = { 162 }, level = 57, group = "LocalIncreaseSocketedGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [2843100721] = { "+5 to Level of Socketed Gems" }, } }, - ["LocalIncreaseSocketedGemLevelUniqueHelmetDexInt5"] = { affix = "", "+1 to Level of Socketed Gems", statOrder = { 162 }, level = 1, group = "LocalIncreaseSocketedGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [2843100721] = { "+1 to Level of Socketed Gems" }, } }, - ["LocalIncreaseSocketedGemLevelUniqueRing39"] = { affix = "", "+2 to Level of Socketed Gems", statOrder = { 162 }, level = 1, group = "LocalIncreaseSocketedGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [2843100721] = { "+2 to Level of Socketed Gems" }, } }, - ["LocalIncreaseSocketedGemLevelUniqueWand8"] = { affix = "", "+2 to Level of Socketed Gems", statOrder = { 162 }, level = 1, group = "LocalIncreaseSocketedGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [2843100721] = { "+2 to Level of Socketed Gems" }, } }, - ["LocalIncreaseSocketedGemLevelUniqueTwoHandAxe9"] = { affix = "", "+1 to Level of Socketed Gems", statOrder = { 162 }, level = 1, group = "LocalIncreaseSocketedGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [2843100721] = { "+1 to Level of Socketed Gems" }, } }, - ["LocalIncreaseSocketedGemLevelUnique__1"] = { affix = "", "+2 to Level of Socketed Gems", statOrder = { 162 }, level = 1, group = "LocalIncreaseSocketedGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [2843100721] = { "+2 to Level of Socketed Gems" }, } }, - ["LocalIncreaseSocketedGemLevelUnique__2"] = { affix = "", "+1 to Level of Socketed Gems", statOrder = { 162 }, level = 1, group = "LocalIncreaseSocketedGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [2843100721] = { "+1 to Level of Socketed Gems" }, } }, - ["LocalIncreaseSocketedGemLevelUnique___3"] = { affix = "", "+1 to Level of all Spell Skill Gems", statOrder = { 1608 }, level = 1, group = "GlobalIncreaseSpellSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "caster", "gem" }, tradeHashes = { [124131830] = { "+1 to Level of all Spell Skill Gems" }, } }, - ["LocalIncreaseSocketedGemLevelUnique__6"] = { affix = "", "+2 to Level of Socketed Gems", statOrder = { 162 }, level = 1, group = "LocalIncreaseSocketedGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [2843100721] = { "+2 to Level of Socketed Gems" }, } }, - ["LocalIncreaseSocketedGemLevelUnique__7"] = { affix = "", "+1 to Level of Socketed Gems", statOrder = { 162 }, level = 1, group = "LocalIncreaseSocketedGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [2843100721] = { "+1 to Level of Socketed Gems" }, } }, - ["LocalIncreaseSocketedGemLevelUnique__8"] = { affix = "", "+2 to Level of Socketed Gems", statOrder = { 162 }, level = 1, group = "LocalIncreaseSocketedGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [2843100721] = { "+2 to Level of Socketed Gems" }, } }, - ["LocalIncreaseSocketedGemLevelUnique__9"] = { affix = "", "+(5-8) to Level of Socketed Gems", statOrder = { 162 }, level = 1, group = "LocalIncreaseSocketedGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [2843100721] = { "+(5-8) to Level of Socketed Gems" }, } }, - ["LocalIncreaseSocketedGemLevelUnique__10"] = { affix = "", "+(1-2) to Level of Socketed Gems", statOrder = { 162 }, level = 1, group = "LocalIncreaseSocketedGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [2843100721] = { "+(1-2) to Level of Socketed Gems" }, } }, - ["LocalIncreaseSocketedGemLevelUnique__11_"] = { affix = "", "+2 to Level of Socketed Gems", statOrder = { 162 }, level = 1, group = "LocalIncreaseSocketedGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [2843100721] = { "+2 to Level of Socketed Gems" }, } }, - ["LocalIncreaseSocketedDexterityGemLevelUniqueClaw8"] = { affix = "", "+1 to Level of Socketed Dexterity Gems", statOrder = { 160 }, level = 1, group = "LocalIncreaseSocketedDexterityGemLevel", weightKey = { }, weightVal = { }, modTags = { "attribute", "gem" }, tradeHashes = { [2718698372] = { "+1 to Level of Socketed Dexterity Gems" }, } }, - ["LocalIncreaseSocketedGolemLevelUniqueRing35"] = { affix = "", "+3 to Level of Socketed Golem Gems", statOrder = { 203 }, level = 55, group = "LocalSocketedGolemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [3448743676] = { "+3 to Level of Socketed Golem Gems" }, } }, - ["LocalIncreaseSocketedGolemLevelUniqueRing36"] = { affix = "", "+3 to Level of Socketed Golem Gems", statOrder = { 203 }, level = 55, group = "LocalSocketedGolemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [3448743676] = { "+3 to Level of Socketed Golem Gems" }, } }, - ["LocalIncreaseSocketedGolemLevelUniqueRing37"] = { affix = "", "+3 to Level of Socketed Golem Gems", statOrder = { 203 }, level = 55, group = "LocalSocketedGolemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [3448743676] = { "+3 to Level of Socketed Golem Gems" }, } }, - ["LocalIncreaseSocketedWarcryGemLevelUniqueShieldInt5"] = { affix = "", "+3 to Level of Socketed Warcry Gems", statOrder = { 193 }, level = 1, group = "LocalSocketedWarcryGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [1672793731] = { "+3 to Level of Socketed Warcry Gems" }, } }, - ["LocalIncreaseSocketedWarcryGemLevelUniqueShieldStr4"] = { affix = "", "+1 to Level of Socketed Warcry Gems", statOrder = { 193 }, level = 1, group = "LocalSocketedWarcryGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [1672793731] = { "+1 to Level of Socketed Warcry Gems" }, } }, - ["LocalIncreaseSocketedWarcryGemLevelUniqueShieldDex7"] = { affix = "", "+1 to Level of Socketed Warcry Gems", statOrder = { 193 }, level = 1, group = "LocalSocketedWarcryGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [1672793731] = { "+1 to Level of Socketed Warcry Gems" }, } }, - ["LocalIncreasedAccuracyUnique__1"] = { affix = "", "+(330-350) to Accuracy Rating", statOrder = { 2024 }, level = 1, group = "LocalAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+(330-350) to Accuracy Rating" }, } }, - ["LocalIncreasedAccuracyUnique__2"] = { affix = "", "(15-25)% increased Attack Speed", "+(400-500) to Accuracy Rating", statOrder = { 1413, 2024 }, level = 1, group = "LocalAccuracyRatingAndAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(15-25)% increased Attack Speed" }, [691932474] = { "+(400-500) to Accuracy Rating" }, } }, - ["LocalIncreasedAccuracyUnique__3"] = { affix = "", "+(400-500) to Accuracy Rating", statOrder = { 2024 }, level = 1, group = "LocalAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+(400-500) to Accuracy Rating" }, } }, - ["LocalIncreasedAccuracyUnique__4"] = { affix = "", "+(400-500) to Accuracy Rating", statOrder = { 2024 }, level = 1, group = "LocalAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+(400-500) to Accuracy Rating" }, } }, - ["LocalIncreasedAccuracyUnique__5"] = { affix = "", "+(300-400) to Accuracy Rating", statOrder = { 2024 }, level = 1, group = "LocalAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+(300-400) to Accuracy Rating" }, } }, - ["IncreasedAccuracySwordImplicit1"] = { affix = "", "+45 to Accuracy Rating", statOrder = { 2024 }, level = 1, group = "LocalAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+45 to Accuracy Rating" }, } }, - ["IncreasedAccuracySwordImplicit2"] = { affix = "", "+165 to Accuracy Rating", statOrder = { 2024 }, level = 1, group = "LocalAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+165 to Accuracy Rating" }, } }, - ["IncreasedAccuracySwordImplicit3"] = { affix = "", "+190 to Accuracy Rating", statOrder = { 2024 }, level = 1, group = "LocalAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+190 to Accuracy Rating" }, } }, - ["IncreasedAccuracySwordImplicit4"] = { affix = "", "+240 to Accuracy Rating", statOrder = { 2024 }, level = 1, group = "LocalAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+240 to Accuracy Rating" }, } }, - ["IncreasedAccuracySwordImplicit5"] = { affix = "", "+330 to Accuracy Rating", statOrder = { 2024 }, level = 1, group = "LocalAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+330 to Accuracy Rating" }, } }, - ["IncreasedAccuracySwordImplicit6"] = { affix = "", "+350 to Accuracy Rating", statOrder = { 2024 }, level = 1, group = "LocalAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+350 to Accuracy Rating" }, } }, - ["IncreasedAccuracySwordImplicit7"] = { affix = "", "+400 to Accuracy Rating", statOrder = { 2024 }, level = 1, group = "LocalAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+400 to Accuracy Rating" }, } }, - ["IncreasedAccuracySwordImplicit8"] = { affix = "", "+460 to Accuracy Rating", statOrder = { 2024 }, level = 1, group = "LocalAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+460 to Accuracy Rating" }, } }, - ["IncreasedAccuracySwordImplicit9"] = { affix = "", "+475 to Accuracy Rating", statOrder = { 2024 }, level = 1, group = "LocalAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+475 to Accuracy Rating" }, } }, - ["IncreasedAccuracy2hSwordImplicit1"] = { affix = "", "+60 to Accuracy Rating", statOrder = { 2024 }, level = 1, group = "LocalAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+60 to Accuracy Rating" }, } }, - ["IncreasedAccuracy2hSwordImplicit2"] = { affix = "", "+120 to Accuracy Rating", statOrder = { 2024 }, level = 1, group = "LocalAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+120 to Accuracy Rating" }, } }, - ["IncreasedAccuracy2hSwordImplicit3"] = { affix = "", "+185 to Accuracy Rating", statOrder = { 2024 }, level = 1, group = "LocalAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+185 to Accuracy Rating" }, } }, - ["IncreasedAccuracy2hSwordImplicit4"] = { affix = "", "+250 to Accuracy Rating", statOrder = { 2024 }, level = 1, group = "LocalAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+250 to Accuracy Rating" }, } }, - ["IncreasedAccuracy2hSwordImplicit5"] = { affix = "", "+305 to Accuracy Rating", statOrder = { 2024 }, level = 1, group = "LocalAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+305 to Accuracy Rating" }, } }, - ["IncreasedAccuracy2hSwordImplicit6"] = { affix = "", "+360 to Accuracy Rating", statOrder = { 2024 }, level = 1, group = "LocalAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+360 to Accuracy Rating" }, } }, - ["IncreasedAccuracy2hSwordImplicit7"] = { affix = "", "+400 to Accuracy Rating", statOrder = { 2024 }, level = 1, group = "LocalAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+400 to Accuracy Rating" }, } }, - ["IncreasedAccuracy2hSwordImplicit8"] = { affix = "", "+435 to Accuracy Rating", statOrder = { 2024 }, level = 1, group = "LocalAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+435 to Accuracy Rating" }, } }, - ["IncreasedAccuracy2hSwordImplicit9"] = { affix = "", "+470 to Accuracy Rating", statOrder = { 2024 }, level = 1, group = "LocalAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+470 to Accuracy Rating" }, } }, - ["CannotBeFrozen"] = { affix = "", "Cannot be Frozen", statOrder = { 1838 }, level = 1, group = "CannotBeFrozen", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [876831634] = { "Cannot be Frozen" }, } }, - ["CannotBeFrozenUnique__1"] = { affix = "", "Cannot be Frozen", statOrder = { 1838 }, level = 1, group = "CannotBeFrozen", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [876831634] = { "Cannot be Frozen" }, } }, - ["BlockingBlocksSpellsUniqueAmulet1"] = { affix = "", "15% Chance to Block Spell Damage", statOrder = { 1155 }, level = 7, group = "BlockingBlocksSpells", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2881111359] = { "15% Chance to Block Spell Damage" }, } }, - ["BlockingBlocksSpellsUnique__2"] = { affix = "", "(7-9)% Chance to Block Spell Damage", statOrder = { 1155 }, level = 1, group = "BlockingBlocksSpells", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2881111359] = { "(7-9)% Chance to Block Spell Damage" }, } }, - ["SpellBlockPercentageUniqueAmulet1"] = { affix = "", "(12-15)% Chance to Block Spell Damage", statOrder = { 1160 }, level = 7, group = "SpellBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [561307714] = { "(12-15)% Chance to Block Spell Damage" }, } }, - ["SpellBlockPercentageUnique__2"] = { affix = "", "(4-6)% Chance to Block Spell Damage", statOrder = { 1160 }, level = 1, group = "SpellBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [561307714] = { "(4-6)% Chance to Block Spell Damage" }, } }, - ["SpellBlockPercentageUnique__3_"] = { affix = "", "(16-22)% Chance to Block Spell Damage", statOrder = { 1160 }, level = 1, group = "SpellBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [561307714] = { "(16-22)% Chance to Block Spell Damage" }, } }, - ["SpellBlockPercentageUnique__4"] = { affix = "", "(10-15)% Chance to Block Spell Damage", statOrder = { 1160 }, level = 1, group = "SpellBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [561307714] = { "(10-15)% Chance to Block Spell Damage" }, } }, - ["CullingStrike"] = { affix = "", "Culling Strike", statOrder = { 2039 }, level = 1, group = "CullingStrike", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2524254339] = { "Culling Strike" }, } }, - ["CullingStrikeUniqueDescentTwoHandSword1"] = { affix = "", "Culling Strike", statOrder = { 2039 }, level = 1, group = "CullingStrike", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2524254339] = { "Culling Strike" }, } }, - ["CullingStrikeUnique__1"] = { affix = "", "Culling Strike", statOrder = { 2039 }, level = 1, group = "CullingStrike", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2524254339] = { "Culling Strike" }, } }, - ["BlockRecoveryImplicitShield1"] = { affix = "", "60% increased Block Recovery", statOrder = { 1167 }, level = 1, group = "BlockRecovery", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [369183568] = { "60% increased Block Recovery" }, } }, - ["BlockRecoveryImplicitShield2"] = { affix = "", "120% increased Block Recovery", statOrder = { 1167 }, level = 1, group = "BlockRecovery", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [369183568] = { "120% increased Block Recovery" }, } }, - ["BlockRecoveryImplicitShield3"] = { affix = "", "180% increased Block Recovery", statOrder = { 1167 }, level = 1, group = "BlockRecovery", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [369183568] = { "180% increased Block Recovery" }, } }, - ["AlwaysHits"] = { affix = "", "Hits can't be Evaded", statOrder = { 2043 }, level = 1, group = "AlwaysHits", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [4126210832] = { "Hits can't be Evaded" }, } }, - ["AlwaysHitsUniqueTwoHandMace6"] = { affix = "", "Hits can't be Evaded", statOrder = { 2043 }, level = 1, group = "AlwaysHits", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [4126210832] = { "Hits can't be Evaded" }, } }, - ["AlwaysHitsUnique__1"] = { affix = "", "Hits can't be Evaded", statOrder = { 2043 }, level = 1, group = "AlwaysHits", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [4126210832] = { "Hits can't be Evaded" }, } }, - ["AlwaysHitsUnique__2"] = { affix = "", "Your hits can't be Evaded", statOrder = { 2044 }, level = 1, group = "AlwaysHitsGlobal", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [1165023334] = { "Your hits can't be Evaded" }, } }, - ["AlwaysHitsUniqueGlovesDexInt4"] = { affix = "", "Your hits can't be Evaded", statOrder = { 2044 }, level = 1, group = "AlwaysHitsGlobal", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [1165023334] = { "Your hits can't be Evaded" }, } }, - ["HitsCauseMonsterFleeUniqueRing1"] = { affix = "", "10% chance to Cause Monsters to Flee", statOrder = { 2042 }, level = 1, group = "HitsCauseMonsterFlee", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3181974858] = { "10% chance to Cause Monsters to Flee" }, } }, - ["HitsCauseMonsterFleeUniqueBootsStrInt1"] = { affix = "", "10% chance to Cause Monsters to Flee", statOrder = { 2042 }, level = 1, group = "HitsCauseMonsterFlee", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3181974858] = { "10% chance to Cause Monsters to Flee" }, } }, - ["HitsCauseMonsterFleeUnique__1"] = { affix = "", "10% chance to Cause Monsters to Flee", statOrder = { 2042 }, level = 1, group = "HitsCauseMonsterFlee", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3181974858] = { "10% chance to Cause Monsters to Flee" }, } }, - ["MaximumEnduranceChargeUniqueRing2"] = { affix = "", "+1 to Maximum Endurance Charges", statOrder = { 1804 }, level = 1, group = "MaximumEnduranceCharges", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHashes = { [1515657623] = { "+1 to Maximum Endurance Charges" }, } }, - ["MaximumEnduranceChargeUniqueBodyStr3"] = { affix = "", "+1 to Maximum Endurance Charges", statOrder = { 1804 }, level = 1, group = "MaximumEnduranceCharges", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHashes = { [1515657623] = { "+1 to Maximum Endurance Charges" }, } }, - ["MaximumEnduranceChargeUniqueBodyStrDex3"] = { affix = "", "+2 to Maximum Endurance Charges", statOrder = { 1804 }, level = 1, group = "MaximumEnduranceCharges", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHashes = { [1515657623] = { "+2 to Maximum Endurance Charges" }, } }, - ["MaximumEnduranceChargeUnique__1_"] = { affix = "", "+1 to Maximum Endurance Charges", statOrder = { 1804 }, level = 1, group = "MaximumEnduranceCharges", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHashes = { [1515657623] = { "+1 to Maximum Endurance Charges" }, } }, - ["MaximumEnduranceChargeUnique__2"] = { affix = "", "+1 to Maximum Endurance Charges", statOrder = { 1804 }, level = 1, group = "MaximumEnduranceCharges", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHashes = { [1515657623] = { "+1 to Maximum Endurance Charges" }, } }, - ["ReducedMaximumEnduranceChargeUnique__1"] = { affix = "", "-1 to Maximum Endurance Charges", statOrder = { 1804 }, level = 1, group = "MaximumEnduranceCharges", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHashes = { [1515657623] = { "-1 to Maximum Endurance Charges" }, } }, - ["ReducedMaximumEnduranceChargeUnique__2"] = { affix = "", "-2 to Maximum Endurance Charges", statOrder = { 1804 }, level = 1, group = "MaximumEnduranceCharges", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHashes = { [1515657623] = { "-2 to Maximum Endurance Charges" }, } }, - ["AddPowerChargeOnCrit1__"] = { affix = "", "Gain a Power Charge for each Enemy you hit with a Critical Strike", statOrder = { 2547 }, level = 1, group = "AddPowerChargeOnCrit", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [1556625719] = { "Gain a Power Charge for each Enemy you hit with a Critical Strike" }, } }, - ["ActorSizeUniqueAmulet2"] = { affix = "", "20% increased Character Size", statOrder = { 2057 }, level = 1, group = "ActorSize", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1408638732] = { "20% increased Character Size" }, } }, - ["ActorSizeUniqueHelmetDex6"] = { affix = "", "10% reduced Character Size", statOrder = { 2057 }, level = 1, group = "ActorSize", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1408638732] = { "10% reduced Character Size" }, } }, - ["ActorSizeUniqueAmulet12"] = { affix = "", "10% reduced Character Size", statOrder = { 2057 }, level = 1, group = "ActorSize", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1408638732] = { "10% reduced Character Size" }, } }, - ["ActorSizeUniqueBeltDemigods1"] = { affix = "", "10% increased Character Size", statOrder = { 2057 }, level = 1, group = "ActorSize", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1408638732] = { "10% increased Character Size" }, } }, - ["ActorSizeUniqueRingDemigods1"] = { affix = "", "3% increased Character Size", statOrder = { 2057 }, level = 1, group = "ActorSize", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1408638732] = { "3% increased Character Size" }, } }, - ["ActorSizeUnique__2"] = { affix = "", "15% increased Character Size", statOrder = { 2057 }, level = 1, group = "ActorSize", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1408638732] = { "15% increased Character Size" }, } }, - ["ActorSizeUnique__3"] = { affix = "", "10% increased Character Size", statOrder = { 2057 }, level = 1, group = "ActorSize", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1408638732] = { "10% increased Character Size" }, } }, - ["ActorSizeUnique__4"] = { affix = "", "5% increased Character Size", statOrder = { 2057 }, level = 1, group = "ActorSize", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1408638732] = { "5% increased Character Size" }, } }, - ["MaximumManaUniqueBodyStrInt1"] = { affix = "", "50% reduced maximum Mana", statOrder = { 1580 }, level = 1, group = "MaximumManaIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2748665614] = { "50% reduced maximum Mana" }, } }, - ["MaximumManaUniqueRing5"] = { affix = "", "20% increased maximum Mana", statOrder = { 1580 }, level = 14, group = "MaximumManaIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2748665614] = { "20% increased maximum Mana" }, } }, - ["MaximumManaUniqueTwoHandMace5"] = { affix = "", "25% increased maximum Mana", statOrder = { 1580 }, level = 1, group = "MaximumManaIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2748665614] = { "25% increased maximum Mana" }, } }, - ["MaximumManaUniqueAmulet10"] = { affix = "", "(16-24)% increased maximum Mana", statOrder = { 1580 }, level = 1, group = "MaximumManaIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2748665614] = { "(16-24)% increased maximum Mana" }, } }, - ["MaximumManaUniqueStaff4"] = { affix = "", "(10-20)% increased maximum Mana", statOrder = { 1580 }, level = 1, group = "MaximumManaIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2748665614] = { "(10-20)% increased maximum Mana" }, } }, - ["MaximumManaUniqueStaff5"] = { affix = "", "18% increased maximum Mana", statOrder = { 1580 }, level = 1, group = "MaximumManaIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2748665614] = { "18% increased maximum Mana" }, } }, - ["MaximumManaUniqueStaff6"] = { affix = "", "(50-100)% increased maximum Mana", statOrder = { 1580 }, level = 1, group = "MaximumManaIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2748665614] = { "(50-100)% increased maximum Mana" }, } }, - ["MaximumManaUnique___2"] = { affix = "", "(20-30)% increased maximum Mana", statOrder = { 1580 }, level = 1, group = "MaximumManaIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2748665614] = { "(20-30)% increased maximum Mana" }, } }, - ["MaximumManaUnique__3"] = { affix = "", "(10-20)% increased maximum Mana", statOrder = { 1580 }, level = 1, group = "MaximumManaIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2748665614] = { "(10-20)% increased maximum Mana" }, } }, - ["MaximumManaUnique__5"] = { affix = "", "(9-15)% increased maximum Mana", statOrder = { 1580 }, level = 1, group = "MaximumManaIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2748665614] = { "(9-15)% increased maximum Mana" }, } }, - ["MaximumManaUnique__6"] = { affix = "", "(6-10)% increased maximum Mana", statOrder = { 1580 }, level = 1, group = "MaximumManaIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2748665614] = { "(6-10)% increased maximum Mana" }, } }, - ["MaximumManaUnique__7"] = { affix = "", "(15-20)% increased maximum Mana", statOrder = { 1580 }, level = 1, group = "MaximumManaIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2748665614] = { "(15-20)% increased maximum Mana" }, } }, - ["MaximumManaUnique__8"] = { affix = "", "(16-20)% increased maximum Mana", statOrder = { 1580 }, level = 1, group = "MaximumManaIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2748665614] = { "(16-20)% increased maximum Mana" }, } }, - ["MaximumManaUnique__10"] = { affix = "", "20% increased maximum Mana", statOrder = { 1580 }, level = 1, group = "MaximumManaIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2748665614] = { "20% increased maximum Mana" }, } }, - ["MaximumManaImplicitAtlasRing_"] = { affix = "", "(8-10)% increased maximum Mana", statOrder = { 1580 }, level = 100, group = "MaximumManaIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2748665614] = { "(8-10)% increased maximum Mana" }, } }, - ["MaximumLifeUniqueOneHandSword2"] = { affix = "", "25% reduced maximum Life", statOrder = { 1571 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "25% reduced maximum Life" }, } }, - ["MaximumLifeUniqueAmulet6"] = { affix = "", "20% reduced maximum Life", statOrder = { 1571 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "20% reduced maximum Life" }, } }, - ["MaximumLifeUniqueBelt4"] = { affix = "", "10% increased maximum Life", statOrder = { 1571 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "10% increased maximum Life" }, } }, - ["MaximumLifeShieldInt1"] = { affix = "", "10% increased maximum Life", statOrder = { 1571 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "10% increased maximum Life" }, } }, - ["MaximumLifeUniqueBodyInt3"] = { affix = "", "10% increased maximum Life", statOrder = { 1571 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "10% increased maximum Life" }, } }, - ["MaximumLifeUniqueRing16"] = { affix = "", "25% reduced maximum Life", statOrder = { 1571 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "25% reduced maximum Life" }, } }, - ["MaximumLifeUniqueBodyStrDex1"] = { affix = "", "(30-40)% increased maximum Life", statOrder = { 1571 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "(30-40)% increased maximum Life" }, } }, - ["MaximumLifeUniqueStaff4"] = { affix = "", "(10-20)% increased maximum Life", statOrder = { 1571 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "(10-20)% increased maximum Life" }, } }, - ["MaximumLifeUniqueShieldDexInt2"] = { affix = "", "(10-20)% increased maximum Life", statOrder = { 1571 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "(10-20)% increased maximum Life" }, } }, - ["MaximumLifeUniqueGlovesStrInt3"] = { affix = "", "(12-16)% increased maximum Life", statOrder = { 1571 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "(12-16)% increased maximum Life" }, } }, - ["MaximumLifeUnique__1"] = { affix = "", "(8-12)% increased maximum Life", statOrder = { 1571 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "(8-12)% increased maximum Life" }, } }, - ["MaximumLifeUnique__3"] = { affix = "", "10% increased maximum Life", statOrder = { 1571 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "10% increased maximum Life" }, } }, - ["MaximumLifeUnique__4_"] = { affix = "", "(4-8)% increased maximum Life", statOrder = { 1571 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "(4-8)% increased maximum Life" }, } }, - ["MaximumLifeUnique__5"] = { affix = "", "(15-25)% increased maximum Life", statOrder = { 1571 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "(15-25)% increased maximum Life" }, } }, - ["MaximumLifeUnique__6"] = { affix = "", "(4-8)% increased maximum Life", statOrder = { 1571 }, level = 25, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "(4-8)% increased maximum Life" }, } }, - ["MaximumLifeUnique__7"] = { affix = "", "(4-6)% increased maximum Life", statOrder = { 1571 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "(4-6)% increased maximum Life" }, } }, - ["MaximumLifeUnique__10_"] = { affix = "", "(6-10)% increased maximum Life", statOrder = { 1571 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "(6-10)% increased maximum Life" }, } }, - ["MaximumLifeUnique__11"] = { affix = "", "(6-10)% increased maximum Life", statOrder = { 1571 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "(6-10)% increased maximum Life" }, } }, - ["MaximumLifeUnique__12"] = { affix = "", "(4-7)% increased maximum Life", statOrder = { 1571 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "(4-7)% increased maximum Life" }, } }, - ["MaximumLifeUnique__13"] = { affix = "", "(4-6)% increased maximum Life", statOrder = { 1571 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "(4-6)% increased maximum Life" }, } }, - ["MaximumLifeUnique__14"] = { affix = "", "5% increased maximum Life", statOrder = { 1571 }, level = 62, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "5% increased maximum Life" }, } }, - ["MaximumLifeUnique__15"] = { affix = "", "(6-8)% increased maximum Life", statOrder = { 1571 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "(6-8)% increased maximum Life" }, } }, - ["MaximumLifeUnique__16"] = { affix = "", "(6-10)% increased maximum Life", statOrder = { 1571 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "(6-10)% increased maximum Life" }, } }, - ["MaximumLifeUnique__17"] = { affix = "", "(6-10)% increased maximum Life", statOrder = { 1571 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "(6-10)% increased maximum Life" }, } }, - ["MaximumLifeUnique__18"] = { affix = "", "(7-10)% increased maximum Life", statOrder = { 1571 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "(7-10)% increased maximum Life" }, } }, - ["MaximumLifeUnique__19"] = { affix = "", "(7-12)% increased maximum Life", statOrder = { 1571 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "(7-12)% increased maximum Life" }, } }, - ["MaximumLifeUnique__20___"] = { affix = "", "(10-15)% increased maximum Life", statOrder = { 1571 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "(10-15)% increased maximum Life" }, } }, - ["MaximumLifeUnique__21"] = { affix = "", "(5-10)% increased maximum Life", statOrder = { 1571 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "(5-10)% increased maximum Life" }, } }, - ["MaximumLifeUnique__22"] = { affix = "", "(12-15)% increased maximum Life", statOrder = { 1571 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "(12-15)% increased maximum Life" }, } }, - ["MaximumLifeUnique__23"] = { affix = "", "24% reduced maximum Life", statOrder = { 1571 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "24% reduced maximum Life" }, } }, - ["MaximumLifeUnique__24"] = { affix = "", "+(45-60) to maximum Life", statOrder = { 1569 }, level = 40, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(45-60) to maximum Life" }, } }, - ["MaximumLifeUnique__25"] = { affix = "", "+(40-60) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(40-60) to maximum Life" }, } }, - ["MaximumLifeUnique__26"] = { affix = "", "(-17-17)% reduced maximum Life", statOrder = { 1571 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "(-17-17)% reduced maximum Life" }, } }, - ["MaximumLifeUnique__27"] = { affix = "", "10% increased maximum Life", statOrder = { 1571 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "10% increased maximum Life" }, } }, - ["MaximumLifeImplicitAtlasRing"] = { affix = "", "(5-7)% increased maximum Life", statOrder = { 1571 }, level = 100, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "(5-7)% increased maximum Life" }, } }, - ["AreaOfEffectImplicitMarakethTwoHandMace1"] = { affix = "", "15% increased Area of Effect", statOrder = { 1880 }, level = 1, group = "AreaOfEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [280731498] = { "15% increased Area of Effect" }, } }, - ["AreaOfEffectImplicitMarakethTwoHandMace2"] = { affix = "", "20% increased Area of Effect", statOrder = { 1880 }, level = 1, group = "AreaOfEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [280731498] = { "20% increased Area of Effect" }, } }, - ["AreaOfEffectImplicitTwoHandMace1__"] = { affix = "", "10% increased Area of Effect", statOrder = { 1880 }, level = 1, group = "AreaOfEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [280731498] = { "10% increased Area of Effect" }, } }, - ["AreaOfEffectImplicitTwoHandMace2_"] = { affix = "", "15% increased Area of Effect", statOrder = { 1880 }, level = 1, group = "AreaOfEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [280731498] = { "15% increased Area of Effect" }, } }, - ["AreaOfEffectUniqueDagger1"] = { affix = "", "30% increased Area of Effect", statOrder = { 1880 }, level = 1, group = "AreaOfEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [280731498] = { "30% increased Area of Effect" }, } }, - ["AreaOfEffectUniqueBodyDexInt1"] = { affix = "", "(40-50)% increased Area of Effect", statOrder = { 1880 }, level = 1, group = "AreaOfEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [280731498] = { "(40-50)% increased Area of Effect" }, } }, - ["AreaOfEffectUniqueDescentStaff1"] = { affix = "", "15% increased Area of Effect", statOrder = { 1880 }, level = 1, group = "AreaOfEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [280731498] = { "15% increased Area of Effect" }, } }, - ["AreaOfEffectUniqueQuiver6"] = { affix = "", "10% increased Area of Effect", statOrder = { 1880 }, level = 13, group = "AreaOfEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [280731498] = { "10% increased Area of Effect" }, } }, - ["AreaOfEffectUniqueDescentOneHandSword1"] = { affix = "", "20% increased Area of Effect", statOrder = { 1880 }, level = 1, group = "AreaOfEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [280731498] = { "20% increased Area of Effect" }, } }, - ["AreaOfEffectUniqueShieldDexInt2"] = { affix = "", "10% increased Area of Effect", statOrder = { 1880 }, level = 1, group = "AreaOfEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [280731498] = { "10% increased Area of Effect" }, } }, - ["AreaOfEffectUniqueOneHandMace7"] = { affix = "", "(15-25)% increased Area of Effect", statOrder = { 1880 }, level = 1, group = "AreaOfEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [280731498] = { "(15-25)% increased Area of Effect" }, } }, - ["AreaOfEffectUniqueShieldDex7"] = { affix = "", "10% increased Area of Effect", statOrder = { 1880 }, level = 1, group = "AreaOfEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [280731498] = { "10% increased Area of Effect" }, } }, - ["AreaOfEffectUnique__1"] = { affix = "", "10% increased Area of Effect", statOrder = { 1880 }, level = 1, group = "AreaOfEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [280731498] = { "10% increased Area of Effect" }, } }, - ["AreaOfEffectUnique__2_"] = { affix = "", "10% increased Area of Effect", statOrder = { 1880 }, level = 1, group = "AreaOfEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [280731498] = { "10% increased Area of Effect" }, } }, - ["AreaOfEffectUnique__3"] = { affix = "", "10% increased Area of Effect", statOrder = { 1880 }, level = 1, group = "AreaOfEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [280731498] = { "10% increased Area of Effect" }, } }, - ["AreaOfEffectUnique__4_"] = { affix = "", "10% increased Area of Effect", statOrder = { 1880 }, level = 1, group = "AreaOfEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [280731498] = { "10% increased Area of Effect" }, } }, - ["AreaOfEffectUnique__5"] = { affix = "", "10% increased Area of Effect", statOrder = { 1880 }, level = 1, group = "AreaOfEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [280731498] = { "10% increased Area of Effect" }, } }, - ["AreaOfEffectUnique__6"] = { affix = "", "(10-15)% increased Area of Effect", statOrder = { 1880 }, level = 1, group = "AreaOfEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [280731498] = { "(10-15)% increased Area of Effect" }, } }, - ["AreaOfEffectUnique__7_"] = { affix = "", "30% increased Area of Effect", statOrder = { 1880 }, level = 1, group = "AreaOfEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [280731498] = { "30% increased Area of Effect" }, } }, - ["AreaOfEffectUnique__8"] = { affix = "", "(15-20)% increased Area of Effect", statOrder = { 1880 }, level = 1, group = "AreaOfEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [280731498] = { "(15-20)% increased Area of Effect" }, } }, - ["AreaOfEffectUnique__9"] = { affix = "", "30% increased Area of Effect", statOrder = { 1880 }, level = 1, group = "AreaOfEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [280731498] = { "30% increased Area of Effect" }, } }, - ["AreaOfEffectUnique__10"] = { affix = "", "(40-50)% increased Area of Effect", statOrder = { 1880 }, level = 1, group = "AreaOfEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [280731498] = { "(40-50)% increased Area of Effect" }, } }, - ["BurnDamageUniqueStaff1"] = { affix = "", "70% increased Burning Damage", statOrder = { 1877 }, level = 1, group = "BurnDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [1175385867] = { "70% increased Burning Damage" }, } }, - ["BurnDamageUniqueDescentOneHandMace1"] = { affix = "", "25% increased Burning Damage", statOrder = { 1877 }, level = 1, group = "BurnDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [1175385867] = { "25% increased Burning Damage" }, } }, - ["BurnDamageUniqueRing15"] = { affix = "", "(60-80)% increased Burning Damage", statOrder = { 1877 }, level = 14, group = "BurnDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [1175385867] = { "(60-80)% increased Burning Damage" }, } }, - ["BurnDamageUnique__1"] = { affix = "", "(20-30)% increased Burning Damage", statOrder = { 1877 }, level = 1, group = "BurnDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [1175385867] = { "(20-30)% increased Burning Damage" }, } }, - ["CannotCrit"] = { affix = "", "Never deal Critical Strikes", statOrder = { 2178 }, level = 1, group = "CannotCrit", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [3638599682] = { "Never deal Critical Strikes" }, } }, - ["ManaCostIncreaseUniqueTwoHandAxe4"] = { affix = "", "50% increased Mana Cost of Skills", statOrder = { 1883 }, level = 1, group = "ManaCostReduction", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [474294393] = { "50% increased Mana Cost of Skills" }, } }, - ["ManaCostIncreaseUniqueGlovesInt6"] = { affix = "", "(40-80)% increased Mana Cost of Skills", statOrder = { 1883 }, level = 1, group = "ManaCostReduction", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [474294393] = { "(40-80)% increased Mana Cost of Skills" }, } }, - ["ManaCostIncreasedUniqueWand7"] = { affix = "", "40% increased Mana Cost of Skills", statOrder = { 1883 }, level = 1, group = "ManaCostReduction", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [474294393] = { "40% increased Mana Cost of Skills" }, } }, - ["ManaCostIncreasedUniqueHelmetStrInt6"] = { affix = "", "75% increased Mana Cost of Skills", statOrder = { 1883 }, level = 1, group = "ManaCostReduction", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [474294393] = { "75% increased Mana Cost of Skills" }, } }, - ["ManaCostReductionUnique__1"] = { affix = "", "(6-8)% reduced Mana Cost of Skills", statOrder = { 1883 }, level = 1, group = "ManaCostReduction", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [474294393] = { "(6-8)% reduced Mana Cost of Skills" }, } }, - ["ManaCostReductionUnique__2_"] = { affix = "", "(10-20)% reduced Mana Cost of Skills", statOrder = { 1883 }, level = 1, group = "ManaCostReduction", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [474294393] = { "(10-20)% reduced Mana Cost of Skills" }, } }, - ["SocketedGemsHaveReducedManaCostUniqueHelmetDexInt5"] = { affix = "", "Socketed Gems have 50% reduced Mana Cost", statOrder = { 555 }, level = 1, group = "SocketedSkillsHaveReducedManaCost", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "gem" }, tradeHashes = { [2816901897] = { "Socketed Gems have 50% reduced Mana Cost" }, } }, - ["SocketedGemsHaveReducedManaCostUniqueDescentClaw1"] = { affix = "", "Socketed Gems have 50% reduced Mana Cost", statOrder = { 555 }, level = 1, group = "SocketedSkillsHaveReducedManaCost", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "gem" }, tradeHashes = { [2816901897] = { "Socketed Gems have 50% reduced Mana Cost" }, } }, - ["BloodMagic"] = { affix = "", "Blood Magic", statOrder = { 10773 }, level = 1, group = "BloodMagic", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana" }, tradeHashes = { [2801937280] = { "Blood Magic" }, [223497523] = { "" }, } }, - ["ArsenalOfVengeance"] = { affix = "", "Arsenal of Vengeance", statOrder = { 10808 }, level = 1, group = "ArsenalOfVengeance", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [971749694] = { "Arsenal of Vengeance" }, } }, - ["RetaliationSkillsBecomeUsableEveryXSecondsUnique_1"] = { affix = "", "Damaging Retaliation Skills become Usable every 4 seconds", statOrder = { 9937 }, level = 78, group = "RetaliationSkillsUsableAfterDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1631195850] = { "Damaging Retaliation Skills become Usable every 4 seconds" }, } }, - ["RetaliationSkillDamageUnique_1"] = { affix = "", "Retaliation Skills deal (50-100)% increased Damage", statOrder = { 9931 }, level = 1, group = "RetaliationSkillDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [1531617714] = { "Retaliation Skills deal (50-100)% increased Damage" }, } }, - ["RetaliateSkillUseWindowDuration_1"] = { affix = "", "Retaliation Skills become Usable for (50-100)% longer", statOrder = { 9941 }, level = 1, group = "RetaliationSkillUseWindowDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2547149004] = { "Retaliation Skills become Usable for (50-100)% longer" }, } }, - ["CannotEvade"] = { affix = "", "Cannot Evade Enemy Attacks", statOrder = { 1918 }, level = 1, group = "CannotEvade", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [474452755] = { "Cannot Evade Enemy Attacks" }, } }, - ["AdditionalArrowsUniqueBow3"] = { affix = "", "Bow Attacks fire 2 additional Arrows", statOrder = { 1794 }, level = 1, group = "AdditionalArrows", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [3885405204] = { "Bow Attacks fire 2 additional Arrows" }, } }, - ["AdditionalArrowsUniqueTransformed__1"] = { affix = "", "Bow Attacks fire an additional Arrow", statOrder = { 1794 }, level = 55, group = "AdditionalArrows", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [3885405204] = { "Bow Attacks fire an additional Arrow" }, } }, - ["AdditionalArrowsUnique__1"] = { affix = "", "Bow Attacks fire 2 additional Arrows", statOrder = { 1794 }, level = 1, group = "AdditionalArrows", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [3885405204] = { "Bow Attacks fire 2 additional Arrows" }, } }, - ["AdditionalArrowsUnique__2"] = { affix = "", "Bow Attacks fire 2 additional Arrows", statOrder = { 1794 }, level = 77, group = "AdditionalArrows", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [3885405204] = { "Bow Attacks fire 2 additional Arrows" }, } }, - ["MinionRunSpeedUniqueAmulet3"] = { affix = "", "Minions have (10-15)% increased Movement Speed", statOrder = { 1769 }, level = 1, group = "MinionRunSpeed", weightKey = { }, weightVal = { }, modTags = { "speed", "minion" }, tradeHashes = { [174664100] = { "Minions have (10-15)% increased Movement Speed" }, } }, - ["MinionRunSpeedUniqueWand2"] = { affix = "", "Minions have (20-30)% increased Movement Speed", statOrder = { 1769 }, level = 1, group = "MinionRunSpeed", weightKey = { }, weightVal = { }, modTags = { "speed", "minion" }, tradeHashes = { [174664100] = { "Minions have (20-30)% increased Movement Speed" }, } }, - ["MinionRunSpeedUnique__1"] = { affix = "", "Minions have 10% reduced Movement Speed", statOrder = { 1769 }, level = 1, group = "MinionRunSpeed", weightKey = { }, weightVal = { }, modTags = { "speed", "minion" }, tradeHashes = { [174664100] = { "Minions have 10% reduced Movement Speed" }, } }, - ["MinionRunSpeedUnique__2"] = { affix = "", "Minions have (80-100)% increased Movement Speed", statOrder = { 1769 }, level = 48, group = "MinionRunSpeed", weightKey = { }, weightVal = { }, modTags = { "speed", "minion" }, tradeHashes = { [174664100] = { "Minions have (80-100)% increased Movement Speed" }, } }, - ["MinionRunSpeedUnique__3"] = { affix = "", "Minions have (25-45)% increased Movement Speed", statOrder = { 1769 }, level = 1, group = "MinionRunSpeed", weightKey = { }, weightVal = { }, modTags = { "speed", "minion" }, tradeHashes = { [174664100] = { "Minions have (25-45)% increased Movement Speed" }, } }, - ["MinionRunSpeedUnique__4"] = { affix = "", "Minions have (10-20)% increased Movement Speed", statOrder = { 1769 }, level = 78, group = "MinionRunSpeed", weightKey = { }, weightVal = { }, modTags = { "speed", "minion" }, tradeHashes = { [174664100] = { "Minions have (10-20)% increased Movement Speed" }, } }, - ["MinionRunSpeedUnique__5"] = { affix = "", "Minions have (40-50)% increased Movement Speed", statOrder = { 1769 }, level = 1, group = "MinionRunSpeed", weightKey = { }, weightVal = { }, modTags = { "speed", "minion" }, tradeHashes = { [174664100] = { "Minions have (40-50)% increased Movement Speed" }, } }, - ["MinionRunSpeedUnique__6"] = { affix = "", "Minions have (15-25)% increased Movement Speed", statOrder = { 1769 }, level = 1, group = "MinionRunSpeed", weightKey = { }, weightVal = { }, modTags = { "speed", "minion" }, tradeHashes = { [174664100] = { "Minions have (15-25)% increased Movement Speed" }, } }, - ["MinionLifeUniqueAmulet3"] = { affix = "", "Minions have (10-15)% increased maximum Life", statOrder = { 1766 }, level = 1, group = "MinionLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (10-15)% increased maximum Life" }, } }, - ["MinionLifeUniqueTwoHandSword4"] = { affix = "", "Minions have (30-40)% increased maximum Life", statOrder = { 1766 }, level = 1, group = "MinionLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (30-40)% increased maximum Life" }, } }, - ["MinionLifeUniqueTwoHandMace5"] = { affix = "", "Minions have (20-40)% increased maximum Life", statOrder = { 1766 }, level = 1, group = "MinionLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (20-40)% increased maximum Life" }, } }, - ["MinionLifeUniqueBodyInt9"] = { affix = "", "Minions have 20% reduced maximum Life", statOrder = { 1766 }, level = 1, group = "MinionLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have 20% reduced maximum Life" }, } }, - ["MinionLifeUniqueRing33"] = { affix = "", "Minions have 15% increased maximum Life", statOrder = { 1766 }, level = 1, group = "MinionLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have 15% increased maximum Life" }, } }, - ["MinionLifeUnique__1"] = { affix = "", "Minions have (20-30)% increased maximum Life", statOrder = { 1766 }, level = 1, group = "MinionLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (20-30)% increased maximum Life" }, } }, - ["MinionLifeUnique__2"] = { affix = "", "Minions have (10-20)% increased maximum Life", statOrder = { 1766 }, level = 1, group = "MinionLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (10-20)% increased maximum Life" }, } }, - ["MinionLifeUnique__3_"] = { affix = "", "Minions have (20-30)% increased maximum Life", statOrder = { 1766 }, level = 1, group = "MinionLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (20-30)% increased maximum Life" }, } }, - ["MinionLifeUnique__4__"] = { affix = "", "Minions have 10% reduced maximum Life", statOrder = { 1766 }, level = 1, group = "MinionLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have 10% reduced maximum Life" }, } }, - ["MinionLifeUnique__5_"] = { affix = "", "Minions have (20-40)% reduced maximum Life", statOrder = { 1766 }, level = 1, group = "MinionLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (20-40)% reduced maximum Life" }, } }, - ["MinionDamageImplicitHelmet1"] = { affix = "", "Minions deal (15-20)% increased Damage", statOrder = { 1973 }, level = 78, group = "MinionDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (15-20)% increased Damage" }, } }, - ["MinionDamageUniqueAmulet3"] = { affix = "", "Minions deal (10-15)% increased Damage", statOrder = { 1973 }, level = 1, group = "MinionDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (10-15)% increased Damage" }, } }, - ["MinionDamageUniqueWand2"] = { affix = "", "Minions deal (50-70)% increased Damage", statOrder = { 1973 }, level = 1, group = "MinionDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (50-70)% increased Damage" }, } }, - ["MinionDamageUniqueTwoHandSword4"] = { affix = "", "Minions deal (30-40)% increased Damage", statOrder = { 1973 }, level = 1, group = "MinionDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (30-40)% increased Damage" }, } }, - ["MinionDamageUniqueBodyInt9"] = { affix = "", "Minions deal 15% increased Damage", statOrder = { 1973 }, level = 1, group = "MinionDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal 15% increased Damage" }, } }, - ["MinionDamageUnique__2"] = { affix = "", "Minions deal (20-30)% increased Damage", statOrder = { 1973 }, level = 1, group = "MinionDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (20-30)% increased Damage" }, } }, - ["MinionDamageUnique__3_"] = { affix = "", "Minions deal (60-80)% increased Damage", statOrder = { 1973 }, level = 1, group = "MinionDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (60-80)% increased Damage" }, } }, - ["MinionDamageUnique__5"] = { affix = "", "Minions deal (30-40)% increased Damage", statOrder = { 1973 }, level = 1, group = "MinionDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (30-40)% increased Damage" }, } }, - ["MinionDamageUnique__7"] = { affix = "", "Minions deal (60-80)% increased Damage", statOrder = { 1973 }, level = 1, group = "MinionDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (60-80)% increased Damage" }, } }, - ["MinionDamageUnique__8_"] = { affix = "", "Minions deal (40-60)% increased Damage", statOrder = { 1973 }, level = 1, group = "MinionDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (40-60)% increased Damage" }, } }, - ["MinionDamageUnique__9"] = { affix = "", "Minions deal (113-157)% increased Damage", statOrder = { 1973 }, level = 80, group = "MinionDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (113-157)% increased Damage" }, } }, - ["MinionDurationUnique__1"] = { affix = "", "(17-31)% increased Minion Duration", statOrder = { 5032 }, level = 80, group = "MinionDuration", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [999511066] = { "(17-31)% increased Minion Duration" }, } }, - ["MinionPhysicalDamageAsChaosUnique__1"] = { affix = "", "Minions gain (59-83)% of Physical Damage as Extra Chaos Damage", statOrder = { 9350 }, level = 80, group = "MinionPhysicalDamageAsChaos", weightKey = { }, weightVal = { }, modTags = { "physical", "chaos", "minion" }, tradeHashes = { [2656936969] = { "Minions gain (59-83)% of Physical Damage as Extra Chaos Damage" }, } }, - ["MinionChaosResistanceUnique___1"] = { affix = "", "Minions have +29% to Chaos Resistance", statOrder = { 2913 }, level = 1, group = "MinionChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance", "minion" }, tradeHashes = { [3837707023] = { "Minions have +29% to Chaos Resistance" }, } }, - ["MinionChaosResistanceUnique__2__"] = { affix = "", "Minions have +29% to Chaos Resistance", statOrder = { 2913 }, level = 1, group = "MinionChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance", "minion" }, tradeHashes = { [3837707023] = { "Minions have +29% to Chaos Resistance" }, } }, - ["MinionChaosResistanceUnique__3"] = { affix = "", "Minions have +(-17-17)% to Chaos Resistance", statOrder = { 2913 }, level = 1, group = "MinionChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance", "minion" }, tradeHashes = { [3837707023] = { "Minions have +(-17-17)% to Chaos Resistance" }, } }, - ["MinionAttackBlockChanceUnique__2"] = { affix = "", "Minions have +25% Chance to Block Attack Damage", statOrder = { 2903 }, level = 1, group = "MinionBlockChance", weightKey = { }, weightVal = { }, modTags = { "block", "minion" }, tradeHashes = { [3374054207] = { "Minions have +25% Chance to Block Attack Damage" }, } }, - ["MinionSpellBlockChanceUnique__2"] = { affix = "", "Minions have +25% Chance to Block Spell Damage", statOrder = { 2904 }, level = 1, group = "MinionSpellBlockChance", weightKey = { }, weightVal = { }, modTags = { "block", "minion" }, tradeHashes = { [2762046953] = { "Minions have +25% Chance to Block Spell Damage" }, } }, - ["CannotBeStunned"] = { affix = "", "Cannot be Stunned", statOrder = { 2173 }, level = 1, group = "CannotBeStunned", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1694106311] = { "Cannot be Stunned" }, } }, - ["CannotBeStunnedUnique__1_"] = { affix = "", "Cannot be Stunned", statOrder = { 2173 }, level = 1, group = "CannotBeStunned", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1694106311] = { "Cannot be Stunned" }, } }, - ["AdditionalCurseOnEnemiesUnique__1"] = { affix = "", "You can apply an additional Curse", statOrder = { 2168 }, level = 1, group = "AdditionalCurseOnEnemies", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [30642521] = { "You can apply an additional Curse" }, } }, - ["AdditionalCurseOnEnemiesUnique__2"] = { affix = "", "You can apply an additional Curse", statOrder = { 2168 }, level = 1, group = "AdditionalCurseOnEnemies", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [30642521] = { "You can apply an additional Curse" }, } }, - ["AdditionalCurseOnEnemiesUnique__3"] = { affix = "", "You can apply one fewer Curse", statOrder = { 2168 }, level = 1, group = "AdditionalCurseOnEnemies", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [30642521] = { "You can apply one fewer Curse" }, } }, - ["ConvertPhysicalToFireUniqueQuiver1_"] = { affix = "", "50% of Physical Damage Converted to Fire Damage", statOrder = { 1955 }, level = 1, group = "ConvertPhysicalToFire", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [1533563525] = { "50% of Physical Damage Converted to Fire Damage" }, } }, - ["ConvertPhysicalToFireUniqueShieldStr3"] = { affix = "", "25% of Physical Damage Converted to Fire Damage", statOrder = { 1955 }, level = 1, group = "ConvertPhysicalToFire", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [1533563525] = { "25% of Physical Damage Converted to Fire Damage" }, } }, - ["ConvertPhysicalToFireUniqueOneHandSword4"] = { affix = "", "100% of Physical Damage Converted to Fire Damage", statOrder = { 1955 }, level = 1, group = "ConvertPhysicalToFire", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [1533563525] = { "100% of Physical Damage Converted to Fire Damage" }, } }, - ["ConvertPhysicalToFireUnique__1"] = { affix = "", "50% of Physical Damage Converted to Fire Damage", statOrder = { 1955 }, level = 1, group = "ConvertPhysicalToFire", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [1533563525] = { "50% of Physical Damage Converted to Fire Damage" }, } }, - ["ConvertPhysicalToFireUnique__2_"] = { affix = "", "30% of Physical Damage Converted to Fire Damage", statOrder = { 1955 }, level = 1, group = "ConvertPhysicalToFire", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [1533563525] = { "30% of Physical Damage Converted to Fire Damage" }, } }, - ["ConvertPhysicalToFireUnique__3__"] = { affix = "", "(0-50)% of Physical Damage Converted to Fire Damage", statOrder = { 1955 }, level = 1, group = "ConvertPhysicalToFire", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [1533563525] = { "(0-50)% of Physical Damage Converted to Fire Damage" }, } }, - ["ConvertPhysicalToFireUnique__4"] = { affix = "", "100% of Physical Damage Converted to Fire Damage", statOrder = { 1955 }, level = 1, group = "ConvertPhysicalToFire", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [1533563525] = { "100% of Physical Damage Converted to Fire Damage" }, } }, - ["BeltIncreasedFlaskEffectUnique__1"] = { affix = "", "Flasks applied to you have 25% increased Effect", statOrder = { 2742 }, level = 1, group = "FlaskEffect", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [114734841] = { "Flasks applied to you have 25% increased Effect" }, } }, - ["BeltIncreasedFlaskEffectUnique__2"] = { affix = "", "Flasks applied to you have 60% reduced Effect", statOrder = { 2742 }, level = 1, group = "FlaskEffect", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [114734841] = { "Flasks applied to you have 60% reduced Effect" }, } }, - ["BeltReducedFlaskChargesGainedUnique__1"] = { affix = "", "30% reduced Flask Charges gained", statOrder = { 2183 }, level = 1, group = "BeltIncreasedFlaskChargesGained", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [1452809865] = { "30% reduced Flask Charges gained" }, } }, - ["BeltIncreasedFlaskChargesGainedUnique__1_"] = { affix = "", "(15-25)% increased Flask Charges gained", statOrder = { 2183 }, level = 1, group = "BeltIncreasedFlaskChargesGained", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [1452809865] = { "(15-25)% increased Flask Charges gained" }, } }, - ["BeltIncreasedFlaskChargedUsedUnique__1"] = { affix = "", "(10-20)% increased Flask Charges used", statOrder = { 2184 }, level = 1, group = "BeltReducedFlaskChargesUsed", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [644456512] = { "(10-20)% increased Flask Charges used" }, } }, - ["BeltIncreasedFlaskChargedUsedUnique__2"] = { affix = "", "(7-10)% reduced Flask Charges used", statOrder = { 2184 }, level = 1, group = "BeltReducedFlaskChargesUsed", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [644456512] = { "(7-10)% reduced Flask Charges used" }, } }, - ["BeltIncreasedFlaskDurationUnique__2"] = { affix = "", "60% increased Flask Effect Duration", statOrder = { 2187 }, level = 1, group = "BeltIncreasedFlaskDuration", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [3741323227] = { "60% increased Flask Effect Duration" }, } }, - ["BeltIncreasedFlaskDurationUnique__3___"] = { affix = "", "(10-20)% increased Flask Effect Duration", statOrder = { 2187 }, level = 1, group = "BeltIncreasedFlaskDuration", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [3741323227] = { "(10-20)% increased Flask Effect Duration" }, } }, - ["BeltIncreasedFlaskDurationUnique__4"] = { affix = "", "150% increased Flask Effect Duration", statOrder = { 2187 }, level = 1, group = "BeltIncreasedFlaskDuration", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [3741323227] = { "150% increased Flask Effect Duration" }, } }, - ["BeltReducedFlaskDurationUniqueDescentBelt1"] = { affix = "", "30% reduced Flask Effect Duration", statOrder = { 2187 }, level = 1, group = "BeltIncreasedFlaskDuration", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [3741323227] = { "30% reduced Flask Effect Duration" }, } }, - ["BeltIncreasedFlaskDurationUnique__1"] = { affix = "", "60% increased Flask Effect Duration", statOrder = { 2187 }, level = 14, group = "BeltIncreasedFlaskDuration", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [3741323227] = { "60% increased Flask Effect Duration" }, } }, - ["IncreasedFlaskDurationUnique__1"] = { affix = "", "(20-30)% reduced Flask Effect Duration", statOrder = { 2187 }, level = 1, group = "BeltIncreasedFlaskDuration", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [3741323227] = { "(20-30)% reduced Flask Effect Duration" }, } }, - ["BeltFlaskLifeRecoveryUniqueDescentBelt1"] = { affix = "", "30% increased Life Recovery from Flasks", statOrder = { 2059 }, level = 1, group = "BeltFlaskLifeRecovery", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, tradeHashes = { [821241191] = { "30% increased Life Recovery from Flasks" }, } }, - ["FlaskLifeRecoveryUniqueAmulet25"] = { affix = "", "100% increased Life Recovery from Flasks", statOrder = { 2059 }, level = 1, group = "BeltFlaskLifeRecovery", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, tradeHashes = { [821241191] = { "100% increased Life Recovery from Flasks" }, } }, - ["BeltFlaskLifeRecoveryUnique__1"] = { affix = "", "(30-40)% increased Life Recovery from Flasks", statOrder = { 2059 }, level = 1, group = "BeltFlaskLifeRecovery", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, tradeHashes = { [821241191] = { "(30-40)% increased Life Recovery from Flasks" }, } }, - ["BeltFlaskLifeRecoveryUnique__2"] = { affix = "", "100% increased Life Recovery from Flasks", statOrder = { 2059 }, level = 1, group = "BeltFlaskLifeRecovery", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, tradeHashes = { [821241191] = { "100% increased Life Recovery from Flasks" }, } }, - ["FlaskLifeRecoveryUnique__1"] = { affix = "", "(15-30)% increased Life Recovery from Flasks", statOrder = { 2059 }, level = 1, group = "BeltFlaskLifeRecovery", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, tradeHashes = { [821241191] = { "(15-30)% increased Life Recovery from Flasks" }, } }, - ["BeltFlaskManaRecoveryUniqueDescentBelt1"] = { affix = "", "30% increased Mana Recovery from Flasks", statOrder = { 2060 }, level = 1, group = "BeltFlaskManaRecovery", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "mana" }, tradeHashes = { [2222186378] = { "30% increased Mana Recovery from Flasks" }, } }, - ["BeltFlaskManaRecoveryUnique__1"] = { affix = "", "(20-30)% increased Mana Recovery from Flasks", statOrder = { 2060 }, level = 1, group = "BeltFlaskManaRecovery", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "mana" }, tradeHashes = { [2222186378] = { "(20-30)% increased Mana Recovery from Flasks" }, } }, - ["BeltFlaskManaRecoveryUnique__2"] = { affix = "", "100% increased Mana Recovery from Flasks", statOrder = { 2060 }, level = 1, group = "BeltFlaskManaRecovery", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "mana" }, tradeHashes = { [2222186378] = { "100% increased Mana Recovery from Flasks" }, } }, - ["FlaskManaRecoveryUnique__1"] = { affix = "", "(15-30)% increased Mana Recovery from Flasks", statOrder = { 2060 }, level = 1, group = "BeltFlaskManaRecovery", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "mana" }, tradeHashes = { [2222186378] = { "(15-30)% increased Mana Recovery from Flasks" }, } }, - ["FlaskManaRecoveryUnique__2"] = { affix = "", "(1-100)% increased Mana Recovery from Flasks", statOrder = { 2060 }, level = 1, group = "BeltFlaskManaRecovery", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "mana" }, tradeHashes = { [2222186378] = { "(1-100)% increased Mana Recovery from Flasks" }, } }, - ["FlaskManaRecoveryUniqueBodyDex7"] = { affix = "", "(60-100)% increased Mana Recovery from Flasks", statOrder = { 2060 }, level = 1, group = "BeltFlaskManaRecovery", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "mana" }, tradeHashes = { [2222186378] = { "(60-100)% increased Mana Recovery from Flasks" }, } }, - ["FlaskManaRecoveryUniqueShieldInt3"] = { affix = "", "15% increased Mana Recovery from Flasks", statOrder = { 2060 }, level = 1, group = "BeltFlaskManaRecovery", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "mana" }, tradeHashes = { [2222186378] = { "15% increased Mana Recovery from Flasks" }, } }, - ["BeltFlaskLifeRecoveryRateUniqueBelt4"] = { affix = "", "25% increased Flask Life Recovery rate", statOrder = { 2189 }, level = 1, group = "BeltFlaskLifeRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, tradeHashes = { [51994685] = { "25% increased Flask Life Recovery rate" }, } }, - ["FlaskLifeRecoveryRateUniqueBodyStrDex1"] = { affix = "", "50% increased Flask Life Recovery rate", statOrder = { 2189 }, level = 1, group = "BeltFlaskLifeRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, tradeHashes = { [51994685] = { "50% increased Flask Life Recovery rate" }, } }, - ["FlaskLifeRecoveryRateUniqueSceptre5"] = { affix = "", "10% reduced Flask Life Recovery rate", statOrder = { 2189 }, level = 1, group = "BeltFlaskLifeRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, tradeHashes = { [51994685] = { "10% reduced Flask Life Recovery rate" }, } }, - ["FlaskManaRecoveryRateUniqueBodyStrDex1"] = { affix = "", "50% increased Flask Mana Recovery rate", statOrder = { 2190 }, level = 1, group = "BeltFlaskManaRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "mana" }, tradeHashes = { [1412217137] = { "50% increased Flask Mana Recovery rate" }, } }, - ["FlaskManaRecoveryRateUniqueSceptre5"] = { affix = "", "(30-40)% increased Flask Mana Recovery rate", statOrder = { 2190 }, level = 1, group = "BeltFlaskManaRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "mana" }, tradeHashes = { [1412217137] = { "(30-40)% increased Flask Mana Recovery rate" }, } }, - ["BeltIncreasedFlaskChargesGainedUniqueBelt2"] = { affix = "", "50% increased Flask Charges gained", statOrder = { 2183 }, level = 1, group = "BeltIncreasedFlaskChargesGained", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [1452809865] = { "50% increased Flask Charges gained" }, } }, - ["BeltIncreasedFlaskDurationUniqueBelt3"] = { affix = "", "20% increased Flask Effect Duration", statOrder = { 2187 }, level = 1, group = "BeltIncreasedFlaskDuration", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [3741323227] = { "20% increased Flask Effect Duration" }, } }, - ["IncreasedChillDurationUniqueBodyDex1"] = { affix = "", "25% increased Chill Duration on Enemies", statOrder = { 1856 }, level = 1, group = "IncreasedChillDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3485067555] = { "25% increased Chill Duration on Enemies" }, } }, - ["IncreasedChillDurationUniqueBodyStrInt3"] = { affix = "", "150% increased Chill Duration on Enemies", statOrder = { 1856 }, level = 1, group = "IncreasedChillDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3485067555] = { "150% increased Chill Duration on Enemies" }, } }, - ["IncreasedChillDurationUniqueQuiver5"] = { affix = "", "(30-40)% increased Chill Duration on Enemies", statOrder = { 1856 }, level = 13, group = "IncreasedChillDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3485067555] = { "(30-40)% increased Chill Duration on Enemies" }, } }, - ["IncreasedChillDurationUnique__1"] = { affix = "", "(35-50)% increased Chill Duration on Enemies", statOrder = { 1856 }, level = 1, group = "IncreasedChillDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3485067555] = { "(35-50)% increased Chill Duration on Enemies" }, } }, - ["Acrobatics"] = { affix = "", "Acrobatics", statOrder = { 10768 }, level = 1, group = "Acrobatics", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [223497523] = { "" }, [383557755] = { "Acrobatics" }, } }, - ["HasNoSockets"] = { affix = "", "Has no Sockets", statOrder = { 67 }, level = 1, group = "HasNoSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1493091477] = { "Has no Sockets" }, } }, - ["CannotBeShocked"] = { affix = "", "Cannot be Shocked", statOrder = { 1841 }, level = 1, group = "CannotBeShocked", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [491899612] = { "Cannot be Shocked" }, } }, - ["AttackerTakesDamageUnique_1"] = { affix = "", "Reflects (200-300) Physical Damage to Melee Attackers", statOrder = { 2202 }, level = 1, group = "AttackerTakesDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [223497523] = { "" }, [3767873853] = { "Reflects (200-300) Physical Damage to Melee Attackers" }, } }, - ["AttackerTakesDamageShieldImplicit1"] = { affix = "", "Reflects (2-5) Physical Damage to Melee Attackers", statOrder = { 2202 }, level = 5, group = "AttackerTakesDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [223497523] = { "" }, [3767873853] = { "Reflects (2-5) Physical Damage to Melee Attackers" }, } }, - ["AttackerTakesDamageShieldImplicit2"] = { affix = "", "Reflects (5-12) Physical Damage to Melee Attackers", statOrder = { 2202 }, level = 12, group = "AttackerTakesDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [223497523] = { "" }, [3767873853] = { "Reflects (5-12) Physical Damage to Melee Attackers" }, } }, - ["AttackerTakesDamageShieldImplicit3"] = { affix = "", "Reflects (10-23) Physical Damage to Melee Attackers", statOrder = { 2202 }, level = 20, group = "AttackerTakesDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [223497523] = { "" }, [3767873853] = { "Reflects (10-23) Physical Damage to Melee Attackers" }, } }, - ["AttackerTakesDamageShieldImplicit4"] = { affix = "", "Reflects (24-35) Physical Damage to Melee Attackers", statOrder = { 2202 }, level = 27, group = "AttackerTakesDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [223497523] = { "" }, [3767873853] = { "Reflects (24-35) Physical Damage to Melee Attackers" }, } }, - ["AttackerTakesDamageShieldImplicit5"] = { affix = "", "Reflects (36-50) Physical Damage to Melee Attackers", statOrder = { 2202 }, level = 33, group = "AttackerTakesDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [223497523] = { "" }, [3767873853] = { "Reflects (36-50) Physical Damage to Melee Attackers" }, } }, - ["AttackerTakesDamageShieldImplicit6"] = { affix = "", "Reflects (51-70) Physical Damage to Melee Attackers", statOrder = { 2202 }, level = 39, group = "AttackerTakesDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [223497523] = { "" }, [3767873853] = { "Reflects (51-70) Physical Damage to Melee Attackers" }, } }, - ["AttackerTakesDamageShieldImplicit7"] = { affix = "", "Reflects (71-90) Physical Damage to Melee Attackers", statOrder = { 2202 }, level = 45, group = "AttackerTakesDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [223497523] = { "" }, [3767873853] = { "Reflects (71-90) Physical Damage to Melee Attackers" }, } }, - ["AttackerTakesDamageShieldImplicit8"] = { affix = "", "Reflects (91-120) Physical Damage to Melee Attackers", statOrder = { 2202 }, level = 49, group = "AttackerTakesDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [223497523] = { "" }, [3767873853] = { "Reflects (91-120) Physical Damage to Melee Attackers" }, } }, - ["AttackerTakesDamageShieldImplicit9"] = { affix = "", "Reflects (121-150) Physical Damage to Melee Attackers", statOrder = { 2202 }, level = 54, group = "AttackerTakesDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [223497523] = { "" }, [3767873853] = { "Reflects (121-150) Physical Damage to Melee Attackers" }, } }, - ["AttackerTakesDamageShieldImplicit10"] = { affix = "", "Reflects (151-180) Physical Damage to Melee Attackers", statOrder = { 2202 }, level = 58, group = "AttackerTakesDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [223497523] = { "" }, [3767873853] = { "Reflects (151-180) Physical Damage to Melee Attackers" }, } }, - ["AttackerTakesDamageShieldImplicit11"] = { affix = "", "Reflects (181-220) Physical Damage to Melee Attackers", statOrder = { 2202 }, level = 62, group = "AttackerTakesDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [223497523] = { "" }, [3767873853] = { "Reflects (181-220) Physical Damage to Melee Attackers" }, } }, - ["AttackerTakesDamageShieldImplicit12"] = { affix = "", "Reflects (221-260) Physical Damage to Melee Attackers", statOrder = { 2202 }, level = 66, group = "AttackerTakesDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [223497523] = { "" }, [3767873853] = { "Reflects (221-260) Physical Damage to Melee Attackers" }, } }, - ["AttackerTakesDamageShieldImplicit13"] = { affix = "", "Reflects (261-300) Physical Damage to Melee Attackers", statOrder = { 2202 }, level = 70, group = "AttackerTakesDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [223497523] = { "" }, [3767873853] = { "Reflects (261-300) Physical Damage to Melee Attackers" }, } }, - ["AttackerTakesDamageUniqueIntHelmet1"] = { affix = "", "Reflects 5 Physical Damage to Melee Attackers", statOrder = { 2202 }, level = 1, group = "AttackerTakesDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [223497523] = { "" }, [3767873853] = { "Reflects 5 Physical Damage to Melee Attackers" }, } }, - ["AttackerTakesDamageUnique__1"] = { affix = "", "Reflects (71-90) Physical Damage to Melee Attackers", statOrder = { 2202 }, level = 1, group = "AttackerTakesDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [223497523] = { "" }, [3767873853] = { "Reflects (71-90) Physical Damage to Melee Attackers" }, } }, - ["AttackerTakesDamageUnique__2"] = { affix = "", "Reflects (100-150) Physical Damage to Melee Attackers", statOrder = { 2202 }, level = 1, group = "AttackerTakesDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [223497523] = { "" }, [3767873853] = { "Reflects (100-150) Physical Damage to Melee Attackers" }, } }, - ["AttackerTakesColdDamageGlovesDex1"] = { affix = "", "Reflects 100 Cold Damage to Melee Attackers", statOrder = { 2203 }, level = 1, group = "AttackerTakesColdDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [4235886357] = { "Reflects 100 Cold Damage to Melee Attackers" }, } }, - ["AttackerTakesDamageUniqueHelmetDex3"] = { affix = "", "Reflects 4 Physical Damage to Melee Attackers", statOrder = { 2202 }, level = 1, group = "AttackerTakesDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [223497523] = { "" }, [3767873853] = { "Reflects 4 Physical Damage to Melee Attackers" }, } }, - ["AttackerTakesDamageUniqueHelmetDexInt6"] = { affix = "", "Reflects 100 to 150 Physical Damage to Melee Attackers", statOrder = { 2197 }, level = 1, group = "AttackerTakesDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2970307386] = { "Reflects 100 to 150 Physical Damage to Melee Attackers" }, } }, - ["TakesDamageWhenAttackedUniqueIntHelmet1"] = { affix = "", "+25 Physical Damage taken from Attack Hits", statOrder = { 2234 }, level = 1, group = "TakesDamageWhenAttacked", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHashes = { [3441651621] = { "+25 Physical Damage taken from Attack Hits" }, } }, - ["PainAttunement"] = { affix = "", "Pain Attunement", statOrder = { 10801 }, level = 1, group = "PainAttunement", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [98977150] = { "Pain Attunement" }, } }, - ["IncreasedExperienceUniqueIntHelmet3"] = { affix = "", "5% increased Experience gain", statOrder = { 1603 }, level = 1, group = "ExperienceIncrease", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3666934677] = { "5% increased Experience gain" }, } }, - ["IncreasedExperienceUniqueTwoHandMace4"] = { affix = "", "(30-50)% reduced Experience gain", statOrder = { 1603 }, level = 1, group = "ExperienceIncrease", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3666934677] = { "(30-50)% reduced Experience gain" }, } }, - ["IncreasedExperienceUniqueSceptre1"] = { affix = "", "3% increased Experience gain", statOrder = { 1603 }, level = 1, group = "ExperienceIncrease", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3666934677] = { "3% increased Experience gain" }, } }, - ["IncreasedExperienceUniqueRing14"] = { affix = "", "2% increased Experience gain", statOrder = { 1603 }, level = 1, group = "ExperienceIncrease", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3666934677] = { "2% increased Experience gain" }, } }, - ["ChanceToAvoidFreezeAndChillUniqueDexHelmet5"] = { affix = "", "25% chance to Avoid being Chilled", statOrder = { 1844 }, level = 1, group = "ChanceToAvoidFreezeAndChill", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3483999943] = { "25% chance to Avoid being Chilled" }, [1514829491] = { "" }, } }, - ["ChanceToAvoidChillUniqueDescentOneHandAxe1"] = { affix = "", "50% chance to Avoid being Chilled", statOrder = { 1844 }, level = 1, group = "ChanceToAvoidFreezeAndChill", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3483999943] = { "50% chance to Avoid being Chilled" }, [1514829491] = { "" }, } }, - ["CannotBeChilledUniqueBodyStrInt3"] = { affix = "", "Cannot be Chilled", statOrder = { 1837 }, level = 1, group = "CannotBeChilled", weightKey = { }, weightVal = { }, modTags = { "ailment" }, tradeHashes = { [283649372] = { "Cannot be Chilled" }, } }, - ["CannotBeChilledUnique__1"] = { affix = "", "Cannot be Chilled", statOrder = { 1837 }, level = 1, group = "CannotBeChilled", weightKey = { }, weightVal = { }, modTags = { "ailment" }, tradeHashes = { [283649372] = { "Cannot be Chilled" }, } }, - ["ChanceToAvoidChilledUnique__1"] = { affix = "", "50% chance to Avoid being Chilled", statOrder = { 1844 }, level = 1, group = "ChanceToAvoidFreezeAndChill", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3483999943] = { "50% chance to Avoid being Chilled" }, [1514829491] = { "" }, } }, - ["CannotBeFrozenOrChilledUnique__1"] = { affix = "", "Cannot be Chilled", "Cannot be Frozen", statOrder = { 1837, 1838 }, level = 31, group = "CannotBeChilledOrFrozen", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [876831634] = { "Cannot be Frozen" }, [283649372] = { "Cannot be Chilled" }, } }, - ["CannotBeFrozenOrChilledUnique__2"] = { affix = "", "Cannot be Chilled", "Cannot be Frozen", statOrder = { 1837, 1838 }, level = 1, group = "CannotBeChilledOrFrozen", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [876831634] = { "Cannot be Frozen" }, [283649372] = { "Cannot be Chilled" }, } }, - ["ReducedManaCostOnLowLifeUniqueHelmetStrInt1"] = { affix = "", "20% reduced Mana Cost of Skills when on Low Life", statOrder = { 1886 }, level = 1, group = "ReducedManaCostOnLowLife", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [73272763] = { "20% reduced Mana Cost of Skills when on Low Life" }, } }, - ["ElementalResistsOnLowLifeUniqueHelmetStrInt1"] = { affix = "", "+20% to all Elemental Resistances while on Low Life", statOrder = { 1622 }, level = 1, group = "ElementalResistsOnLowLife", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [1637928656] = { "+20% to all Elemental Resistances while on Low Life" }, } }, - ["EvasionOnLowLifeUniqueAmulet4"] = { affix = "", "+(150-250) to Evasion Rating while on Low Life", statOrder = { 1545 }, level = 1, group = "EvasionOnLowLife", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [3470876581] = { "+(150-250) to Evasion Rating while on Low Life" }, } }, - ["LifeRegenerationOnLowLifeUniqueAmulet4"] = { affix = "", "Regenerate 1% of Life per second while on Low Life", statOrder = { 1945 }, level = 1, group = "LifeRegenerationOnLowLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3942946753] = { "Regenerate 1% of Life per second while on Low Life" }, } }, - ["LifeRegenerationOnLowLifeUniqueBodyStrInt2"] = { affix = "", "Regenerate 2% of Life per second while on Low Life", statOrder = { 1945 }, level = 1, group = "LifeRegenerationOnLowLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3942946753] = { "Regenerate 2% of Life per second while on Low Life" }, } }, - ["LifeRegenerationOnLowLifeUniqueShieldStrInt3_"] = { affix = "", "Regenerate 3% of Life per second while on Low Life", statOrder = { 1945 }, level = 1, group = "LifeRegenerationOnLowLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3942946753] = { "Regenerate 3% of Life per second while on Low Life" }, } }, - ["ItemRarityOnLowLifeUniqueBootsInt1"] = { affix = "", "100% increased Rarity of Items found when on Low Life", statOrder = { 1599 }, level = 1, group = "ItemRarityOnLowLife", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [2929867083] = { "100% increased Rarity of Items found when on Low Life" }, } }, - ["MovementVelocityOnLowLifeUniqueBootsStrDex1"] = { affix = "", "40% reduced Movement Speed when on Low Life", statOrder = { 1799 }, level = 1, group = "MovementVelocityOnLowLife", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [649025131] = { "40% reduced Movement Speed when on Low Life" }, } }, - ["MovementVelocityOnLowLifeUniqueGlovesDexInt1"] = { affix = "", "20% increased Movement Speed when on Low Life", statOrder = { 1799 }, level = 1, group = "MovementVelocityOnLowLife", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [649025131] = { "20% increased Movement Speed when on Low Life" }, } }, - ["MovementVelocityOnLowLifeUniqueRapier1"] = { affix = "", "30% increased Movement Speed when on Low Life", statOrder = { 1799 }, level = 1, group = "MovementVelocityOnLowLife", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [649025131] = { "30% increased Movement Speed when on Low Life" }, } }, - ["MovementVelocityOnLowLifeUnique__1"] = { affix = "", "(10-20)% increased Movement Speed when on Low Life", statOrder = { 1799 }, level = 1, group = "MovementVelocityOnLowLife", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [649025131] = { "(10-20)% increased Movement Speed when on Low Life" }, } }, - ["MovementVelocityOnFullLifeUniqueBootsInt3"] = { affix = "", "20% increased Movement Speed when on Full Life", statOrder = { 1800 }, level = 1, group = "MovementVelocityOnFullLife", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [3393547195] = { "20% increased Movement Speed when on Full Life" }, } }, - ["MovementVelocityOnFullLifeUniqueTwoHandAxe2"] = { affix = "", "15% increased Movement Speed when on Full Life", statOrder = { 1800 }, level = 1, group = "MovementVelocityOnFullLife", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [3393547195] = { "15% increased Movement Speed when on Full Life" }, } }, - ["MovementVelocityOnLowLifeUniqueBootsDex3"] = { affix = "", "30% increased Movement Speed when on Low Life", statOrder = { 1799 }, level = 1, group = "MovementVelocityOnLowLife", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [649025131] = { "30% increased Movement Speed when on Low Life" }, } }, - ["MovementVelocityOnLowLifeUniqueShieldStrInt5"] = { affix = "", "10% increased Movement Speed when on Low Life", statOrder = { 1799 }, level = 1, group = "MovementVelocityOnLowLife", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [649025131] = { "10% increased Movement Speed when on Low Life" }, } }, - ["MovementVelocityOnLowLifeUniqueRing9"] = { affix = "", "(6-8)% increased Movement Speed when on Low Life", statOrder = { 1799 }, level = 1, group = "MovementVelocityOnLowLife", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [649025131] = { "(6-8)% increased Movement Speed when on Low Life" }, } }, - ["MovementVelocityOnFullLifeUniqueAmulet13"] = { affix = "", "10% increased Movement Speed when on Full Life", statOrder = { 1800 }, level = 1, group = "MovementVelocityOnFullLife", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [3393547195] = { "10% increased Movement Speed when on Full Life" }, } }, - ["MovementVelocityOnFullLifeUnique__1"] = { affix = "", "30% increased Movement Speed when on Full Life", statOrder = { 1800 }, level = 1, group = "MovementVelocityOnFullLife", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [3393547195] = { "30% increased Movement Speed when on Full Life" }, } }, - ["ElementalDamageUniqueBootsStr1"] = { affix = "", "(10-20)% increased Elemental Damage", statOrder = { 1980 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(10-20)% increased Elemental Damage" }, } }, - ["ElementalDamageUniqueSceptre1"] = { affix = "", "20% increased Elemental Damage", statOrder = { 1980 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "20% increased Elemental Damage" }, } }, - ["ElementalDamageUniqueIntHelmet3"] = { affix = "", "(10-20)% increased Elemental Damage", statOrder = { 1980 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(10-20)% increased Elemental Damage" }, } }, - ["ElementalDamageUniqueDescentBelt1"] = { affix = "", "10% increased Elemental Damage", statOrder = { 1980 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "10% increased Elemental Damage" }, } }, - ["ElementalDamageUniqueSceptre7"] = { affix = "", "(80-100)% increased Elemental Damage", statOrder = { 1980 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(80-100)% increased Elemental Damage" }, } }, - ["ElementalDamageUniqueHelmetInt9"] = { affix = "", "20% increased Elemental Damage", statOrder = { 1980 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "20% increased Elemental Damage" }, } }, - ["ElementalDamageUniqueRingVictors"] = { affix = "", "(10-20)% increased Elemental Damage", statOrder = { 1980 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(10-20)% increased Elemental Damage" }, } }, - ["ElementalDamageUniqueStaff13"] = { affix = "", "(30-50)% increased Elemental Damage", statOrder = { 1980 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(30-50)% increased Elemental Damage" }, } }, - ["ElementalDamageUnique__1"] = { affix = "", "30% increased Elemental Damage", statOrder = { 1980 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "30% increased Elemental Damage" }, } }, - ["ElementalDamageUnique__2_"] = { affix = "", "(20-30)% increased Elemental Damage", statOrder = { 1980 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(20-30)% increased Elemental Damage" }, } }, - ["ElementalDamageUnique__3"] = { affix = "", "(30-40)% increased Elemental Damage", statOrder = { 1980 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(30-40)% increased Elemental Damage" }, } }, - ["ElementalDamageUnique__4"] = { affix = "", "(7-10)% increased Elemental Damage", statOrder = { 1980 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(7-10)% increased Elemental Damage" }, } }, - ["ConvertPhysicalToColdUniqueGlovesDex1"] = { affix = "", "100% of Physical Damage Converted to Cold Damage", statOrder = { 1957 }, level = 1, group = "ConvertPhysicalToCold", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, tradeHashes = { [2133341901] = { "100% of Physical Damage Converted to Cold Damage" }, } }, - ["ConvertPhysicalToColdUniqueQuiver5"] = { affix = "", "Gain 20% of Physical Damage as Extra Cold Damage", statOrder = { 1933 }, level = 1, group = "PhysicalAddedAsCold", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, tradeHashes = { [979246511] = { "Gain 20% of Physical Damage as Extra Cold Damage" }, } }, - ["ConvertPhysicalToColdUniqueOneHandAxe8"] = { affix = "", "25% of Physical Damage Converted to Cold Damage", statOrder = { 1957 }, level = 1, group = "ConvertPhysicalToCold", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, tradeHashes = { [2133341901] = { "25% of Physical Damage Converted to Cold Damage" }, } }, - ["ConvertPhysicalToColdUnique__1"] = { affix = "", "25% of Physical Damage Converted to Cold Damage", statOrder = { 1957 }, level = 1, group = "ConvertPhysicalToCold", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, tradeHashes = { [2133341901] = { "25% of Physical Damage Converted to Cold Damage" }, } }, - ["ConvertPhysicalToColdUnique__2"] = { affix = "", "50% of Physical Damage Converted to Cold Damage", statOrder = { 1957 }, level = 1, group = "ConvertPhysicalToCold", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, tradeHashes = { [2133341901] = { "50% of Physical Damage Converted to Cold Damage" }, } }, - ["ConvertPhysicalToColdUnique__3"] = { affix = "", "(0-50)% of Physical Damage Converted to Cold Damage", statOrder = { 1957 }, level = 1, group = "ConvertPhysicalToCold", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, tradeHashes = { [2133341901] = { "(0-50)% of Physical Damage Converted to Cold Damage" }, } }, - ["ConvertPhysicalToLightningUniqueOneHandAxe8"] = { affix = "", "25% of Physical Damage Converted to Lightning Damage", statOrder = { 1959 }, level = 1, group = "ConvertPhysicalToLightning", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [3240769289] = { "25% of Physical Damage Converted to Lightning Damage" }, } }, - ["ConvertPhysicaltoLightningUnique__1"] = { affix = "", "50% of Physical Damage Converted to Lightning Damage", statOrder = { 1959 }, level = 1, group = "ConvertPhysicalToLightning", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [3240769289] = { "50% of Physical Damage Converted to Lightning Damage" }, } }, - ["ConvertPhysicaltoLightningUnique__2"] = { affix = "", "30% of Physical Damage Converted to Lightning Damage", statOrder = { 1959 }, level = 1, group = "ConvertPhysicalToLightning", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [3240769289] = { "30% of Physical Damage Converted to Lightning Damage" }, } }, - ["ConvertPhysicaltoLightningUnique__3"] = { affix = "", "50% of Physical Damage Converted to Lightning Damage", statOrder = { 1959 }, level = 1, group = "ConvertPhysicalToLightning", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [3240769289] = { "50% of Physical Damage Converted to Lightning Damage" }, } }, - ["ConvertPhysicaltoLightningUnique__4"] = { affix = "", "50% of Physical Damage Converted to Lightning Damage", statOrder = { 1959 }, level = 1, group = "ConvertPhysicalToLightning", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [3240769289] = { "50% of Physical Damage Converted to Lightning Damage" }, } }, - ["ConvertPhysicaltoLightningUnique__5"] = { affix = "", "(0-50)% of Physical Damage Converted to Lightning Damage", statOrder = { 1959 }, level = 1, group = "ConvertPhysicalToLightning", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [3240769289] = { "(0-50)% of Physical Damage Converted to Lightning Damage" }, } }, - ["AttackSpeedOnFullLifeUniqueGlovesStr1"] = { affix = "", "30% increased Attack Speed when on Full Life", statOrder = { 1222 }, level = 1, group = "AttackSpeedOnFullLife", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [4268321763] = { "30% increased Attack Speed when on Full Life" }, } }, - ["AttackSpeedOnFullLifeUniqueDescentHelmet1"] = { affix = "", "15% increased Attack Speed when on Full Life", statOrder = { 1222 }, level = 1, group = "AttackSpeedOnFullLife", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [4268321763] = { "15% increased Attack Speed when on Full Life" }, } }, - ["Conduit"] = { affix = "", "Conduit", statOrder = { 10776 }, level = 1, group = "Conduit", weightKey = { }, weightVal = { }, modTags = { "endurance_charge", "frenzy_charge", "power_charge" }, tradeHashes = { [1994392904] = { "Conduit" }, } }, - ["PhysicalAttackDamageReducedUniqueAmulet8"] = { affix = "", "-4 Physical Damage taken from Attack Hits", statOrder = { 2234 }, level = 25, group = "PhysicalAttackDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical", "attack" }, tradeHashes = { [3441651621] = { "-4 Physical Damage taken from Attack Hits" }, } }, - ["PhysicalAttackDamageReducedUniqueBelt3"] = { affix = "", "-2 Physical Damage taken from Attack Hits", statOrder = { 2234 }, level = 1, group = "PhysicalAttackDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical", "attack" }, tradeHashes = { [3441651621] = { "-2 Physical Damage taken from Attack Hits" }, } }, - ["PhysicalAttackDamageReducedUniqueBodyStr2"] = { affix = "", "-(15-10) Physical Damage taken from Attack Hits", statOrder = { 2234 }, level = 1, group = "PhysicalAttackDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical", "attack" }, tradeHashes = { [3441651621] = { "-(15-10) Physical Damage taken from Attack Hits" }, } }, - ["PhysicalAttackDamageReducedUniqueBodyDex2"] = { affix = "", "-3 Physical Damage taken from Attack Hits", statOrder = { 2234 }, level = 1, group = "PhysicalAttackDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical", "attack" }, tradeHashes = { [3441651621] = { "-3 Physical Damage taken from Attack Hits" }, } }, - ["PhysicalAttackDamageReducedUniqueBodyDex3"] = { affix = "", "-(7-5) Physical Damage taken from Attack Hits", statOrder = { 2234 }, level = 1, group = "PhysicalAttackDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical", "attack" }, tradeHashes = { [3441651621] = { "-(7-5) Physical Damage taken from Attack Hits" }, } }, - ["PhysicalAttackDamageReducedUniqueBelt8"] = { affix = "", "-(50-40) Physical Damage taken from Attack Hits", statOrder = { 2234 }, level = 1, group = "PhysicalAttackDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical", "attack" }, tradeHashes = { [3441651621] = { "-(50-40) Physical Damage taken from Attack Hits" }, } }, - ["PhysicalAttackDamageReducedUniqueShieldDexInt1"] = { affix = "", "-(18-14) Physical Damage taken from Attack Hits", statOrder = { 2234 }, level = 1, group = "PhysicalAttackDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical", "attack" }, tradeHashes = { [3441651621] = { "-(18-14) Physical Damage taken from Attack Hits" }, } }, - ["PhysicalAttackDamageReducedUnique__1"] = { affix = "", "-(60-30) Physical Damage taken from Attack Hits", statOrder = { 2234 }, level = 1, group = "PhysicalAttackDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical", "attack" }, tradeHashes = { [3441651621] = { "-(60-30) Physical Damage taken from Attack Hits" }, } }, - ["AdditionalBlockChanceUniqueShieldStrDex1"] = { affix = "", "+(3-6)% Chance to Block", statOrder = { 2249 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [4253454700] = { "+(3-6)% Chance to Block" }, } }, - ["AdditionalBlockChanceUniqueShieldDex1"] = { affix = "", "+5% Chance to Block", statOrder = { 2249 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [4253454700] = { "+5% Chance to Block" }, } }, - ["AdditionalBlockChanceUniqueShieldDex2"] = { affix = "", "+5% Chance to Block", statOrder = { 2249 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [4253454700] = { "+5% Chance to Block" }, } }, - ["AdditionalBlockChanceUniqueShieldStr1"] = { affix = "", "+5% Chance to Block", statOrder = { 2249 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [4253454700] = { "+5% Chance to Block" }, } }, - ["AdditionalBlockChanceUniqueShieldStrInt4"] = { affix = "", "+6% Chance to Block", statOrder = { 2249 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [4253454700] = { "+6% Chance to Block" }, } }, - ["AdditionalBlockChanceUniqueShieldStrInt6"] = { affix = "", "+5% Chance to Block", statOrder = { 2249 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [4253454700] = { "+5% Chance to Block" }, } }, - ["AdditionalBlockChanceUniqueDescentShield1_"] = { affix = "", "+3% Chance to Block", statOrder = { 2249 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [4253454700] = { "+3% Chance to Block" }, } }, - ["AdditionalBlockChanceUniqueShieldDex4"] = { affix = "", "+5% Chance to Block", statOrder = { 2249 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [4253454700] = { "+5% Chance to Block" }, } }, - ["AdditionalBlockChanceUniqueShieldStrDex2"] = { affix = "", "+5% Chance to Block", statOrder = { 2249 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [4253454700] = { "+5% Chance to Block" }, } }, - ["AdditionalBlockChanceUniqueShieldDex5"] = { affix = "", "+10% Chance to Block", statOrder = { 2249 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [4253454700] = { "+10% Chance to Block" }, } }, - ["AdditionalBlockChanceUniqueShieldInt4"] = { affix = "", "+5% Chance to Block", statOrder = { 2249 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [4253454700] = { "+5% Chance to Block" }, } }, - ["AdditionalBlockChanceUniqueShieldStr4"] = { affix = "", "+5% Chance to Block", statOrder = { 2249 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [4253454700] = { "+5% Chance to Block" }, } }, - ["AdditionalBlockChanceUniqueShieldStrDex3__"] = { affix = "", "+(3-5)% Chance to Block", statOrder = { 2249 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [4253454700] = { "+(3-5)% Chance to Block" }, } }, - ["SubtractedBlockChanceUniqueShieldStrInt8"] = { affix = "", "-10% Chance to Block", statOrder = { 2249 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [4253454700] = { "-10% Chance to Block" }, } }, - ["AdditionalBlockChanceUnique__1"] = { affix = "", "+(3-5)% Chance to Block", statOrder = { 2249 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [4253454700] = { "+(3-5)% Chance to Block" }, } }, - ["AdditionalBlockChanceUnique__2"] = { affix = "", "+6% Chance to Block", statOrder = { 2249 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [4253454700] = { "+6% Chance to Block" }, } }, - ["AdditionalBlockChanceUnique__3"] = { affix = "", "+(6-10)% Chance to Block", statOrder = { 2249 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [4253454700] = { "+(6-10)% Chance to Block" }, } }, - ["AdditionalBlockChanceUnique__4"] = { affix = "", "+6% Chance to Block", statOrder = { 2249 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [4253454700] = { "+6% Chance to Block" }, } }, - ["AdditionalBlockChanceUnique__5"] = { affix = "", "+5% Chance to Block", statOrder = { 2249 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [4253454700] = { "+5% Chance to Block" }, } }, - ["AdditionalBlockChanceUnique__6"] = { affix = "", "+(3-4)% Chance to Block", statOrder = { 2249 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [4253454700] = { "+(3-4)% Chance to Block" }, } }, - ["AdditionalBlockChanceUnique__7__"] = { affix = "", "+(8-12)% Chance to Block", statOrder = { 2249 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [4253454700] = { "+(8-12)% Chance to Block" }, } }, - ["AdditionalBlockChanceUnique__8_"] = { affix = "", "+(9-13)% Chance to Block", statOrder = { 2249 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [4253454700] = { "+(9-13)% Chance to Block" }, } }, - ["AdditionalBlockChanceUnique__9"] = { affix = "", "+(20-25)% Chance to Block", statOrder = { 2249 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [4253454700] = { "+(20-25)% Chance to Block" }, } }, - ["AdditionalBlockChanceUnique__10"] = { affix = "", "+(3-8)% Chance to Block", statOrder = { 2249 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [4253454700] = { "+(3-8)% Chance to Block" }, } }, - ["AdditionalBlockChanceUnique__11"] = { affix = "", "+15% Chance to Block", statOrder = { 2249 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [4253454700] = { "+15% Chance to Block" }, } }, - ["AdditionalBlockChanceUnique__12"] = { affix = "", "+(1-10)% Chance to Block", statOrder = { 2249 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [4253454700] = { "+(1-10)% Chance to Block" }, } }, - ["AdditionalBlockChanceUnique__13"] = { affix = "", "+(5-10)% Chance to Block", statOrder = { 2249 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [4253454700] = { "+(5-10)% Chance to Block" }, } }, - ["SpellBlockOnLowLifeUniqueShieldStrDex1"] = { affix = "", "36% Chance to Block Spell Damage while on Low Life", statOrder = { 1156 }, level = 1, group = "BlockPercentAppliedToSpellsOnLowLife", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [4070519133] = { "36% Chance to Block Spell Damage while on Low Life" }, } }, - ["SpellBlockUniqueShieldInt1"] = { affix = "", "(12-18)% Chance to Block Spell Damage", statOrder = { 1155 }, level = 1, group = "BlockingBlocksSpells", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2881111359] = { "(12-18)% Chance to Block Spell Damage" }, } }, - ["SpellBlockUniqueShieldStrInt1"] = { affix = "", "(21-24)% Chance to Block Spell Damage", statOrder = { 1155 }, level = 1, group = "BlockingBlocksSpells", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2881111359] = { "(21-24)% Chance to Block Spell Damage" }, } }, - ["SpellBlockUniqueBootsInt5"] = { affix = "", "(6-7)% Chance to Block Spell Damage", statOrder = { 1155 }, level = 1, group = "BlockingBlocksSpells", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2881111359] = { "(6-7)% Chance to Block Spell Damage" }, } }, - ["SpellBlockUniqueTwoHandAxe6"] = { affix = "", "7% Chance to Block Spell Damage", statOrder = { 1155 }, level = 1, group = "BlockingBlocksSpells", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2881111359] = { "7% Chance to Block Spell Damage" }, } }, - ["SpellBlockUniqueDescentShieldStr1"] = { affix = "", "30% Chance to Block Spell Damage", statOrder = { 1155 }, level = 1, group = "BlockingBlocksSpells", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2881111359] = { "30% Chance to Block Spell Damage" }, } }, - ["SpellBlockUniqueShieldInt4"] = { affix = "", "7% Chance to Block Spell Damage", statOrder = { 1155 }, level = 1, group = "BlockingBlocksSpells", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2881111359] = { "7% Chance to Block Spell Damage" }, } }, - ["SpellBlockPercentageOnLowLifeUniqueShieldStrDex1_"] = { affix = "", "+30% Chance to Block Spell Damage while on Low Life", statOrder = { 1145 }, level = 1, group = "SpellBlockPercentageOnLowLife", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2253286128] = { "+30% Chance to Block Spell Damage while on Low Life" }, } }, - ["SpellBlockPercentageUniqueShieldInt1"] = { affix = "", "(10-15)% Chance to Block Spell Damage", statOrder = { 1160 }, level = 1, group = "SpellBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [561307714] = { "(10-15)% Chance to Block Spell Damage" }, } }, - ["SpellBlockPercentageUniqueShieldStrInt1"] = { affix = "", "(20-30)% Chance to Block Spell Damage", statOrder = { 1160 }, level = 1, group = "SpellBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [561307714] = { "(20-30)% Chance to Block Spell Damage" }, } }, - ["SpellBlockPercentageUniqueBootsInt5"] = { affix = "", "(15-20)% Chance to Block Spell Damage", statOrder = { 1160 }, level = 1, group = "SpellBlockPercentageRainbowstride", weightKey = { }, weightVal = { }, modTags = { "block", "blue_herring" }, tradeHashes = { [561307714] = { "(15-20)% Chance to Block Spell Damage" }, } }, - ["SpellBlockPercentageUniqueTwoHandAxe6"] = { affix = "", "(7-10)% Chance to Block Spell Damage", statOrder = { 1160 }, level = 1, group = "SpellBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [561307714] = { "(7-10)% Chance to Block Spell Damage" }, } }, - ["SpellBlockPercentageUniqueShieldInt4"] = { affix = "", "10% Chance to Block Spell Damage", statOrder = { 1160 }, level = 1, group = "SpellBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [561307714] = { "10% Chance to Block Spell Damage" }, } }, - ["MaximumColdResistUniqueShieldDex1"] = { affix = "", "+5% to maximum Cold Resistance", statOrder = { 1629 }, level = 1, group = "MaximumColdResist", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+5% to maximum Cold Resistance" }, } }, - ["MaximumColdResistUnique__1_"] = { affix = "", "+(-3-3)% to maximum Cold Resistance", statOrder = { 1629 }, level = 1, group = "MaximumColdResist", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+(-3-3)% to maximum Cold Resistance" }, } }, - ["MaximumColdResistUnique__2"] = { affix = "", "+3% to maximum Cold Resistance", statOrder = { 1629 }, level = 1, group = "MaximumColdResist", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+3% to maximum Cold Resistance" }, } }, - ["MaximumFireResistUniqueShieldStrInt5"] = { affix = "", "+5% to maximum Fire Resistance", statOrder = { 1623 }, level = 1, group = "MaximumFireResist", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+5% to maximum Fire Resistance" }, } }, - ["MaximumFireResistUnique__1"] = { affix = "", "+(-3-3)% to maximum Fire Resistance", statOrder = { 1623 }, level = 1, group = "MaximumFireResist", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+(-3-3)% to maximum Fire Resistance" }, } }, - ["MaximumLightningResistUniqueStaff8c"] = { affix = "", "+5% to maximum Lightning Resistance", statOrder = { 1634 }, level = 1, group = "MaximumLightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+5% to maximum Lightning Resistance" }, } }, - ["MaximumLightningResistUnique__1"] = { affix = "", "+(-3-3)% to maximum Lightning Resistance", statOrder = { 1634 }, level = 1, group = "MaximumLightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+(-3-3)% to maximum Lightning Resistance" }, } }, - ["MeleeAttackerTakesColdDamageUniqueShieldDex1"] = { affix = "", "Reflects (25-50) Cold Damage to Melee Attackers", statOrder = { 2203 }, level = 1, group = "AttackerTakesColdDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [4235886357] = { "Reflects (25-50) Cold Damage to Melee Attackers" }, } }, - ["RangedAttackDamageReducedUniqueShieldStr1"] = { affix = "", "-25 Physical Damage taken from Projectile Attacks", statOrder = { 2246 }, level = 1, group = "RangedAttackDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical", "attack" }, tradeHashes = { [3612407781] = { "-25 Physical Damage taken from Projectile Attacks" }, } }, - ["RangedAttackDamageReducedUniqueShieldStr2"] = { affix = "", "-(80-50) Physical Damage taken from Projectile Attacks", statOrder = { 2246 }, level = 1, group = "RangedAttackDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical", "attack" }, tradeHashes = { [3612407781] = { "-(80-50) Physical Damage taken from Projectile Attacks" }, } }, - ["GainFrenzyChargeOnCriticalHit"] = { affix = "", "Gain a Frenzy Charge on Critical Strike", statOrder = { 1828 }, level = 1, group = "FrenzyChargeOnCriticalHit", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge", "critical" }, tradeHashes = { [398702949] = { "Gain a Frenzy Charge on Critical Strike" }, } }, - ["DisableOffhandSlot"] = { affix = "", "Uses both hand slots", statOrder = { 1074 }, level = 1, group = "DisableOffhandSlot", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2846730569] = { "Uses both hand slots" }, } }, - ["DisableOffHandSlotUnique__1"] = { affix = "", "Uses both hand slots", statOrder = { 1074 }, level = 1, group = "DisableOffhandSlot", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2846730569] = { "Uses both hand slots" }, } }, - ["CannotBlockAttacks"] = { affix = "", "Cannot Block Attack Damage", statOrder = { 2258 }, level = 1, group = "CannotBlockAttacks", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [3162258068] = { "Cannot Block Attack Damage" }, } }, - ["IncreasedMaximumResistsUniqueShieldStrInt1"] = { affix = "", "+4% to all maximum Resistances", statOrder = { 1642 }, level = 1, group = "MaximumResistances", weightKey = { }, weightVal = { }, modTags = { "resistance" }, tradeHashes = { [569299859] = { "+4% to all maximum Resistances" }, } }, - ["IncreasedMaximumResistsUnique__1"] = { affix = "", "+(1-4)% to all maximum Resistances", statOrder = { 1642 }, level = 1, group = "MaximumResistances", weightKey = { }, weightVal = { }, modTags = { "resistance" }, tradeHashes = { [569299859] = { "+(1-4)% to all maximum Resistances" }, } }, - ["IncreasedMaximumResistsUnique__2"] = { affix = "", "-5% to all maximum Resistances", statOrder = { 1642 }, level = 1, group = "MaximumResistances", weightKey = { }, weightVal = { }, modTags = { "resistance" }, tradeHashes = { [569299859] = { "-5% to all maximum Resistances" }, } }, - ["IncreasedMaximumColdResistUniqueShieldStrInt4"] = { affix = "", "+5% to maximum Cold Resistance", statOrder = { 1629 }, level = 1, group = "MaximumColdResist", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+5% to maximum Cold Resistance" }, } }, - ["ItemActsAsConcentratedAOESupportUniqueHelmetInt4"] = { affix = "", "Socketed Gems are Supported by Level 20 Concentrated Effect", statOrder = { 453 }, level = 1, group = "DisplaySocketedGemGetsConcentratedAreaOfEffectLevel", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2388360415] = { "Socketed Gems are Supported by Level 20 Concentrated Effect" }, } }, - ["ItemActsAsConcentratedAOESupportUniqueDagger5"] = { affix = "", "Socketed Gems are Supported by Level 10 Concentrated Effect", statOrder = { 453 }, level = 1, group = "DisplaySocketedGemGetsConcentratedAreaOfEffectLevel", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2388360415] = { "Socketed Gems are Supported by Level 10 Concentrated Effect" }, } }, - ["ItemActsAsConcentratedAOESupportUniqueRing35"] = { affix = "", "Socketed Gems are Supported by Level 15 Concentrated Effect", statOrder = { 453 }, level = 1, group = "DisplaySocketedGemGetsConcentratedAreaOfEffectLevel", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2388360415] = { "Socketed Gems are Supported by Level 15 Concentrated Effect" }, } }, - ["ItemActsAsConcentratedAOESupportUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 5 Concentrated Effect", statOrder = { 453 }, level = 1, group = "DisplaySocketedGemGetsConcentratedAreaOfEffectLevel", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2388360415] = { "Socketed Gems are Supported by Level 5 Concentrated Effect" }, } }, - ["ItemActsAsFirePenetrationSupportUniqueSceptre2"] = { affix = "", "Socketed Gems are Supported by Level 10 Fire Penetration", statOrder = { 465 }, level = 1, group = "DisplaySocketedGemsGetFirePenetration", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [3265951306] = { "Socketed Gems are Supported by Level 10 Fire Penetration" }, } }, - ["ItemActsAsFireDamageSupportUniqueSceptre2"] = { affix = "", "Socketed Gems are Supported by Level 10 Added Fire Damage", statOrder = { 462 }, level = 1, group = "DisplaySocketedGemsGetAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [2572192375] = { "Socketed Gems are Supported by Level 10 Added Fire Damage" }, } }, - ["ItemActsAsColdToFireSupportUniqueSceptre2"] = { affix = "", "Socketed Gems are Supported by Level 10 Cold to Fire", statOrder = { 463 }, level = 1, group = "DisplaySocketedGemsGetColdToFire", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [550444281] = { "Socketed Gems are Supported by Level 10 Cold to Fire" }, } }, - ["ItemActsAsColdToFireSupportUniqueStaff13"] = { affix = "", "Socketed Gems are Supported by Level 5 Cold to Fire", statOrder = { 463 }, level = 1, group = "DisplaySocketedGemsGetColdToFire", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [550444281] = { "Socketed Gems are Supported by Level 5 Cold to Fire" }, } }, - ["ItemActsAsColdToFireSupportUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 30 Cold to Fire", statOrder = { 463 }, level = 75, group = "DisplaySocketedGemsGetColdToFire", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [550444281] = { "Socketed Gems are Supported by Level 30 Cold to Fire" }, } }, - ["ShareEnduranceChargesWithParty"] = { affix = "", "Share Endurance Charges with nearby party members", statOrder = { 2260 }, level = 1, group = "ShareEnduranceChargesWithParty", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHashes = { [1881314095] = { "Share Endurance Charges with nearby party members" }, } }, - ["GainEnduranceChargeWhenCriticallyHit"] = { affix = "", "Gain an Endurance Charge when you take a Critical Strike", statOrder = { 1835 }, level = 1, group = "GainEnduranceChargeWhenCriticallyHit", weightKey = { }, weightVal = { }, modTags = { "endurance_charge", "critical" }, tradeHashes = { [2609824731] = { "Gain an Endurance Charge when you take a Critical Strike" }, } }, - ["BlindingHitUniqueWand1"] = { affix = "", "10% chance to Blind Enemies on hit", statOrder = { 2263 }, level = 1, group = "BlindingHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2301191210] = { "10% chance to Blind Enemies on hit" }, } }, - ["ItemActsAsSupportBlindUniqueWand1"] = { affix = "", "Socketed Gems are supported by Level 20 Blind", statOrder = { 470 }, level = 1, group = "DisplaySocketedGemGetsBlindLevel", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2223640518] = { "Socketed Gems are supported by Level 20 Blind" }, } }, - ["ItemActsAsSupportBlindUniqueHelmetStrDex4"] = { affix = "", "Socketed Gems are supported by Level 30 Blind", statOrder = { 470 }, level = 1, group = "DisplaySocketedGemGetsBlindLevel", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2223640518] = { "Socketed Gems are supported by Level 30 Blind" }, } }, - ["ItemActsAsSupportBlindUniqueHelmetStrDex4b"] = { affix = "", "Socketed Gems are supported by Level 6 Blind", statOrder = { 470 }, level = 1, group = "DisplaySocketedGemGetsBlindLevel", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2223640518] = { "Socketed Gems are supported by Level 6 Blind" }, } }, - ["ItemActsAsSupportBlindUnique__1"] = { affix = "", "Socketed Gems are supported by Level 10 Blind", statOrder = { 470 }, level = 1, group = "DisplaySocketedGemGetsBlindLevel", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2223640518] = { "Socketed Gems are supported by Level 10 Blind" }, } }, - ["ReducedFreezeDurationUniqueShieldStrInt3"] = { affix = "", "80% reduced Freeze Duration on you", statOrder = { 1874 }, level = 1, group = "ReducedFreezeDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2160282525] = { "80% reduced Freeze Duration on you" }, } }, - ["FreezeDurationOnSelfUnique__1"] = { affix = "", "10000% increased Freeze Duration on you", statOrder = { 1874 }, level = 1, group = "ReducedFreezeDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2160282525] = { "10000% increased Freeze Duration on you" }, } }, - ["FacebreakerUnarmedMoreDamage"] = { affix = "", "(600-1000)% more Physical Damage with Unarmed Melee Attacks", statOrder = { 2436 }, level = 1, group = "FacebreakerPhysicalUnarmedDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1814782245] = { "(600-1000)% more Physical Damage with Unarmed Melee Attacks" }, } }, - ["SocketedGemsGetIncreasedAreaOfEffectUniqueTwoHandMace3"] = { affix = "", "Socketed Gems are Supported by Level 15 Pulverise", statOrder = { 358 }, level = 1, group = "SupportedByPulverise", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [282757414] = { "Socketed Gems are Supported by Level 15 Pulverise" }, } }, - ["SocketedGemsGetIncreasedAreaOfEffectUniqueTwoHandAxe5"] = { affix = "", "Socketed Gems are Supported by Level 20 Increased Area of Effect", statOrder = { 224 }, level = 1, group = "DisplaySocketedGemGetsIncreasedAreaOfEffectLevel", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [3720936304] = { "Socketed Gems are Supported by Level 20 Increased Area of Effect" }, } }, - ["SocketedGemsGetIncreasedAreaOfEffectUniqueDescentOneHandSword1"] = { affix = "", "Socketed Gems are Supported by Level 5 Increased Area of Effect", statOrder = { 224 }, level = 1, group = "DisplaySocketedGemGetsIncreasedAreaOfEffectLevel", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [3720936304] = { "Socketed Gems are Supported by Level 5 Increased Area of Effect" }, } }, - ["SocketedGemsGetIncreasedAreaOfEffectUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 10 Intensify", statOrder = { 411 }, level = 1, group = "SupportedByIntensifyLevel10Boolean", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [3561676020] = { "Socketed Gems are Supported by Level 10 Intensify" }, } }, - ["EnemiesCantLifeLeech"] = { affix = "", "Enemies Cannot Leech Life From you", statOrder = { 2440 }, level = 1, group = "EnemiesCantLifeLeech", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4293455942] = { "Enemies Cannot Leech Life From you" }, } }, - ["UniqueEnemiesCantLifeLeech__1"] = { affix = "", "Enemies Cannot Leech Life From you", statOrder = { 2440 }, level = 1, group = "EnemiesCantLifeLeech", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4293455942] = { "Enemies Cannot Leech Life From you" }, } }, - ["ExtraGore"] = { affix = "", "Extra gore", statOrder = { 10857 }, level = 1, group = "ExtraGore", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3403461239] = { "Extra gore" }, } }, - ["OneSocketEachColourUnique"] = { affix = "", "Has one socket of each colour", statOrder = { 79 }, level = 1, group = "OneSocketEachColour", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3146680230] = { "Has one socket of each colour" }, } }, - ["BlockWhileDualWieldingUniqueDagger3"] = { affix = "", "+12% Chance to Block Attack Damage while Dual Wielding", statOrder = { 1162 }, level = 1, group = "BlockWhileDualWielding", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2166444903] = { "+12% Chance to Block Attack Damage while Dual Wielding" }, } }, - ["BlockWhileDualWieldingUniqueTwoHandAxe6"] = { affix = "", "+(8-12)% Chance to Block Attack Damage while Dual Wielding", statOrder = { 1162 }, level = 1, group = "BlockWhileDualWielding", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2166444903] = { "+(8-12)% Chance to Block Attack Damage while Dual Wielding" }, } }, - ["BlockWhileDualWieldingUniqueOneHandSword5"] = { affix = "", "+8% Chance to Block Attack Damage while Dual Wielding", statOrder = { 1162 }, level = 1, group = "BlockWhileDualWielding", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2166444903] = { "+8% Chance to Block Attack Damage while Dual Wielding" }, } }, - ["BlockWhileDualWieldingUniqueDagger9"] = { affix = "", "+5% Chance to Block Attack Damage while Dual Wielding", statOrder = { 1162 }, level = 1, group = "BlockWhileDualWielding", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2166444903] = { "+5% Chance to Block Attack Damage while Dual Wielding" }, } }, - ["BlockWhileDualWieldingUnique__1"] = { affix = "", "+10% Chance to Block Attack Damage while Dual Wielding", statOrder = { 1162 }, level = 1, group = "BlockWhileDualWielding", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2166444903] = { "+10% Chance to Block Attack Damage while Dual Wielding" }, } }, - ["BlockWhileDualWieldingUnique__2_"] = { affix = "", "+18% Chance to Block Attack Damage while Dual Wielding", statOrder = { 1162 }, level = 1, group = "BlockWhileDualWielding", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2166444903] = { "+18% Chance to Block Attack Damage while Dual Wielding" }, } }, - ["MaximumMinionCountUniqueBootsInt4"] = { affix = "", "+1 to Level of all Raise Zombie Gems", "+1 to Level of all Raise Spectre Gems", statOrder = { 1615, 1616 }, level = 1, group = "MinionGlobalSkillLevel", weightKey = { }, weightVal = { }, modTags = { "skill", "minion", "gem" }, tradeHashes = { [2739830820] = { "+1 to Level of all Raise Zombie Gems" }, [2120904498] = { "" }, [3235814433] = { "+1 to Level of all Raise Spectre Gems" }, } }, - ["MaximumMinionCountUniqueTwoHandSword4"] = { affix = "", "+1 to maximum number of Raised Zombies", "+1 to maximum number of Spectres", "+1 to maximum number of Skeletons", statOrder = { 2160, 2161, 9538 }, level = 1, group = "MaximumMinionCountHalfSkeletons", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [4017641977] = { "+1 to maximum number of Skeletons" }, [1652515349] = { "+1 to maximum number of Raised Zombies" }, [125218179] = { "+1 to maximum number of Spectres" }, } }, - ["MaximumMinionCountUniqueTwoHandSword4Updated"] = { affix = "", "+(1-2) to maximum number of Raised Zombies", "+(1-2) to maximum number of Spectres", "+(1-2) to maximum number of Skeletons", statOrder = { 2160, 2161, 2162 }, level = 1, group = "MaximumMinionCount", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [1652515349] = { "+(1-2) to maximum number of Raised Zombies" }, [2428829184] = { "+(1-2) to maximum number of Skeletons" }, [125218179] = { "+(1-2) to maximum number of Spectres" }, } }, - ["MaximumMinionCountUniqueSceptre5"] = { affix = "", "+1 to maximum number of Spectres", statOrder = { 2161 }, level = 1, group = "MaximumMinionCount", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [1652515349] = { "" }, [2428829184] = { "" }, [125218179] = { "+1 to maximum number of Spectres" }, } }, - ["MaximumMinionCountUniqueBootsStrInt2"] = { affix = "", "+1 to maximum number of Skeletons", statOrder = { 9538 }, level = 1, group = "MaximumMinionCountHalfSkeletons", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [4017641977] = { "+1 to maximum number of Skeletons" }, [1652515349] = { "" }, [125218179] = { "" }, } }, - ["MaximumMinionCountUniqueBootsStrInt2Updated"] = { affix = "", "+1 to maximum number of Skeletons", statOrder = { 2162 }, level = 1, group = "MaximumMinionCount", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [1652515349] = { "" }, [2428829184] = { "+1 to maximum number of Skeletons" }, [125218179] = { "" }, } }, - ["MaximumMinionCountUniqueBodyInt9"] = { affix = "", "+1 to maximum number of Spectres", statOrder = { 2161 }, level = 1, group = "MaximumMinionCount", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [1652515349] = { "" }, [2428829184] = { "" }, [125218179] = { "+1 to maximum number of Spectres" }, } }, - ["MaximumMinionCountUnique__2"] = { affix = "", "+2 to maximum number of Spectres", statOrder = { 2161 }, level = 1, group = "MaximumMinionCount", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [1652515349] = { "" }, [2428829184] = { "" }, [125218179] = { "+2 to maximum number of Spectres" }, } }, - ["SocketedemsHaveBloodMagicUniqueShieldStrInt2"] = { affix = "", "Socketed Gems Cost and Reserve Life instead of Mana", statOrder = { 527 }, level = 1, group = "DisplaySocketedGemGetsBloodMagic", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [1104246401] = { "Socketed Gems Cost and Reserve Life instead of Mana" }, } }, - ["SocketedGemsHaveBloodMagicUniqueOneHandSword7"] = { affix = "", "Socketed Gems Cost and Reserve Life instead of Mana", statOrder = { 527 }, level = 1, group = "DisplaySocketedGemGetsBloodMagic", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [1104246401] = { "Socketed Gems Cost and Reserve Life instead of Mana" }, } }, - ["SocketedGemsHaveBloodMagicUnique__1"] = { affix = "", "Socketed Gems Cost and Reserve Life instead of Mana", statOrder = { 527 }, level = 1, group = "DisplaySocketedGemGetsBloodMagic", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [1104246401] = { "Socketed Gems Cost and Reserve Life instead of Mana" }, } }, - ["LocalIncreaseSocketedAuraLevelUniqueShieldStrInt2"] = { affix = "", "+2 to Level of Socketed Aura Gems", statOrder = { 181 }, level = 1, group = "LocalIncreaseSocketedAuraLevel", weightKey = { }, weightVal = { }, modTags = { "aura", "gem" }, tradeHashes = { [2452998583] = { "+2 to Level of Socketed Aura Gems" }, } }, - ["SocketedItemsHaveChanceToFleeUniqueClaw6"] = { affix = "", "Socketed Gems have 10% chance to cause Enemies to Flee on Hit", statOrder = { 535 }, level = 1, group = "DisplaySocketedGemGetsFlee", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [3418772] = { "Socketed Gems have 10% chance to cause Enemies to Flee on Hit" }, } }, - ["AttackerTakesLightningDamageUniqueBodyInt1"] = { affix = "", "Reflects 1 to 250 Lightning Damage to Melee Attackers", statOrder = { 2200 }, level = 1, group = "AttackerTakesLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [1243237244] = { "Reflects 1 to 250 Lightning Damage to Melee Attackers" }, } }, - ["AttackerTakesLightningDamageUnique___1"] = { affix = "", "Reflects 1 to 150 Lightning Damage to Melee Attackers", statOrder = { 2200 }, level = 1, group = "AttackerTakesLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [1243237244] = { "Reflects 1 to 150 Lightning Damage to Melee Attackers" }, } }, - ["PhysicalDamageConvertToChaosUniqueBow5"] = { affix = "", "25% of Physical Damage Converted to Chaos Damage", statOrder = { 1962 }, level = 1, group = "PhysicalDamageConvertToChaos", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, tradeHashes = { [490098963] = { "25% of Physical Damage Converted to Chaos Damage" }, } }, - ["PhysicalDamageConvertToChaosUniqueClaw2"] = { affix = "", "(10-20)% of Physical Damage Converted to Chaos Damage", statOrder = { 1962 }, level = 1, group = "PhysicalDamageConvertToChaos", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, tradeHashes = { [490098963] = { "(10-20)% of Physical Damage Converted to Chaos Damage" }, } }, - ["PhysicalDamageConvertToChaosBodyStrInt4"] = { affix = "", "30% of Physical Damage Converted to Chaos Damage", statOrder = { 1962 }, level = 1, group = "PhysicalDamageConvertToChaos", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, tradeHashes = { [490098963] = { "30% of Physical Damage Converted to Chaos Damage" }, } }, - ["PhysicalDamageConvertToChaosUnique__1"] = { affix = "", "25% of Physical Damage Converted to Chaos Damage", statOrder = { 1962 }, level = 1, group = "PhysicalDamageConvertToChaos", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, tradeHashes = { [490098963] = { "25% of Physical Damage Converted to Chaos Damage" }, } }, - ["PhysicalDamageConvertedToChaosPerLevelUnique__1"] = { affix = "", "1% of Physical Damage Converted to Chaos Damage per Level", statOrder = { 5042 }, level = 1, group = "PhysicalDamageConvertToChaosPerLevel", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, tradeHashes = { [3555122266] = { "1% of Physical Damage Converted to Chaos Damage per Level" }, [3711497052] = { "" }, } }, - ["MaximumMinionCountUniqueWand2"] = { affix = "", "+1 to maximum number of Raised Zombies", "+1 to maximum number of Spectres", "+1 to maximum number of Skeletons", statOrder = { 2160, 2161, 9538 }, level = 1, group = "MaximumMinionCountHalfSkeletons", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [4017641977] = { "+1 to maximum number of Skeletons" }, [1652515349] = { "+1 to maximum number of Raised Zombies" }, [125218179] = { "+1 to maximum number of Spectres" }, } }, - ["MaximumMinionCountUniqueWand2Updated"] = { affix = "", "+1 to maximum number of Raised Zombies", "+1 to maximum number of Spectres", "+1 to maximum number of Skeletons", statOrder = { 2160, 2161, 2162 }, level = 1, group = "MaximumMinionCount", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [1652515349] = { "+1 to maximum number of Raised Zombies" }, [2428829184] = { "+1 to maximum number of Skeletons" }, [125218179] = { "+1 to maximum number of Spectres" }, } }, - ["LifeReservationUniqueWand2"] = { affix = "", "Cannot be used with Chaos Inoculation", "Reserves 30% of Life", statOrder = { 1076, 2439 }, level = 1, group = "ReservesLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2492660287] = { "Reserves 30% of Life" }, [623651254] = { "Cannot be used with Chaos Inoculation" }, } }, - ["LocalIncreaseSocketedStrengthGemLevelUniqueTwoHandAxe3"] = { affix = "", "+1 to Level of Socketed Strength Gems", statOrder = { 158 }, level = 1, group = "LocalIncreaseSocketedStrengthGemLevel", weightKey = { }, weightVal = { }, modTags = { "attribute", "gem" }, tradeHashes = { [916797432] = { "+1 to Level of Socketed Strength Gems" }, } }, - ["ChaosTakenOnES"] = { affix = "", "Chaos Damage taken does not bypass Energy Shield", statOrder = { 2510 }, level = 1, group = "ChaosTakenOnES", weightKey = { }, weightVal = { }, modTags = { "chaos" }, tradeHashes = { [1119465199] = { "Chaos Damage taken does not bypass Energy Shield" }, } }, - ["PhysicalDamagePercentTakesAsChaosDamageUniqueBow5"] = { affix = "", "25% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2451 }, level = 1, group = "PhysicalDamagePercentTakesAsChaosDamage", weightKey = { }, weightVal = { }, modTags = { "physical", "chaos" }, tradeHashes = { [4129825612] = { "25% of Physical Damage from Hits taken as Chaos Damage" }, } }, - ["PhysicalBowDamageCloseRangeUniqueBow6"] = { affix = "", "50% more Damage with Arrow Hits at Close Range", statOrder = { 2442 }, level = 1, group = "ChinSolPhysicalBowDamageAtCloseRange", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [2749166636] = { "50% more Damage with Arrow Hits at Close Range" }, } }, - ["KnockbackCloseRangeUniqueBow6"] = { affix = "", "Bow Knockback at Close Range", statOrder = { 2444 }, level = 1, group = "ChinSolCloseRangeKnockBack", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3261557635] = { "Bow Knockback at Close Range" }, } }, - ["PercentDamageGoesToManaUniqueBootsDex3"] = { affix = "", "(5-10)% of Damage taken Recouped as Mana", statOrder = { 2455 }, level = 1, group = "PercentDamageGoesToMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [472520716] = { "(5-10)% of Damage taken Recouped as Mana" }, } }, - ["PercentDamageGoesToManaUniqueHelmetStrInt3"] = { affix = "", "(10-20)% of Damage taken Recouped as Mana", statOrder = { 2455 }, level = 1, group = "PercentDamageGoesToMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [472520716] = { "(10-20)% of Damage taken Recouped as Mana" }, } }, - ["PercentDamageGoesToManaUnique__1"] = { affix = "", "8% of Damage taken Recouped as Mana", statOrder = { 2455 }, level = 1, group = "PercentDamageGoesToMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [472520716] = { "8% of Damage taken Recouped as Mana" }, } }, - ["PercentDamageGoesToManaUnique__2"] = { affix = "", "(6-12)% of Damage taken Recouped as Mana", statOrder = { 2455 }, level = 1, group = "PercentDamageGoesToMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [472520716] = { "(6-12)% of Damage taken Recouped as Mana" }, } }, - ["ChanceToIgniteUniqueBodyInt2"] = { affix = "", "10% chance to Ignite", statOrder = { 2026 }, level = 1, group = "ChanceToIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "10% chance to Ignite" }, } }, - ["ChanceToIgniteUniqueTwoHandSword6"] = { affix = "", "20% chance to Ignite", statOrder = { 2026 }, level = 1, group = "ChanceToIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "20% chance to Ignite" }, } }, - ["ChanceToIgniteUniqueDescentOneHandMace1"] = { affix = "", "30% chance to Ignite", statOrder = { 2026 }, level = 1, group = "ChanceToIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "30% chance to Ignite" }, } }, - ["ChanceToIgniteUniqueBootsStrInt3"] = { affix = "", "(10-15)% chance to Ignite", statOrder = { 2026 }, level = 1, group = "ChanceToIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "(10-15)% chance to Ignite" }, } }, - ["ChanceToIgniteUniqueRing38"] = { affix = "", "10% chance to Ignite", statOrder = { 2026 }, level = 1, group = "ChanceToIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "10% chance to Ignite" }, } }, - ["ChanceToIgniteUnique__1"] = { affix = "", "(16-22)% chance to Ignite", statOrder = { 2026 }, level = 1, group = "ChanceToIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "(16-22)% chance to Ignite" }, } }, - ["ChanceToIgniteUnique__2"] = { affix = "", "10% chance to Ignite", statOrder = { 2026 }, level = 1, group = "ChanceToIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "10% chance to Ignite" }, } }, - ["ChanceToIgniteUnique__3"] = { affix = "", "10% chance to Ignite", statOrder = { 2026 }, level = 1, group = "ChanceToIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "10% chance to Ignite" }, } }, - ["ChanceToIgniteUnique__4"] = { affix = "", "(6-10)% chance to Ignite", statOrder = { 2026 }, level = 1, group = "ChanceToIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "(6-10)% chance to Ignite" }, } }, - ["ChanceToIgniteUnique__5"] = { affix = "", "25% chance to Ignite", statOrder = { 2026 }, level = 1, group = "ChanceToIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "25% chance to Ignite" }, } }, - ["ChanceToIgniteUnique__6"] = { affix = "", "(10-15)% chance to Ignite", statOrder = { 2026 }, level = 1, group = "ChanceToIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "(10-15)% chance to Ignite" }, } }, - ["BurnDurationUniqueBodyInt2"] = { affix = "", "(40-75)% increased Ignite Duration on Enemies", statOrder = { 1859 }, level = 1, group = "BurnDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1086147743] = { "(40-75)% increased Ignite Duration on Enemies" }, } }, - ["BurnDurationUniqueDescentOneHandMace1"] = { affix = "", "500% increased Ignite Duration on Enemies", statOrder = { 1859 }, level = 1, group = "BurnDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1086147743] = { "500% increased Ignite Duration on Enemies" }, } }, - ["BurnDurationUniqueRing31"] = { affix = "", "15% increased Ignite Duration on Enemies", statOrder = { 1859 }, level = 1, group = "BurnDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1086147743] = { "15% increased Ignite Duration on Enemies" }, } }, - ["BurnDurationUniqueWand10"] = { affix = "", "25% reduced Ignite Duration on Enemies", statOrder = { 1859 }, level = 1, group = "BurnDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1086147743] = { "25% reduced Ignite Duration on Enemies" }, } }, - ["BurnDurationUnique__1"] = { affix = "", "33% increased Ignite Duration on Enemies", statOrder = { 1859 }, level = 1, group = "BurnDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1086147743] = { "33% increased Ignite Duration on Enemies" }, } }, - ["BurnDurationUnique__2"] = { affix = "", "10000% increased Ignite Duration on Enemies", statOrder = { 1859 }, level = 1, group = "BurnDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1086147743] = { "10000% increased Ignite Duration on Enemies" }, } }, - ["PhysicalDamageTakenAsFirePercentUniqueBodyInt2"] = { affix = "", "20% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2447 }, level = 1, group = "PhysicalDamageTakenAsFirePercent", weightKey = { }, weightVal = { }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "20% of Physical Damage from Hits taken as Fire Damage" }, } }, - ["PhysicalDamageTakenAsFirePercentUnique__1"] = { affix = "", "8% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2447 }, level = 1, group = "PhysicalDamageTakenAsFirePercent", weightKey = { }, weightVal = { }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "8% of Physical Damage from Hits taken as Fire Damage" }, } }, - ["AttackerTakesFireDamageUniqueBodyInt2"] = { affix = "", "Reflects 100 Fire Damage to Melee Attackers", statOrder = { 2204 }, level = 1, group = "AttackerTakesFireDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [1757945818] = { "Reflects 100 Fire Damage to Melee Attackers" }, [223497523] = { "" }, } }, - ["AttackerTakesFireDamageUnique__1"] = { affix = "", "Reflects 100 Fire Damage to Melee Attackers", statOrder = { 2204 }, level = 1, group = "AttackerTakesFireDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [1757945818] = { "Reflects 100 Fire Damage to Melee Attackers" }, [223497523] = { "" }, } }, - ["AttackerTakesColdDamageUnique__1"] = { affix = "", "Reflects 100 Cold Damage to Melee Attackers", statOrder = { 2203 }, level = 1, group = "AttackerTakesColdDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [4235886357] = { "Reflects 100 Cold Damage to Melee Attackers" }, } }, - ["AttackerTakesLightningDamageUnique__1"] = { affix = "", "Reflects 100 Lightning Damage to Melee Attackers", statOrder = { 2205 }, level = 1, group = "AttackerTakesLightningDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [3868184702] = { "Reflects 100 Lightning Damage to Melee Attackers" }, } }, - ["AvoidIgniteUniqueBodyDex3"] = { affix = "", "Cannot be Ignited", statOrder = { 1839 }, level = 1, group = "CannotBeIgnited", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [331731406] = { "Cannot be Ignited" }, } }, - ["AvoidIgniteUnique__1"] = { affix = "", "Cannot be Ignited", statOrder = { 1839 }, level = 1, group = "CannotBeIgnited", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [331731406] = { "Cannot be Ignited" }, } }, - ["RangedWeaponPhysicalDamagePlusPercentUniqueBodyDex3"] = { affix = "", "(10-15)% increased Physical Damage with Ranged Weapons", statOrder = { 1998 }, level = 1, group = "RangedWeaponPhysicalDamagePlusPercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [766615564] = { "(10-15)% increased Physical Damage with Ranged Weapons" }, } }, - ["RangedWeaponPhysicalDamagePlusPercentUnique__1"] = { affix = "", "(75-150)% increased Physical Damage with Ranged Weapons", statOrder = { 1998 }, level = 1, group = "RangedWeaponPhysicalDamagePlusPercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [766615564] = { "(75-150)% increased Physical Damage with Ranged Weapons" }, } }, - ["PhysicalDamageTakenPercentToReflectUniqueBodyStr2"] = { affix = "", "1000% of Melee Physical Damage taken reflected to Attacker", statOrder = { 2457 }, level = 1, group = "PhysicalDamageTakenPercentToReflect", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1092987622] = { "1000% of Melee Physical Damage taken reflected to Attacker" }, } }, - ["AdditionalBlockUniqueBodyDex2"] = { affix = "", "+5% Chance to Block Attack Damage", statOrder = { 2458 }, level = 1, group = "AdditionalBlock", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [1702195217] = { "+5% Chance to Block Attack Damage" }, } }, - ["AdditionalBlockUnique__2"] = { affix = "", "15% Chance to Block Attack Damage", statOrder = { 1138 }, level = 1, group = "BlockPercent", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2530372417] = { "15% Chance to Block Attack Damage" }, } }, - ["ArrowPierceUniqueBow7"] = { affix = "", "Arrows Pierce all Targets", statOrder = { 4990 }, level = 1, group = "ArrowsAlwaysPierce", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [1829238593] = { "Arrows Pierce all Targets" }, } }, - ["AdditionalArrowPierceImplicitQuiver12_"] = { affix = "", "Arrows Pierce an additional Target", statOrder = { 1791 }, level = 45, group = "AdditionalArrowPierce", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [3423006863] = { "Arrows Pierce an additional Target" }, } }, - ["AdditionalArrowPierceImplicitQuiver5New"] = { affix = "", "Arrows Pierce an additional Target", statOrder = { 1791 }, level = 32, group = "AdditionalArrowPierce", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [3423006863] = { "Arrows Pierce an additional Target" }, } }, - ["LeechEnergyShieldInsteadofLife"] = { affix = "", "Leech Energy Shield instead of Life", statOrder = { 7337 }, level = 1, group = "LeechEnergyShieldInsteadofLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "defences", "energy_shield" }, tradeHashes = { [3346092312] = { "Leech Energy Shield instead of Life" }, } }, - ["BlockWhileDualWieldingClawsUniqueClaw1"] = { affix = "", "+8% Chance to Block Attack Damage while Dual Wielding Claws", statOrder = { 1163 }, level = 1, group = "BlockWhileDualWieldingClaws", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2538694749] = { "+8% Chance to Block Attack Damage while Dual Wielding Claws" }, } }, - ["ArmourPercent VsProjectilesUniqueShieldStr2"] = { affix = "", "200% increased Armour against Projectiles", statOrder = { 2463 }, level = 1, group = "ArmourPercentVsProjectiles", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [706246936] = { "200% increased Armour against Projectiles" }, } }, - ["BlockVsProjectilesUniqueShieldStr2"] = { affix = "", "+25% chance to Block Projectile Attack Damage", statOrder = { 2464 }, level = 1, group = "BlockVsProjectiles", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [3416410609] = { "+25% chance to Block Projectile Attack Damage" }, } }, - ["CannotLeech"] = { affix = "", "Cannot Leech", statOrder = { 2465 }, level = 1, group = "CannotLeech", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana", "defences", "energy_shield" }, tradeHashes = { [1336164384] = { "Cannot Leech" }, } }, - ["SocketedItemsHaveReducedReservationUniqueShieldStrInt2"] = { affix = "", "Socketed Gems have 30% increased Reservation Efficiency", statOrder = { 528 }, level = 1, group = "DisplaySocketedGemsGetReducedReservation", weightKey = { }, weightVal = { }, modTags = { "skill", "gem" }, tradeHashes = { [3289633055] = { "Socketed Gems have 30% increased Reservation Efficiency" }, } }, - ["SocketedItemsHaveReducedReservationUniqueBodyDexInt4"] = { affix = "", "Socketed Gems have 45% increased Reservation Efficiency", statOrder = { 528 }, level = 1, group = "DisplaySocketedGemsGetReducedReservation", weightKey = { }, weightVal = { }, modTags = { "skill", "gem" }, tradeHashes = { [3289633055] = { "Socketed Gems have 45% increased Reservation Efficiency" }, } }, - ["SocketedItemsHaveReducedReservationUnique__1"] = { affix = "", "Socketed Gems have 25% increased Reservation Efficiency", statOrder = { 528 }, level = 1, group = "DisplaySocketedGemsGetReducedReservation", weightKey = { }, weightVal = { }, modTags = { "skill", "gem" }, tradeHashes = { [3289633055] = { "Socketed Gems have 25% increased Reservation Efficiency" }, } }, - ["SocketedItemsHaveIncreasedReservationUnique__1"] = { affix = "", "Socketed Gems have 20% reduced Reservation Efficiency", statOrder = { 528 }, level = 57, group = "DisplaySocketedGemsGetReducedReservation", weightKey = { }, weightVal = { }, modTags = { "skill", "gem" }, tradeHashes = { [3289633055] = { "Socketed Gems have 20% reduced Reservation Efficiency" }, } }, - ["ChanceToFreezeUniqueStaff2"] = { affix = "", "8% chance to Freeze", statOrder = { 2029 }, level = 1, group = "ChanceToFreeze", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [44571480] = { "8% chance to Freeze" }, } }, - ["ChanceToFreezeUniqueQuiver5"] = { affix = "", "(7-10)% chance to Freeze", statOrder = { 2029 }, level = 1, group = "ChanceToFreeze", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [44571480] = { "(7-10)% chance to Freeze" }, } }, - ["ChanceToFreezeUniqueRing30"] = { affix = "", "10% chance to Freeze", statOrder = { 2029 }, level = 1, group = "ChanceToFreeze", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [44571480] = { "10% chance to Freeze" }, } }, - ["ChanceToFreezeUnique__1"] = { affix = "", "5% chance to Freeze", statOrder = { 2029 }, level = 1, group = "ChanceToFreeze", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [44571480] = { "5% chance to Freeze" }, } }, - ["ChanceToFreezeUnique__3"] = { affix = "", "10% chance to Freeze", statOrder = { 2029 }, level = 1, group = "ChanceToFreeze", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [44571480] = { "10% chance to Freeze" }, } }, - ["ChanceToFreezeUnique__4"] = { affix = "", "10% chance to Freeze", statOrder = { 2029 }, level = 1, group = "ChanceToFreeze", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [44571480] = { "10% chance to Freeze" }, } }, - ["ChanceToFreezeUnique__5"] = { affix = "", "20% chance to Freeze", statOrder = { 2029 }, level = 1, group = "ChanceToFreeze", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [44571480] = { "20% chance to Freeze" }, } }, - ["FrozenMonstersTakeIncreasedDamage"] = { affix = "", "Enemies Frozen by you take 20% increased Damage", statOrder = { 2461 }, level = 1, group = "FrozenMonstersTakeIncreasedDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [849085925] = { "Enemies Frozen by you take 20% increased Damage" }, } }, - ["FrozenMonstersTakeIncreasedDamageUnique__1"] = { affix = "", "Enemies Frozen by you take 20% increased Damage", statOrder = { 2461 }, level = 1, group = "FrozenMonstersTakeIncreasedDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [849085925] = { "Enemies Frozen by you take 20% increased Damage" }, } }, - ["IncreasedIntelligenceRequirementsUniqueSceptre1"] = { affix = "", "60% increased Intelligence Requirement", statOrder = { 1080 }, level = 1, group = "IncreasedIntelligenceRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [18234720] = { "60% increased Intelligence Requirement" }, } }, - ["IncreasedIntelligenceRequirementsUniqueGlovesStrInt4"] = { affix = "", "500% increased Intelligence Requirement", statOrder = { 1080 }, level = 1, group = "IncreasedIntelligenceRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [18234720] = { "500% increased Intelligence Requirement" }, } }, - ["LocalInflictHallowingFlameOnHitUnique__1"] = { affix = "", "Attacks with this weapon inflict Hallowing Flame on Hit", statOrder = { 63 }, level = 1, group = "LocalInflictHallowingFlameOnHit", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire" }, tradeHashes = { [254952564] = { "Attacks with this weapon inflict Hallowing Flame on Hit" }, } }, - ["AddedIntelligenceRequirementsUnique__1"] = { affix = "", "+257 Intelligence Requirement", statOrder = { 1079 }, level = 1, group = "IntelligenceRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2153364323] = { "+257 Intelligence Requirement" }, } }, - ["SocketedGemsHaveAddedChaosDamageUniqueBodyInt3"] = { affix = "", "Socketed Gems are Supported by Level 15 Added Chaos Damage", statOrder = { 458 }, level = 1, group = "DisplaySocketedGemsGetAddedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [411460446] = { "Socketed Gems are Supported by Level 15 Added Chaos Damage" }, } }, - ["SocketedGemsHaveAddedChaosDamageUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 10 Added Chaos Damage", statOrder = { 458 }, level = 1, group = "DisplaySocketedGemsGetAddedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [411460446] = { "Socketed Gems are Supported by Level 10 Added Chaos Damage" }, } }, - ["SocketedGemsHaveAddedChaosDamageUnique__2"] = { affix = "", "Socketed Gems are Supported by Level 25 Added Chaos Damage", statOrder = { 458 }, level = 50, group = "DisplaySocketedGemsGetAddedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [411460446] = { "Socketed Gems are Supported by Level 25 Added Chaos Damage" }, } }, - ["SocketedGemsHaveAddedChaosDamageUnique__3"] = { affix = "", "Socketed Gems are Supported by Level 29 Added Chaos Damage", statOrder = { 458 }, level = 1, group = "DisplaySocketedGemsGetAddedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [411460446] = { "Socketed Gems are Supported by Level 29 Added Chaos Damage" }, } }, - ["EnergyShieldGainedOnBlockUniqueShieldStrInt4"] = { affix = "", "Recover Energy Shield equal to 2% of Armour when you Block", statOrder = { 2468 }, level = 1, group = "EnergyShieldGainedOnBlockBasedOnArmour", weightKey = { }, weightVal = { }, modTags = { "block", "defences", "energy_shield" }, tradeHashes = { [3681057026] = { "Recover Energy Shield equal to 2% of Armour when you Block" }, } }, - ["LocalPoisonOnHit"] = { affix = "", "Poisonous Hit", statOrder = { 2469 }, level = 1, group = "LocalPoisonOnHit", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "attack", "ailment" }, tradeHashes = { [4075957192] = { "Poisonous Hit" }, } }, - ["SkeletonDurationUniqueTwoHandSword4"] = { affix = "", "(150-200)% increased Skeleton Duration", statOrder = { 1779 }, level = 1, group = "SkeletonDuration", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [1331384105] = { "(150-200)% increased Skeleton Duration" }, } }, - ["IncreasedStrengthRequirementsUniqueTwoHandSword4"] = { affix = "", "25% increased Strength Requirement", statOrder = { 1086 }, level = 1, group = "IncreasedStrengthRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [295075366] = { "25% increased Strength Requirement" }, } }, - ["ReducedStrengthRequirementsUniqueTwoHandMace5"] = { affix = "", "20% reduced Strength Requirement", statOrder = { 1086 }, level = 1, group = "IncreasedStrengthRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [295075366] = { "20% reduced Strength Requirement" }, } }, - ["ReducedStrengthRequirementUniqueBodyStr5"] = { affix = "", "30% reduced Strength Requirement", statOrder = { 1086 }, level = 1, group = "IncreasedStrengthRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [295075366] = { "30% reduced Strength Requirement" }, } }, - ["IncreasedStrengthRequirementUniqueStaff8"] = { affix = "", "40% increased Strength Requirement", statOrder = { 1086 }, level = 1, group = "IncreasedStrengthRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [295075366] = { "40% increased Strength Requirement" }, } }, - ["IncreasedStrengthREquirementsUniqueGlovesStrInt4"] = { affix = "", "500% increased Strength Requirement", statOrder = { 1086 }, level = 1, group = "IncreasedStrengthRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [295075366] = { "500% increased Strength Requirement" }, } }, - ["StrengthRequirementsUniqueOneHandMace3"] = { affix = "", "+200 Strength Requirement", statOrder = { 1085 }, level = 1, group = "StrengthRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2833226514] = { "+200 Strength Requirement" }, } }, - ["StrengthRequirementsUnique__1"] = { affix = "", "+100 Strength Requirement", statOrder = { 1085 }, level = 1, group = "StrengthRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2833226514] = { "+100 Strength Requirement" }, } }, - ["StrengthRequirementsUnique__2"] = { affix = "", "+200 Strength Requirement", statOrder = { 1085 }, level = 1, group = "StrengthRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2833226514] = { "+200 Strength Requirement" }, } }, - ["StrengthRequirementsUnique__3_"] = { affix = "", "+(500-700) Strength Requirement", statOrder = { 1085 }, level = 1, group = "StrengthRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2833226514] = { "+(500-700) Strength Requirement" }, } }, - ["StrengthRequirementsUnique__4"] = { affix = "", "+100 Strength Requirement", statOrder = { 1085 }, level = 1, group = "StrengthRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2833226514] = { "+100 Strength Requirement" }, } }, - ["IntelligenceRequirementsUniqueOneHandMace3"] = { affix = "", "+300 Intelligence Requirement", statOrder = { 1079 }, level = 1, group = "IntelligenceRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2153364323] = { "+300 Intelligence Requirement" }, } }, - ["IntelligenceRequirementsUniqueBow12"] = { affix = "", "+212 Intelligence Requirement", statOrder = { 1079 }, level = 1, group = "IntelligenceRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2153364323] = { "+212 Intelligence Requirement" }, } }, - ["IntelligenceRequirementsUnique_1"] = { affix = "", "+200 Intelligence Requirement", statOrder = { 1079 }, level = 1, group = "IntelligenceRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2153364323] = { "+200 Intelligence Requirement" }, } }, - ["DexterityRequirementsUnique__1"] = { affix = "", "+160 Dexterity Requirement", statOrder = { 1077 }, level = 1, group = "DexterityRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1133453872] = { "+160 Dexterity Requirement" }, } }, - ["StrengthIntelligenceRequirementsUnique__1"] = { affix = "", "+600 Strength and Intelligence Requirement", statOrder = { 1084 }, level = 1, group = "StrengthIntelligenceRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4272453892] = { "+600 Strength and Intelligence Requirement" }, } }, - ["SpellDamageTakenOnLowManaUniqueBodyInt4"] = { affix = "", "100% increased Spell Damage taken when on Low Mana", statOrder = { 2471 }, level = 1, group = "SpellDamageTakenOnLowMana", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHashes = { [3557561376] = { "100% increased Spell Damage taken when on Low Mana" }, } }, - ["EvasionOnFullLifeUniqueBodyDex4"] = { affix = "", "+1000 to Evasion Rating while on Full Life", statOrder = { 1546 }, level = 1, group = "EvasionOnFullLife", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [4082111882] = { "+1000 to Evasion Rating while on Full Life" }, } }, - ["EvasionOnFullLifeUnique__1_"] = { affix = "", "+1500 to Evasion Rating while on Full Life", statOrder = { 1546 }, level = 1, group = "EvasionOnFullLife", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [4082111882] = { "+1500 to Evasion Rating while on Full Life" }, } }, - ["ReflectCurses"] = { affix = "", "Hex Reflection", statOrder = { 2476 }, level = 1, group = "ReflectCurses", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [1731672673] = { "Hex Reflection" }, } }, - ["CausesBleedingUniqueTwoHandAxe4"] = { affix = "", "50% chance to cause Bleeding on Hit", statOrder = { 2482 }, level = 1, group = "CausesBleeding50PercentChance", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [20157668] = { "50% chance to cause Bleeding on Hit" }, } }, - ["CausesBleedingUniqueTwoHandAxe4Updated"] = { affix = "", "50% chance to cause Bleeding on Hit", statOrder = { 2483 }, level = 1, group = "CausesBleedingChance", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1519615863] = { "50% chance to cause Bleeding on Hit" }, } }, - ["CausesBleedingUniqueTwoHandAxe7"] = { affix = "", "25% chance to cause Bleeding on Hit", statOrder = { 2481 }, level = 1, group = "CausesBleeding25PercentChance", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1401349154] = { "25% chance to cause Bleeding on Hit" }, } }, - ["CausesBleedingUniqueTwoHandAxe7Updated"] = { affix = "", "25% chance to cause Bleeding on Hit", statOrder = { 2483 }, level = 1, group = "CausesBleedingChance", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1519615863] = { "25% chance to cause Bleeding on Hit" }, } }, - ["CausesBleedingUniqueOneHandAxe5"] = { affix = "", "25% chance to cause Bleeding on Hit", statOrder = { 2481 }, level = 1, group = "CausesBleeding25PercentChance", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1401349154] = { "25% chance to cause Bleeding on Hit" }, } }, - ["CausesBleedingUniqueOneHandAxe5Updated_"] = { affix = "", "25% chance to cause Bleeding on Hit", statOrder = { 2483 }, level = 1, group = "CausesBleedingChance", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1519615863] = { "25% chance to cause Bleeding on Hit" }, } }, - ["CausesBleedingUnique__1"] = { affix = "", "25% chance to cause Bleeding on Hit", statOrder = { 2481 }, level = 1, group = "CausesBleeding25PercentChance", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1401349154] = { "25% chance to cause Bleeding on Hit" }, } }, - ["CausesBleedingUnique__1Updated_"] = { affix = "", "25% chance to cause Bleeding on Hit", statOrder = { 2483 }, level = 1, group = "CausesBleedingChance", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1519615863] = { "25% chance to cause Bleeding on Hit" }, } }, - ["CausesBleedingUnique__2"] = { affix = "", "25% chance to cause Bleeding on Hit", statOrder = { 2481 }, level = 1, group = "CausesBleeding25PercentChance", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1401349154] = { "25% chance to cause Bleeding on Hit" }, } }, - ["CausesBleedingUnique__2Updated"] = { affix = "", "25% chance to cause Bleeding on Hit", statOrder = { 2483 }, level = 1, group = "CausesBleedingChance", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1519615863] = { "25% chance to cause Bleeding on Hit" }, } }, - ["CauseseBleedingOnCritUniqueDagger9"] = { affix = "", "50% chance to Cause Bleeding on Critical Strike", statOrder = { 7864 }, level = 1, group = "LocalCausesBleedingOnCrit", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "critical", "ailment" }, tradeHashes = { [513681673] = { "50% chance to Cause Bleeding on Critical Strike" }, } }, - ["CausesBleedingOnCritUniqueDagger11"] = { affix = "", "50% chance to cause Bleeding on Critical Strike", statOrder = { 7874 }, level = 1, group = "LocalCausesBleedingOnCrit50PercentChance", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [2743246999] = { "50% chance to cause Bleeding on Critical Strike" }, } }, - ["AttacksDealNoPhysicalDamage"] = { affix = "", "Attacks deal no Physical Damage", statOrder = { 2479 }, level = 1, group = "AttacksDealNoPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [2992817550] = { "Attacks deal no Physical Damage" }, } }, - ["GoldenLightBeam"] = { affix = "", "Golden Radiance", statOrder = { 2495 }, level = 1, group = "GoldenLightBeam", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3636414626] = { "Golden Radiance" }, } }, - ["CannotBeStunnedOnLowLife"] = { affix = "", "Cannot be Stunned when on Low Life", statOrder = { 2174 }, level = 1, group = "CannotBeStunnedOnLowLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1472543401] = { "Cannot be Stunned when on Low Life" }, } }, - ["AuraEffectUniqueShieldInt2"] = { affix = "", "20% increased effect of Non-Curse Auras from your Skills", statOrder = { 3566 }, level = 1, group = "AuraEffect", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHashes = { [1880071428] = { "20% increased effect of Non-Curse Auras from your Skills" }, } }, - ["AuraEffectOnMinionsUniqueShieldInt2"] = { affix = "", "20% increased effect of Non-Curse Auras from your Skills on your Minions", statOrder = { 2145 }, level = 1, group = "AuraEffectOnMinions", weightKey = { }, weightVal = { }, modTags = { "minion", "aura" }, tradeHashes = { [634031003] = { "20% increased effect of Non-Curse Auras from your Skills on your Minions" }, } }, - ["AuraEffectUnique__1"] = { affix = "", "20% increased effect of Non-Curse Auras from your Skills", statOrder = { 3566 }, level = 1, group = "AuraEffect", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHashes = { [1880071428] = { "20% increased effect of Non-Curse Auras from your Skills" }, } }, - ["AuraEffectUnique__2____"] = { affix = "", "10% increased effect of Non-Curse Auras from your Skills", statOrder = { 3566 }, level = 1, group = "AuraEffect", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHashes = { [1880071428] = { "10% increased effect of Non-Curse Auras from your Skills" }, } }, - ["AuraEffectOnMinionsUnique__1_"] = { affix = "", "20% increased effect of Non-Curse Auras from your Skills on your Minions", statOrder = { 2145 }, level = 1, group = "AuraEffectOnMinions", weightKey = { }, weightVal = { }, modTags = { "minion", "aura" }, tradeHashes = { [634031003] = { "20% increased effect of Non-Curse Auras from your Skills on your Minions" }, } }, - ["AreaDamageUniqueBodyDexInt1"] = { affix = "", "(40-50)% increased Area Damage", statOrder = { 2035 }, level = 1, group = "AreaDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [4251717817] = { "(40-50)% increased Area Damage" }, } }, - ["AreaDamageUniqueDescentOneHandSword1"] = { affix = "", "10% increased Area Damage", statOrder = { 2035 }, level = 1, group = "AreaDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [4251717817] = { "10% increased Area Damage" }, } }, - ["AreaDamageUniqueOneHandMace7"] = { affix = "", "(10-20)% increased Area Damage", statOrder = { 2035 }, level = 1, group = "AreaDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [4251717817] = { "(10-20)% increased Area Damage" }, } }, - ["AreaDamageImplicitMace1"] = { affix = "", "30% increased Area Damage", statOrder = { 2035 }, level = 1, group = "AreaDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [4251717817] = { "30% increased Area Damage" }, } }, - ["AreaDamageUnique__1"] = { affix = "", "30% increased Area Damage", statOrder = { 2035 }, level = 1, group = "AreaDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [4251717817] = { "30% increased Area Damage" }, } }, - ["AllDamageUniqueRing6"] = { affix = "", "(10-30)% increased Damage", statOrder = { 1191 }, level = 30, group = "AllDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2154246560] = { "(10-30)% increased Damage" }, } }, - ["AllDamageUniqueRing8"] = { affix = "", "10% increased Damage", statOrder = { 1191 }, level = 1, group = "AllDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2154246560] = { "10% increased Damage" }, } }, - ["AllDamageUniqueHelmetDexInt2"] = { affix = "", "25% reduced Damage", statOrder = { 1191 }, level = 1, group = "AllDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2154246560] = { "25% reduced Damage" }, } }, - ["AllDamageUniqueStaff4"] = { affix = "", "(40-50)% increased Global Damage", statOrder = { 1192 }, level = 1, group = "AllDamageOnWeapon", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [819529588] = { "(40-50)% increased Global Damage" }, } }, - ["AllDamageUniqueSceptre8"] = { affix = "", "(40-60)% increased Global Damage", statOrder = { 1192 }, level = 1, group = "AllDamageOnWeapon", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [819529588] = { "(40-60)% increased Global Damage" }, } }, - ["AllDamageUniqueBelt11"] = { affix = "", "10% increased Damage", statOrder = { 1191 }, level = 1, group = "AllDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2154246560] = { "10% increased Damage" }, } }, - ["AllDamageUnique__2"] = { affix = "", "(20-25)% increased Damage", statOrder = { 1191 }, level = 1, group = "AllDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2154246560] = { "(20-25)% increased Damage" }, } }, - ["AllDamageUnique__3"] = { affix = "", "(250-300)% increased Global Damage", statOrder = { 1192 }, level = 1, group = "AllDamageOnWeapon", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [819529588] = { "(250-300)% increased Global Damage" }, } }, - ["AllDamageUnique__4"] = { affix = "", "(30-40)% increased Damage", statOrder = { 1191 }, level = 1, group = "AllDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2154246560] = { "(30-40)% increased Damage" }, } }, - ["LightRadiusUniqueSceptre2"] = { affix = "", "50% increased Light Radius", statOrder = { 2500 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "50% increased Light Radius" }, } }, - ["LightRadiusUniqueBootsStrDex2"] = { affix = "", "25% reduced Light Radius", statOrder = { 2500 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "25% reduced Light Radius" }, } }, - ["LightRadiusUniqueRing9_"] = { affix = "", "31% increased Light Radius", statOrder = { 2500 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "31% increased Light Radius" }, } }, - ["LightRadiusUniqueBodyInt8"] = { affix = "", "25% increased Light Radius", statOrder = { 2500 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "25% increased Light Radius" }, } }, - ["LightRadiusUniqueBodyStrInt4"] = { affix = "", "25% reduced Light Radius", statOrder = { 2500 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "25% reduced Light Radius" }, } }, - ["LightRadiusUniqueRing11"] = { affix = "", "(10-15)% increased Light Radius", statOrder = { 2500 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "(10-15)% increased Light Radius" }, } }, - ["LightRadiusUniqueAmulet17"] = { affix = "", "(10-15)% increased Light Radius", statOrder = { 2500 }, level = 50, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "(10-15)% increased Light Radius" }, } }, - ["LightRadiusUniqueBelt6"] = { affix = "", "25% increased Light Radius", statOrder = { 2500 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "25% increased Light Radius" }, } }, - ["LightRadiusUniqueBodyStr4"] = { affix = "", "25% increased Light Radius", statOrder = { 2500 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "25% increased Light Radius" }, } }, - ["LightRadiusUniqueBootsStrDex3"] = { affix = "", "20% reduced Light Radius", statOrder = { 2500 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "20% reduced Light Radius" }, } }, - ["LightRadiusUniqueHelmetStrInt4"] = { affix = "", "40% reduced Light Radius", statOrder = { 2500 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "40% reduced Light Radius" }, } }, - ["LightRadiusUniqueBodyStrInt5"] = { affix = "", "(20-30)% increased Light Radius", statOrder = { 2500 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "(20-30)% increased Light Radius" }, } }, - ["LightRadiusUniqueRing15"] = { affix = "", "10% increased Light Radius", statOrder = { 2500 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "10% increased Light Radius" }, } }, - ["LightRadiusUniqueHelmetStrDex6"] = { affix = "", "40% reduced Light Radius", statOrder = { 2500 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "40% reduced Light Radius" }, } }, - ["LightRadiusUniqueStaff10_"] = { affix = "", "20% increased Light Radius", statOrder = { 2500 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "20% increased Light Radius" }, } }, - ["LightRadiusUniqueShieldDemigods"] = { affix = "", "20% increased Light Radius", statOrder = { 2500 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "20% increased Light Radius" }, } }, - ["LightRadiusUnique__1"] = { affix = "", "(15-20)% increased Light Radius", statOrder = { 2500 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "(15-20)% increased Light Radius" }, } }, - ["LightRadiusUnique__2"] = { affix = "", "(10-30)% increased Light Radius", statOrder = { 2500 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "(10-30)% increased Light Radius" }, } }, - ["LightRadiusUnique__3"] = { affix = "", "20% increased Light Radius", statOrder = { 2500 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "20% increased Light Radius" }, } }, - ["LightRadiusUnique__4"] = { affix = "", "20% increased Light Radius", statOrder = { 2500 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "20% increased Light Radius" }, } }, - ["LightRadiusUnique__5"] = { affix = "", "(15-25)% increased Light Radius", statOrder = { 2500 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "(15-25)% increased Light Radius" }, } }, - ["LightRadiusUnique__6"] = { affix = "", "50% reduced Light Radius", statOrder = { 2500 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "50% reduced Light Radius" }, } }, - ["LightRadiusUnique__7_"] = { affix = "", "(15-25)% increased Light Radius", statOrder = { 2500 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "(15-25)% increased Light Radius" }, } }, - ["LightRadiusUnique__8"] = { affix = "", "20% increased Light Radius", statOrder = { 2500 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "20% increased Light Radius" }, } }, - ["LightRadiusUnique__9"] = { affix = "", "25% increased Light Radius", statOrder = { 2500 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "25% increased Light Radius" }, } }, - ["LightRadiusUnique__10"] = { affix = "", "50% reduced Light Radius", statOrder = { 2500 }, level = 100, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "50% reduced Light Radius" }, } }, - ["LightRadiusUnique__11"] = { affix = "", "50% increased Light Radius", statOrder = { 2500 }, level = 92, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "50% increased Light Radius" }, } }, - ["EnfeebleOnHitUniqueShieldStr3"] = { affix = "", "25% chance to Curse Non-Cursed Enemies with Enfeeble on Hit", statOrder = { 2521 }, level = 1, group = "EnfeebleOnHitUncursed", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [3804297142] = { "25% chance to Curse Non-Cursed Enemies with Enfeeble on Hit" }, } }, - ["GroundTarOnCritTakenUniqueShieldInt2"] = { affix = "", "Spreads Tar when you take a Critical Strike", statOrder = { 2511 }, level = 1, group = "GroundTarOnCritTaken", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2283772011] = { "" }, [927458676] = { "Spreads Tar when you take a Critical Strike" }, [545338400] = { "" }, } }, - ["GroundTarOnHitTakenUnique__1"] = { affix = "", "20% chance to spread Tar when Hit", statOrder = { 6918 }, level = 1, group = "GroundTarOnHitTaken", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [1981078074] = { "20% chance to spread Tar when Hit" }, [1208949000] = { "" }, [3568390883] = { "" }, [640757053] = { "" }, } }, - ["SpellsHaveCullingStrikeUniqueDagger4"] = { affix = "", "Your Spells have Culling Strike", statOrder = { 2532 }, level = 1, group = "SpellsHaveCullingStrike", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHashes = { [3238189103] = { "Your Spells have Culling Strike" }, } }, - ["EvasionRatingPercentOnLowLifeUniqueHelmetDex4"] = { affix = "", "150% increased Global Evasion Rating when on Low Life", statOrder = { 2535 }, level = 1, group = "EvasionRatingPercentOnLowLife", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [2695354435] = { "150% increased Global Evasion Rating when on Low Life" }, } }, - ["LocalLifeLeechIsInstantUniqueClaw3"] = { affix = "", "Life Leech from Hits with this Weapon is instant", statOrder = { 2537 }, level = 1, group = "LocalLifeLeechIsInstant", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [1765389199] = { "Life Leech from Hits with this Weapon is instant" }, } }, - ["ReducedManaReservationsCostUniqueHelmetDex5"] = { affix = "", "16% increased Mana Reservation Efficiency of Skills", statOrder = { 2232 }, level = 1, group = "ReducedReservation", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1269219558] = { "16% increased Mana Reservation Efficiency of Skills" }, } }, - ["ManaReservationEfficiencyUniqueHelmetDex5_"] = { affix = "", "16% increased Mana Reservation Efficiency of Skills", statOrder = { 2228 }, level = 1, group = "ManaReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [4237190083] = { "16% increased Mana Reservation Efficiency of Skills" }, } }, - ["ManaReservationEfficiencyUnique__1"] = { affix = "", "(-15-15)% reduced Mana Reservation Efficiency of Skills", statOrder = { 2228 }, level = 1, group = "ManaReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [4237190083] = { "(-15-15)% reduced Mana Reservation Efficiency of Skills" }, } }, - ["ManaReservationEfficiencyUnique__3"] = { affix = "", "(10-20)% increased Mana Reservation Efficiency of Skills", statOrder = { 2228 }, level = 20, group = "ManaReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [4237190083] = { "(10-20)% increased Mana Reservation Efficiency of Skills" }, } }, - ["IncreasedManaReservationsCostUniqueOneHandSword11"] = { affix = "", "10% increased Mana Reservation Efficiency of Skills", statOrder = { 2232 }, level = 1, group = "ReducedReservation", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1269219558] = { "10% increased Mana Reservation Efficiency of Skills" }, } }, - ["ManaReservationEfficiencyUniqueOneHandSword11"] = { affix = "", "10% increased Mana Reservation Efficiency of Skills", statOrder = { 2228 }, level = 1, group = "ManaReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [4237190083] = { "10% increased Mana Reservation Efficiency of Skills" }, } }, - ["IncreasedManaReservationsCostUnique__1"] = { affix = "", "80% reduced Reservation Efficiency of Skills", statOrder = { 2233 }, level = 1, group = "ReducedAllReservationLegacy", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [4202507508] = { "80% reduced Reservation Efficiency of Skills" }, } }, - ["ReservationEfficiencyUnique__1_"] = { affix = "", "80% reduced Reservation Efficiency of Skills", statOrder = { 2230 }, level = 1, group = "ReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2587176568] = { "80% reduced Reservation Efficiency of Skills" }, } }, - ["IncreasedManaReservationsCostUnique__2"] = { affix = "", "20% reduced Reservation Efficiency of Skills", statOrder = { 2233 }, level = 1, group = "ReducedAllReservationLegacy", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [4202507508] = { "20% reduced Reservation Efficiency of Skills" }, } }, - ["ReservationEfficiencyUnique__2"] = { affix = "", "20% reduced Reservation Efficiency of Skills", statOrder = { 2230 }, level = 1, group = "ReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2587176568] = { "20% reduced Reservation Efficiency of Skills" }, } }, - ["ReducedManaReservationCostUnique__1"] = { affix = "", "12% increased Reservation Efficiency of Skills", statOrder = { 2233 }, level = 1, group = "ReducedAllReservationLegacy", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [4202507508] = { "12% increased Reservation Efficiency of Skills" }, } }, - ["ReservationEfficiencyUnique__3__"] = { affix = "", "12% increased Reservation Efficiency of Skills", statOrder = { 2230 }, level = 1, group = "ReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2587176568] = { "12% increased Reservation Efficiency of Skills" }, } }, - ["ReducedManaReservationCostUnique__2"] = { affix = "", "(12-20)% increased Mana Reservation Efficiency of Skills", statOrder = { 2232 }, level = 1, group = "ReducedReservation", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1269219558] = { "(12-20)% increased Mana Reservation Efficiency of Skills" }, } }, - ["ReservationEfficiencyUnique__5"] = { affix = "", "(5-10)% increased Reservation Efficiency of Skills", statOrder = { 2230 }, level = 1, group = "ReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2587176568] = { "(5-10)% increased Reservation Efficiency of Skills" }, } }, - ["ReservationEfficiencyUnique__6"] = { affix = "", "(20-35)% reduced Reservation Efficiency of Skills", statOrder = { 2230 }, level = 1, group = "ReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2587176568] = { "(20-35)% reduced Reservation Efficiency of Skills" }, } }, - ["ReservationEfficiencyUnique__7"] = { affix = "", "(20-35)% reduced Reservation Efficiency of Skills", statOrder = { 2230 }, level = 1, group = "ReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2587176568] = { "(20-35)% reduced Reservation Efficiency of Skills" }, } }, - ["ReservationEfficiencyUnique__8"] = { affix = "", "(20-35)% reduced Reservation Efficiency of Skills", statOrder = { 2230 }, level = 1, group = "ReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2587176568] = { "(20-35)% reduced Reservation Efficiency of Skills" }, } }, - ["ReservationEfficiencyUnique__9"] = { affix = "", "(20-35)% reduced Reservation Efficiency of Skills", statOrder = { 2230 }, level = 1, group = "ReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2587176568] = { "(20-35)% reduced Reservation Efficiency of Skills" }, } }, - ["ReservationEfficiencyUnique__10"] = { affix = "", "(20-35)% reduced Reservation Efficiency of Skills", statOrder = { 2230 }, level = 1, group = "ReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2587176568] = { "(20-35)% reduced Reservation Efficiency of Skills" }, } }, - ["ManaReservationEfficiencyUnique__2"] = { affix = "", "(12-20)% increased Mana Reservation Efficiency of Skills", statOrder = { 2228 }, level = 1, group = "ManaReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [4237190083] = { "(12-20)% increased Mana Reservation Efficiency of Skills" }, } }, - ["FireResistOnLowLifeUniqueShieldStrInt5"] = { affix = "", "+25% to Fire Resistance while on Low Life", statOrder = { 1627 }, level = 1, group = "FireResistOnLowLife", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [38301299] = { "+25% to Fire Resistance while on Low Life" }, } }, - ["AvoidIgniteOnLowLifeUniqueShieldStrInt5"] = { affix = "", "100% chance to Avoid being Ignited while on Low Life", statOrder = { 1847 }, level = 1, group = "AvoidIgniteOnLowLife", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [4271082039] = { "100% chance to Avoid being Ignited while on Low Life" }, } }, - ["SocketedGemsGetElementalProliferationUniqueBodyInt5"] = { affix = "", "Socketed Gems are Supported by Level 5 Elemental Proliferation", statOrder = { 466 }, level = 1, group = "DisplaySocketedGemGetsElementalProliferation", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [2929101122] = { "Socketed Gems are Supported by Level 5 Elemental Proliferation" }, } }, - ["SocketedGemsGetElementalProliferationUniqueSceptre7"] = { affix = "", "Socketed Gems are Supported by Level 20 Elemental Proliferation", statOrder = { 466 }, level = 94, group = "DisplaySocketedGemGetsElementalProliferation", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [2929101122] = { "Socketed Gems are Supported by Level 20 Elemental Proliferation" }, } }, - ["SkillEffectDurationUniqueTwoHandMace5"] = { affix = "", "15% increased Skill Effect Duration", statOrder = { 1895 }, level = 1, group = "SkillEffectDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3377888098] = { "15% increased Skill Effect Duration" }, } }, - ["ReducedSkillEffectDurationUniqueAmulet20"] = { affix = "", "(10-20)% reduced Skill Effect Duration", statOrder = { 1895 }, level = 63, group = "SkillEffectDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3377888098] = { "(10-20)% reduced Skill Effect Duration" }, } }, - ["SkillEffectDurationUnique__1"] = { affix = "", "(10-15)% increased Skill Effect Duration", statOrder = { 1895 }, level = 1, group = "SkillEffectDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3377888098] = { "(10-15)% increased Skill Effect Duration" }, } }, - ["SkillEffectDurationUnique__2_"] = { affix = "", "(-20-20)% reduced Skill Effect Duration", statOrder = { 1895 }, level = 1, group = "SkillEffectDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3377888098] = { "(-20-20)% reduced Skill Effect Duration" }, } }, - ["SkillEffectDurationUnique__3"] = { affix = "", "30% increased Skill Effect Duration", statOrder = { 1895 }, level = 75, group = "SkillEffectDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3377888098] = { "30% increased Skill Effect Duration" }, } }, - ["LocalIncreaseSocketedMovementGemLevelUniqueBodyDex5"] = { affix = "", "+5 to Level of Socketed Movement Gems", statOrder = { 183 }, level = 1, group = "LocalIncreaseSocketedMovementGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [3852526385] = { "+5 to Level of Socketed Movement Gems" }, } }, - ["MovementVelocityPerFrenzyChargeUniqueBootsStrDex2"] = { affix = "", "5% increased Movement Speed per Frenzy Charge", statOrder = { 1802 }, level = 1, group = "MovementVelocityPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [1541516339] = { "5% increased Movement Speed per Frenzy Charge" }, } }, - ["MovementVelocityPerFrenzyChargeUniqueBootsDex4"] = { affix = "", "2% increased Movement Speed per Frenzy Charge", statOrder = { 1802 }, level = 1, group = "MovementVelocityPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [1541516339] = { "2% increased Movement Speed per Frenzy Charge" }, } }, - ["MovementVelocityPerFrenzyChargeUniqueBodyDexInt3"] = { affix = "", "4% increased Movement Speed per Frenzy Charge", statOrder = { 1802 }, level = 1, group = "MovementVelocityPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [1541516339] = { "4% increased Movement Speed per Frenzy Charge" }, } }, - ["MovementVelocityPerFrenzyChargeUniqueDescentOneHandSword1_"] = { affix = "", "2% increased Movement Speed per Frenzy Charge", statOrder = { 1802 }, level = 1, group = "MovementVelocityPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [1541516339] = { "2% increased Movement Speed per Frenzy Charge" }, } }, - ["ChanceToDodgePerFrenzyChargeUniqueBootsStrDex2"] = { affix = "", "+2% chance to Suppress Spell Damage per Frenzy Charge", statOrder = { 2546 }, level = 1, group = "ChanceToDodgePerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [482967934] = { "+2% chance to Suppress Spell Damage per Frenzy Charge" }, } }, - ["EvasionRatingPerFrenzyChargeUniqueBootsStrDex2"] = { affix = "", "10% increased Evasion Rating per Frenzy Charge", statOrder = { 1556 }, level = 1, group = "IncreasedEvasionRatingPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [660404777] = { "10% increased Evasion Rating per Frenzy Charge" }, } }, - ["MaximumFrenzyChargesUniqueBootsStrDex2_"] = { affix = "", "+1 to Maximum Frenzy Charges", statOrder = { 1809 }, level = 1, group = "MaximumFrenzyCharges", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [4078695] = { "+1 to Maximum Frenzy Charges" }, } }, - ["MaximumFrenzyChargesUniqueBodyStr3"] = { affix = "", "+1 to Maximum Frenzy Charges", statOrder = { 1809 }, level = 1, group = "MaximumFrenzyCharges", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [4078695] = { "+1 to Maximum Frenzy Charges" }, } }, - ["MaximumFrenzyChargesUniqueDescentOneHandSword1"] = { affix = "", "+1 to Maximum Frenzy Charges", statOrder = { 1809 }, level = 1, group = "MaximumFrenzyCharges", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [4078695] = { "+1 to Maximum Frenzy Charges" }, } }, - ["MaximumFrenzyChargesUnique__1"] = { affix = "", "+1 to Maximum Frenzy Charges", statOrder = { 1809 }, level = 1, group = "MaximumFrenzyCharges", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [4078695] = { "+1 to Maximum Frenzy Charges" }, } }, - ["ReducedMaximumFrenzyChargesUnique__1"] = { affix = "", "-1 to Maximum Frenzy Charges", statOrder = { 1809 }, level = 1, group = "MaximumFrenzyCharges", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [4078695] = { "-1 to Maximum Frenzy Charges" }, } }, - ["ReducedMaximumFrenzyChargesUnique__2_"] = { affix = "", "-2 to Maximum Frenzy Charges", statOrder = { 1809 }, level = 1, group = "MaximumFrenzyCharges", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [4078695] = { "-2 to Maximum Frenzy Charges" }, } }, - ["WeaponPhysicalDamagePerStrength"] = { affix = "", "1% increased Area of Effect per 20 Intelligence", statOrder = { 2543 }, level = 1, group = "WeaponPhysicalDamagePerStrength", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1307972622] = { "1% increased Area of Effect per 20 Intelligence" }, } }, - ["AttackSpeedPerDexterity"] = { affix = "", "1% increased Attack Speed per 10 Dexterity", statOrder = { 2544 }, level = 1, group = "AttackSpeedPerDexterity", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [889691035] = { "1% increased Attack Speed per 10 Dexterity" }, } }, - ["IncreasedAreaOfEffectPerIntelligence"] = { affix = "", "16% increased Physical Weapon Damage per 10 Strength", statOrder = { 2545 }, level = 1, group = "IncreasedAreaOfEffectPerIntelligence", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [2594215131] = { "16% increased Physical Weapon Damage per 10 Strength" }, } }, - ["FrenzyChargeDurationUniqueBootsStrDex2"] = { affix = "", "40% reduced Frenzy Charge Duration", statOrder = { 2127 }, level = 1, group = "FrenzyChargeDuration", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [3338298622] = { "40% reduced Frenzy Charge Duration" }, } }, - ["FrenzyChargeDurationUnique__1"] = { affix = "", "20% reduced Frenzy Charge Duration", statOrder = { 2127 }, level = 1, group = "FrenzyChargeDuration", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [3338298622] = { "20% reduced Frenzy Charge Duration" }, } }, - ["AdditionalTotemsUnique__1"] = { affix = "", "+1 to maximum number of Summoned Totems", statOrder = { 2254 }, level = 1, group = "AdditionalTotems", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [429867172] = { "+1 to maximum number of Summoned Totems" }, } }, - ["TotemLifeUniqueBodyInt7"] = { affix = "", "(20-30)% increased Totem Life", statOrder = { 1774 }, level = 1, group = "IncreasedTotemLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [686254215] = { "(20-30)% increased Totem Life" }, } }, - ["TotemLifeUnique__1"] = { affix = "", "(14-20)% increased Totem Life", statOrder = { 1774 }, level = 1, group = "IncreasedTotemLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [686254215] = { "(14-20)% increased Totem Life" }, } }, - ["TotemLifeUnique__2_"] = { affix = "", "(20-30)% increased Totem Life", statOrder = { 1774 }, level = 1, group = "IncreasedTotemLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [686254215] = { "(20-30)% increased Totem Life" }, } }, - ["DisplaySocketedGemGetsSpellTotemBodyInt7"] = { affix = "", "Socketed Gems are Supported by Level 20 Spell Totem", statOrder = { 464 }, level = 1, group = "DisplaySocketedGemGetsSpellTotemLevel", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [2962840349] = { "Socketed Gems are Supported by Level 20 Spell Totem" }, } }, - ["DisplaySocketedGemGetsIncreasedDurationGlovesInt4_"] = { affix = "", "Socketed Gems are Supported by Level 10 Increased Duration", statOrder = { 460 }, level = 1, group = "DisplaySocketedGemGetsIncreasedDurationLevel", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [2091466357] = { "Socketed Gems are Supported by Level 10 Increased Duration" }, } }, - ["RandomlyCursedWhenTotemsDieUniqueBodyInt7"] = { affix = "", "Inflicts a random Hex on you when your Totems die", statOrder = { 2551 }, level = 1, group = "RandomlyCursedWhenTotemsDie", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [2918129907] = { "Inflicts a random Hex on you when your Totems die" }, } }, - ["DisplaySocketedGemGetsAddedLightningDamageGlovesDexInt3"] = { affix = "", "Socketed Gems are Supported by Level 18 Added Lightning Damage", statOrder = { 467 }, level = 1, group = "DisplaySocketedGemGetsAddedLightningDamageLevel", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [1647529598] = { "Socketed Gems are Supported by Level 18 Added Lightning Damage" }, } }, - ["DisplaySocketedGemGetsAddedLightningDamageUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 30 Added Lightning Damage", statOrder = { 467 }, level = 1, group = "DisplaySocketedGemGetsAddedLightningDamageLevel", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [1647529598] = { "Socketed Gems are Supported by Level 30 Added Lightning Damage" }, } }, - ["ShockDurationUniqueGlovesDexInt3"] = { affix = "", "100% increased Duration of Lightning Ailments", statOrder = { 7432 }, level = 1, group = "LightningAilmentDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1484471543] = { "100% increased Duration of Lightning Ailments" }, } }, - ["ShockDurationUniqueStaff8"] = { affix = "", "100% increased Duration of Lightning Ailments", statOrder = { 7432 }, level = 1, group = "LightningAilmentDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1484471543] = { "100% increased Duration of Lightning Ailments" }, } }, - ["ShockDurationUnique__1"] = { affix = "", "10000% increased Shock Duration on Enemies", statOrder = { 1857 }, level = 1, group = "ShockDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3668351662] = { "10000% increased Shock Duration on Enemies" }, } }, - ["ShockDurationUnique__2"] = { affix = "", "(1-100)% increased Duration of Lightning Ailments", statOrder = { 7432 }, level = 1, group = "LightningAilmentDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1484471543] = { "(1-100)% increased Duration of Lightning Ailments" }, } }, - ["ShockDurationUnique__3"] = { affix = "", "25% increased Shock Duration on Enemies", statOrder = { 1857 }, level = 1, group = "ShockDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3668351662] = { "25% increased Shock Duration on Enemies" }, } }, - ["IncreasedPhysicalDamageTakenUniqueHelmetStr3"] = { affix = "", "(40-50)% increased Physical Damage taken", statOrder = { 2241 }, level = 1, group = "PhysicalDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHashes = { [3853018505] = { "(40-50)% increased Physical Damage taken" }, } }, - ["IncreasedPhysicalDamageTakenUniqueTwoHandSword6"] = { affix = "", "10% increased Physical Damage taken", statOrder = { 2241 }, level = 1, group = "PhysicalDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHashes = { [3853018505] = { "10% increased Physical Damage taken" }, } }, - ["IncreasedPhysicalDamageTakenUniqueBootsDex8"] = { affix = "", "20% increased Physical Damage taken", statOrder = { 2241 }, level = 1, group = "PhysicalDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHashes = { [3853018505] = { "20% increased Physical Damage taken" }, } }, - ["IncreasedLocalAttributeRequirementsUniqueGlovesStrInt4"] = { affix = "", "500% increased Attribute Requirements", statOrder = { 1075 }, level = 1, group = "LocalAttributeRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3639275092] = { "500% increased Attribute Requirements" }, } }, - ["IncreasedLocalAttributeRequirementsUniqueGlovesDexInt1"] = { affix = "", "400% increased Attribute Requirements", statOrder = { 1075 }, level = 1, group = "LocalAttributeRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3639275092] = { "400% increased Attribute Requirements" }, } }, - ["IncreasedLocalAttributeRequirementsUnique__1"] = { affix = "", "800% increased Attribute Requirements", statOrder = { 1075 }, level = 1, group = "LocalAttributeRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3639275092] = { "800% increased Attribute Requirements" }, } }, - ["TemporalChainsOnHitUniqueGlovesInt3"] = { affix = "", "Curse Enemies with Temporal Chains on Hit", statOrder = { 2519 }, level = 1, group = "TemporalChainsOnHit", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [4139135963] = { "Curse Enemies with Temporal Chains on Hit" }, } }, - ["MeleeWeaponCriticalStrikeMultiplierUniqueHelmetStr3"] = { affix = "", "+(100-125)% to Melee Critical Strike Multiplier", statOrder = { 1502 }, level = 1, group = "MeleeWeaponCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [4237442815] = { "+(100-125)% to Melee Critical Strike Multiplier" }, } }, - ["DisablesOtherRingSlot"] = { affix = "", "Can't use other Rings", statOrder = { 1605 }, level = 1, group = "DisablesOtherRingSlot", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [64726306] = { "Can't use other Rings" }, } }, - ["GlobalItemAttributeRequirementsUniqueAmulet10"] = { affix = "", "Items and Gems have 25% reduced Attribute Requirements", statOrder = { 2552 }, level = 20, group = "GlobalItemAttributeRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [752930724] = { "Items and Gems have 25% reduced Attribute Requirements" }, } }, - ["GlobalItemAttributeRequirementsUniqueAmulet19"] = { affix = "", "Items and Gems have 10% increased Attribute Requirements", statOrder = { 2552 }, level = 45, group = "GlobalItemAttributeRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [752930724] = { "Items and Gems have 10% increased Attribute Requirements" }, } }, - ["GlobalItemAttributeRequirementsUnique__1_"] = { affix = "", "Items and Gems have 100% reduced Attribute Requirements", statOrder = { 2552 }, level = 1, group = "GlobalItemAttributeRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [752930724] = { "Items and Gems have 100% reduced Attribute Requirements" }, } }, - ["GlobalItemAttributeRequirementsUnique__2"] = { affix = "", "Items and Gems have 50% increased Attribute Requirements", statOrder = { 2552 }, level = 1, group = "GlobalItemAttributeRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [752930724] = { "Items and Gems have 50% increased Attribute Requirements" }, } }, - ["GlobalItemAttributeRequirementsUnique__3"] = { affix = "", "Items and Gems have (5-10)% reduced Attribute Requirements", statOrder = { 2552 }, level = 1, group = "GlobalItemAttributeRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [752930724] = { "Items and Gems have (5-10)% reduced Attribute Requirements" }, } }, - ["ReducedCurseEffectUniqueRing7"] = { affix = "", "50% reduced Effect of Curses on you", statOrder = { 2170 }, level = 1, group = "ReducedCurseEffect", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [3407849389] = { "50% reduced Effect of Curses on you" }, } }, - ["ReducedCurseEffectUniqueRing26"] = { affix = "", "60% reduced Effect of Curses on you", statOrder = { 2170 }, level = 1, group = "ReducedCurseEffect", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [3407849389] = { "60% reduced Effect of Curses on you" }, } }, - ["IncreasedCurseEffectUnique__1"] = { affix = "", "50% increased Effect of Curses on you", statOrder = { 2170 }, level = 1, group = "ReducedCurseEffect", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [3407849389] = { "50% increased Effect of Curses on you" }, } }, - ["ReducedCurseEffectUnique__1"] = { affix = "", "20% reduced Effect of Curses on you", statOrder = { 2170 }, level = 1, group = "ReducedCurseEffect", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [3407849389] = { "20% reduced Effect of Curses on you" }, } }, - ["ReducedCurseEffectUnique__2"] = { affix = "", "80% reduced Effect of Curses on you", statOrder = { 2170 }, level = 1, group = "ReducedCurseEffect", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [3407849389] = { "80% reduced Effect of Curses on you" }, } }, - ["ManaGainPerTargetUniqueRing7"] = { affix = "", "Gain 30 Mana per Enemy Hit with Attacks", statOrder = { 1744 }, level = 1, group = "ManaGainPerTarget", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "attack" }, tradeHashes = { [820939409] = { "Gain 30 Mana per Enemy Hit with Attacks" }, } }, - ["ManaGainPerTargetUniqueTwoHandAxe9"] = { affix = "", "Grants 30 Mana per Enemy Hit", statOrder = { 1745 }, level = 1, group = "ManaGainPerTargetLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "attack" }, tradeHashes = { [640052854] = { "Grants 30 Mana per Enemy Hit" }, } }, - ["ManaGainPerTargetUnique__1"] = { affix = "", "Grants (2-3) Mana per Enemy Hit", statOrder = { 1745 }, level = 1, group = "ManaGainPerTargetLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "attack" }, tradeHashes = { [640052854] = { "Grants (2-3) Mana per Enemy Hit" }, } }, - ["ManaGainPerTargetUnique__2"] = { affix = "", "Grants 2 Mana per Enemy Hit", statOrder = { 1745 }, level = 1, group = "ManaGainPerTargetLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "attack" }, tradeHashes = { [640052854] = { "Grants 2 Mana per Enemy Hit" }, } }, - ["ManaGainPerTargetUnique__3"] = { affix = "", "Gain (5-10) Mana per Enemy Killed", statOrder = { 1763 }, level = 40, group = "ManaGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1368271171] = { "Gain (5-10) Mana per Enemy Killed" }, } }, - ["DisplaySocketedGemGetsChancetoFleeUniqueShieldDex4"] = { affix = "", "Socketed Gems are supported by Level 10 Chance to Flee", statOrder = { 498 }, level = 1, group = "DisplaySocketedGemGetsChancetoFleeLevel", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [952060721] = { "Socketed Gems are supported by Level 10 Chance to Flee" }, } }, - ["DisplaySocketedGemGetsChanceToFleeUniqueOneHandAxe3"] = { affix = "", "Socketed Gems are supported by Level 2 Chance to Flee", statOrder = { 498 }, level = 1, group = "DisplaySocketedGemGetsChancetoFleeLevel", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [952060721] = { "Socketed Gems are supported by Level 2 Chance to Flee" }, } }, - ["EnemyCriticalStrikeMultiplierUniqueRing8"] = { affix = "", "You take 50% reduced Extra Damage from Critical Strikes", statOrder = { 1512 }, level = 1, group = "EnemyCriticalMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [3855016469] = { "You take 50% reduced Extra Damage from Critical Strikes" }, } }, - ["PlayerLightAlternateColourUniqueRing9"] = { affix = "", "Emits a golden glow", statOrder = { 2554 }, level = 1, group = "PlayerLightAlternateColour", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1252481812] = { "Emits a golden glow" }, } }, - ["ChaosResistanceOnLowLifeUniqueRing9"] = { affix = "", "+(20-25)% to Chaos Resistance when on Low Life", statOrder = { 2555 }, level = 1, group = "ChaosResistanceOnLowLife", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2366940416] = { "+(20-25)% to Chaos Resistance when on Low Life" }, } }, - ["EnemyHitsRollLowDamageUniqueRing9"] = { affix = "", "Enemy hits on you roll low Damage", statOrder = { 2553 }, level = 1, group = "EnemyHitsRollLowDamage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2482008875] = { "Enemy hits on you roll low Damage" }, } }, - ["DisplaySocketedGemGetsFasterAttackUniqueHelmetStrDex4"] = { affix = "", "Socketed Gems are Supported by Level 30 Faster Attacks", statOrder = { 469 }, level = 1, group = "DisplaySocketedGemGetsFasterAttackLevel", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [928701213] = { "Socketed Gems are Supported by Level 30 Faster Attacks" }, } }, - ["DisplaySocketedGemGetsFasterAttackUniqueHelmetStrDex4b"] = { affix = "", "Socketed Gems are Supported by Level 12 Faster Attacks", statOrder = { 469 }, level = 1, group = "DisplaySocketedGemGetsFasterAttackLevel", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [928701213] = { "Socketed Gems are Supported by Level 12 Faster Attacks" }, } }, - ["DisplaySocketedGemGetsFasterAttackUniqueRing37"] = { affix = "", "Socketed Gems are Supported by Level 13 Faster Attacks", statOrder = { 469 }, level = 1, group = "DisplaySocketedGemGetsFasterAttackLevel", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [928701213] = { "Socketed Gems are Supported by Level 13 Faster Attacks" }, } }, - ["DisplaySocketedGemsGetsFasterAttackUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 15 Faster Attacks", statOrder = { 469 }, level = 1, group = "DisplaySocketedGemGetsFasterAttackLevel", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [928701213] = { "Socketed Gems are Supported by Level 15 Faster Attacks" }, } }, - ["DisplaySocketedGemGetsMeleePhysicalDamageUniqueHelmetStrDex4"] = { affix = "", "Socketed Gems are Supported by Level 30 Melee Physical Damage", statOrder = { 468 }, level = 1, group = "DisplaySocketedGemGetsMeleePhysicalDamageLevel", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [2985291457] = { "Socketed Gems are Supported by Level 30 Melee Physical Damage" }, } }, - ["ChanceToGainEnduranceChargeOnBlockUniqueHelmetStrDex4"] = { affix = "", "20% chance to gain an Endurance Charge when you Block", statOrder = { 2124 }, level = 1, group = "ChanceToGainEnduranceChargeOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "endurance_charge" }, tradeHashes = { [417188801] = { "20% chance to gain an Endurance Charge when you Block" }, } }, - ["ChanceToGainEnduranceChargeOnBlockUniqueDescentShield1"] = { affix = "", "50% chance to gain an Endurance Charge when you Block", statOrder = { 2124 }, level = 1, group = "ChanceToGainEnduranceChargeOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "endurance_charge" }, tradeHashes = { [417188801] = { "50% chance to gain an Endurance Charge when you Block" }, } }, - ["EnemyExtraDamageRollsOnLowLifeUniqueRing9"] = { affix = "", "Damage of Enemies Hitting you is Unlucky while you are on Low Life", statOrder = { 2556 }, level = 1, group = "EnemyExtraDamageRollsOnLowLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3753748365] = { "Damage of Enemies Hitting you is Unlucky while you are on Low Life" }, } }, - ["EnemyExtraDamageRollsOnFullLifeUnique__1"] = { affix = "", "Damage of Enemies Hitting you is Unlucky while you are on Full Life", statOrder = { 6420 }, level = 68, group = "EnemyExtraDamageRollsOnFullLife", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [3629143471] = { "Damage of Enemies Hitting you is Unlucky while you are on Full Life" }, } }, - ["EnemyExtraDamageRollsOnFullLifeUnique__2"] = { affix = "", "Damage of Enemies Hitting you is Unlucky while you are on Full Life", statOrder = { 6420 }, level = 1, group = "EnemyExtraDamageRollsOnFullLife", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [3629143471] = { "Damage of Enemies Hitting you is Unlucky while you are on Full Life" }, } }, - ["EnemyExtraDamageRollsWithLightningDamageUnique__1"] = { affix = "", "Lightning Damage of Enemies Hitting you is Lucky", statOrder = { 6379 }, level = 37, group = "EnemyExtraDamageRollsWithLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [4224965099] = { "Lightning Damage of Enemies Hitting you is Lucky" }, } }, - ["EnemyExtraDamagerollsWithPhysicalDamageUnique_1"] = { affix = "", "Physical Damage of Enemies Hitting you is Unlucky", statOrder = { 6378 }, level = 98, group = "EnemyExtraDamageRollsWithPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2424163939] = { "Physical Damage of Enemies Hitting you is Unlucky" }, } }, - ["ItemDropsOnDeathUniqueAmulet12"] = { affix = "", "Item drops on death", statOrder = { 2558 }, level = 1, group = "ItemDropsOnDeath", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2524282232] = { "Item drops on death" }, } }, - ["LightningDamageOnChargeExpiryUniqueAmulet12"] = { affix = "", "Deal 1 to 1000 Lightning Damage to nearby Enemies when you lose a Power, Frenzy, or Endurance Charge", statOrder = { 2557 }, level = 1, group = "LightningDamageOnChargeExpiry", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2528932950] = { "Deal 1 to 1000 Lightning Damage to nearby Enemies when you lose a Power, Frenzy, or Endurance Charge" }, } }, - ["AttackerTakesChaosDamageUniqueBodyStrInt4"] = { affix = "", "Reflects 30 Chaos Damage to Melee Attackers", statOrder = { 2206 }, level = 1, group = "AttackerTakesChaosDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [189451991] = { "Reflects 30 Chaos Damage to Melee Attackers" }, } }, - ["IncreasedMaximumPowerChargesUniqueWand3"] = { affix = "", "+1 to Maximum Power Charges", statOrder = { 1814 }, level = 1, group = "IncreasedMaximumPowerCharges", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [227523295] = { "+1 to Maximum Power Charges" }, } }, - ["IncreasedMaximumPowerChargesUniqueStaff7"] = { affix = "", "+1 to Maximum Power Charges", statOrder = { 1814 }, level = 1, group = "IncreasedMaximumPowerCharges", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [227523295] = { "+1 to Maximum Power Charges" }, } }, - ["IncreasedMaximumPowerChargesUnique__2"] = { affix = "", "+1 to Maximum Power Charges", statOrder = { 1814 }, level = 1, group = "IncreasedMaximumPowerCharges", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [227523295] = { "+1 to Maximum Power Charges" }, } }, - ["IncreasedMaximumPowerChargesUnique__1"] = { affix = "", "+1 to Maximum Power Charges", statOrder = { 1814 }, level = 1, group = "IncreasedMaximumPowerCharges", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [227523295] = { "+1 to Maximum Power Charges" }, } }, - ["IncreasedMaximumPowerChargesUnique__3"] = { affix = "", "+2 to Maximum Power Charges", statOrder = { 1814 }, level = 1, group = "IncreasedMaximumPowerCharges", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [227523295] = { "+2 to Maximum Power Charges" }, } }, - ["IncreasedMaximumPowerChargesUnique__4"] = { affix = "", "+1 to Maximum Power Charges", statOrder = { 1814 }, level = 1, group = "IncreasedMaximumPowerCharges", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [227523295] = { "+1 to Maximum Power Charges" }, } }, - ["ReducedMaximumPowerChargesUnique__1"] = { affix = "", "-1 to Maximum Power Charges", statOrder = { 1814 }, level = 1, group = "IncreasedMaximumPowerCharges", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [227523295] = { "-1 to Maximum Power Charges" }, } }, - ["IncreasedPowerChargeDurationUniqueWand3"] = { affix = "", "15% increased Power Charge Duration", statOrder = { 2142 }, level = 1, group = "IncreasedPowerChargeDuration", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [3872306017] = { "15% increased Power Charge Duration" }, } }, - ["PowerChargeDurationUniqueAmulet14"] = { affix = "", "30% reduced Power Charge Duration", statOrder = { 2142 }, level = 1, group = "IncreasedPowerChargeDuration", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [3872306017] = { "30% reduced Power Charge Duration" }, } }, - ["IncreasedPowerChargeDurationUnique__1"] = { affix = "", "(80-100)% increased Power Charge Duration", statOrder = { 2142 }, level = 1, group = "IncreasedPowerChargeDuration", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [3872306017] = { "(80-100)% increased Power Charge Duration" }, } }, - ["IncreasedSpellDamagePerPowerChargeUniqueWand3"] = { affix = "", "25% increased Spell Damage per Power Charge", statOrder = { 2140 }, level = 1, group = "IncreasedSpellDamagePerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [827329571] = { "25% increased Spell Damage per Power Charge" }, } }, - ["IncreasedSpellDamagePerPowerChargeUniqueGlovesStrDex6"] = { affix = "", "(4-7)% increased Spell Damage per Power Charge", statOrder = { 2140 }, level = 1, group = "IncreasedSpellDamagePerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [827329571] = { "(4-7)% increased Spell Damage per Power Charge" }, } }, - ["IncreasedSpellDamagePerPowerChargeUnique__1"] = { affix = "", "(12-16)% increased Spell Damage per Power Charge", statOrder = { 2140 }, level = 1, group = "IncreasedSpellDamagePerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [827329571] = { "(12-16)% increased Spell Damage per Power Charge" }, } }, - ["ConsecratedGroundOnBlockUniqueBodyInt8"] = { affix = "", "100% chance to create Consecrated Ground when you Block", statOrder = { 2573 }, level = 1, group = "ConsecratedGroundOnBlock", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [16552558] = { "" }, [2298756203] = { "" }, [573884683] = { "100% chance to create Consecrated Ground when you Block" }, [264301062] = { "" }, } }, - ["DesecratedGroundOnBlockUniqueBodyStrInt4"] = { affix = "", "100% chance to create Desecrated Ground when you Block", statOrder = { 2574 }, level = 1, group = "DesecratedGroundOnBlock", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [3685028559] = { "100% chance to create Desecrated Ground when you Block" }, [3161959833] = { "" }, [2544633803] = { "" }, [800117438] = { "" }, } }, - ["DisableChestSlot"] = { affix = "", "Can't use Chest armour", statOrder = { 2583 }, level = 1, group = "DisableChestSlot", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4007482102] = { "Can't use Chest armour" }, } }, - ["LocalIncreaseSocketedElementalGemUniqueGlovesInt6"] = { affix = "", "+1 to Level of Socketed Elemental Gems", statOrder = { 213 }, level = 1, group = "LocalIncreaseSocketedElementalGem", weightKey = { }, weightVal = { }, modTags = { "elemental", "gem" }, tradeHashes = { [3571342795] = { "+1 to Level of Socketed Elemental Gems" }, } }, - ["LocalIncreaseSocketedElementalGemUnique___1"] = { affix = "", "+2 to Level of Socketed Elemental Gems", statOrder = { 213 }, level = 50, group = "LocalIncreaseSocketedElementalGem", weightKey = { }, weightVal = { }, modTags = { "elemental", "gem" }, tradeHashes = { [3571342795] = { "+2 to Level of Socketed Elemental Gems" }, } }, - ["EnergyShieldGainedFromEnemyDeathUniqueGlovesInt6"] = { affix = "", "Gain (15-20) Energy Shield per Enemy Killed", statOrder = { 2571 }, level = 1, group = "EnergyShieldGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2528955616] = { "Gain (15-20) Energy Shield per Enemy Killed" }, } }, - ["EnergyShieldGainedFromEnemyDeathUniqueHelmetDexInt3"] = { affix = "", "Gain (10-15) Energy Shield per Enemy Killed", statOrder = { 2571 }, level = 1, group = "EnergyShieldGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2528955616] = { "Gain (10-15) Energy Shield per Enemy Killed" }, } }, - ["EnergyShieldGainedFromEnemyDeathUnique__1"] = { affix = "", "Gain (15-25) Energy Shield per Enemy Hit with Attacks", statOrder = { 1747 }, level = 1, group = "EnergyShieldGainPerTarget", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield", "attack" }, tradeHashes = { [211381198] = { "Gain (15-25) Energy Shield per Enemy Hit with Attacks" }, } }, - ["IncreasedClawDamageOnLowLifeUniqueClaw4"] = { affix = "", "100% increased Claw Physical Damage when on Low Life", statOrder = { 2584 }, level = 1, group = "IncreasedClawDamageOnLowLife", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1081444608] = { "100% increased Claw Physical Damage when on Low Life" }, } }, - ["IncreasedClawDamageOnLowLifeUnique__1__"] = { affix = "", "200% increased Damage with Claws while on Low Life", statOrder = { 5788 }, level = 1, group = "IncreasedClawAllDamageOnLowLife", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1629782265] = { "200% increased Damage with Claws while on Low Life" }, } }, - ["IncreasedAccuracyWhenOnLowLifeUniqueClaw4"] = { affix = "", "100% increased Accuracy Rating when on Low Life", statOrder = { 2585 }, level = 1, group = "IncreasedAccuracyWhenOnLowLife", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [347697569] = { "100% increased Accuracy Rating when on Low Life" }, } }, - ["IncreasedAttackSpeedWhenOnLowLifeUniqueClaw4"] = { affix = "", "25% increased Attack Speed when on Low Life", statOrder = { 1221 }, level = 1, group = "IncreasedAttackSpeedWhenOnLowLife", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [1921572790] = { "25% increased Attack Speed when on Low Life" }, } }, - ["IncreasedAttackSpeedWhenOnLowLifeUnique__1"] = { affix = "", "25% increased Attack Speed when on Low Life", statOrder = { 1221 }, level = 1, group = "IncreasedAttackSpeedWhenOnLowLife", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [1921572790] = { "25% increased Attack Speed when on Low Life" }, } }, - ["IncreasedAttackSpeedWhenOnLowLifeUniqueDescentHelmet1"] = { affix = "", "30% increased Attack Speed when on Low Life", statOrder = { 1221 }, level = 1, group = "IncreasedAttackSpeedWhenOnLowLife", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [1921572790] = { "30% increased Attack Speed when on Low Life" }, } }, - ["ReducedProjectileDamageUniqueAmulet12"] = { affix = "", "40% reduced Projectile Damage", statOrder = { 1996 }, level = 1, group = "ProjectileDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [1839076647] = { "40% reduced Projectile Damage" }, } }, - ["ReducedProjectileDamageTakenUniqueAmulet12"] = { affix = "", "20% reduced Damage taken from Projectile Hits", statOrder = { 2749 }, level = 1, group = "ProjectileDamageTaken", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1425651005] = { "20% reduced Damage taken from Projectile Hits" }, } }, - ["NoItemRarity"] = { affix = "", "You cannot increase the Rarity of Items found", statOrder = { 2549 }, level = 1, group = "NoItemRarity", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [993866933] = { "You cannot increase the Rarity of Items found" }, } }, - ["NoItemQuantity"] = { affix = "", "You cannot increase the Quantity of Items found", statOrder = { 2550 }, level = 1, group = "NoItemQuantity", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3778266957] = { "You cannot increase the Quantity of Items found" }, } }, - ["CannotDieToElementalReflect"] = { affix = "", "You cannot be killed by reflected Elemental Damage", statOrder = { 2676 }, level = 1, group = "CannotDieToElementalReflect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2776725787] = { "You cannot be killed by reflected Elemental Damage" }, } }, - ["MeleeAttacksUsableWithoutManaUniqueOneHandAxe1"] = { affix = "", "Insufficient Mana doesn't prevent your Melee Attacks", statOrder = { 2995 }, level = 1, group = "MeleeAttacksUsableWithoutMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "attack" }, tradeHashes = { [1852317988] = { "Insufficient Mana doesn't prevent your Melee Attacks" }, } }, - ["MeleeAttacksUsableWithoutManaUnique__1"] = { affix = "", "Insufficient Mana doesn't prevent your Melee Attacks", statOrder = { 2995 }, level = 1, group = "MeleeAttacksUsableWithoutMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "attack" }, tradeHashes = { [1852317988] = { "Insufficient Mana doesn't prevent your Melee Attacks" }, } }, - ["HybridStrDex"] = { affix = "", "+(16-24) to Strength and Dexterity", statOrder = { 1180 }, level = 20, group = "HybridStrDex", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [538848803] = { "+(16-24) to Strength and Dexterity" }, } }, - ["HybridStrInt"] = { affix = "", "+(16-24) to Strength and Intelligence", statOrder = { 1181 }, level = 20, group = "HybridStrInt", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1535626285] = { "+(16-24) to Strength and Intelligence" }, } }, - ["HybridDexInt"] = { affix = "", "+(16-24) to Dexterity and Intelligence", statOrder = { 1182 }, level = 20, group = "HybridDexInt", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [2300185227] = { "+(16-24) to Dexterity and Intelligence" }, } }, - ["HybridStrDexUnique__1"] = { affix = "", "+(30-50) to Strength and Dexterity", statOrder = { 1180 }, level = 1, group = "HybridStrDex", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [538848803] = { "+(30-50) to Strength and Dexterity" }, } }, - ["IncreasedMeleeWeaponAndUnarmedRangeUniqueAmulet13"] = { affix = "", "+0.2 metres to Melee Strike Range", statOrder = { 2534 }, level = 1, group = "MeleeWeaponAndUnarmedRange", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2264295449] = { "+0.2 metres to Melee Strike Range" }, } }, - ["LocalIncreasedMeleeWeaponRangeUniqueTwoHandAxe5"] = { affix = "", "+0.2 metres to Weapon Range", statOrder = { 2745 }, level = 1, group = "LocalMeleeWeaponRange", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [350598685] = { "+0.2 metres to Weapon Range" }, } }, - ["LocalIncreasedMeleeWeaponRangeUniqueDescentStaff1"] = { affix = "", "+0.2 metres to Weapon Range", statOrder = { 2745 }, level = 1, group = "LocalMeleeWeaponRange", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [350598685] = { "+0.2 metres to Weapon Range" }, } }, - ["LocalIncreasedMeleeWeaponRangeUniqueTwoHandAxe7_"] = { affix = "", "+1 metres to Weapon Range", statOrder = { 2745 }, level = 1, group = "LocalMeleeWeaponRange", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [350598685] = { "+1 metres to Weapon Range" }, } }, - ["LocalIncreasedMeleeWeaponRangeUnique__1"] = { affix = "", "+0.2 metres to Weapon Range", statOrder = { 2745 }, level = 1, group = "LocalMeleeWeaponRange", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [350598685] = { "+0.2 metres to Weapon Range" }, } }, - ["LocalIncreasedMeleeWeaponRangeUnique___2"] = { affix = "", "+0.2 metres to Weapon Range", statOrder = { 2745 }, level = 1, group = "LocalMeleeWeaponRange", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [350598685] = { "+0.2 metres to Weapon Range" }, } }, - ["LocalIncreasedMeleeWeaponRangeEssence1"] = { affix = "", "+0.2 metres to Weapon Range", statOrder = { 2745 }, level = 1, group = "LocalMeleeWeaponRange", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [350598685] = { "+0.2 metres to Weapon Range" }, } }, - ["EnduranceChargeDurationUniqueAmulet14"] = { affix = "", "30% reduced Endurance Charge Duration", statOrder = { 2125 }, level = 1, group = "EnduranceChargeDuration", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHashes = { [1170174456] = { "30% reduced Endurance Charge Duration" }, } }, - ["EnduranceChargeDurationUniqueBodyStrInt4"] = { affix = "", "30% increased Endurance Charge Duration", statOrder = { 2125 }, level = 1, group = "EnduranceChargeDuration", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHashes = { [1170174456] = { "30% increased Endurance Charge Duration" }, } }, - ["FrenzyChargeOnKillChanceUniqueAmulet15"] = { affix = "", "10% chance to gain a Frenzy Charge on Kill", statOrder = { 2631 }, level = 20, group = "FrenzyChargeOnKillChance", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [1826802197] = { "10% chance to gain a Frenzy Charge on Kill" }, } }, - ["FrenzyChargeOnKillChanceUniqueBootsDex4"] = { affix = "", "(20-30)% chance to gain a Frenzy Charge on Kill", statOrder = { 2631 }, level = 1, group = "FrenzyChargeOnKillChance", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [1826802197] = { "(20-30)% chance to gain a Frenzy Charge on Kill" }, } }, - ["FrenzyChargeOnKillChanceUniqueDescentOneHandSword1"] = { affix = "", "33% chance to gain a Frenzy Charge on Kill", statOrder = { 2631 }, level = 1, group = "FrenzyChargeOnKillChance", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [1826802197] = { "33% chance to gain a Frenzy Charge on Kill" }, } }, - ["FrenzyChargeOnKillChanceUnique__1"] = { affix = "", "15% chance to gain a Frenzy Charge on Kill", statOrder = { 2631 }, level = 1, group = "FrenzyChargeOnKillChance", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [1826802197] = { "15% chance to gain a Frenzy Charge on Kill" }, } }, - ["FrenzyChargeOnKillChanceUnique__2"] = { affix = "", "25% chance to gain a Frenzy Charge on Kill", statOrder = { 2631 }, level = 1, group = "FrenzyChargeOnKillChance", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [1826802197] = { "25% chance to gain a Frenzy Charge on Kill" }, } }, - ["FrenzyChargeOnKillChanceProphecy"] = { affix = "", "30% chance to gain a Frenzy Charge on Kill", statOrder = { 2631 }, level = 1, group = "FrenzyChargeOnKillChance", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [1826802197] = { "30% chance to gain a Frenzy Charge on Kill" }, } }, - ["PowerChargeOnKillChanceUniqueAmulet15"] = { affix = "", "10% chance to gain a Power Charge on Kill", statOrder = { 2633 }, level = 1, group = "PowerChargeOnKillChance", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [2483795307] = { "10% chance to gain a Power Charge on Kill" }, } }, - ["PowerChargeOnKillChanceUniqueDescentDagger1"] = { affix = "", "15% chance to gain a Power Charge on Kill", statOrder = { 2633 }, level = 1, group = "PowerChargeOnKillChance", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [2483795307] = { "15% chance to gain a Power Charge on Kill" }, } }, - ["PowerChargeOnKillChanceUniqueUniqueShieldInt3"] = { affix = "", "10% chance to gain a Power Charge on Kill", statOrder = { 2633 }, level = 1, group = "PowerChargeOnKillChance", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [2483795307] = { "10% chance to gain a Power Charge on Kill" }, } }, - ["PowerChargeOnKillChanceUnique__1"] = { affix = "", "(25-35)% chance to gain a Power Charge on Kill", statOrder = { 2633 }, level = 1, group = "PowerChargeOnKillChance", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [2483795307] = { "(25-35)% chance to gain a Power Charge on Kill" }, } }, - ["PowerChargeOnKillChanceProphecy_"] = { affix = "", "30% chance to gain a Power Charge on Kill", statOrder = { 2633 }, level = 1, group = "PowerChargeOnKillChance", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [2483795307] = { "30% chance to gain a Power Charge on Kill" }, } }, - ["EnduranceChargeOnKillChanceProphecy"] = { affix = "", "30% chance to gain an Endurance Charge on Kill", statOrder = { 2629 }, level = 1, group = "EnduranceChargeOnKillChance", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHashes = { [1054322244] = { "30% chance to gain an Endurance Charge on Kill" }, } }, - ["EnduranceChargeOnPowerChargeExpiryUniqueAmulet14"] = { affix = "", "Gain an Endurance Charge when you lose a Power Charge", statOrder = { 2636 }, level = 1, group = "EnduranceChargeOnPowerChargeExpiry", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHashes = { [1791875585] = { "Gain an Endurance Charge when you lose a Power Charge" }, } }, - ["ChillAndFreezeBasedOffEnergyShieldBelt5Unique"] = { affix = "", "Chill Effect and Freeze Duration on you are based on 100% of Energy Shield", statOrder = { 2591 }, level = 70, group = "ChillAndFreezeDurationBasedOnEnergyShield", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1194648995] = { "Chill Effect and Freeze Duration on you are based on 100% of Energy Shield" }, } }, - ["MeleeDamageOnFullLifeUniqueAmulet13"] = { affix = "", "60% increased Melee Damage when on Full Life", statOrder = { 2638 }, level = 1, group = "MeleeDamageOnFullLife", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [3579807004] = { "60% increased Melee Damage when on Full Life" }, } }, - ["ConsecrateOnCritChanceToCreateUniqueRing11"] = { affix = "", "Creates Consecrated Ground on Critical Strike", statOrder = { 2639 }, level = 1, group = "ConsecrateOnCritChanceToCreate", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [3195625581] = { "Creates Consecrated Ground on Critical Strike" }, } }, - ["ProjectileSpeedPerFrenzyChargeUniqueAmulet15"] = { affix = "", "5% increased Projectile Speed per Frenzy Charge", statOrder = { 2640 }, level = 1, group = "ProjectileSpeedPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [3159161267] = { "5% increased Projectile Speed per Frenzy Charge" }, } }, - ["ProjectileDamagePerPowerChargeUniqueAmulet15"] = { affix = "", "5% increased Projectile Damage per Power Charge", statOrder = { 2641 }, level = 1, group = "ProjectileDamagePerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [3816512110] = { "5% increased Projectile Damage per Power Charge" }, } }, - ["RightRingSlotNoManaRegenUniqueRing13"] = { affix = "", "Right ring slot: You cannot Regenerate Mana", statOrder = { 2648 }, level = 38, group = "RightRingSlotNoManaRegen", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [783864527] = { "Right ring slot: You cannot Regenerate Mana" }, } }, - ["RightRingSlotEnergyShieldRegenUniqueRing13"] = { affix = "", "Right ring slot: Regenerate 6% of Energy Shield per second", statOrder = { 2649 }, level = 38, group = "RightRingSlotEnergyShieldRegen", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3676958605] = { "Right ring slot: Regenerate 6% of Energy Shield per second" }, } }, - ["LeftRingSlotManaRegenUniqueRing13"] = { affix = "", "Left ring slot: 100% increased Mana Regeneration Rate", statOrder = { 2660 }, level = 1, group = "LeftRingSlotManaRegen", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [195090426] = { "Left ring slot: 100% increased Mana Regeneration Rate" }, } }, - ["LeftRingSlotNoEnergyShieldRegenUniqueRing13"] = { affix = "", "Left ring slot: You cannot Recharge or Regenerate Energy Shield", statOrder = { 2653 }, level = 1, group = "LeftRingSlotNoEnergyShieldRegen", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4263540840] = { "Left ring slot: You cannot Recharge or Regenerate Energy Shield" }, } }, - ["EnergyShieldRegenerationUnique__1"] = { affix = "", "Regenerate 1% of Energy Shield per second", statOrder = { 2646 }, level = 1, group = "EnergyShieldRegenerationPerMinute", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3594640492] = { "Regenerate 1% of Energy Shield per second" }, } }, - ["EnergyShieldRegenerationUnique__2"] = { affix = "", "Regenerate 1% of Energy Shield per second", statOrder = { 2646 }, level = 1, group = "EnergyShieldRegenerationPerMinute", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3594640492] = { "Regenerate 1% of Energy Shield per second" }, } }, - ["EnergyShieldRegenerationUnique__3"] = { affix = "", "Regenerate 2% of Energy Shield per second", statOrder = { 2646 }, level = 1, group = "EnergyShieldRegenerationPerMinute", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3594640492] = { "Regenerate 2% of Energy Shield per second" }, } }, - ["FlatEnergyShieldRegenerationUnique__1"] = { affix = "", "Regenerate (80-100) Energy Shield per second", statOrder = { 2645 }, level = 1, group = "FlatEnergyShieldRegenerationPerMinute", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1330109706] = { "Regenerate (80-100) Energy Shield per second" }, } }, - ["NoEnergyShieldRegenerationUnique__1"] = { affix = "", "Immortal Ambition", statOrder = { 10816 }, level = 60, group = "SoulTether", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "defences", "energy_shield" }, tradeHashes = { [687223267] = { "Immortal Ambition" }, } }, - ["LifeLeechAnyDamageUnique__1"] = { affix = "", "1% of Damage Leeched as Life", statOrder = { 1661 }, level = 1, group = "LifeLeechAnyDamage", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [4069440714] = { "1% of Damage Leeched as Life" }, } }, - ["KilledMonsterItemRarityOnCritUniqueRing11"] = { affix = "", "(40-50)% increased Rarity of Items Dropped by Enemies killed with a Critical Strike", statOrder = { 2642 }, level = 1, group = "KilledMonsterItemRarityOnCrit", weightKey = { }, weightVal = { }, modTags = { "critical", "drop" }, tradeHashes = { [21824003] = { "(40-50)% increased Rarity of Items Dropped by Enemies killed with a Critical Strike" }, } }, - ["OnslaughtBuffOnKillUniqueRing12"] = { affix = "", "You gain Onslaught for 4 seconds on Kill", statOrder = { 2643 }, level = 58, group = "OnslaughtBuffOnKill", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1195849808] = { "You gain Onslaught for 4 seconds on Kill" }, } }, - ["OnslaughtBuffOnKillUniqueDagger12"] = { affix = "", "You gain Onslaught for 3 seconds on Kill", statOrder = { 2643 }, level = 1, group = "OnslaughtBuffOnKill", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1195849808] = { "You gain Onslaught for 3 seconds on Kill" }, } }, - ["AttackAndCastSpeedPerFrenzyChargeUniqueBootsDex4"] = { affix = "", "4% reduced Attack and Cast Speed per Frenzy Charge", statOrder = { 2048 }, level = 1, group = "AttackAndCastSpeedPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed" }, tradeHashes = { [269590092] = { "4% reduced Attack and Cast Speed per Frenzy Charge" }, } }, - ["LifeRegenerationPerFrenzyChargeUniqueBootsDex4"] = { affix = "", "Regenerate 0.8% of Life per second per Frenzy Charge", statOrder = { 2628 }, level = 1, group = "LifeRegenerationPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2828673491] = { "Regenerate 0.8% of Life per second per Frenzy Charge" }, } }, - ["EnemiesOnLowLifeTakeMoreDamagePerFrenzyChargeUniqueBootsDex4"] = { affix = "", "(20-30)% increased Damage per Frenzy Charge with Hits against Enemies on Low Life", statOrder = { 2810 }, level = 1, group = "EnemiesOnLowLifeTakeMoreDamagePerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [1696792323] = { "(20-30)% increased Damage per Frenzy Charge with Hits against Enemies on Low Life" }, } }, - ["AvoidIgniteUniqueOneHandSword4"] = { affix = "", "Cannot be Ignited", statOrder = { 1839 }, level = 1, group = "CannotBeIgnited", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [331731406] = { "Cannot be Ignited" }, } }, - ["IncreasedMovementVelictyWhileCursedUniqueOneHandSword4"] = { affix = "", "30% increased Movement Speed while Cursed", statOrder = { 2627 }, level = 1, group = "MovementVelocityWhileCursed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [3988943320] = { "30% increased Movement Speed while Cursed" }, } }, - ["ShieldBlockChanceUniqueAmulet16"] = { affix = "", "+10% Chance to Block Attack Damage while holding a Shield", statOrder = { 1139 }, level = 1, group = "GlobalShieldBlockChanceIncrease", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [4061558269] = { "+10% Chance to Block Attack Damage while holding a Shield" }, } }, - ["ReflectDamageToAttackersOnBlockUniqueAmulet16"] = { affix = "", "Reflects 240 to 300 Physical Damage to Attackers on Block", statOrder = { 2586 }, level = 1, group = "ReflectDamageToAttackersOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "physical_damage", "damage", "physical" }, tradeHashes = { [1445684883] = { "Reflects 240 to 300 Physical Damage to Attackers on Block" }, } }, - ["ReflectDamageToAttackersOnBlockUniqueDescentStaff1"] = { affix = "", "Reflects 8 to 14 Physical Damage to Attackers on Block", statOrder = { 2586 }, level = 1, group = "ReflectDamageToAttackersOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "physical_damage", "damage", "physical" }, tradeHashes = { [1445684883] = { "Reflects 8 to 14 Physical Damage to Attackers on Block" }, } }, - ["ReflectDamageToAttackersOnBlockUniqueDescentShield1"] = { affix = "", "Reflects 4 to 8 Physical Damage to Attackers on Block", statOrder = { 2586 }, level = 1, group = "ReflectDamageToAttackersOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "physical_damage", "damage", "physical" }, tradeHashes = { [1445684883] = { "Reflects 4 to 8 Physical Damage to Attackers on Block" }, } }, - ["ReflectDamageToAttackersOnBlockUniqueShieldDex5"] = { affix = "", "Reflects 1000 to 10000 Physical Damage to Attackers on Block", statOrder = { 2586 }, level = 1, group = "ReflectDamageToAttackersOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "physical_damage", "damage", "physical" }, tradeHashes = { [1445684883] = { "Reflects 1000 to 10000 Physical Damage to Attackers on Block" }, } }, - ["ReflectDamageToAttackersOnBlockUniqueStaff9"] = { affix = "", "Reflects (22-44) Physical Damage to Attackers on Block", statOrder = { 2586 }, level = 1, group = "ReflectDamageToAttackersOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "physical_damage", "damage", "physical" }, tradeHashes = { [1445684883] = { "Reflects (22-44) Physical Damage to Attackers on Block" }, } }, - ["GainLifeOnBlockUniqueAmulet16"] = { affix = "", "(34-48) Life gained when you Block", statOrder = { 1757 }, level = 1, group = "GainLifeOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "resource", "life" }, tradeHashes = { [762600725] = { "(34-48) Life gained when you Block" }, } }, - ["GainManaOnBlockUniqueAmulet16"] = { affix = "", "(18-24) Mana gained when you Block", statOrder = { 1758 }, level = 57, group = "GainManaOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "resource", "mana" }, tradeHashes = { [2122183138] = { "(18-24) Mana gained when you Block" }, } }, - ["GainManaOnBlockUnique__1"] = { affix = "", "(30-50) Mana gained when you Block", statOrder = { 1758 }, level = 1, group = "GainManaOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "resource", "mana" }, tradeHashes = { [2122183138] = { "(30-50) Mana gained when you Block" }, } }, - ["ZombieLifeUniqueSceptre3"] = { affix = "", "Raised Zombies have +5000 to maximum Life", statOrder = { 2589 }, level = 1, group = "ZombieLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, tradeHashes = { [4116579804] = { "Raised Zombies have +5000 to maximum Life" }, } }, - ["ZombieDamageUniqueSceptre3"] = { affix = "", "Raised Zombies deal (100-125)% more Physical Damage", statOrder = { 10756 }, level = 1, group = "ZombieDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "minion" }, tradeHashes = { [568070507] = { "Raised Zombies deal (100-125)% more Physical Damage" }, } }, - ["ZombieChaosElementalResistsUniqueSceptre3"] = { affix = "", "Raised Zombies have +(25-30)% to all Resistances", statOrder = { 2590 }, level = 1, group = "ZombieChaosElementalResists", weightKey = { }, weightVal = { }, modTags = { "elemental", "chaos", "resistance", "minion" }, tradeHashes = { [3150000576] = { "Raised Zombies have +(25-30)% to all Resistances" }, } }, - ["ZombieSizeUniqueSceptre3_"] = { affix = "", "25% increased Raised Zombie Size", statOrder = { 2680 }, level = 1, group = "ZombieSize", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [3563667308] = { "25% increased Raised Zombie Size" }, } }, - ["ZombiesExplodeEnemiesOnHitUniqueSceptre3"] = { affix = "", "Enemies Killed by Zombies' Hits Explode, dealing 50% of their Life as Fire Damage", statOrder = { 2682 }, level = 1, group = "ZombiesExplodeEnemiesOnHit", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "minion" }, tradeHashes = { [2857427872] = { "Enemies Killed by Zombies' Hits Explode, dealing 50% of their Life as Fire Damage" }, } }, - ["NumberOfZombiesSummonedPercentageUniqueSceptre3"] = { affix = "", "50% reduced maximum number of Raised Zombies", statOrder = { 2588 }, level = 1, group = "NumberOfZombiesSummonedPercentage", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [4041805509] = { "50% reduced maximum number of Raised Zombies" }, } }, - ["IncreasedIntelligencePerUniqueUniqueRing14"] = { affix = "", "2% increased Intelligence for each Unique Item Equipped", statOrder = { 2592 }, level = 1, group = "IncreasedIntelligencePerUnique", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4207939995] = { "2% increased Intelligence for each Unique Item Equipped" }, } }, - ["IncreasedChanceForMonstersToDropWisdomScrollsUniqueRing14"] = { affix = "", "3% chance for Slain monsters to drop an additional Scroll of Wisdom", statOrder = { 2595 }, level = 1, group = "IncreasedChanceForMonstersToDropWisdomScrolls", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2920230984] = { "3% chance for Slain monsters to drop an additional Scroll of Wisdom" }, } }, - ["ConvertColdToFireUniqueRing15"] = { affix = "", "40% of Cold Damage Converted to Fire Damage", statOrder = { 1968 }, level = 1, group = "ConvertColdToFire", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "cold" }, tradeHashes = { [723832351] = { "40% of Cold Damage Converted to Fire Damage" }, } }, - ["IgnitedEnemiesTurnToAshUniqueRing15"] = { affix = "", "Ignited Enemies Killed by your Hits are destroyed", statOrder = { 2593 }, level = 1, group = "IgnitedEnemiesTurnToAsh", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3173052379] = { "Ignited Enemies Killed by your Hits are destroyed" }, } }, - ["UndyingRageOnCritUniqueTwoHandMace6"] = { affix = "", "You gain Onslaught for 4 seconds on Critical Strike", statOrder = { 2679 }, level = 1, group = "UndyingRageOnCrit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1055188639] = { "You gain Onslaught for 4 seconds on Critical Strike" }, } }, - ["NoBonusesFromCriticalStrikes"] = { affix = "", "Your Critical Strikes do not deal extra Damage", statOrder = { 2678 }, level = 1, group = "NoBonusesFromCriticalStrikes", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [4058681894] = { "Your Critical Strikes do not deal extra Damage" }, } }, - ["SpellDamageModifiersApplyToAttackDamageUniqueHelmetInt7"] = { affix = "", "Increases and Reductions to Spell Damage also apply to Attacks at 150% of their value", statOrder = { 2687 }, level = 1, group = "SpellDamageModifiersApplyToAttackDamage150Percent", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [185598681] = { "Increases and Reductions to Spell Damage also apply to Attacks at 150% of their value" }, } }, - ["ConvertFireToChaosUniqueBodyInt4"] = { affix = "", "15% of Fire Damage Converted to Chaos Damage", statOrder = { 1971 }, level = 1, group = "ConvertFireToChaos60PercentValue", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "fire", "chaos" }, tradeHashes = { [3901645945] = { "15% of Fire Damage Converted to Chaos Damage" }, } }, - ["ConvertFireToChaosUniqueBodyInt4Updated"] = { affix = "", "15% of Fire Damage Converted to Chaos Damage", statOrder = { 1970 }, level = 1, group = "ConvertFireToChaos", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "fire", "chaos" }, tradeHashes = { [2731249891] = { "15% of Fire Damage Converted to Chaos Damage" }, } }, - ["ConvertFireToChaosUniqueDagger10"] = { affix = "", "30% of Fire Damage Converted to Chaos Damage", statOrder = { 1971 }, level = 1, group = "ConvertFireToChaos60PercentValue", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "fire", "chaos" }, tradeHashes = { [3901645945] = { "30% of Fire Damage Converted to Chaos Damage" }, } }, - ["ConvertFireToChaosUniqueDagger10Updated"] = { affix = "", "30% of Fire Damage Converted to Chaos Damage", statOrder = { 1970 }, level = 1, group = "ConvertFireToChaos", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "fire", "chaos" }, tradeHashes = { [2731249891] = { "30% of Fire Damage Converted to Chaos Damage" }, } }, - ["MovementVelicityPerEvasionUniqueBodyDex6"] = { affix = "", "1% increased Movement Speed per 600 Evasion Rating, up to 75%", statOrder = { 2675 }, level = 1, group = "MovementVelicityPerEvasion", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2591020064] = { "1% increased Movement Speed per 600 Evasion Rating, up to 75%" }, } }, - ["PhysicalDamageCanChillUniqueOneHandAxe1"] = { affix = "", "Your Physical Damage can Chill", statOrder = { 2879 }, level = 1, group = "PhysicalDamageCanChill", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2227042420] = { "Your Physical Damage can Chill" }, } }, - ["PhysicalDamageCanChillUniqueDescentOneHandAxe1"] = { affix = "", "Your Physical Damage can Chill", statOrder = { 2879 }, level = 1, group = "PhysicalDamageCanChill", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2227042420] = { "Your Physical Damage can Chill" }, } }, - ["ItemQuantityWhenFrozenUniqueBow9"] = { affix = "", "15% increased Quantity of Items Dropped by Slain Frozen Enemies", statOrder = { 2694 }, level = 1, group = "ItemQuantityWhenFrozen", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3304763863] = { "15% increased Quantity of Items Dropped by Slain Frozen Enemies" }, } }, - ["ItemRarityWhenShockedUniqueBow9"] = { affix = "", "30% increased Rarity of Items Dropped by Slain Shocked Enemies", statOrder = { 2696 }, level = 1, group = "ItemRarityWhenShocked", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3188291252] = { "30% increased Rarity of Items Dropped by Slain Shocked Enemies" }, } }, - ["ManaLeechPerPowerChargeUniqueBelt5"] = { affix = "", "1% of Physical Attack Damage Leeched as Mana per Power Charge", statOrder = { 1719 }, level = 88, group = "ManaLeechPerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [3394240821] = { "1% of Physical Attack Damage Leeched as Mana per Power Charge" }, } }, - ["ManaLeechPermyriadPerPowerChargeUniqueBelt5_"] = { affix = "", "0.2% of Attack Damage Leeched as Mana per Power Charge", statOrder = { 8183 }, level = 88, group = "ManaLeechPermyriadPerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [2628721358] = { "0.2% of Attack Damage Leeched as Mana per Power Charge" }, } }, - ["LocalChaosDamageUniqueOneHandSword3"] = { affix = "", "Adds (49-98) to (101-140) Chaos Damage", statOrder = { 1390 }, level = 1, group = "LocalChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (49-98) to (101-140) Chaos Damage" }, } }, - ["LocalChaosDamageUniqueTwoHandSword7"] = { affix = "", "Adds (60-68) to (90-102) Chaos Damage", statOrder = { 1390 }, level = 1, group = "LocalChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (60-68) to (90-102) Chaos Damage" }, } }, - ["LocalAddedChaosDamageUnique___1"] = { affix = "", "Adds 1 to 59 Chaos Damage", statOrder = { 1390 }, level = 1, group = "LocalChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds 1 to 59 Chaos Damage" }, } }, - ["LocalAddedChaosDamageUnique__2"] = { affix = "", "Adds (53-67) to (71-89) Chaos Damage", statOrder = { 1390 }, level = 1, group = "LocalChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (53-67) to (71-89) Chaos Damage" }, } }, - ["LocalAddedChaosDamageUnique__3"] = { affix = "", "Adds (600-650) to (750-800) Chaos Damage", statOrder = { 1390 }, level = 1, group = "LocalChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (600-650) to (750-800) Chaos Damage" }, } }, - ["LocalAddedChaosDamageUnique__4"] = { affix = "", "Adds (163-199) to (241-293) Chaos Damage", statOrder = { 1390 }, level = 1, group = "LocalChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (163-199) to (241-293) Chaos Damage" }, } }, - ["UniqueWingsOfEntropyCountsAsDualWielding"] = { affix = "", "Counts as Dual Wielding", statOrder = { 2698 }, level = 1, group = "CountsAsDualWielding", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2797075304] = { "Counts as Dual Wielding" }, } }, - ["ChaosDegenerationOnKillUniqueBodyStr3"] = { affix = "", "You take 450 Chaos Damage per second for 3 seconds on Kill", statOrder = { 2693 }, level = 1, group = "ChaosDegenerationOnKill", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [2524948385] = { "You take 450 Chaos Damage per second for 0 seconds on Kill" }, [3856647970] = { "You take 0 Chaos Damage per second for 3 seconds on Kill" }, } }, - ["ItemBloodFootstepsUniqueBodyStr3"] = { affix = "", "Gore Footprints", statOrder = { 10854 }, level = 1, group = "ItemBloodFootprints", weightKey = { }, weightVal = { }, modTags = { "green_herring" }, tradeHashes = { [2319448214] = { "Gore Footprints" }, [1773117644] = { "" }, } }, - ["DisplayChaosDegenerationAuraUniqueBodyStr3"] = { affix = "", "Deals 450 Chaos Damage per second to nearby Enemies", statOrder = { 2692 }, level = 1, group = "DisplayChaosDegenerationAura", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [2280313599] = { "Deals 450 Chaos Damage per second to nearby Enemies" }, } }, - ["DisplayChaosDegenerationAuraUnique__1"] = { affix = "", "Deals 50 Chaos Damage per second to nearby Enemies", statOrder = { 2692 }, level = 1, group = "DisplayChaosDegenerationAura", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [2280313599] = { "Deals 50 Chaos Damage per second to nearby Enemies" }, } }, - ["ItemBloodFootstepsUniqueBootsDex4"] = { affix = "", "Gore Footprints", statOrder = { 10854 }, level = 1, group = "ItemBloodFootprints", weightKey = { }, weightVal = { }, modTags = { "green_herring" }, tradeHashes = { [2319448214] = { "Gore Footprints" }, [1773117644] = { "" }, } }, - ["ItemSilverFootstepsUniqueHelmetStrDex2"] = { affix = "", "Mercury Footprints", statOrder = { 10860 }, level = 1, group = "ItemSilverFootsteps", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3970396418] = { "Mercury Footprints" }, } }, - ["ItemBloodFootstepsUnique__1"] = { affix = "", "Gore Footprints", statOrder = { 10854 }, level = 1, group = "ItemBloodFootprints", weightKey = { }, weightVal = { }, modTags = { "green_herring" }, tradeHashes = { [2319448214] = { "Gore Footprints" }, [1773117644] = { "" }, } }, - ["MaximumBlockChanceUniqueAmulet16"] = { affix = "", "+3% to maximum Chance to Block Attack Damage", statOrder = { 1988 }, level = 1, group = "MaximumBlockChance", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [4124805414] = { "+3% to maximum Chance to Block Attack Damage" }, } }, - ["MaximumBlockChanceUnique__1"] = { affix = "", "-10% to maximum Chance to Block Attack Damage", statOrder = { 1988 }, level = 1, group = "MaximumBlockChance", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [4124805414] = { "-10% to maximum Chance to Block Attack Damage" }, } }, - ["MaximumBlockChanceUnique__2"] = { affix = "", "-10% to maximum Chance to Block Attack Damage", statOrder = { 1988 }, level = 1, group = "MaximumBlockChance", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [4124805414] = { "-10% to maximum Chance to Block Attack Damage" }, } }, - ["MaximumSpellBlockChanceUnique__1"] = { affix = "", "-10% to maximum Chance to Block Spell Damage", statOrder = { 1989 }, level = 1, group = "MaximumSpellBlockChance", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2388574377] = { "-10% to maximum Chance to Block Spell Damage" }, } }, - ["FasterBurnFromAttacksUniqueOneHandSword4"] = { affix = "", "Ignites you inflict deal Damage 50% faster", statOrder = { 2564 }, level = 1, group = "FasterBurnFromAttacks", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, tradeHashes = { [2443492284] = { "Ignites you inflict deal Damage 50% faster" }, } }, - ["CannotLeechMana"] = { affix = "", "Cannot Leech Mana", statOrder = { 2568 }, level = 1, group = "CannotLeechMana", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1759630226] = { "Cannot Leech Mana" }, } }, - ["CannotLeechManaUnique__1_"] = { affix = "", "Cannot Leech Mana", statOrder = { 2568 }, level = 1, group = "CannotLeechMana", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1759630226] = { "Cannot Leech Mana" }, } }, - ["EnemiesCannotLeechMana"] = { affix = "", "Enemies Cannot Leech Mana From you", statOrder = { 2441 }, level = 1, group = "EnemiesCannotLeechMana", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4293245253] = { "Enemies Cannot Leech Mana From you" }, } }, - ["CannotLeechOnLowLife"] = { affix = "", "Cannot Leech when on Low Life", statOrder = { 2570 }, level = 1, group = "CannotLeechOnLowLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3279535558] = { "Cannot Leech when on Low Life" }, } }, - ["MeleeDamageIncreaseUniqueHelmetStrDex3"] = { affix = "", "20% increased Melee Damage", statOrder = { 1234 }, level = 1, group = "MeleeDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [1002362373] = { "20% increased Melee Damage" }, } }, - ["MeleeDamageUniqueAmulet12"] = { affix = "", "(30-40)% increased Melee Damage", statOrder = { 1234 }, level = 1, group = "MeleeDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [1002362373] = { "(30-40)% increased Melee Damage" }, } }, - ["MeleeDamageImplicitGloves1"] = { affix = "", "(16-20)% increased Melee Damage", statOrder = { 1234 }, level = 78, group = "MeleeDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [1002362373] = { "(16-20)% increased Melee Damage" }, } }, - ["MeleeDamageUnique__1"] = { affix = "", "(20-25)% increased Melee Damage", statOrder = { 1234 }, level = 1, group = "MeleeDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [1002362373] = { "(20-25)% increased Melee Damage" }, } }, - ["MeleeDamageUnique__2"] = { affix = "", "(25-40)% increased Melee Damage", statOrder = { 1234 }, level = 1, group = "MeleeDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [1002362373] = { "(25-40)% increased Melee Damage" }, } }, - ["IronReflexes"] = { affix = "", "Iron Reflexes", statOrder = { 10794 }, level = 1, group = "IronReflexes", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [326965591] = { "Iron Reflexes" }, } }, - ["ChanceToIgniteUniqueOneHandSword4"] = { affix = "", "30% chance to Ignite", statOrder = { 2026 }, level = 1, group = "ChanceToIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "30% chance to Ignite" }, } }, - ["DisplayDamageAuraUniqueHelmetDexInt2"] = { affix = "", "You and nearby allies gain 50% increased Damage", statOrder = { 2700 }, level = 1, group = "DisplayDamageAura", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [637766438] = { "You and nearby allies gain 50% increased Damage" }, } }, - ["MainHandAddedFireDamageUniqueTwoHandAxe6"] = { affix = "", "Adds (150-200) to (330-400) Fire Damage in Main Hand", statOrder = { 1363 }, level = 1, group = "MainHandAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [169657426] = { "Adds (150-200) to (330-400) Fire Damage in Main Hand" }, } }, - ["MainHandAddedFireDamageUniqueOneHandAxe2"] = { affix = "", "Adds (255-285) to (300-330) Fire Damage in Main Hand", statOrder = { 1363 }, level = 1, group = "MainHandAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [169657426] = { "Adds (255-285) to (300-330) Fire Damage in Main Hand" }, } }, - ["OffHandAddedChaosDamageUniqueTwoHandAxe6"] = { affix = "", "Adds (151-199) to (331-401) Chaos Damage in Off Hand", statOrder = { 1391 }, level = 1, group = "OffHandAddedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [3758293500] = { "Adds (151-199) to (331-401) Chaos Damage in Off Hand" }, } }, - ["OffHandAddedColdDamageUniqueOneHandAxe2"] = { affix = "", "Adds (255-285) to (300-330) Cold Damage in Off Hand", statOrder = { 1372 }, level = 1, group = "OffHandAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [2109066258] = { "Adds (255-285) to (300-330) Cold Damage in Off Hand" }, } }, - ["ChaosDamageCanShockUniqueBow10"] = { affix = "", "Your Chaos Damage can Shock", statOrder = { 2870 }, level = 1, group = "ChaosDamageCanShock", weightKey = { }, weightVal = { }, modTags = { "poison", "elemental", "lightning", "chaos", "ailment" }, tradeHashes = { [2418601510] = { "Your Chaos Damage can Shock" }, } }, - ["ChaosDamageCanShockUnique__1"] = { affix = "", "Your Chaos Damage can Shock", statOrder = { 2870 }, level = 1, group = "ChaosDamageCanShock", weightKey = { }, weightVal = { }, modTags = { "poison", "elemental", "lightning", "chaos", "ailment" }, tradeHashes = { [2418601510] = { "Your Chaos Damage can Shock" }, } }, - ["ConvertLightningDamageToChaosUniqueBow10"] = { affix = "", "100% of Lightning Damage Converted to Chaos Damage", statOrder = { 1966 }, level = 1, group = "ConvertLightningDamageToChaos", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "lightning", "chaos" }, tradeHashes = { [4238266823] = { "100% of Lightning Damage Converted to Chaos Damage" }, } }, - ["ConvertLightningDamageToChaosUniqueBow10Updated"] = { affix = "", "100% of Lightning Damage Converted to Chaos Damage", statOrder = { 1966 }, level = 1, group = "ConvertLightningDamageToChaos", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "lightning", "chaos" }, tradeHashes = { [4238266823] = { "100% of Lightning Damage Converted to Chaos Damage" }, } }, - ["MaximumShockOverrideUniqueBow10"] = { affix = "", "+40% to Maximum Effect of Shock", statOrder = { 10511 }, level = 1, group = "MaximumShockOverride", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [4007740198] = { "+40% to Maximum Effect of Shock" }, } }, - ["AttacksShockAsIfDealingMoreDamageUniqueBow10"] = { affix = "", "Hits with this Weapon Shock Enemies as though dealing 300% more Damage", statOrder = { 7943 }, level = 1, group = "LocalShockAsThoughDealingMoreDamage", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "attack", "ailment" }, tradeHashes = { [1386792919] = { "Hits with this Weapon Shock Enemies as though dealing 300% more Damage" }, } }, - ["AttacksShockAsIfDealingMoreDamageUnique__2"] = { affix = "", "Hits with this Weapon Shock Enemies as though dealing 300% more Damage", statOrder = { 7943 }, level = 1, group = "LocalShockAsThoughDealingMoreDamage", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "attack", "ailment" }, tradeHashes = { [1386792919] = { "Hits with this Weapon Shock Enemies as though dealing 300% more Damage" }, } }, - ["EnemiesExplodeOnDeathUniqueTwoHandMace7"] = { affix = "", "Enemies Killed with Attack or Spell Hits Explode, dealing 10% of their Life as Fire Damage", statOrder = { 2706 }, level = 1, group = "EnemiesExplodeOnDeath", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3457687358] = { "Enemies Killed with Attack or Spell Hits Explode, dealing 10% of their Life as Fire Damage" }, } }, - ["DisplaySocketedGemGetsReducedManaCostUniqueDagger5"] = { affix = "", "Socketed Gems are Supported by Level 10 Inspiration", statOrder = { 494 }, level = 1, group = "DisplaySocketedGemGetsReducedManaCost", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [1866911844] = { "Socketed Gems are Supported by Level 10 Inspiration" }, } }, - ["DisplaySocketedGemsGetFasterCastUniqueDagger5"] = { affix = "", "Socketed Gems are Supported by Level 10 Faster Casting", statOrder = { 500 }, level = 1, group = "DisplaySocketedGemsGetFasterCast", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [2169938251] = { "Socketed Gems are Supported by Level 10 Faster Casting" }, } }, - ["SupportedByFasterCastUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 18 Faster Casting", statOrder = { 500 }, level = 1, group = "DisplaySocketedGemsGetFasterCast", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [2169938251] = { "Socketed Gems are Supported by Level 18 Faster Casting" }, } }, - ["CanOnlyDealDamageWithThisWeapon"] = { affix = "", "You can only deal Damage with this Weapon or Ignite", statOrder = { 2712 }, level = 1, group = "CanOnlyDealDamageWithThisWeapon", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [3128318472] = { "You can only deal Damage with this Weapon or Ignite" }, } }, - ["LeftRingSlotElementalReflectDamageTakenUniqueRing10"] = { affix = "", "Left ring slot: 100% of Elemental Hit Damage from you and", "your Minions cannot be Reflected", statOrder = { 7979, 7979.1 }, level = 57, group = "LeftRingSlotElementalReflectDamageTaken", weightKey = { }, weightVal = { }, modTags = { "elemental" }, tradeHashes = { [3991837781] = { "Left ring slot: 100% of Elemental Hit Damage from you and", "your Minions cannot be Reflected" }, } }, - ["RightRingSlotPhysicalReflectDamageTakenUniqueRing10"] = { affix = "", "Right ring slot: 100% of Physical Hit Damage from you and", "your Minions cannot be Reflected", statOrder = { 8006, 8006.1 }, level = 1, group = "RightRingSlotPhysicalReflectDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHashes = { [3829555156] = { "Right ring slot: 100% of Physical Hit Damage from you and", "your Minions cannot be Reflected" }, } }, - ["DamageCannotBeReflectedUnique__1"] = { affix = "", "Damage cannot be Reflected", statOrder = { 6021 }, level = 1, group = "DamageCannotBeReflected", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2670993553] = { "Damage cannot be Reflected" }, } }, - ["DamageCannotBeReflectedUnique__2"] = { affix = "", "Damage cannot be Reflected", statOrder = { 6021 }, level = 1, group = "DamageCannotBeReflected", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2670993553] = { "Damage cannot be Reflected" }, } }, - ["IncreasedEnemyFireResistanceUniqueHelmetInt5"] = { affix = "", "Damage Penetrates 25% Fire Resistance", statOrder = { 2981 }, level = 1, group = "EnemyFireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates 25% Fire Resistance" }, } }, - ["UsingFlasksDispelsBurningUniqueHelmetInt5"] = { affix = "", "Removes Burning when you use a Flask", statOrder = { 2755 }, level = 1, group = "UsingFlasksDispelsBurning", weightKey = { }, weightVal = { }, modTags = { "flask", "elemental", "fire", "ailment" }, tradeHashes = { [1305605911] = { "Removes Burning when you use a Flask" }, } }, - ["DamageRemovedFromManaBeforeLifeTestMod"] = { affix = "", "30% of Damage is taken from Mana before Life", statOrder = { 2699 }, level = 1, group = "DamageRemovedFromManaBeforeLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana" }, tradeHashes = { [458438597] = { "30% of Damage is taken from Mana before Life" }, } }, - ["ChanceToShockUniqueBow10"] = { affix = "", "10% chance to Shock", statOrder = { 2033 }, level = 1, group = "ChanceToShock", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1538773178] = { "10% chance to Shock" }, } }, - ["ChanceToShockUniqueOneHandSword7"] = { affix = "", "(15-20)% chance to Shock", statOrder = { 2033 }, level = 1, group = "ChanceToShock", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1538773178] = { "(15-20)% chance to Shock" }, } }, - ["ChanceToShockUniqueDescentTwoHandSword1"] = { affix = "", "9% chance to Shock", statOrder = { 2033 }, level = 1, group = "ChanceToShock", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1538773178] = { "9% chance to Shock" }, } }, - ["ChanceToShockUniqueStaff8"] = { affix = "", "15% chance to Shock", statOrder = { 2033 }, level = 1, group = "ChanceToShock", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1538773178] = { "15% chance to Shock" }, } }, - ["ChanceToShockUniqueRing29"] = { affix = "", "25% chance to Shock", statOrder = { 2033 }, level = 1, group = "ChanceToShock", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1538773178] = { "25% chance to Shock" }, } }, - ["ChanceToShockUniqueGlovesStr4"] = { affix = "", "30% chance to Shock", statOrder = { 2033 }, level = 1, group = "ChanceToShock", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1538773178] = { "30% chance to Shock" }, } }, - ["ChanceToShockUnique__1"] = { affix = "", "10% chance to Shock", statOrder = { 2033 }, level = 1, group = "ChanceToShock", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1538773178] = { "10% chance to Shock" }, } }, - ["ChanceToShockUnique__2_"] = { affix = "", "50% chance to Shock", statOrder = { 2033 }, level = 1, group = "ChanceToShock", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1538773178] = { "50% chance to Shock" }, } }, - ["ChanceToShockUnique__3"] = { affix = "", "(5-10)% chance to Shock", statOrder = { 2033 }, level = 1, group = "ChanceToShock", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1538773178] = { "(5-10)% chance to Shock" }, } }, - ["ChanceToShockUnique__4_"] = { affix = "", "(10-15)% chance to Shock", statOrder = { 2033 }, level = 1, group = "ChanceToShock", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1538773178] = { "(10-15)% chance to Shock" }, } }, - ["FishingLineStrengthUnique__1"] = { affix = "", "100% increased Fishing Line Strength", statOrder = { 2844 }, level = 1, group = "FishingLineStrength", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1842038569] = { "100% increased Fishing Line Strength" }, } }, - ["FishingPoolConsumptionUnique__1__"] = { affix = "", "50% increased Fishing Pool Consumption", statOrder = { 2845 }, level = 1, group = "FishingPoolConsumption", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1550221644] = { "50% increased Fishing Pool Consumption" }, } }, - ["FishingLureTypeUniqueFishingRod1"] = { affix = "", "Siren Worm Bait", statOrder = { 2846 }, level = 1, group = "FishingLureType", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3360430812] = { "Siren Worm Bait" }, } }, - ["FishingLureTypeUnique__1__"] = { affix = "", "Thaumaturgical Lure", statOrder = { 2846 }, level = 1, group = "FishingLureType", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3360430812] = { "Thaumaturgical Lure" }, } }, - ["FishingCastDistanceUnique__1__"] = { affix = "", "20% increased Fishing Range", statOrder = { 2848 }, level = 1, group = "FishingCastDistance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [170497091] = { "20% increased Fishing Range" }, } }, - ["FishingQuantityUniqueFishingRod1"] = { affix = "", "(40-50)% reduced Quantity of Fish Caught", statOrder = { 2849 }, level = 1, group = "FishingQuantity", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3802667447] = { "(40-50)% reduced Quantity of Fish Caught" }, } }, - ["FishingQuantityUnique__2"] = { affix = "", "20% increased Quantity of Fish Caught", statOrder = { 2849 }, level = 1, group = "FishingQuantity", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3802667447] = { "20% increased Quantity of Fish Caught" }, } }, - ["FishingQuantityUnique__1"] = { affix = "", "(10-20)% increased Quantity of Fish Caught", statOrder = { 2849 }, level = 1, group = "FishingQuantity", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3802667447] = { "(10-20)% increased Quantity of Fish Caught" }, } }, - ["FishingRarityUniqueFishingRod1"] = { affix = "", "(50-60)% increased Rarity of Fish Caught", statOrder = { 2850 }, level = 1, group = "FishingRarity", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3310914132] = { "(50-60)% increased Rarity of Fish Caught" }, } }, - ["FishingRarityUnique__1"] = { affix = "", "40% increased Rarity of Fish Caught", statOrder = { 2850 }, level = 1, group = "FishingRarity", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3310914132] = { "40% increased Rarity of Fish Caught" }, } }, - ["FishingRarityUnique__2_"] = { affix = "", "(20-30)% increased Rarity of Fish Caught", statOrder = { 2850 }, level = 1, group = "FishingRarity", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3310914132] = { "(20-30)% increased Rarity of Fish Caught" }, } }, - ["IncreasedSpellDamagePerBlockChanceUniqueClaw7"] = { affix = "", "8% increased Spell Damage per 5% Chance to Block Attack Damage", statOrder = { 2737 }, level = 1, group = "SpellDamagePerBlockChance", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2449668043] = { "8% increased Spell Damage per 5% Chance to Block Attack Damage" }, } }, - ["LifeGainedOnSpellHitUniqueClaw7"] = { affix = "", "Gain (15-20) Life per Enemy Hit with Spells", statOrder = { 1739 }, level = 1, group = "LifeGainedOnSpellHit", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "caster" }, tradeHashes = { [2018035324] = { "Gain (15-20) Life per Enemy Hit with Spells" }, } }, - ["LifeGainedOnSpellHitUniqueDescentClaw1"] = { affix = "", "Gain 3 Life per Enemy Hit with Spells", statOrder = { 1739 }, level = 1, group = "LifeGainedOnSpellHit", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "caster" }, tradeHashes = { [2018035324] = { "Gain 3 Life per Enemy Hit with Spells" }, } }, - ["LoseLifeOnSpellHitUnique__1"] = { affix = "", "Lose (10-15) Life per Enemy Hit with Spells", statOrder = { 1739 }, level = 1, group = "LifeGainedOnSpellHit", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "caster" }, tradeHashes = { [2018035324] = { "Lose (10-15) Life per Enemy Hit with Spells" }, } }, - ["AttackSpeedPerGreenSocketUniqueOneHandSword5"] = { affix = "", "12% increased Global Attack Speed per Green Socket", statOrder = { 2721 }, level = 1, group = "AttackSpeedPerGreenSocket", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [250876318] = { "12% increased Global Attack Speed per Green Socket" }, } }, - ["PhysicalDamgePerRedSocketUniqueOneHandSword5"] = { affix = "", "25% increased Global Physical Damage with Weapons per Red Socket", statOrder = { 2718 }, level = 1, group = "PhysicalDamgePerRedSocket", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [2112615899] = { "25% increased Global Physical Damage with Weapons per Red Socket" }, } }, - ["ManaLeechFromPhysicalDamagePerBlueSocketUniqueOneHandSword5"] = { affix = "", "2% of Physical Attack Damage Leeched as Mana per Blue Socket", statOrder = { 2726 }, level = 1, group = "ManaLeechFromPhysicalDamagePerBlueSocket", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "attack" }, tradeHashes = { [1390269837] = { "2% of Physical Attack Damage Leeched as Mana per Blue Socket" }, } }, - ["ManaLeechPermyriadFromPhysicalDamagePerBlueSocketUniqueOneHandSword5"] = { affix = "", "0.4% of Physical Attack Damage Leeched as Mana per Blue Socket", statOrder = { 2727 }, level = 1, group = "ManaLeechPermyriadFromPhysicalDamagePerBlueSocket", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "attack" }, tradeHashes = { [172852114] = { "0.4% of Physical Attack Damage Leeched as Mana per Blue Socket" }, } }, - ["ManaLeechPermyriadFromPhysicalDamagePerBlueSocketUnique"] = { affix = "", "0.3% of Physical Attack Damage Leeched as Mana per Blue Socket", statOrder = { 2727 }, level = 1, group = "ManaLeechPermyriadFromPhysicalDamagePerBlueSocket", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "attack" }, tradeHashes = { [172852114] = { "0.3% of Physical Attack Damage Leeched as Mana per Blue Socket" }, } }, - ["MeleeRangePerWhiteSocketUniqueOneHandSword5"] = { affix = "", "+0.2 metres to Melee Strike Range per White Socket", statOrder = { 2732 }, level = 1, group = "MeleeRangePerWhiteSocket", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2076080860] = { "+0.2 metres to Melee Strike Range per White Socket" }, } }, - ["MeleeDamageTakenUniqueAmulet12"] = { affix = "", "60% increased Damage taken from Melee Attacks", statOrder = { 2748 }, level = 1, group = "MeleeDamageTaken", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2626398389] = { "60% increased Damage taken from Melee Attacks" }, } }, - ["ArmourAsLifeRegnerationOnBlockUniqueShieldStrInt6"] = { affix = "", "Regenerate 2% of your Armour as Life over 1 second when you Block", statOrder = { 2832 }, level = 1, group = "ArmourAsLifeRegnerationOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "resource", "life" }, tradeHashes = { [3002650433] = { "Regenerate 2% of your Armour as Life over 1 second when you Block" }, } }, - ["LoseEnergyShieldOnBlockUniqueShieldStrInt6"] = { affix = "", "Lose 10% of your Energy Shield when you Block", statOrder = { 2739 }, level = 1, group = "LoseEnergyShieldOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "defences", "energy_shield" }, tradeHashes = { [4059516437] = { "Lose 10% of your Energy Shield when you Block" }, } }, - ["ChaosDamageAsPortionOfDamageUniqueRing16"] = { affix = "", "Gain (40-60)% of Physical Damage as Extra Chaos Damage", statOrder = { 1935 }, level = 87, group = "ChaosDamageAsPortionOfDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, tradeHashes = { [3319896421] = { "Gain (40-60)% of Physical Damage as Extra Chaos Damage" }, } }, - ["ChaosDamageAsPortionOfDamageUnique__1"] = { affix = "", "Gain (30-40)% of Physical Damage as Extra Chaos Damage", statOrder = { 1935 }, level = 1, group = "ChaosDamageAsPortionOfDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, tradeHashes = { [3319896421] = { "Gain (30-40)% of Physical Damage as Extra Chaos Damage" }, } }, - ["PhysicalDamageTakenAsLightningPercentUniqueBodyStrDex2"] = { affix = "", "50% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2449 }, level = 1, group = "PhysicalDamageTakenAsLightningPercent", weightKey = { }, weightVal = { }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "50% of Physical Damage from Hits taken as Lightning Damage" }, } }, - ["MainHandChanceToIgniteUniqueOneHandAxe2"] = { affix = "", "25% chance to Ignite when in Main Hand", statOrder = { 2767 }, level = 1, group = "MainHandChanceToIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [2919089822] = { "25% chance to Ignite when in Main Hand" }, } }, - ["OffHandChillDurationUniqueOneHandAxe2"] = { affix = "", "100% increased Chill Duration on Enemies when in Off Hand", statOrder = { 2768 }, level = 1, group = "OffHandChillDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [4199402748] = { "100% increased Chill Duration on Enemies when in Off Hand" }, } }, - ["BurningDamageToChilledEnemiesUniqueOneHandAxe2"] = { affix = "", "100% increased Damage with Ignite inflicted on Chilled Enemies", statOrder = { 7204 }, level = 1, group = "BurningDamageToChilledEnemies", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, tradeHashes = { [1891782369] = { "100% increased Damage with Ignite inflicted on Chilled Enemies" }, } }, - ["TrapThrowSpeedUniqueBootsDex6"] = { affix = "", "(14-18)% increased Trap Throwing Speed", statOrder = { 1927 }, level = 1, group = "TrapThrowSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [118398748] = { "(14-18)% increased Trap Throwing Speed" }, } }, - ["TrapThrowSpeedUnique__1_"] = { affix = "", "(20-30)% reduced Trap Throwing Speed", statOrder = { 1927 }, level = 1, group = "TrapThrowSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [118398748] = { "(20-30)% reduced Trap Throwing Speed" }, } }, - ["MovementSpeedOnTrapThrowUniqueBootsDex6"] = { affix = "", "30% increased Movement Speed for 9 seconds on Throwing a Trap", statOrder = { 2772 }, level = 1, group = "MovementSpeedOnTrapThrow", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [1620219216] = { "30% increased Movement Speed for 9 seconds on Throwing a Trap" }, } }, - ["MovementSpeedOnTrapThrowUnique__1"] = { affix = "", "15% increased Movement Speed for 9 seconds on Throwing a Trap", statOrder = { 2772 }, level = 1, group = "MovementSpeedOnTrapThrowSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [1180565017] = { "15% increased Movement Speed for 0 seconds on Throwing a Trap" }, [1620219216] = { "30% increased Movement Speed for 9 seconds on Throwing a Trap" }, } }, - ["DisplaySupportedByTrapUniqueBootsDex6"] = { affix = "", "Socketed Gems are Supported by Level 15 Trap", statOrder = { 454 }, level = 1, group = "DisplaySupportedByTrap", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [1122134690] = { "Socketed Gems are Supported by Level 15 Trap" }, } }, - ["DisplaySupportedByTrapUniqueStaff4"] = { affix = "", "Socketed Gems are Supported by Level 8 Trap", statOrder = { 454 }, level = 1, group = "DisplaySupportedByTrap", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [1122134690] = { "Socketed Gems are Supported by Level 8 Trap" }, } }, - ["DisplaySupportedByTrapUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 16 Trap", statOrder = { 454 }, level = 40, group = "DisplaySupportedByTrap", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [1122134690] = { "Socketed Gems are Supported by Level 16 Trap" }, } }, - ["TrapDurationUniqueBelt6"] = { affix = "", "(50-75)% reduced Trap Duration", statOrder = { 1923 }, level = 47, group = "TrapDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2001530951] = { "(50-75)% reduced Trap Duration" }, } }, - ["TrapDamageUniqueBelt6"] = { affix = "", "(30-40)% increased Trap Damage", statOrder = { 1194 }, level = 1, group = "TrapDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2941585404] = { "(30-40)% increased Trap Damage" }, } }, - ["TrapDamageUniqueShieldDexInt1"] = { affix = "", "(18-28)% increased Trap Damage", statOrder = { 1194 }, level = 1, group = "TrapDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2941585404] = { "(18-28)% increased Trap Damage" }, } }, - ["ChanceToFreezeShockIgniteUniqueRing21"] = { affix = "", "10% chance to Freeze, Shock and Ignite", statOrder = { 2801 }, level = 1, group = "ChanceToFreezeShockIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [800141891] = { "10% chance to Freeze, Shock and Ignite" }, } }, - ["ChanceToFreezeShockIgniteUniqueDescentWand1"] = { affix = "", "4% chance to Freeze, Shock and Ignite", statOrder = { 2801 }, level = 1, group = "ChanceToFreezeShockIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [800141891] = { "4% chance to Freeze, Shock and Ignite" }, } }, - ["ChanceToFreezeShockIgniteUniqueHelmetDexInt4"] = { affix = "", "5% chance to Freeze, Shock and Ignite", statOrder = { 2801 }, level = 1, group = "ChanceToFreezeShockIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [800141891] = { "5% chance to Freeze, Shock and Ignite" }, } }, - ["ChanceToFreezeShockIgniteUniqueAmulet19"] = { affix = "", "Always Freeze, Shock and Ignite", statOrder = { 2801 }, level = 1, group = "ChanceToFreezeShockIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [800141891] = { "Always Freeze, Shock and Ignite" }, } }, - ["ChanceToFreezeShockIgniteDescentUniqueQuiver1"] = { affix = "", "10% chance to Freeze, Shock and Ignite", statOrder = { 2801 }, level = 1, group = "ChanceToFreezeShockIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [800141891] = { "10% chance to Freeze, Shock and Ignite" }, } }, - ["ChanceToFreezeShockIgniteUnique__1"] = { affix = "", "(10-25)% chance to Freeze, Shock and Ignite", statOrder = { 2801 }, level = 1, group = "ChanceToFreezeShockIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [800141891] = { "(10-25)% chance to Freeze, Shock and Ignite" }, } }, - ["ChanceToFreezeShockIgniteUnique__2"] = { affix = "", "(20-25)% chance to Freeze, Shock and Ignite", statOrder = { 2801 }, level = 1, group = "ChanceToFreezeShockIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [800141891] = { "(20-25)% chance to Freeze, Shock and Ignite" }, } }, - ["ChanceToFreezeShockIgniteUnique__3"] = { affix = "", "(5-10)% chance to Freeze, Shock and Ignite", statOrder = { 2801 }, level = 1, group = "ChanceToFreezeShockIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [800141891] = { "(5-10)% chance to Freeze, Shock and Ignite" }, } }, - ["DamageWhileIgnitedUniqueRing18"] = { affix = "", "30% increased Damage while Ignited", statOrder = { 2802 }, level = 1, group = "DamageWhileIgnited", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [1686122637] = { "30% increased Damage while Ignited" }, } }, - ["DamageWhileIgnitedUnique__1"] = { affix = "", "(50-70)% increased Damage while Ignited", statOrder = { 2802 }, level = 85, group = "DamageWhileIgnited", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [1686122637] = { "(50-70)% increased Damage while Ignited" }, } }, - ["ArmourWhileFrozenUniqueRing18"] = { affix = "", "+5000 to Armour while Frozen", statOrder = { 2803 }, level = 1, group = "ArmourWhileFrozen", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [504366827] = { "+5000 to Armour while Frozen" }, } }, - ["ManaLeechOnShockedEnemiesUniqueRing19"] = { affix = "", "5% of Damage against Shocked Enemies Leeched as Mana", statOrder = { 1717 }, level = 1, group = "ManaLeechOnShockedEnemies", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1831556341] = { "5% of Damage against Shocked Enemies Leeched as Mana" }, } }, - ["ManaLeechPermyriadOnShockedEnemiesUniqueRing19"] = { affix = "", "1% of Damage Leeched as Mana against Frozen Enemies", statOrder = { 8185 }, level = 1, group = "ManaLeechPermyriadOnFrozenEnemies", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2908111053] = { "1% of Damage Leeched as Mana against Frozen Enemies" }, } }, - ["EnergyShieldLeechPermyriadOnFrozenEnemiesUniqueRing19"] = { affix = "", "1% of Damage Leeched as Energy Shield against Frozen Enemies", statOrder = { 6440 }, level = 1, group = "EnergyShieldLeechPermyriadOnFrozenEnemies", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4091709362] = { "1% of Damage Leeched as Energy Shield against Frozen Enemies" }, } }, - ["LifeLeechOnFrozenEnemiesUniqueRing19"] = { affix = "", "5% of Damage against Frozen Enemies Leeched as Life", statOrder = { 1689 }, level = 1, group = "LifeLeechOnFrozenEnemies", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [4210079745] = { "5% of Damage against Frozen Enemies Leeched as Life" }, } }, - ["LifeLeechPermyriadOnFrozenEnemiesUniqueRing19"] = { affix = "", "1% of Damage Leeched as Life against Shocked Enemies", statOrder = { 1688 }, level = 1, group = "LifeLeechPermyriadOnShockedEnemies", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2614321687] = { "1% of Damage Leeched as Life against Shocked Enemies" }, } }, - ["DamageOnRareMonstersUniqueBelt7"] = { affix = "", "(20-30)% increased Damage with Hits against Rare monsters", statOrder = { 2807 }, level = 1, group = "DamageOnRareMonsters", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2137878565] = { "(20-30)% increased Damage with Hits against Rare monsters" }, } }, - ["DamageOnMagicMonstersUnique__1_"] = { affix = "", "(20-30)% increased Damage with Hits against Magic monsters", statOrder = { 6071 }, level = 1, group = "DamageOnMagicMonsters", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [1278047991] = { "(20-30)% increased Damage with Hits against Magic monsters" }, } }, - ["DamagePerStatusAilmentOnEnemiesUniqueRing21"] = { affix = "", "(30-40)% increased Elemental Damage with Hits and Ailments for", "each type of Elemental Ailment on Enemy", statOrder = { 6294, 6294.1 }, level = 1, group = "DamagePerStatusAilmentOnEnemies", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [2605663324] = { "(30-40)% increased Elemental Damage with Hits and Ailments for", "each type of Elemental Ailment on Enemy" }, } }, - ["ShrineBuffEffectUniqueHelmetDexInt3"] = { affix = "", "75% increased Effect of Shrine Buffs on you", statOrder = { 2812 }, level = 1, group = "ShrineBuffEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1939175721] = { "75% increased Effect of Shrine Buffs on you" }, } }, - ["ShrineBuffEffectUnique__1"] = { affix = "", "(50-75)% increased Effect of Shrine Buffs on you", statOrder = { 2812 }, level = 1, group = "ShrineBuffEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1939175721] = { "(50-75)% increased Effect of Shrine Buffs on you" }, } }, - ["ShrineEffectDurationUniqueHelmetDexInt3"] = { affix = "", "50% increased Duration of Shrine Effects on you", statOrder = { 2813 }, level = 1, group = "ShrineEffectDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1877661946] = { "50% increased Duration of Shrine Effects on you" }, } }, - ["ShockNearbyEnemyOnShockedKillUniqueRing20"] = { affix = "", "When you Kill a Shocked Enemy, inflict an equivalent Shock on each nearby Enemy", statOrder = { 2814 }, level = 25, group = "ShockNearbyEnemyOnShockedKill", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3462132936] = { "When you Kill a Shocked Enemy, inflict an equivalent Shock on each nearby Enemy" }, } }, - ["ShockNearbyEnemyOnShockedKillUniqueDescentTwoHandSword1_"] = { affix = "", "When you Kill a Shocked Enemy, inflict an equivalent Shock on each nearby Enemy", statOrder = { 2814 }, level = 1, group = "ShockNearbyEnemyOnShockedKill", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3462132936] = { "When you Kill a Shocked Enemy, inflict an equivalent Shock on each nearby Enemy" }, } }, - ["IgniteNearbyEnemyOnIgnitedKillUniqueRing20"] = { affix = "", "When you Kill an Ignited Enemy, inflict an equivalent Ignite on each nearby Enemy", statOrder = { 2815 }, level = 1, group = "IgniteNearbyEnemyOnIgnitedKill", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [2638352064] = { "When you Kill an Ignited Enemy, inflict an equivalent Ignite on each nearby Enemy" }, } }, - ["IgniteNearbyEnemyOnIgnitedKillUnique__1"] = { affix = "", "When you Kill an Ignited Enemy, inflict an equivalent Ignite on each nearby Enemy", statOrder = { 2815 }, level = 1, group = "IgniteNearbyEnemyOnIgnitedKill", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [2638352064] = { "When you Kill an Ignited Enemy, inflict an equivalent Ignite on each nearby Enemy" }, } }, - ["GainRareMonsterModsOnKillUniqueBelt7_"] = { affix = "", "When you Kill a Rare monster, you gain its Modifiers for 60 seconds", statOrder = { 2817 }, level = 1, group = "GainRareMonsterModsOnKill", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2913235441] = { "When you Kill a Rare monster, you gain its Modifiers for 60 seconds" }, } }, - ["GainMagicMonsterModsOnKillUnique__1_"] = { affix = "", "20% chance when you Kill a Magic Monster to gain its Modifiers for 60 seconds", statOrder = { 6768 }, level = 1, group = "GainMagicMonsterModsOnKill", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3976991498] = { "20% chance when you Kill a Magic Monster to gain its Modifiers for 60 seconds" }, } }, - ["GainShrineOnRareOrUniqueKillUnique_1"] = { affix = "", "Gain a random Shrine Buff for 30 seconds when you Kill a Rare or Unique Enemy", statOrder = { 6821 }, level = 81, group = "GainShrineOnRareOrUniqueKill", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3493440964] = { "Gain a random Shrine Buff for 30 seconds when you Kill a Rare or Unique Enemy" }, } }, - ["GainManaPer2IntelligenceUnique_1"] = { affix = "", "+1 to maximum Mana per 2 Intelligence", statOrder = { 9172 }, level = 1, group = "ManaPer2Intelligence", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [3822999954] = { "+1 to maximum Mana per 2 Intelligence" }, } }, - ["AddedManaRegenerationUniqueBelt8"] = { affix = "", "Regenerate (8-10) Mana per second", statOrder = { 1582 }, level = 1, group = "AddedManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [4291461939] = { "Regenerate (8-10) Mana per second" }, } }, - ["AddedManaRegenerationUniqueDescentWand1"] = { affix = "", "Regenerate 2 Mana per second", statOrder = { 1582 }, level = 1, group = "AddedManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [4291461939] = { "Regenerate 2 Mana per second" }, } }, - ["AddedManaRegenerationUnique__1"] = { affix = "", "Regenerate (3-6) Mana per second", statOrder = { 1582 }, level = 1, group = "AddedManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [4291461939] = { "Regenerate (3-6) Mana per second" }, } }, - ["AddedManaRegenerationUnique__2"] = { affix = "", "Regenerate (8-10) Mana per second", statOrder = { 1582 }, level = 1, group = "AddedManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [4291461939] = { "Regenerate (8-10) Mana per second" }, } }, - ["AddedManaRegenerationUnique__3"] = { affix = "", "Regenerate (3-5) Mana per second", statOrder = { 1582 }, level = 1, group = "AddedManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [4291461939] = { "Regenerate (3-5) Mana per second" }, } }, - ["ArmourWhileNotIgnitedFrozenShockedBelt8"] = { affix = "", "40% increased Armour while not Ignited, Frozen or Shocked", statOrder = { 2818 }, level = 1, group = "ArmourWhileNotIgnitedFrozenShocked", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1164767410] = { "40% increased Armour while not Ignited, Frozen or Shocked" }, } }, - ["ManaShield"] = { affix = "", "Mind Over Matter", statOrder = { 10797 }, level = 1, group = "ManaShield", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana" }, tradeHashes = { [373964381] = { "Mind Over Matter" }, } }, - ["ElementalResistancePerEnduranceChargeDescentShield1"] = { affix = "", "+3% to all Elemental Resistances per Endurance Charge", statOrder = { 1620 }, level = 1, group = "ElementalResistancePerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [1852896268] = { "+3% to all Elemental Resistances per Endurance Charge" }, } }, - ["ReturningProjectilesUniqueDescentBow1"] = { affix = "", "Projectiles Return to you", statOrder = { 2823 }, level = 1, group = "ReturningProjectiles", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4015038379] = { "Projectiles Return to you" }, } }, - ["CastSpeedOnFullLifeUniqueDescentHelmet1"] = { affix = "", "9% increased Cast Speed when on Full Life", statOrder = { 2000 }, level = 1, group = "CastSpeedOnFullLife", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [656291658] = { "9% increased Cast Speed when on Full Life" }, } }, - ["CastSpeedOnLowLifeUniqueDescentHelmet1"] = { affix = "", "20% increased Cast Speed when on Low Life", statOrder = { 1999 }, level = 1, group = "CastSpeedOnLowLife", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [1136768410] = { "20% increased Cast Speed when on Low Life" }, } }, - ["MaximumCriticalStrikeChanceUniqueAmulet17"] = { affix = "", "50% maximum Critical Strike Chance", statOrder = { 2747 }, level = 1, group = "MaximumCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [2251704631] = { "50% maximum Critical Strike Chance" }, } }, - ["DamagePerStrengthInMainHandUniqueSceptre6"] = { affix = "", "1% increased Damage per 8 Strength when in Main Hand", statOrder = { 2776 }, level = 1, group = "DamagePerStrengthInMainHand", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [679194784] = { "1% increased Damage per 8 Strength when in Main Hand" }, } }, - ["ArmourPerStrengthInOffHandUniqueSceptre6"] = { affix = "", "1% increased Armour per 16 Strength when in Off Hand", statOrder = { 2777 }, level = 1, group = "ArmourPerStrengthInOffHand", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [2192181096] = { "1% increased Armour per 16 Strength when in Off Hand" }, } }, - ["DisplaySocketedGemsSupportedByIronWillUniqueSceptre6"] = { affix = "", "Socketed Gems are Supported by Level 30 Iron Will", statOrder = { 501 }, level = 1, group = "DisplaySocketedGemsSupportedByIronWill", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [906997920] = { "Socketed Gems are Supported by Level 30 Iron Will" }, } }, - ["DisplaySocketedGemsSupportedByIronWillUniqueOneHandMace3"] = { affix = "", "Socketed Gems have Iron Will", statOrder = { 539 }, level = 1, group = "DisplaySocketedGemsHaveIronWill", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [49017695] = { "Socketed Gems have Iron Will" }, } }, - ["LessCriticalStrikeChanceAmulet17"] = { affix = "", "40% less Critical Strike Chance", statOrder = { 2825 }, level = 1, group = "CriticalStrikeChanceFinal", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [4181057577] = { "40% less Critical Strike Chance" }, } }, - ["ChanceToDodgeUniqueBootsDex7"] = { affix = "", "+12% chance to Suppress Spell Damage", statOrder = { 1142 }, level = 1, group = "ChanceToSuppressSpellsOld", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [492027537] = { "+12% chance to Suppress Spell Damage" }, } }, - ["ChanceToSuppressSpellsUnique__1"] = { affix = "", "+50% chance to Suppress Spell Damage", statOrder = { 1143 }, level = 1, group = "ChanceToSuppressSpells", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3680664274] = { "+50% chance to Suppress Spell Damage" }, } }, - ["ChanceToDodgeUniqueBodyDex1"] = { affix = "", "+15% chance to Suppress Spell Damage", statOrder = { 1142 }, level = 1, group = "ChanceToSuppressSpellsOld", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [492027537] = { "+15% chance to Suppress Spell Damage" }, } }, - ["ChanceToDodgeUniqueRing37"] = { affix = "", "(3-5)% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "(3-5)% increased Movement Speed" }, } }, - ["ChanceToDodgeUnique__1"] = { affix = "", "+(6-10)% chance to Suppress Spell Damage", statOrder = { 1143 }, level = 1, group = "ChanceToSuppressSpells", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3680664274] = { "+(6-10)% chance to Suppress Spell Damage" }, } }, - ["ChanceToDodgeImplicitShield1"] = { affix = "", "+3% chance to Suppress Spell Damage", statOrder = { 1143 }, level = 1, group = "ChanceToSuppressSpells", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3680664274] = { "+3% chance to Suppress Spell Damage" }, } }, - ["ChanceToDodgeImplicitShield2"] = { affix = "", "+5% chance to Suppress Spell Damage", statOrder = { 1143 }, level = 1, group = "ChanceToSuppressSpells", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3680664274] = { "+5% chance to Suppress Spell Damage" }, } }, - ["ChanceToDodgeSpellsUniqueBodyDex1"] = { affix = "", "+15% chance to Suppress Spell Damage", statOrder = { 1142 }, level = 1, group = "ChanceToSuppressSpellsOld", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [492027537] = { "+15% chance to Suppress Spell Damage" }, } }, - ["ChanceToSuppressSpellsUniqueBodyDex1"] = { affix = "", "+30% chance to Suppress Spell Damage", statOrder = { 1143 }, level = 1, group = "ChanceToSuppressSpells", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3680664274] = { "+30% chance to Suppress Spell Damage" }, } }, - ["ChanceToDodgeSpellsUnique__1"] = { affix = "", "+(6-10)% chance to Suppress Spell Damage", statOrder = { 1143 }, level = 1, group = "ChanceToSuppressSpells", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3680664274] = { "+(6-10)% chance to Suppress Spell Damage" }, } }, - ["ChanceToDodgeSpellsUnique__2"] = { affix = "", "+20% chance to Suppress Spell Damage", statOrder = { 1143 }, level = 1, group = "ChanceToSuppressSpells", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3680664274] = { "+20% chance to Suppress Spell Damage" }, } }, - ["ChanceToDodgeSpellsUnique__3_"] = { affix = "", "+(10-12)% chance to Suppress Spell Damage", statOrder = { 1143 }, level = 1, group = "ChanceToSuppressSpells", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3680664274] = { "+(10-12)% chance to Suppress Spell Damage" }, } }, - ["ChanceToDodgeSpellsImplicitShield1"] = { affix = "", "+3% chance to Suppress Spell Damage", statOrder = { 1143 }, level = 1, group = "ChanceToSuppressSpells", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3680664274] = { "+3% chance to Suppress Spell Damage" }, } }, - ["ChanceToDodgeSpellsImplicitShield2"] = { affix = "", "+5% chance to Suppress Spell Damage", statOrder = { 1143 }, level = 1, group = "ChanceToSuppressSpells", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3680664274] = { "+5% chance to Suppress Spell Damage" }, } }, - ["ChanceToSuppressSpellsUnique__1_"] = { affix = "", "+(26-32)% chance to Suppress Spell Damage", statOrder = { 1143 }, level = 1, group = "ChanceToSuppressSpells", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3680664274] = { "+(26-32)% chance to Suppress Spell Damage" }, } }, - ["ChanceToSuppressSpellsUnique__2"] = { affix = "", "+(20-25)% chance to Suppress Spell Damage", statOrder = { 1143 }, level = 1, group = "ChanceToSuppressSpells", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3680664274] = { "+(20-25)% chance to Suppress Spell Damage" }, } }, - ["ChanceToSuppressSpellsUnique__3"] = { affix = "", "+(0-30)% chance to Suppress Spell Damage", statOrder = { 1143 }, level = 50, group = "ChanceToSuppressSpells", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3680664274] = { "+(0-30)% chance to Suppress Spell Damage" }, } }, - ["ChanceToSuppressSpellsUnique__4"] = { affix = "", "+(6-10)% chance to Suppress Spell Damage", statOrder = { 1143 }, level = 1, group = "ChanceToSuppressSpells", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3680664274] = { "+(6-10)% chance to Suppress Spell Damage" }, } }, - ["EnduranceChargeOnKillUniqueBodyStrDex3"] = { affix = "", "You gain an Endurance Charge on Kill", statOrder = { 2828 }, level = 1, group = "EnduranceChargeOnKill", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHashes = { [2064503808] = { "You gain an Endurance Charge on Kill" }, } }, - ["LoseEnduranceChargesWhenHitUniqueBodyStrDex3"] = { affix = "", "You lose all Endurance Charges when Hit", statOrder = { 2826 }, level = 1, group = "LoseEnduranceChargesWhenHit", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHashes = { [2994477068] = { "You lose all Endurance Charges when Hit" }, } }, - ["GainOnslaughtWhenHitUniqueBodyStrDex3"] = { affix = "", "You gain Onslaught for 5 seconds per Endurance Charge when Hit", statOrder = { 2842 }, level = 1, group = "GainOnslaughtWhenHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3714207489] = { "You gain Onslaught for 5 seconds per Endurance Charge when Hit" }, } }, - ["RegenerateLifeOnCastUniqueWand4"] = { affix = "", "Regenerate (6-8) Life over 1 second when you Cast a Spell", statOrder = { 2831 }, level = 1, group = "LeechLifeOnCast", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [1955882986] = { "Regenerate (6-8) Life over 1 second when you Cast a Spell" }, } }, - ["PhasingUniqueBootsStrDex4"] = { affix = "", "Phasing", statOrder = { 2821 }, level = 1, group = "Phasing", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [963290143] = { "Phasing" }, } }, - ["CullingCriticalStrikes"] = { affix = "", "Critical Strikes have Culling Strike", statOrder = { 3440 }, level = 1, group = "CullingCriticalStrikes", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [2996445420] = { "Critical Strikes have Culling Strike" }, } }, - ["IncreasedFireDamageTakenUniqueTwoHandSword6"] = { affix = "", "10% increased Fire Damage taken", statOrder = { 2242 }, level = 1, group = "FireDamageTaken", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire" }, tradeHashes = { [3743301799] = { "10% increased Fire Damage taken" }, } }, - ["ReducedFireDamageTakenUnique__1"] = { affix = "", "-(200-100) Fire Damage taken from Hits", statOrder = { 2237 }, level = 1, group = "FlatFireDamageTaken", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire" }, tradeHashes = { [614758785] = { "-(200-100) Fire Damage taken from Hits" }, } }, - ["FrenzyChargeOnIgniteUniqueTwoHandSword6"] = { affix = "", "Gain a Frenzy Charge if an Attack Ignites an Enemy", statOrder = { 2837 }, level = 1, group = "FrenzyChargeOnIgnite", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [3598983877] = { "Gain a Frenzy Charge if an Attack Ignites an Enemy" }, } }, - ["CullingAgainstBurningEnemiesUniqueTwoHandSword6"] = { affix = "", "Culling Strike against Burning Enemies", statOrder = { 2836 }, level = 1, group = "CullingAgainstBurningEnemies", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1777334641] = { "Culling Strike against Burning Enemies" }, } }, - ["CullingAgainstFrozenEnemiesUnique__1"] = { affix = "", "Culling Strike against Frozen Enemies", statOrder = { 5989 }, level = 1, group = "CullingAgainstFrozenEnemies", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2664667514] = { "Culling Strike against Frozen Enemies" }, } }, - ["ChaosDamageTakenUniqueBodyStr4"] = { affix = "", "-(40-30) Chaos Damage taken", statOrder = { 2839 }, level = 1, group = "ChaosDamageTaken", weightKey = { }, weightVal = { }, modTags = { "chaos" }, tradeHashes = { [496011033] = { "-(40-30) Chaos Damage taken" }, } }, - ["IncreasedCurseDurationUniqueShieldDex4"] = { affix = "", "Curse Skills have 100% increased Skill Effect Duration", statOrder = { 6000 }, level = 1, group = "CurseDuration", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [1435748744] = { "Curse Skills have 100% increased Skill Effect Duration" }, } }, - ["IncreasedCurseDurationUniqueShieldStrDex2"] = { affix = "", "Curse Skills have 100% increased Skill Effect Duration", statOrder = { 6000 }, level = 1, group = "CurseDuration", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [1435748744] = { "Curse Skills have 100% increased Skill Effect Duration" }, } }, - ["IncreasedCurseDurationUniqueHelmetInt9"] = { affix = "", "Curse Skills have (30-50)% increased Skill Effect Duration", statOrder = { 6000 }, level = 1, group = "CurseDuration", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [1435748744] = { "Curse Skills have (30-50)% increased Skill Effect Duration" }, } }, - ["IncreaseSocketedCurseGemLevelUniqueShieldDex4"] = { affix = "", "+3 to Level of Socketed Curse Gems", statOrder = { 184 }, level = 1, group = "IncreaseSocketedCurseGemLevel", weightKey = { }, weightVal = { }, modTags = { "caster", "gem", "curse" }, tradeHashes = { [3691695237] = { "+3 to Level of Socketed Curse Gems" }, } }, - ["IncreaseSocketedCurseGemLevelUniqueHelmetInt9"] = { affix = "", "+2 to Level of Socketed Curse Gems", statOrder = { 184 }, level = 1, group = "IncreaseSocketedCurseGemLevel", weightKey = { }, weightVal = { }, modTags = { "caster", "gem", "curse" }, tradeHashes = { [3691695237] = { "+2 to Level of Socketed Curse Gems" }, } }, - ["IncreaseSocketedCurseGemLevelUnique__1"] = { affix = "", "+2 to Level of Socketed Curse Gems", statOrder = { 184 }, level = 1, group = "IncreaseSocketedCurseGemLevel", weightKey = { }, weightVal = { }, modTags = { "caster", "gem", "curse" }, tradeHashes = { [3691695237] = { "+2 to Level of Socketed Curse Gems" }, } }, - ["IncreaseSocketedCurseGemLevelUnique__2"] = { affix = "", "+3 to Level of Socketed Curse Gems", statOrder = { 184 }, level = 1, group = "IncreaseSocketedCurseGemLevel", weightKey = { }, weightVal = { }, modTags = { "caster", "gem", "curse" }, tradeHashes = { [3691695237] = { "+3 to Level of Socketed Curse Gems" }, } }, - ["PoisonSpreadAndHealOnPoisonedKillUniqueDagger8"] = { affix = "", "On Killing a Poisoned Enemy, Enemies within 3 metres are Poisoned, and you and", "Allies Regenerate 400 Life per second for the Poison's duration if within 3 metres", statOrder = { 2851, 2851.1 }, level = 82, group = "PoisonSpreadAndHealOnPoisonedKill", weightKey = { }, weightVal = { }, modTags = { "poison", "resource", "life", "chaos", "ailment" }, tradeHashes = { [456916387] = { "On Killing a Poisoned Enemy, Enemies within 3 metres are Poisoned, and you and", "Allies Regenerate 400 Life per second for the Poison's duration if within 3 metres" }, [1168603868] = { "" }, } }, - ["IncreasedSelfCurseDurationUniqueShieldStrDex2"] = { affix = "", "100% increased Duration of Curses on you", statOrder = { 2171 }, level = 1, group = "SelfCurseDuration", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [2920970371] = { "100% increased Duration of Curses on you" }, } }, - ["ReducedSelfCurseDurationUniqueShieldDex3"] = { affix = "", "50% reduced Duration of Curses on you", statOrder = { 2171 }, level = 1, group = "SelfCurseDuration", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [2920970371] = { "50% reduced Duration of Curses on you" }, } }, - ["ChaosResistanceWhileUsingFlaskUniqueBootsStrDex3"] = { affix = "", "+50% to Chaos Resistance during any Flask Effect", statOrder = { 3301 }, level = 1, group = "ChaosResistanceWhileUsingFlask", weightKey = { }, weightVal = { }, modTags = { "flask", "chaos", "resistance" }, tradeHashes = { [392168009] = { "+50% to Chaos Resistance during any Flask Effect" }, } }, - ["SetElementalResistancesUniqueHelmetStrInt4"] = { affix = "", "Elemental Resistances are Zero", statOrder = { 2835 }, level = 1, group = "SetElementalResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [85576425] = { "Elemental Resistances are Zero" }, } }, - ["AllDefencesUniqueHelmetStrInt4_"] = { affix = "", "(18-22)% increased Global Defences", statOrder = { 2833 }, level = 1, group = "AllDefences", weightKey = { }, weightVal = { }, modTags = { "defences" }, tradeHashes = { [1389153006] = { "(18-22)% increased Global Defences" }, } }, - ["AllDefencesVictorAmulet"] = { affix = "", "(5-10)% increased Global Defences", statOrder = { 2833 }, level = 1, group = "AllDefences", weightKey = { }, weightVal = { }, modTags = { "defences" }, tradeHashes = { [1389153006] = { "(5-10)% increased Global Defences" }, } }, - ["AllDefencesUnique__2"] = { affix = "", "100% increased Global Defences", statOrder = { 2833 }, level = 1, group = "AllDefences", weightKey = { }, weightVal = { }, modTags = { "defences" }, tradeHashes = { [1389153006] = { "100% increased Global Defences" }, } }, - ["AllDefencesUnique__3"] = { affix = "", "100% increased Global Defences", statOrder = { 2833 }, level = 1, group = "AllDefences", weightKey = { }, weightVal = { }, modTags = { "defences" }, tradeHashes = { [1389153006] = { "100% increased Global Defences" }, } }, - ["AllDefencesUnique__4"] = { affix = "", "(15-20)% increased Global Defences", statOrder = { 2833 }, level = 1, group = "AllDefences", weightKey = { }, weightVal = { }, modTags = { "defences" }, tradeHashes = { [1389153006] = { "(15-20)% increased Global Defences" }, } }, - ["AllDefencesUnique__5"] = { affix = "", "(10-15)% increased Global Defences", statOrder = { 2833 }, level = 1, group = "AllDefences", weightKey = { }, weightVal = { }, modTags = { "defences" }, tradeHashes = { [1389153006] = { "(10-15)% increased Global Defences" }, } }, - ["DodgeImplicitMarakethSword1"] = { affix = "", "15% chance to Maim on Hit", statOrder = { 7989 }, level = 1, group = "LocalChanceToMaim", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2763429652] = { "15% chance to Maim on Hit" }, } }, - ["DodgeImplicitMarakethSword2"] = { affix = "", "20% chance to Maim on Hit", statOrder = { 7989 }, level = 1, group = "LocalChanceToMaim", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2763429652] = { "20% chance to Maim on Hit" }, } }, - ["AllDefensesImplicitJetRing"] = { affix = "", "(5-10)% increased Global Defences", statOrder = { 2833 }, level = 1, group = "AllDefences", weightKey = { }, weightVal = { }, modTags = { "defences" }, tradeHashes = { [1389153006] = { "(5-10)% increased Global Defences" }, } }, - ["LightningDamageOnBlockUniqueHelmetStrInt4"] = { affix = "", "Reflects 1 to (180-220) Lightning Damage to Attackers on Block", statOrder = { 2587 }, level = 1, group = "LightningDamageOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [1810011556] = { "Reflects 1 to (180-220) Lightning Damage to Attackers on Block" }, } }, - ["DuplicatesRingStats"] = { affix = "", "Reflects opposite Ring", statOrder = { 2853 }, level = 1, group = "DuplicatesRingStats", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [746505085] = { "Reflects opposite Ring" }, } }, - ["DegenerationDamageUniqueDagger8"] = { affix = "", "30% increased Damage over Time", statOrder = { 1210 }, level = 1, group = "DegenerationDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [967627487] = { "30% increased Damage over Time" }, } }, - ["DegenerationDamageEssence_1"] = { affix = "", "(14-20)% increased Damage over Time", statOrder = { 1210 }, level = 1, group = "DegenerationDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage" }, tradeHashes = { [967627487] = { "(14-20)% increased Damage over Time" }, } }, - ["DegenerationDamageUnique__1"] = { affix = "", "25% increased Damage over Time", statOrder = { 1210 }, level = 1, group = "DegenerationDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [967627487] = { "25% increased Damage over Time" }, } }, - ["DegenerationDamageUnique__2"] = { affix = "", "(20-30)% increased Damage over Time", statOrder = { 1210 }, level = 1, group = "DegenerationDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [967627487] = { "(20-30)% increased Damage over Time" }, } }, - ["DegenerationDamageUnique__3"] = { affix = "", "(30-40)% increased Damage over Time", statOrder = { 1210 }, level = 1, group = "DegenerationDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [967627487] = { "(30-40)% increased Damage over Time" }, } }, - ["DegenerationDamageUnique__5"] = { affix = "", "(20-30)% increased Damage over Time", statOrder = { 1210 }, level = 1, group = "DegenerationDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [967627487] = { "(20-30)% increased Damage over Time" }, } }, - ["DegenerationDamageImplicit1"] = { affix = "", "(14-18)% increased Damage over Time", statOrder = { 1210 }, level = 85, group = "DegenerationDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [967627487] = { "(14-18)% increased Damage over Time" }, } }, - ["FishingExoticFishUniqueFishingRod1"] = { affix = "", "You can catch Exotic Fish", statOrder = { 2854 }, level = 1, group = "FishingExoticFish", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [1471580517] = { "You can catch Exotic Fish" }, } }, - ["FireShocksUniqueHelmetDexInt4"] = { affix = "", "Your Fire Damage can Shock but not Ignite", statOrder = { 2856 }, level = 1, group = "FireShocks", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "lightning", "ailment" }, tradeHashes = { [2949096603] = { "Your Fire Damage can Shock but not Ignite" }, } }, - ["ColdIgnitesUniqueHelmetDexInt4_"] = { affix = "", "Your Cold Damage can Ignite but not Freeze or Chill", statOrder = { 2857 }, level = 1, group = "ColdIgnites", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "ailment" }, tradeHashes = { [1261612903] = { "Your Cold Damage can Ignite but not Freeze or Chill" }, } }, - ["LightningFreezesUniqueHelmetDexInt4"] = { affix = "", "Your Lightning Damage can Freeze but not Shock", statOrder = { 2858 }, level = 1, group = "LightningFreezes", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "lightning", "ailment" }, tradeHashes = { [1011772129] = { "Your Lightning Damage can Freeze but not Shock" }, } }, - ["SocketedCursesAreReflectedUniqueGlovesStrInt1"] = { affix = "", "Hexes applied by Socketed Curse Skills are Reflected back to you", statOrder = { 538 }, level = 1, group = "SocketedCursesAreReflected", weightKey = { }, weightVal = { }, modTags = { "caster", "gem", "curse" }, tradeHashes = { [32859524] = { "Hexes applied by Socketed Curse Skills are Reflected back to you" }, } }, - ["ChillImmunityWhenChilledUniqueGlovesStrInt1"] = { affix = "", "You cannot be Chilled for 3 seconds after being Chilled", statOrder = { 2893 }, level = 1, group = "ChillImmunityWhenChilled", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2306924373] = { "You cannot be Chilled for 3 seconds after being Chilled" }, } }, - ["FreezeImmunityWhenFrozenUniqueGlovesStrInt1"] = { affix = "", "You cannot be Frozen for 3 seconds after being Frozen", statOrder = { 2895 }, level = 1, group = "FreezeImmunityWhenFrozen", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3612464552] = { "You cannot be Frozen for 3 seconds after being Frozen" }, } }, - ["IgniteImmunityWhenIgnitedUniqueGlovesStrInt1"] = { affix = "", "You cannot be Ignited for 3 seconds after being Ignited", statOrder = { 2896 }, level = 1, group = "IgniteImmunityWhenIgnited", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [947072590] = { "You cannot be Ignited for 3 seconds after being Ignited" }, } }, - ["ShockImmunityWhenShockedUniqueGlovesStrInt1"] = { affix = "", "You cannot be Shocked for 3 seconds after being Shocked", statOrder = { 2897 }, level = 1, group = "ShockImmunityWhenShocked", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [215346464] = { "You cannot be Shocked for 3 seconds after being Shocked" }, } }, - ["GrantFrenzyChargesToAlliesOnDeathUniqueGlovesStrInt1"] = { affix = "", "You grant (4-6) Frenzy Charges to allies on Death", statOrder = { 2899 }, level = 1, group = "GrantFrenzyChargesToAlliesOnDeath", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [2105456174] = { "You grant (4-6) Frenzy Charges to allies on Death" }, } }, - ["PowerChargeOnNonCritUniqueRing17"] = { affix = "", "Gain a Power Charge on Non-Critical Strike", statOrder = { 2900 }, level = 1, group = "PowerChargeOnNonCrit", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [1592029809] = { "Gain a Power Charge on Non-Critical Strike" }, } }, - ["ConsumeAllPowerChargesOnCritUniqueRing17"] = { affix = "", "Lose all Power Charges on Critical Strike", statOrder = { 2901 }, level = 75, group = "ConsumeAllPowerChargesOnCrit", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [2735889191] = { "Lose all Power Charges on Critical Strike" }, } }, - ["CastSocketedLightningSpellsOnHit"] = { affix = "", "Trigger a Socketed Lightning Spell on Hit, with a 0.25 second Cooldown", "Socketed Lightning Spells have no Cost if Triggered", statOrder = { 826, 826.1 }, level = 1, group = "CastSocketedLightningSpellsOnHit", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "caster" }, tradeHashes = { [654971543] = { "Trigger a Socketed Lightning Spell on Hit, with a 0.25 second Cooldown", "Socketed Lightning Spells have no Cost if Triggered" }, } }, - ["UndyingBreathCurseAuraDisplayUniqueStaff5"] = { affix = "", "Nearby Enemies have 18% increased Effect of Curses on them", statOrder = { 2701 }, level = 1, group = "UndyingBreathCurseAuraDisplay", weightKey = { }, weightVal = { }, modTags = { "caster", "aura", "curse" }, tradeHashes = { [443525707] = { "Nearby Enemies have 18% increased Effect of Curses on them" }, } }, - ["UndyingBreathDamageAuraDisplayUniqueStaff5"] = { affix = "", "Nearby allies gain 18% increased Damage", statOrder = { 2906 }, level = 1, group = "UndyingBreathDamageAuraDisplay", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [3175679225] = { "Nearby allies gain 18% increased Damage" }, } }, - ["CurseAreaOfEffectUniqueStaff5"] = { affix = "", "18% increased Area of Effect of Hex Skills", statOrder = { 2225 }, level = 1, group = "CurseAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [153777645] = { "18% increased Area of Effect of Hex Skills" }, } }, - ["CurseAreaOfEffectUniqueQuiver5"] = { affix = "", "40% reduced Area of Effect of Hex Skills", statOrder = { 2225 }, level = 1, group = "CurseAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [153777645] = { "40% reduced Area of Effect of Hex Skills" }, } }, - ["CurseAreaOfEffectUnique__1"] = { affix = "", "60% increased Area of Effect of Hex Skills", statOrder = { 2225 }, level = 1, group = "CurseAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [153777645] = { "60% increased Area of Effect of Hex Skills" }, } }, - ["CurseAreaOfEffectUnique__2_"] = { affix = "", "60% increased Area of Effect of Hex Skills", statOrder = { 2225 }, level = 76, group = "CurseAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [153777645] = { "60% increased Area of Effect of Hex Skills" }, } }, - ["CurseAreaOfEffectUnique__3"] = { affix = "", "50% increased Area of Effect of Hex Skills", statOrder = { 2225 }, level = 1, group = "CurseAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [153777645] = { "50% increased Area of Effect of Hex Skills" }, } }, - ["CurseAreaOfEffectUnique__4"] = { affix = "", "(25-50)% reduced Area of Effect of Hex Skills", statOrder = { 2225 }, level = 40, group = "CurseAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [153777645] = { "(25-50)% reduced Area of Effect of Hex Skills" }, } }, - ["AuraIncreasedIncreasedAreaOfEffectUniqueStaff5"] = { affix = "", "18% increased Area of Effect of Aura Skills", statOrder = { 2224 }, level = 1, group = "AuraIncreasedIncreasedAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHashes = { [895264825] = { "18% increased Area of Effect of Aura Skills" }, } }, - ["AuraIncreasedIncreasedAreaOfEffectUnique_1"] = { affix = "", "15% increased Area of Effect of Aura Skills", statOrder = { 2224 }, level = 97, group = "AuraIncreasedIncreasedAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHashes = { [895264825] = { "15% increased Area of Effect of Aura Skills" }, } }, - ["AuraIncreasedIncreasedAreaOfEffectUnique_2"] = { affix = "", "(20-30)% increased Area of Effect of Aura Skills", statOrder = { 2224 }, level = 1, group = "AuraIncreasedIncreasedAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHashes = { [895264825] = { "(20-30)% increased Area of Effect of Aura Skills" }, } }, - ["AuraIncreasedIncreasedAreaOfEffectUnique_3"] = { affix = "", "(20-30)% increased Area of Effect of Aura Skills", statOrder = { 2224 }, level = 1, group = "AuraIncreasedIncreasedAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHashes = { [895264825] = { "(20-30)% increased Area of Effect of Aura Skills" }, } }, - ["AuraIncreasedIncreasedAreaOfEffectUnique_4"] = { affix = "", "(20-30)% increased Area of Effect of Aura Skills", statOrder = { 2224 }, level = 1, group = "AuraIncreasedIncreasedAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHashes = { [895264825] = { "(20-30)% increased Area of Effect of Aura Skills" }, } }, - ["AuraIncreasedIncreasedAreaOfEffectUnique_5"] = { affix = "", "(20-30)% increased Area of Effect of Aura Skills", statOrder = { 2224 }, level = 1, group = "AuraIncreasedIncreasedAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHashes = { [895264825] = { "(20-30)% increased Area of Effect of Aura Skills" }, } }, - ["AuraIncreasedIncreasedAreaOfEffectUnique_6"] = { affix = "", "(20-30)% increased Area of Effect of Aura Skills", statOrder = { 2224 }, level = 1, group = "AuraIncreasedIncreasedAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHashes = { [895264825] = { "(20-30)% increased Area of Effect of Aura Skills" }, } }, - ["ColdDamageModsApplyToColdAuraEffectAtPercentUnique_1"] = { affix = "", "Increases and Reductions to Cold Damage also apply to Effect of", "Auras from Cold Skills at (10-15)% of their value, up to a maximum of 150%", statOrder = { 4596, 4596.1 }, level = 53, group = "ColdDamageAppliesToColdAuraEffectUnique", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "aura" }, tradeHashes = { [935686778] = { "Increases and Reductions to Cold Damage also apply to Effect of", "Auras from Cold Skills at (10-15)% of their value, up to a maximum of 150%" }, } }, - ["LightningDamageModsApplyToLightningAuraEffectAtPercentUnique_1"] = { affix = "", "Increases and Reductions to Lightning Damage also apply to Effect of", "Auras from Lightning Skills at (10-15)% of their value, up to a maximum of 150%", statOrder = { 4602, 4602.1 }, level = 53, group = "LightningDamageAppliesToLightningAuraEffectUnique", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "aura" }, tradeHashes = { [232010308] = { "Increases and Reductions to Lightning Damage also apply to Effect of", "Auras from Lightning Skills at (10-15)% of their value, up to a maximum of 150%" }, } }, - ["FireDamageModsApplyToFireAuraEffectAtPercentUnique_1"] = { affix = "", "Increases and Reductions to Fire Damage also apply to Effect of", "Auras from Fire Skills at (10-15)% of their value, up to a maximum of 150%", statOrder = { 4598, 4598.1 }, level = 53, group = "FireDamageAppliesToFireAuraEffectUnique", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "aura" }, tradeHashes = { [1320057994] = { "Increases and Reductions to Fire Damage also apply to Effect of", "Auras from Fire Skills at (10-15)% of their value, up to a maximum of 150%" }, } }, - ["PhysicalDamageModsApplyToPhysicalAuraEffectAtPercentUnique_1"] = { affix = "", "Increases and Reductions to Physical Damage also apply to Effect of", "Auras from Physical Skills at (10-15)% of their value, up to a maximum of 150%", statOrder = { 4605, 4605.1 }, level = 53, group = "PhysicalDamageAppliesToPhysicalAuraEffectUnique", weightKey = { }, weightVal = { }, modTags = { "physical", "aura" }, tradeHashes = { [1092506510] = { "Increases and Reductions to Physical Damage also apply to Effect of", "Auras from Physical Skills at (10-15)% of their value, up to a maximum of 150%" }, } }, - ["ChaosDamageModsApplyToChaosAuraEffectAtPercentUnique_1"] = { affix = "", "Increases and Reductions to Chaos Damage also apply to Effect of", "Auras from Chaos Skills at (10-15)% of their value, up to a maximum of 150%", statOrder = { 4595, 4595.1 }, level = 53, group = "ChaosDamageAppliesToChaosAuraEffectUnique", weightKey = { }, weightVal = { }, modTags = { "chaos", "aura" }, tradeHashes = { [2628865242] = { "Increases and Reductions to Chaos Damage also apply to Effect of", "Auras from Chaos Skills at (10-15)% of their value, up to a maximum of 150%" }, } }, - ["DamageTakenUniqueStaff5"] = { affix = "", "18% increased effect of Non-Curse Auras from your Skills", statOrder = { 3566 }, level = 1, group = "AuraEffectGlobal", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHashes = { [1880071428] = { "18% increased effect of Non-Curse Auras from your Skills" }, } }, - ["AuraEffectGlobalUnique__1"] = { affix = "", "(10-15)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3566 }, level = 1, group = "AuraEffectGlobal", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHashes = { [1880071428] = { "(10-15)% increased effect of Non-Curse Auras from your Skills" }, } }, - ["AttackSpeedPerFrenzyChargeUniqueGlovesDexInt5"] = { affix = "", "2% increased Attack Speed per Frenzy Charge", statOrder = { 2049 }, level = 1, group = "AttackSpeedPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [3548561213] = { "2% increased Attack Speed per Frenzy Charge" }, } }, - ["AccuracyRatingPerFrenzyChargeUniqueGlovesDexInt5"] = { affix = "", "6% increased Accuracy Rating per Frenzy Charge", statOrder = { 2050 }, level = 1, group = "AccuracyRatingPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [3700381193] = { "6% increased Accuracy Rating per Frenzy Charge" }, } }, - ["FrenzyChargeDurationPerFrenzyChargeUniqueGlovesDexInt5"] = { affix = "", "10% reduced Frenzy Charge Duration per Frenzy Charge", statOrder = { 2051 }, level = 1, group = "FrenzyChargeDurationPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [2543931078] = { "10% reduced Frenzy Charge Duration per Frenzy Charge" }, } }, - ["PoisonDotMultiplierPerFrenzyChargeUniqueGlovesDexInt5"] = { affix = "", "+5% to Damage over Time Multiplier for Poison per Frenzy Charge", statOrder = { 9684 }, level = 1, group = "PoisonDotMultiplierPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, tradeHashes = { [3504652942] = { "+5% to Damage over Time Multiplier for Poison per Frenzy Charge" }, } }, - ["AtMaximumFrenzyChargesPoisonUniqueGlovesDexInt5"] = { affix = "", "While at maximum Frenzy Charges, Attacks Poison Enemies", statOrder = { 2052 }, level = 1, group = "AtMaximumFrenzyChargesPoison", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "attack", "ailment" }, tradeHashes = { [413362507] = { "While at maximum Frenzy Charges, Attacks Poison Enemies" }, } }, - ["AtMaximumFrenzyChargesChanceToPoisonUnique_1_"] = { affix = "", "Attacks have 60% chance to Poison while at maximum Frenzy Charges", statOrder = { 2053 }, level = 1, group = "AtMaximumFrenzyChargesChanceToPoison", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "attack", "ailment" }, tradeHashes = { [3654074125] = { "Attacks have 60% chance to Poison while at maximum Frenzy Charges" }, } }, - ["NecromanticAegisUniqueHelmetStrDex5"] = { affix = "", "All bonuses from an Equipped Shield apply to your Minions instead of you", statOrder = { 2192 }, level = 1, group = "NecromanticAegis", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [2739284880] = { "All bonuses from an Equipped Shield apply to your Minions instead of you" }, } }, - ["MinionBlockChanceUniqueHelmetStrDex5"] = { affix = "", "Minions have +10% Chance to Block Attack Damage", statOrder = { 2903 }, level = 1, group = "MinionBlockChance", weightKey = { }, weightVal = { }, modTags = { "block", "minion" }, tradeHashes = { [3374054207] = { "Minions have +10% Chance to Block Attack Damage" }, } }, - ["MinionLifeRegenerationUniqueHelmetStrDex5"] = { affix = "", "Minions Regenerate 2% of Life per second", statOrder = { 2911 }, level = 1, group = "MinionLifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, tradeHashes = { [2479683456] = { "Minions Regenerate 2% of Life per second" }, } }, - ["MinionLifeRegenerationUnique__1"] = { affix = "", "Minions Regenerate 1% of Life per second", statOrder = { 2911 }, level = 1, group = "MinionLifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, tradeHashes = { [2479683456] = { "Minions Regenerate 1% of Life per second" }, } }, - ["MinionArmourUniqueHelmetStrDex5"] = { affix = "", "Minions have +(300-350) to Armour", statOrder = { 2905 }, level = 1, group = "MinionArmour", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "minion" }, tradeHashes = { [2048970144] = { "Minions have +(300-350) to Armour" }, } }, - ["IncreasedAccuracyPercentImplicitQuiver7"] = { affix = "", "(20-30)% increased Global Accuracy Rating", statOrder = { 1434 }, level = 5, group = "IncreasedAccuracyPercent", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [624954515] = { "(20-30)% increased Global Accuracy Rating" }, } }, - ["IncreasedAccuracyPercentImplicitQuiver7New"] = { affix = "", "(20-30)% increased Global Accuracy Rating", statOrder = { 1434 }, level = 45, group = "IncreasedAccuracyPercent", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [624954515] = { "(20-30)% increased Global Accuracy Rating" }, } }, - ["IncreasedAccuracyPercentUnique__1"] = { affix = "", "(30-40)% increased Global Accuracy Rating", statOrder = { 1434 }, level = 1, group = "IncreasedAccuracyPercent", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [624954515] = { "(30-40)% increased Global Accuracy Rating" }, } }, - ["DisplaySocketedSkillsChainUniqueOneHandMace3"] = { affix = "", "Socketed Gems Chain 1 additional times", statOrder = { 540 }, level = 1, group = "DisplaySocketedSkillsChain", weightKey = { }, weightVal = { }, modTags = { "skill", "gem" }, tradeHashes = { [2788729902] = { "Socketed Gems Chain 1 additional times" }, } }, - ["LocalIncreaseSocketedVaalGemLevelUniqueGlovesStrDex4"] = { affix = "", "+5 to Level of Socketed Vaal Gems", statOrder = { 188 }, level = 1, group = "LocalIncreaseSocketedVaalGemLevel", weightKey = { }, weightVal = { }, modTags = { "vaal", "gem" }, tradeHashes = { [1170386874] = { "+5 to Level of Socketed Vaal Gems" }, } }, - ["LocalIncreaseSocketedNonVaalGemLevelUnique__1"] = { affix = "", "-5 to Level of Socketed Non-Vaal Gems", statOrder = { 192 }, level = 1, group = "LocalIncreaseSocketedNonVaalGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [2574694107] = { "-5 to Level of Socketed Non-Vaal Gems" }, } }, - ["LocalIncreaseSocketedVaalGemLevelUnique__1"] = { affix = "", "+2 to Level of Socketed Vaal Gems", statOrder = { 188 }, level = 1, group = "LocalIncreaseSocketedVaalGemLevel", weightKey = { }, weightVal = { }, modTags = { "vaal", "gem" }, tradeHashes = { [1170386874] = { "+2 to Level of Socketed Vaal Gems" }, } }, - ["RingHasOneSocket"] = { affix = "", "Has 1 Socket", statOrder = { 69 }, level = 7, group = "HasXSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4077843608] = { "Has 1 Socket" }, } }, - ["QuiverHasOneSocket"] = { affix = "", "Has 1 Socket", statOrder = { 69 }, level = 57, group = "HasXSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4077843608] = { "Has 1 Socket" }, } }, - ["AmuletHasOneSocket"] = { affix = "", "Has 1 Socket", statOrder = { 69 }, level = 7, group = "HasXSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4077843608] = { "Has 1 Socket" }, } }, - ["BeltHasOneSocket"] = { affix = "", "Has 1 Socket", statOrder = { 69 }, level = 70, group = "HasXSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4077843608] = { "Has 1 Socket" }, } }, - ["HasSixSocketsUnique__1"] = { affix = "", "Has 6 Sockets", statOrder = { 69 }, level = 1, group = "HasXSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4077843608] = { "Has 6 Sockets" }, } }, - ["HasOneSocketUnique__1"] = { affix = "", "Has 1 Socket", statOrder = { 69 }, level = 1, group = "HasXSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4077843608] = { "Has 1 Socket" }, } }, - ["HasOneSocketUnique__2"] = { affix = "", "Has 1 Socket", statOrder = { 69 }, level = 1, group = "HasXSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4077843608] = { "Has 1 Socket" }, } }, - ["HasOneSocketUnique__3"] = { affix = "", "Has 1 Socket", statOrder = { 69 }, level = 1, group = "HasXSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4077843608] = { "Has 1 Socket" }, } }, - ["HasTwoSocketsUnique__1"] = { affix = "", "Has 2 Sockets", statOrder = { 69 }, level = 57, group = "HasXSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4077843608] = { "Has 2 Sockets" }, } }, - ["HasThreeSocketsUnique__1_"] = { affix = "", "Has 3 Sockets", statOrder = { 69 }, level = 1, group = "HasXSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4077843608] = { "Has 3 Sockets" }, } }, - ["IncreasedProjectileDamageUniqueQuiver4"] = { affix = "", "(15-20)% increased Projectile Damage", statOrder = { 1996 }, level = 1, group = "ProjectileDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [1839076647] = { "(15-20)% increased Projectile Damage" }, } }, - ["IncreasedProjectileDamageUniqueStaff10"] = { affix = "", "(60-100)% increased Projectile Damage", statOrder = { 1996 }, level = 1, group = "ProjectileDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [1839076647] = { "(60-100)% increased Projectile Damage" }, } }, - ["IncreasedProjectileDamageUniqueBootsDexInt4"] = { affix = "", "(20-40)% increased Projectile Damage", statOrder = { 1996 }, level = 1, group = "ProjectileDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [1839076647] = { "(20-40)% increased Projectile Damage" }, } }, - ["IncreasedProjectileDamageUnique__5"] = { affix = "", "20% increased Projectile Damage", statOrder = { 1996 }, level = 1, group = "ProjectileDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [1839076647] = { "20% increased Projectile Damage" }, } }, - ["IncreasedProjectileDamageUnique__1"] = { affix = "", "(30-50)% increased Projectile Damage", statOrder = { 1996 }, level = 1, group = "ProjectileDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [1839076647] = { "(30-50)% increased Projectile Damage" }, } }, - ["IncreasedProjectileDamageUnique___4"] = { affix = "", "(30-50)% increased Projectile Damage", statOrder = { 1996 }, level = 1, group = "ProjectileDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [1839076647] = { "(30-50)% increased Projectile Damage" }, } }, - ["IncreasedProjectileDamageUnique__6"] = { affix = "", "30% increased Projectile Damage", statOrder = { 1996 }, level = 1, group = "ProjectileDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [1839076647] = { "30% increased Projectile Damage" }, } }, - ["IncreasedProjectileDamageUnique___10_"] = { affix = "", "(30-50)% increased Projectile Damage", statOrder = { 1996 }, level = 1, group = "ProjectileDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [1839076647] = { "(30-50)% increased Projectile Damage" }, } }, - ["IncreasedProjectileDamageUnique___11"] = { affix = "", "(25-35)% increased Projectile Damage", statOrder = { 1996 }, level = 1, group = "ProjectileDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [1839076647] = { "(25-35)% increased Projectile Damage" }, } }, - ["SpellBlockPercentageUniqueQuiver4"] = { affix = "", "(12-15)% Chance to Block Spell Damage", statOrder = { 1160 }, level = 1, group = "SpellBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [561307714] = { "(12-15)% Chance to Block Spell Damage" }, } }, - ["SpellBlockPercentageUniqueShieldDex6"] = { affix = "", "(8-12)% Chance to Block Spell Damage", statOrder = { 1160 }, level = 1, group = "SpellBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [561307714] = { "(8-12)% Chance to Block Spell Damage" }, } }, - ["SupportedByEchoUniqueStaff6"] = { affix = "", "Socketed Gems are Supported by Level 1 Greater Spell Echo", statOrder = { 225 }, level = 1, group = "DisplaySupportedByLevel1GreaterEcho", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [2530022765] = { "Socketed Gems are Supported by Level 1 Greater Spell Echo" }, } }, - ["SupportedByEchoUniqueWand8"] = { affix = "", "Socketed Gems are Supported by Level 10 Spell Echo", statOrder = { 412 }, level = 1, group = "DisplaySupportedByEchoLevel10Boolean", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [725896422] = { "Socketed Gems are Supported by Level 10 Spell Echo" }, } }, - ["SupportedByEchoUniqueWand8New_"] = { affix = "", "Socketed Gems are Supported by Level 10 Spell Echo", statOrder = { 493 }, level = 1, group = "DisplaySupportedByEcho", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [438778966] = { "Socketed Gems are Supported by Level 10 Spell Echo" }, } }, - ["ControlledDestructionSupportUniqueWand8"] = { affix = "", "Socketed Gems are Supported by Level 10 Controlled Destruction", statOrder = { 525 }, level = 1, group = "ControlledDestructionSupport", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [3718597497] = { "Socketed Gems are Supported by Level 10 Controlled Destruction" }, } }, - ["SupportedByArcaneSurgeUniqueWand8"] = { affix = "", "Socketed Gems are Supported by Level 10 Arcane Surge", statOrder = { 226 }, level = 1, group = "SupportedByArcaneSurge", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [2287264161] = { "Socketed Gems are Supported by Level 10 Arcane Surge" }, } }, - ["SpellDodgeUniqueBootsDex7_"] = { affix = "", "+(21-24)% chance to Suppress Spell Damage", statOrder = { 1142 }, level = 85, group = "ChanceToSuppressSpellsOld", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [492027537] = { "+(21-24)% chance to Suppress Spell Damage" }, } }, - ["SpellDodgeUniqueBootsDex7New"] = { affix = "", "+(20-26)% chance to Suppress Spell Damage", statOrder = { 1143 }, level = 85, group = "ChanceToSuppressSpells", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3680664274] = { "+(20-26)% chance to Suppress Spell Damage" }, } }, - ["FireDamageLifeLeechPerMyriadUniqueBelt9a_"] = { affix = "", "100% of Fire Damage Leeched as Life", statOrder = { 1669 }, level = 85, group = "FireDamageLifeLeech", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "elemental", "fire" }, tradeHashes = { [2760596458] = { "100% of Fire Damage Leeched as Life" }, } }, - ["FireDamageLifeLeechPermyriadUniqueBelt9aNew"] = { affix = "", "0.6% of Fire Damage Leeched as Life", statOrder = { 1670 }, level = 85, group = "FireDamageLifeLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "elemental", "fire" }, tradeHashes = { [3848282610] = { "0.6% of Fire Damage Leeched as Life" }, } }, - ["ColdDamageLifeLeechPerMyriadUniqueBelt9b"] = { affix = "", "100% of Cold Damage Leeched as Life", statOrder = { 1674 }, level = 85, group = "ColdDamageLifeLeech", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "elemental", "cold" }, tradeHashes = { [280832469] = { "100% of Cold Damage Leeched as Life" }, } }, - ["ColdDamageLifeLeechPermyriadUniqueBelt9bNew"] = { affix = "", "0.6% of Cold Damage Leeched as Life", statOrder = { 1675 }, level = 85, group = "ColdDamageLifeLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "elemental", "cold" }, tradeHashes = { [3999401129] = { "0.6% of Cold Damage Leeched as Life" }, } }, - ["LightningDamageLifeLeechPerMyriadUniqueBelt9c"] = { affix = "", "100% of Lightning Damage Leeched as Life", statOrder = { 1678 }, level = 85, group = "LightningDamageLifeLeech", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "elemental", "lightning" }, tradeHashes = { [888622567] = { "100% of Lightning Damage Leeched as Life" }, } }, - ["LightningDamageLifeLeechPermyriadUniqueBelt9cNew"] = { affix = "", "0.6% of Lightning Damage Leeched as Life", statOrder = { 1679 }, level = 85, group = "LightningDamageLifeLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "elemental", "lightning" }, tradeHashes = { [80079005] = { "0.6% of Lightning Damage Leeched as Life" }, } }, - ["PhysicalDamageLifeLeechPerMyriadUniqueBelt9d"] = { affix = "", "100% of Physical Damage Leeched as Life", statOrder = { 1665 }, level = 85, group = "PhysicalDamageLifeLeech", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical" }, tradeHashes = { [3992463881] = { "100% of Physical Damage Leeched as Life" }, } }, - ["PhysicalDamageLifeLeechPermyriadUniqueBelt9dNew"] = { affix = "", "0.6% of Physical Damage Leeched as Life", statOrder = { 1666 }, level = 85, group = "PhysicalDamageLifeLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical" }, tradeHashes = { [3764265320] = { "0.6% of Physical Damage Leeched as Life" }, } }, - ["IgniteChanceWhileUsingFlaskUniqueBelt9a"] = { affix = "", "(20-30)% chance to Ignite during any Flask Effect", statOrder = { 2922 }, level = 85, group = "ChanceToIgnightWhileUsingFlask", weightKey = { }, weightVal = { }, modTags = { "flask", "elemental", "fire", "ailment" }, tradeHashes = { [3888064854] = { "(20-30)% chance to Ignite during any Flask Effect" }, } }, - ["FreezeChanceWhileUsingFlaskUniqueBelt9b"] = { affix = "", "(20-30)% chance to Freeze during any Flask Effect", statOrder = { 2923 }, level = 85, group = "ChanceToFreezeWhileUsingFlask", weightKey = { }, weightVal = { }, modTags = { "flask", "elemental", "cold", "ailment" }, tradeHashes = { [2332726055] = { "(20-30)% chance to Freeze during any Flask Effect" }, } }, - ["ShockChanceWhileUsingFlaskUniqueBelt9c"] = { affix = "", "(20-30)% chance to Shock during any Flask Effect", statOrder = { 2924 }, level = 85, group = "ChanceToShockWhileUsingFlask", weightKey = { }, weightVal = { }, modTags = { "flask", "elemental", "lightning", "ailment" }, tradeHashes = { [796406325] = { "(20-30)% chance to Shock during any Flask Effect" }, } }, - ["ReducedStunThresholdWhileUsingFlaskUniqueBelt9d"] = { affix = "", "25% reduced Enemy Stun Threshold during any Flask Effect", statOrder = { 2927 }, level = 85, group = "ReducedStunThresholdWhileUsingFlask", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [4228951304] = { "25% reduced Enemy Stun Threshold during any Flask Effect" }, } }, - ["ElementalDamagePercentAddedAsChaosUnique__1"] = { affix = "", "Gain (10-20)% of Elemental Damage as Extra Chaos Damage", statOrder = { 1942 }, level = 1, group = "ElementalDamagePercentAddedAsChaos", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "chaos" }, tradeHashes = { [3495544060] = { "Gain (10-20)% of Elemental Damage as Extra Chaos Damage" }, } }, - ["ElementalDamagePercentAddedAsChaosUnique__2"] = { affix = "", "Gain (10-20)% of Elemental Damage as Extra Chaos Damage", statOrder = { 1942 }, level = 1, group = "ElementalDamagePercentAddedAsChaos", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "chaos" }, tradeHashes = { [3495544060] = { "Gain (10-20)% of Elemental Damage as Extra Chaos Damage" }, } }, - ["ElementalDamagePercentAddedAsChaosUnique__3"] = { affix = "", "Gain (10-20)% of Elemental Damage as Extra Chaos Damage", statOrder = { 1942 }, level = 1, group = "ElementalDamagePercentAddedAsChaos", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "chaos" }, tradeHashes = { [3495544060] = { "Gain (10-20)% of Elemental Damage as Extra Chaos Damage" }, } }, - ["ElementalDamagePercentAddedAsChaosUnique__4"] = { affix = "", "Gain (5-8)% of Elemental Damage as Extra Chaos Damage", statOrder = { 1942 }, level = 1, group = "ElementalDamagePercentAddedAsChaos", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "chaos" }, tradeHashes = { [3495544060] = { "Gain (5-8)% of Elemental Damage as Extra Chaos Damage" }, } }, - ["FireDamageLifeLeechCorrupted"] = { affix = "", "100% of Fire Damage Leeched as Life", statOrder = { 1669 }, level = 1, group = "FireDamageLifeLeech", weightKey = { "amulet", "quiver", "two_hand_weapon", "weapon", "default", }, weightVal = { 1000, 1000, 1000, 200, 0 }, modTags = { "resource", "life", "elemental", "fire" }, tradeHashes = { [2760596458] = { "100% of Fire Damage Leeched as Life" }, } }, - ["ColdDamageLifeLeechCorrupted_"] = { affix = "", "100% of Cold Damage Leeched as Life", statOrder = { 1674 }, level = 1, group = "ColdDamageLifeLeech", weightKey = { "amulet", "quiver", "two_hand_weapon", "weapon", "default", }, weightVal = { 1000, 1000, 1000, 200, 0 }, modTags = { "resource", "life", "elemental", "cold" }, tradeHashes = { [280832469] = { "100% of Cold Damage Leeched as Life" }, } }, - ["LightningDamageLifeLeechCorrupted"] = { affix = "", "100% of Lightning Damage Leeched as Life", statOrder = { 1678 }, level = 1, group = "LightningDamageLifeLeech", weightKey = { "amulet", "quiver", "two_hand_weapon", "weapon", "default", }, weightVal = { 1000, 1000, 1000, 200, 0 }, modTags = { "resource", "life", "elemental", "lightning" }, tradeHashes = { [888622567] = { "100% of Lightning Damage Leeched as Life" }, } }, - ["DamageConversionFireUnique__1"] = { affix = "", "60% of Physical Damage Converted to Fire Damage", statOrder = { 1955 }, level = 1, group = "ConvertPhysicalToFire", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [1533563525] = { "60% of Physical Damage Converted to Fire Damage" }, } }, - ["PierceCurruption"] = { affix = "", "Arrows Pierce 1 additional Target", statOrder = { 4782 }, level = 1, group = "CorruptionBowArrowPierce", weightKey = { "bow", "default", }, weightVal = { 0, 0 }, modTags = { "attack" }, tradeHashes = { [3492025235] = { "Arrows Pierce 1 additional Target" }, } }, - ["AdditionalPierceUnique__1"] = { affix = "", "Arrows Pierce 2 additional Targets", statOrder = { 1791 }, level = 1, group = "AdditionalArrowPierce", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [3423006863] = { "Arrows Pierce 2 additional Targets" }, } }, - ["CurseOnHitTemporalChainsUnique__1"] = { affix = "", "Curse Enemies with Temporal Chains on Hit", statOrder = { 2522 }, level = 1, group = "CurseOnHitLevelTemporalChains", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [3433724931] = { "Curse Enemies with Temporal Chains on Hit" }, } }, - ["CurseOnHitCriticalWeaknessUnique__1"] = { affix = "", "Trigger Level 10 Assassin's Mark when you Hit a Rare or Unique Enemy and have no Mark", statOrder = { 758 }, level = 1, group = "CurseOnHitCriticalWeakness", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [3382957283] = { "Trigger Level 10 Assassin's Mark when you Hit a Rare or Unique Enemy and have no Mark" }, } }, - ["CurseOnHitCriticalWeaknessUniqueNewUnique__1"] = { affix = "", "Trigger Level 10 Assassin's Mark when you Hit a Rare or Unique Enemy and have no Mark", statOrder = { 798 }, level = 1, group = "TriggerOnRareAssassinsMark", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [3924520095] = { "Trigger Level 10 Assassin's Mark when you Hit a Rare or Unique Enemy and have no Mark" }, } }, - ["SupportedByCastOnStunUnique___1"] = { affix = "", "Socketed Gems are supported by Level 10 Cast when Stunned", statOrder = { 477 }, level = 15, group = "SupportedByCastOnStun", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [1079148723] = { "Socketed Gems are supported by Level 10 Cast when Stunned" }, } }, - ["SupportedByMeleeSplashUnique__1_"] = { affix = "", "Socketed Gems are supported by Level 30 Melee Splash", statOrder = { 471 }, level = 1, group = "SupportedByMeleeSplash", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [1811422871] = { "Socketed Gems are supported by Level 30 Melee Splash" }, } }, - ["SupportedByAddedFireDamageUnique__1_"] = { affix = "", "Socketed Gems are Supported by Level 10 Added Fire Damage", statOrder = { 462 }, level = 1, group = "DisplaySocketedGemsGetAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [2572192375] = { "Socketed Gems are Supported by Level 10 Added Fire Damage" }, } }, - ["PuritySkillUniqueAmulet22"] = { affix = "", "Grants Level 10 Purity of Elements Skill", statOrder = { 645 }, level = 7, group = "PuritySkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [105466375] = { "Grants Level 10 Purity of Elements Skill" }, } }, - ["HatredSkillUniqueDescentClaw1"] = { affix = "", "Grants Level 20 Hatred Skill", statOrder = { 649 }, level = 1, group = "HatredSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [2429546158] = { "Grants Level 20 Hatred Skill" }, } }, - ["SilenceImmunityUnique__1"] = { affix = "", "You cannot be Cursed with Silence", statOrder = { 3094 }, level = 36, group = "ImmuneToSilence", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [1654414582] = { "You cannot be Cursed with Silence" }, } }, - ["UniqueSpecialCorruptionAreaOfEffect_"] = { affix = "", "(15-25)% increased Area of Effect", statOrder = { 1880 }, level = 1, group = "AreaOfEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [280731498] = { "(15-25)% increased Area of Effect" }, } }, - ["UniqueSpecialCorruptionSkillEffectDuration"] = { affix = "", "(15-25)% increased Skill Effect Duration", statOrder = { 1895 }, level = 1, group = "SkillEffectDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3377888098] = { "(15-25)% increased Skill Effect Duration" }, } }, - ["UniqueSpecialCorruptionSocketedGemsManaMultiplier_"] = { affix = "", "Socketed Skill Gems get a 80% Cost & Reservation Multiplier", statOrder = { 530 }, level = 1, group = "SocketedSkillsManaMultiplier", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "gem" }, tradeHashes = { [2865550257] = { "Socketed Skill Gems get a 80% Cost & Reservation Multiplier" }, } }, - ["UniqueSpecialCorruptionCooldownRecoverySpeed__"] = { affix = "", "(8-12)% increased Cooldown Recovery Rate", statOrder = { 5005 }, level = 1, group = "GlobalCooldownRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1004011302] = { "(8-12)% increased Cooldown Recovery Rate" }, } }, - ["UniqueSpecialCorruptionItemQuantity_"] = { affix = "", "(5-7)% increased Quantity of Items found", statOrder = { 1592 }, level = 1, group = "ItemQuantityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [884586851] = { "(5-7)% increased Quantity of Items found" }, } }, - ["UniqueSpecialCorruptionAdditionalProjectile"] = { affix = "", "Skills fire an additional Projectile", statOrder = { 1792 }, level = 1, group = "AdditionalProjectiles", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [74338099] = { "Skills fire an additional Projectile" }, } }, - ["UniqueSpecialCorruptionAuraEffect"] = { affix = "", "(10-15)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3566 }, level = 1, group = "AuraEffect", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHashes = { [1880071428] = { "(10-15)% increased effect of Non-Curse Auras from your Skills" }, } }, - ["UniqueSpecialCorruptionCurseEffect___"] = { affix = "", "(10-15)% increased Effect of your Curses", statOrder = { 2596 }, level = 1, group = "CurseEffectiveness", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [2353576063] = { "(10-15)% increased Effect of your Curses" }, } }, - ["UniqueSpecialCorruptionSocketedGemLevel"] = { affix = "", "+2 to Level of Socketed Gems", statOrder = { 162 }, level = 1, group = "LocalIncreaseSocketedGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [2843100721] = { "+2 to Level of Socketed Gems" }, } }, - ["UniqueSpecialCorruptionAllMinCharges"] = { affix = "", "+1 to Minimum Endurance, Frenzy and Power Charges", statOrder = { 9259 }, level = 1, group = "MinimumEndurancePowerFrenzyCharges", weightKey = { }, weightVal = { }, modTags = { "endurance_charge", "power_charge", "frenzy_charge" }, tradeHashes = { [66303477] = { "+1 to Minimum Endurance, Frenzy and Power Charges" }, } }, - ["UniqueSpecialCorruptionNearbyEnemiesBlinded"] = { affix = "", "Nearby Enemies are Blinded", statOrder = { 3396 }, level = 1, group = "NearbyEnemiesAreBlinded", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [223497523] = { "" }, [2826979740] = { "Nearby Enemies are Blinded" }, } }, - ["UniqueSpecialCorruptionNearbyEnemiesMalediction"] = { affix = "", "Nearby Enemies have Malediction", statOrder = { 3398 }, level = 1, group = "NearbyEnemiesHaveMalediction", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2774148053] = { "Nearby Enemies have Malediction" }, } }, - ["UniqueSpecialCorruptionNearbyEnemiesCrushed"] = { affix = "", "Nearby Enemies are Crushed", statOrder = { 3397 }, level = 1, group = "NearbyEnemiesAreCrushed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3608782127] = { "Nearby Enemies are Crushed" }, } }, - ["CriticalStrikesLeechInstantlyUniqueGlovesStr3"] = { affix = "", "Life and Mana Leech from Critical Strikes are instant", statOrder = { 2538 }, level = 94, group = "CriticalStrikesLeechIsInstant", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [3389184522] = { "Life and Mana Leech from Critical Strikes are instant" }, } }, - ["LocalArmourAndEvasionAndEnergyShieldUniqueBodyStrDexInt1i"] = { affix = "", "(270-340)% increased Armour, Evasion and Energy Shield", statOrder = { 1555 }, level = 94, group = "LocalArmourAndEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion", "energy_shield" }, tradeHashes = { [3523867985] = { "(270-340)% increased Armour, Evasion and Energy Shield" }, } }, - ["MinionUnholyMightOnKillUniqueBodyInt9"] = { affix = "", "Minions gain Unholy Might for 10 seconds on Kill", statOrder = { 2918 }, level = 1, group = "MinionUnholyMightOnKill", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [3835570161] = { "Minions gain Unholy Might for 10 seconds on Kill" }, } }, - ["ArrowPierceAppliesToProjectileDamageUniqueQuiver3"] = { affix = "", "Arrows deal 50% increased Damage with Hits and Ailments to Targets they Pierce", statOrder = { 4777 }, level = 45, group = "ArrowPierceAppliesToProjectileDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [3647471922] = { "Arrows deal 50% increased Damage with Hits and Ailments to Targets they Pierce" }, } }, - ["ArrowDamageAgainstPiercedTargetsUnique__1"] = { affix = "", "Arrows deal 50% increased Damage with Hits and Ailments to Targets they Pierce", statOrder = { 4776 }, level = 45, group = "ArrowDamageAgainstPiercedTargets", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [1019891080] = { "Arrows deal 50% increased Damage with Hits and Ailments to Targets they Pierce" }, } }, - ["OnslaughtOnVaalSkillUseUniqueGlovesStrDex4"] = { affix = "", "You gain Onslaught for 20 seconds on using a Vaal Skill", statOrder = { 2920 }, level = 1, group = "OnslaughtOnVaalSkillUse", weightKey = { }, weightVal = { }, modTags = { "vaal" }, tradeHashes = { [2654043939] = { "You gain Onslaught for 20 seconds on using a Vaal Skill" }, } }, - ["ElementalDamageLeechedAsLifeUniqueSceptre7"] = { affix = "", "100% of Elemental Damage Leeched as Life", statOrder = { 1685 }, level = 1, group = "ElementalDamageLeechedAsLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3780129663] = { "100% of Elemental Damage Leeched as Life" }, } }, - ["ElementalDamageLeechedAsLifePermyriadUniqueSceptre7_"] = { affix = "", "0.2% of Elemental Damage Leeched as Life", statOrder = { 1686 }, level = 1, group = "ElementalDamageLeechedAsLifePermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [720395808] = { "0.2% of Elemental Damage Leeched as Life" }, } }, - ["LocalIncreaseSocketedSupportGemLevelUniqueTwoHandAxe7"] = { affix = "", "+2 to Level of Socketed Support Gems", statOrder = { 189 }, level = 94, group = "LocalIncreaseSocketedSupportGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [4154259475] = { "+2 to Level of Socketed Support Gems" }, } }, - ["LocalIncreaseSocketedSupportGemLevelUniqueStaff12"] = { affix = "", "+1 to Level of Socketed Support Gems", statOrder = { 189 }, level = 1, group = "LocalIncreaseSocketedSupportGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [4154259475] = { "+1 to Level of Socketed Support Gems" }, } }, - ["LocalIncreaseSocketedSupportGemLevelUnique__1"] = { affix = "", "+2 to Level of Socketed Support Gems", statOrder = { 189 }, level = 1, group = "LocalIncreaseSocketedSupportGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [4154259475] = { "+2 to Level of Socketed Support Gems" }, } }, - ["AdditionalChainUniqueOneHandMace3"] = { affix = "", "Skills Chain +1 times", statOrder = { 1789 }, level = 1, group = "AdditionalChain", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1787073323] = { "Skills Chain +1 times" }, } }, - ["AdditionalChainUnique__1"] = { affix = "", "Skills Chain +2 times", statOrder = { 1789 }, level = 1, group = "AdditionalChain", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1787073323] = { "Skills Chain +2 times" }, } }, - ["AdditionalChainUnique__2"] = { affix = "", "Skills Chain +1 times", statOrder = { 1789 }, level = 1, group = "AdditionalChain", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1787073323] = { "Skills Chain +1 times" }, } }, - ["CurseTransferOnKillUniqueQuiver5"] = { affix = "", "Hexes Transfer to all Enemies within 3 metres when Hexed Enemy dies", statOrder = { 2934 }, level = 5, group = "CurseTransferOnKill", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [986616727] = { "Hexes Transfer to all Enemies within 3 metres when Hexed Enemy dies" }, } }, - ["AdditionalMeleeDamageToBurningEnemiesUniqueDagger6"] = { affix = "", "100% increased Melee Damage against Ignited Enemies", statOrder = { 1239 }, level = 1, group = "AdditionalMeleeDamageToBurningEnemies", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [17354819] = { "100% increased Melee Damage against Ignited Enemies" }, } }, - ["AdditionalMeleeDamageToShockedEnemiesUniqueDagger6"] = { affix = "", "100% increased Melee Damage against Shocked Enemies", statOrder = { 1237 }, level = 1, group = "AdditionalMeleeDamageToShockedEnemies", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [1138694108] = { "100% increased Melee Damage against Shocked Enemies" }, } }, - ["AdditionalMeleeDamageToFrozenEnemiesUniqueDagger6"] = { affix = "", "100% increased Melee Damage against Frozen Enemies", statOrder = { 1235 }, level = 1, group = "AdditionalMeleeDamageToFrozenEnemies", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [298331790] = { "100% increased Melee Damage against Frozen Enemies" }, } }, - ["ProjectileShockChanceUniqueDagger6"] = { affix = "", "Projectiles have (15-20)% chance to Shock", statOrder = { 2705 }, level = 1, group = "ProjectileShockChance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [2803352419] = { "Projectiles have (15-20)% chance to Shock" }, } }, - ["ProjectileFreezeChanceUniqueDagger6"] = { affix = "", "Projectiles have (15-20)% chance to Freeze", statOrder = { 2704 }, level = 1, group = "ProjectileFreezeChance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3733737728] = { "Projectiles have (15-20)% chance to Freeze" }, } }, - ["ProjectileIgniteChanceUniqueDagger6"] = { affix = "", "Projectiles have (15-20)% chance to Ignite", statOrder = { 2703 }, level = 1, group = "ProjectileIgniteChance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [4260460340] = { "Projectiles have (15-20)% chance to Ignite" }, } }, - ["SupportedByLifeLeechUniqueBodyStrInt5"] = { affix = "", "Socketed Gems are supported by Level 15 Life Leech", statOrder = { 483 }, level = 1, group = "SupportedByLifeLeech", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [891277550] = { "Socketed Gems are supported by Level 15 Life Leech" }, } }, - ["SupportedByLifeLeechUnique__1"] = { affix = "", "Socketed Gems are supported by Level 10 Life Leech", statOrder = { 483 }, level = 1, group = "SupportedByLifeLeech", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [891277550] = { "Socketed Gems are supported by Level 10 Life Leech" }, } }, - ["SupportedByChanceToBleedUnique__1"] = { affix = "", "Socketed Gems are supported by Level 1 Chance to Bleed", statOrder = { 484 }, level = 1, group = "SupportedByChanceToBleed", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [2178803872] = { "Socketed Gems are supported by Level 1 Chance to Bleed" }, } }, - ["ElementalDamageTakenAsChaosUniqueBodyStrInt5"] = { affix = "", "25% of Elemental Damage from Hits taken as Chaos Damage", statOrder = { 2453 }, level = 1, group = "ElementalDamageTakenAsChaos", weightKey = { }, weightVal = { }, modTags = { "elemental", "chaos" }, tradeHashes = { [1175213674] = { "25% of Elemental Damage from Hits taken as Chaos Damage" }, } }, - ["ArcaneVisionUniqueBodyStrInt5"] = { affix = "", "Light Radius is based on Energy Shield instead of Life", statOrder = { 2741 }, level = 1, group = "ArcaneVision", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3836017971] = { "Light Radius is based on Energy Shield instead of Life" }, } }, - ["PhysicalDamageFromBeastsUniqueBodyDex6"] = { affix = "", "-(50-40) Physical Damage taken from Hits by Animals", statOrder = { 2928 }, level = 1, group = "PhysicalDamageFromBeasts", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHashes = { [3277537093] = { "-(50-40) Physical Damage taken from Hits by Animals" }, } }, - ["WeaponLightningDamageUniqueOneHandMace3"] = { affix = "", "(80-100)% increased Lightning Damage", statOrder = { 1377 }, level = 1, group = "LightningDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(80-100)% increased Lightning Damage" }, } }, - ["WeaponPhysicalDamageAddedAsRandomElementUniqueBow11"] = { affix = "", "Gain 100% of Weapon Physical Damage as Extra Damage of a random Element", statOrder = { 2935 }, level = 1, group = "WeaponPhysicalDamageAddedAsRandomElement", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "attack" }, tradeHashes = { [1038949719] = { "Gain 100% of Weapon Physical Damage as Extra Damage of a random Element" }, } }, - ["WeaponPhysicalDamageAddedAsRandomElementDescentUniqueQuiver1"] = { affix = "", "Gain 25% of Weapon Physical Damage as Extra Damage of a random Element", statOrder = { 2935 }, level = 1, group = "WeaponPhysicalDamageAddedAsRandomElement", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "attack" }, tradeHashes = { [1038949719] = { "Gain 25% of Weapon Physical Damage as Extra Damage of a random Element" }, } }, - ["WeaponPhysicalDamageAddedAsRandomElementUnique__1__"] = { affix = "", "Gain 700% of Weapon Physical Damage as Extra Damage of a random Element", statOrder = { 2935 }, level = 1, group = "WeaponPhysicalDamageAddedAsRandomElement", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "attack" }, tradeHashes = { [1038949719] = { "Gain 700% of Weapon Physical Damage as Extra Damage of a random Element" }, } }, - ["WeaponPhysicalDamageAddedAsColdOrLightningUnique__1"] = { affix = "", "Hits with this Weapon gain (75-100)% of Physical Damage as Extra Cold or Lightning Damage", statOrder = { 4366 }, level = 1, group = "WeaponPhysicalDamageAddedAsColdOrLightning", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold", "lightning", "attack" }, tradeHashes = { [1023968711] = { "Hits with this Weapon gain (75-100)% of Physical Damage as Extra Cold or Lightning Damage" }, } }, - ["DamageTakenPerFrenzyChargeUniqueOneHandSword6"] = { affix = "", "1% increased Damage taken per Frenzy Charge", statOrder = { 2930 }, level = 1, group = "IncreaseDamageTakenPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1625103793] = { "1% increased Damage taken per Frenzy Charge" }, } }, - ["IncreaseLightningDamagePerFrenzyChargeUniqueOneHandSword6"] = { affix = "", "(15-20)% increased Lightning Damage per Frenzy Charge", statOrder = { 2931 }, level = 1, group = "IncreaseLightningDamagePerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [3693130674] = { "(15-20)% increased Lightning Damage per Frenzy Charge" }, } }, - ["LifeGainedOnEnemyDeathPerFrenzyChargeUniqueOneHandSword6"] = { affix = "", "20 Life gained on Kill per Frenzy Charge", statOrder = { 2932 }, level = 1, group = "LifeGainedOnEnemyDeathPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [1269609669] = { "20 Life gained on Kill per Frenzy Charge" }, } }, - ["CannotBeKnockedBack"] = { affix = "", "Cannot be Knocked Back", statOrder = { 1521 }, level = 1, group = "CannotBeKnockedBack", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4212255859] = { "Cannot be Knocked Back" }, } }, - ["UnwaveringStance"] = { affix = "", "Unwavering Stance", statOrder = { 10821 }, level = 1, group = "UnwaveringStance", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [1683578560] = { "Unwavering Stance" }, } }, - ["UnwaveringStanceUnique_2"] = { affix = "", "Unwavering Stance", statOrder = { 10821 }, level = 1, group = "UnwaveringStance", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [1683578560] = { "Unwavering Stance" }, } }, - ["ReducedEnergyShieldRegenerationRateUniqueQuiver7"] = { affix = "", "40% reduced Energy Shield Recharge Rate", statOrder = { 1565 }, level = 81, group = "EnergyShieldRegeneration", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2339757871] = { "40% reduced Energy Shield Recharge Rate" }, } }, - ["PowerChargeOnKnockbackUniqueStaff7"] = { affix = "", "10% chance to gain a Power Charge if you Knock an Enemy Back with Melee Damage", statOrder = { 2937 }, level = 1, group = "PowerChargeOnKnockback", weightKey = { }, weightVal = { }, modTags = { "power_charge", "attack" }, tradeHashes = { [2179619644] = { "10% chance to gain a Power Charge if you Knock an Enemy Back with Melee Damage" }, } }, - ["GrantsBearTrapUniqueShieldDexInt1"] = { affix = "", "Grants Level 25 Bear Trap Skill", statOrder = { 625 }, level = 1, group = "BearTrapSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [3541114083] = { "Grants Level 25 Bear Trap Skill" }, } }, - ["PowerChargeOnTrapThrowChanceUniqueShieldDexInt1"] = { affix = "", "25% chance to gain a Power Charge when you Throw a Trap", statOrder = { 2938 }, level = 1, group = "PowerChargeOnTrapThrow", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [1936544447] = { "25% chance to gain a Power Charge when you Throw a Trap" }, } }, - ["CritChancePercentPerStrengthUniqueOneHandSword8_"] = { affix = "", "1% increased Critical Strike Chance per 8 Strength", statOrder = { 2939 }, level = 1, group = "CritChancePercentPerStrength", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [3068290007] = { "1% increased Critical Strike Chance per 8 Strength" }, } }, - ["IncreasedAttackSpeedWhileIgnitedUniqueRing24"] = { affix = "", "(25-40)% increased Attack Speed while Ignited", statOrder = { 2940 }, level = 1, group = "AttackSpeedIncreasedWhileIgnited", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [2047819517] = { "(25-40)% increased Attack Speed while Ignited" }, } }, - ["IncreasedAttackSpeedWhileIgnitedUniqueJewel20"] = { affix = "", "(10-20)% increased Attack Speed while Ignited", statOrder = { 2940 }, level = 1, group = "AttackSpeedIncreasedWhileIgnited", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [2047819517] = { "(10-20)% increased Attack Speed while Ignited" }, } }, - ["IncreasedCastSpeedWhileIgnitedUniqueRing24"] = { affix = "", "(25-40)% increased Cast Speed while Ignited", statOrder = { 2941 }, level = 1, group = "CastSpeedIncreasedWhileIgnited", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [3660039923] = { "(25-40)% increased Cast Speed while Ignited" }, } }, - ["IncreasedCastSpeedWhileIgnitedUniqueJewel20_"] = { affix = "", "(10-20)% increased Cast Speed while Ignited", statOrder = { 2941 }, level = 1, group = "CastSpeedIncreasedWhileIgnited", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [3660039923] = { "(10-20)% increased Cast Speed while Ignited" }, } }, - ["IncreasedChanceToIgniteUniqueRing24"] = { affix = "", "(5-10)% chance to Ignite", statOrder = { 2026 }, level = 1, group = "ChanceToIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "(5-10)% chance to Ignite" }, } }, - ["IncreasedChanceToIgniteUniqueRing31"] = { affix = "", "10% chance to Ignite", statOrder = { 2026 }, level = 1, group = "ChanceToIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "10% chance to Ignite" }, } }, - ["IncreasedChanceToBeIgnitedUniqueRing24"] = { affix = "", "+25% chance to be Ignited", statOrder = { 2948 }, level = 1, group = "IncreasedChanceToBeIgnited", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1618339429] = { "+25% chance to be Ignited" }, } }, - ["IncreasedChanceToBeIgnitedUnique__1"] = { affix = "", "+25% chance to be Ignited", statOrder = { 2948 }, level = 1, group = "IncreasedChanceToBeIgnited", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1618339429] = { "+25% chance to be Ignited" }, } }, - ["CausesPoisonOnCritUniqueDagger9"] = { affix = "", "50% chance to Cause Poison on Critical Strike", statOrder = { 8002 }, level = 1, group = "LocalCausesPoisonOnCrit", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "attack", "critical", "ailment" }, tradeHashes = { [374737750] = { "50% chance to Cause Poison on Critical Strike" }, } }, - ["CausesPoisonOnCritUnique__1"] = { affix = "", "Melee Critical Strikes Poison the Enemy", statOrder = { 2773 }, level = 1, group = "CausesPoisonOnCrit", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "attack", "critical", "ailment" }, tradeHashes = { [2635385320] = { "Melee Critical Strikes Poison the Enemy" }, } }, - ["EvasionRatingIncreasesWeaponDamageUniqueOneHandSword9"] = { affix = "", "1% increased Attack Damage per 450 Evasion Rating", statOrder = { 2946 }, level = 1, group = "EvasionRatingIncreasesWeaponDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [93696421] = { "1% increased Attack Damage per 450 Evasion Rating" }, } }, - ["IncreasedDamageToIgnitedTargetsUniqueBootsStrInt3"] = { affix = "", "(25-40)% increased Damage with Hits and Ailments against Ignited Enemies", statOrder = { 2953 }, level = 1, group = "IncreasedDamageToIgnitedTargets", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [485151258] = { "(25-40)% increased Damage with Hits and Ailments against Ignited Enemies" }, } }, - ["MovementVelocityWhileOnFullEnergyShieldUniqueBootsDex8"] = { affix = "", "20% increased Movement Speed while on Full Energy Shield", statOrder = { 2969 }, level = 1, group = "MovementSpeedWhileOnFullEnergyShield", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2825197711] = { "20% increased Movement Speed while on Full Energy Shield" }, } }, - ["ChanceForEnemyToFleeOnBlockUniqueShieldDex4"] = { affix = "", "100% Chance to Cause Monster to Flee on Block", statOrder = { 2960 }, level = 1, group = "ChanceForEnemyToFleeOnBlock", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [3212461220] = { "100% Chance to Cause Monster to Flee on Block" }, } }, - ["IncreasedChaosDamageUniqueBodyStrDex4"] = { affix = "", "(50-80)% increased Chaos Damage", statOrder = { 1385 }, level = 1, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(50-80)% increased Chaos Damage" }, } }, - ["IncreasedChaosDamageUniqueShieldDex7"] = { affix = "", "(20-30)% increased Chaos Damage", statOrder = { 1385 }, level = 1, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(20-30)% increased Chaos Damage" }, } }, - ["IncreasedChaosDamageUnique__1"] = { affix = "", "(30-35)% increased Chaos Damage", statOrder = { 1385 }, level = 1, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(30-35)% increased Chaos Damage" }, } }, - ["IncreasedChaosDamageUnique__2"] = { affix = "", "(80-100)% increased Chaos Damage", statOrder = { 1385 }, level = 1, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(80-100)% increased Chaos Damage" }, } }, - ["IncreasedChaosDamageUnique__4"] = { affix = "", "(60-80)% increased Chaos Damage", statOrder = { 1385 }, level = 1, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(60-80)% increased Chaos Damage" }, } }, - ["IncreasedChaosDamageUnique__4_2"] = { affix = "", "(20-30)% increased Chaos Damage", statOrder = { 1385 }, level = 1, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(20-30)% increased Chaos Damage" }, } }, - ["IncreasedChaosDamageUnique__5"] = { affix = "", "(20-40)% increased Chaos Damage", statOrder = { 1385 }, level = 1, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(20-40)% increased Chaos Damage" }, } }, - ["IncreasedChaosDamageImplicit1_"] = { affix = "", "(17-23)% increased Chaos Damage", statOrder = { 1385 }, level = 100, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(17-23)% increased Chaos Damage" }, } }, - ["IncreasedChaosDamageImplicitUnique__1"] = { affix = "", "30% increased Chaos Damage", statOrder = { 1385 }, level = 1, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "30% increased Chaos Damage" }, } }, - ["IncreasedLifeLeechRateUniqueBodyStrDex4"] = { affix = "", "100% increased total Recovery per second from Life Leech", statOrder = { 2157 }, level = 1, group = "IncreasedLifeLeechRate", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2633745731] = { "100% increased total Recovery per second from Life Leech" }, } }, - ["IncreasedLifeLeechRateUniqueAmulet20"] = { affix = "", "30% increased total Recovery per second from Life, Mana, or Energy Shield Leech", statOrder = { 7383 }, level = 1, group = "LifeManaESLeechRate", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana", "defences", "energy_shield" }, tradeHashes = { [2314393054] = { "30% increased total Recovery per second from Life, Mana, or Energy Shield Leech" }, } }, - ["IncreasedLifeLeechRateUnique__1"] = { affix = "", "50% increased total Recovery per second from Life Leech", statOrder = { 2157 }, level = 1, group = "IncreasedLifeLeechRate", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2633745731] = { "50% increased total Recovery per second from Life Leech" }, } }, - ["IncreasedLifeLeechRateUnique__2"] = { affix = "", "(500-1000)% increased total Recovery per second from Life Leech", statOrder = { 2157 }, level = 52, group = "IncreasedLifeLeechRate", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2633745731] = { "(500-1000)% increased total Recovery per second from Life Leech" }, } }, - ["IncreasedManaLeechRateUnique__1"] = { affix = "", "(500-1000)% increased total Recovery per second from Mana Leech", statOrder = { 2158 }, level = 52, group = "IncreasedManaLeechRate", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [690135178] = { "(500-1000)% increased total Recovery per second from Mana Leech" }, } }, - ["SpellAddedChaosDamageUniqueWand7"] = { affix = "", "Adds (90-130) to (140-190) Chaos Damage to Spells", statOrder = { 1407 }, level = 1, group = "SpellAddedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, tradeHashes = { [2300399854] = { "Adds (90-130) to (140-190) Chaos Damage to Spells" }, } }, - ["SpellAddedChaosDamageUnique__1"] = { affix = "", "Adds (48-56) to (73-84) Chaos Damage to Spells", statOrder = { 1407 }, level = 81, group = "SpellAddedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, tradeHashes = { [2300399854] = { "Adds (48-56) to (73-84) Chaos Damage to Spells" }, } }, - ["SpellAddedChaosDamageUnique__2"] = { affix = "", "Adds (16-21) to (31-36) Chaos Damage to Spells", statOrder = { 1407 }, level = 1, group = "SpellAddedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, tradeHashes = { [2300399854] = { "Adds (16-21) to (31-36) Chaos Damage to Spells" }, } }, - ["HealOnRampageUniqueGlovesStrDex5"] = { affix = "", "Recover 20% of Life on Rampage", statOrder = { 2954 }, level = 1, group = "HealOnRampage", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2737492258] = { "Recover 20% of Life on Rampage" }, } }, - ["DispelStatusAilmentsOnRampageUniqueGlovesStrInt2"] = { affix = "", "Removes Elemental Ailments on Rampage", statOrder = { 2955 }, level = 1, group = "DispelStatusAilmentsOnRampage", weightKey = { }, weightVal = { }, modTags = { "elemental", "ailment" }, tradeHashes = { [627889781] = { "Removes Elemental Ailments on Rampage" }, } }, - ["PhysicalDamageImmunityOnRampageUniqueGlovesStrInt2"] = { affix = "", "Gain Immunity to Physical Damage for 1.5 seconds on Rampage", statOrder = { 2956 }, level = 1, group = "PhysicalDamageImmunityOnRampage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3100457893] = { "Gain Immunity to Physical Damage for 1.5 seconds on Rampage" }, } }, - ["VaalSoulsOnRampageUniqueGlovesStrDex5"] = { affix = "", "Kills grant an additional Vaal Soul if you have Rampaged Recently", statOrder = { 6722 }, level = 1, group = "AdditionalVaalSoulOnRampage", weightKey = { }, weightVal = { }, modTags = { "vaal" }, tradeHashes = { [3271016161] = { "Kills grant an additional Vaal Soul if you have Rampaged Recently" }, } }, - ["GroundSmokeOnRampageUniqueGlovesDexInt6"] = { affix = "", "Creates a Smoke Cloud on Rampage", statOrder = { 2967 }, level = 1, group = "GroundSmokeOnRampage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3321583955] = { "Creates a Smoke Cloud on Rampage" }, } }, - ["PhasingOnRampageUniqueGlovesDexInt6"] = { affix = "", "Enemies do not block your movement for 4 seconds on Rampage", statOrder = { 2968 }, level = 1, group = "PhasingOnRampage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [376956212] = { "Enemies do not block your movement for 4 seconds on Rampage" }, } }, - ["GlobalChanceToBlindOnHitUniqueSceptre8"] = { affix = "", "10% Global chance to Blind Enemies on hit", statOrder = { 2958 }, level = 1, group = "GlobalChanceToBlindOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2221570601] = { "10% Global chance to Blind Enemies on hit" }, } }, - ["LifeRegenerationPerLevelUniqueTwoHandSword7"] = { affix = "", "Regenerate 0.2 Life per second per Level", statOrder = { 2961 }, level = 1, group = "LifeRegenerationPerLevel", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [1384864963] = { "Regenerate 0.2 Life per second per Level" }, } }, - ["CriticalStrikeChancePerLevelUniqueTwoHandAxe8"] = { affix = "", "3% increased Global Critical Strike Chance per Level", statOrder = { 2962 }, level = 1, group = "CriticalStrikeChancePerLevel", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [3081076859] = { "3% increased Global Critical Strike Chance per Level" }, } }, - ["AttackDamageIncreasedPerLevelUniqueSceptre8"] = { affix = "", "1% increased Attack Damage per Level", statOrder = { 2963 }, level = 1, group = "AttackDamageIncreasedPerLevel", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [63607615] = { "1% increased Attack Damage per Level" }, } }, - ["SpellDamageIncreasedPerLevelUniqueSceptre8"] = { affix = "", "1% increased Spell Damage per Level", statOrder = { 2964 }, level = 1, group = "SpellDamageIncreasedPerLevel", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [797084288] = { "1% increased Spell Damage per Level" }, } }, - ["FlaskChargesOnCritUniqueTwoHandMace__1"] = { affix = "", "Gain a Flask Charge when you deal a Critical Strike", statOrder = { 2965 }, level = 1, group = "FlaskChargesOnCrit", weightKey = { }, weightVal = { }, modTags = { "flask", "critical" }, tradeHashes = { [1546046884] = { "Gain a Flask Charge when you deal a Critical Strike" }, } }, - ["FlaskChargesOnCritUniqueTwoHandMace__2"] = { affix = "", "Gain a Flask Charge when you deal a Critical Strike", statOrder = { 2965 }, level = 1, group = "FlaskChargesOnCrit", weightKey = { }, weightVal = { }, modTags = { "flask", "critical" }, tradeHashes = { [1546046884] = { "Gain a Flask Charge when you deal a Critical Strike" }, } }, - ["FlaskChargesOnCritUniqueTwoHandAxe8"] = { affix = "", "Gain a Flask Charge when you deal a Critical Strike", statOrder = { 2965 }, level = 1, group = "FlaskChargesOnCrit", weightKey = { }, weightVal = { }, modTags = { "flask", "critical" }, tradeHashes = { [1546046884] = { "Gain a Flask Charge when you deal a Critical Strike" }, } }, - ["LifeLeechOnCritUniqueTwoHandAxe8"] = { affix = "", "600% of Damage Leeched as Life on Critical Strike", statOrder = { 1694 }, level = 1, group = "LifeLeechOnCrit", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "critical" }, tradeHashes = { [180850565] = { "600% of Damage Leeched as Life on Critical Strike" }, } }, - ["LifeLeechOnCritPermyriadUniqueTwoHandAxe8"] = { affix = "", "1.2% of Damage Leeched as Life on Critical Strike", statOrder = { 1695 }, level = 1, group = "LifeLeechOnCritPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "critical" }, tradeHashes = { [958088871] = { "1.2% of Damage Leeched as Life on Critical Strike" }, } }, - ["ChanceToReflectChaosDamageToSelfUniqueTwoHandSword7_"] = { affix = "", "Enemies you Attack have 20% chance to Reflect 35 to 50 Chaos Damage to you", statOrder = { 2970 }, level = 1, group = "ChanceToReflectChaosDamageToSelf", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [3226921326] = { "" }, [2736066171] = { "Enemies you Attack have 20% chance to Reflect 0 to 0 Chaos Damage to you" }, } }, - ["SimulatedRampageStrDex5"] = { affix = "", "Rampage", statOrder = { 10767 }, level = 1, group = "SimulatedRampage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2397408229] = { "Rampage" }, } }, - ["SimulatedRampageDexInt6"] = { affix = "", "Rampage", statOrder = { 10767 }, level = 1, group = "SimulatedRampage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2397408229] = { "Rampage" }, } }, - ["SimulatedRampageStrInt2"] = { affix = "", "Rampage", statOrder = { 10767 }, level = 1, group = "SimulatedRampage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2397408229] = { "Rampage" }, } }, - ["SimulatedRampageUnique__1"] = { affix = "", "Melee Hits count as Rampage Kills", "Rampage", statOrder = { 10766, 10766.1 }, level = 1, group = "SimulatedRampageMeleeHits", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2889807051] = { "Melee Hits count as Rampage Kills", "Rampage" }, } }, - ["SimulatedRampageUnique__2"] = { affix = "", "Rampage", statOrder = { 10767 }, level = 1, group = "SimulatedRampage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2397408229] = { "Rampage" }, } }, - ["SimulatedRampageUnique__3_"] = { affix = "", "Rampage", statOrder = { 10767 }, level = 1, group = "SimulatedRampage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2397408229] = { "Rampage" }, } }, - ["BlindImmunityUniqueSceptre8"] = { affix = "", "Cannot be Blinded", statOrder = { 2974 }, level = 1, group = "ImmunityToBlind", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1436284579] = { "Cannot be Blinded" }, } }, - ["BlindImmunityUnique__1"] = { affix = "", "Cannot be Blinded", statOrder = { 2974 }, level = 1, group = "ImmunityToBlind", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1436284579] = { "Cannot be Blinded" }, } }, - ["ManaGainedOnEnemyDeathPerLevelUniqueSceptre8"] = { affix = "", "Gain 1 Mana on Kill per Level", statOrder = { 2972 }, level = 1, group = "ManaGainedOnEnemyDeathPerLevel", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1064067689] = { "Gain 1 Mana on Kill per Level" }, } }, - ["EnergyShieldGainedOnEnemyDeathPerLevelUniqueSceptre8"] = { affix = "", "Gain 1 Energy Shield on Kill per Level", statOrder = { 2973 }, level = 1, group = "EnergyShieldGainedOnEnemyDeathPerLevel", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [294153754] = { "Gain 1 Energy Shield on Kill per Level" }, } }, - ["LocalIncreaseSocketedActiveSkillGemLevelUniqueTwoHandSword7_"] = { affix = "", "+1 to Level of Socketed Skill Gems", statOrder = { 190 }, level = 1, group = "LocalIncreaseSocketedActiveSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [524797741] = { "+1 to Level of Socketed Skill Gems" }, } }, - ["LocalIncreaseSocketedActiveSkillGemLevelUnique__1"] = { affix = "", "+12 to Level of Socketed Skill Gems", statOrder = { 190 }, level = 1, group = "LocalIncreaseSocketedActiveSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [524797741] = { "+12 to Level of Socketed Skill Gems" }, } }, - ["IncreasedChaosDamagePerLevelUniqueTwoHandSword7"] = { affix = "", "1% increased Elemental Damage per Level", statOrder = { 2976 }, level = 1, group = "ChaosDamagePerLevel", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [2094646950] = { "1% increased Elemental Damage per Level" }, } }, - ["IncreasedElementalDamagePerLevelUniqueTwoHandSword7"] = { affix = "", "1% increased Chaos Damage per Level", statOrder = { 2977 }, level = 1, group = "ElementalDamagePerLevel", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [4084331136] = { "1% increased Chaos Damage per Level" }, } }, - ["LifeGainedOnEnemyDeathPerLevelUniqueTwoHandSword7"] = { affix = "", "Gain 1 Life on Kill per Level", statOrder = { 2971 }, level = 1, group = "LifeGainedOnEnemyDeathPerLevel", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [4228691877] = { "Gain 1 Life on Kill per Level" }, } }, - ["UnholyMightOnRampageUniqueGlovesDexInt6"] = { affix = "", "Gain Unholy Might for 3 seconds on Rampage", statOrder = { 2975 }, level = 1, group = "UnholyMightOnRampage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [757315075] = { "Gain Unholy Might for 3 seconds on Rampage" }, } }, - ["ReduceGlobalFlatManaCostUnique__1"] = { affix = "", "-(8-4) to Total Mana Cost of Skills", statOrder = { 1891 }, level = 1, group = "IncreaseManaCostFlat", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [3736589033] = { "-(8-4) to Total Mana Cost of Skills" }, } }, - ["IncreaseGlobalFlatManaCostUnique__1"] = { affix = "", "+50 to Total Mana Cost of Skills", statOrder = { 1891 }, level = 1, group = "IncreaseManaCostFlat", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [3736589033] = { "+50 to Total Mana Cost of Skills" }, } }, - ["IncreaseGlobalFlatManaCostUnique__2"] = { affix = "", "Lose (40-80) Mana when you use a Skill", statOrder = { 8145 }, level = 1, group = "LoseManaOnSkill", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2924302129] = { "Lose (40-80) Mana when you use a Skill" }, } }, - ["IncreaseGlobalFlatManaCostUnique__3_"] = { affix = "", "Lose 40 Mana when you use a Skill", statOrder = { 8145 }, level = 1, group = "LoseManaOnSkill", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2924302129] = { "Lose 40 Mana when you use a Skill" }, } }, - ["ReducedLifeRegenerationPercentUniqueOneHandAxe5"] = { affix = "", "50% reduced Life Regeneration rate", statOrder = { 1577 }, level = 1, group = "IncreaseLifeRegenerationPercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [44972811] = { "50% reduced Life Regeneration rate" }, } }, - ["IncreaseSocketedSupportGemQualityUnique__1___"] = { affix = "", "+(5-8)% to Quality of Socketed Support Gems", statOrder = { 205 }, level = 1, group = "IncreaseSocketedSupportGemQuality", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [1328548975] = { "+(5-8)% to Quality of Socketed Support Gems" }, } }, - ["IncreaseSocketedSupportGemQualityUnique__2"] = { affix = "", "+30% to Quality of Socketed Support Gems", statOrder = { 205 }, level = 1, group = "IncreaseSocketedSupportGemQuality", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [1328548975] = { "+30% to Quality of Socketed Support Gems" }, } }, - ["IgniteDurationUnique__1"] = { affix = "", "20% reduced Ignite Duration on Enemies", statOrder = { 1859 }, level = 1, group = "BurnDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1086147743] = { "20% reduced Ignite Duration on Enemies" }, } }, - ["IgniteDurationUnique__2"] = { affix = "", "90% reduced Ignite Duration on Enemies", statOrder = { 1859 }, level = 1, group = "BurnDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1086147743] = { "90% reduced Ignite Duration on Enemies" }, } }, - ["IgniteDurationUnique__3_"] = { affix = "", "50% reduced Ignite Duration on Enemies", statOrder = { 1859 }, level = 1, group = "BurnDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1086147743] = { "50% reduced Ignite Duration on Enemies" }, } }, - ["IgniteDurationUnique__4"] = { affix = "", "(10-25)% increased Ignite Duration on Enemies", statOrder = { 1859 }, level = 30, group = "BurnDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1086147743] = { "(10-25)% increased Ignite Duration on Enemies" }, } }, - ["SocketedGemsGetBloodMagicUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 1 Lifetap", statOrder = { 325 }, level = 1, group = "SocketedGemsSupportedByLifetap", weightKey = { }, weightVal = { }, modTags = { "skill", "gem" }, tradeHashes = { [1079239905] = { "Socketed Gems are Supported by Level 1 Lifetap" }, } }, - ["MapAreaContainsInvasionBosses"] = { affix = "", "Area is inhabited by 5 additional Invasion Bosses", statOrder = { 2620 }, level = 1, group = "MapExtraInvasionBosses", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [223497523] = { "" }, [3629113735] = { "" }, [279246355] = { "Area is inhabited by 5 additional Invasion Bosses" }, [2390685262] = { "" }, } }, - ["MapAnarchyExiles"] = { affix = "", "Area is inhabited by 3 additional Rogue Exiles", statOrder = { 2333 }, level = 0, group = "MapAnarchyLeagueCrafted", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1489521603] = { "" }, [3550168289] = { "Area is inhabited by 3 additional Rogue Exiles" }, [3629113735] = { "" }, [723578929] = { "" }, [2390685262] = { "" }, } }, - ["MapAnarchyExilesCrafted"] = { affix = "", "Area is inhabited by 3 additional Rogue Exiles", "Scarabs dropped in Area have 50% increased chance to be Anarchy Scarabs", statOrder = { 2333, 10730 }, level = 0, group = "MapAnarchyLeagueCrafted", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1489521603] = { "" }, [3550168289] = { "Area is inhabited by 3 additional Rogue Exiles" }, [3629113735] = { "" }, [723578929] = { "Scarabs dropped in Area have 50% increased chance to be Anarchy Scarabs" }, [2390685262] = { "" }, } }, - ["HarvestInfusedMapAnarchyExiles"] = { affix = "", "Area is inhabited by 12 additional Rogue Exiles", statOrder = { 2333 }, level = 0, group = "MapAnarchyLeagueCrafted", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1489521603] = { "" }, [3550168289] = { "Area is inhabited by 12 additional Rogue Exiles" }, [3629113735] = { "" }, [723578929] = { "" }, [2390685262] = { "" }, } }, - ["SocketedGemHasElementalEquilibriumUniqueRing25"] = { affix = "", "Socketed Gems have Elemental Equilibrium", statOrder = { 603 }, level = 1, group = "SocketedGemHasElementalEquilibrium", weightKey = { }, weightVal = { }, modTags = { "skill", "elemental_damage", "damage", "elemental", "gem" }, tradeHashes = { [223497523] = { "" }, [2605850929] = { "Socketed Gems have Elemental Equilibrium" }, } }, - ["SocketedGemHasSecretsOfSufferingUnique__1"] = { affix = "", "Socketed Gems have Secrets of Suffering", statOrder = { 605 }, level = 1, group = "SocketedGemHasSecretsOfSuffering", weightKey = { }, weightVal = { }, modTags = { "skill", "elemental", "fire", "cold", "lightning", "critical", "ailment", "gem" }, tradeHashes = { [4051493629] = { "Socketed Gems have Secrets of Suffering" }, } }, - ["ImmuneToElementalAilmentsWhileLifeAndManaCloseUnique__1"] = { affix = "", "Unaffected by Ignite or Shock if Maximum Life and Maximum Mana are within 500", statOrder = { 10475 }, level = 1, group = "ImmuneToElementalAilmentsWhileLifeAndManaClose", weightKey = { }, weightVal = { }, modTags = { "elemental", "ailment" }, tradeHashes = { [2716882575] = { "Unaffected by Ignite or Shock if Maximum Life and Maximum Mana are within 500" }, } }, - ["FireResistanceWhenSocketedWithRedGemUniqueRing25"] = { affix = "", "+(75-100)% to Fire Resistance when Socketed with a Red Gem", statOrder = { 1626 }, level = 1, group = "FireResistanceWhenSocketedWithRedGem", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance", "gem" }, tradeHashes = { [3051845758] = { "+(75-100)% to Fire Resistance when Socketed with a Red Gem" }, } }, - ["LightningResistanceWhenSocketedWithBlueGemUniqueRing25"] = { affix = "", "+(75-100)% to Lightning Resistance when Socketed with a Blue Gem", statOrder = { 1638 }, level = 1, group = "LightningResistanceWhenSocketedWithBlueGem", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance", "gem" }, tradeHashes = { [289814996] = { "+(75-100)% to Lightning Resistance when Socketed with a Blue Gem" }, } }, - ["ColdResistanceWhenSocketedWithGreenGemUniqueRing25"] = { affix = "", "+(75-100)% to Cold Resistance when Socketed with a Green Gem", statOrder = { 1632 }, level = 1, group = "ColdResistanceWhenSocketedWithGreenGem", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance", "gem" }, tradeHashes = { [1064331314] = { "+(75-100)% to Cold Resistance when Socketed with a Green Gem" }, } }, - ["LightningPenetrationUniqueStaff8"] = { affix = "", "Damage Penetrates 20% Lightning Resistance", statOrder = { 2984 }, level = 1, group = "LightningResistancePenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates 20% Lightning Resistance" }, } }, - ["LightningPenetrationUnique__1"] = { affix = "", "Damage Penetrates 20% Lightning Resistance", statOrder = { 2984 }, level = 1, group = "LightningResistancePenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates 20% Lightning Resistance" }, } }, - ["FirePenetrationUnique__1"] = { affix = "", "Damage Penetrates 10% Fire Resistance", statOrder = { 2981 }, level = 81, group = "FireResistancePenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates 10% Fire Resistance" }, } }, - ["ManaLeechFromLightningDamageUniqueStaff8"] = { affix = "", "200% of Lightning Damage Leeched as Mana", statOrder = { 1711 }, level = 1, group = "LightningManaLeech", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "elemental", "lightning" }, tradeHashes = { [636708308] = { "200% of Lightning Damage Leeched as Mana" }, } }, - ["ManaLeechPermyriadFromLightningDamageUniqueStaff8"] = { affix = "", "0.4% of Lightning Damage Leeched as Mana", statOrder = { 1712 }, level = 1, group = "LightningManaLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "elemental", "lightning" }, tradeHashes = { [1399420168] = { "0.4% of Lightning Damage Leeched as Mana" }, } }, - ["AllSocketsAreWhiteUniqueRing25"] = { affix = "", "All Sockets are White", statOrder = { 76 }, level = 1, group = "AllSocketsAreWhite", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [211836731] = { "All Sockets are White" }, } }, - ["AllSocketsAreWhiteUniqueShieldStrDex7_"] = { affix = "", "All Sockets are White", statOrder = { 76 }, level = 1, group = "AllSocketsAreWhite", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [211836731] = { "All Sockets are White" }, } }, - ["PunishmentOnMeleeBlockUniqueShieldInt4"] = { affix = "", "Curse Enemies with Punishment when you Block their Melee Damage, ignoring Curse Limit", statOrder = { 2987 }, level = 1, group = "PunishmentOnMeleeBlock", weightKey = { }, weightVal = { }, modTags = { "block", "caster", "curse" }, tradeHashes = { [2922377850] = { "Curse Enemies with Punishment when you Block their Melee Damage, ignoring Curse Limit" }, } }, - ["TemporalChainsOnProjectileBlockUniqueShieldInt4"] = { affix = "", "Curse Enemies with Temporal Chains when you Block their Projectile Attack Damage, ignoring Curse Limit", statOrder = { 2988 }, level = 1, group = "TemporalChainsOnProjectileBlock", weightKey = { }, weightVal = { }, modTags = { "block", "caster", "curse" }, tradeHashes = { [541329769] = { "Curse Enemies with Temporal Chains when you Block their Projectile Attack Damage, ignoring Curse Limit" }, } }, - ["ElementalWeaknessOnSpellBlockUniqueShieldInt4"] = { affix = "", "Curse Enemies with Elemental Weakness when you Block their Spell Damage, ignoring Curse Limit", statOrder = { 2989 }, level = 1, group = "ElementalWeaknessOnSpellBlock", weightKey = { }, weightVal = { }, modTags = { "block", "caster", "curse" }, tradeHashes = { [2048643052] = { "Curse Enemies with Elemental Weakness when you Block their Spell Damage, ignoring Curse Limit" }, } }, - ["SocketedGemsGetIncreasedItemQuantityUniqueShieldInt4"] = { affix = "", "Enemies slain by Socketed Gems drop 10% increased item quantity", statOrder = { 536 }, level = 1, group = "SocketedGemsGetIncreasedItemQuantity", weightKey = { }, weightVal = { }, modTags = { "gem", "drop" }, tradeHashes = { [85122299] = { "Enemies slain by Socketed Gems drop 10% increased item quantity" }, } }, - ["VulnerabilityOnBlockUniqueStaff9"] = { affix = "", "Curse Enemies with Vulnerability on Block", statOrder = { 2985 }, level = 1, group = "VulnerabilityOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "caster", "curse" }, tradeHashes = { [3477714116] = { "Curse Enemies with Vulnerability on Block" }, } }, - ["VulnerabilityOnBlockUniqueShieldStrDex3"] = { affix = "", "Curse Enemies with Vulnerability on Block", statOrder = { 2985 }, level = 1, group = "VulnerabilityOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "caster", "curse" }, tradeHashes = { [3477714116] = { "Curse Enemies with Vulnerability on Block" }, } }, - ["HealAlliesOnDeathUniqueShieldDexInt2"] = { affix = "", "Nearby allies Recover 1% of your Maximum Life when you Die", statOrder = { 2991 }, level = 1, group = "HealAlliesOnDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3484267929] = { "Nearby allies Recover 1% of your Maximum Life when you Die" }, } }, - ["SelfShockDurationUniqueBelt12_"] = { affix = "", "100% increased Shock Duration on you", statOrder = { 1873 }, level = 1, group = "SelfShockDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [99927264] = { "100% increased Shock Duration on you" }, } }, - ["SelfShockDurationUnique__1"] = { affix = "", "10000% increased Shock Duration on you", statOrder = { 1873 }, level = 1, group = "SelfShockDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [99927264] = { "10000% increased Shock Duration on you" }, } }, - ["SelfShockDurationUnique__2"] = { affix = "", "50% increased Shock Duration on you", statOrder = { 1873 }, level = 1, group = "SelfShockDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [99927264] = { "50% increased Shock Duration on you" }, } }, - ["ShocksReflectToSelfUniqueBelt12"] = { affix = "", "Shocks you cause are reflected back to you", statOrder = { 2774 }, level = 1, group = "ShocksReflectToSelf", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [807955413] = { "Shocks you cause are reflected back to you" }, } }, - ["ShocksReflectToSelfUnique__1"] = { affix = "", "Shocks you cause are reflected back to you", statOrder = { 2774 }, level = 1, group = "ShocksReflectToSelf", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [807955413] = { "Shocks you cause are reflected back to you" }, } }, - ["MovementVelocityWhileShockedUniqueBelt12"] = { affix = "", "15% increased Movement Speed while Shocked", statOrder = { 2806 }, level = 1, group = "MovementVelocityWhileShocked", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [542923416] = { "15% increased Movement Speed while Shocked" }, } }, - ["DamageIncreaseWhileShockedUniqueBelt12"] = { affix = "", "60% increased Damage while Shocked", statOrder = { 2775 }, level = 1, group = "DamageIncreaseWhileShocked", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [529432426] = { "60% increased Damage while Shocked" }, } }, - ["DamageOnLowLifeUniqueHelmetStrInt5"] = { affix = "", "20% increased Damage when on Low Life", statOrder = { 1215 }, level = 1, group = "DamagePercentageWhenOnLowLife", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [1513447578] = { "20% increased Damage when on Low Life" }, } }, - ["SocketedGemsSupportedByCastOnDeathUniqueHelmetStrInt5"] = { affix = "", "Socketed Gems are supported by Level 20 Cast on Death", statOrder = { 478 }, level = 1, group = "SocketedGemsSupportedByCastOnDeath", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [3878987051] = { "Socketed Gems are supported by Level 20 Cast on Death" }, } }, - ["IncreaseDamageOnBlindedEnemiesUniqueQuiver9_"] = { affix = "", "(40-60)% increased Damage with Hits and Ailments against Blinded Enemies", statOrder = { 2811 }, level = 69, group = "DamageOnBlindedEnemies", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [3503466234] = { "(40-60)% increased Damage with Hits and Ailments against Blinded Enemies" }, } }, - ["IncreaseDamageOnBlindedEnemiesUnique__1"] = { affix = "", "(25-40)% increased Damage with Hits and Ailments against Blinded Enemies", statOrder = { 2811 }, level = 1, group = "DamageOnBlindedEnemies", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [3503466234] = { "(25-40)% increased Damage with Hits and Ailments against Blinded Enemies" }, } }, - ["SmokeCloudWhenHitUniqueQuiver9"] = { affix = "", "25% chance to create a Smoke Cloud when Hit", statOrder = { 2576 }, level = 1, group = "SmokeCloudWhenHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [953314356] = { "25% chance to create a Smoke Cloud when Hit" }, } }, - ["IncreasedWeaponElementalDamageDuringFlaskUniqueBelt10"] = { affix = "", "30% increased Elemental Damage with Attack Skills during any Flask Effect", statOrder = { 2757 }, level = 1, group = "IncreasedWeaponElementalDamageDuringFlask", weightKey = { }, weightVal = { }, modTags = { "flask", "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [782323220] = { "30% increased Elemental Damage with Attack Skills during any Flask Effect" }, } }, - ["IncreasedDamageToShockedTargetsUniqueRing29"] = { affix = "", "40% increased Damage with Hits against Shocked Enemies", statOrder = { 1238 }, level = 1, group = "IncreasedDamageToShockedTargets", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [4194900521] = { "40% increased Damage with Hits against Shocked Enemies" }, } }, - ["LifeLeechVsShockedEnemiesUniqueRing29"] = { affix = "", "100% of Damage Leeched as Life against Shocked Enemies", statOrder = { 1687 }, level = 48, group = "LeechLifeVsShockedEnemies", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [1825669392] = { "100% of Damage Leeched as Life against Shocked Enemies" }, } }, - ["LifeLeechPermyriadVsShockedEnemiesUniqueRing29"] = { affix = "", "1% of Damage Leeched as Life against Shocked Enemies", statOrder = { 1688 }, level = 48, group = "LeechLifePermyriadVsShockedEnemies", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2614321687] = { "1% of Damage Leeched as Life against Shocked Enemies" }, } }, - ["AddedPhysicalDamageVsFrozenEnemiesUniqueRing30"] = { affix = "", "Adds 10 to 15 Physical Damage to Attacks against Frozen Enemies", statOrder = { 1271 }, level = 1, group = "AddedPhysicalDamageOnFrozenEnemies", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3856468419] = { "Adds 10 to 15 Physical Damage to Attacks against Frozen Enemies" }, } }, - ["ReducedChillDurationOnSelfUniqueRing30"] = { affix = "", "20% reduced Chill Duration on you", statOrder = { 1872 }, level = 25, group = "ReducedChillDurationOnSelf", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1874553720] = { "20% reduced Chill Duration on you" }, } }, - ["ChillDurationOnSelfUnique__1"] = { affix = "", "10000% increased Chill Duration on you", statOrder = { 1872 }, level = 1, group = "ReducedChillDurationOnSelf", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1874553720] = { "10000% increased Chill Duration on you" }, } }, - ["LifeGainOnHitVsIgnitedEnemiesUniqueRing31"] = { affix = "", "Gain (4-5) Life for each Ignited Enemy hit with Attacks", statOrder = { 1743 }, level = 37, group = "LifeGainOnHitVsIgnitedEnemies", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [120895749] = { "Gain (4-5) Life for each Ignited Enemy hit with Attacks" }, } }, - ["SocketedRedGemsHaveAddedFireDamageUniqueTwoHandSword8_"] = { affix = "", "Socketed Red Gems get 10% Physical Damage as Extra Fire Damage", statOrder = { 532 }, level = 1, group = "SocketedRedGemsHaveAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire", "gem" }, tradeHashes = { [2629366488] = { "Socketed Red Gems get 10% Physical Damage as Extra Fire Damage" }, } }, - ["SocketedMeleeGemsHaveIncreasedAoEUniqueTwoHandSword8"] = { affix = "", "Socketed Melee Gems have 15% increased Area of Effect", statOrder = { 531 }, level = 1, group = "SocketedMeleeGemsHaveIncreasedAoE", weightKey = { }, weightVal = { }, modTags = { "attack", "gem" }, tradeHashes = { [2462976337] = { "Socketed Melee Gems have 15% increased Area of Effect" }, } }, - ["ReducedCriticalStrikeDamageTakenUniqueBelt13"] = { affix = "", "You take 30% reduced Extra Damage from Critical Strikes", statOrder = { 1512 }, level = 1, group = "ReducedCriticalStrikeDamageTaken", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [3855016469] = { "You take 30% reduced Extra Damage from Critical Strikes" }, } }, - ["PhysicalDamageConvertedToFireVsBurningEnemyUniqueSceptre9"] = { affix = "", "50% of Physical Damage Converted to Fire Damage against Ignited Enemies", statOrder = { 2177 }, level = 1, group = "PhysicalDamageConvertedToFireVsBurningEnemy", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [4178812762] = { "50% of Physical Damage Converted to Fire Damage against Ignited Enemies" }, } }, - ["PhysicalAddedAsColdUniqueOneHandSword12"] = { affix = "", "Gain (25-30)% of Physical Damage as Extra Cold Damage", statOrder = { 1933 }, level = 1, group = "PhysicalAddedAsCold", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, tradeHashes = { [979246511] = { "Gain (25-30)% of Physical Damage as Extra Cold Damage" }, } }, - ["PhysicalAddedAsColdUnique__1"] = { affix = "", "Gain 50% of Physical Damage as Extra Cold Damage", statOrder = { 1933 }, level = 35, group = "PhysicalAddedAsCold", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, tradeHashes = { [979246511] = { "Gain 50% of Physical Damage as Extra Cold Damage" }, } }, - ["PhysicalAddedAsColdUnique__2"] = { affix = "", "Gain (10-15)% of Physical Damage as Extra Cold Damage", statOrder = { 1933 }, level = 1, group = "PhysicalAddedAsCold", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, tradeHashes = { [979246511] = { "Gain (10-15)% of Physical Damage as Extra Cold Damage" }, } }, - ["PhysicalAddedAsColdUnique__3"] = { affix = "", "Gain (10-50)% of Physical Damage as Extra Cold Damage", statOrder = { 1933 }, level = 1, group = "PhysicalAddedAsCold", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, tradeHashes = { [979246511] = { "Gain (10-50)% of Physical Damage as Extra Cold Damage" }, } }, - ["IncreasedSelfBurnDurationUniqueRing28"] = { affix = "", "100% increased Ignite Duration on you", statOrder = { 1875 }, level = 1, group = "ReducedBurnDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [986397080] = { "100% increased Ignite Duration on you" }, } }, - ["SelfBurnDurationUnique__1"] = { affix = "", "10000% increased Ignite Duration on you", statOrder = { 1875 }, level = 1, group = "ReducedBurnDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [986397080] = { "10000% increased Ignite Duration on you" }, } }, - ["FireDamageTakenCausesExtraPhysicalDamageUniqueBodyStrDex5"] = { affix = "", "10% of Fire Damage taken causes extra Physical Damage", statOrder = { 2454 }, level = 1, group = "FireDamageTakenCausesExtraPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [1359741607] = { "10% of Fire Damage taken causes extra Physical Damage" }, } }, - ["ReducedChanceToBlockUnique__1"] = { affix = "", "30% reduced Chance to Block Attack and Spell Damage", statOrder = { 1166 }, level = 1, group = "IncreasedBlockChance", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [4147897060] = { "30% reduced Chance to Block Attack and Spell Damage" }, } }, - ["ChillEffectivenessOnSelfUniqueRing28"] = { affix = "", "75% reduced Effect of Chill on you", statOrder = { 1645 }, level = 30, group = "ChillEffectivenessOnSelf", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1478653032] = { "75% reduced Effect of Chill on you" }, } }, - ["TemporalChainsEffectivenessOnSelfUniqueRing27"] = { affix = "", "Temporal Chains has 50% reduced Effect on you", statOrder = { 1644 }, level = 28, group = "TemporalChainsEffectivenessOnSelf", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [1152934561] = { "Temporal Chains has 50% reduced Effect on you" }, } }, - ["TemporalChainsEffectivenessOnSelfUnique__1"] = { affix = "", "Unaffected by Temporal Chains", statOrder = { 10484 }, level = 32, group = "UnaffectedByTemporalChains", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [4212372504] = { "Unaffected by Temporal Chains" }, } }, - ["PhysicalDamageOnSkillUseUniqueHelmetInt8"] = { affix = "", "Your Skills deal you 400% of Mana Spent on Upfront Skill Mana Costs as Physical Damage", statOrder = { 2213 }, level = 1, group = "PhysicalDamageOnSkillUse", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [99487834] = { "Your Skills deal you 400% of Mana Spent on Upfront Skill Mana Costs as Physical Damage" }, } }, - ["IncreasedFireDamageTakenUniqueBodyStrDex5"] = { affix = "", "20% increased Fire Damage taken", statOrder = { 2242 }, level = 1, group = "FireDamageTaken", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire" }, tradeHashes = { [3743301799] = { "20% increased Fire Damage taken" }, } }, - ["FireDamageTakenConvertedToPhysicalUniqueBodyStrDex5"] = { affix = "", "10% of Fire Damage from Hits taken as Physical Damage", statOrder = { 2446 }, level = 1, group = "FireDamageTakenAsPhysicalNegate", weightKey = { }, weightVal = { }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [1029319062] = { "10% of Fire Damage from Hits taken as Physical Damage" }, } }, - ["FireDamageTakenConvertedToPhysicalUnique__1"] = { affix = "", "100% of Fire Damage from Hits taken as Physical Damage", statOrder = { 2445 }, level = 1, group = "FireDamageTakenAsPhysical", weightKey = { }, weightVal = { }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3205239847] = { "100% of Fire Damage from Hits taken as Physical Damage" }, } }, - ["LocalAddedFireDamageAgainstIgnitedEnemiesUniqueSceptre9"] = { affix = "", "Adds 15 to 25 Fire Damage to Attacks against Ignited Enemies", statOrder = { 1272 }, level = 1, group = "AddedFireDamageVsIgnitedEnemies", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [627339348] = { "Adds 15 to 25 Fire Damage to Attacks against Ignited Enemies" }, } }, - ["CastSocketedMinionSpellsOnKillUniqueBow12"] = { affix = "", "Trigger Socketed Minion Spells on Kill with this Weapon", "Minion Spells Triggered by this Item have a 0.25 second Cooldown with 5 Uses", statOrder = { 754, 754.1 }, level = 1, group = "CastSocketedMinionSpellsOnKill", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "minion" }, tradeHashes = { [2816098341] = { "Trigger Socketed Minion Spells on Kill with this Weapon", "Minion Spells Triggered by this Item have a 0.25 second Cooldown with 5 Uses" }, } }, - ["IncreasedMinionDamagePerDexterityUniqueBow12"] = { affix = "", "Minions deal 2% increased Damage per 5 Dexterity", statOrder = { 1978 }, level = 1, group = "IncreasedMinionDamagePerDexterity", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, tradeHashes = { [4187741589] = { "Minions deal 2% increased Damage per 5 Dexterity" }, } }, - ["CastSocketedSpellsOnShockedEnemyKillUnique__1"] = { affix = "", "50% chance to Trigger Socketed Spells on Killing a Shocked Enemy", statOrder = { 753 }, level = 1, group = "CastSocketedSpellsOnShockedEnemyKill", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHashes = { [2770461177] = { "50% chance to Trigger Socketed Spells on Killing a Shocked Enemy" }, } }, - ["MaxPowerChargesIsZeroUniqueAmulet19"] = { affix = "", "Cannot gain Power Charges", statOrder = { 5435 }, level = 1, group = "MaxPowerChargesIsZero", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [2503253050] = { "Cannot gain Power Charges" }, } }, - ["IncreasedDamagePerCurseUniqueHelmetInt9"] = { affix = "", "(10-20)% increased Damage with Hits and Ailments per Curse on Enemy", statOrder = { 3015 }, level = 1, group = "IncreasedDamagePerCurse", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [1818773442] = { "(10-20)% increased Damage with Hits and Ailments per Curse on Enemy" }, } }, - ["StealChargesOnHitPercentUniqueGlovesStrDex6"] = { affix = "", "10% chance to Steal Power, Frenzy, and Endurance Charges on Hit", statOrder = { 2992 }, level = 1, group = "StealChargesOnHitPercent", weightKey = { }, weightVal = { }, modTags = { "endurance_charge", "frenzy_charge", "power_charge" }, tradeHashes = { [875143443] = { "10% chance to Steal Power, Frenzy, and Endurance Charges on Hit" }, } }, - ["StealChargesOnHitPercentUnique__1"] = { affix = "", "Steal Power, Frenzy, and Endurance Charges on Hit", statOrder = { 2992 }, level = 1, group = "StealChargesOnHitPercent", weightKey = { }, weightVal = { }, modTags = { "endurance_charge", "frenzy_charge", "power_charge" }, tradeHashes = { [875143443] = { "Steal Power, Frenzy, and Endurance Charges on Hit" }, } }, - ["IncreasedPhysicalDamagePerEnduranceChargeUniqueGlovesStrDex6"] = { affix = "", "(4-7)% increased Physical Damage per Endurance Charge", statOrder = { 2139 }, level = 1, group = "IncreasedPhysicalDamagePerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2481358827] = { "(4-7)% increased Physical Damage per Endurance Charge" }, } }, - ["IncreasedPhysicalDamagePerEnduranceChargeUnique__1"] = { affix = "", "10% increased Physical Damage per Endurance Charge", statOrder = { 2139 }, level = 1, group = "IncreasedPhysicalDamagePerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2481358827] = { "10% increased Physical Damage per Endurance Charge" }, } }, - ["IncreasedDamageVsFullLifePerPowerChargeUniqueGlovesStrDex6"] = { affix = "", "2% increased Damage per Power Charge with Hits against Enemies on Full Life", statOrder = { 2997 }, level = 1, group = "DamageVsFullLifePerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2111067745] = { "2% increased Damage per Power Charge with Hits against Enemies on Full Life" }, } }, - ["IncreasedDamageVsLowLifePerPowerChargeUniqueGlovesStrDex6"] = { affix = "", "2% increased Damage per Power Charge with Hits against Enemies on Low Life", statOrder = { 2998 }, level = 1, group = "DamageVsLowLivePerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [82392902] = { "2% increased Damage per Power Charge with Hits against Enemies on Low Life" }, } }, - ["ElementalPenetrationPerFrenzyChargeUniqueGlovesStrDex6"] = { affix = "", "Penetrate 1% Elemental Resistances per Frenzy Charge", statOrder = { 2996 }, level = 1, group = "ElementalPenetrationPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [2724643145] = { "Penetrate 1% Elemental Resistances per Frenzy Charge" }, } }, - ["ChargeDurationUniqueBodyDexInt3"] = { affix = "", "(100-200)% increased Endurance, Frenzy and Power Charge Duration", statOrder = { 3026 }, level = 1, group = "ChargeDuration", weightKey = { }, weightVal = { }, modTags = { "endurance_charge", "frenzy_charge", "power_charge" }, tradeHashes = { [2839036860] = { "(100-200)% increased Endurance, Frenzy and Power Charge Duration" }, } }, - ["ElementalStatusAilmentDurationUniqueAmulet19"] = { affix = "", "20% reduced Duration of Elemental Ailments on Enemies", statOrder = { 1861 }, level = 1, group = "ElementalStatusAilmentDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [2604619892] = { "20% reduced Duration of Elemental Ailments on Enemies" }, } }, - ["ElementalStatusAilmentDurationDescentUniqueQuiver1"] = { affix = "", "50% increased Duration of Elemental Ailments on Enemies", statOrder = { 1861 }, level = 1, group = "ElementalStatusAilmentDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [2604619892] = { "50% increased Duration of Elemental Ailments on Enemies" }, } }, - ["ElementalStatusAilmentDurationUnique__1_"] = { affix = "", "(10-15)% increased Duration of Elemental Ailments on Enemies", statOrder = { 1861 }, level = 1, group = "ElementalStatusAilmentDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [2604619892] = { "(10-15)% increased Duration of Elemental Ailments on Enemies" }, } }, - ["CanOnlyKillFrozenEnemiesUniqueGlovesStrInt3"] = { affix = "", "Your Hits can only Kill Frozen Enemies", statOrder = { 3021 }, level = 1, group = "CanOnlyKillFrozenEnemies", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2740359895] = { "Your Hits can only Kill Frozen Enemies" }, } }, - ["FreezeDurationUniqueGlovesStrInt3"] = { affix = "", "100% increased Freeze Duration on Enemies", statOrder = { 1858 }, level = 1, group = "ChillAndFreezeDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3485067555] = { "" }, [1073942215] = { "100% increased Freeze Duration on Enemies" }, } }, - ["FreezeChillDurationUnique__1"] = { affix = "", "10000% increased Chill Duration on Enemies", "10000% increased Freeze Duration on Enemies", statOrder = { 1856, 1858 }, level = 1, group = "ChillAndFreezeDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3485067555] = { "10000% increased Chill Duration on Enemies" }, [1073942215] = { "10000% increased Freeze Duration on Enemies" }, } }, - ["FreezeDurationUnique__1"] = { affix = "", "30% increased Freeze Duration on Enemies", statOrder = { 1858 }, level = 1, group = "ChillAndFreezeDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3485067555] = { "" }, [1073942215] = { "30% increased Freeze Duration on Enemies" }, } }, - ["ElementalPenetrationMarakethSceptreImplicit1"] = { affix = "", "Damage Penetrates 4% Elemental Resistances", statOrder = { 2980 }, level = 1, group = "ElementalPenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [2101383955] = { "Damage Penetrates 4% Elemental Resistances" }, } }, - ["ElementalPenetrationMarakethSceptreImplicit2"] = { affix = "", "Damage Penetrates 6% Elemental Resistances", statOrder = { 2980 }, level = 1, group = "ElementalPenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [2101383955] = { "Damage Penetrates 6% Elemental Resistances" }, } }, - ["MinonAreaOfEffectUniqueRing33"] = { affix = "", "Minions have 10% increased Area of Effect", statOrder = { 3024 }, level = 1, group = "MinionAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [3811191316] = { "Minions have 10% increased Area of Effect" }, } }, - ["PhysicalDamageToSelfOnMinionDeathUniqueRing33"] = { affix = "", "350 Physical Damage taken on Minion Death", statOrder = { 3027 }, level = 25, group = "SelfPhysicalDamageOnMinionDeath", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [4176970656] = { "350 Physical Damage taken on Minion Death" }, } }, - ["PhysicalDamageToSelfOnMinionDeathESPercentUniqueRing33_"] = { affix = "", "8% of Maximum Energy Shield taken as Physical Damage on Minion Death", statOrder = { 3023 }, level = 1, group = "SelfPhysicalDamageOnMinionDeathPerES", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1617739170] = { "8% of Maximum Energy Shield taken as Physical Damage on Minion Death" }, } }, - ["DealNoPhysicalDamageUniqueBelt14"] = { affix = "", "Deal no Physical Damage", statOrder = { 2790 }, level = 65, group = "DealNoPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3900877792] = { "Deal no Physical Damage" }, } }, - ["DealNoNonPhysicalDamageUniqueBelt__1"] = { affix = "", "Deal no Non-Physical Damage", statOrder = { 2791 }, level = 65, group = "DealNoNonPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [282353000] = { "Deal no Non-Physical Damage" }, } }, - ["RangedAttacksConsumeAmmoUniqueBelt__1"] = { affix = "", "Attacks that Fire Projectiles Consume up to 1 additional Steel Shard", statOrder = { 4909 }, level = 1, group = "RangedAttacksConsumeAmmo", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [591162856] = { "Attacks that Fire Projectiles Consume up to 1 additional Steel Shard" }, } }, - ["AdditionalProjectilesAfterAmmoConsumedUniqueBelt__1"] = { affix = "", "Skills Fire 3 additional Projectiles for 4 seconds after", "you consume a total of 8 Steel Shards", statOrder = { 10067, 10067.1 }, level = 1, group = "AdditionalProjectilesAfterAmmoConsumed", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [1031404836] = { "Skills Fire 3 additional Projectiles for 4 seconds after", "you consume a total of 8 Steel Shards" }, } }, - ["LifeLeechFromAttacksAgainstChilledEnemiesUniqueBelt14"] = { affix = "", "300% of Attack Damage Leeched as Life against Chilled Enemies", statOrder = { 1692 }, level = 65, group = "LifeLeechFromAttacksAgainstChilledEnemies", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHashes = { [1028143379] = { "300% of Attack Damage Leeched as Life against Chilled Enemies" }, } }, - ["LifeLeechPermyriadFromAttacksAgainstChilledEnemiesUniqueBelt14"] = { affix = "", "1% of Attack Damage Leeched as Life against Chilled Enemies", statOrder = { 1693 }, level = 65, group = "LifeLeechPermyriadFromAttacksAgainstChilledEnemies", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHashes = { [748813744] = { "1% of Attack Damage Leeched as Life against Chilled Enemies" }, } }, - ["FasterBurnFromAttacksEnemiesUniqueBelt14"] = { affix = "", "Ignites you inflict with Attacks deal Damage 35% faster", statOrder = { 2566 }, level = 65, group = "FasterBurnFromAttacksEnemies", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack", "ailment" }, tradeHashes = { [1420236871] = { "Ignites you inflict with Attacks deal Damage 35% faster" }, } }, - ["SocketedGemsProjectilesNovaUniqueStaff10"] = { affix = "", "Socketed Gems fire Projectiles in a circle", statOrder = { 609 }, level = 1, group = "DisplaySocketedGemsNova", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [967556848] = { "Socketed Gems fire Projectiles in a circle" }, } }, - ["SocketedGemsProjectilesNovaUnique__1"] = { affix = "", "Socketed Projectile Spells fire Projectiles in a circle", statOrder = { 610 }, level = 1, group = "DisplaySocketedSpellsNova", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [3235941702] = { "Socketed Projectile Spells fire Projectiles in a circle" }, } }, - ["SocketedGemsAdditionalProjectilesUniqueStaff10_"] = { affix = "", "Socketed Gems fire 4 additional Projectiles", statOrder = { 607 }, level = 1, group = "DisplaySocketedGemAdditionalProjectiles", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [4016885052] = { "Socketed Gems fire 4 additional Projectiles" }, } }, - ["SocketedGemsAdditionalProjectilesUniqueWand9"] = { affix = "", "Socketed Gems fire an additional Projectile", statOrder = { 607 }, level = 1, group = "DisplaySocketedGemAdditionalProjectiles", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [4016885052] = { "Socketed Gems fire an additional Projectile" }, } }, - ["SocketedGemsAdditionalProjectilesUnique__1__"] = { affix = "", "Socketed Projectile Spells fire 4 additional Projectiles", statOrder = { 608 }, level = 1, group = "DisplaySocketedSpellsAdditionalProjectiles", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [973574623] = { "Socketed Projectile Spells fire 4 additional Projectiles" }, } }, - ["SocketedGemsReducedDurationUniqueStaff10"] = { affix = "", "Socketed Gems have 70% reduced Skill Effect Duration", statOrder = { 611 }, level = 1, group = "DisplaySocketedGemReducedDuration", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [678608747] = { "Socketed Gems have 70% reduced Skill Effect Duration" }, } }, - ["MainHandAdditionalProjectilesWhileInOffHandUnique__1"] = { affix = "", "Attacks fire (1-2) additional Projectile when in Off Hand", statOrder = { 10492 }, level = 1, group = "MainHandAdditionalProjectilesWhileInOffHand", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4209631466] = { "Attacks fire (1-2) additional Projectile when in Off Hand" }, } }, - ["OffHandAreaOfEffectWhileInMainHandUnique__1"] = { affix = "", "Attacks have (40-60)% increased Area of Effect when in Main Hand", statOrder = { 10493 }, level = 1, group = "OffHandAreaOfEffectWhileInMainHand", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [421841616] = { "Attacks have (40-60)% increased Area of Effect when in Main Hand" }, } }, - ["SupportedByReducedManaUniqueBodyDexInt4"] = { affix = "", "Socketed Gems are Supported by Level 15 Inspiration", statOrder = { 494 }, level = 1, group = "DisplaySocketedGemGetsReducedManaCost", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [1866911844] = { "Socketed Gems are Supported by Level 15 Inspiration" }, } }, - ["SupportedByGenerosityUniqueBodyDexInt4_"] = { affix = "", "Socketed Gems are Supported by Level 30 Generosity", statOrder = { 495 }, level = 1, group = "DisplaySocketedGemGenerosity", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [2593773031] = { "Socketed Gems are Supported by Level 30 Generosity" }, } }, - ["IncreasedAuraEffectUniqueBodyDexInt4"] = { affix = "", "(10-15)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3566 }, level = 1, group = "AuraEffectGlobal", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHashes = { [1880071428] = { "(10-15)% increased effect of Non-Curse Auras from your Skills" }, } }, - ["IncreasedAuraRadiusUniqueBodyDexInt4"] = { affix = "", "(20-40)% increased Area of Effect of Aura Skills", statOrder = { 2224 }, level = 1, group = "AuraIncreasedIncreasedAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHashes = { [895264825] = { "(20-40)% increased Area of Effect of Aura Skills" }, } }, - ["IncreasedAuraRadiusUnique__1"] = { affix = "", "20% increased Area of Effect of Aura Skills", statOrder = { 2224 }, level = 1, group = "AuraIncreasedIncreasedAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHashes = { [895264825] = { "20% increased Area of Effect of Aura Skills" }, } }, - ["ChaosDamagePoisonsUniqueDagger10"] = { affix = "", "Your Chaos Damage Poisons Enemies", statOrder = { 3031 }, level = 1, group = "ChaosDamagePoisons", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [3549040753] = { "Your Chaos Damage Poisons Enemies" }, } }, - ["ChaosDamageChanceToPoisonUnique__1"] = { affix = "", "Your Chaos Damage has 60% chance to Poison Enemies", statOrder = { 3032 }, level = 1, group = "ChaosDamageChanceToPoison", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [2894297982] = { "Your Chaos Damage has 60% chance to Poison Enemies" }, } }, - ["IncreasedElementalDamagePerFrenzyChargeUniqueGlovesStrDex6"] = { affix = "", "(4-7)% increased Elemental Damage per Frenzy Charge", statOrder = { 2138 }, level = 1, group = "IncreasedElementalDamagePerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [1586440250] = { "(4-7)% increased Elemental Damage per Frenzy Charge" }, } }, - ["MinesMultipleDetonationUniqueStaff11"] = { affix = "", "Mines can be Detonated an additional time", statOrder = { 3033 }, level = 1, group = "MinesMultipleDetonation", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [325437053] = { "Mines can be Detonated an additional time" }, } }, - ["GainOnslaughtWhenCullingEnemyUniqueOneHandAxe6"] = { affix = "", "You gain Onslaught for 3 seconds on Culling Strike", statOrder = { 3028 }, level = 1, group = "GainOnslaughtOnCull", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3818161429] = { "You gain Onslaught for 3 seconds on Culling Strike" }, } }, - ["LocalAddedPhysicalDamageUniqueOneHandAxe6"] = { affix = "", "Adds (3-5) to (7-10) Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (3-5) to (7-10) Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUniqueOneHandAxe6"] = { affix = "", "(60-80)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(60-80)% increased Physical Damage" }, } }, - ["LifeLeechUniqueOneHandAxe6"] = { affix = "", "3% of Physical Attack Damage Leeched as Life", statOrder = { 1650 }, level = 1, group = "LifeLeechLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [4277433910] = { "3% of Physical Attack Damage Leeched as Life" }, } }, - ["LifeLeechPermyriadUniqueOneHandAxe6"] = { affix = "", "2% of Physical Attack Damage Leeched as Life", statOrder = { 1651 }, level = 1, group = "LifeLeechLocalPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [55876295] = { "2% of Physical Attack Damage Leeched as Life" }, } }, - ["CannotBeChilledWhenOnslaughtUniqueOneHandAxe6"] = { affix = "", "100% chance to Avoid being Chilled during Onslaught", statOrder = { 3030 }, level = 1, group = "CannotBeChilledDuringOnslaught", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2872105818] = { "100% chance to Avoid being Chilled during Onslaught" }, } }, - ["LifeRegenerationRatePercentageUniqueAmulet21"] = { affix = "", "Regenerate 4% of Life per second", statOrder = { 1944 }, level = 20, group = "LifeRegenerationRatePercentage", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [836936635] = { "Regenerate 4% of Life per second" }, } }, - ["LifeRegenerationRatePercentageUniqueShieldStrInt3"] = { affix = "", "Regenerate 3% of Life per second", statOrder = { 1944 }, level = 1, group = "LifeRegenerationRatePercentage", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [836936635] = { "Regenerate 3% of Life per second" }, } }, - ["LifeRegenerationRatePercentUniqueShieldStr5"] = { affix = "", "You and your Totems Regenerate 0.5% of Life per second for each Summoned Totem", statOrder = { 10647 }, level = 1, group = "LifeRegenerationRatePercentagePerTotem", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [1496370423] = { "You and your Totems Regenerate 0.5% of Life per second for each Summoned Totem" }, } }, - ["LifeRegenerationRatePercentUnique__1"] = { affix = "", "Regenerate 2% of Life per second", statOrder = { 1944 }, level = 1, group = "LifeRegenerationRatePercentage", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [836936635] = { "Regenerate 2% of Life per second" }, } }, - ["LifeRegenerationRatePercentUnique__2"] = { affix = "", "Regenerate 10% of Life per second", statOrder = { 1944 }, level = 1, group = "LifeRegenerationRatePercentage", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [836936635] = { "Regenerate 10% of Life per second" }, } }, - ["LifeRegenerationRatePercentUnique__3"] = { affix = "", "Regenerate 1% of Life per second", statOrder = { 1944 }, level = 1, group = "LifeRegenerationRatePercentage", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [836936635] = { "Regenerate 1% of Life per second" }, } }, - ["LifeRegenerationRatePercentUnique__4_"] = { affix = "", "Regenerate 1% of Life per second", statOrder = { 1944 }, level = 1, group = "LifeRegenerationRatePercentage", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [836936635] = { "Regenerate 1% of Life per second" }, } }, - ["LifeRegenerationRatePercentUnique__5"] = { affix = "", "Regenerate 3% of Life per second", statOrder = { 1944 }, level = 1, group = "LifeRegenerationRatePercentage", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [836936635] = { "Regenerate 3% of Life per second" }, } }, - ["LifeRegenerationRatePercentImplicitUnique__5"] = { affix = "", "Regenerate (1-2)% of Life per second", statOrder = { 1944 }, level = 1, group = "LifeRegenerationRatePercentage", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [836936635] = { "Regenerate (1-2)% of Life per second" }, } }, - ["RemoteMineLayingSpeedUniqueStaff11"] = { affix = "", "(40-60)% increased Mine Throwing Speed", statOrder = { 1928 }, level = 1, group = "MineLayingSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [1896971621] = { "(40-60)% increased Mine Throwing Speed" }, } }, - ["RemoteMineLayingSpeedUnique__1"] = { affix = "", "(10-15)% reduced Mine Throwing Speed", statOrder = { 1928 }, level = 1, group = "MineLayingSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [1896971621] = { "(10-15)% reduced Mine Throwing Speed" }, } }, - ["RemoteMineArmingSpeedUnique__1"] = { affix = "", "Mines have (40-50)% increased Detonation Speed", statOrder = { 9221 }, level = 1, group = "MineArmingSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [3085465082] = { "Mines have (40-50)% increased Detonation Speed" }, } }, - ["LessMineDamageUniqueStaff11"] = { affix = "", "35% less Mine Damage", statOrder = { 1197 }, level = 1, group = "LessMineDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [3298440988] = { "35% less Mine Damage" }, } }, - ["SupportedByRemoteMineUniqueStaff11"] = { affix = "", "Socketed Gems are Supported by Level 10 Blastchain Mine", statOrder = { 497 }, level = 1, group = "SupportedByRemoteMineLevel", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [1710508327] = { "Socketed Gems are Supported by Level 10 Blastchain Mine" }, } }, - ["ColdWeaponDamageUniqueOneHandMace4"] = { affix = "", "(30-40)% increased Cold Damage with Attack Skills", statOrder = { 5821 }, level = 1, group = "ColdWeaponDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [860668586] = { "(30-40)% increased Cold Damage with Attack Skills" }, } }, - ["AddedLightningDamageWhileUnarmedUniqueGlovesStr4_"] = { affix = "", "Adds (150-225) to (525-600) Lightning Damage to Unarmed Melee Hits", statOrder = { 2437 }, level = 1, group = "AddedLightningDamageWhileUnarmed", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3835522656] = { "Adds (150-225) to (525-600) Lightning Damage to Unarmed Melee Hits" }, } }, - ["AddedLightningDamagetoSpellsWhileUnarmedUniqueGlovesStr4"] = { affix = "", "Adds (90-135) to (315-360) Lightning Damage to Spells while Unarmed", statOrder = { 2438 }, level = 1, group = "AddedLightningDamagetoSpellsWhileUnarmed", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [3597806437] = { "Adds (90-135) to (315-360) Lightning Damage to Spells while Unarmed" }, } }, - ["GainEnergyShieldOnKillShockedEnemyUniqueGlovesStr4"] = { affix = "", "+(200-250) Energy Shield gained on Killing a Shocked Enemy", statOrder = { 2572 }, level = 1, group = "GainEnergyShieldOnKillShockedEnemy", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [347328113] = { "+(200-250) Energy Shield gained on Killing a Shocked Enemy" }, } }, - ["GainEnergyShieldOnKillShockedEnemyUnique__1_"] = { affix = "", "+(90-120) Energy Shield gained on Killing a Shocked Enemy", statOrder = { 2572 }, level = 1, group = "GainEnergyShieldOnKillShockedEnemy", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [347328113] = { "+(90-120) Energy Shield gained on Killing a Shocked Enemy" }, } }, - ["CannotKnockBackUniqueOneHandMace5_"] = { affix = "", "Cannot Knock Enemies Back", statOrder = { 3011 }, level = 1, group = "CannotKnockBack", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2095084973] = { "Cannot Knock Enemies Back" }, } }, - ["ChillOnAttackStunUniqueOneHandMace5"] = { affix = "", "All Attack Damage Chills when you Stun", statOrder = { 3012 }, level = 1, group = "ChillOnAttackStun", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "attack", "ailment" }, tradeHashes = { [2437193018] = { "All Attack Damage Chills when you Stun" }, } }, - ["DisplayLifeRegenerationAuraUniqueAmulet21"] = { affix = "", "Nearby Allies gain 4% of Life Regenerated per second", statOrder = { 3000 }, level = 1, group = "DisplayLifeRegenerationAura", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3462673103] = { "Nearby Allies gain 4% of Life Regenerated per second" }, } }, - ["DisplayManaRegenerationAuaUniqueAmulet21"] = { affix = "", "Nearby Allies gain 80% increased Mana Regeneration Rate", statOrder = { 3005 }, level = 1, group = "DisplayManaRegenerationAua", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [778848857] = { "Nearby Allies gain 80% increased Mana Regeneration Rate" }, } }, - ["IncreasedRarityWhenSlayingFrozenUniqueOneHandMace4"] = { affix = "", "40% increased Rarity of Items Dropped by Frozen Enemies", statOrder = { 2697 }, level = 1, group = "IncreasedRarityWhenSlayingFrozen", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [2138434718] = { "40% increased Rarity of Items Dropped by Frozen Enemies" }, } }, - ["IncreasedRarityWhenSlayingFrozenUnique__1"] = { affix = "", "30% increased Rarity of Items Dropped by Frozen Enemies", statOrder = { 2697 }, level = 1, group = "IncreasedRarityWhenSlayingFrozen", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [2138434718] = { "30% increased Rarity of Items Dropped by Frozen Enemies" }, } }, - ["SwordPhysicalDamageToAddAsFireUniqueOneHandSword10"] = { affix = "", "Gain (66-99)% of Sword Physical Damage as Extra Fire Damage", statOrder = { 3040 }, level = 1, group = "SwordPhysicalDamageToAddAsFire", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire", "attack" }, tradeHashes = { [754005431] = { "Gain (66-99)% of Sword Physical Damage as Extra Fire Damage" }, } }, - ["CannotBeBuffedByAlliedAurasUniqueOneHandSword11"] = { affix = "", "Allies' Aura Buffs do not affect you", statOrder = { 3018 }, level = 1, group = "CannotBeBuffedByAlliedAuras", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHashes = { [1489905076] = { "Allies' Aura Buffs do not affect you" }, } }, - ["AurasCannotBuffAlliesUniqueOneHandSword11"] = { affix = "", "Your Aura Buffs do not affect allies", statOrder = { 3020 }, level = 1, group = "AurasCannotBuffAllies", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHashes = { [4196775867] = { "Your Aura Buffs do not affect allies" }, } }, - ["IncreasedBuffEffectivenessUniqueOneHandSword11"] = { affix = "", "10% increased Effect of Buffs on you", statOrder = { 2144 }, level = 1, group = "IncreasedBuffEffectiveness", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [306104305] = { "10% increased Effect of Buffs on you" }, } }, - ["IncreasedBuffEffectivenessBodyInt12"] = { affix = "", "30% increased Effect of Buffs on you", statOrder = { 2144 }, level = 1, group = "IncreasedBuffEffectiveness", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [306104305] = { "30% increased Effect of Buffs on you" }, } }, - ["EnemyKnockbackDirectionReversedUniqueGlovesStr5_"] = { affix = "", "Knockback direction is reversed", statOrder = { 3017 }, level = 1, group = "EnemyKnockbackDirectionReversed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [281201999] = { "Knockback direction is reversed" }, } }, - ["DisplaySupportedByKnockbackUniqueGlovesStr5"] = { affix = "", "Socketed Gems are Supported by Level 10 Knockback", statOrder = { 502 }, level = 1, group = "DisplaySupportedByKnockback", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4066711249] = { "Socketed Gems are Supported by Level 10 Knockback" }, } }, - ["LifeRegenPerMinutePerEnduranceChargeUniqueBodyDexInt3"] = { affix = "", "Regenerate 75 Life per second per Endurance Charge", statOrder = { 3010 }, level = 1, group = "LifeRegenPerMinutePerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [1898967950] = { "Regenerate 75 Life per second per Endurance Charge" }, } }, - ["LifeRegenPerMinutePerEnduranceChargeUnique__1"] = { affix = "", "Regenerate (100-140) Life per second per Endurance Charge", statOrder = { 3010 }, level = 1, group = "LifeRegenPerMinutePerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [1898967950] = { "Regenerate (100-140) Life per second per Endurance Charge" }, } }, - ["CausesBleedingImplicitMarakethRapier1"] = { affix = "", "Causes Bleeding on Hit", statOrder = { 2480 }, level = 1, group = "CausesBleeding", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [2091621414] = { "Causes Bleeding on Hit" }, } }, - ["LifeAndManaOnHitImplicitMarakethClaw1"] = { affix = "", "Grants 6 Life and Mana per Enemy Hit", statOrder = { 1742 }, level = 1, group = "LifeAndManaOnHitLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana", "attack" }, tradeHashes = { [1420170973] = { "Grants 6 Life and Mana per Enemy Hit" }, } }, - ["LifeAndManaOnHitImplicitMarakethClaw2"] = { affix = "", "Grants 10 Life and Mana per Enemy Hit", statOrder = { 1742 }, level = 1, group = "LifeAndManaOnHitLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana", "attack" }, tradeHashes = { [1420170973] = { "Grants 10 Life and Mana per Enemy Hit" }, } }, - ["LifeAndManaOnHitImplicitMarakethClaw3"] = { affix = "", "Grants 14 Life and Mana per Enemy Hit", statOrder = { 1742 }, level = 1, group = "LifeAndManaOnHitLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana", "attack" }, tradeHashes = { [1420170973] = { "Grants 14 Life and Mana per Enemy Hit" }, } }, - ["LifeAndManaOnHitSeparatedImplicitMarakethClaw1"] = { affix = "", "Grants 15 Life per Enemy Hit", "Grants 6 Mana per Enemy Hit", statOrder = { 1738, 1745 }, level = 1, group = "LifeAndManaOnHitSeparatedLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana", "attack" }, tradeHashes = { [821021828] = { "Grants 15 Life per Enemy Hit" }, [640052854] = { "Grants 6 Mana per Enemy Hit" }, } }, - ["LifeAndManaOnHitSeparatedImplicitMarakethClaw2"] = { affix = "", "Grants 28 Life per Enemy Hit", "Grants 10 Mana per Enemy Hit", statOrder = { 1738, 1745 }, level = 1, group = "LifeAndManaOnHitSeparatedLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana", "attack" }, tradeHashes = { [821021828] = { "Grants 28 Life per Enemy Hit" }, [640052854] = { "Grants 10 Mana per Enemy Hit" }, } }, - ["LifeAndManaOnHitSeparatedImplicitMarakethClaw3"] = { affix = "", "Grants 38 Life per Enemy Hit", "Grants 14 Mana per Enemy Hit", statOrder = { 1738, 1745 }, level = 1, group = "LifeAndManaOnHitSeparatedLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana", "attack" }, tradeHashes = { [821021828] = { "Grants 38 Life per Enemy Hit" }, [640052854] = { "Grants 14 Mana per Enemy Hit" }, } }, - ["LifeAndManaLeechImplicitMarakethClaw1"] = { affix = "", "0.8% of Physical Attack Damage Leeched as Life and Mana", statOrder = { 1656 }, level = 1, group = "LifeAndManaLeechLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana", "physical", "attack" }, tradeHashes = { [237471491] = { "0.8% of Physical Attack Damage Leeched as Life and Mana" }, } }, - ["IcestormUniqueStaff12"] = { affix = "", "Grants Level 1 Icestorm Skill", statOrder = { 663 }, level = 1, group = "IcestormActiveSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [2103009393] = { "Grants Level 1 Icestorm Skill" }, [231162761] = { "" }, } }, - ["SolartwineUniqueBelt55"] = { affix = "", "Grants Level 20 Blazing Glare", statOrder = { 7898 }, level = 30, group = "SolartwineActiveSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [3696252104] = { "Grants Level 20 Blazing Glare" }, } }, - ["BitingBraidUniqueBelt52"] = { affix = "", "Grants Level 20 Caustic Retribution", statOrder = { 7894 }, level = 30, group = "BitingBraidActiveSkill", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [124458098] = { "Grants Level 20 Caustic Retribution" }, } }, - ["EnemiesPoisonedByYouCannotCritUnique_1"] = { affix = "", "Enemies Poisoned by you cannot deal Critical Strikes", statOrder = { 6392 }, level = 30, group = "EnemiesPoisonedByYouCannotCrit", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [1330636770] = { "Enemies Poisoned by you cannot deal Critical Strikes" }, } }, - ["PowerChargeOnMeleeStunUniqueSceptre10"] = { affix = "", "30% chance to gain a Power Charge when you Stun with Melee Damage", statOrder = { 2770 }, level = 1, group = "PowerChargeOnMeleeStun", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [2318615887] = { "30% chance to gain a Power Charge when you Stun with Melee Damage" }, } }, - ["PowerChargeOnStunUniqueSceptre10"] = { affix = "", "30% chance to gain a Power Charge when you Stun", statOrder = { 2771 }, level = 1, group = "PowerChargeOnStun", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [3470535775] = { "30% chance to gain a Power Charge when you Stun" }, } }, - ["UnholyMightOnMeleeCritUniqueSceptre10"] = { affix = "", "Gain Unholy Might for 2 seconds on Melee Critical Strike", statOrder = { 2915 }, level = 1, group = "UnholyMightOnMeleeCrit", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [1483655843] = { "Gain Unholy Might for 2 seconds on Melee Critical Strike" }, } }, - ["UnholyMightOnCritUniqueSceptre10"] = { affix = "", "Gain Unholy Might for 4 seconds on Critical Strike", statOrder = { 2917 }, level = 1, group = "UnholyMightOnCrit", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [2959020308] = { "Gain Unholy Might for 4 seconds on Critical Strike" }, } }, - ["ChanceToAvoidElementalStatusAilmentsUniqueAmulet22"] = { affix = "", "+(5-10)% to all Elemental Resistances", statOrder = { 1619 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(5-10)% to all Elemental Resistances" }, } }, - ["ChanceToBePiercedUniqueBodyStr6"] = { affix = "", "Enemy Projectiles Pierce you", statOrder = { 9748 }, level = 1, group = "ProjectilesAlwaysPierceYou", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1457679290] = { "Enemy Projectiles Pierce you" }, } }, - ["IronWillUniqueGlovesStrInt4__"] = { affix = "", "Iron Will", statOrder = { 10830 }, level = 1, group = "IronWill", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHashes = { [4092697134] = { "Iron Will" }, } }, - ["GluttonyOfElementsUniqueAmulet23"] = { affix = "", "Grants Level 10 Gluttony of Elements Skill", statOrder = { 646 }, level = 7, group = "DisplayGluttonyOfElements", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [3321235265] = { "Grants Level 10 Gluttony of Elements Skill" }, } }, - ["SocketedGemsSupportedByPierceUniqueBodyStr6"] = { affix = "", "Socketed Gems are Supported by Level 15 Pierce", statOrder = { 510 }, level = 1, group = "DisplaySupportedByPierce", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [254728692] = { "Socketed Gems are Supported by Level 15 Pierce" }, } }, - ["LifeRegenPerActiveBuffUniqueBodyInt12"] = { affix = "", "Regenerate (12-20) Life per second per Buff on you", statOrder = { 7398 }, level = 1, group = "LifeRegenPerBuff", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [996053100] = { "Regenerate (12-20) Life per second per Buff on you" }, } }, - ["AttackAndCastSpeedUnique__1"] = { affix = "", "(10-15)% increased Attack and Cast Speed", statOrder = { 2046 }, level = 75, group = "AttackAndCastSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed" }, tradeHashes = { [2672805335] = { "(10-15)% increased Attack and Cast Speed" }, } }, - ["AttackAndCastSpeedUnique__2"] = { affix = "", "(5-10)% increased Attack and Cast Speed", statOrder = { 2046 }, level = 1, group = "AttackAndCastSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed" }, tradeHashes = { [2672805335] = { "(5-10)% increased Attack and Cast Speed" }, } }, - ["AttackAndCastSpeedUnique__3"] = { affix = "", "(6-9)% increased Attack and Cast Speed", statOrder = { 2046 }, level = 1, group = "AttackAndCastSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed" }, tradeHashes = { [2672805335] = { "(6-9)% increased Attack and Cast Speed" }, } }, - ["AttackAndCastSpeedUnique__4"] = { affix = "", "(6-10)% increased Attack and Cast Speed", statOrder = { 2046 }, level = 1, group = "AttackAndCastSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed" }, tradeHashes = { [2672805335] = { "(6-10)% increased Attack and Cast Speed" }, } }, - ["AttackAndCastSpeedUnique__5"] = { affix = "", "(5-10)% increased Attack and Cast Speed", statOrder = { 2046 }, level = 1, group = "AttackAndCastSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed" }, tradeHashes = { [2672805335] = { "(5-10)% increased Attack and Cast Speed" }, } }, - ["AttackAndCastSpeedUnique__6"] = { affix = "", "(5-7)% increased Attack and Cast Speed", statOrder = { 2046 }, level = 1, group = "AttackAndCastSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed" }, tradeHashes = { [2672805335] = { "(5-7)% increased Attack and Cast Speed" }, } }, - ["AttackAndCastSpeedUnique__7"] = { affix = "", "(5-8)% increased Attack and Cast Speed", statOrder = { 2046 }, level = 1, group = "AttackAndCastSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed" }, tradeHashes = { [2672805335] = { "(5-8)% increased Attack and Cast Speed" }, } }, - ["AttackAndCastSpeedUnique__8"] = { affix = "", "(6-8)% increased Attack and Cast Speed", statOrder = { 2046 }, level = 1, group = "AttackAndCastSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed" }, tradeHashes = { [2672805335] = { "(6-8)% increased Attack and Cast Speed" }, } }, - ["AttackAndCastSpeedUnique__9"] = { affix = "", "(0-40)% increased Attack and Cast Speed", statOrder = { 2046 }, level = 1, group = "AttackAndCastSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed" }, tradeHashes = { [2672805335] = { "(0-40)% increased Attack and Cast Speed" }, } }, - ["AttackAndCastSpeedUnique__10"] = { affix = "", "(6-12)% increased Attack and Cast Speed", statOrder = { 2046 }, level = 1, group = "AttackAndCastSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed" }, tradeHashes = { [2672805335] = { "(6-12)% increased Attack and Cast Speed" }, } }, - ["StrengthDexterityUnique__1"] = { affix = "", "+20 to Strength and Dexterity", statOrder = { 1180 }, level = 1, group = "StrengthDexterityForJewel", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [538848803] = { "+20 to Strength and Dexterity" }, } }, - ["StrengthDexterityImplicitSword_1"] = { affix = "", "+50 to Strength and Dexterity", statOrder = { 1180 }, level = 1, group = "StrengthDexterityForJewel", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [538848803] = { "+50 to Strength and Dexterity" }, } }, - ["StrengthIntelligenceUnique__1"] = { affix = "", "+20 to Strength and Intelligence", statOrder = { 1181 }, level = 1, group = "StrengthIntelligenceForJewel", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1535626285] = { "+20 to Strength and Intelligence" }, } }, - ["StrengthIntelligenceUnique__2"] = { affix = "", "+(10-30) to Strength and Intelligence", statOrder = { 1181 }, level = 1, group = "StrengthIntelligenceForJewel", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1535626285] = { "+(10-30) to Strength and Intelligence" }, } }, - ["DexterityIntelligenceUnique__1__"] = { affix = "", "+20 to Dexterity and Intelligence", statOrder = { 1182 }, level = 1, group = "DexterityIntelligenceForJewel", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [2300185227] = { "+20 to Dexterity and Intelligence" }, } }, - ["KnockbackChanceUnique__1"] = { affix = "", "10% chance to Knock Enemies Back on hit", statOrder = { 1995 }, level = 1, group = "KnockbackChanceForJewel", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [977908611] = { "10% chance to Knock Enemies Back on hit" }, } }, - ["TotemDamageUnique__1_"] = { affix = "", "40% increased Totem Damage", statOrder = { 1193 }, level = 1, group = "TotemDamageForJewel", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [3851254963] = { "40% increased Totem Damage" }, } }, - ["ReducedAttackAndCastSpeedUniqueGlovesStrInt4"] = { affix = "", "(20-30)% reduced Attack and Cast Speed", statOrder = { 2046 }, level = 1, group = "AttackAndCastSpeedForJewel", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed" }, tradeHashes = { [2672805335] = { "(20-30)% reduced Attack and Cast Speed" }, } }, - ["NonDamagingAilmentEffectUnique_1"] = { affix = "", "(10-20)% increased Effect of Non-Damaging Ailments", statOrder = { 9500 }, level = 100, group = "IncreasedAilmentEffectOnEnemies", weightKey = { }, weightVal = { }, modTags = { "ailment" }, tradeHashes = { [782230869] = { "(10-20)% increased Effect of Non-Damaging Ailments" }, } }, - ["AttackAndCastSpeedUniqueRing39"] = { affix = "", "(5-10)% increased Attack and Cast Speed", statOrder = { 2046 }, level = 1, group = "AttackAndCastSpeedForJewel", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed" }, tradeHashes = { [2672805335] = { "(5-10)% increased Attack and Cast Speed" }, } }, - ["LifeLeechLocal1"] = { affix = "Remora's", "(1-2)% of Physical Attack Damage Leeched as Life", statOrder = { 1650 }, level = 9, group = "LifeLeechLocal", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [4277433910] = { "(1-2)% of Physical Attack Damage Leeched as Life" }, } }, - ["LifeLeechLocal2"] = { affix = "Lamprey's", "(3-4)% of Physical Attack Damage Leeched as Life", statOrder = { 1650 }, level = 25, group = "LifeLeechLocal", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [4277433910] = { "(3-4)% of Physical Attack Damage Leeched as Life" }, } }, - ["LifeLeechLocal3"] = { affix = "Vampire's", "(5-6)% of Physical Attack Damage Leeched as Life", statOrder = { 1650 }, level = 72, group = "LifeLeechLocal", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [4277433910] = { "(5-6)% of Physical Attack Damage Leeched as Life" }, } }, - ["LifeLeechLocalPermyriadUnique__1"] = { affix = "", "2% of Physical Attack Damage Leeched as Life", statOrder = { 1651 }, level = 1, group = "LifeLeechLocalPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [55876295] = { "2% of Physical Attack Damage Leeched as Life" }, } }, - ["LifeLeechLocalUniqueOneHandMace8"] = { affix = "", "5% of Physical Attack Damage Leeched as Life", statOrder = { 1650 }, level = 1, group = "LifeLeechLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [4277433910] = { "5% of Physical Attack Damage Leeched as Life" }, } }, - ["LifeLeechLocalPermyriadUniqueOneHandMace8__"] = { affix = "", "1% of Physical Attack Damage Leeched as Life", statOrder = { 1651 }, level = 1, group = "LifeLeechLocalPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [55876295] = { "1% of Physical Attack Damage Leeched as Life" }, } }, - ["ManaLeechLocal1"] = { affix = "Thirsty", "(1-2)% of Physical Attack Damage Leeched as Mana", statOrder = { 1700 }, level = 9, group = "ManaLeechLocal", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [2825755397] = { "(1-2)% of Physical Attack Damage Leeched as Mana" }, } }, - ["ManaLeechPermyriadLocalUnique__1"] = { affix = "", "2% of Physical Attack Damage Leeched as Mana", statOrder = { 1701 }, level = 1, group = "ManaLeechLocalPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [669069897] = { "2% of Physical Attack Damage Leeched as Mana" }, } }, - ["AttacksCostNoManaUniqueTwoHandAxe9"] = { affix = "", "Your Attacks do not cost Mana", statOrder = { 1892 }, level = 1, group = "AttacksCostNoMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "attack" }, tradeHashes = { [4080656180] = { "Your Attacks do not cost Mana" }, } }, - ["CannotLeechOrRegenerateManaUniqueTwoHandAxe9"] = { affix = "", "Cannot Leech or Regenerate Mana", statOrder = { 2569 }, level = 1, group = "NoManaLeechOrRegen", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana" }, tradeHashes = { [2918242917] = { "Cannot Leech or Regenerate Mana" }, } }, - ["CannotLeechOrRegenerateManaUnique__1_"] = { affix = "", "Cannot Leech or Regenerate Mana", statOrder = { 2569 }, level = 1, group = "NoManaLeechOrRegen", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana" }, tradeHashes = { [2918242917] = { "Cannot Leech or Regenerate Mana" }, } }, - ["ResoluteTechniqueUniqueTwoHandAxe9"] = { affix = "", "Resolute Technique", statOrder = { 10829 }, level = 1, group = "ResoluteTechnique", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [3943945975] = { "Resolute Technique" }, } }, - ["AvoidStunUniqueRingVictors"] = { affix = "", "(10-20)% chance to Avoid being Stunned", statOrder = { 1851 }, level = 1, group = "AvoidStun", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4262448838] = { "(10-20)% chance to Avoid being Stunned" }, } }, - ["AvoidStunUnique__1"] = { affix = "", "30% chance to Avoid being Stunned", statOrder = { 1851 }, level = 1, group = "AvoidStun", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4262448838] = { "30% chance to Avoid being Stunned" }, } }, - ["AvoidElementalAilmentsUnique__1_"] = { affix = "", "30% chance to Avoid Elemental Ailments", statOrder = { 1843 }, level = 1, group = "AvoidElementalStatusAilments", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [3005472710] = { "30% chance to Avoid Elemental Ailments" }, } }, - ["AvoidElementalAilmentsUnique__2"] = { affix = "", "(20-25)% chance to Avoid Elemental Ailments", statOrder = { 1843 }, level = 1, group = "AvoidElementalStatusAilments", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [3005472710] = { "(20-25)% chance to Avoid Elemental Ailments" }, } }, - ["AvoidElementalAilmentsUnique__3"] = { affix = "", "(15-25)% chance to Avoid Elemental Ailments", statOrder = { 1843 }, level = 1, group = "AvoidElementalStatusAilments", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [3005472710] = { "(15-25)% chance to Avoid Elemental Ailments" }, } }, - ["LocalChanceToBleedImplicitMarakethRapier1"] = { affix = "", "15% chance to cause Bleeding on Hit", statOrder = { 2483 }, level = 1, group = "LocalChanceToBleed", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1519615863] = { "15% chance to cause Bleeding on Hit" }, } }, - ["LocalChanceToBleedImplicitMarakethRapier2"] = { affix = "", "20% chance to cause Bleeding on Hit", statOrder = { 2483 }, level = 1, group = "LocalChanceToBleed", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1519615863] = { "20% chance to cause Bleeding on Hit" }, } }, - ["LocalChanceToBleedUniqueDagger12"] = { affix = "", "30% chance to cause Bleeding on Hit", statOrder = { 2483 }, level = 1, group = "LocalChanceToBleed", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1519615863] = { "30% chance to cause Bleeding on Hit" }, } }, - ["LocalChanceToBleedUniqueOneHandMace8"] = { affix = "", "30% chance to cause Bleeding on Hit", statOrder = { 2483 }, level = 1, group = "LocalChanceToBleed", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1519615863] = { "30% chance to cause Bleeding on Hit" }, } }, - ["LocalChanceToBleedUnique__1__"] = { affix = "", "50% chance to cause Bleeding on Hit", statOrder = { 2483 }, level = 1, group = "LocalChanceToBleed", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1519615863] = { "50% chance to cause Bleeding on Hit" }, } }, - ["LocalChanceToBleedUnique__2"] = { affix = "", "40% chance to cause Bleeding on Hit", statOrder = { 2483 }, level = 1, group = "LocalChanceToBleed", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1519615863] = { "40% chance to cause Bleeding on Hit" }, } }, - ["ChanceToBleedUnique__1_"] = { affix = "", "Attacks have 25% chance to cause Bleeding", statOrder = { 2489 }, level = 1, group = "ChanceToBleed", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [3204820200] = { "Attacks have 25% chance to cause Bleeding" }, } }, - ["ChanceToBleedUnique__2__"] = { affix = "", "Attacks have 25% chance to cause Bleeding", statOrder = { 2489 }, level = 1, group = "ChanceToBleed", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [3204820200] = { "Attacks have 25% chance to cause Bleeding" }, } }, - ["ChanceToBleedUnique__3_"] = { affix = "", "Attacks have 15% chance to cause Bleeding", statOrder = { 2489 }, level = 1, group = "ChanceToBleed", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [3204820200] = { "Attacks have 15% chance to cause Bleeding" }, } }, - ["SpellDamagePerIntelligenceUniqueStaff12"] = { affix = "", "1% increased Spell Damage per 10 Intelligence", statOrder = { 2738 }, level = 1, group = "SpellDamagePerIntelligence", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2818518881] = { "1% increased Spell Damage per 10 Intelligence" }, } }, - ["MinionDodgeChanceUnique__1"] = { affix = "", "Minions have +(12-15)% chance to Suppress Spell Damage", statOrder = { 9334 }, level = 1, group = "MinionSpellDodgeChance", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [3195300715] = { "Minions have +(12-15)% chance to Suppress Spell Damage" }, } }, - ["MinionLifeRecoveryOnBlockUnique__1"] = { affix = "", "Minions Recover 10% of their Life when they Block", statOrder = { 3061 }, level = 1, group = "MinionLifeRecoveryOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "resource", "life", "minion" }, tradeHashes = { [676967140] = { "Minions Recover 10% of their Life when they Block" }, } }, - ["IncreasedDamageWhileLeechingUnique__1"] = { affix = "", "(30-40)% increased Damage while Leeching", statOrder = { 3063 }, level = 1, group = "IncreasedDamageWhileLeechingLife", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [310246444] = { "(30-40)% increased Damage while Leeching" }, } }, - ["IncreasedDamageWhileLeechingUnique__2__"] = { affix = "", "(15-25)% increased Damage while Leeching", statOrder = { 3063 }, level = 1, group = "IncreasedDamageWhileLeechingLife", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [310246444] = { "(15-25)% increased Damage while Leeching" }, } }, - ["MovementVelocityWhileIgnitedUnique__1"] = { affix = "", "10% increased Movement Speed while Ignited", statOrder = { 2805 }, level = 1, group = "MovementVelocityWhileIgnited", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [581625445] = { "10% increased Movement Speed while Ignited" }, } }, - ["MovementVelocityWhileIgnitedUnique__2"] = { affix = "", "(10-20)% increased Movement Speed while Ignited", statOrder = { 2805 }, level = 1, group = "MovementVelocityWhileIgnited", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [581625445] = { "(10-20)% increased Movement Speed while Ignited" }, } }, - ["DisplayNearbyAlliesHaveCullingStrikeUniqueTwoHandAxe9"] = { affix = "", "Nearby Allies have Culling Strike", statOrder = { 2533 }, level = 1, group = "DisplayGrantsCullingStrike", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1560540713] = { "Nearby Allies have Culling Strike" }, } }, - ["DisplayNearbyAlliesHaveIncreasedItemRarityUniqueTwoHandAxe9"] = { affix = "", "Nearby Allies have 30% increased Item Rarity", statOrder = { 1597 }, level = 1, group = "DisplayIncreasedItemRarity", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1722463112] = { "Nearby Allies have 30% increased Item Rarity" }, } }, - ["DisplayNearbyAlliesHaveCriticalStrikeMultiplierTwoHandAxe9"] = { affix = "", "Nearby Allies have +50% to Critical Strike Multiplier", statOrder = { 7903 }, level = 1, group = "DisplayGrantsCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [3152714748] = { "Nearby Allies have +50% to Critical Strike Multiplier" }, } }, - ["DisplayNearbyAlliesHaveFortifyTwoHandAxe9"] = { affix = "", "Nearby Allies have +10 Fortification", statOrder = { 7905 }, level = 1, group = "DisplayGrantsFortify", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [244825991] = { "Nearby Allies have +10 Fortification" }, } }, - ["CurseEffectivenessUnique__2_"] = { affix = "", "(15-20)% increased Effect of your Curses", statOrder = { 2596 }, level = 1, group = "CurseEffectiveness", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [2353576063] = { "(15-20)% increased Effect of your Curses" }, } }, - ["CurseEffectivenessUnique__3_"] = { affix = "", "(5-10)% increased Effect of your Curses", statOrder = { 2596 }, level = 1, group = "CurseEffectiveness", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [2353576063] = { "(5-10)% increased Effect of your Curses" }, } }, - ["CurseEffectivenessUnique__4"] = { affix = "", "(10-15)% increased Effect of your Curses", statOrder = { 2596 }, level = 1, group = "CurseEffectiveness", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [2353576063] = { "(10-15)% increased Effect of your Curses" }, } }, - ["DamageTakenOnFullESUnique__1"] = { affix = "", "15% increased Damage taken while on Full Energy Shield", statOrder = { 2244 }, level = 1, group = "DamageTakenOnFullES", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [969865219] = { "15% increased Damage taken while on Full Energy Shield" }, } }, - ["ConvertLightningToColdUniqueRing34"] = { affix = "", "40% of Lightning Damage Converted to Cold Damage", statOrder = { 1965 }, level = 25, group = "ConvertLightningToCold", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "lightning" }, tradeHashes = { [2158060122] = { "40% of Lightning Damage Converted to Cold Damage" }, } }, - ["SpellChanceToShockFrozenEnemiesUniqueRing34"] = { affix = "", "Your spells have 100% chance to Shock against Frozen Enemies", statOrder = { 2926 }, level = 1, group = "SpellChanceToShockFrozenEnemies", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "caster", "ailment" }, tradeHashes = { [288651645] = { "Your spells have 100% chance to Shock against Frozen Enemies" }, } }, - ["LifeGainOnEndurangeChargeConsumptionUniqueBodyStrInt6"] = { affix = "", "Gain 100 Life when you lose an Endurance Charge", statOrder = { 3014 }, level = 1, group = "LifeGainOnEnduranceChargeConsumption", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3915702459] = { "Gain 100 Life when you lose an Endurance Charge" }, } }, - ["SummonTotemCastSpeedUnique__1"] = { affix = "", "(14-20)% increased Totem Placement speed", statOrder = { 2578 }, level = 1, group = "SummonTotemCastSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [3374165039] = { "(14-20)% increased Totem Placement speed" }, } }, - ["SummonTotemCastSpeedUnique__2"] = { affix = "", "(30-50)% increased Totem Placement speed", statOrder = { 2578 }, level = 1, group = "SummonTotemCastSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [3374165039] = { "(30-50)% increased Totem Placement speed" }, } }, - ["SummonTotemCastSpeedImplicit1"] = { affix = "", "(20-30)% increased Totem Placement speed", statOrder = { 2578 }, level = 93, group = "SummonTotemCastSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [3374165039] = { "(20-30)% increased Totem Placement speed" }, } }, - ["AttackDamageAgainstBleedingUniqueDagger11"] = { affix = "", "40% increased Attack Damage against Bleeding Enemies", statOrder = { 2491 }, level = 1, group = "AttackDamageAgainstBleeding", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [3944782785] = { "40% increased Attack Damage against Bleeding Enemies" }, } }, - ["AttackDamageAgainstBleedingUniqueOneHandMace8"] = { affix = "", "30% increased Attack Damage against Bleeding Enemies", statOrder = { 2491 }, level = 1, group = "AttackDamageAgainstBleeding", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [3944782785] = { "30% increased Attack Damage against Bleeding Enemies" }, } }, - ["AttackDamageAgainstBleedingUnique__1__"] = { affix = "", "(25-40)% increased Attack Damage against Bleeding Enemies", statOrder = { 2491 }, level = 1, group = "AttackDamageAgainstBleeding", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [3944782785] = { "(25-40)% increased Attack Damage against Bleeding Enemies" }, } }, - ["FlammabilityOnHitUniqueOneHandAxe7"] = { affix = "", "Curse Enemies with Flammability on Hit", statOrder = { 2517 }, level = 1, group = "FlammabilityOnHit", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [654274615] = { "Curse Enemies with Flammability on Hit" }, } }, - ["FlammabilityOnHitUnique__1"] = { affix = "", "Curse Enemies with Flammability on Hit", statOrder = { 2530 }, level = 1, group = "FlammabilityOnHitLevel", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [338121249] = { "Curse Enemies with Flammability on Hit" }, } }, - ["LightningWarpSkillUniqueOneHandAxe8"] = { affix = "", "Grants Level 1 Lightning Warp Skill", statOrder = { 711 }, level = 1, group = "LightningWarpSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [243713911] = { "Grants Level 1 Lightning Warp Skill" }, } }, - ["StunAvoidanceUniqueOneHandSword13"] = { affix = "", "20% chance to Avoid being Stunned", statOrder = { 1851 }, level = 1, group = "AvoidStun", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4262448838] = { "20% chance to Avoid being Stunned" }, } }, - ["StunAvoidanceUnique___1"] = { affix = "", "20% chance to Avoid being Stunned", statOrder = { 1851 }, level = 1, group = "AvoidStun", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4262448838] = { "20% chance to Avoid being Stunned" }, } }, - ["SupportedByMultistrikeUniqueOneHandSword13"] = { affix = "", "Socketed Gems are supported by Level 1 Multistrike", statOrder = { 481 }, level = 1, group = "SupportedByMultistrike", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [2501237765] = { "Socketed Gems are supported by Level 1 Multistrike" }, } }, - ["MeleeDamageAgainstBleedingEnemiesUniqueOneHandMace6"] = { affix = "", "30% increased Melee Damage against Bleeding Enemies", statOrder = { 2492 }, level = 1, group = "MeleeDamageAgainstBleeding", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [1282978314] = { "30% increased Melee Damage against Bleeding Enemies" }, } }, - ["MeleeDamageAgainstBleedingEnemiesUnique__1"] = { affix = "", "50% increased Melee Damage against Bleeding Enemies", statOrder = { 2492 }, level = 1, group = "MeleeDamageAgainstBleeding", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [1282978314] = { "50% increased Melee Damage against Bleeding Enemies" }, } }, - ["SpellAddedFireDamageUniqueWand10"] = { affix = "", "Adds (4-6) to (8-12) Fire Damage to Spells", statOrder = { 1404 }, level = 1, group = "SpellAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (4-6) to (8-12) Fire Damage to Spells" }, } }, - ["SpellAddedFireDamageUnique__1"] = { affix = "", "Adds 100 to 100 Fire Damage to Spells", statOrder = { 1404 }, level = 1, group = "SpellAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds 100 to 100 Fire Damage to Spells" }, } }, - ["SpellAddedFireDamageUnique__2_"] = { affix = "", "Adds (20-30) to 40 Fire Damage to Spells", statOrder = { 1404 }, level = 1, group = "SpellAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (20-30) to 40 Fire Damage to Spells" }, } }, - ["SpellAddedFireDamageUnique__3"] = { affix = "", "Adds (20-24) to (38-46) Fire Damage to Spells", statOrder = { 1404 }, level = 1, group = "SpellAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (20-24) to (38-46) Fire Damage to Spells" }, } }, - ["SpellAddedFireDamageUnique__4"] = { affix = "", "Adds (2-3) to (5-6) Fire Damage to Spells", statOrder = { 1404 }, level = 1, group = "SpellAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (2-3) to (5-6) Fire Damage to Spells" }, } }, - ["SpellAddedFireDamageUnique__5"] = { affix = "", "Battlemage", statOrder = { 10772 }, level = 1, group = "KeystoneBattlemage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [448903047] = { "Battlemage" }, } }, - ["SpellAddedFireDamageUnique__6_"] = { affix = "", "Adds (14-16) to (30-32) Fire Damage to Spells", statOrder = { 1404 }, level = 1, group = "SpellAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (14-16) to (30-32) Fire Damage to Spells" }, } }, - ["SpellAddedFireDamageUnique__7"] = { affix = "", "Adds (9-12) to (19-22) Fire Damage to Spells", statOrder = { 1404 }, level = 1, group = "SpellAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (9-12) to (19-22) Fire Damage to Spells" }, } }, - ["SpellAddedColdDamageUniqueBootsStrDex5"] = { affix = "", "Adds (25-30) to (40-50) Cold Damage to Spells", statOrder = { 1405 }, level = 1, group = "SpellAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (25-30) to (40-50) Cold Damage to Spells" }, } }, - ["SpellAddedColdDamageUnique__1"] = { affix = "", "Adds 100 to 100 Cold Damage to Spells", statOrder = { 1405 }, level = 1, group = "SpellAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds 100 to 100 Cold Damage to Spells" }, } }, - ["SpellAddedColdDamageUnique__2"] = { affix = "", "Adds (20-30) to 40 Cold Damage to Spells", statOrder = { 1405 }, level = 1, group = "SpellAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (20-30) to 40 Cold Damage to Spells" }, } }, - ["SpellAddedColdDamageUnique__3"] = { affix = "", "Adds (2-3) to (5-6) Cold Damage to Spells", statOrder = { 1405 }, level = 1, group = "SpellAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (2-3) to (5-6) Cold Damage to Spells" }, } }, - ["SpellAddedColdDamageUnique__4"] = { affix = "", "Adds (40-60) to (90-110) Cold Damage to Spells", statOrder = { 1405 }, level = 1, group = "SpellAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (40-60) to (90-110) Cold Damage to Spells" }, } }, - ["SpellAddedColdDamageUnique__5"] = { affix = "", "Adds (35-39) to (54-60) Cold Damage to Spells", statOrder = { 1405 }, level = 1, group = "SpellAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (35-39) to (54-60) Cold Damage to Spells" }, } }, - ["SpellAddedColdDamageUnique__6__"] = { affix = "", "Adds (10-12) to (24-28) Cold Damage to Spells", statOrder = { 1405 }, level = 1, group = "SpellAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (10-12) to (24-28) Cold Damage to Spells" }, } }, - ["SpellAddedColdDamageUnique__7"] = { affix = "", "Adds (120-140) to (150-170) Cold Damage to Spells", statOrder = { 1405 }, level = 1, group = "SpellAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (120-140) to (150-170) Cold Damage to Spells" }, } }, - ["SpellAddedLightningDamageUnique__1"] = { affix = "", "Adds 100 to 100 Lightning Damage to Spells", statOrder = { 1406 }, level = 1, group = "SpellAddedLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds 100 to 100 Lightning Damage to Spells" }, } }, - ["SpellAddedLightningDamageUnique__2"] = { affix = "", "Adds (1-10) to (150-200) Lightning Damage to Spells", statOrder = { 1406 }, level = 1, group = "SpellAddedLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (1-10) to (150-200) Lightning Damage to Spells" }, } }, - ["SpellAddedLightningDamageUnique__3"] = { affix = "", "Adds 1 to (10-12) Lightning Damage to Spells", statOrder = { 1406 }, level = 1, group = "SpellAddedLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds 1 to (10-12) Lightning Damage to Spells" }, } }, - ["SpellAddedLightningDamageUnique__4"] = { affix = "", "Adds 1 to (60-70) Lightning Damage to Spells", statOrder = { 1406 }, level = 1, group = "SpellAddedLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds 1 to (60-70) Lightning Damage to Spells" }, } }, - ["SpellAddedLightningDamageUnique__5"] = { affix = "", "Adds (26-35) to (95-105) Lightning Damage to Spells", statOrder = { 1406 }, level = 1, group = "SpellAddedLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (26-35) to (95-105) Lightning Damage to Spells" }, } }, - ["SpellAddedLightningDamageUnique__6_"] = { affix = "", "Adds (13-18) to (50-56) Lightning Damage to Spells", statOrder = { 1406 }, level = 1, group = "SpellAddedLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (13-18) to (50-56) Lightning Damage to Spells" }, } }, - ["SpellAddedLightningDamageUnique__7"] = { affix = "", "Adds 1 to (60-68) Lightning Damage to Spells", statOrder = { 1406 }, level = 1, group = "SpellAddedLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds 1 to (60-68) Lightning Damage to Spells" }, } }, - ["SpellAddedLightningDamageTwoHandUniqueStaff8d"] = { affix = "", "Adds (5-15) to (100-140) Lightning Damage to Spells", statOrder = { 1406 }, level = 1, group = "SpellAddedLightningDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (5-15) to (100-140) Lightning Damage to Spells" }, } }, - ["LocalAddedChaosDamageImplicitE1"] = { affix = "", "Adds (26-38) to (52-70) Chaos Damage", statOrder = { 1390 }, level = 30, group = "LocalChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (26-38) to (52-70) Chaos Damage" }, } }, - ["LocalAddedChaosDamageImplicitE2"] = { affix = "", "Adds (43-55) to (81-104) Chaos Damage", statOrder = { 1390 }, level = 50, group = "LocalChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (43-55) to (81-104) Chaos Damage" }, } }, - ["LocalAddedChaosDamageImplicitE3_"] = { affix = "", "Adds (46-63) to (92-113) Chaos Damage", statOrder = { 1390 }, level = 70, group = "LocalChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (46-63) to (92-113) Chaos Damage" }, } }, - ["DamageWithMovementSkillsUniqueClaw9"] = { affix = "", "20% increased Damage with Movement Skills", statOrder = { 1431 }, level = 1, group = "DamageWithMovementSkills", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [856021430] = { "20% increased Damage with Movement Skills" }, } }, - ["DamageWithMovementSkillsUniqueBodyDex5"] = { affix = "", "(60-100)% increased Damage with Movement Skills", statOrder = { 1431 }, level = 1, group = "DamageWithMovementSkills", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [856021430] = { "(60-100)% increased Damage with Movement Skills" }, } }, - ["AttackSpeedWithMovementSkillsUniqueClaw9"] = { affix = "", "15% increased Attack Speed with Movement Skills", statOrder = { 1432 }, level = 1, group = "AttackSpeedWithMovementSkills", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [3683134121] = { "15% increased Attack Speed with Movement Skills" }, } }, - ["AttackSpeedWithMovementSkillsUniqueBodyDex5"] = { affix = "", "(10-20)% increased Attack Speed with Movement Skills", statOrder = { 1432 }, level = 1, group = "AttackSpeedWithMovementSkills", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [3683134121] = { "(10-20)% increased Attack Speed with Movement Skills" }, } }, - ["LifeGainedOnKillingIgnitedEnemiesUniqueWand10_"] = { affix = "", "Gain 10 Life per Ignited Enemy Killed", statOrder = { 1753 }, level = 1, group = "LifeGainedOnKillingIgnitedEnemies", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [893903361] = { "Gain 10 Life per Ignited Enemy Killed" }, } }, - ["LifeGainedOnKillingIgnitedEnemiesUnique__1"] = { affix = "", "Gain (200-300) Life per Ignited Enemy Killed", statOrder = { 1753 }, level = 1, group = "LifeGainedOnKillingIgnitedEnemies", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [893903361] = { "Gain (200-300) Life per Ignited Enemy Killed" }, } }, - ["DamageTakenFromSkeletonsUniqueOneHandSword12_"] = { affix = "", "10% increased Damage taken from Skeletons", statOrder = { 2247 }, level = 1, group = "DamageTakenFromSkeletons", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [705686721] = { "10% increased Damage taken from Skeletons" }, } }, - ["DamageTakenFromGhostsUniqueOneHandSword12"] = { affix = "", "10% increased Damage taken from Ghosts", statOrder = { 2248 }, level = 1, group = "DamageTakenFromGhosts", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2156764291] = { "10% increased Damage taken from Ghosts" }, } }, - ["CannotBeShockedWhileFrozenUniqueStaff14"] = { affix = "", "You cannot be Shocked while Frozen", statOrder = { 2898 }, level = 1, group = "CannotBeShockedWhileFrozen", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [798853218] = { "You cannot be Shocked while Frozen" }, } }, - ["LifeLeechPhysicalAgainstBleedingEnemiesUniqueOneHandMace8"] = { affix = "", "3% of Attack Damage Leeched as Life against Bleeding Enemies", statOrder = { 1696 }, level = 1, group = "LifeLeechPhysicalAgainstBleedingEnemies", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [1625933063] = { "3% of Attack Damage Leeched as Life against Bleeding Enemies" }, } }, - ["DisplaySocketedGemsSupportedByMinionLifeUniqueRing35"] = { affix = "", "Socketed Gems are Supported by Level 15 Minion Life", statOrder = { 504 }, level = 1, group = "DisplaySocketedGemsSupportedByMinionLife", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [1337327984] = { "Socketed Gems are Supported by Level 15 Minion Life" }, } }, - ["DisplaySocketedGemsSupportedByLesserMultipleProjectilesUniqueRing36"] = { affix = "", "Socketed Gems are Supported by Level 12 Multiple Projectiles", statOrder = { 505 }, level = 1, group = "DisplaySocketedGemsSupportedByLesserMultipleProjectiles", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [584144941] = { "Socketed Gems are Supported by Level 12 Multiple Projectiles" }, } }, - ["DisplaySocketedGemsSupportedByIncreasedMinionDamageUniqueRing36"] = { affix = "", "Socketed Gems are Supported by Level 17 Minion Damage", statOrder = { 506 }, level = 1, group = "DisplaySocketedGemsSupportedByIncreasedMinionDamage", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [808939569] = { "Socketed Gems are Supported by Level 17 Minion Damage" }, } }, - ["DisplaySocketedGemsSupportedByIncreasedCriticalDamageUniqueRing37_"] = { affix = "", "Socketed Gems are Supported by Level 16 Increased Critical Damage", statOrder = { 507 }, level = 1, group = "DisplaySocketedGemsSupportedByIncreasedCriticalDamage", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [1771903158] = { "Socketed Gems are Supported by Level 16 Increased Critical Damage" }, } }, - ["DisplaySocketedGemsSupportedByMinionSpeedUniqueRing37"] = { affix = "", "Socketed Gems are Supported by Level 16 Minion Speed", statOrder = { 508 }, level = 1, group = "DisplaySocketedGemsSupportedByMinionSpeed", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [995332031] = { "Socketed Gems are Supported by Level 16 Minion Speed" }, } }, - ["ManaGainedOnHitAgainstTauntedEnemyUniqueShieldInt5"] = { affix = "", "Gain 3 Mana per Taunted Enemy Hit", statOrder = { 1784 }, level = 1, group = "ManaOnHitVsTauntedEnemy", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1834588299] = { "Gain 3 Mana per Taunted Enemy Hit" }, } }, - ["LifeGainedOnTauntingEnemyUniqueShieldStr4"] = { affix = "", "Gain +10 Life when you Taunt an Enemy", statOrder = { 1783 }, level = 1, group = "LifeGainedOnTauntingEnemy", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3726536628] = { "Gain +10 Life when you Taunt an Enemy" }, } }, - ["LifeGainedOnTauntingEnemyUnique__1"] = { affix = "", "Gain +50 Life when you Taunt an Enemy", statOrder = { 1783 }, level = 1, group = "LifeGainedOnTauntingEnemy", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3726536628] = { "Gain +50 Life when you Taunt an Enemy" }, } }, - ["IncreasedTauntDurationUniqueShieldStr4"] = { affix = "", "20% increased Taunt Duration", statOrder = { 1782 }, level = 1, group = "TauntDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3651611160] = { "20% increased Taunt Duration" }, } }, - ["OnslaughtOnKillingTauntedEnemyUniqueShieldDex7"] = { affix = "", "You gain Onslaught for 2 seconds on Killing Taunted Enemies", statOrder = { 2644 }, level = 1, group = "OnslaughtOnKillingTauntedEnemy", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2580101523] = { "You gain Onslaught for 2 seconds on Killing Taunted Enemies" }, } }, - ["OnslaughtOnKillingTauntedEnemyUnique__1"] = { affix = "", "You gain Onslaught for 1 seconds on Killing Taunted Enemies", statOrder = { 2644 }, level = 1, group = "OnslaughtOnKillingTauntedEnemy", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2580101523] = { "You gain Onslaught for 1 seconds on Killing Taunted Enemies" }, } }, - ["TotemAreaOfEffectUniqueShieldStr5"] = { affix = "", "15% increased Area of Effect for Skills used by Totems", statOrder = { 2581 }, level = 1, group = "TotemAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [869436347] = { "15% increased Area of Effect for Skills used by Totems" }, } }, - ["LifeLeechFromTotemSkillsUniqueShieldStr5"] = { affix = "", "1% of Damage Leeched as Life for Skills used by Totems", statOrder = { 2582 }, level = 1, group = "LifeLeechFromTotemSkills", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2449723897] = { "1% of Damage Leeched as Life for Skills used by Totems" }, } }, - ["AnimateWeaponDurationUniqueTwoHandMace8"] = { affix = "", "30% less Animate Weapon Duration", statOrder = { 2795 }, level = 1, group = "AnimateWeaponDuration", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [414991155] = { "30% less Animate Weapon Duration" }, } }, - ["NumberOfAdditionalAnimateWeaponCopiesUniqueTwoHandMace8"] = { affix = "", "Weapons you Animate create an additional copy", statOrder = { 2797 }, level = 1, group = "NumberOfAdditionalAnimateWeaponCopies", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [1266553505] = { "Weapons you Animate create an additional copy" }, } }, - ["DamageYouReflectGainedAsLifeUniqueHelmetDexInt6"] = { affix = "", "100% of Damage you Reflect to Enemies when Hit is leeched as Life", statOrder = { 2711 }, level = 1, group = "DamageYouReflectGainedAsLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [743992531] = { "100% of Damage you Reflect to Enemies when Hit is leeched as Life" }, } }, - ["DamageYouReflectGainedAsLifeUnique__1"] = { affix = "", "10% of Damage you Reflect to Enemies when Hit is leeched as Life", statOrder = { 2711 }, level = 1, group = "DamageYouReflectGainedAsLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [743992531] = { "10% of Damage you Reflect to Enemies when Hit is leeched as Life" }, } }, - ["ImmuneToChilledGroundUniqueBootsStrDex5"] = { affix = "", "Unaffected by Chilled Ground", statOrder = { 10462 }, level = 1, group = "ChilledGroundEffectEffectiveness", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3653191834] = { "Unaffected by Chilled Ground" }, } }, - ["ImmuneToBurningGroundUniqueBootsStr3"] = { affix = "", "Unaffected by Burning Ground", statOrder = { 10457 }, level = 1, group = "BurningGroundEffectEffectiveness", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire" }, tradeHashes = { [1643688236] = { "Unaffected by Burning Ground" }, } }, - ["UniqueUnaffectedByBurningGround__1"] = { affix = "", "Unaffected by Burning Ground", statOrder = { 10457 }, level = 1, group = "BurningGroundEffectEffectiveness", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire" }, tradeHashes = { [1643688236] = { "Unaffected by Burning Ground" }, } }, - ["ImmuneToShockedGroundUniqueBootsDexInt4"] = { affix = "", "Unaffected by Shocked Ground", statOrder = { 10482 }, level = 1, group = "ShockedGroundEffectEffectiveness", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [2234049899] = { "Unaffected by Shocked Ground" }, } }, - ["UniqueUnaffectedByShockedGround__1"] = { affix = "", "Unaffected by Shocked Ground", statOrder = { 10482 }, level = 1, group = "ShockedGroundEffectEffectiveness", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [2234049899] = { "Unaffected by Shocked Ground" }, } }, - ["ImmuneToDesecratedGroundUniqueBootsInt6"] = { affix = "", "Unaffected by Desecrated Ground", statOrder = { 10468 }, level = 1, group = "DesecratedGroundEffectEffectiveness", weightKey = { }, weightVal = { }, modTags = { "chaos" }, tradeHashes = { [4004298002] = { "Unaffected by Desecrated Ground" }, } }, - ["UniqueUnaffectedByDesecratedGround__1"] = { affix = "", "Unaffected by Desecrated Ground", statOrder = { 10468 }, level = 1, group = "DesecratedGroundEffectEffectiveness", weightKey = { }, weightVal = { }, modTags = { "chaos" }, tradeHashes = { [4004298002] = { "Unaffected by Desecrated Ground" }, } }, - ["UniqueUnaffectedByChilledGround__1"] = { affix = "", "Unaffected by Chilled Ground", statOrder = { 10462 }, level = 1, group = "ChilledGroundEffectEffectiveness", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3653191834] = { "Unaffected by Chilled Ground" }, } }, - ["ImmuneToShockedGroundUnique__1"] = { affix = "", "Unaffected by Shocked Ground", statOrder = { 10482 }, level = 1, group = "ShockedGroundEffectEffectiveness", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [2234049899] = { "Unaffected by Shocked Ground" }, } }, - ["ShockedGroundWhenHitUniqueHelmetInt10"] = { affix = "", "20% chance to create Shocked Ground when Hit", statOrder = { 2577 }, level = 1, group = "ShockedGroundWhenHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3355479537] = { "20% chance to create Shocked Ground when Hit" }, } }, - ["ShockedGroundWhenHitUnique__1"] = { affix = "", "Trigger Level 10 Shock Ground when Hit", statOrder = { 676 }, level = 1, group = "ShockedGroundWhenHitSkill", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2668070396] = { "Trigger Level 10 Shock Ground when Hit" }, } }, - ["AddedLightningDamageToSpellsAndAttacksUniqueHelmetInt10"] = { affix = "", "Adds 1 to (60-80) Lightning Damage to Spells and Attacks", statOrder = { 1409 }, level = 1, group = "AddedLightningDamageSpellsAndAttacks", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "attack", "caster" }, tradeHashes = { [2885144362] = { "Adds 1 to (60-80) Lightning Damage to Spells and Attacks" }, } }, - ["AddedLightningDamageToSpellsAndAttacksUnique__1"] = { affix = "", "Adds (3-15) to (80-100) Lightning Damage to Spells and Attacks", statOrder = { 1409 }, level = 1, group = "AddedLightningDamageSpellsAndAttacks", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "attack", "caster" }, tradeHashes = { [2885144362] = { "Adds (3-15) to (80-100) Lightning Damage to Spells and Attacks" }, } }, - ["RandomCurseOnHitChanceUniqueHelmetInt10"] = { affix = "", "20% chance to Curse non-Cursed Enemies with a random Hex on Hit", statOrder = { 9826 }, level = 1, group = "RandomCurseOnHitChance", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [1726444796] = { "20% chance to Curse non-Cursed Enemies with a random Hex on Hit" }, } }, - ["RandomCurseWhenHitChanceUnique__1"] = { affix = "", "Curse Enemies which Hit you with a random Hex, ignoring Curse Limit", statOrder = { 9827 }, level = 1, group = "RandomCurseWhenHitChance", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [2674214144] = { "Curse Enemies which Hit you with a random Hex, ignoring Curse Limit" }, } }, - ["CanInflictMultipleIgnitesUniqueRing38"] = { affix = "", "You can inflict an additional Ignite on each Enemy", statOrder = { 9522 }, level = 20, group = "CanInflictMultipleIgnites", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [2837603657] = { "You can inflict an additional Ignite on each Enemy" }, } }, - ["EmberwakeLessBurningDamageUniqueRing38"] = { affix = "", "Ignited Enemies Burn (50-65)% slower", statOrder = { 2565 }, level = 1, group = "EmberwakeLessBurningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, tradeHashes = { [1619549198] = { "Ignited Enemies Burn (50-65)% slower" }, } }, - ["EmberwakeLessBurningDamageUnique__1"] = { affix = "", "40% less Burning Damage", statOrder = { 8013 }, level = 1, group = "EmberwakeLessBurningDamageNew", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, tradeHashes = { [3134513219] = { "40% less Burning Damage" }, } }, - ["GainPhasingOnVaalSkillUseUnique__1"] = { affix = "", "You gain Phasing for 10 seconds on using a Vaal Skill", statOrder = { 2921 }, level = 1, group = "GainPhasingOnVaalSkillUse", weightKey = { }, weightVal = { }, modTags = { "vaal" }, tradeHashes = { [4089413281] = { "You gain Phasing for 10 seconds on using a Vaal Skill" }, } }, - ["MovementSpeedWhilePhasedUnique__1"] = { affix = "", "15% increased Movement Speed while Phasing", statOrder = { 2610 }, level = 1, group = "MovementSpeedWhilePhased", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [3684879618] = { "15% increased Movement Speed while Phasing" }, } }, - ["MovementSpeedWhilePhasedUnique__2"] = { affix = "", "10% increased Movement Speed while Phasing", statOrder = { 2610 }, level = 1, group = "MovementSpeedWhilePhased", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [3684879618] = { "10% increased Movement Speed while Phasing" }, } }, - ["LifePerRedSocket"] = { affix = "", "+30 to Maximum Life per Red Socket", statOrder = { 2716 }, level = 1, group = "LifePerRedSocket", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [4210076836] = { "+30 to Maximum Life per Red Socket" }, } }, - ["EnergyShieldPerBlueSocket"] = { affix = "", "+30 to Maximum Energy Shield per Blue Socket", statOrder = { 2724 }, level = 1, group = "EnergyShieldPerBlueSocket", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2906522048] = { "+30 to Maximum Energy Shield per Blue Socket" }, } }, - ["ManaPerGreenSocket"] = { affix = "", "+30 to Maximum Mana per Green Socket", statOrder = { 2720 }, level = 1, group = "ManaPerGreenSocket", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [896299992] = { "+30 to Maximum Mana per Green Socket" }, } }, - ["LifePerRedSocketUniqueRing39"] = { affix = "", "+100 to Maximum Life per Red Socket", statOrder = { 2716 }, level = 1, group = "LifePerRedSocket", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [4210076836] = { "+100 to Maximum Life per Red Socket" }, } }, - ["EnergyShieldPerBlueSocketUniqueRing39"] = { affix = "", "+100 to Maximum Energy Shield per Blue Socket", statOrder = { 2724 }, level = 1, group = "EnergyShieldPerBlueSocket", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2906522048] = { "+100 to Maximum Energy Shield per Blue Socket" }, } }, - ["ManaPerGreenSocketUniqueRing39"] = { affix = "", "+100 to Maximum Mana per Green Socket", statOrder = { 2720 }, level = 1, group = "ManaPerGreenSocket", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [896299992] = { "+100 to Maximum Mana per Green Socket" }, } }, - ["ItemRarityPerWhiteSocketUniqueRing39"] = { affix = "", "60% increased Item Rarity per White Socket", statOrder = { 2730 }, level = 1, group = "ItemRarityPerWhiteSocket", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [144675621] = { "60% increased Item Rarity per White Socket" }, } }, - ["IncreasedDamageOnZeroEnergyShieldUniqueShieldStrInt8"] = { affix = "", "(20-30)% increased Damage while you have no Energy Shield", statOrder = { 2734 }, level = 1, group = "IncreasedDamageOnZeroEnergyShield", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [414379784] = { "(20-30)% increased Damage while you have no Energy Shield" }, } }, - ["IncreasedArmourOnZeroEnergyShieldUnique__1"] = { affix = "", "100% increased Global Armour while you have no Energy Shield", statOrder = { 2735 }, level = 1, group = "IncreasedArmourOnZeroEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [3827349913] = { "100% increased Global Armour while you have no Energy Shield" }, } }, - ["UnholyMightOnBlockChanceUniqueShieldStrInt8"] = { affix = "", "30% chance to gain Unholy Might on Block for 3 seconds", statOrder = { 3046 }, level = 1, group = "UnholyMightOnBlockChance", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [414622266] = { "30% chance to gain Unholy Might on Block for 3 seconds" }, } }, - ["UnholyMightOnBlockChanceUnique__1"] = { affix = "", "Gain Unholy Might on Block for 10 seconds", statOrder = { 3046 }, level = 1, group = "UnholyMightOnBlockChanceDuration", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [3217895241] = { "" }, [414622266] = { "Gain Unholy Might on Block for 3 seconds" }, } }, - ["IncreasedDamageOnBurningGroundUniqueBootsInt6"] = { affix = "", "50% increased Damage on Burning Ground", statOrder = { 2147 }, level = 1, group = "IncreasedDamageOnBurningGround", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [3098087057] = { "50% increased Damage on Burning Ground" }, } }, - ["LifeRegenerationPercentOnChilledGroundUniqueBootsInt6"] = { affix = "", "Regenerate 2% of Life per second on Chilled Ground", statOrder = { 2148 }, level = 1, group = "LifeRegenerationPercentOnChilledGround", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [710105516] = { "Regenerate 2% of Life per second on Chilled Ground" }, } }, - ["MovementVelocityOnShockedGroundUniqueBootsInt6_"] = { affix = "", "20% increased Movement Speed on Shocked Ground", statOrder = { 2146 }, level = 1, group = "MovementVelocityOnShockedGround", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [3678841229] = { "20% increased Movement Speed on Shocked Ground" }, } }, - ["ChaosDamageLifeLeechPermyriadUniqueShieldStrInt8"] = { affix = "", "0.4% of Chaos Damage Leeched as Life", statOrder = { 1682 }, level = 1, group = "ChaosDamageLifeLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "chaos" }, tradeHashes = { [744082851] = { "0.4% of Chaos Damage Leeched as Life" }, } }, - ["ChaosDamageLifeLeechPermyriadUnique__1"] = { affix = "", "0.2% of Chaos Damage Leeched as Life", statOrder = { 1682 }, level = 1, group = "ChaosDamageLifeLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "chaos" }, tradeHashes = { [744082851] = { "0.2% of Chaos Damage Leeched as Life" }, } }, - ["ChaosDamageLifeLeechPermyriadUnique__2"] = { affix = "", "0.5% of Chaos Damage Leeched as Life", statOrder = { 1682 }, level = 1, group = "ChaosDamageLifeLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "chaos" }, tradeHashes = { [744082851] = { "0.5% of Chaos Damage Leeched as Life" }, } }, - ["ChaosDamageLifeLeechPermyriadUnique__3"] = { affix = "", "(0.4-0.5)% of Chaos Damage Leeched as Life", statOrder = { 1682 }, level = 1, group = "ChaosDamageLifeLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "chaos" }, tradeHashes = { [744082851] = { "(0.4-0.5)% of Chaos Damage Leeched as Life" }, } }, - ["PhysicalDamageAddedAsChaosImplicitQuiver11New"] = { affix = "", "Gain (10-15)% of Physical Damage as Extra Chaos Damage", statOrder = { 1935 }, level = 69, group = "PhysicalDamageAddedAsChaos", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, tradeHashes = { [3319896421] = { "Gain (10-15)% of Physical Damage as Extra Chaos Damage" }, } }, - ["PhysicalDamageAddedAsChaosUniqueShiledStrInt8"] = { affix = "", "Gain (5-10)% of Physical Damage as Extra Chaos Damage", statOrder = { 1935 }, level = 1, group = "PhysicalDamageAddedAsChaos", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, tradeHashes = { [3319896421] = { "Gain (5-10)% of Physical Damage as Extra Chaos Damage" }, } }, - ["ItemQuantityPerWhiteSocketUniqueRing39_"] = { affix = "", "15% increased Item Quantity per White Socket", statOrder = { 2728 }, level = 75, group = "ItemQuantityPerWhiteSocket", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [2340173293] = { "15% increased Item Quantity per White Socket" }, } }, - ["TalismanHasOneSocket_"] = { affix = "", "Has 1 Socket", statOrder = { 69 }, level = 1, group = "HasXSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4077843608] = { "Has 1 Socket" }, } }, - ["TalismanIncreasedMana"] = { affix = "", "(20-30)% increased maximum Mana", statOrder = { 1580 }, level = 1, group = "MaximumManaIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2748665614] = { "(20-30)% increased maximum Mana" }, } }, - ["TalismanIncreasedFireDamage"] = { affix = "", "(20-30)% increased Fire Damage", statOrder = { 1357 }, level = 1, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(20-30)% increased Fire Damage" }, } }, - ["TalismanIncreasedColdDamage"] = { affix = "", "(20-30)% increased Cold Damage", statOrder = { 1366 }, level = 1, group = "ColdDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(20-30)% increased Cold Damage" }, } }, - ["TalismanIncreasedLightningDamage"] = { affix = "", "(20-30)% increased Lightning Damage", statOrder = { 1377 }, level = 1, group = "LightningDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(20-30)% increased Lightning Damage" }, } }, - ["TalismanIncreasedPhysicalDamage"] = { affix = "", "(20-30)% increased Global Physical Damage", statOrder = { 1231 }, level = 1, group = "PhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "(20-30)% increased Global Physical Damage" }, } }, - ["TalismanIncreasedChaosDamage"] = { affix = "", "(19-31)% increased Chaos Damage", statOrder = { 1385 }, level = 1, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(19-31)% increased Chaos Damage" }, } }, - ["TalismanAdditionalZombie"] = { affix = "", "+1 to maximum number of Raised Zombies", statOrder = { 2160 }, level = 1, group = "MaximumMinionCount", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [1652515349] = { "+1 to maximum number of Raised Zombies" }, [2428829184] = { "" }, [125218179] = { "" }, } }, - ["TalismanIncreasedCriticalChance"] = { affix = "", "(40-50)% increased Global Critical Strike Chance", statOrder = { 1459 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(40-50)% increased Global Critical Strike Chance" }, } }, - ["TalismanIncreasedStrength"] = { affix = "", "(8-14)% increased Strength", statOrder = { 1184 }, level = 1, group = "PercentageStrength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [734614379] = { "(8-14)% increased Strength" }, } }, - ["TalismanIncreasedDexterity"] = { affix = "", "(8-14)% increased Dexterity", statOrder = { 1185 }, level = 1, group = "PercentageDexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4139681126] = { "(8-14)% increased Dexterity" }, } }, - ["TalismanIncreasedIntelligence"] = { affix = "", "(8-14)% increased Intelligence", statOrder = { 1186 }, level = 1, group = "PercentageIntelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [656461285] = { "(8-14)% increased Intelligence" }, } }, - ["TalismanIncreasedEnergyShield"] = { affix = "", "(15-25)% increased maximum Energy Shield", statOrder = { 1561 }, level = 1, group = "GlobalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2482852589] = { "(15-25)% increased maximum Energy Shield" }, } }, - ["TalismanIncreasedLife"] = { affix = "", "(8-12)% increased maximum Life", statOrder = { 1571 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "(8-12)% increased maximum Life" }, } }, - ["TalismanIncreasedItemQuantity"] = { affix = "", "(6-10)% increased Quantity of Items found", statOrder = { 1592 }, level = 1, group = "ItemQuantityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [884586851] = { "(6-10)% increased Quantity of Items found" }, } }, - ["TalismanIncreasedAllAttributes"] = { affix = "", "(12-16)% increased Attributes", statOrder = { 1183 }, level = 1, group = "PercentageAllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3143208761] = { "(12-16)% increased Attributes" }, } }, - ["TalismanGlobalDamageOverTimeMultiplier"] = { affix = "", "+(12-18)% to Damage over Time Multiplier", statOrder = { 1242 }, level = 1, group = "GlobalDamageOverTimeMultiplier", weightKey = { }, weightVal = { }, modTags = { "dot_multi", "damage" }, tradeHashes = { [3988349707] = { "+(12-18)% to Damage over Time Multiplier" }, } }, - ["AllAttributesPercentUnique__2"] = { affix = "", "(5-15)% increased Attributes", statOrder = { 1183 }, level = 1, group = "PercentageAllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3143208761] = { "(5-15)% increased Attributes" }, } }, - ["TalismanIncreasedDamage"] = { affix = "", "(25-35)% increased Damage", statOrder = { 1191 }, level = 1, group = "AllDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2154246560] = { "(25-35)% increased Damage" }, } }, - ["TalismanIncreasedCriticalStrikeMultiplier_"] = { affix = "", "+(24-36)% to Global Critical Strike Multiplier", statOrder = { 1488 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "+(24-36)% to Global Critical Strike Multiplier" }, } }, - ["TalismanDamageDealtAddedAsRandomElement"] = { affix = "", "Gain (6-12)% of Physical Damage as Extra Damage of a random Element", statOrder = { 2936 }, level = 1, group = "PhysicalDamageAddedAsRandomElement", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental" }, tradeHashes = { [3753703249] = { "Gain (6-12)% of Physical Damage as Extra Damage of a random Element" }, } }, - ["TalismanIncreasedAreaOfEffect"] = { affix = "", "(5-8)% increased Area of Effect", statOrder = { 1880 }, level = 1, group = "AreaOfEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [280731498] = { "(5-8)% increased Area of Effect" }, } }, - ["TalismanFireTakenAsCold"] = { affix = "", "50% of Fire Damage from Hits taken as Cold Damage", statOrder = { 3176 }, level = 1, group = "FireDamageTakenAsCold", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold" }, tradeHashes = { [2522672898] = { "50% of Fire Damage from Hits taken as Cold Damage" }, } }, - ["FireDamageTakenAsColdUnique___1"] = { affix = "", "20% of Fire Damage from Hits taken as Cold Damage", statOrder = { 3176 }, level = 1, group = "FireDamageTakenAsCold", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold" }, tradeHashes = { [2522672898] = { "20% of Fire Damage from Hits taken as Cold Damage" }, } }, - ["FireDamageTakenAsColdUnique___2_"] = { affix = "", "30% of Fire Damage from Hits taken as Cold Damage", statOrder = { 3176 }, level = 62, group = "FireDamageTakenAsCold", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold" }, tradeHashes = { [2522672898] = { "30% of Fire Damage from Hits taken as Cold Damage" }, } }, - ["TalismanFireTakenAsLightning"] = { affix = "", "50% of Fire Damage from Hits taken as Lightning Damage", statOrder = { 3177 }, level = 1, group = "FireDamageTakenAsLightning", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "lightning" }, tradeHashes = { [1504091975] = { "50% of Fire Damage from Hits taken as Lightning Damage" }, } }, - ["TalismanColdTakenAsFire"] = { affix = "", "50% of Cold Damage from Hits taken as Fire Damage", statOrder = { 3178 }, level = 1, group = "ColdDamageTakenAsFire", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold" }, tradeHashes = { [1189760108] = { "50% of Cold Damage from Hits taken as Fire Damage" }, } }, - ["TalismanColdTakenAsLightning"] = { affix = "", "50% of Cold Damage from Hits taken as Lightning Damage", statOrder = { 3179 }, level = 1, group = "ColdDamageTakenAsLightning", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "lightning" }, tradeHashes = { [1313503107] = { "50% of Cold Damage from Hits taken as Lightning Damage" }, } }, - ["TalismanLightningTakenAsCold"] = { affix = "", "50% of Lightning Damage from Hits taken as Cold Damage", statOrder = { 3182 }, level = 1, group = "LightningDamageTakenAsCold", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "lightning" }, tradeHashes = { [1017730114] = { "50% of Lightning Damage from Hits taken as Cold Damage" }, } }, - ["TalismanLightningTakenAsFire"] = { affix = "", "50% of Lightning Damage from Hits taken as Fire Damage", statOrder = { 3180 }, level = 1, group = "LightningDamageTakenAsFire", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "lightning" }, tradeHashes = { [3375859421] = { "50% of Lightning Damage from Hits taken as Fire Damage" }, } }, - ["TalismanReducedPhysicalDamageTaken_"] = { affix = "", "(4-6)% additional Physical Damage Reduction", statOrder = { 2273 }, level = 1, group = "ReducedPhysicalDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHashes = { [3771516363] = { "(4-6)% additional Physical Damage Reduction" }, } }, - ["TalismanIncreasedSkillEffectDuration"] = { affix = "", "(20-25)% increased Skill Effect Duration", statOrder = { 1895 }, level = 1, group = "SkillEffectDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3377888098] = { "(20-25)% increased Skill Effect Duration" }, } }, - ["TalismanPercentLifeRegeneration"] = { affix = "", "Regenerate 2% of Life per second", statOrder = { 1944 }, level = 1, group = "LifeRegenerationRatePercentage", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [836936635] = { "Regenerate 2% of Life per second" }, } }, - ["TalismanChanceToFreezeShockIgnite_"] = { affix = "", "(4-6)% chance to Freeze, Shock and Ignite", statOrder = { 2801 }, level = 1, group = "ChanceToFreezeShockIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [800141891] = { "(4-6)% chance to Freeze, Shock and Ignite" }, } }, - ["TalismanFrenzyChargeOnKill"] = { affix = "", "10% chance to gain a Frenzy Charge on Kill", statOrder = { 2631 }, level = 1, group = "FrenzyChargeOnKillChance", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [1826802197] = { "10% chance to gain a Frenzy Charge on Kill" }, } }, - ["TalismanPowerChargeOnKill"] = { affix = "", "10% chance to gain a Power Charge on Kill", statOrder = { 2633 }, level = 1, group = "PowerChargeOnKillChance", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [2483795307] = { "10% chance to gain a Power Charge on Kill" }, } }, - ["TalismanEnduranceChargeOnKill_"] = { affix = "", "10% chance to gain an Endurance Charge on Kill", statOrder = { 2629 }, level = 1, group = "EnduranceChargeOnKillChance", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHashes = { [1054322244] = { "10% chance to gain an Endurance Charge on Kill" }, } }, - ["TalismanGlobalDefensesPercent"] = { affix = "", "(15-25)% increased Global Defences", statOrder = { 2833 }, level = 1, group = "AllDefences", weightKey = { }, weightVal = { }, modTags = { "defences" }, tradeHashes = { [1389153006] = { "(15-25)% increased Global Defences" }, } }, - ["TalismanFishBiteSensitivity"] = { affix = "", "(30-40)% increased Fish Bite Sensitivity", statOrder = { 3583 }, level = 1, group = "FishingBiteSensitivity", weightKey = { }, weightVal = { }, modTags = { "green_herring" }, tradeHashes = { [1296614065] = { "(30-40)% increased Fish Bite Sensitivity" }, } }, - ["FishBiteSensitivityUnique__1"] = { affix = "", "(20-40)% increased Fish Bite Sensitivity", statOrder = { 3583 }, level = 48, group = "FishingBiteSensitivity", weightKey = { }, weightVal = { }, modTags = { "green_herring" }, tradeHashes = { [1296614065] = { "(20-40)% increased Fish Bite Sensitivity" }, } }, - ["TalismanAttackAndCastSpeed"] = { affix = "", "(6-10)% increased Attack and Cast Speed", statOrder = { 2046 }, level = 1, group = "AttackAndCastSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed" }, tradeHashes = { [2672805335] = { "(6-10)% increased Attack and Cast Speed" }, } }, - ["TalismanSpellDamage"] = { affix = "", "(20-30)% increased Spell Damage", statOrder = { 1223 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(20-30)% increased Spell Damage" }, } }, - ["TalismanAttackDamage"] = { affix = "", "(20-30)% increased Attack Damage", statOrder = { 1198 }, level = 1, group = "AttackDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [2843214518] = { "(20-30)% increased Attack Damage" }, } }, - ["TalismanPierceChance"] = { affix = "", "Projectiles Pierce (25-35) additional Targets", statOrder = { 10355 }, level = 1, group = "OldTalismanPierce", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2902845638] = { "Projectiles Pierce (25-35) additional Targets" }, } }, - ["TalismanAdditionalPierce"] = { affix = "", "Projectiles Pierce 2 additional Targets", statOrder = { 1790 }, level = 1, group = "AdditionalPierce", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2067062068] = { "Projectiles Pierce 2 additional Targets" }, } }, - ["DamageTakeFromManaBeforeLifePerPowerChargeUnique__1"] = { affix = "", "1% of Damage is taken from Mana before Life per Power Charge", statOrder = { 3165 }, level = 40, group = "DamageTakeFromManaBeforeLifePerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana" }, tradeHashes = { [1325047894] = { "1% of Damage is taken from Mana before Life per Power Charge" }, } }, - ["IncreasedManaRegenerationPerPowerChargeUnique__1"] = { affix = "", "10% increased Mana Regeneration Rate per Power Charge", statOrder = { 1979 }, level = 1, group = "IncreasedManaRegenerationPerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2847548062] = { "10% increased Mana Regeneration Rate per Power Charge" }, } }, - ["CriticalStrikeChancePerPowerChargeUnique__1"] = { affix = "", "40% reduced Critical Strike Chance per Power Charge", statOrder = { 3166 }, level = 1, group = "CriticalStrikeChancePerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [2102212273] = { "40% reduced Critical Strike Chance per Power Charge" }, } }, - ["FlaskChargeRecoveryDuringFlaskEffectUnique__1"] = { affix = "", "50% increased Flask Charges gained during any Flask Effect", statOrder = { 3183 }, level = 1, group = "FlaskChargeRecoveryDuringFlaskEffect", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [662803072] = { "50% increased Flask Charges gained during any Flask Effect" }, } }, - ["FlaskChargeRecoveryDuringFlaskEffectUnique__2"] = { affix = "", "30% reduced Flask Charges gained during any Flask Effect", statOrder = { 3183 }, level = 1, group = "FlaskChargeRecoveryDuringFlaskEffect", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [662803072] = { "30% reduced Flask Charges gained during any Flask Effect" }, } }, - ["ManaRegenerationDuringFlaskEffectUnique__1"] = { affix = "", "50% increased Mana Regeneration Rate during any Flask Effect", statOrder = { 3184 }, level = 14, group = "ManaRegenerationDuringFlaskEffect", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "mana" }, tradeHashes = { [2993091567] = { "50% increased Mana Regeneration Rate during any Flask Effect" }, } }, - ["EnemiesLoseLifePlayerLeechesUnique__1"] = { affix = "", "200% of Life Leech applies to Enemies as Chaos Damage", statOrder = { 3185 }, level = 55, group = "EnemiesLoseLifePlayerLeeches", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "resource", "life", "damage", "chaos" }, tradeHashes = { [768537671] = { "200% of Life Leech applies to Enemies as Chaos Damage" }, } }, - ["MovementSpeedDuringFlaskEffectUnique__1"] = { affix = "", "15% increased Movement Speed during any Flask Effect", statOrder = { 3186 }, level = 1, group = "MovementSpeedDuringFlaskEffect", weightKey = { }, weightVal = { }, modTags = { "flask", "speed" }, tradeHashes = { [304970526] = { "15% increased Movement Speed during any Flask Effect" }, } }, - ["NoExtraBleedDamageWhileMovingUniqueAmulet25"] = { affix = "", "Moving while Bleeding doesn't cause you to take extra Damage", statOrder = { 3192 }, level = 69, group = "NoExtraBleedDamageWhileMoving", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [935326447] = { "Moving while Bleeding doesn't cause you to take extra Damage" }, } }, - ["NoExtraBleedDamageWhileMovingUnique__1"] = { affix = "", "Moving while Bleeding doesn't cause you to take extra Damage", statOrder = { 3192 }, level = 1, group = "NoExtraBleedDamageWhileMoving", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [935326447] = { "Moving while Bleeding doesn't cause you to take extra Damage" }, } }, - ["AttacksHaveBloodMagic__1"] = { affix = "", "Attacks Cost Life instead of Mana", statOrder = { 10832 }, level = 1, group = "AttacksHaveBloodMagic", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [3358745905] = { "Attacks Cost Life instead of Mana" }, } }, - ["SocketedTrapSkillsCreateSmokeCloudWhenDetonated__1"] = { affix = "", "Traps from Socketed Skills create a Smoke Cloud when triggered", statOrder = { 613 }, level = 1, group = "SocketedTrapSkillsCreateSmokeCloudWhenDetonated", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263384098] = { "Traps from Socketed Skills create a Smoke Cloud when triggered" }, } }, - ["FireDamageToBlindEnemies__1"] = { affix = "", "(30-50)% increased Fire Damage with Hits and Ailments against Blinded Enemies", statOrder = { 3220 }, level = 1, group = "FireDamageToBlindEnemies", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [1601181226] = { "(30-50)% increased Fire Damage with Hits and Ailments against Blinded Enemies" }, } }, - ["SpellDamageTakenFromBlindEnemies__1"] = { affix = "", "30% reduced Spell Damage taken from Blinded Enemies", statOrder = { 3221 }, level = 1, group = "SpellDamageTakenFromBlindEnemies", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHashes = { [1165847826] = { "30% reduced Spell Damage taken from Blinded Enemies" }, } }, - ["StunThresholdBasedOnManaUnique__1"] = { affix = "", "Stun Threshold is based on 500% of your Mana instead of Life", statOrder = { 3271 }, level = 1, group = "StunThresholdBasedOnMana", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2280488002] = { "Stun Threshold is based on 500% of your Mana instead of Life" }, } }, - ["PowerChargeOnCriticalStrikeChanceUnique__1"] = { affix = "", "25% chance to gain a Power Charge on Critical Strike", statOrder = { 1830 }, level = 1, group = "PowerChargeOnCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "power_charge", "critical" }, tradeHashes = { [3814876985] = { "25% chance to gain a Power Charge on Critical Strike" }, } }, - ["NoLifeRegenerationUnique___1"] = { affix = "", "You have no Life Regeneration", statOrder = { 2271 }, level = 1, group = "NoLifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [854225133] = { "You have no Life Regeneration" }, } }, - ["NeverBlockUnique__1"] = { affix = "", "Cannot Block", statOrder = { 3265 }, level = 1, group = "NeverBlock", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [4127720801] = { "Cannot Block" }, } }, - ["LocalShieldHasNoBlockChanceUnique__1"] = { affix = "", "No Chance to Block", statOrder = { 3266 }, level = 1, group = "LocalShieldHasNoBlockChance", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [1023752508] = { "No Chance to Block" }, } }, - ["GrantUniqueBuff__1"] = { affix = "", "Gain Her Blessing for 3 seconds when you Ignite an Enemy", statOrder = { 3278 }, level = 66, group = "HerBlessingOnIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [4203400545] = { "Gain Her Blessing for 3 seconds when you Ignite an Enemy" }, } }, - ["UniqueConditionOnBuff__1"] = { affix = "", "100% chance to Avoid being Ignited, Chilled or Frozen with Her Blessing", statOrder = { 3280 }, level = 66, group = "AvoidAilmentsDuringHerBlessing", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "ailment" }, tradeHashes = { [1093704472] = { "100% chance to Avoid being Ignited, Chilled or Frozen with Her Blessing" }, } }, - ["UniqueConditionOnBuff__2"] = { affix = "", "20% increased Attack and Movement Speed with Her Blessing", statOrder = { 3281 }, level = 66, group = "AttackAndMoveSpeedDuringHerBlessing", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [2968804751] = { "20% increased Attack and Movement Speed with Her Blessing" }, } }, - ["UniqueEffectOnBuff__3"] = { affix = "", "33% chance to Blind nearby Enemies when gaining Her Blessing", statOrder = { 3279 }, level = 66, group = "BlindOnGainingHerBlessing", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2327728343] = { "33% chance to Blind nearby Enemies when gaining Her Blessing" }, } }, - ["MinionAttackAndCastSpeedPerSkeleton__1"] = { affix = "", "2% increased Minion Attack and Cast Speed per Skeleton you own", statOrder = { 3273 }, level = 1, group = "MinionAttackAndCastSpeedPerSkeleton", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed", "minion" }, tradeHashes = { [729367217] = { "2% increased Minion Attack and Cast Speed per Skeleton you own" }, } }, - ["MinionDurationPerZombie__1"] = { affix = "", "2% increased Minion Duration per Raised Zombie", statOrder = { 3274 }, level = 1, group = "MinionDurationPerZombie", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed", "minion" }, tradeHashes = { [777246604] = { "2% increased Minion Duration per Raised Zombie" }, } }, - ["MinionDamagePerSpectre__1"] = { affix = "", "(8-12)% increased Minion Damage per Raised Spectre", statOrder = { 3275 }, level = 1, group = "MinionDamagePerSpectre", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, tradeHashes = { [3191537057] = { "(8-12)% increased Minion Damage per Raised Spectre" }, } }, - ["MinionLifeRegenerationPerRagingSpirit__1"] = { affix = "", "Minions Regenerate (1.5-2.5)% of Life per second", statOrder = { 2911 }, level = 1, group = "MinionLifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, tradeHashes = { [2479683456] = { "Minions Regenerate (1.5-2.5)% of Life per second" }, } }, - ["ExplodeOnKillChaosUnique__1"] = { affix = "", "Enemies you Kill have a 20% chance to Explode, dealing a quarter of their maximum Life as Chaos Damage", statOrder = { 3305 }, level = 1, group = "ObliterationExplodeOnKillChaos", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [1776945532] = { "Enemies you Kill have a 20% chance to Explode, dealing a quarter of their maximum Life as Chaos Damage" }, } }, - ["ReduceManaCostPerEnduranceChargeUnique__1"] = { affix = "", "4% reduced Mana Cost per Endurance Charge", statOrder = { 3267 }, level = 1, group = "ReduceManaCostPerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1774881905] = { "4% reduced Mana Cost per Endurance Charge" }, } }, - ["RampageWhileAtMaxEnduranceChargesUnique__1"] = { affix = "", "Gain Rampage while at Maximum Endurance Charges", statOrder = { 3268 }, level = 1, group = "RampageWhileAtMaxEnduranceCharges", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1643796079] = { "Gain Rampage while at Maximum Endurance Charges" }, } }, - ["LoseEnduranceChargesOnRampageEndUnique___1"] = { affix = "", "Lose all Endurance Charges when Rampage ends", statOrder = { 3269 }, level = 1, group = "LoseEnduranceChargesOnRampageEnd", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHashes = { [2881426199] = { "Lose all Endurance Charges when Rampage ends" }, } }, - ["IncreasedDamageAgainstFrozenEnemiesUnique__1"] = { affix = "", "40% increased Damage with Hits against Frozen Enemies", statOrder = { 1236 }, level = 1, group = "IncreasedDamageAgainstFrozenEnemies", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [1196902248] = { "40% increased Damage with Hits against Frozen Enemies" }, } }, - ["PhysicalDamageWhileFrozenUnique___1"] = { affix = "", "100% increased Global Physical Damage while Frozen", statOrder = { 3344 }, level = 1, group = "PhysicalDamageWhileFrozen", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2614654450] = { "100% increased Global Physical Damage while Frozen" }, } }, - ["AttacksThatStunCauseBleedingUnique__1"] = { affix = "", "Causes Bleeding when you Stun", statOrder = { 2484 }, level = 1, group = "AttacksThatStunCauseBleeding", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1562912554] = { "Causes Bleeding when you Stun" }, } }, - ["GrantEnemiesUnholyMightOnKillUnique__1"] = { affix = "", "5% chance to grant Chaotic Might to nearby Enemies on Kill", statOrder = { 3383 }, level = 1, group = "GrantEnemiesUnholyMightOnKill", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3607444087] = { "5% chance to grant Chaotic Might to nearby Enemies on Kill" }, } }, - ["GrantEnemiesOnslaughtOnKillUnique__1"] = { affix = "", "5% chance to grant Onslaught to nearby Enemies on Kill", statOrder = { 3382 }, level = 1, group = "GrantEnemiesOnslaughtOnKill", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1924591908] = { "5% chance to grant Onslaught to nearby Enemies on Kill" }, } }, - ["UnholyMightOnKillPercentChanceUnique__1"] = { affix = "", "10% chance to gain Chaotic Might for 10 seconds on Kill", statOrder = { 5701 }, level = 20, group = "UnholyMightOnKill10SecondsPercentChance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [562371749] = { "10% chance to gain Chaotic Might for 10 seconds on Kill" }, } }, - ["OnslaugtOnKillPercentChanceUnique__1"] = { affix = "", "10% chance to gain Onslaught for 10 seconds on Kill", statOrder = { 5695 }, level = 1, group = "OnslaugtOnKill10SecondsPercentChance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2453026567] = { "10% chance to gain Onslaught for 10 seconds on Kill" }, } }, - ["MaximumLifeOnKillPercentUnique__1"] = { affix = "", "Recover 1% of Life on Kill", statOrder = { 1749 }, level = 1, group = "MaximumLifeOnKillPercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2023107756] = { "Recover 1% of Life on Kill" }, } }, - ["MaximumLifeOnKillPercentUnique__2"] = { affix = "", "Recover (1-3)% of Life on Kill", statOrder = { 1749 }, level = 1, group = "MaximumLifeOnKillPercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2023107756] = { "Recover (1-3)% of Life on Kill" }, } }, - ["MaximumLifeOnKillPercentUnique__3__"] = { affix = "", "Recover (3-5)% of Life on Kill", statOrder = { 1749 }, level = 1, group = "MaximumLifeOnKillPercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2023107756] = { "Recover (3-5)% of Life on Kill" }, } }, - ["MaximumLifeOnKillPercentUnique__4_"] = { affix = "", "Recover 1% of Life on Kill", statOrder = { 1749 }, level = 1, group = "MaximumLifeOnKillPercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2023107756] = { "Recover 1% of Life on Kill" }, } }, - ["MaximumLifeOnKillPercentUnique__5"] = { affix = "", "Recover (3-5)% of Life on Kill", statOrder = { 1749 }, level = 1, group = "MaximumLifeOnKillPercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2023107756] = { "Recover (3-5)% of Life on Kill" }, } }, - ["MaximumLifeOnKillPercentUnique__6"] = { affix = "", "Recover (1-3)% of Life on Kill", statOrder = { 1749 }, level = 1, group = "MaximumLifeOnKillPercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2023107756] = { "Recover (1-3)% of Life on Kill" }, } }, - ["MaximumManaOnKillPercentUnique__1"] = { affix = "", "Recover (1-3)% of Mana on Kill", statOrder = { 1751 }, level = 1, group = "MaximumManaOnKillPercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1030153674] = { "Recover (1-3)% of Mana on Kill" }, } }, - ["MaximumEnergyShieldOnKillPercentUnique__1"] = { affix = "", "Recover (3-5)% of Energy Shield on Kill", statOrder = { 1750 }, level = 1, group = "MaximumEnergyShieldOnKillPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2406605753] = { "Recover (3-5)% of Energy Shield on Kill" }, } }, - ["MaximumEnergyShieldOnKillPercentUnique__2"] = { affix = "", "Recover 1% of Energy Shield on Kill", statOrder = { 1750 }, level = 1, group = "MaximumEnergyShieldOnKillPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2406605753] = { "Recover 1% of Energy Shield on Kill" }, } }, - ["DisplayManifestWeaponUnique__1"] = { affix = "", "Triggers Level 15 Manifest Dancing Dervishes on Rampage", "Manifested Dancing Dervishes disables both weapon slots", "Manifested Dancing Dervishes die when Rampage ends", statOrder = { 3340, 3341, 3342 }, level = 1, group = "DisplayManifestWeapon", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [1414945937] = { "Manifested Dancing Dervishes die when Rampage ends" }, [398335579] = { "Manifested Dancing Dervishes disables both weapon slots" }, [4007938693] = { "Triggers Level 15 Manifest Dancing Dervishes on Rampage" }, } }, - ["AdditionalSnipeTotemsPerDexterityUnique__1"] = { affix = "", "Siege Ballista has +1 to maximum number of Summoned Totems per 200 Dexterity", statOrder = { 3394 }, level = 1, group = "AdditionalSnipeTotemsPerDexterity", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2125178364] = { "Siege Ballista has +1 to maximum number of Summoned Totems per 200 Dexterity" }, } }, - ["AdditionalShrapnelBallistaePerStrengthUnique__1"] = { affix = "", "Shrapnel Ballista has +1 to maximum number of Summoned Totems per 200 Strength", statOrder = { 3393 }, level = 1, group = "AdditionalShrapnelBallistaePerStrength", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [1124661381] = { "Shrapnel Ballista has +1 to maximum number of Summoned Totems per 200 Strength" }, } }, - ["AddedDamagePerDexterityUnique__1"] = { affix = "", "Adds 1 to 3 Physical Damage to Attacks per 25 Dexterity", statOrder = { 3395 }, level = 1, group = "AddedDamagePerDexterity", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [2066426995] = { "Adds 1 to 3 Physical Damage to Attacks per 25 Dexterity" }, } }, - ["AddedDamagePerStrengthUnique__1"] = { affix = "", "Adds 1 to 3 Physical Damage to Attacks per 25 Strength", statOrder = { 4875 }, level = 1, group = "AddedDamagePerStrength", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [787185456] = { "Adds 1 to 3 Physical Damage to Attacks per 25 Strength" }, } }, - ["DisplayBlindAuraUnique__1"] = { affix = "", "Nearby Enemies are Blinded", statOrder = { 3396 }, level = 1, group = "DisplayBlindAura", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2826979740] = { "Nearby Enemies are Blinded" }, } }, - ["DisplayNearbyEnemiesAreSlowedUnique__1"] = { affix = "", "Nearby Enemies are Hindered, with 25% reduced Movement Speed", statOrder = { 3403 }, level = 1, group = "DisplayNearbyEnemiesAreSlowed", weightKey = { }, weightVal = { }, modTags = { "speed", "aura" }, tradeHashes = { [607839150] = { "Nearby Enemies are Hindered, with 25% reduced Movement Speed" }, } }, - ["DisplaySupportedByHypothermiaUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 15 Hypothermia", statOrder = { 511 }, level = 1, group = "DisplaySupportedByHypothermia", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [13669281] = { "Socketed Gems are Supported by Level 15 Hypothermia" }, } }, - ["DisplaySupportedByIceBiteUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 15 Ice Bite", statOrder = { 512 }, level = 1, group = "DisplaySupportedByIceBite", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [1384629003] = { "Socketed Gems are Supported by Level 15 Ice Bite" }, } }, - ["DisplaySupportedByIceBiteUnique__2"] = { affix = "", "Socketed Gems are Supported by Level 15 Ice Bite", statOrder = { 512 }, level = 1, group = "DisplaySupportedByIceBite", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [1384629003] = { "Socketed Gems are Supported by Level 15 Ice Bite" }, } }, - ["DisplaySupportedByColdPenetrationUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 15 Cold Penetration", statOrder = { 513 }, level = 1, group = "DisplaySupportedByColdPenetration", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [1991958615] = { "Socketed Gems are Supported by Level 15 Cold Penetration" }, } }, - ["DisplaySupportedByManaLeechUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 1 Mana Leech", statOrder = { 514 }, level = 1, group = "DisplaySupportedByManaLeech", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [2608615082] = { "Socketed Gems are Supported by Level 1 Mana Leech" }, } }, - ["DisplaySupportedByAddedColdDamageUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 15 Added Cold Damage", statOrder = { 518 }, level = 1, group = "DisplaySupportedByAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4020144606] = { "Socketed Gems are Supported by Level 15 Added Cold Damage" }, } }, - ["DisplaySupportedByAddedColdDamageUnique__2"] = { affix = "", "Socketed Gems are Supported by Level 29 Added Cold Damage", statOrder = { 518 }, level = 1, group = "DisplaySupportedByAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4020144606] = { "Socketed Gems are Supported by Level 29 Added Cold Damage" }, } }, - ["DisplaySupportedByReducedManaUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 15 Inspiration", statOrder = { 519 }, level = 1, group = "DisplaySupportedByReducedMana", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [749770518] = { "Socketed Gems are Supported by Level 15 Inspiration" }, } }, - ["DisplaySupportedByReducedManaUnique__2"] = { affix = "", "Socketed Gems are Supported by Level 15 Inspiration", statOrder = { 519 }, level = 1, group = "DisplaySupportedByReducedMana", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [749770518] = { "Socketed Gems are Supported by Level 15 Inspiration" }, } }, - ["DisplaySupportedByBonechillUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 15 Bonechill", statOrder = { 235 }, level = 1, group = "DisplaySupportedByBonechill", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [1859244771] = { "Socketed Gems are Supported by Level 15 Bonechill" }, } }, - ["CriticalChanceAgainstBlindedEnemiesUnique__1"] = { affix = "", "(120-140)% increased Critical Strike Chance against Blinded Enemies", statOrder = { 3406 }, level = 1, group = "CriticalChanceAgainstBlindedEnemies", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [1939202111] = { "(120-140)% increased Critical Strike Chance against Blinded Enemies" }, } }, - ["CriticalChanceAgainstBlindedEnemiesUnique__2__"] = { affix = "", "(30-50)% increased Critical Strike Chance against Blinded Enemies", statOrder = { 3406 }, level = 1, group = "CriticalChanceAgainstBlindedEnemies", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [1939202111] = { "(30-50)% increased Critical Strike Chance against Blinded Enemies" }, } }, - ["AddedFireDamageFromLightRadiusUnique__1"] = { affix = "", "Adds 2 to 5 Fire Damage to Attacks for every 1% your Light Radius is above base value", statOrder = { 9239 }, level = 1, group = "AddedFireDamageFromLightRadius", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire" }, tradeHashes = { [1911822529] = { "Adds 2 to 5 Fire Damage to Attacks for every 1% your Light Radius is above base value" }, } }, - ["DamageAgainstNearEnemiesUnique__1"] = { affix = "", "100% increased Damage with Hits and Ailments against Hindered Enemies", statOrder = { 4107 }, level = 1, group = "DamageAgainstNearEnemies", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [528422616] = { "100% increased Damage with Hits and Ailments against Hindered Enemies" }, } }, - ["BeltSoulEaterDuringFlaskEffect__1"] = { affix = "", "Gain Soul Eater during any Flask Effect", statOrder = { 3427 }, level = 57, group = "BeltSoulEaterDuringFlaskEffect", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [3968454273] = { "Gain Soul Eater during any Flask Effect" }, } }, - ["BeltSoulsRemovedOnFlaskUse__1"] = { affix = "", "Lose all Eaten Souls when you use a Flask", statOrder = { 3428 }, level = 1, group = "BeltSoulsRemovedOnFlaskUse", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [3577316952] = { "Lose all Eaten Souls when you use a Flask" }, } }, - ["FireDamageToNearbyEnemiesOnKillUnique"] = { affix = "", "Trigger Level 1 Fire Burst on Kill", statOrder = { 763 }, level = 1, group = "FireDamageToNearbyEnemiesOnKill", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4240751513] = { "Trigger Level 1 Fire Burst on Kill" }, } }, - ["SocketedAurasReserveNoManaUnique__1"] = { affix = "", "Socketed Gems have no Reservation", "Your Blessing Skills are Disabled", statOrder = { 529, 529.1 }, level = 48, group = "SocketedAurasReserveNoMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "aura" }, tradeHashes = { [2497009514] = { "Socketed Gems have no Reservation", "Your Blessing Skills are Disabled" }, } }, - ["ItemGrantsIllusoryWarpUnique__1"] = { affix = "", "Grants Level 20 Illusory Warp Skill", statOrder = { 624 }, level = 1, group = "ItemGrantsIllusoryWarp", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [3279574030] = { "Grants Level 20 Illusory Warp Skill" }, } }, - ["LocalDoubleImplicitMods"] = { affix = "", "Implicit Modifier magnitudes are doubled", statOrder = { 7946 }, level = 65, group = "LocalModifiesImplicitMods", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4249200326] = { "Implicit Modifier magnitudes are doubled" }, } }, - ["LocalTripleImplicitModsUnique__1__"] = { affix = "", "Implicit Modifier magnitudes are tripled", statOrder = { 7947 }, level = 1, group = "LocalTripleImplicitMagnitudes", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3910859570] = { "Implicit Modifier magnitudes are tripled" }, } }, - ["UnarmedDamageVsBleedingEnemiesUnique__1"] = { affix = "", "100% increased Damage with Unarmed Attacks against Bleeding Enemies", statOrder = { 3568 }, level = 1, group = "UnarmedDamageVsBleedingEnemies", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [3919199754] = { "100% increased Damage with Unarmed Attacks against Bleeding Enemies" }, } }, - ["ClawDamageModsAlsoAffectUnarmedUnique__1"] = { affix = "", "Modifiers to Claw Damage also apply to Unarmed Attack Damage with Melee Skills", statOrder = { 3572 }, level = 1, group = "ClawDamageModsAlsoAffectUnarmed", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [2865232420] = { "Modifiers to Claw Damage also apply to Unarmed Attack Damage with Melee Skills" }, } }, - ["BaseUnarmedCriticalStrikeChanceUnique__1"] = { affix = "", "+7% to Unarmed Melee Attack Critical Strike Chance", statOrder = { 3571 }, level = 1, group = "BaseUnarmedCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [3613173483] = { "+7% to Unarmed Melee Attack Critical Strike Chance" }, } }, - ["LifeGainVsBleedingEnemiesUnique__1"] = { affix = "", "Gain 30 Life per Bleeding Enemy Hit", statOrder = { 3570 }, level = 1, group = "LifeGainVsBleedingEnemies", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3148570142] = { "Gain 30 Life per Bleeding Enemy Hit" }, } }, - ["SummonWolfOnKillUnique__1"] = { affix = "", "Trigger Level 10 Summon Spectral Wolf on Kill", statOrder = { 791 }, level = 62, group = "SummonWolfOnKillOld", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [1468606528] = { "Trigger Level 10 Summon Spectral Wolf on Kill" }, } }, - ["SummonWolfOnKillUnique__1New"] = { affix = "", "Trigger Level 10 Summon Spectral Wolf on Kill", statOrder = { 791 }, level = 25, group = "SummonWolfOnKillOld", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [1468606528] = { "Trigger Level 10 Summon Spectral Wolf on Kill" }, } }, - ["SummonWolfOnKillUnique__2_"] = { affix = "", "Trigger Level 10 Summon Spectral Wolf on Kill", statOrder = { 791 }, level = 1, group = "SummonWolfOnKillOld", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [1468606528] = { "Trigger Level 10 Summon Spectral Wolf on Kill" }, } }, - ["SummonWolfOnCritUnique__1"] = { affix = "", "20% chance to Trigger Level 25 Summon Spectral Wolf on Critical Strike with this Weapon", statOrder = { 745 }, level = 1, group = "SummonWolfOnCrit", weightKey = { }, weightVal = { }, modTags = { "minion", "critical" }, tradeHashes = { [4221489692] = { "20% chance to Trigger Level 25 Summon Spectral Wolf on Critical Strike with this Weapon" }, [2795142527] = { "" }, } }, - ["SwordPhysicalAttackSpeedUnique__1"] = { affix = "", "35% increased Attack Speed with Swords", statOrder = { 1426 }, level = 80, group = "SwordAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [3293699237] = { "35% increased Attack Speed with Swords" }, } }, - ["AxePhysicalDamageUnique__1"] = { affix = "", "80% increased Physical Damage with Axes", statOrder = { 1303 }, level = 80, group = "AxePhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [2008219439] = { "80% increased Physical Damage with Axes" }, } }, - ["DualWieldingPhysicalDamageUnique__1"] = { affix = "", "40% increased Physical Attack Damage while Dual Wielding", statOrder = { 1279 }, level = 1, group = "DualWieldingPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1274831335] = { "40% increased Physical Attack Damage while Dual Wielding" }, } }, - ["ProjectilesForkUnique____1"] = { affix = "", "Arrows Fork", statOrder = { 3581 }, level = 70, group = "ArrowsFork", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2421436896] = { "Arrows Fork" }, } }, - ["ClawAttackSpeedModsAlsoAffectUnarmed__1"] = { affix = "", "Modifiers to Claw Attack Speed also apply to Unarmed Attack Speed with Melee Skills", statOrder = { 3573 }, level = 1, group = "ClawAttackSpeedModsAlsoAffectUnarmed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [2988055461] = { "Modifiers to Claw Attack Speed also apply to Unarmed Attack Speed with Melee Skills" }, } }, - ["ClawCritModsAlsoAffectUnarmed__1"] = { affix = "", "Modifiers to Claw Critical Strike Chance also apply to Unarmed Critical Strike Chance with Melee Skills", statOrder = { 3574 }, level = 35, group = "ClawCritModsAlsoAffectUnarmed", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [531932482] = { "Modifiers to Claw Critical Strike Chance also apply to Unarmed Critical Strike Chance with Melee Skills" }, } }, - ["EnergyShieldDelayDuringFlaskEffect__1"] = { affix = "", "50% slower start of Energy Shield Recharge during any Flask Effect", statOrder = { 3577 }, level = 35, group = "EnergyShieldDelayDuringFlaskEffect", weightKey = { }, weightVal = { }, modTags = { "flask", "defences", "energy_shield" }, tradeHashes = { [1912660783] = { "50% slower start of Energy Shield Recharge during any Flask Effect" }, } }, - ["ESRechargeRateDuringFlaskEffect__1"] = { affix = "", "(150-200)% increased Energy Shield Recharge Rate during any Flask Effect", statOrder = { 3579 }, level = 1, group = "ESRechargeRateDuringFlaskEffect", weightKey = { }, weightVal = { }, modTags = { "flask", "defences", "energy_shield" }, tradeHashes = { [1827657795] = { "(150-200)% increased Energy Shield Recharge Rate during any Flask Effect" }, } }, - ["IncreasedColdDamagePerBlockChanceUnique__1"] = { affix = "", "1% increased Cold Damage per 1% Chance to Block Attack Damage", statOrder = { 3584 }, level = 74, group = "IncreasedColdDamagePerBlockChance", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [4150597533] = { "1% increased Cold Damage per 1% Chance to Block Attack Damage" }, } }, - ["IncreasedManaPerSpellBlockChanceUnique__1"] = { affix = "", "1% increased Maximum Mana per 2% Chance to Block Spell Damage", statOrder = { 3585 }, level = 1, group = "IncreasedManaPerSpellBlockChance", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [3645234093] = { "1% increased Maximum Mana per 2% Chance to Block Spell Damage" }, } }, - ["IncreasedArmourWhileChilledOrFrozenUnique__1"] = { affix = "", "300% increased Armour while Chilled or Frozen", statOrder = { 3586 }, level = 1, group = "IncreasedArmourWhileChilledOrFrozen", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1857635068] = { "300% increased Armour while Chilled or Frozen" }, } }, - ["AddedColdDamageToSpellsAndAttacksUnique__1"] = { affix = "", "Adds (15-25) to (40-50) Cold Damage to Spells and Attacks", statOrder = { 1374 }, level = 1, group = "AddedColdDamageToSpellsAndAttacks", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "attack", "caster" }, tradeHashes = { [1662717006] = { "Adds (15-25) to (40-50) Cold Damage to Spells and Attacks" }, } }, - ["AddedColdDamageToSpellsAndAttacksUnique__2"] = { affix = "", "Adds (5-7) to (13-15) Cold Damage to Spells and Attacks", statOrder = { 1374 }, level = 1, group = "AddedColdDamageToSpellsAndAttacks", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "attack", "caster" }, tradeHashes = { [1662717006] = { "Adds (5-7) to (13-15) Cold Damage to Spells and Attacks" }, } }, - ["PowerChargeOnHitUnique__1"] = { affix = "", "20% chance to gain a Power Charge on Hit", statOrder = { 1834 }, level = 1, group = "PowerChargeOnHit", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [1453197917] = { "20% chance to gain a Power Charge on Hit" }, } }, - ["LosePowerChargesOnMaxPowerChargesUnique__1"] = { affix = "", "Lose all Power Charges on reaching Maximum Power Charges", statOrder = { 3603 }, level = 1, group = "LosePowerChargesOnMaxPowerCharges", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [2135899247] = { "Lose all Power Charges on reaching Maximum Power Charges" }, } }, - ["LosePowerChargesOnMaxPowerChargesUnique__2"] = { affix = "", "Lose all Power Charges on reaching Maximum Power Charges", statOrder = { 3603 }, level = 1, group = "LosePowerChargesOnMaxPowerCharges", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [2135899247] = { "Lose all Power Charges on reaching Maximum Power Charges" }, } }, - ["LoseEnduranceChargesOnMaxEnduranceChargesUnique__1_"] = { affix = "", "You lose all Endurance Charges on reaching maximum Endurance Charges", statOrder = { 2752 }, level = 1, group = "LoseEnduranceChargesOnMaxEnduranceCharges", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHashes = { [3590104875] = { "You lose all Endurance Charges on reaching maximum Endurance Charges" }, } }, - ["ShockOnMaxPowerChargesUnique__1"] = { affix = "", "Shocks you when you reach Maximum Power Charges", statOrder = { 3604 }, level = 1, group = "ShockOnMaxPowerCharges", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [4256314560] = { "Shocks you when you reach Maximum Power Charges" }, } }, - ["MoltenBurstOnMeleeHitUnique__1"] = { affix = "", "20% chance to Trigger Level 16 Molten Burst on Melee Hit", statOrder = { 781 }, level = 1, group = "MoltenBurstOnMeleeHit", weightKey = { }, weightVal = { }, modTags = { "skill", "attack" }, tradeHashes = { [4125471110] = { "20% chance to Trigger Level 16 Molten Burst on Melee Hit" }, } }, - ["PenetrateEnemyFireResistUnique__1"] = { affix = "", "Damage Penetrates 20% Fire Resistance", statOrder = { 2981 }, level = 1, group = "PenetrateEnemyFireResist", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates 20% Fire Resistance" }, } }, - ["LightningDegenAuraUniqueDisplay__1"] = { affix = "", "Nearby Enemies take 50 Lightning Damage per second", statOrder = { 3164 }, level = 1, group = "LightningDegenAuraDisplay", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [1415558356] = { "Nearby Enemies take 50 Lightning Damage per second" }, } }, - ["CannotBeAffectedByFlasksUnique__1"] = { affix = "", "Flasks do not apply to you", statOrder = { 3747 }, level = 38, group = "CannotBeAffectedByFlasks", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [3003321700] = { "Flasks do not apply to you" }, } }, - ["FlasksApplyToMinionsUnique__1"] = { affix = "", "Flasks you Use apply to your Raised Zombies and Spectres", statOrder = { 3748 }, level = 1, group = "FlasksApplyToMinions", weightKey = { }, weightVal = { }, modTags = { "flask", "minion" }, tradeHashes = { [3127641775] = { "Flasks you Use apply to your Raised Zombies and Spectres" }, } }, - ["RepeatingShockwave"] = { affix = "", "Triggers Level 7 Abberath's Fury when Equipped", statOrder = { 762 }, level = 1, group = "RepeatingShockwave", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [3250579936] = { "Triggers Level 7 Abberath's Fury when Equipped" }, } }, - ["LifeRegenerationWhileFrozenUnique__1"] = { affix = "", "Regenerate 10% of Life per second while Frozen", statOrder = { 3741 }, level = 1, group = "LifeRegenerationWhileFrozen", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2656696317] = { "Regenerate 10% of Life per second while Frozen" }, } }, - ["KnockbackOnCounterattackChanceUnique__1"] = { affix = "", "Retaliation Skills have 100% chance to Knockback", statOrder = { 3623 }, level = 1, group = "KnockbackOnCounterattack", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [399854017] = { "Retaliation Skills have 100% chance to Knockback" }, } }, - ["EnergyShieldRechargeOnBlockUnique__1"] = { affix = "", "(25-35)% chance for Energy Shield Recharge to start when you Block", statOrder = { 3422 }, level = 1, group = "EnergyShieldRechargeOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "defences", "energy_shield" }, tradeHashes = { [762154651] = { "(25-35)% chance for Energy Shield Recharge to start when you Block" }, } }, - ["LocalAttacksAlwaysCritUnique__1"] = { affix = "", "This Weapon's Critical Strike Chance is 100%", statOrder = { 3795 }, level = 1, group = "LocalAttacksAlwaysCrit", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [1963540179] = { "This Weapon's Critical Strike Chance is 100%" }, } }, - ["LocalDoubleDamageToChilledEnemiesUnique__1"] = { affix = "", "Attacks with this Weapon deal Double Damage to Chilled Enemies", statOrder = { 3760 }, level = 1, group = "LocalDoubleDamageToChilledEnemies", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [625037258] = { "Attacks with this Weapon deal Double Damage to Chilled Enemies" }, } }, - ["LocalElementalPenetrationUnique__1"] = { affix = "", "Attacks with this Weapon Penetrate 30% Elemental Resistances", statOrder = { 3761 }, level = 1, group = "LocalElementalPenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [4064396395] = { "Attacks with this Weapon Penetrate 30% Elemental Resistances" }, } }, - ["IncreasedDamageAtNoFrenzyChargesUnique__1"] = { affix = "", "(60-80)% increased Damage while you have no Frenzy Charges", statOrder = { 3765 }, level = 1, group = "DamageOnNoFrenzyCharges", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [3905661226] = { "(60-80)% increased Damage while you have no Frenzy Charges" }, } }, - ["CriticalChanceAgainstEnemiesOnFullLifeUnique__1"] = { affix = "", "100% increased Critical Strike Chance against Enemies that are on Full Life", statOrder = { 3766 }, level = 1, group = "CriticalChanceAgainstEnemiesOnFullLife", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [47954913] = { "100% increased Critical Strike Chance against Enemies that are on Full Life" }, } }, - ["CriticalStrikeAttackLifeLeechUnique__1"] = { affix = "", "1% of Attack Damage Leeched as Life on Critical Strike", statOrder = { 3767 }, level = 1, group = "CriticalStrikeAttackLifeLeech", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHashes = { [2100196861] = { "1% of Attack Damage Leeched as Life on Critical Strike" }, } }, - ["AddedPhysicalToMinionAttacksUnique__1"] = { affix = "", "Minions deal (5-8) to (12-16) additional Attack Physical Damage", statOrder = { 3768 }, level = 1, group = "AddedPhysicalToMinionAttacks", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "minion" }, tradeHashes = { [797833282] = { "Minions deal (5-8) to (12-16) additional Attack Physical Damage" }, } }, - ["AttackPhysicalDamageAddedAsLightningUnique__1"] = { affix = "", "Gain 15% of Physical Attack Damage as Extra Lightning Damage", statOrder = { 3776 }, level = 1, group = "AttackPhysicalDamageAddedAsLightning", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning", "attack" }, tradeHashes = { [1096897481] = { "Gain 15% of Physical Attack Damage as Extra Lightning Damage" }, } }, - ["AttackPhysicalDamageAddedAsFireUnique__1"] = { affix = "", "Gain 15% of Physical Attack Damage as Extra Fire Damage", statOrder = { 3774 }, level = 1, group = "AttackPhysicalDamageAddedAsFire", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire", "attack" }, tradeHashes = { [273476097] = { "Gain 15% of Physical Attack Damage as Extra Fire Damage" }, } }, - ["AttackPhysicalDamageAddedAsFireUnique__2"] = { affix = "", "Gain (30-40)% of Physical Attack Damage as Extra Fire Damage", statOrder = { 3774 }, level = 1, group = "AttackPhysicalDamageAddedAsFire", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire", "attack" }, tradeHashes = { [273476097] = { "Gain (30-40)% of Physical Attack Damage as Extra Fire Damage" }, } }, - ["EnergyShieldPer5StrengthUnique__1"] = { affix = "", "+2 maximum Energy Shield per 5 Strength", statOrder = { 3777 }, level = 1, group = "EnergyShieldPer5Strength", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3788706881] = { "+2 maximum Energy Shield per 5 Strength" }, } }, - ["MaximumGolemsUnique__1"] = { affix = "", "+1 to maximum number of Summoned Golems", statOrder = { 3690 }, level = 1, group = "MaximumGolems", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [2821079699] = { "+1 to maximum number of Summoned Golems" }, } }, - ["MaximumGolemsUnique__3"] = { affix = "", "+3 to maximum number of Summoned Golems", statOrder = { 3690 }, level = 43, group = "MaximumGolems", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [2821079699] = { "+3 to maximum number of Summoned Golems" }, } }, - ["MaximumGolemsUnique__4_"] = { affix = "", "-1 to maximum number of Summoned Golems", statOrder = { 3690 }, level = 1, group = "MaximumGolems", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [2821079699] = { "-1 to maximum number of Summoned Golems" }, } }, - ["GrantsLevel12StoneGolem"] = { affix = "", "Grants Level 12 Summon Stone Golem Skill", statOrder = { 626 }, level = 1, group = "GrantsStoneGolemSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [3056188914] = { "Grants Level 12 Summon Stone Golem Skill" }, } }, - ["ZealotsOathUnique__1"] = { affix = "", "Zealot's Oath", statOrder = { 10807 }, level = 1, group = "ZealotsOath", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "defences", "energy_shield" }, tradeHashes = { [632761194] = { "Zealot's Oath" }, } }, - ["WeaponCountsAsAllOneHandedWeapons__1"] = { affix = "", "Counts as all One Handed Melee Weapon Types", statOrder = { 3779 }, level = 1, group = "CountsAsAllOneHandMeleeWeapons", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1524882321] = { "Counts as all One Handed Melee Weapon Types" }, } }, - ["SocketedGemsSupportedByFortifyUnique____1"] = { affix = "", "Socketed Gems are Supported by Level 12 Fortify", statOrder = { 496 }, level = 1, group = "DisplaySocketedGemsSupportedByFortify", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [107118693] = { "Socketed Gems are Supported by Level 12 Fortify" }, } }, - ["CannotBePoisonedUnique__1"] = { affix = "", "Cannot be Poisoned", statOrder = { 3369 }, level = 1, group = "CannotBePoisoned", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [3835551335] = { "Cannot be Poisoned" }, } }, - ["CannotBePoisonedUnique__2"] = { affix = "", "Cannot be Poisoned", statOrder = { 3369 }, level = 1, group = "CannotBePoisoned", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [3835551335] = { "Cannot be Poisoned" }, } }, - ["EnergyShieldRecoveryRateUnique__1"] = { affix = "", "(50-100)% increased Energy Shield Recovery rate", statOrder = { 1568 }, level = 1, group = "EnergyShieldRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [988575597] = { "(50-100)% increased Energy Shield Recovery rate" }, } }, - ["IncreasedDamageTakenUnique__1"] = { affix = "", "10% increased Damage taken", statOrder = { 2238 }, level = 1, group = "DamageTaken", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3691641145] = { "10% increased Damage taken" }, } }, - ["LocalAlwaysCrit"] = { affix = "", "This Weapon's Critical Strike Chance is 100%", statOrder = { 3795 }, level = 1, group = "LocalAlwaysCrit", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [1963540179] = { "This Weapon's Critical Strike Chance is 100%" }, } }, - ["IncreasePhysicalDegenDamagePerDexterityUnique__1"] = { affix = "", "2% increased Physical Damage Over Time per 10 Dexterity", statOrder = { 3798 }, level = 1, group = "IncreasePhysicalDegenDamagePerDexterity", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [555311393] = { "2% increased Physical Damage Over Time per 10 Dexterity" }, } }, - ["IncreaseBleedDurationPerIntelligenceUnique__1"] = { affix = "", "1% increased Bleeding Duration per 12 Intelligence", statOrder = { 3799 }, level = 1, group = "IncreaseBleedDurationPerIntelligence", weightKey = { }, weightVal = { }, modTags = { "damage", "attack", "ailment" }, tradeHashes = { [1030835421] = { "1% increased Bleeding Duration per 12 Intelligence" }, } }, - ["BleedingEnemiesFleeOnHitUnique__1"] = { affix = "", "30% Chance to cause Bleeding Enemies to Flee on hit", statOrder = { 3801 }, level = 1, group = "BleedingEnemiesFleeOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2072206041] = { "30% Chance to cause Bleeding Enemies to Flee on hit" }, } }, - ["ChanceToAvoidFireDamageUnique__1"] = { affix = "", "25% chance to Avoid Fire Damage from Hits", statOrder = { 3373 }, level = 1, group = "FireDamageAvoidance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire" }, tradeHashes = { [42242677] = { "25% chance to Avoid Fire Damage from Hits" }, } }, - ["SpreadChilledGroundOnFreezeUnique__1"] = { affix = "", "15% chance to create Chilled Ground when you Freeze an Enemy", statOrder = { 3407 }, level = 1, group = "SpreadChilledGroundOnFreeze", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2901262227] = { "15% chance to create Chilled Ground when you Freeze an Enemy" }, } }, - ["SpreadConsecratedGroundOnShatterUnique__1"] = { affix = "", "Create Consecrated Ground when you Shatter an Enemy", statOrder = { 4127 }, level = 1, group = "SpreadConsecratedGroundOnShatter", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4148932984] = { "Create Consecrated Ground when you Shatter an Enemy" }, } }, - ["ChanceToPoisonWithAttacksUnique___1"] = { affix = "", "20% chance to Poison on Hit with Attacks", statOrder = { 3175 }, level = 1, group = "ChanceToPoisonWithAttacks", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "attack", "ailment" }, tradeHashes = { [3954735777] = { "20% chance to Poison on Hit with Attacks" }, } }, - ["SocketedGemsSupportedByBlasphemyUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 22 Blasphemy", statOrder = { 520 }, level = 1, group = "DisplaySocketedGemsSupportedByBlasphemy", weightKey = { }, weightVal = { }, modTags = { "support", "caster", "gem", "curse" }, tradeHashes = { [539747809] = { "Socketed Gems are Supported by Level 22 Blasphemy" }, } }, - ["SocketedGemsSupportedByBlasphemyUnique__2__"] = { affix = "", "Socketed Gems are Supported by Level 20 Blasphemy", statOrder = { 520 }, level = 1, group = "DisplaySocketedGemsSupportedByBlasphemy", weightKey = { }, weightVal = { }, modTags = { "support", "caster", "gem", "curse" }, tradeHashes = { [539747809] = { "Socketed Gems are Supported by Level 20 Blasphemy" }, } }, - ["ReducedReservationForSocketedCurseGemsUnique__1"] = { affix = "", "Socketed Curse Gems have 30% increased Reservation Efficiency", statOrder = { 614 }, level = 1, group = "DisplaySocketedCurseGemsGetReducedReservation", weightKey = { }, weightVal = { }, modTags = { "caster", "gem", "curse" }, tradeHashes = { [1471600638] = { "Socketed Curse Gems have 30% increased Reservation Efficiency" }, } }, - ["ReducedReservationForSocketedCurseGemsUnique__2"] = { affix = "", "Socketed Curse Gems have 80% increased Reservation Efficiency", statOrder = { 614 }, level = 1, group = "DisplaySocketedCurseGemsGetReducedReservation", weightKey = { }, weightVal = { }, modTags = { "caster", "gem", "curse" }, tradeHashes = { [1471600638] = { "Socketed Curse Gems have 80% increased Reservation Efficiency" }, } }, - ["GrantAlliesPowerChargeOnKillUnique__1"] = { affix = "", "10% chance to grant a Power Charge to nearby Allies on Kill", statOrder = { 3384 }, level = 1, group = "GrantAlliesPowerChargeOnKill", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [2367680009] = { "10% chance to grant a Power Charge to nearby Allies on Kill" }, } }, - ["GrantAlliesFrenzyChargeOnHitUnique__1"] = { affix = "", "5% chance to grant a Frenzy Charge to nearby Allies on Hit", statOrder = { 3385 }, level = 1, group = "GrantAlliesFrenzyChargeOnHit", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [991168463] = { "5% chance to grant a Frenzy Charge to nearby Allies on Hit" }, } }, - ["SummonRagingSpiritOnKillUnique__1"] = { affix = "", "25% chance to Trigger Level 10 Summon Raging Spirit on Kill", statOrder = { 784 }, level = 1, group = "SummonRagingSpiritOnKill", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [3751996449] = { "25% chance to Trigger Level 10 Summon Raging Spirit on Kill" }, } }, - ["PhysicalDamageConvertedToChaosUnique__1"] = { affix = "", "25% of Physical Damage Converted to Chaos Damage", statOrder = { 1962 }, level = 1, group = "PhysicalDamageConvertedToChaos", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, tradeHashes = { [490098963] = { "25% of Physical Damage Converted to Chaos Damage" }, } }, - ["PhysicalDamageConvertedToChaosUnique__2"] = { affix = "", "50% of Physical Damage Converted to Chaos Damage", statOrder = { 1962 }, level = 1, group = "PhysicalDamageConvertedToChaos", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, tradeHashes = { [490098963] = { "50% of Physical Damage Converted to Chaos Damage" }, } }, - ["FishDetectionUnique__1_"] = { affix = "", "Glows while in an Area containing a Unique Fish", statOrder = { 4128 }, level = 1, group = "FishingDetection", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [931560398] = { "Glows while in an Area containing a Unique Fish" }, } }, - ["LocalMaimOnHitUnique__1"] = { affix = "", "Attacks with this Weapon Maim on hit", statOrder = { 4133 }, level = 1, group = "LocalMaimOnHit", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [3418949024] = { "Attacks with this Weapon Maim on hit" }, } }, - ["LocalMaimOnHit2HImplicit_1"] = { affix = "", "25% chance to Maim on Hit", statOrder = { 7989 }, level = 1, group = "LocalMaimOnHitChance", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2763429652] = { "25% chance to Maim on Hit" }, } }, - ["AlwaysCritShockedEnemiesUnique__1"] = { affix = "", "Always Critically Strike Shocked Enemies", statOrder = { 4136 }, level = 1, group = "AlwaysCritShockedEnemies", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [3481428688] = { "Always Critically Strike Shocked Enemies" }, } }, - ["CannotCritNonShockedEnemiesUnique___1"] = { affix = "", "You cannot deal Critical Strikes against non-Shocked Enemies", statOrder = { 4137 }, level = 1, group = "CannotCritNonShockedEnemies", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [3344493315] = { "You cannot deal Critical Strikes against non-Shocked Enemies" }, } }, - ["MinionChanceToBlindOnHitUnique__1"] = { affix = "", "Minions have 15% chance to Blind Enemies on hit", statOrder = { 4154 }, level = 1, group = "MinionChanceToBlindOnHit", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [2939409392] = { "Minions have 15% chance to Blind Enemies on hit" }, } }, - ["MinionBlindImmunityUnique__1"] = { affix = "", "Minions cannot be Blinded", statOrder = { 4153 }, level = 1, group = "MinionBlindImmunity", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [2684385509] = { "Minions cannot be Blinded" }, } }, - ["DisplaySocketedMinionGemsSupportedByLifeLeechUnique__1"] = { affix = "", "Socketed Minion Gems are Supported by Level 16 Life Leech", statOrder = { 524 }, level = 1, group = "DisplaySocketedMinionGemsSupportedByLifeLeech", weightKey = { }, weightVal = { }, modTags = { "support", "minion", "gem" }, tradeHashes = { [4006301249] = { "Socketed Minion Gems are Supported by Level 16 Life Leech" }, } }, - ["MagicItemsDropIdentifiedUnique__1"] = { affix = "", "Found Magic Items drop Identified", statOrder = { 4155 }, level = 1, group = "MagicItemsDropIdentified", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3020069394] = { "Found Magic Items drop Identified" }, } }, - ["AddedColdDamagePerPowerChargeUnique__1"] = { affix = "", "Adds 10 to 20 Cold Damage to Spells per Power Charge", statOrder = { 1825 }, level = 1, group = "AddedColdDamagePerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [3408048164] = { "Adds 10 to 20 Cold Damage to Spells per Power Charge" }, } }, - ["AddedColdDamagePerPowerChargeUnique__2"] = { affix = "", "Adds 50 to 70 Cold Damage to Spells per Power Charge", statOrder = { 1825 }, level = 1, group = "AddedColdDamagePerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [3408048164] = { "Adds 50 to 70 Cold Damage to Spells per Power Charge" }, } }, - ["GainManaOnKillingFrozenEnemyUnique__1"] = { affix = "", "+(20-25) Mana gained on Killing a Frozen Enemy", statOrder = { 9852 }, level = 1, group = "GainManaOnKillingFrozenEnemy", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [3304801725] = { "+(20-25) Mana gained on Killing a Frozen Enemy" }, } }, - ["GainPowerChargeOnKillingFrozenEnemyUnique__1"] = { affix = "", "Gain a Power Charge on Killing a Frozen Enemy", statOrder = { 1824 }, level = 1, group = "GainPowerChargeOnKillingFrozenEnemy", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [3607154250] = { "Gain a Power Charge on Killing a Frozen Enemy" }, } }, - ["IncreasedDamageIfFrozenRecentlyUnique__1"] = { affix = "", "60% increased Damage if you've Frozen an Enemy Recently", statOrder = { 6050 }, level = 44, group = "IncreasedDamageIfFrozenRecently", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [1064477264] = { "60% increased Damage if you've Frozen an Enemy Recently" }, } }, - ["AddedLightningDamagePerIntelligenceUnique__1"] = { affix = "", "Adds 1 to 12 Lightning Damage to Attacks with this Weapon per 10 Intelligence", statOrder = { 4872 }, level = 1, group = "AddedLightningDamagePerIntelligence", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3390848861] = { "Adds 1 to 12 Lightning Damage to Attacks with this Weapon per 10 Intelligence" }, } }, - ["AddedLightningDamagePerIntelligenceUnique__2"] = { affix = "", "Adds 1 to 5 Lightning Damage to Attacks with this Weapon per 10 Intelligence", statOrder = { 4872 }, level = 1, group = "AddedLightningDamagePerIntelligence", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3390848861] = { "Adds 1 to 5 Lightning Damage to Attacks with this Weapon per 10 Intelligence" }, } }, - ["IncreasedAttackSpeedPerDexterityUnique__1"] = { affix = "", "1% increased Attack Speed per 25 Dexterity", statOrder = { 4902 }, level = 1, group = "IncreasedAttackSpeedPerDexterity", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [2241560081] = { "1% increased Attack Speed per 25 Dexterity" }, } }, - ["MovementVelocityWhileBleedingUnique__1"] = { affix = "", "20% increased Movement Speed while Bleeding", statOrder = { 9431 }, level = 1, group = "MovementVelocityWhileBleeding", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [696659555] = { "20% increased Movement Speed while Bleeding" }, } }, - ["IncreasedPhysicalDamageTakenWhileMovingUnique__1"] = { affix = "", "10% increased Physical Damage taken while moving", statOrder = { 4315 }, level = 1, group = "IncreasedPhysicalDamageTakenWhileMoving", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHashes = { [4052714663] = { "10% increased Physical Damage taken while moving" }, } }, - ["PhysicalDamageReductionWhileNotMovingUnique__1"] = { affix = "", "10% additional Physical Damage Reduction while stationary", statOrder = { 4313 }, level = 1, group = "PhysicalDamageReductionWhileNotMoving", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHashes = { [2181129193] = { "10% additional Physical Damage Reduction while stationary" }, } }, - ["AddedLightningDamagePerShockedEnemyKilledUnique__1"] = { affix = "", "Adds 1 to 10 Lightning Damage for each Shocked Enemy you've Killed Recently", statOrder = { 9244 }, level = 1, group = "AddedLightningDamagePerShockedEnemyKilled", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [4222857095] = { "Adds 1 to 10 Lightning Damage for each Shocked Enemy you've Killed Recently" }, } }, - ["ColdPenetrationAgainstChilledEnemiesUnique__1"] = { affix = "", "Damage Penetrates 20% Cold Resistance against Chilled Enemies", statOrder = { 5828 }, level = 81, group = "ColdPenetrationAgainstChilledEnemies", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1477032229] = { "Damage Penetrates 20% Cold Resistance against Chilled Enemies" }, } }, - ["GainLifeOnIgnitingEnemyUnique__1"] = { affix = "", "Recover (40-60) Life when you Ignite an Enemy", statOrder = { 9849 }, level = 81, group = "GainLifeOnIgnitingEnemy", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [4045269075] = { "Recover (40-60) Life when you Ignite an Enemy" }, } }, - ["GainLifeOnIgnitingEnemyUnique__2"] = { affix = "", "Recover (20-30) Life when you Ignite an Enemy", statOrder = { 9849 }, level = 36, group = "GainLifeOnIgnitingEnemy", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [4045269075] = { "Recover (20-30) Life when you Ignite an Enemy" }, } }, - ["ReflectsShocksUnique__1"] = { affix = "", "Shock Reflection", statOrder = { 9885 }, level = 1, group = "ReflectsShocks", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3291999509] = { "Shock Reflection" }, } }, - ["ReflectsShockToEnemiesInRadiusUnique__1"] = { affix = "", "Reflect Shocks applied to you to all Nearby Enemies", statOrder = { 9886 }, level = 1, group = "ReflectsShockToEnemiesInRadius", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [615884286] = { "Reflect Shocks applied to you to all Nearby Enemies" }, } }, - ["ChaosDamageDoesNotBypassESNotLowLifeOrManaUnique__1"] = { affix = "", "Chaos Damage taken does not bypass Energy Shield while not on Low Life", statOrder = { 5729 }, level = 1, group = "ChaosDamageDoesNotBypassESNotLowLifeOrMana", weightKey = { }, weightVal = { }, modTags = { "chaos" }, tradeHashes = { [887556907] = { "Chaos Damage taken does not bypass Energy Shield while not on Low Life" }, } }, - ["FrenzyChargeOnHitWhileBleedingUnique__1"] = { affix = "", "Gain a Frenzy Charge on Hit while Bleeding", statOrder = { 6759 }, level = 1, group = "FrenzyChargeOnHitWhileBleeding", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [2977774856] = { "Gain a Frenzy Charge on Hit while Bleeding" }, } }, - ["IncreasedColdDamagePerFrenzyChargeUnique__1"] = { affix = "", "(15-20)% increased Cold Damage per Frenzy Charge", statOrder = { 5812 }, level = 1, group = "IncreasedColdDamagePerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold" }, tradeHashes = { [329974315] = { "(15-20)% increased Cold Damage per Frenzy Charge" }, } }, - ["IncreasedColdDamagePerFrenzyChargeUnique__2"] = { affix = "", "(15-20)% increased Cold Damage per Frenzy Charge", statOrder = { 5812 }, level = 1, group = "IncreasedColdDamagePerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold" }, tradeHashes = { [329974315] = { "(15-20)% increased Cold Damage per Frenzy Charge" }, } }, - ["OnHitBlindChilledEnemiesUnique__1_"] = { affix = "", "Blind Chilled Enemies on Hit", statOrder = { 5216 }, level = 1, group = "OnHitBlindChilledEnemies", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3450276548] = { "Blind Chilled Enemies on Hit" }, } }, - ["GainLifeOnBlockUnique__1"] = { affix = "", "Recover (250-500) Life when you Block", statOrder = { 1760 }, level = 1, group = "RecoverLifeOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "resource", "life" }, tradeHashes = { [1678831767] = { "Recover (250-500) Life when you Block" }, } }, - ["GrantsLevel30ReckoningUnique__1"] = { affix = "", "Grants Level 30 Crushing Fist Skill", statOrder = { 656 }, level = 1, group = "GrantsLevel30Reckoning", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [2434330144] = { "Grants Level 30 Crushing Fist Skill" }, } }, - ["MinionsRecoverLifeOnKillingPoisonedEnemyUnique__1_"] = { affix = "", "Minions Recover 10% of Life on Killing a Poisoned Enemy", statOrder = { 9366 }, level = 1, group = "MinionsRecoverLifeOnKillingPoisonedEnemy", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, tradeHashes = { [2602664175] = { "Minions Recover 10% of Life on Killing a Poisoned Enemy" }, } }, - ["WhenReachingMaxPowerChargesGainAFrenzyChargeUnique__1"] = { affix = "", "Gain a Frenzy Charge on reaching Maximum Power Charges", statOrder = { 3605 }, level = 1, group = "WhenReachingMaxPowerChargesGainAFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [2732344760] = { "Gain a Frenzy Charge on reaching Maximum Power Charges" }, } }, - ["GrantsEnvyUnique__1"] = { affix = "", "Grants Level 25 Envy Skill", statOrder = { 655 }, level = 87, group = "GrantsEnvy", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [52953650] = { "Grants Level 25 Envy Skill" }, } }, - ["GrantsEnvyUnique__2"] = { affix = "", "Grants Level 15 Envy Skill", statOrder = { 655 }, level = 1, group = "GrantsEnvy", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [52953650] = { "Grants Level 15 Envy Skill" }, } }, - ["GainArmourIfBlockedRecentlyUnique__1"] = { affix = "", "+(1500-3000) Armour if you've Blocked Recently", statOrder = { 4499 }, level = 1, group = "GainArmourIfBlockedRecently", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [4091848539] = { "+(1500-3000) Armour if you've Blocked Recently" }, } }, - ["EnemiesBlockedAreIntimidatedUnique__1"] = { affix = "", "Permanently Intimidate Enemies on Block", statOrder = { 9611 }, level = 1, group = "EnemiesBlockedAreIntimidated", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2930706364] = { "Permanently Intimidate Enemies on Block" }, } }, - ["MinionsPoisonEnemiesOnHitUnique__1"] = { affix = "", "Minions have 60% chance to Poison Enemies on Hit", statOrder = { 3174 }, level = 1, group = "MinionsPoisonEnemiesOnHit", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "minion", "ailment" }, tradeHashes = { [1974445926] = { "Minions have 60% chance to Poison Enemies on Hit" }, } }, - ["MinionsPoisonEnemiesOnHitUnique__2"] = { affix = "", "Minions have 60% chance to Poison Enemies on Hit", statOrder = { 3174 }, level = 1, group = "MinionsPoisonEnemiesOnHit", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "minion", "ailment" }, tradeHashes = { [1974445926] = { "Minions have 60% chance to Poison Enemies on Hit" }, } }, - ["GrantsLevel20BoneNovaTriggerUnique__1"] = { affix = "", "Trigger Level 20 Bone Nova when you Hit a Bleeding Enemy", statOrder = { 765 }, level = 1, group = "GrantsLevel20BoneNovaTrigger", weightKey = { }, weightVal = { }, modTags = { "skill", "attack" }, tradeHashes = { [2634885412] = { "Trigger Level 20 Bone Nova when you Hit a Bleeding Enemy" }, } }, - ["GrantsLevel20IcicleNovaTriggerUnique__1"] = { affix = "", "Trigger Level 20 Icicle Burst when you Hit a Frozen Enemy", statOrder = { 811 }, level = 1, group = "GrantsLevel20IcicleNovaTrigger", weightKey = { }, weightVal = { }, modTags = { "skill", "attack" }, tradeHashes = { [1357672429] = { "Trigger Level 20 Icicle Burst when you Hit a Frozen Enemy" }, } }, - ["AttacksCauseBleedingOnCursedEnemyHitUnique__1"] = { affix = "", "Attacks have 25% chance to inflict Bleeding when Hitting Cursed Enemies", statOrder = { 4913 }, level = 1, group = "AttacksCauseBleedingOnCursedEnemyHit25Percent", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [2591028853] = { "Attacks have 25% chance to inflict Bleeding when Hitting Cursed Enemies" }, } }, - ["ReceiveBleedingWhenHitUnique__1_"] = { affix = "", "50% chance to be inflicted with Bleeding when Hit by an Attack", statOrder = { 9834 }, level = 1, group = "ReceiveBleedingWhenHit", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [2155467472] = { "50% chance to be inflicted with Bleeding when Hit by an Attack" }, } }, - ["ArmourIncreasedByUncappedFireResistanceUnique__1"] = { affix = "", "Armour is increased by Overcapped Fire Resistance", statOrder = { 4763 }, level = 1, group = "ArmourIncreasedByUncappedFireResistance", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [2129352930] = { "Armour is increased by Overcapped Fire Resistance" }, } }, - ["EvasionIncreasedByUncappedColdResistanceUnique__1"] = { affix = "", "Evasion Rating is increased by Overcapped Cold Resistance", statOrder = { 6487 }, level = 1, group = "EvasionIncreasedByUncappedColdResistance", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [2358015838] = { "Evasion Rating is increased by Overcapped Cold Resistance" }, } }, - ["CriticalChanceIncreasedByUncappedLightningResistanceUnique__1"] = { affix = "", "Critical Strike Chance is increased by Overcapped Lightning Resistance", statOrder = { 5919 }, level = 1, group = "CriticalChanceIncreasedByUncappedLightningResistance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [2478752719] = { "Critical Strike Chance is increased by Overcapped Lightning Resistance" }, } }, - ["CoverInAshWhenHitUnique__1"] = { affix = "", "Cover Enemies in Ash when they Hit you", statOrder = { 4695 }, level = 44, group = "CoverInAshWhenHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3748879662] = { "Cover Enemies in Ash when they Hit you" }, } }, - ["CriticalStrikesDealIncreasedLightningDamageUnique__1"] = { affix = "", "50% increased Lightning Damage", statOrder = { 1377 }, level = 87, group = "CriticalStrikesDealIncreasedLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "50% increased Lightning Damage" }, } }, - ["MaximumEnergyShieldAsPercentageOfLifeUnique__1"] = { affix = "", "Gain (4-6)% of Maximum Life as Extra Maximum Energy Shield", statOrder = { 9161 }, level = 60, group = "MaximumEnergyShieldAsPercentageOfLife", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [67280387] = { "Gain (4-6)% of Maximum Life as Extra Maximum Energy Shield" }, } }, - ["MaximumEnergyShieldAsPercentageOfLifeUnique__2"] = { affix = "", "Gain (5-10)% of Maximum Life as Extra Maximum Energy Shield", statOrder = { 9161 }, level = 1, group = "MaximumEnergyShieldAsPercentageOfLife", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [67280387] = { "Gain (5-10)% of Maximum Life as Extra Maximum Energy Shield" }, } }, - ["GlobalIgniteProlifUnique__1"] = { affix = "", "Ignites you inflict spread to other Enemies within 1.5 metres", statOrder = { 2218 }, level = 1, group = "GlobalIgniteProlif", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [2011785027] = { "Ignites you inflict spread to other Enemies within 1.5 metres" }, } }, - ["GlobalIgniteProlifUnique__2"] = { affix = "", "Ignites you inflict spread to other Enemies within 2.8 metres", statOrder = { 2218 }, level = 1, group = "GlobalIgniteProlif", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [2011785027] = { "Ignites you inflict spread to other Enemies within 2.8 metres" }, } }, - ["LocalIgniteProlifEmberglowUnique__1"] = { affix = "", "Ignites you inflict with this weapon spread to other Enemies within 2.8 metres", statOrder = { 7930 }, level = 1, group = "LocalIgniteProlifEmberglow", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1010930352] = { "Ignites you inflict with this weapon spread to other Enemies within 2.8 metres" }, } }, - ["IgniteDurationEmberglowUnique__1"] = { affix = "", "50% less Duration of Ignites you inflict", statOrder = { 6356 }, level = 1, group = "IgniteDurationEmberglowUnique", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [3775619537] = { "50% less Duration of Ignites you inflict" }, } }, - ["ChillEnemiesWhenHitUnique__1"] = { affix = "", "Chill Enemy for 1 second when Hit, reducing their Action Speed by 30%", statOrder = { 3140 }, level = 1, group = "ChillEnemiesWhenHit", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2459809121] = { "Chill Enemy for 1 second when Hit, reducing their Action Speed by 30%" }, } }, - ["Roll6LinkedRandomColourSocketsUnique__1"] = { affix = "", "Sockets cannot be modified", statOrder = { 70 }, level = 1, group = "Roll6LinkedRandomColourSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3192592092] = { "Sockets cannot be modified" }, } }, - ["OnlySocketCorruptedGemsUnique__1"] = { affix = "", "You can only Socket Corrupted Gems in this item", statOrder = { 7870 }, level = 1, group = "OnlySocketCorruptedGems", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [608438307] = { "You can only Socket Corrupted Gems in this item" }, } }, - ["CurseLevel10VulnerabilityOnHitUnique__1"] = { affix = "", "Curse Enemies with Vulnerability on Hit", statOrder = { 2524 }, level = 1, group = "CurseLevel10VulnerabilityOnHit", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [2213584313] = { "Curse Enemies with Vulnerability on Hit" }, } }, - ["LightningStrikesOnCritUnique__1"] = { affix = "", "Trigger Level 12 Lightning Bolt when you deal a Critical Strike", statOrder = { 772 }, level = 50, group = "LightningStrikesOnCrit", weightKey = { }, weightVal = { }, modTags = { "skill", "critical" }, tradeHashes = { [3241494164] = { "Trigger Level 12 Lightning Bolt when you deal a Critical Strike" }, } }, - ["LightningStrikesOnCritUnique__2"] = { affix = "", "Trigger Level 30 Lightning Bolt when you deal a Critical Strike", statOrder = { 772 }, level = 87, group = "LightningStrikesOnCrit", weightKey = { }, weightVal = { }, modTags = { "skill", "critical" }, tradeHashes = { [3241494164] = { "Trigger Level 30 Lightning Bolt when you deal a Critical Strike" }, } }, - ["ArcticArmourBuffEffectUnique__1_"] = { affix = "", "50% increased Arctic Armour Buff Effect", statOrder = { 4022 }, level = 1, group = "ArcticArmourBuffEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3995612171] = { "50% increased Arctic Armour Buff Effect" }, } }, - ["ArcticArmourReservationCostUnique__1"] = { affix = "", "Arctic Armour has no Reservation", statOrder = { 4716 }, level = 1, group = "ArcticArmourNoReservation", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1483066460] = { "Arctic Armour has no Reservation" }, } }, - ["MinionLeechOnPoisonedEnemiesUnique__1"] = { affix = "", "Minions Leech 5% of Damage as Life against Poisoned Enemies", statOrder = { 9313 }, level = 1, group = "MinionLeechOnPoisonedEnemies", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, tradeHashes = { [548721233] = { "Minions Leech 5% of Damage as Life against Poisoned Enemies" }, } }, - ["BleedingEnemiesExplodeUnique__1"] = { affix = "", "Bleeding Enemies you Kill Explode, dealing 5% of", "their Maximum Life as Physical Damage", statOrder = { 3481, 3481.1 }, level = 1, group = "BleedingEnemiesExplode", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3133323410] = { "Bleeding Enemies you Kill Explode, dealing 5% of", "their Maximum Life as Physical Damage" }, } }, - ["ChilledGroundEffectUnique__1"] = { affix = "", "(30-50)% increased Effect of Chilled Ground", statOrder = { 5773 }, level = 1, group = "ChilledGroundEffect", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2134166669] = { "(30-50)% increased Effect of Chilled Ground" }, } }, - ["HeraldOfIceDamageUnique__1_"] = { affix = "", "50% increased Herald of Ice Damage", statOrder = { 3715 }, level = 1, group = "HeraldOfIceDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [3910961021] = { "50% increased Herald of Ice Damage" }, } }, - ["KeystoneMinionInstabilityUnique__1"] = { affix = "", "Minion Instability", statOrder = { 10799 }, level = 1, group = "MinionInstability", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "minion" }, tradeHashes = { [433293234] = { "Minion Instability" }, } }, - ["KeystoneConduitUnique__1__"] = { affix = "", "Conduit", statOrder = { 10776 }, level = 1, group = "Conduit", weightKey = { }, weightVal = { }, modTags = { "endurance_charge", "frenzy_charge", "power_charge" }, tradeHashes = { [1994392904] = { "Conduit" }, } }, - ["KeystoneAcrobaticsUnique__1"] = { affix = "", "Acrobatics", statOrder = { 10768 }, level = 1, group = "Acrobatics", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [223497523] = { "" }, [383557755] = { "Acrobatics" }, } }, - ["KeystoneIronReflexesUnique__1"] = { affix = "", "Iron Reflexes", statOrder = { 10794 }, level = 1, group = "IronReflexes", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [326965591] = { "Iron Reflexes" }, } }, - ["KeystoneResoluteTechniqueUnique__1"] = { affix = "", "Resolute Technique", statOrder = { 10829 }, level = 1, group = "ResoluteTechnique", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [3943945975] = { "Resolute Technique" }, } }, - ["KeystoneUnwaveringStanceUnique__1"] = { affix = "", "Unwavering Stance", statOrder = { 10821 }, level = 1, group = "UnwaveringStance", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [1683578560] = { "Unwavering Stance" }, } }, - ["KeystoneBloodMagicUnique__1_"] = { affix = "", "Blood Magic", statOrder = { 10773 }, level = 1, group = "BloodMagic", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana" }, tradeHashes = { [2801937280] = { "Blood Magic" }, [223497523] = { "" }, } }, - ["KeystonePainAttunementUnique__1"] = { affix = "", "Pain Attunement", statOrder = { 10801 }, level = 1, group = "PainAttunement", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [98977150] = { "Pain Attunement" }, } }, - ["KeystoneElementalEquilibriumUnique__1"] = { affix = "", "Elemental Equilibrium", statOrder = { 10782 }, level = 1, group = "ElementalEquilibrium", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [1263158408] = { "Elemental Equilibrium" }, } }, - ["KeystoneElementalEquilibriumSceptreImplicit1"] = { affix = "", "Elemental Equilibrium", statOrder = { 10782 }, level = 1, group = "ElementalEquilibrium", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [1263158408] = { "Elemental Equilibrium" }, } }, - ["KeystoneIronGripUnique__1"] = { affix = "", "Iron Grip", statOrder = { 10817 }, level = 1, group = "IronGrip", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [573347393] = { "Iron Grip" }, } }, - ["KeystonePointBlankUnique__1"] = { affix = "", "Point Blank", statOrder = { 10802 }, level = 1, group = "PointBlank", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [2896346114] = { "Point Blank" }, } }, - ["KeystoneArrowDodgingUnique__1"] = { affix = "", "Arrow Dancing", statOrder = { 10805 }, level = 1, group = "ArrowDodging", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [2606808909] = { "Arrow Dancing" }, } }, - ["KeystonePhaseAcrobaticsUnique__1"] = { affix = "", "Acrobatics", statOrder = { 10768 }, level = 1, group = "Acrobatics", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [223497523] = { "" }, [383557755] = { "Acrobatics" }, } }, - ["KeystoneGhostReaverUnique__1"] = { affix = "", "Ghost Reaver", statOrder = { 10788 }, level = 1, group = "KeystoneGhostReaver", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "defences", "energy_shield" }, tradeHashes = { [4272248216] = { "Ghost Reaver" }, } }, - ["KeystoneVaalPactUnique__1"] = { affix = "", "Vaal Pact", statOrder = { 10822 }, level = 1, group = "VaalPact", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2257118425] = { "Vaal Pact" }, } }, - ["KeystoneZealotsOathUnique__1_"] = { affix = "", "Zealot's Oath", statOrder = { 10807 }, level = 1, group = "ZealotsOath", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "defences", "energy_shield" }, tradeHashes = { [632761194] = { "Zealot's Oath" }, } }, - ["KeystoneMindOverMatterUnique__1"] = { affix = "", "Mind Over Matter", statOrder = { 10797 }, level = 1, group = "ManaShield", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana" }, tradeHashes = { [373964381] = { "Mind Over Matter" }, } }, - ["KeystoneElementalOverloadUnique__1"] = { affix = "", "Elemental Overload", statOrder = { 10783 }, level = 1, group = "ElementalOverload", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "critical" }, tradeHashes = { [3574189159] = { "Elemental Overload" }, } }, - ["KeystoneElementalOverloadSceptreImplicit1_"] = { affix = "", "Elemental Overload", statOrder = { 10783 }, level = 1, group = "ElementalOverload", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "critical" }, tradeHashes = { [3574189159] = { "Elemental Overload" }, } }, - ["KeystoneAvatarOfFireUnique__1"] = { affix = "", "Avatar of Fire", statOrder = { 10771 }, level = 1, group = "AvatarOfFire", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [346029096] = { "Avatar of Fire" }, } }, - ["KeystoneEldritchBatteryUnique__1"] = { affix = "", "Eldritch Battery", statOrder = { 10781 }, level = 1, group = "EldritchBattery", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2262736444] = { "Eldritch Battery" }, } }, - ["KeystoneEldritchBatteryUnique__2"] = { affix = "", "Eldritch Battery", statOrder = { 10781 }, level = 1, group = "EldritchBattery", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2262736444] = { "Eldritch Battery" }, } }, - ["KeystoneAncestralBondUnique__1"] = { affix = "", "Ancestral Bond", statOrder = { 10770 }, level = 1, group = "AncestralBond", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2648570028] = { "Ancestral Bond" }, } }, - ["KeystoneAncestralBondUnique__2"] = { affix = "", "Ancestral Bond", statOrder = { 10770 }, level = 1, group = "AncestralBond", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2648570028] = { "Ancestral Bond" }, } }, - ["KeystoneCrimsonDanceUnique__1"] = { affix = "", "Crimson Dance", statOrder = { 10778 }, level = 1, group = "CrimsonDance", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, tradeHashes = { [300702212] = { "Crimson Dance" }, } }, - ["KeystonePerfectAgonyUnique__1"] = { affix = "", "Perfect Agony", statOrder = { 10769 }, level = 1, group = "PerfectAgony", weightKey = { }, weightVal = { }, modTags = { "damage", "critical", "ailment" }, tradeHashes = { [3884934810] = { "Perfect Agony" }, } }, - ["KeystoneRunebinderUnique__1"] = { affix = "", "Runebinder", statOrder = { 10809 }, level = 1, group = "Runebinder", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHashes = { [4080245957] = { "Runebinder" }, } }, - ["KeystoneWickedWardUnique__1"] = { affix = "", "Wicked Ward", statOrder = { 10825 }, level = 1, group = "WickedWard", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1109343199] = { "Wicked Ward" }, } }, - ["KeystoneMortalConvictionUnique__1"] = { affix = "", "Blood Magic", statOrder = { 10773 }, level = 1, group = "BloodMagic", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana" }, tradeHashes = { [2801937280] = { "Blood Magic" }, [223497523] = { "" }, } }, - ["KeystoneGlancingBlowsUnique__1___"] = { affix = "", "Glancing Blows", statOrder = { 10789 }, level = 1, group = "GlancingBlows", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [4266776872] = { "Glancing Blows" }, } }, - ["KeystoneCallToArmsUnique__1"] = { affix = "", "Call to Arms", statOrder = { 10774 }, level = 1, group = "CallToArms", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3292262540] = { "Call to Arms" }, } }, - ["KeystoneEternalYouthUnique__1"] = { affix = "", "Eternal Youth", statOrder = { 10785 }, level = 1, group = "EternalYouth", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "defences", "energy_shield" }, tradeHashes = { [1308467455] = { "Eternal Youth" }, } }, - ["KeystoneWindDancerUnique__1_"] = { affix = "", "Wind Dancer", statOrder = { 10826 }, level = 1, group = "WindDancer", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [4170338365] = { "Wind Dancer" }, } }, - ["KeystoneTheAgnosticUnique__1_"] = { affix = "", "The Agnostic", statOrder = { 10800 }, level = 1, group = "TheAgnostic", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana", "defences", "energy_shield" }, tradeHashes = { [462691314] = { "The Agnostic" }, } }, - ["KeystoneTheAgnosticUnique__2"] = { affix = "", "The Agnostic", statOrder = { 10800 }, level = 1, group = "TheAgnostic", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana", "defences", "energy_shield" }, tradeHashes = { [462691314] = { "The Agnostic" }, } }, - ["KeystoneSupremeEgoUnique__1_"] = { affix = "", "Supreme Ego", statOrder = { 10818 }, level = 1, group = "SupremeEgo", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "aura" }, tradeHashes = { [1421267186] = { "Supreme Ego" }, } }, - ["KeystoneSacredBastionUnique__1"] = { affix = "", "Imbalanced Guard", statOrder = { 10810 }, level = 1, group = "SacredBastion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [3868073741] = { "Imbalanced Guard" }, } }, - ["KeystoneTheImpalerUnique__1_"] = { affix = "", "The Impaler", statOrder = { 10793 }, level = 1, group = "Impaler", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1441799693] = { "The Impaler" }, } }, - ["KeystoneSoulTetherUnique__1"] = { affix = "", "Immortal Ambition", statOrder = { 10816 }, level = 1, group = "SoulTether", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "defences", "energy_shield" }, tradeHashes = { [687223267] = { "Immortal Ambition" }, } }, - ["KeystoneCorruptedSoulUnique_1"] = { affix = "", "Corrupted Soul", statOrder = { 10777 }, level = 1, group = "CorruptedSoul", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield", "chaos" }, tradeHashes = { [1911037487] = { "Corrupted Soul" }, } }, - ["KeystoneDoomsdayUnique__1"] = { affix = "", "Hex Master", statOrder = { 10791 }, level = 1, group = "HexMaster", weightKey = { }, weightVal = { }, modTags = { "curse" }, tradeHashes = { [3849554033] = { "Hex Master" }, } }, - ["KeystoneSoulTetherUnique__2"] = { affix = "", "Immortal Ambition", statOrder = { 10816 }, level = 1, group = "SoulTether", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "defences", "energy_shield" }, tradeHashes = { [687223267] = { "Immortal Ambition" }, } }, - ["KeystoneCorruptedSoulUnique__2_"] = { affix = "", "Corrupted Soul", statOrder = { 10777 }, level = 1, group = "CorruptedSoul", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield", "chaos" }, tradeHashes = { [1911037487] = { "Corrupted Soul" }, } }, - ["KeystoneVaalPactUnique__2"] = { affix = "", "Vaal Pact", statOrder = { 10822 }, level = 1, group = "VaalPact", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2257118425] = { "Vaal Pact" }, } }, - ["KeystoneEternalYouthUnique__2_"] = { affix = "", "Eternal Youth", statOrder = { 10785 }, level = 1, group = "EternalYouth", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "defences", "energy_shield" }, tradeHashes = { [1308467455] = { "Eternal Youth" }, } }, - ["KeystoneDivineFleshUnique__1_"] = { affix = "", "Divine Flesh", statOrder = { 10779 }, level = 1, group = "DivineFlesh", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2321346567] = { "Divine Flesh" }, } }, - ["KeystoneEverlastingSacrificeUnique__1"] = { affix = "", "Everlasting Sacrifice", statOrder = { 10786 }, level = 1, group = "EverlastingSacrifice", weightKey = { }, weightVal = { }, modTags = { "defences", "resistance" }, tradeHashes = { [145598447] = { "Everlasting Sacrifice" }, } }, - ["KeystoneShepherdOfSoulsUnique__1"] = { affix = "", "Shepherd of Souls", statOrder = { 10814 }, level = 1, group = "ShepherdOfSouls", weightKey = { }, weightVal = { }, modTags = { "damage", "vaal" }, tradeHashes = { [2038577923] = { "Shepherd of Souls" }, } }, - ["KeystoneLetheShadeUnique_1"] = { affix = "", "Lethe Shade", statOrder = { 10795 }, level = 1, group = "LetheShade", weightKey = { }, weightVal = { }, modTags = { "ailment" }, tradeHashes = { [1678358883] = { "Lethe Shade" }, } }, - ["KeystoneGhostDanceUnique__1"] = { affix = "", "Ghost Dance", statOrder = { 10787 }, level = 1, group = "GhostDance", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [3590128077] = { "Ghost Dance" }, } }, - ["KeystoneVersatileCombatantUnique___1"] = { affix = "", "Versatile Combatant", statOrder = { 10823 }, level = 1, group = "VersatileCombatant", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [593845252] = { "Versatile Combatant" }, } }, - ["KeystoneMagebaneUnique_1"] = { affix = "", "Magebane", statOrder = { 10796 }, level = 1, group = "Magebane", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4180925106] = { "Magebane" }, } }, - ["KeystoneSolipsismUnique_1"] = { affix = "", "Solipsism", statOrder = { 10815 }, level = 1, group = "Solipsism", weightKey = { }, weightVal = { }, modTags = { "ailment" }, tradeHashes = { [112130960] = { "Solipsism" }, } }, - ["KeystoneDivineShieldUnique_1"] = { affix = "", "Divine Shield", statOrder = { 10780 }, level = 1, group = "DivineShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2048995720] = { "Divine Shield" }, } }, - ["KeystoneIronWillUnique_1"] = { affix = "", "Iron Will", statOrder = { 10830 }, level = 1, group = "IronWill", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHashes = { [4092697134] = { "Iron Will" }, } }, - ["KeystonePreciseTechniqueUnique__1"] = { affix = "", "Precise Technique", statOrder = { 10803 }, level = 1, group = "PreciseTechnique", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4096273663] = { "Precise Technique" }, } }, - ["KeystoneSupremeDecadenceUnique__1"] = { affix = "", "Supreme Decadence", statOrder = { 10784 }, level = 1, group = "SupremeDecadence", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3215997147] = { "Supreme Decadence" }, } }, - ["IncreasedLightningDamageTakenUnique__1"] = { affix = "", "40% increased Lightning Damage taken", statOrder = { 3388 }, level = 1, group = "IncreasedLightningDamageTaken", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning" }, tradeHashes = { [1276918229] = { "40% increased Lightning Damage taken" }, } }, - ["PercentLightningDamageTakenFromManaBeforeLifeUnique__1"] = { affix = "", "30% of Lightning Damage is taken from Mana before Life", statOrder = { 4168 }, level = 1, group = "PercentLightningDamageTakenFromManaBeforeLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana", "elemental", "lightning" }, tradeHashes = { [2477735984] = { "30% of Lightning Damage is taken from Mana before Life" }, } }, - ["PercentManaRecoveredWhenYouShockUnique__1"] = { affix = "", "Recover 3% of Mana when you Shock an Enemy", statOrder = { 4170 }, level = 1, group = "PercentManaRecoveredWhenYouShock", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2524029637] = { "Recover 3% of Mana when you Shock an Enemy" }, } }, - ["ChanceToCastOnManaSpentUnique__1"] = { affix = "", "50% chance to Trigger Socketed Spells when you Spend at least 100 Mana on an", "Upfront Cost to Use or Trigger a Skill, with a 0.1 second Cooldown", statOrder = { 756, 756.1 }, level = 1, group = "ChanceToCastOnManaSpent", weightKey = { }, weightVal = { }, modTags = { "skill", "caster", "gem" }, tradeHashes = { [776897797] = { "0% chance to Trigger Socketed Spells when you Spend at least 100 Mana on an", "Upfront Cost to Use or Trigger a Skill, with a 0.1 second Cooldown" }, [1212497891] = { "50% chance to Trigger Socketed Spells when you Spend at least 0 Mana on an", "Upfront Cost to Use or Trigger a Skill, with a 0.1 second Cooldown" }, } }, - ["AdditionalChanceToBlockInOffHandUnique_1"] = { affix = "", "+8% Chance to Block Attack Damage when in Off Hand", statOrder = { 4185 }, level = 1, group = "AdditionalChanceToBlockInOffHand", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2040585053] = { "+8% Chance to Block Attack Damage when in Off Hand" }, } }, - ["CriticalStrikeChanceInMainHandUnique_1"] = { affix = "", "(60-80)% increased Global Critical Strike Chance when in Main Hand", statOrder = { 4184 }, level = 1, group = "CriticalStrikeChanceInMainHand", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [3404168630] = { "(60-80)% increased Global Critical Strike Chance when in Main Hand" }, } }, - ["CriticalStrikeMultiplierPerGreenSocketUnique_1"] = { affix = "", "+10% to Global Critical Strike Multiplier per Green Socket", statOrder = { 2722 }, level = 1, group = "CriticalStrikeMultiplierPerGreenSocket", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [35810390] = { "+10% to Global Critical Strike Multiplier per Green Socket" }, } }, - ["LifeLeechFromPhysicalAttackDamagePerRedSocket_Unique_1"] = { affix = "", "0.3% of Physical Attack Damage Leeched as Life per Red Socket", statOrder = { 2717 }, level = 1, group = "LifeLeechFromPhysicalAttackDamagePerRedSocket", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [3025389409] = { "0.3% of Physical Attack Damage Leeched as Life per Red Socket" }, } }, - ["IncreasedLightningDamagePer10IntelligenceUnique__1"] = { affix = "", "1% increased Lightning Damage per 10 Intelligence", statOrder = { 4132 }, level = 1, group = "IncreasedLightningDamagePer10Intelligence", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [990219738] = { "1% increased Lightning Damage per 10 Intelligence" }, } }, - ["IncreasedDamagePerEnduranceChargeUnique_1"] = { affix = "", "4% increased Melee Damage per Endurance Charge", statOrder = { 4175 }, level = 1, group = "IncreasedDamagePerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [1275066948] = { "4% increased Melee Damage per Endurance Charge" }, } }, - ["CannotBeShockedWhileMaximumEnduranceChargesUnique_1"] = { affix = "", "You cannot be Shocked while at maximum Endurance Charges", statOrder = { 4178 }, level = 1, group = "CannotBeShockedWhileMaximumEnduranceCharges", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [798111687] = { "You cannot be Shocked while at maximum Endurance Charges" }, } }, - ["IncreasedStunDurationOnSelfUnique_1"] = { affix = "", "50% increased Stun Duration on you", statOrder = { 4174 }, level = 1, group = "IncreasedStunDurationOnSelf", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1067429236] = { "50% increased Stun Duration on you" }, } }, - ["ReducedDamageIfNotHitRecentlyUnique__1"] = { affix = "", "35% less Damage taken if you have not been Hit Recently", statOrder = { 4187 }, level = 1, group = "ReducedDamageIfNotHitRecently", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [67637087] = { "35% less Damage taken if you have not been Hit Recently" }, } }, - ["IncreasedEvasionIfHitRecentlyUnique___1"] = { affix = "", "100% increased Evasion Rating if you have been Hit Recently", statOrder = { 4188 }, level = 1, group = "IncreasedEvasionIfHitRecently", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [1073310669] = { "100% increased Evasion Rating if you have been Hit Recently" }, } }, - ["MovementSpeedIfUsedWarcryRecentlyUnique_1"] = { affix = "", "10% increased Movement Speed if you've Warcried Recently", statOrder = { 4179 }, level = 1, group = "MovementSpeedIfUsedWarcryRecently", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2546417825] = { "10% increased Movement Speed if you've Warcried Recently" }, } }, - ["MovementSpeedIfUsedWarcryRecentlyUnique__2"] = { affix = "", "15% increased Movement Speed if you've Warcried Recently", statOrder = { 4179 }, level = 1, group = "MovementSpeedIfUsedWarcryRecently", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2546417825] = { "15% increased Movement Speed if you've Warcried Recently" }, } }, - ["LifeRegeneratedAfterSavageHitUnique_1"] = { affix = "", "Regenerate 10% of Life per second if you've taken a Savage Hit in the past 1 second", statOrder = { 4177 }, level = 1, group = "LifeRegeneratedAfterSavageHit", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [277484363] = { "Regenerate 10% of Life per second if you've taken a Savage Hit in the past 1 second" }, } }, - ["ReducedDamageIfTakenASavageHitRecentlyUnique_1"] = { affix = "", "10% increased Damage taken if you've taken a Savage Hit Recently", statOrder = { 4173 }, level = 1, group = "ReducedDamageIfTakenASavageHitRecently", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2415592273] = { "10% increased Damage taken if you've taken a Savage Hit Recently" }, } }, - ["IncreasedCostOfMovementSkillsUnique_1"] = { affix = "", "25% increased Movement Skill Mana Cost", statOrder = { 4183 }, level = 1, group = "IncreasedCostOfMovementSkills", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "attack" }, tradeHashes = { [3992153900] = { "25% increased Movement Skill Mana Cost" }, } }, - ["ChanceToDodgeSpellsWhilePhasing_Unique_1"] = { affix = "", "30% chance to Avoid Elemental Ailments while Phasing", statOrder = { 4942 }, level = 1, group = "AvoidElementalStatusAilmentsPhasing", weightKey = { }, weightVal = { }, modTags = { "elemental", "ailment" }, tradeHashes = { [115351487] = { "30% chance to Avoid Elemental Ailments while Phasing" }, } }, - ["IncreasedEvasionWithOnslaughtUnique_1"] = { affix = "", "100% increased Evasion Rating during Onslaught", statOrder = { 1551 }, level = 1, group = "IncreasedEvasionWithOnslaught", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [156734303] = { "100% increased Evasion Rating during Onslaught" }, } }, - ["AttackDamageLifeLeechAgainstBleedingEnemiesUnique_1"] = { affix = "", "1% of Attack Damage Leeched as Life against Bleeding Enemies", statOrder = { 1696 }, level = 1, group = "AttackDamageLifeLeechAgainstBleedingEnemies", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHashes = { [1625933063] = { "1% of Attack Damage Leeched as Life against Bleeding Enemies" }, } }, - ["AttackDamageManaLeechAgainstPoisonedEnemiesUnique_1"] = { affix = "", "1% of Attack Damage Leeched as Mana against Poisoned Enemies", statOrder = { 4181 }, level = 1, group = "AttackDamageManaLeechAgainstPoisonedEnemies", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "attack" }, tradeHashes = { [3067409450] = { "1% of Attack Damage Leeched as Mana against Poisoned Enemies" }, } }, - ["AttackDamageManaLeechAgainstPoisonedEnemiesUnique_2"] = { affix = "", "0.5% of Attack Damage Leeched as Mana against Poisoned Enemies", statOrder = { 4181 }, level = 1, group = "AttackDamageManaLeechAgainstPoisonedEnemies", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "attack" }, tradeHashes = { [3067409450] = { "0.5% of Attack Damage Leeched as Mana against Poisoned Enemies" }, } }, - ["IIQFromMaimedEnemiesUnique_1"] = { affix = "", "(15-25)% increased Quantity of Items Dropped by Slain Maimed Enemies", statOrder = { 4171 }, level = 1, group = "IIQFromMaimedEnemies", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3122365625] = { "(15-25)% increased Quantity of Items Dropped by Slain Maimed Enemies" }, } }, - ["IIRFromMaimedEnemiesUnique_1"] = { affix = "", "(30-40)% increased Rarity of Items Dropped by Slain Maimed Enemies", statOrder = { 4172 }, level = 1, group = "IIRFromMaimedEnemies", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [2085001246] = { "(30-40)% increased Rarity of Items Dropped by Slain Maimed Enemies" }, } }, - ["AdditionalChainWhileAtMaxFrenzyChargesUnique___1"] = { affix = "", "Skills Chain an additional time while at maximum Frenzy Charges", statOrder = { 1826 }, level = 1, group = "AdditionalChainWhileAtMaxFrenzyCharges", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [285624304] = { "Skills Chain an additional time while at maximum Frenzy Charges" }, } }, - ["CriticalStrikesDoNotFreezeUnique___1"] = { affix = "", "Critical Strikes do not inherently Freeze", statOrder = { 2031 }, level = 1, group = "CriticalStrikesDoNotFreeze", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "critical", "ailment" }, tradeHashes = { [3979476531] = { "Critical Strikes do not inherently Freeze" }, } }, - ["ChanceToGainFrenzyChargeOnKillingFrozenEnemyUnique__1"] = { affix = "", "20% chance to gain a Frenzy Charge on Killing a Frozen Enemy", statOrder = { 1823 }, level = 1, group = "ChanceToGainFrenzyChargeOnKillingFrozenEnemy", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [2230931659] = { "20% chance to gain a Frenzy Charge on Killing a Frozen Enemy" }, } }, - ["PhasingOnBeginESRechargeUnique___1"] = { affix = "", "You have Phasing if Energy Shield Recharge has started Recently", statOrder = { 2504 }, level = 56, group = "GainPhasingFor4SecondsOnBeginESRecharge", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2632954025] = { "You have Phasing if Energy Shield Recharge has started Recently" }, } }, - ["ChanceToDodgeAttacksWhilePhasingUnique___1"] = { affix = "", "30% increased Evasion Rating while Phasing", statOrder = { 2505 }, level = 1, group = "ChanceToDodgeAttacksWhilePhasing", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [402176724] = { "30% increased Evasion Rating while Phasing" }, } }, - ["AdditionalChanceToBlockAgainstTauntedEnemiesUnique_1"] = { affix = "", "+5% Chance to Block Attack Damage from Taunted Enemies", statOrder = { 4189 }, level = 1, group = "AdditionalChanceToBlockAgainstTauntedEnemies", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [1440638174] = { "+5% Chance to Block Attack Damage from Taunted Enemies" }, } }, - ["IncreasedArmourAndEvasionIfKilledTauntedEnemyRecentlyUnique__1"] = { affix = "", "40% increased Armour and Evasion Rating if you've killed a Taunted Enemy Recently", statOrder = { 4192 }, level = 1, group = "IncreasedArmourAndEvasionIfKilledTauntedEnemyRecently", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [3669898891] = { "40% increased Armour and Evasion Rating if you've killed a Taunted Enemy Recently" }, } }, - ["SummonMaximumNumberOfSocketedTotemsUnique_1"] = { affix = "", "Socketed Skills Summon your maximum number of Totems in formation", statOrder = { 533 }, level = 1, group = "SummonMaximumNumberOfSocketedTotems", weightKey = { }, weightVal = { }, modTags = { "skill", "gem" }, tradeHashes = { [1936441365] = { "Socketed Skills Summon your maximum number of Totems in formation" }, } }, - ["TotemElementalResistPerActiveTotemUnique_1"] = { affix = "", "Totems gain -10% to all Elemental Resistances per Summoned Totem", statOrder = { 4176 }, level = 1, group = "TotemElementalResistPerActiveTotem", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2288558421] = { "Totems gain -10% to all Elemental Resistances per Summoned Totem" }, } }, - ["SpellsCastByTotemsHaveReducedCastSpeedPerTotemUnique_1"] = { affix = "", "Totems have 5% increased Cast Speed per Summoned Totem", statOrder = { 4182 }, level = 1, group = "SpellsCastByTotemsHaveReducedCastSpeedPerTotem", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [3204585690] = { "Totems have 5% increased Cast Speed per Summoned Totem" }, } }, - ["AttacksByTotemsHaveReducedAttackSpeedPerTotemUnique_1"] = { affix = "", "Totems have 5% increased Attack Speed per Summoned Totem", statOrder = { 4194 }, level = 1, group = "AttacksByTotemsHaveReducedAttackSpeedPerTotem", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [264715122] = { "Totems have 5% increased Attack Speed per Summoned Totem" }, } }, - ["IncreasedManaRecoveryRateUnique__1"] = { affix = "", "10% increased Mana Recovery rate", statOrder = { 1586 }, level = 1, group = "ManaRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [3513180117] = { "10% increased Mana Recovery rate" }, } }, - ["AttacksChainInMainHandUnique__1"] = { affix = "", "Attacks Chain an additional time when in Main Hand", statOrder = { 4195 }, level = 1, group = "AttacksChainInMainHand", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2466604008] = { "Attacks Chain an additional time when in Main Hand" }, } }, - ["AttacksExtraProjectileInOffHandUnique__1"] = { affix = "", "Attacks fire an additional Projectile when in Off Hand", statOrder = { 4197 }, level = 1, group = "AttacksExtraProjectileInOffHand", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2105048696] = { "Attacks fire an additional Projectile when in Off Hand" }, } }, - ["CounterAttacksAddedColdDamageUnique__1"] = { affix = "", "Adds 250 to 300 Cold Damage to Retaliation Skills", statOrder = { 4205 }, level = 1, group = "CounterAttacksAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1109700751] = { "Adds 250 to 300 Cold Damage to Retaliation Skills" }, } }, - ["IncreasedLifeWhileNoCorruptedItemsUnique__1"] = { affix = "", "(8-12)% increased Maximum Life if no Equipped Items are Corrupted", statOrder = { 4201 }, level = 1, group = "IncreasedLifeWhileNoCorruptedItems", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2217962305] = { "(8-12)% increased Maximum Life if no Equipped Items are Corrupted" }, } }, - ["LifeRegenerationPerMinuteWhileNoCorruptedItemsUnique__1"] = { affix = "", "Regenerate 400 Life per second if no Equipped Items are Corrupted", statOrder = { 4202 }, level = 1, group = "LifeRegenerationPerMinuteWhileNoCorruptedItems", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2497198283] = { "Regenerate 400 Life per second if no Equipped Items are Corrupted" }, } }, - ["EnergyShieldRegenerationPerMinuteWhileAllCorruptedItemsUnique__1"] = { affix = "", "Regenerate 400 Energy Shield per second if all Equipped items are Corrupted", statOrder = { 4203 }, level = 1, group = "EnergyShieldRegenerationPerMinuteWhileAllCorruptedItems", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4156715241] = { "Regenerate 400 Energy Shield per second if all Equipped items are Corrupted" }, } }, - ["BaseManaRegenerationWhileAllCorruptedItemsUnique__1"] = { affix = "", "Regenerate 35 Mana per second if all Equipped Items are Corrupted", statOrder = { 8189 }, level = 1, group = "BaseManaRegenerationWhileAllCorruptedItems", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2760138143] = { "Regenerate 35 Mana per second if all Equipped Items are Corrupted" }, } }, - ["AddedChaosDamageToAttacksAndSpellsUnique__1"] = { affix = "", "Adds (13-17) to (29-37) Chaos Damage", statOrder = { 1386 }, level = 1, group = "GlobalAddedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [3531280422] = { "Adds (13-17) to (29-37) Chaos Damage" }, } }, - ["AddedChaosDamageToAttacksAndSpellsUnique__2"] = { affix = "", "Adds (13-17) to (23-29) Chaos Damage", statOrder = { 1386 }, level = 1, group = "GlobalAddedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [3531280422] = { "Adds (13-17) to (23-29) Chaos Damage" }, } }, - ["GlobalAddedChaosDamageUnique__1"] = { affix = "", "Adds (17-19) to (23-29) Chaos Damage", statOrder = { 1386 }, level = 1, group = "GlobalAddedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [3531280422] = { "Adds (17-19) to (23-29) Chaos Damage" }, } }, - ["GlobalAddedChaosDamageUnique__2"] = { affix = "", "Adds (50-55) to (72-80) Chaos Damage", statOrder = { 1386 }, level = 1, group = "GlobalAddedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [3531280422] = { "Adds (50-55) to (72-80) Chaos Damage" }, } }, - ["GlobalAddedChaosDamageUnique__3"] = { affix = "", "Adds (50-55) to (72-80) Chaos Damage", statOrder = { 1386 }, level = 1, group = "GlobalAddedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [3531280422] = { "Adds (50-55) to (72-80) Chaos Damage" }, } }, - ["GlobalAddedChaosDamageUnique__4__"] = { affix = "", "Adds (48-53) to (58-60) Chaos Damage", statOrder = { 1386 }, level = 1, group = "GlobalAddedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [3531280422] = { "Adds (48-53) to (58-60) Chaos Damage" }, } }, - ["GlobalAddedChaosDamageUnique__5_"] = { affix = "", "Adds (15-20) to (21-30) Chaos Damage", statOrder = { 1386 }, level = 1, group = "GlobalAddedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [3531280422] = { "Adds (15-20) to (21-30) Chaos Damage" }, } }, - ["GlobalAddedChaosDamageUnique__6_"] = { affix = "", "Adds (17-23) to (29-31) Chaos Damage", statOrder = { 1386 }, level = 1, group = "GlobalAddedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [3531280422] = { "Adds (17-23) to (29-31) Chaos Damage" }, } }, - ["GlobalAddedChaosDamageUnique__7"] = { affix = "", "Adds (7-11) to (17-23) Chaos Damage", statOrder = { 1386 }, level = 1, group = "GlobalAddedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [3531280422] = { "Adds (7-11) to (17-23) Chaos Damage" }, } }, - ["GlobalAddedPhysicalDamageUnique__1_"] = { affix = "", "Adds (12-16) to (20-25) Physical Damage", statOrder = { 1265 }, level = 1, group = "GlobalAddedPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [960081730] = { "Adds (12-16) to (20-25) Physical Damage" }, } }, - ["GlobalAddedPhysicalDamageUnique__2"] = { affix = "", "Adds (8-10) to (13-15) Physical Damage", statOrder = { 1265 }, level = 1, group = "GlobalAddedPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [960081730] = { "Adds (8-10) to (13-15) Physical Damage" }, } }, - ["GlobalAddedPhysicalDamageUnique__3"] = { affix = "", "Adds (8-12) to (14-20) Physical Damage", statOrder = { 1265 }, level = 1, group = "GlobalAddedPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [960081730] = { "Adds (8-12) to (14-20) Physical Damage" }, } }, - ["GlobalAddedFireDamageUnique__1"] = { affix = "", "Adds (20-24) to (33-36) Fire Damage", statOrder = { 1359 }, level = 1, group = "GlobalAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [321077055] = { "Adds (20-24) to (33-36) Fire Damage" }, } }, - ["GlobalAddedFireDamageUnique__2"] = { affix = "", "Adds (22-27) to (34-38) Fire Damage", statOrder = { 1359 }, level = 1, group = "GlobalAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [321077055] = { "Adds (22-27) to (34-38) Fire Damage" }, } }, - ["GlobalAddedFireDamageUnique__3_"] = { affix = "", "Adds (20-25) to (26-35) Fire Damage", statOrder = { 1359 }, level = 1, group = "GlobalAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [321077055] = { "Adds (20-25) to (26-35) Fire Damage" }, } }, - ["GlobalAddedFireDamageUnique__4"] = { affix = "", "Adds (16-19) to (25-29) Fire Damage", statOrder = { 1359 }, level = 1, group = "GlobalAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [321077055] = { "Adds (16-19) to (25-29) Fire Damage" }, } }, - ["GlobalAddedFireDamageUnique__6"] = { affix = "", "Adds (10-14) to (26-34) Fire Damage", statOrder = { 1359 }, level = 1, group = "GlobalAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [321077055] = { "Adds (10-14) to (26-34) Fire Damage" }, } }, - ["GlobalAddedColdDamageUnique__1"] = { affix = "", "Adds (20-24) to (33-36) Cold Damage", statOrder = { 1368 }, level = 1, group = "GlobalAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [2387423236] = { "Adds (20-24) to (33-36) Cold Damage" }, } }, - ["GlobalAddedColdDamageUnique__2_"] = { affix = "", "Adds (20-23) to (31-35) Cold Damage", statOrder = { 1368 }, level = 1, group = "GlobalAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [2387423236] = { "Adds (20-23) to (31-35) Cold Damage" }, } }, - ["GlobalAddedColdDamageUnique__3"] = { affix = "", "Adds (20-25) to (26-35) Cold Damage", statOrder = { 1368 }, level = 1, group = "GlobalAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [2387423236] = { "Adds (20-25) to (26-35) Cold Damage" }, } }, - ["GlobalAddedColdDamageUnique__4"] = { affix = "", "Adds (16-19) to (25-29) Cold Damage", statOrder = { 1368 }, level = 1, group = "GlobalAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [2387423236] = { "Adds (16-19) to (25-29) Cold Damage" }, } }, - ["GlobalAddedColdDamageUnique__5"] = { affix = "", "Adds (8-12) to (18-26) Cold Damage", statOrder = { 1368 }, level = 1, group = "GlobalAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [2387423236] = { "Adds (8-12) to (18-26) Cold Damage" }, } }, - ["GlobalAddedLightningDamageUnique__1_"] = { affix = "", "Adds (10-13) to (43-47) Lightning Damage", statOrder = { 1379 }, level = 1, group = "GlobalAddedLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [1334060246] = { "Adds (10-13) to (43-47) Lightning Damage" }, } }, - ["GlobalAddedLightningDamageUnique__2_"] = { affix = "", "Adds (1-3) to (47-52) Lightning Damage", statOrder = { 1379 }, level = 1, group = "GlobalAddedLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [1334060246] = { "Adds (1-3) to (47-52) Lightning Damage" }, } }, - ["GlobalAddedLightningDamageUnique__3"] = { affix = "", "Adds 1 to (48-60) Lightning Damage", statOrder = { 1379 }, level = 1, group = "GlobalAddedLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [1334060246] = { "Adds 1 to (48-60) Lightning Damage" }, } }, - ["GlobalAddedLightningDamageUnique__4"] = { affix = "", "Adds (6-10) to (33-38) Lightning Damage", statOrder = { 1379 }, level = 1, group = "GlobalAddedLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [1334060246] = { "Adds (6-10) to (33-38) Lightning Damage" }, } }, - ["GlobalAddedLightningDamageUnique__5"] = { affix = "", "Adds (1-2) to (43-56) Lightning Damage", statOrder = { 1379 }, level = 1, group = "GlobalAddedLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [1334060246] = { "Adds (1-2) to (43-56) Lightning Damage" }, } }, - ["EnergyShieldRegenerationperMinuteWhileOnLowLifeTransformedUnique__1"] = { affix = "", "Regenerate 2% of Energy Shield per second while on Low Life", statOrder = { 1801 }, level = 45, group = "EnergyShieldRegenerationperMinuteWhileOnLowLife", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [115109959] = { "Regenerate 2% of Energy Shield per second while on Low Life" }, } }, - ["ReflectPhysicalDamageToSelfOnHitUnique__1"] = { affix = "", "Enemies you Attack Reflect 100 Physical Damage to you", statOrder = { 2196 }, level = 1, group = "ReflectPhysicalDamageToSelfOnHit", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2319377249] = { "Enemies you Attack Reflect 100 Physical Damage to you" }, } }, - ["IgnoreHexproofUnique___1"] = { affix = "", "Your Hexes can affect Hexproof Enemies", statOrder = { 2600 }, level = 1, group = "IgnoreHexproof", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1367119630] = { "Your Hexes can affect Hexproof Enemies" }, } }, - ["PoisonCursedEnemiesOnHitUnique__1"] = { affix = "", "Poison Cursed Enemies on hit", statOrder = { 4207 }, level = 1, group = "PoisonCursedEnemiesOnHit", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [4266201818] = { "Poison Cursed Enemies on hit" }, } }, - ["ChanceToPoisonCursedEnemiesOnHitUnique__1"] = { affix = "", "Always Poison on Hit against Cursed Enemies", statOrder = { 4208 }, level = 1, group = "ChanceToPoisonCursedEnemiesOnHit", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [2208857094] = { "Always Poison on Hit against Cursed Enemies" }, } }, - ["ChanceToBeShockedUnique__1"] = { affix = "", "+20% chance to be Shocked", statOrder = { 2949 }, level = 1, group = "ChanceToBeShocked", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3206652215] = { "+20% chance to be Shocked" }, } }, - ["ChanceToBeShockedUnique__2"] = { affix = "", "+50% chance to be Shocked", statOrder = { 2949 }, level = 1, group = "ChanceToBeShocked", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3206652215] = { "+50% chance to be Shocked" }, } }, - ["GlobalDefensesPerWhiteSocketUnique__1"] = { affix = "", "8% increased Global Defences per White Socket", statOrder = { 2731 }, level = 1, group = "GlobalDefensesPerWhiteSocket", weightKey = { }, weightVal = { }, modTags = { "defences" }, tradeHashes = { [967108924] = { "8% increased Global Defences per White Socket" }, } }, - ["ItemQuantityWhileWearingAMagicItemUnique__1"] = { affix = "", "(10-15)% increased Quantity of Items found with a Magic Item Equipped", statOrder = { 4210 }, level = 10, group = "ItemQuantityWhileWearingAMagicItem", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [1498954300] = { "(10-15)% increased Quantity of Items found with a Magic Item Equipped" }, } }, - ["ItemRarityWhileWearingANormalItemUnique__1"] = { affix = "", "(80-100)% increased Rarity of Items found with a Normal Item Equipped", statOrder = { 4209 }, level = 1, group = "ItemRarityWhileWearingANormalItem", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [4151190513] = { "(80-100)% increased Rarity of Items found with a Normal Item Equipped" }, } }, - ["AdditionalAttackTotemsUnique__1"] = { affix = "", "Attack Skills have +1 to maximum number of Summoned Totems", statOrder = { 4246 }, level = 1, group = "AdditionalAttackTotems", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [3266394681] = { "Attack Skills have +1 to maximum number of Summoned Totems" }, } }, - ["MinionColdResistUnique__1"] = { affix = "", "Minions have +40% to Cold Resistance", statOrder = { 4190 }, level = 1, group = "MinionColdResist", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance", "minion" }, tradeHashes = { [2200407711] = { "Minions have +40% to Cold Resistance" }, } }, - ["MinionFireResistUnique__1"] = { affix = "", "Minions have +40% to Fire Resistance", statOrder = { 9306 }, level = 1, group = "MinionFireResist", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance", "minion" }, tradeHashes = { [1889350679] = { "Minions have +40% to Fire Resistance" }, } }, - ["MinionPhysicalDamageAddedAsColdUnique__1_"] = { affix = "", "Minions gain 20% of Physical Damage as Extra Cold Damage", statOrder = { 4191 }, level = 1, group = "MinionPhysicalDamageAddedAsCold", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold", "minion" }, tradeHashes = { [1236638414] = { "Minions gain 20% of Physical Damage as Extra Cold Damage" }, } }, - ["PhasingOnTrapTriggeredUnique__1"] = { affix = "", "30% chance to gain Phasing for 4 seconds when your Trap is triggered by an Enemy", statOrder = { 4242 }, level = 1, group = "PhasingOnTrapTriggered", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1894653141] = { "0% chance to gain Phasing for 4 seconds when your Trap is triggered by an Enemy" }, [543539632] = { "30% chance to gain Phasing for 3 seconds when your Trap is triggered by an Enemy" }, } }, - ["GainEnergyShieldOnTrapTriggeredUnique__1_"] = { affix = "", "Recover 50 Energy Shield when your Trap is triggered by an Enemy", statOrder = { 4244 }, level = 1, group = "GainEnergyShieldOnTrapTriggered", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1073384532] = { "Recover 50 Energy Shield when your Trap is triggered by an Enemy" }, } }, - ["GainLifeOnTrapTriggeredUnique__1"] = { affix = "", "Recover 100 Life when your Trap is triggered by an Enemy", statOrder = { 4243 }, level = 1, group = "GainLifeOnTrapTriggered", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3952196842] = { "Recover 100 Life when your Trap is triggered by an Enemy" }, } }, - ["GainLifeOnTrapTriggeredUnique__2__"] = { affix = "", "Recover (20-30) Life when your Trap is triggered by an Enemy", statOrder = { 4243 }, level = 1, group = "GainLifeOnTrapTriggered", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3952196842] = { "Recover (20-30) Life when your Trap is triggered by an Enemy" }, } }, - ["GainFrenzyChargeOnTrapTriggeredUnique__1"] = { affix = "", "15% chance to gain a Frenzy Charge when your Trap is triggered by an Enemy", statOrder = { 3600 }, level = 1, group = "GainFrenzyChargeOnTrapTriggered", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [3738335639] = { "15% chance to gain a Frenzy Charge when your Trap is triggered by an Enemy" }, } }, - ["BleedingImmunityUnique__1"] = { affix = "", "Bleeding cannot be inflicted on you", statOrder = { 4215 }, level = 1, group = "BleedingImmunity", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1901158930] = { "Bleeding cannot be inflicted on you" }, } }, - ["BleedingImmunityUnique__2"] = { affix = "", "Bleeding cannot be inflicted on you", statOrder = { 4215 }, level = 1, group = "BleedingImmunity", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1901158930] = { "Bleeding cannot be inflicted on you" }, } }, - ["SelfStatusAilmentDurationUnique__1"] = { affix = "", "50% increased Elemental Ailment Duration on you", statOrder = { 1867 }, level = 1, group = "SelfStatusAilmentDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "ailment" }, tradeHashes = { [1745952865] = { "50% increased Elemental Ailment Duration on you" }, } }, - ["PoisonOnMeleeHitUnique__1"] = { affix = "", "Melee Attacks have (20-40)% chance to Poison on Hit", statOrder = { 4259 }, level = 60, group = "PoisonOnMeleeHit", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "attack", "ailment" }, tradeHashes = { [33065250] = { "Melee Attacks have (20-40)% chance to Poison on Hit" }, } }, - ["LifeLeechVsCursedEnemiesUnique__1"] = { affix = "", "1% of Damage Leeched as Life against Cursed Enemies", statOrder = { 4260 }, level = 1, group = "LifeLeechVsCursedEnemies", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3861913659] = { "1% of Damage Leeched as Life against Cursed Enemies" }, } }, - ["MovementSpeedIfKilledRecentlyUnique___1"] = { affix = "", "15% increased Movement Speed if you've Killed Recently", statOrder = { 4261 }, level = 40, group = "MovementSpeedIfKilledRecently", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [279227559] = { "15% increased Movement Speed if you've Killed Recently" }, } }, - ["MovementSpeedIfKilledRecentlyUnique___2"] = { affix = "", "15% increased Movement Speed if you've Killed Recently", statOrder = { 4261 }, level = 1, group = "MovementSpeedIfKilledRecently", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [279227559] = { "15% increased Movement Speed if you've Killed Recently" }, } }, - ["ControlledDestructionSupportUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 10 Controlled Destruction", statOrder = { 410 }, level = 45, group = "ControlledDestructionSupportLevel10Boolean", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [3425526049] = { "Socketed Gems are Supported by Level 10 Controlled Destruction" }, } }, - ["ControlledDestructionSupportUnique__1New_"] = { affix = "", "Socketed Gems are Supported by Level 10 Controlled Destruction", statOrder = { 525 }, level = 45, group = "ControlledDestructionSupport", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [3718597497] = { "Socketed Gems are Supported by Level 10 Controlled Destruction" }, } }, - ["ColdDamageIgnitesUnique__1"] = { affix = "", "Your Cold Damage can Ignite", statOrder = { 2882 }, level = 30, group = "ColdDamageAlsoIgnites", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [3573591118] = { "Your Cold Damage can Ignite" }, } }, - ["LifeRegenerationPercentPerEnduranceChargeUnique__1"] = { affix = "", "Regenerate 0.2% of Life per second per Endurance Charge", statOrder = { 1576 }, level = 40, group = "LifeRegenerationPercentPerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [989800292] = { "Regenerate 0.2% of Life per second per Endurance Charge" }, } }, - ["AreaOfEffectPerEnduranceChargeUnique__1"] = { affix = "", "2% increased Area of Effect per Endurance Charge", statOrder = { 4733 }, level = 1, group = "AreaOfEffectPerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2448279015] = { "2% increased Area of Effect per Endurance Charge" }, } }, - ["ChanceForDoubleStunDurationUnique__1"] = { affix = "", "50% chance to double Stun Duration", statOrder = { 3564 }, level = 1, group = "ChanceForDoubleStunDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2622251413] = { "50% chance to double Stun Duration" }, } }, - ["ChanceForDoubleStunDurationImplicitMace_1"] = { affix = "", "25% chance to double Stun Duration", statOrder = { 3564 }, level = 1, group = "ChanceForDoubleStunDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2622251413] = { "25% chance to double Stun Duration" }, } }, - ["PhysicalAddedAsFireUnique__1"] = { affix = "", "Gain (25-35)% of Physical Attack Damage as Extra Fire Damage", statOrder = { 3774 }, level = 30, group = "AttackPhysicalDamageAddedAsFire", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire", "attack" }, tradeHashes = { [273476097] = { "Gain (25-35)% of Physical Attack Damage as Extra Fire Damage" }, } }, - ["PhysicalAddedAsFireUnique__2"] = { affix = "", "Gain 70% of Physical Damage as Extra Fire Damage", statOrder = { 1932 }, level = 50, group = "PhysicalAddedAsFire", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [369494213] = { "Gain 70% of Physical Damage as Extra Fire Damage" }, } }, - ["PhysicalAddedAsFireUnique__3"] = { affix = "", "Gain 20% of Physical Damage as Extra Fire Damage", statOrder = { 1932 }, level = 1, group = "PhysicalAddedAsFire", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [369494213] = { "Gain 20% of Physical Damage as Extra Fire Damage" }, } }, - ["PhysicalAddedAsFireUnique__4"] = { affix = "", "Gain (10-50)% of Physical Damage as Extra Fire Damage", statOrder = { 1932 }, level = 1, group = "PhysicalAddedAsFire", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [369494213] = { "Gain (10-50)% of Physical Damage as Extra Fire Damage" }, } }, - ["PhysicalAddedAsLightningUnique__1"] = { affix = "", "Gain (10-50)% of Physical Damage as Extra Lightning Damage", statOrder = { 1934 }, level = 1, group = "PhysicalAddedAsLightning", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [219391121] = { "Gain (10-50)% of Physical Damage as Extra Lightning Damage" }, } }, - ["AttackCastMoveOnWarcryRecentlyUnique____1"] = { affix = "", "If you've Warcried Recently, you and nearby allies have 20% increased Attack, Cast and Movement Speed", statOrder = { 3314 }, level = 1, group = "AttackCastMoveOnWarcryRecently", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed" }, tradeHashes = { [1464115829] = { "If you've Warcried Recently, you and nearby allies have 20% increased Attack, Cast and Movement Speed" }, } }, - ["ChaosSkillEffectDurationUnique__1"] = { affix = "", "Chaos Skills have 40% increased Skill Effect Duration", statOrder = { 1896 }, level = 1, group = "ChaosSkillEffectDuration", weightKey = { }, weightVal = { }, modTags = { "chaos" }, tradeHashes = { [289885185] = { "Chaos Skills have 40% increased Skill Effect Duration" }, } }, - ["PoisonDurationUnique__1_"] = { affix = "", "(15-20)% increased Poison Duration", statOrder = { 3170 }, level = 1, group = "PoisonDuration", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [2011656677] = { "(15-20)% increased Poison Duration" }, } }, - ["PoisonDurationUnique__2"] = { affix = "", "(20-25)% increased Poison Duration", statOrder = { 3170 }, level = 1, group = "PoisonDuration", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [2011656677] = { "(20-25)% increased Poison Duration" }, } }, - ["PoisonDurationUnique__3"] = { affix = "", "(10-25)% increased Poison Duration", statOrder = { 3170 }, level = 30, group = "PoisonDuration", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [2011656677] = { "(10-25)% increased Poison Duration" }, } }, - ["LocalPhysicalDamageAddedAsEachElementTransformed"] = { affix = "", "Gain 100% of Weapon Physical Damage as Extra Damage of each Element", statOrder = { 4262 }, level = 50, group = "LocalPhysicalDamageAddedAsEachElement", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "attack" }, tradeHashes = { [1038949719] = { "" }, [3913265126] = { "Gain 100% of Weapon Physical Damage as Extra Damage of each Element" }, } }, - ["LocalPhysicalDamageAddedAsEachElementTransformed2"] = { affix = "", "Gain 100% of Weapon Physical Damage as Extra Damage of each Element", statOrder = { 4262 }, level = 50, group = "LocalPhysicalDamageAddedAsEachElement", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "attack" }, tradeHashes = { [1038949719] = { "" }, [3913265126] = { "Gain 100% of Weapon Physical Damage as Extra Damage of each Element" }, } }, - ["LocalPhysicalDamageAddedAsEachElementUnique__1"] = { affix = "", "Gain 100% of Weapon Physical Damage as Extra Damage of each Element", statOrder = { 4262 }, level = 1, group = "LocalPhysicalDamageAddedAsEachElement", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "attack" }, tradeHashes = { [1038949719] = { "" }, [3913265126] = { "Gain 100% of Weapon Physical Damage as Extra Damage of each Element" }, } }, - ["BleedOnMeleeHitChanceUnique__1"] = { affix = "", "Melee Attacks have (30-50)% chance to cause Bleeding", statOrder = { 2487 }, level = 1, group = "BleedOnMeleeHitChance", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1285056331] = { "Melee Attacks have (30-50)% chance to cause Bleeding" }, } }, - ["ArmourAndEvasionImplicitBelt1"] = { affix = "", "+(260-320) to Armour and Evasion Rating", statOrder = { 4266 }, level = 98, group = "ArmourAndEvasionRatingImplicit", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2316658489] = { "+(260-320) to Armour and Evasion Rating" }, } }, - ["PhysicalDamageTakenAsColdUnique__1"] = { affix = "", "20% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2448 }, level = 1, group = "PhysicalDamageTakenAsCold", weightKey = { }, weightVal = { }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [1871056256] = { "20% of Physical Damage from Hits taken as Cold Damage" }, } }, - ["ChaosDamageOverTimeUnique__1"] = { affix = "", "25% reduced Chaos Damage taken over time", statOrder = { 1948 }, level = 1, group = "ChaosDamageOverTimeTaken", weightKey = { }, weightVal = { }, modTags = { "chaos" }, tradeHashes = { [3762784591] = { "25% reduced Chaos Damage taken over time" }, } }, - ["PowerFrenzyOrEnduranceChargeOnKillUnique__1"] = { affix = "", "(10-15)% chance to gain a Power, Frenzy or Endurance Charge on Kill", statOrder = { 3612 }, level = 1, group = "PowerFrenzyOrEnduranceChargeOnKill", weightKey = { }, weightVal = { }, modTags = { "endurance_charge", "frenzy_charge", "power_charge" }, tradeHashes = { [498214257] = { "(10-15)% chance to gain a Power, Frenzy or Endurance Charge on Kill" }, } }, - ["CannotLeechFromCriticalStrikesUnique___1"] = { affix = "", "Cannot Leech Life from Critical Strikes", statOrder = { 4277 }, level = 1, group = "CannotLeechFromCriticalStrikes", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "critical" }, tradeHashes = { [3243534964] = { "Cannot Leech Life from Critical Strikes" }, } }, - ["ChanceToBlindOnCriticalStrikesUnique__1"] = { affix = "", "30% chance to Blind Enemies on Critical Strike", statOrder = { 4278 }, level = 1, group = "ChanceToBlindOnCriticalStrikes", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [3983981705] = { "30% chance to Blind Enemies on Critical Strike" }, } }, - ["ChanceToBlindOnCriticalStrikesUnique__2_"] = { affix = "", "(40-50)% chance to Blind Enemies on Critical Strike", statOrder = { 4278 }, level = 38, group = "ChanceToBlindOnCriticalStrikes", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [3983981705] = { "(40-50)% chance to Blind Enemies on Critical Strike" }, } }, - ["BleedOnMeleeCriticalStrikeUnique__1"] = { affix = "", "50% chance to cause Bleeding on Critical Strike", statOrder = { 7874 }, level = 1, group = "LocalCausesBleedingOnCrit50PercentChance", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [2743246999] = { "50% chance to cause Bleeding on Critical Strike" }, } }, - ["StunDurationBasedOnEnergyShieldUnique__1"] = { affix = "", "Stun Threshold is based on Energy Shield instead of Life", statOrder = { 4276 }, level = 48, group = "StunDurationBasedOnEnergyShield", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2562665460] = { "Stun Threshold is based on Energy Shield instead of Life" }, } }, - ["TakeNoExtraDamageFromCriticalStrikesUnique__1"] = { affix = "", "Take no Extra Damage from Critical Strikes", statOrder = { 4288 }, level = 1, group = "TakeNoExtraDamageFromCriticalStrikes", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [4294267596] = { "Take no Extra Damage from Critical Strikes" }, } }, - ["ShockedEnemyCastSpeedUnique__1"] = { affix = "", "Enemies you Shock have 30% reduced Cast Speed", statOrder = { 4289 }, level = 1, group = "ShockedEnemyCastSpeed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4107150355] = { "Enemies you Shock have 30% reduced Cast Speed" }, } }, - ["ShockedEnemyMovementSpeedUnique__1"] = { affix = "", "Enemies you Shock have 20% reduced Movement Speed", statOrder = { 4290 }, level = 1, group = "ShockedEnemyMovementSpeed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3134790305] = { "Enemies you Shock have 20% reduced Movement Speed" }, } }, - ["IncreasedBurningDamageIfYouHaveIgnitedRecentlyUnique__1"] = { affix = "", "100% increased Burning Damage if you've Ignited an Enemy Recently", statOrder = { 4300 }, level = 1, group = "IncreasedBurningDamageIfYouHaveIgnitedRecently", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3919557483] = { "100% increased Burning Damage if you've Ignited an Enemy Recently" }, } }, - ["RecoverLifePercentOnIgniteUnique__1"] = { affix = "", "Recover 1% of Life when you Ignite an Enemy", statOrder = { 4301 }, level = 1, group = "RecoverLifePercentOnIgnite", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3112776239] = { "Recover 1% of Life when you Ignite an Enemy" }, } }, - ["IncreasedMeleePhysicalDamageAgainstIgnitedEnemiesUnique__1"] = { affix = "", "100% increased Melee Physical Damage against Ignited Enemies", statOrder = { 4302 }, level = 1, group = "IncreasedMeleePhysicalDamageAgainstIgnitedEnemies", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1332534089] = { "100% increased Melee Physical Damage against Ignited Enemies" }, } }, - ["NormalMonsterItemQuantityUnique__1"] = { affix = "", "(35-50)% increased Quantity of Items Dropped by Slain Normal Enemies", statOrder = { 9514 }, level = 38, group = "NormalMonsterItemQuantity", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [1342790450] = { "(35-50)% increased Quantity of Items Dropped by Slain Normal Enemies" }, } }, - ["MagicMonsterItemRarityUnique__1"] = { affix = "", "(100-150)% increased Rarity of Items Dropped by Slain Magic Enemies", statOrder = { 8150 }, level = 1, group = "MagicMonsterItemRarity", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3433676080] = { "(100-150)% increased Rarity of Items Dropped by Slain Magic Enemies" }, } }, - ["HeistContractChestRewardsDuplicated"] = { affix = "", "Heist Chests have a 100% chance to Duplicate their contents", "Monsters have 100% more Life", statOrder = { 5540, 8517 }, level = 1, group = "HeistContractChestRewardsDuplicated", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3026134008] = { "Monsters have 100% more Life" }, [2747693610] = { "Heist Chests have a 100% chance to Duplicate their contents" }, } }, - ["HeistContractAdditionalIntelligence"] = { affix = "", "Completing a Heist generates 3 additional Reveals", "Heist Chests have 25% chance to contain nothing", statOrder = { 8513, 8514 }, level = 1, group = "HeistContractAdditionalIntelligence", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3038236553] = { "Heist Chests have 25% chance to contain nothing" }, [2309146693] = { "Completing a Heist generates 3 additional Reveals" }, } }, - ["HeistContractNPCPerksDoubled"] = { affix = "", "50% reduced time before Lockdown", "Rogue Perks are doubled", statOrder = { 6208, 8518 }, level = 1, group = "HeistContractNPCPerksDoubled", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4004160031] = { "" }, [429193272] = { "50% reduced time before Lockdown" }, [898812928] = { "Rogue Perks are doubled" }, } }, - ["HeistContractBetterTargetValue"] = { affix = "", "Rogue Equipment cannot be found", "200% more Rogue's Marker value of primary Heist Target", statOrder = { 8515, 8516 }, level = 1, group = "HeistContractBetterTargetValue", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3009603087] = { "200% more Rogue's Marker value of primary Heist Target" }, [1045213941] = { "Rogue Equipment cannot be found" }, } }, - ["HeistBlueprintRewardAlwaysUnique"] = { affix = "", "Heist Targets are always Replica Unique Items", statOrder = { 6970 }, level = 1, group = "HeistBlueprintRewardAlwaysUnique", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2619914138] = { "Heist Targets are always Replica Unique Items" }, } }, - ["HeistBlueprintRewardAlwaysExperimented"] = { affix = "", "Heist Targets are always Experimented Items", statOrder = { 6968 }, level = 1, group = "HeistBlueprintRewardAlwaysExperimented", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4182516619] = { "Heist Targets are always Experimented Items" }, } }, - ["HeistBlueprintRewardAlwaysEnchanted"] = { affix = "", "Heist Targets are always Enchanted Armaments", statOrder = { 6967 }, level = 1, group = "HeistBlueprintRewardAlwaysEnchanted", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3709545805] = { "Heist Targets are always Enchanted Armaments" }, } }, - ["HeistBlueprintRewardAlwaysCurrencyScarab"] = { affix = "", "Heist Targets are always Currency or Scarabs", statOrder = { 6966 }, level = 1, group = "HeistBlueprintRewardAlwaysCurrencyScarab", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4168369352] = { "Heist Targets are always Currency or Scarabs" }, } }, - ["HeistBlueprintRewardAlwaysTrinket"] = { affix = "", "Heist Targets are always Thieves' Trinkets", statOrder = { 6969 }, level = 1, group = "HeistBlueprintRewardAlwaysTrinket", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1123534836] = { "Heist Targets are always Thieves' Trinkets" }, } }, - ["CriticalStrikeChanceForForkingArrowsUnique__1"] = { affix = "", "(150-200)% increased Critical Strike Chance with arrows that Fork", statOrder = { 4303 }, level = 1, group = "CriticalStrikeChanceForForkingArrows", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [4169623196] = { "(150-200)% increased Critical Strike Chance with arrows that Fork" }, } }, - ["ArrowsAlwaysCritAfterPiercingUnique___1"] = { affix = "", "Arrows Pierce all Targets after Chaining", statOrder = { 4306 }, level = 1, group = "ArrowsAlwaysCritAfterPiercing", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [1997151732] = { "Arrows Pierce all Targets after Chaining" }, } }, - ["ArrowsThatPierceCauseBleedingUnique__1"] = { affix = "", "Arrows that Pierce have 50% chance to inflict Bleeding", statOrder = { 4305 }, level = 1, group = "ArrowsThatPierceCauseBleeding25Percent", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1812251528] = { "Arrows that Pierce have 50% chance to inflict Bleeding" }, } }, - ["IncreaseProjectileAttackDamagePerAccuracyUnique__1"] = { affix = "", "1% increased Projectile Attack Damage per 200 Accuracy Rating", statOrder = { 4308 }, level = 1, group = "IncreaseProjectileAttackDamagePerAccuracy", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [4157767905] = { "1% increased Projectile Attack Damage per 200 Accuracy Rating" }, } }, - ["AdditionalSpellProjectilesUnique__1"] = { affix = "", "Spells fire an additional Projectile", statOrder = { 4307 }, level = 85, group = "AdditionalSpellProjectiles", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHashes = { [1011373762] = { "Spells fire an additional Projectile" }, } }, - ["IncreasedMinionDamageIfYouHitEnemyUnique__1"] = { affix = "", "Minions deal 70% increased Damage if you've Hit Recently", statOrder = { 9296 }, level = 1, group = "IncreasedMinionDamageIfYouHitEnemy", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, tradeHashes = { [2337295272] = { "Minions deal 70% increased Damage if you've Hit Recently" }, } }, - ["MinionDamageAlsoAffectsYouUnique__1"] = { affix = "", "Increases and Reductions to Minion Damage also affect you at 150% of their value", statOrder = { 3751 }, level = 1, group = "MinionDamageAlsoAffectsYouAt150%", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, tradeHashes = { [1433144735] = { "Increases and Reductions to Minion Damage also affect you at 150% of their value" }, } }, - ["GlobalCriticalStrikeChanceAgainstChilledUnique__1"] = { affix = "", "60% increased Critical Strike Chance against Chilled Enemies", statOrder = { 6874 }, level = 1, group = "GlobalCriticalStrikeChanceAgainstChilled", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [3699490848] = { "60% increased Critical Strike Chance against Chilled Enemies" }, } }, - ["CastSocketedColdSkillsOnCriticalStrikeUnique__1"] = { affix = "", "Trigger a Socketed Cold Spell on Melee Critical Strike, with a 0.25 second Cooldown", statOrder = { 827 }, level = 1, group = "CastSocketedColdSpellsOnMeleeCriticalStrike", weightKey = { }, weightVal = { }, modTags = { "skill", "elemental", "cold", "attack", "caster", "gem" }, tradeHashes = { [2295303426] = { "Trigger a Socketed Cold Spell on Melee Critical Strike, with a 0.25 second Cooldown" }, } }, - ["IncreasedAttackAreaOfEffectUnique__1_"] = { affix = "", "20% increased Area of Effect for Attacks", statOrder = { 4835 }, level = 1, group = "IncreasedAttackAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [1840985759] = { "20% increased Area of Effect for Attacks" }, } }, - ["IncreasedAttackAreaOfEffectUnique__2_"] = { affix = "", "20% increased Area of Effect for Attacks", statOrder = { 4835 }, level = 1, group = "IncreasedAttackAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [1840985759] = { "20% increased Area of Effect for Attacks" }, } }, - ["IncreasedAttackAreaOfEffectUnique__3"] = { affix = "", "(-40-40)% reduced Area of Effect for Attacks", statOrder = { 4835 }, level = 1, group = "IncreasedAttackAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [1840985759] = { "(-40-40)% reduced Area of Effect for Attacks" }, } }, - ["PhysicalDamageCanShockUnique__1"] = { affix = "", "Your Physical Damage can Shock", statOrder = { 2881 }, level = 1, group = "PhysicalDamageCanShock", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3848047105] = { "Your Physical Damage can Shock" }, } }, - ["DealNoElementalDamageUnique__1"] = { affix = "", "Deal no Elemental Damage", statOrder = { 6142 }, level = 1, group = "DealNoElementalDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [2998305364] = { "Deal no Elemental Damage" }, } }, - ["DealNoElementalDamageUnique__2"] = { affix = "", "Deal no Elemental Damage", statOrder = { 6142 }, level = 1, group = "DealNoElementalDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [2998305364] = { "Deal no Elemental Damage" }, } }, - ["TakeFireDamageOnIgniteUnique__1"] = { affix = "", "Take 100 Fire Damage when you Ignite an Enemy", statOrder = { 6575 }, level = 1, group = "TakeFireDamageOnIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2518598473] = { "Take 100 Fire Damage when you Ignite an Enemy" }, } }, - ["FireDamageLeechedAsLifeWhileIgnitedUnique__1"] = { affix = "", "2% of Fire Damage Leeched as Life while Ignited", statOrder = { 7370 }, level = 1, group = "FireDamageLeechedAsLifeWhileIgnited", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "elemental", "fire" }, tradeHashes = { [3633399302] = { "2% of Fire Damage Leeched as Life while Ignited" }, } }, - ["MovementSkillsDealNoPhysicalDamageUnique__1"] = { affix = "", "Movement Skills deal no Physical Damage", statOrder = { 9408 }, level = 1, group = "MovementSkillsDealNoPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [4114010855] = { "Movement Skills deal no Physical Damage" }, } }, - ["GainPhasingIfKilledRecentlyUnique__1"] = { affix = "", "You have Phasing if you've Killed Recently", statOrder = { 6797 }, level = 1, group = "GainPhasingIfKilledRecently", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3489372920] = { "You have Phasing if you've Killed Recently" }, } }, - ["MovementSkillsCostNoManaUnique__1"] = { affix = "", "Movement Skills Cost no Mana", statOrder = { 3472 }, level = 1, group = "MovementSkillsCostNoMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [3086866381] = { "Movement Skills Cost no Mana" }, } }, - ["ProjectileAttackDamageImplicitGloves1"] = { affix = "", "(14-18)% increased Projectile Attack Damage", statOrder = { 1997 }, level = 1, group = "ProjectileAttackDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [2162876159] = { "(14-18)% increased Projectile Attack Damage" }, } }, - ["ManaPerStrengthUnique__1__"] = { affix = "", "+1 Mana per 4 Strength", statOrder = { 2022 }, level = 1, group = "ManaPerStrength", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [507075051] = { "+1 Mana per 4 Strength" }, } }, - ["EnergyShieldPerStrengthUnique__1"] = { affix = "", "1% increased Energy Shield per 10 Strength", statOrder = { 6443 }, level = 1, group = "EnergyShieldPerStrength", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [506942497] = { "1% increased Energy Shield per 10 Strength" }, } }, - ["LifePerDexterityUnique__1"] = { affix = "", "+1 Life per 4 Dexterity", statOrder = { 2021 }, level = 1, group = "LifePerDexterity", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2042405614] = { "+1 Life per 4 Dexterity" }, } }, - ["MeleePhysicalDamagePerDexterityUnique__1_"] = { affix = "", "2% increased Melee Physical Damage per 10 Dexterity", statOrder = { 9196 }, level = 1, group = "MeleePhysicalDamagePerDexterity", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [2355151849] = { "2% increased Melee Physical Damage per 10 Dexterity" }, } }, - ["AccuracyPerIntelligenceUnique__1"] = { affix = "", "+2 Accuracy Rating per 2 Intelligence", statOrder = { 2020 }, level = 1, group = "AccuracyPerIntelligence", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2196657026] = { "+2 Accuracy Rating per 2 Intelligence" }, } }, - ["EvasionRatingPerIntelligenceUnique__1"] = { affix = "", "2% increased Evasion Rating per 10 Intelligence", statOrder = { 6477 }, level = 1, group = "EvasionRatingPerIntelligence", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [810772344] = { "2% increased Evasion Rating per 10 Intelligence" }, } }, - ["ChanceToGainFrenzyChargeOnStunUnique__1"] = { affix = "", "15% chance to gain a Frenzy Charge when you Stun an Enemy", statOrder = { 5691 }, level = 38, group = "ChanceToGainFrenzyChargeOnStun", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [1695720239] = { "15% chance to gain a Frenzy Charge when you Stun an Enemy" }, } }, - ["PrrojectilesPierceWhilePhasingUnique__1_"] = { affix = "", "Projectiles Pierce all Targets while you have Phasing", statOrder = { 9755 }, level = 1, group = "PrrojectilesPierceWhilePhasing", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2636403786] = { "Projectiles Pierce all Targets while you have Phasing" }, } }, - ["AdditionalPierceWhilePhasingUnique__1"] = { affix = "", "Projectiles Pierce 5 additional Targets while you have Phasing", statOrder = { 9756 }, level = 1, group = "AdditionalPierceWhilePhasing", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [97250660] = { "Projectiles Pierce 5 additional Targets while you have Phasing" }, } }, - ["ChanceToAvoidProjectilesWhilePhasingUnique__1"] = { affix = "", "20% chance to Avoid Projectiles while Phasing", statOrder = { 4951 }, level = 1, group = "ChanceToAvoidProjectilesWhilePhasing", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3635120731] = { "20% chance to Avoid Projectiles while Phasing" }, } }, - ["CelestialFootprintsUnique__1_"] = { affix = "", "Celestial Footprints", statOrder = { 10855 }, level = 1, group = "CelestialFootprints", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [50381303] = { "Celestial Footprints" }, } }, - ["IncreasedMinionAttackSpeedUnique__1_"] = { affix = "", "Minions have (10-15)% increased Attack Speed", statOrder = { 2907 }, level = 1, group = "MinionAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed", "minion" }, tradeHashes = { [3375935924] = { "Minions have (10-15)% increased Attack Speed" }, } }, - ["PrimordialJewelCountUnique__4"] = { affix = "", "Primordial", statOrder = { 10720 }, level = 1, group = "PrimordialJewelCount", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [1089165168] = { "Primordial" }, } }, - ["ArmourPerTotemUnique__1"] = { affix = "", "+300 Armour per Summoned Totem", statOrder = { 4500 }, level = 1, group = "ArmourPerTotem", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1429385513] = { "+300 Armour per Summoned Totem" }, } }, - ["SpellDamageIfYouHaveCritRecentlyUnique__1"] = { affix = "", "200% increased Spell Damage if you've dealt a Critical Strike in the past 8 seconds", statOrder = { 10150 }, level = 1, group = "SpellDamageIfCritPast8Seconds", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [467806158] = { "200% increased Spell Damage if you've dealt a Critical Strike in the past 8 seconds" }, } }, - ["SpellDamageIfYouHaveCritRecentlyUnique__2"] = { affix = "", "(120-150)% increased Spell Damage if you've dealt a Critical Strike Recently", statOrder = { 10146 }, level = 1, group = "SpellDamageIfYouHaveCritRecently", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [1550015622] = { "(120-150)% increased Spell Damage if you've dealt a Critical Strike Recently" }, } }, - ["CriticalStrikesDealNoDamageUnique__1"] = { affix = "", "Critical Strikes deal no Damage", statOrder = { 5979 }, level = 1, group = "CriticalStrikesDealNoDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [3245481061] = { "Critical Strikes deal no Damage" }, } }, - ["LocalNoCriticalStrikeMultiplierUnique_1"] = { affix = "", "Critical Strikes with this Weapon do not deal extra Damage", statOrder = { 1490 }, level = 1, group = "LocalCriticalStrikesDealNoDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [1508661598] = { "Critical Strikes with this Weapon do not deal extra Damage" }, } }, - ["IncreasedManaRegenerationWhileStationaryUnique__1"] = { affix = "", "60% increased Mana Regeneration Rate while stationary", statOrder = { 4316 }, level = 1, group = "IncreasedManaRegenerationWhileStationary", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [3308030688] = { "60% increased Mana Regeneration Rate while stationary" }, } }, - ["AddedArmourWhileStationaryUnique__1"] = { affix = "", "+1500 Armour while stationary", statOrder = { 4314 }, level = 1, group = "AddedArmourWhileStationary", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [2551779822] = { "+1500 Armour while stationary" }, } }, - ["SpreadChilledGroundWhenHitByAttackUnique__1"] = { affix = "", "15% chance to create Chilled Ground when Hit with an Attack", statOrder = { 5774 }, level = 1, group = "SpreadChilledGroundWhenHitByAttack", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [358040686] = { "15% chance to create Chilled Ground when Hit with an Attack" }, } }, - ["NonCriticalStrikesDealNoDamageUnique__1"] = { affix = "", "Non-Critical Strikes deal no Damage", statOrder = { 9492 }, level = 1, group = "NonCriticalStrikesDealNoDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2511969244] = { "Non-Critical Strikes deal no Damage" }, } }, - ["NonCriticalStrikesDealNoDamageUnique__2"] = { affix = "", "Non-Critical Strikes deal no Damage", statOrder = { 9492 }, level = 1, group = "NonCriticalStrikesDealNoDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2511969244] = { "Non-Critical Strikes deal no Damage" }, } }, - ["CritMultiIfDealtNonCritRecentlyUnique__1"] = { affix = "", "+25% to Critical Strike Multiplier if you've dealt a Non-Critical Strike Recently", statOrder = { 5948 }, level = 1, group = "CritMultiIfDealtNonCritRecently", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [1626712767] = { "+25% to Critical Strike Multiplier if you've dealt a Non-Critical Strike Recently" }, } }, - ["CritMultiIfDealtNonCritRecentlyUnique__2"] = { affix = "", "+60% to Critical Strike Multiplier if you've dealt a Non-Critical Strike Recently", statOrder = { 5948 }, level = 1, group = "CritMultiIfDealtNonCritRecently", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [1626712767] = { "+60% to Critical Strike Multiplier if you've dealt a Non-Critical Strike Recently" }, } }, - ["EnemiesDestroyedOnKillUnique__1"] = { affix = "", "Enemies Killed by your Hits are destroyed", statOrder = { 6376 }, level = 1, group = "EnemiesDestroyedOnKill", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2970902024] = { "Enemies Killed by your Hits are destroyed" }, } }, - ["RecoverPercentMaxLifeOnKillUnique__1"] = { affix = "", "Recover 5% of Life on Kill", statOrder = { 1749 }, level = 1, group = "RecoverPercentMaxLifeOnKill", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2023107756] = { "Recover 5% of Life on Kill" }, } }, - ["RecoverPercentMaxLifeOnKillUnique__2"] = { affix = "", "Recover 5% of Life on Kill", statOrder = { 1749 }, level = 1, group = "RecoverPercentMaxLifeOnKill", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2023107756] = { "Recover 5% of Life on Kill" }, } }, - ["RecoverPercentMaxLifeOnKillUnique__3"] = { affix = "", "Recover 1% of Life on Kill", statOrder = { 1749 }, level = 1, group = "RecoverPercentMaxLifeOnKill", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2023107756] = { "Recover 1% of Life on Kill" }, } }, - ["CriticalMultiplierPerBlockChanceUnique__1"] = { affix = "", "+1% to Critical Strike Multiplier per 1% Chance to Block Attack Damage", statOrder = { 3189 }, level = 1, group = "CriticalMultiplierPerBlockChance", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [956384511] = { "+1% to Critical Strike Multiplier per 1% Chance to Block Attack Damage" }, } }, - ["AttackDamagePerLowestArmourOrEvasionUnique__1"] = { affix = "", "1% increased Attack Damage per 200 of the lowest of Armour and Evasion Rating", statOrder = { 4855 }, level = 98, group = "AttackDamagePerLowestArmourOrEvasion", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [1358422215] = { "1% increased Attack Damage per 200 of the lowest of Armour and Evasion Rating" }, } }, - ["FortifyOnMeleeStunUnique__1"] = { affix = "", "Melee Hits which Stun Fortify", statOrder = { 5678 }, level = 1, group = "FortifyOnMeleeStun", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3206381437] = { "Melee Hits which Stun Fortify" }, } }, - ["OnslaughtWhileFortifiedUnique__1"] = { affix = "", "You have Onslaught while Fortified", statOrder = { 6793 }, level = 1, group = "OnslaughtWhileFortified", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1493590317] = { "You have Onslaught while Fortified" }, } }, - ["ItemStatsDoubledInBreachImplicit"] = { affix = "", "Properties are doubled while in a Breach", statOrder = { 7953 }, level = 1, group = "StatsDoubledInBreach", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [202275580] = { "Properties are doubled while in a Breach" }, } }, - ["SummonSpidersOnKillUnique__1"] = { affix = "", "100% chance to Trigger Level 1 Raise Spiders on Kill", statOrder = { 782 }, level = 1, group = "GrantsSpiderMinion", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [3844016207] = { "100% chance to Trigger Level 1 Raise Spiders on Kill" }, } }, - ["CannotCastSpellsUnique__1"] = { affix = "", "Cannot Cast Spells", statOrder = { 5429 }, level = 1, group = "CannotCastSpells", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHashes = { [3965442551] = { "Cannot Cast Spells" }, } }, - ["CannotDealSpellDamageUnique__1"] = { affix = "", "Spell Skills deal no Damage", statOrder = { 10167 }, level = 1, group = "CannotDealSpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [291644318] = { "Spell Skills deal no Damage" }, } }, - ["GoatHoofFootprintsUnique__1"] = { affix = "", "Burning Hoofprints", statOrder = { 10858 }, level = 1, group = "GoatHoofFootprints", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3576153145] = { "Burning Hoofprints" }, } }, - ["FireDamagePerStrengthUnique__1"] = { affix = "", "1% increased Fire Damage per 20 Strength", statOrder = { 6564 }, level = 1, group = "FireDamagePerStrength", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2241902512] = { "1% increased Fire Damage per 20 Strength" }, } }, - ["MaximumLifeConvertedToEnergyShieldUnique__1"] = { affix = "", "20% of Maximum Life Converted to Energy Shield", statOrder = { 9162 }, level = 75, group = "MaximumLifeConvertedToEnergyShield", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "defences", "energy_shield" }, tradeHashes = { [2458962764] = { "20% of Maximum Life Converted to Energy Shield" }, } }, - ["MaximumLifeConvertedToEnergyShieldUnique__2"] = { affix = "", "50% of Maximum Life Converted to Energy Shield", statOrder = { 9162 }, level = 1, group = "MaximumLifeConvertedToEnergyShield", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "defences", "energy_shield" }, tradeHashes = { [2458962764] = { "50% of Maximum Life Converted to Energy Shield" }, } }, - ["LocalChanceToPoisonOnHitUnique__1"] = { affix = "", "15% chance to Poison on Hit", statOrder = { 8003 }, level = 1, group = "LocalChanceToPoisonOnHit", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "attack", "ailment" }, tradeHashes = { [3885634897] = { "15% chance to Poison on Hit" }, } }, - ["LocalChanceToPoisonOnHitUnique__2"] = { affix = "", "60% chance to Poison on Hit", statOrder = { 8003 }, level = 1, group = "LocalChanceToPoisonOnHit", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "attack", "ailment" }, tradeHashes = { [3885634897] = { "60% chance to Poison on Hit" }, } }, - ["LocalChanceToPoisonOnHitUnique__3"] = { affix = "", "20% chance to Poison on Hit", statOrder = { 8003 }, level = 1, group = "LocalChanceToPoisonOnHit", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "attack", "ailment" }, tradeHashes = { [3885634897] = { "20% chance to Poison on Hit" }, } }, - ["LocalChanceToPoisonOnHitUnique__4"] = { affix = "", "20% chance to Poison on Hit", statOrder = { 8003 }, level = 1, group = "LocalChanceToPoisonOnHit", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "attack", "ailment" }, tradeHashes = { [3885634897] = { "20% chance to Poison on Hit" }, } }, - ["ChanceToPoisonUnique__1_______"] = { affix = "", "25% chance to Poison on Hit", statOrder = { 3173 }, level = 1, group = "PoisonOnHit", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [795138349] = { "25% chance to Poison on Hit" }, } }, - ["IncreasedSpellDamageWhileShockedUnique__1"] = { affix = "", "50% increased Spell Damage while Shocked", statOrder = { 10159 }, level = 1, group = "IncreasedSpellDamageWhileShocked", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2088288068] = { "50% increased Spell Damage while Shocked" }, } }, - ["MaximumResistanceWithNoEnduranceChargesUnique__1__"] = { affix = "", "+2% to all maximum Resistances while you have no Endurance Charges", statOrder = { 4566 }, level = 1, group = "MaximumResistanceWithNoEnduranceCharges", weightKey = { }, weightVal = { }, modTags = { "resistance" }, tradeHashes = { [3635566977] = { "+2% to all maximum Resistances while you have no Endurance Charges" }, } }, - ["OnslaughtWithMaxEnduranceChargesUnique__1"] = { affix = "", "You have Onslaught while at maximum Endurance Charges", statOrder = { 6789 }, level = 1, group = "OnslaughtWithMaxEnduranceCharges", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3101915418] = { "You have Onslaught while at maximum Endurance Charges" }, } }, - ["MinionsGainYourStrengthUnique__1"] = { affix = "", "Half of your Strength is added to your Minions", statOrder = { 9354 }, level = 1, group = "MinionsGainYourStrength", weightKey = { }, weightVal = { }, modTags = { "minion", "attribute" }, tradeHashes = { [2195137717] = { "Half of your Strength is added to your Minions" }, } }, - ["AdditionalZombiesPerXStrengthUnique__1"] = { affix = "", "+1 to maximum number of Raised Zombies per 500 Strength", statOrder = { 9541 }, level = 1, group = "AdditionalZombiesPerXStrength", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [4056985119] = { "+1 to maximum number of Raised Zombies per 500 Strength" }, } }, - ["ZombiesLeechLifeToYouAt1000StrengthUnique__1"] = { affix = "", "With at least 1000 Strength, (1.5-2)% of Damage dealt by your Raised Zombies is Leeched to you as Life", statOrder = { 10755 }, level = 1, group = "ZombiesLeechLifeToYouAt1000Strength", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, tradeHashes = { [2802263253] = { "With at least 1000 Strength, (1.5-2)% of Damage dealt by your Raised Zombies is Leeched to you as Life" }, } }, - ["ReducedBleedDurationUnique__1_"] = { affix = "", "25% reduced Bleeding Duration", statOrder = { 4994 }, level = 1, group = "BleedDuration", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1459321413] = { "25% reduced Bleeding Duration" }, } }, - ["IncreasedRarityPerRampageStacksUnique__1"] = { affix = "", "1% increased Rarity of Items found per 15 Rampage Kills", statOrder = { 7306 }, level = 38, group = "IncreasedRarityPerRampageStacks", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [4260403588] = { "1% increased Rarity of Items found per 15 Rampage Kills" }, } }, - ["ImmuneToBurningShockedChilledGroundUnique__1"] = { affix = "", "Immune to Burning Ground, Shocked Ground and Chilled Ground", statOrder = { 7218 }, level = 1, group = "ImmuneToBurningShockedChilledGround", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [3705740723] = { "Immune to Burning Ground, Shocked Ground and Chilled Ground" }, } }, - ["MaximumLifePer10DexterityUnique__1"] = { affix = "", "+2 to Maximum Life per 10 Dexterity", statOrder = { 9156 }, level = 1, group = "FlatLifePer10Dexterity", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3806100539] = { "+2 to Maximum Life per 10 Dexterity" }, } }, - ["LifeRegenerationWhileMovingUnique__1"] = { affix = "", "Regenerate 100 Life per second while moving", statOrder = { 7407 }, level = 1, group = "LifeRegenerationWhileMoving", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2841027131] = { "Regenerate 100 Life per second while moving" }, } }, - ["SpellsAreDisabledUnique__1"] = { affix = "", "Your Spells are disabled", statOrder = { 10697 }, level = 1, group = "SpellsAreDisabled", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHashes = { [1981749265] = { "Your Spells are disabled" }, } }, - ["MaximumLifePerItemRarityUnique__1"] = { affix = "", "+1 Life per 2% increased Rarity of Items found", statOrder = { 9158 }, level = 1, group = "MaxLifePerItemRarity", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [1457265483] = { "+1 Life per 2% increased Rarity of Items found" }, } }, - ["PercentDamagePerItemQuantityUnique__1"] = { affix = "", "Your Increases and Reductions to Quantity of Items found also apply to Damage", statOrder = { 6060 }, level = 1, group = "PercentDamagePerItemQuantity", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2675627948] = { "Your Increases and Reductions to Quantity of Items found also apply to Damage" }, } }, - ["ItemQuantityPerChestOpenedRecentlyUnique__1"] = { affix = "", "2% increased Quantity of Items found per Chest opened Recently", statOrder = { 7305 }, level = 1, group = "ItemQuantityPerChestOpenedRecently", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3729758391] = { "2% increased Quantity of Items found per Chest opened Recently" }, } }, - ["MovementSpeedPerChestOpenedRecentlyUnique__1"] = { affix = "", "2% reduced Movement Speed per Chest opened Recently", statOrder = { 9425 }, level = 1, group = "MovementSpeedPerChestOpenedRecently", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [718844908] = { "2% reduced Movement Speed per Chest opened Recently" }, } }, - ["WarcryKnockbackUnique__1"] = { affix = "", "Warcries Knock Back and Interrupt Enemies in a smaller Area", statOrder = { 10566 }, level = 1, group = "WarcryKnockback", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [519622288] = { "Warcries Knock Back and Interrupt Enemies in a smaller Area" }, } }, - ["AttackAndCastSpeedOnUsingMovementSkillUnique__1"] = { affix = "", "15% increased Attack and Cast Speed if you've used a Movement Skill Recently", statOrder = { 3473 }, level = 1, group = "AttackAndCastSpeedOnUsingMovementSkill", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed" }, tradeHashes = { [2831922878] = { "15% increased Attack and Cast Speed if you've used a Movement Skill Recently" }, } }, - ["CannotBeSlowedBelowBaseUnique__1"] = { affix = "", "Action Speed cannot be modified to below Base Value", statOrder = { 3194 }, level = 1, group = "CannotBeSlowedBelowBase", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [628716294] = { "Action Speed cannot be modified to below Base Value" }, } }, - ["MovementCannotBeSlowedBelowBaseUnique__1"] = { affix = "", "Movement Speed cannot be modified to below Base Value", statOrder = { 3196 }, level = 1, group = "MovementCannotBeSlowedBelowBase", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [3875592188] = { "Movement Speed cannot be modified to below Base Value" }, } }, - ["EnergyShieldStartsAtZero"] = { affix = "", "Your Energy Shield starts at zero", statOrder = { 10816 }, level = 1, group = "EnergyShieldStartsAtZero", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2342431054] = { "Your Energy Shield starts at zero" }, } }, - ["SocketedGemsSupportedByEnduranceChargeOnStunUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 20 Endurance Charge on Melee Stun", statOrder = { 526 }, level = 1, group = "DisplaySupportedByEnduranceChargeOnStun", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [3375208082] = { "Socketed Gems are Supported by Level 20 Endurance Charge on Melee Stun" }, } }, - ["DisplayGrantsVengeanceUnique__1"] = { affix = "", "Grants Level 15 Battlemage's Cry Skill", statOrder = { 689 }, level = 1, group = "BattlemagesCry", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [2356594418] = { "Grants Level 15 Battlemage's Cry Skill" }, } }, - ["CannotLeechLifeUnique__1"] = { affix = "", "Cannot Leech Life", statOrder = { 2567 }, level = 1, group = "CannotLeechLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3769854701] = { "Cannot Leech Life" }, } }, - ["AllResistanceAt200StrengthUnique__1"] = { affix = "", "+(20-25)% to all Elemental Resistances while you have at least 200 Strength", statOrder = { 4362 }, level = 1, group = "AllResistanceAt200Strength", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2415398184] = { "+(20-25)% to all Elemental Resistances while you have at least 200 Strength" }, } }, - ["LifeRegenerationAt400StrengthUnique__1"] = { affix = "", "Regenerate 2% of Life per second with at least 400 Strength", statOrder = { 7428 }, level = 1, group = "LifeRegenerationAt400Strength", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [1173027373] = { "Regenerate 2% of Life per second with at least 400 Strength" }, } }, - ["LifeRegenerationIfHitRecentlyUnique__1"] = { affix = "", "Regenerate 2% of Life per second if you have been Hit Recently", statOrder = { 7416 }, level = 1, group = "LifeRegenerationIfHitRecently", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2201614328] = { "Regenerate 2% of Life per second if you have been Hit Recently" }, } }, - ["AttackBlockIfBlockedSpellRecentlyUnique__1_"] = { affix = "", "+100% Chance to Block Attack Damage if you have Blocked Spell Damage Recently", statOrder = { 4837 }, level = 1, group = "AttackBlockIfBlockedSpellRecently", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [647983250] = { "+100% Chance to Block Attack Damage if you have Blocked Spell Damage Recently" }, } }, - ["SpellBlockIfBlockedAttackRecentlyUnique__1"] = { affix = "", "+100% chance to Block Spell Damage if you have Blocked Attack Damage Recently", statOrder = { 10135 }, level = 1, group = "SpellBlockIfBlockedAttackRecently", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [1214153650] = { "+100% chance to Block Spell Damage if you have Blocked Attack Damage Recently" }, } }, - ["AddedChaosDamageWhileUsingAFlaskUnique__1_"] = { affix = "", "Adds (30-40) to (50-60) Chaos Damage to Spells and Attacks during any Flask Effect", statOrder = { 10128 }, level = 1, group = "AddedChaosDamageWhileUsingAFlask", weightKey = { }, weightVal = { }, modTags = { "flask", "caster_damage", "chaos_damage", "damage", "chaos", "attack", "caster" }, tradeHashes = { [3519268108] = { "Adds (30-40) to (50-60) Chaos Damage to Spells and Attacks during any Flask Effect" }, } }, - ["AddedChaosDamageWhileUsingAFlaskUnique__2"] = { affix = "", "Adds (30-40) to (50-60) Chaos Damage to Spells and Attacks during any Flask Effect", statOrder = { 10128 }, level = 1, group = "AddedChaosDamageWhileUsingAFlask", weightKey = { }, weightVal = { }, modTags = { "flask", "caster_damage", "chaos_damage", "damage", "chaos", "attack", "caster" }, tradeHashes = { [3519268108] = { "Adds (30-40) to (50-60) Chaos Damage to Spells and Attacks during any Flask Effect" }, } }, - ["GainPowerChargesOnUsingWarcryUnique__1"] = { affix = "", "Gain 2 Power Charges when you Warcry", statOrder = { 6705 }, level = 1, group = "GainPowerChargesOnUsingWarcry", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [4118945608] = { "Gain 2 Power Charges when you Warcry" }, } }, - ["AttackLeechAgainstTauntedEnemyUnique__1"] = { affix = "", "2% of Attack Damage Leeched as Life against Taunted Enemies", statOrder = { 7368 }, level = 1, group = "AttackLeechAgainstTauntedEnemy", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHashes = { [3750917270] = { "2% of Attack Damage Leeched as Life against Taunted Enemies" }, } }, - ["WarcryCooldownSpeedUnique__1"] = { affix = "", "50% increased Warcry Cooldown Recovery Rate", statOrder = { 3329 }, level = 1, group = "WarcryCooldownSpeed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4159248054] = { "50% increased Warcry Cooldown Recovery Rate" }, } }, - ["WarcryCooldownSpeedUnique__2"] = { affix = "", "50% increased Warcry Cooldown Recovery Rate", statOrder = { 3329 }, level = 1, group = "WarcryCooldownSpeed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4159248054] = { "50% increased Warcry Cooldown Recovery Rate" }, } }, - ["WarcryEffectUnique__1"] = { affix = "", "25% increased Warcry Buff Effect", statOrder = { 10567 }, level = 1, group = "WarcryEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3037553757] = { "25% increased Warcry Buff Effect" }, } }, - ["WarcryEffectUnique__2"] = { affix = "", "25% increased Warcry Buff Effect", statOrder = { 10567 }, level = 1, group = "WarcryEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3037553757] = { "25% increased Warcry Buff Effect" }, } }, - ["OnslaughtOnUsingWarcryUnique__1"] = { affix = "", "Gain Onslaught for 4 seconds when you Warcry", statOrder = { 6784 }, level = 1, group = "OnslaughtOnUsingWarcry", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3049436415] = { "Gain Onslaught for 4 seconds when you Warcry" }, } }, - ["AddedColdDamageAgainstFrozenEnemiesUnique__1"] = { affix = "", "Adds 40 to 60 Cold Damage against Chilled Enemies", statOrder = { 9233 }, level = 1, group = "AddedColdDamageAgainstFrozenEnemies", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3734640451] = { "Adds 40 to 60 Cold Damage against Chilled Enemies" }, } }, - ["AddedColdDamageAgainstFrozenEnemiesUnique__2"] = { affix = "", "Adds 60 to 80 Cold Damage against Chilled Enemies", statOrder = { 9233 }, level = 1, group = "AddedColdDamageAgainstFrozenEnemies", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3734640451] = { "Adds 60 to 80 Cold Damage against Chilled Enemies" }, } }, - ["CannotBeShockedWhileChilledUnique__1"] = { affix = "", "100% chance to Avoid being Shocked while Chilled", statOrder = { 4952 }, level = 1, group = "AvoidShockWhileChilled", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3981960937] = { "100% chance to Avoid being Shocked while Chilled" }, } }, - ["ChanceToShockChilledEnemiesUnique__1"] = { affix = "", "50% chance to Shock Chilled Enemies", statOrder = { 5721 }, level = 1, group = "ChanceToShockChilledEnemies", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [4069101408] = { "50% chance to Shock Chilled Enemies" }, } }, - ["AvoidFreezeAndChillIfFireSkillUsedRecentlyUnique__1"] = { affix = "", "100% chance to Avoid being Chilled or Frozen if you have used a Fire Skill Recently", statOrder = { 4945 }, level = 1, group = "AvoidFreezeAndChillIfFireSkillUsedRecently", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3706656107] = { "100% chance to Avoid being Chilled or Frozen if you have used a Fire Skill Recently" }, } }, - ["HeraldOfThunderBuffEffectUnique__1"] = { affix = "", "Herald of Thunder has 50% increased Buff Effect", statOrder = { 7126 }, level = 1, group = "HeraldOfThunderBuffEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3814686091] = { "Herald of Thunder has 50% increased Buff Effect" }, } }, - ["LifeRegenerationPerLevelUnique__1"] = { affix = "", "Regenerate 3 Life per second per Level", statOrder = { 2961 }, level = 1, group = "LifeRegenerationPerLevel", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [1384864963] = { "Regenerate 3 Life per second per Level" }, } }, - ["TotemLeechLifeToYouUnique__1"] = { affix = "", "0.5% of Damage dealt by your Totems is Leeched to you as Life", statOrder = { 4237 }, level = 1, group = "TotemLeechLifeToYou", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3812562802] = { "0.5% of Damage dealt by your Totems is Leeched to you as Life" }, } }, - ["TriggeredConsecrateUnique__1"] = { affix = "", "Trigger Level 10 Consecrate when you deal a Critical Strike", statOrder = { 675 }, level = 1, group = "TriggeredConsecrate", weightKey = { }, weightVal = { }, modTags = { "skill", "critical" }, tradeHashes = { [899293871] = { "Trigger Level 10 Consecrate when you deal a Critical Strike" }, } }, - ["HallowOnHitVsConsecratedEnemyUnique__1"] = { affix = "", "Inflict Hallowing Flame on Hit while on Consecrated Ground", statOrder = { 7278 }, level = 1, group = "HallowOnHitVsConsecratedEnemy", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire" }, tradeHashes = { [3087629547] = { "Inflict Hallowing Flame on Hit while on Consecrated Ground" }, } }, - ["IncreasedDamageOnConsecratedGroundUnique__1"] = { affix = "", "50% increased Damage while on Consecrated Ground", statOrder = { 3552 }, level = 1, group = "IncreasedDamageOnConsecratedGround", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [1704905020] = { "50% increased Damage while on Consecrated Ground" }, } }, - ["BlockChanceOnConsecratedGroundUnique__1"] = { affix = "", "+5% Chance to Block Attack Damage while on Consecrated Ground", statOrder = { 4545 }, level = 1, group = "BlockChanceOnConsecratedGround", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [3865999868] = { "+5% Chance to Block Attack Damage while on Consecrated Ground" }, } }, - ["ChillEnemiesOnHitWithWeaponUnique__1"] = { affix = "", "Chill Enemies for 1 second on Hit with this Weapon when in Off Hand", statOrder = { 7877 }, level = 1, group = "ChillEnemiesOnHitWithWeapon", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "attack", "ailment" }, tradeHashes = { [1488891279] = { "Chill Enemies for 1 second on Hit with this Weapon when in Off Hand" }, } }, - ["SupportFlatAddedFireDamageUnique__1"] = { affix = "", "Socketed Gems deal 63 to 94 Added Fire Damage", statOrder = { 556 }, level = 1, group = "SupportFlatAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [1289910726] = { "Socketed Gems deal 63 to 94 Added Fire Damage" }, } }, - ["PhysicalDamageToAttacksPerLevelUnique__1_"] = { affix = "", "Adds 1 to 2 Physical Damage to Attacks per Level", statOrder = { 4876 }, level = 1, group = "PhysicalDamageToAttacksPerLevel", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3821472155] = { "Adds 1 to 2 Physical Damage to Attacks per Level" }, } }, - ["PhysicalDamageToAttacksPerLevelUnique__2"] = { affix = "", "Adds 2 to 3 Physical Damage to Attacks per Level", statOrder = { 4876 }, level = 1, group = "PhysicalDamageToAttacksPerLevel", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3821472155] = { "Adds 2 to 3 Physical Damage to Attacks per Level" }, } }, - ["RightRingSlotMaximumManaUnique__1"] = { affix = "", "Right ring slot: +250 to maximum Mana", statOrder = { 2650 }, level = 1, group = "RightRingSlotMaximumMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [417509375] = { "Right ring slot: +250 to maximum Mana" }, } }, - ["LeftRingSlotMaximumEnergyShieldUnique__1"] = { affix = "", "Left ring slot: +250 to maximum Energy Shield", statOrder = { 2671 }, level = 1, group = "LeftRingSlotMaximumEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1497601437] = { "Left ring slot: +250 to maximum Energy Shield" }, } }, - ["LeftRingSlotFlatManaRegenerationUnique__1"] = { affix = "", "Left ring slot: Regenerate 40 Mana per Second", statOrder = { 2659 }, level = 1, group = "LeftRingSlotFlatManaRegen", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [3241234878] = { "Left ring slot: Regenerate 40 Mana per Second" }, } }, - ["NearbyEnemiesAreIntimidatedUnique__1"] = { affix = "", "Nearby Enemies are Intimidated", statOrder = { 7909 }, level = 1, group = "NearbyEnemiesAreIntimidated", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2877479250] = { "" }, [2899095498] = { "Nearby Enemies are Intimidated" }, } }, - ["NearbyAlliesMovementVelocityUnique__1"] = { affix = "", "10% increased Movement Speed for you and nearby Allies", statOrder = { 7901 }, level = 1, group = "NearbyAlliesMovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [3410049114] = { "10% increased Movement Speed for you and nearby Allies" }, [2250533757] = { "10% increased Movement Speed" }, } }, - ["WeaponElementalPenetrationUnique__1"] = { affix = "", "Damage with Weapons Penetrates 5% Elemental Resistances", statOrder = { 3599 }, level = 1, group = "WeaponElementalPenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [1736172673] = { "Damage with Weapons Penetrates 5% Elemental Resistances" }, } }, - ["ElementalPenetrationUnique__1"] = { affix = "", "Damage Penetrates (0-20)% Elemental Resistances", statOrder = { 2980 }, level = 1, group = "ElementalPenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [2101383955] = { "Damage Penetrates (0-20)% Elemental Resistances" }, } }, - ["IncreasedElementalDamageIfUsedWarcryRecentlyUnique__1"] = { affix = "", "150% increased Elemental Damage if you've Warcried Recently", statOrder = { 6304 }, level = 1, group = "IncreasedElementalDamageIfUsedWarcryRecently", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [2803182108] = { "150% increased Elemental Damage if you've Warcried Recently" }, } }, - ["TriggeredAnimateWeaponUnique__1"] = { affix = "", "25% chance to Trigger Level 20 Animate Weapon on Kill", statOrder = { 766 }, level = 1, group = "TriggeredAnimateWeapon", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [1973890509] = { "25% chance to Trigger Level 20 Animate Weapon on Kill" }, } }, - ["AddedFireDamagePerStrengthUnique__1"] = { affix = "", "Adds 4 to 7 Fire Damage to Attacks with this Weapon per 10 Strength", statOrder = { 4869 }, level = 1, group = "AddedFireDamagePerStrength", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1060540099] = { "Adds 4 to 7 Fire Damage to Attacks with this Weapon per 10 Strength" }, } }, - ["LocalGolemBuffEffectUnique__1"] = { affix = "", "25% increased Effect of Buffs granted by Socketed Golem Skills", statOrder = { 198 }, level = 1, group = "LocalGolemBuffEffect", weightKey = { }, weightVal = { }, modTags = { "skill", "gem" }, tradeHashes = { [2813516522] = { "25% increased Effect of Buffs granted by Socketed Golem Skills" }, } }, - ["LocalGolemLifeAddedAsESUnique__1"] = { affix = "", "Socketed Golem Skills gain 20% of Maximum Life as Extra Maximum Energy Shield", statOrder = { 202 }, level = 1, group = "LocalGolemLifeAddedAsES", weightKey = { }, weightVal = { }, modTags = { "skill", "resource", "life", "defences", "energy_shield", "minion", "gem" }, tradeHashes = { [1199118714] = { "Socketed Golem Skills gain 20% of Maximum Life as Extra Maximum Energy Shield" }, } }, - ["LocalGolemIncreasedAttackAndCastSpeedUnique__1"] = { affix = "", "Socketed Golem Skills have 20% increased Attack and Cast Speed", statOrder = { 197 }, level = 1, group = "LocalGolemIncreasedAttackAndCastSpeed", weightKey = { }, weightVal = { }, modTags = { "skill", "attack", "caster", "speed", "minion", "gem" }, tradeHashes = { [706212417] = { "Socketed Golem Skills have 20% increased Attack and Cast Speed" }, } }, - ["LocalGolemGrantOnslaughtOnSummonUnique__1"] = { affix = "", "Gain Onslaught for 10 seconds when you Cast Socketed Golem Skill", statOrder = { 201 }, level = 1, group = "LocalGolemGrantsOnslaughtOnSummon", weightKey = { }, weightVal = { }, modTags = { "skill", "gem" }, tradeHashes = { [1693676706] = { "Gain Onslaught for 10 seconds when you Cast Socketed Golem Skill" }, } }, - ["LocalGolemTauntOnHitUnique__1_"] = { affix = "", "Socketed Golem Skills have 25% chance to Taunt on Hit", statOrder = { 199 }, level = 1, group = "LocalGolemTauntOnHit", weightKey = { }, weightVal = { }, modTags = { "skill", "minion", "gem" }, tradeHashes = { [178057093] = { "Socketed Golem Skills have 25% chance to Taunt on Hit" }, } }, - ["LocalGolemLifeRegenerationUnique__1"] = { affix = "", "Socketed Golem Skills have Minions Regenerate 5% of Life per second", statOrder = { 200 }, level = 1, group = "LocalGolemLifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "skill", "resource", "life", "minion", "gem" }, tradeHashes = { [693460617] = { "Socketed Golem Skills have Minions Regenerate 5% of Life per second" }, } }, - ["LocalVaalDamageUnique__1_"] = { affix = "", "Socketed Vaal Skills deal 150% more Damage", statOrder = { 572 }, level = 80, group = "LocalVaalDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "vaal" }, tradeHashes = { [3106951888] = { "Socketed Vaal Skills deal 150% more Damage" }, } }, - ["LocalVaalSoulRequirementUnique__1"] = { affix = "", "Socketed Vaal Skills require 30% less Souls per Use", statOrder = { 581 }, level = 80, group = "LocalVaalSoulRequirement", weightKey = { }, weightVal = { }, modTags = { "vaal" }, tradeHashes = { [2198756560] = { "Socketed Vaal Skills require 30% less Souls per Use" }, } }, - ["LocalVaalUsesToStoreUnique__1"] = { affix = "", "Socketed Vaal Skills have 20% chance to regain consumed Souls when used", statOrder = { 582 }, level = 80, group = "LocalVaalUsesToStore", weightKey = { }, weightVal = { }, modTags = { "vaal" }, tradeHashes = { [207863952] = { "Socketed Vaal Skills have 20% chance to regain consumed Souls when used" }, } }, - ["LocalVaalIgnoreMonsterResistancesUnique__1"] = { affix = "", "Hits from Socketed Vaal Skills ignore Enemy Monster Resistances", statOrder = { 577 }, level = 80, group = "LocalVaalIgnoreMonsterResistances", weightKey = { }, weightVal = { }, modTags = { "vaal" }, tradeHashes = { [2540508981] = { "Hits from Socketed Vaal Skills ignore Enemy Monster Resistances" }, } }, - ["LocalVaalIgnoreMonsterPhysicalReductionUnique__1"] = { affix = "", "Hits from Socketed Vaal Skills ignore Enemy Physical Damage Reduction", statOrder = { 576 }, level = 80, group = "LocalVaalIgnoreMonsterPhysicalReduction", weightKey = { }, weightVal = { }, modTags = { "physical", "vaal" }, tradeHashes = { [1388374928] = { "Hits from Socketed Vaal Skills ignore Enemy Physical Damage Reduction" }, } }, - ["LocalVaalElusiveOnUseUnique__1_"] = { affix = "", "Socketed Vaal Skills grant Elusive when Used", statOrder = { 574 }, level = 80, group = "LocalVaalElusiveOnUse", weightKey = { }, weightVal = { }, modTags = { "vaal" }, tradeHashes = { [1831825995] = { "Socketed Vaal Skills grant Elusive when Used" }, } }, - ["LocalVaalTailwindIfUsedRecentlyUnique__1"] = { affix = "", "You have Tailwind if you've used a Socketed Vaal Skill Recently", statOrder = { 585 }, level = 80, group = "LocalVaalTailwindIfUsedRecently", weightKey = { }, weightVal = { }, modTags = { "vaal" }, tradeHashes = { [1678234826] = { "You have Tailwind if you've used a Socketed Vaal Skill Recently" }, } }, - ["LocalVaalAreaOfEffectUnique__1"] = { affix = "", "Socketed Vaal Skills have 60% increased Area of Effect", statOrder = { 570 }, level = 80, group = "LocalVaalAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "vaal" }, tradeHashes = { [2505291583] = { "Socketed Vaal Skills have 60% increased Area of Effect" }, } }, - ["LocalVaalProjectileSpeedUnique__1"] = { affix = "", "Socketed Vaal Skills have 80% increased Projectile Speed", statOrder = { 579 }, level = 80, group = "LocalVaalProjectileSpeed", weightKey = { }, weightVal = { }, modTags = { "speed", "vaal" }, tradeHashes = { [2237174578] = { "Socketed Vaal Skills have 80% increased Projectile Speed" }, } }, - ["LocalVaalSkillEffectDurationUnique__1"] = { affix = "", "Socketed Vaal Skills have 80% increased Skill Effect Duration", statOrder = { 573 }, level = 80, group = "LocalVaalSkillEffectDuration", weightKey = { }, weightVal = { }, modTags = { "vaal" }, tradeHashes = { [476204410] = { "Socketed Vaal Skills have 80% increased Skill Effect Duration" }, } }, - ["LocalVaalSoulGainPreventionUnique__1"] = { affix = "", "Socketed Vaal Skills have 30% reduced Soul Gain Prevention Duration", statOrder = { 580 }, level = 80, group = "LocalVaalSoulGainPrevention", weightKey = { }, weightVal = { }, modTags = { "vaal" }, tradeHashes = { [2599305231] = { "Socketed Vaal Skills have 30% reduced Soul Gain Prevention Duration" }, } }, - ["LocalVaalLuckyDamageUnique__1"] = { affix = "", "Damage with Hits from Socketed Vaal Skills is Lucky", statOrder = { 575 }, level = 80, group = "LocalVaalLuckyDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "vaal" }, tradeHashes = { [1274200851] = { "Damage with Hits from Socketed Vaal Skills is Lucky" }, } }, - ["LocalVaalAuraEffectUnique__1"] = { affix = "", "Socketed Vaal Skills have 50% increased Aura Effect", statOrder = { 571 }, level = 80, group = "LocalVaalAuraEffect", weightKey = { }, weightVal = { }, modTags = { "aura", "vaal" }, tradeHashes = { [2932121832] = { "Socketed Vaal Skills have 50% increased Aura Effect" }, } }, - ["IncreasedFireDamgeIfHitRecentlyUnique__1"] = { affix = "", "100% increased Fire Damage", statOrder = { 1357 }, level = 1, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "100% increased Fire Damage" }, } }, - ["ImmuneToFreezeAndChillWhileIgnitedUnique__1"] = { affix = "", "Immune to Freeze and Chill while Ignited", statOrder = { 7230 }, level = 1, group = "ImmuneToFreezeAndChillWhileIgnited", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1512695141] = { "Immune to Freeze and Chill while Ignited" }, } }, - ["FirePenetrationIfBlockedRecentlyUnique__1"] = { affix = "", "Damage Penetrates 15% of Fire Resistance if you have Blocked Recently", statOrder = { 6584 }, level = 1, group = "FirePenetrationIfBlockedRecently", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2341811700] = { "Damage Penetrates 15% of Fire Resistance if you have Blocked Recently" }, } }, - ["DisplayGrantsBloodOfferingUnique__1_"] = { affix = "", "Grants Level 15 Blood Offering Skill", statOrder = { 679 }, level = 1, group = "DisplayGrantsBloodOffering", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [3985468650] = { "Grants Level 15 Blood Offering Skill" }, } }, - ["TriggeredSummonLesserShrineUnique__1"] = { affix = "", "Trigger Level 1 Create Lesser Shrine when you Kill an Enemy", statOrder = { 674 }, level = 1, group = "TriggeredSummonLesserShrine", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [1010340836] = { "Trigger Level 1 Create Lesser Shrine when you Kill an Enemy" }, } }, - ["CastLevel1SummonLesserShrineOnKillUnique"] = { affix = "", "(1-100)% chance to Trigger Level 1 Create Lesser Shrine when you Kill an Enemy", statOrder = { 674 }, level = 1, group = "CastLevel1SummonLesserShrineOnKill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [1010340836] = { "(1-100)% chance to Trigger Level 1 Create Lesser Shrine when you Kill an Enemy" }, } }, - ["LifeGainedOnStunUnique__1_"] = { affix = "", "Gain 50 Life when you Stun an Enemy", statOrder = { 6704 }, level = 40, group = "LifeGainedOnStun", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2968301430] = { "Gain 50 Life when you Stun an Enemy" }, } }, - ["RyuslathaMinimumDamageModifierUnique__1"] = { affix = "", "(30-40)% less Minimum Physical Attack Damage", statOrder = { 1200 }, level = 1, group = "RyuslathaMinimumDamageModifier", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1715495976] = { "(30-40)% less Minimum Physical Attack Damage" }, } }, - ["RyuslathaMaximumDamageModifierUnique__1_"] = { affix = "", "(30-40)% more Maximum Physical Attack Damage", statOrder = { 1199 }, level = 1, group = "RyuslathaMaximumDamageModifier", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3029185248] = { "(30-40)% more Maximum Physical Attack Damage" }, } }, - ["AlwaysIgniteWhileBurningUnique__1"] = { affix = "", "You always Ignite while Burning", statOrder = { 4653 }, level = 1, group = "AlwaysIgniteWhileBurning", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [2636728487] = { "You always Ignite while Burning" }, } }, - ["AdditionalBlockWhileNotCursedUnique__1"] = { affix = "", "+10% Chance to Block Attack Damage while not Cursed", statOrder = { 4544 }, level = 1, group = "AdditionalBlockWhileNotCursed", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [3619054484] = { "+10% Chance to Block Attack Damage while not Cursed" }, } }, - ["AdditionalSpellBlockWhileCursedUnique__1"] = { affix = "", "+20% Chance to Block Spell Damage while Cursed", statOrder = { 4590 }, level = 1, group = "AdditionalSpellBlockWhileCursed", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [3218891195] = { "+20% Chance to Block Spell Damage while Cursed" }, } }, - ["LifePerLevelUnique__1"] = { affix = "", "+(1-2) Maximum Life per Level", statOrder = { 7387 }, level = 1, group = "LifePerLevel", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [1982144275] = { "+(1-2) Maximum Life per Level" }, } }, - ["ManaPerLevelUnique__1"] = { affix = "", "+(1-2) Maximum Mana per Level", statOrder = { 8186 }, level = 1, group = "ManaPerLevel", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2563691316] = { "+(1-2) Maximum Mana per Level" }, } }, - ["EnergyShieldPerLevelUnique__1"] = { affix = "", "+(1-2) Maximum Energy Shield per Level", statOrder = { 6442 }, level = 1, group = "EnergyShieldPerLevel", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3864993324] = { "+(1-2) Maximum Energy Shield per Level" }, } }, - ["ChaosDegenAuraUnique__1"] = { affix = "", "Trigger Level 20 Death Aura when Equipped", statOrder = { 662 }, level = 1, group = "ChaosDegenAuraUnique", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [825352061] = { "Trigger Level 20 Death Aura when Equipped" }, } }, - ["SandMirageSkillUnique__1"] = { affix = "", "Grants level 20 Suspend in Time", statOrder = { 7895 }, level = 1, group = "SandMirageSkillUnique", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [3673812491] = { "Grants level 20 Suspend in Time" }, } }, - ["ResentmentFireDegenSkillUnique__1"] = { affix = "", "Trigger Level 20 Cinders when Equipped", statOrder = { 7897 }, level = 1, group = "ResentmentFireDegenSkillUnique", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [4015227054] = { "Trigger Level 20 Cinders when Equipped" }, } }, - ["AnimosityPhysDegenSkillUnique__1"] = { affix = "", "Trigger Level 20 Tears of Rot when Equipped", statOrder = { 7896 }, level = 1, group = "AnimosityPhysDegenSkillUnique", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [1714905437] = { "Trigger Level 20 Tears of Rot when Equipped" }, } }, - ["PhysicalDamageOverTimeMultiplierUnique__1"] = { affix = "", "+(28-35)% to Physical Damage over Time Multiplier", statOrder = { 1247 }, level = 1, group = "PhysicalDamageOverTimeMultiplier", weightKey = { }, weightVal = { }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, tradeHashes = { [1314617696] = { "+(28-35)% to Physical Damage over Time Multiplier" }, } }, - ["FireExposureOnHitVsMaxResentmentStacksUnique__1"] = { affix = "", "Inflict Fire Exposure on Hit against Enemies with", "5 Cinderflame, applying -25% to Fire Resistance", statOrder = { 6581, 6581.1 }, level = 1, group = "FireExposureOnHitVsMaxResentmentStacks", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3403551644] = { "Inflict Fire Exposure on Hit against Enemies with", "5 Cinderflame, applying -25% to Fire Resistance" }, } }, - ["HeraldsAlwaysCost45Unique__1"] = { affix = "", "Mana Reservation of Herald Skills is always 45%", statOrder = { 7106 }, level = 1, group = "HeraldsAlwaysCost45", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [262773569] = { "Mana Reservation of Herald Skills is always 45%" }, } }, - ["StunAvoidancePerHeraldUnique__1"] = { affix = "", "35% chance to avoid being Stunned for each Herald Buff affecting you", statOrder = { 4953 }, level = 1, group = "StunAvoidancePerHerald", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1493090598] = { "35% chance to avoid being Stunned for each Herald Buff affecting you" }, } }, - ["IncreasedDamageIfShockedRecentlyUnique__1"] = { affix = "", "(20-50)% increased Damage if you have Shocked an Enemy Recently", statOrder = { 6051 }, level = 1, group = "IncreasedDamageIfShockedRecently", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [908650225] = { "(20-50)% increased Damage if you have Shocked an Enemy Recently" }, } }, - ["ShockedEnemiesExplodeUnique__1_"] = { affix = "", "Shocked Enemies you Kill Explode, dealing 5% of", "their Life as Lightning Damage which cannot Shock", statOrder = { 10021, 10021.1 }, level = 1, group = "ShockedEnemiesExplode", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2706994884] = { "Shocked Enemies you Kill Explode, dealing 5% of", "their Life as Lightning Damage which cannot Shock" }, } }, - ["UnaffectedByShockUnique__1"] = { affix = "", "Unaffected by Shock", statOrder = { 10478 }, level = 1, group = "UnaffectedByShock", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1473289174] = { "Unaffected by Shock" }, } }, - ["UnaffectedByShockUnique__2"] = { affix = "", "Unaffected by Shock", statOrder = { 10478 }, level = 1, group = "UnaffectedByShock", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1473289174] = { "Unaffected by Shock" }, } }, - ["MinionAttackSpeedPerXDexUnique__1"] = { affix = "", "2% increased Minion Attack Speed per 50 Dexterity", statOrder = { 9276 }, level = 1, group = "MinionAttackSpeedPerXDex", weightKey = { }, weightVal = { }, modTags = { "attack", "speed", "minion" }, tradeHashes = { [4047895119] = { "2% increased Minion Attack Speed per 50 Dexterity" }, } }, - ["MinionMovementSpeedPerXDexUnique__1"] = { affix = "", "2% increased Minion Movement Speed per 50 Dexterity", statOrder = { 9322 }, level = 1, group = "MinionMovementSpeedPerXDex", weightKey = { }, weightVal = { }, modTags = { "speed", "minion" }, tradeHashes = { [4017879067] = { "2% increased Minion Movement Speed per 50 Dexterity" }, } }, - ["MinionHitsOnlyKillIgnitedEnemiesUnique__1"] = { affix = "", "Minions' Hits can only Kill Ignited Enemies", statOrder = { 9364 }, level = 1, group = "MinionHitsOnlyKillIgnitedEnemies", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [1736403946] = { "Minions' Hits can only Kill Ignited Enemies" }, } }, - ["PoisonDamageUnique__1"] = { affix = "", "(40-60)% increased Damage with Poison", statOrder = { 3181 }, level = 1, group = "PoisonDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, tradeHashes = { [1290399200] = { "(40-60)% increased Damage with Poison" }, } }, - ["PoisonDamageUnique__2"] = { affix = "", "(100-150)% increased Damage with Poison", statOrder = { 3181 }, level = 1, group = "PoisonDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, tradeHashes = { [1290399200] = { "(100-150)% increased Damage with Poison" }, } }, - ["BleedDamageUnique__1_"] = { affix = "", "(40-60)% increased Damage with Bleeding", statOrder = { 3169 }, level = 1, group = "BleedingDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, tradeHashes = { [1294118672] = { "(40-60)% increased Damage with Bleeding" }, } }, - ["LocalIncreaseSocketedHeraldLevelUnique__1_"] = { affix = "", "+2 to Level of Socketed Herald Gems", statOrder = { 182 }, level = 1, group = "LocalIncreaseSocketedHeraldLevel", weightKey = { }, weightVal = { }, modTags = { "skill", "gem" }, tradeHashes = { [1344805487] = { "+2 to Level of Socketed Herald Gems" }, } }, - ["LocalIncreaseSocketedHeraldLevelUnique__2"] = { affix = "", "+4 to Level of Socketed Herald Gems", statOrder = { 182 }, level = 1, group = "LocalIncreaseSocketedHeraldLevel", weightKey = { }, weightVal = { }, modTags = { "skill", "gem" }, tradeHashes = { [1344805487] = { "+4 to Level of Socketed Herald Gems" }, } }, - ["IncreasedAreaOfSkillsWithNoFrenzyChargesUnique__1_"] = { affix = "", "15% increased Area of Effect while you have no Frenzy Charges", statOrder = { 2056 }, level = 1, group = "IncreasedAreaOfSkillsWithNoFrenzyCharges", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4180687797] = { "15% increased Area of Effect while you have no Frenzy Charges" }, } }, - ["GlobalCriticalMultiplierWithNoFrenzyChargesUnique__1"] = { affix = "", "+50% Global Critical Strike Multiplier while you have no Frenzy Charges", statOrder = { 2055 }, level = 1, group = "GlobalCriticalMultiplierWithNoFrenzyCharges", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [3062763405] = { "+50% Global Critical Strike Multiplier while you have no Frenzy Charges" }, } }, - ["AccuracyRatingWithMaxFrenzyChargesUnique__1"] = { affix = "", "+(400-500) to Accuracy Rating while at Maximum Frenzy Charges", statOrder = { 4522 }, level = 1, group = "AccuracyRatingWithMaxFrenzyCharges", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [3213407110] = { "+(400-500) to Accuracy Rating while at Maximum Frenzy Charges" }, } }, - ["ReducedAttackSpeedOfMovementSkillsUnique__1"] = { affix = "", "Movement Attack Skills have 40% reduced Attack Speed", statOrder = { 9405 }, level = 1, group = "ReducedAttackSpeedOfMovementSkills", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [1176492594] = { "Movement Attack Skills have 40% reduced Attack Speed" }, } }, - ["IncreasedColdDamageIfUsedFireSkillRecentlyUnique__1"] = { affix = "", "(20-30)% increased Cold Damage if you have used a Fire Skill Recently", statOrder = { 5808 }, level = 1, group = "IncreasedColdDamageIfUsedFireSkillRecently", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3612256591] = { "(20-30)% increased Cold Damage if you have used a Fire Skill Recently" }, } }, - ["IncreasedFireDamageIfUsedColdSkillRecentlyUnique__1"] = { affix = "", "(20-30)% increased Fire Damage if you have used a Cold Skill Recently", statOrder = { 6563 }, level = 1, group = "IncreasedFireDamageIfUsedColdSkillRecently", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [4167600809] = { "(20-30)% increased Fire Damage if you have used a Cold Skill Recently" }, } }, - ["IncreasedDamagePerPowerChargeUnique__1"] = { affix = "", "5% increased Damage per Power Charge", statOrder = { 6066 }, level = 1, group = "IncreasedDamagePerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2034658008] = { "5% increased Damage per Power Charge" }, } }, - ["ChanceToGainMaximumPowerChargesUnique__1_"] = { affix = "", "25% chance that if you would gain Power Charges, you instead gain up to", "your maximum number of Power Charges", statOrder = { 6776, 6776.1 }, level = 1, group = "ChanceToGainMaximumPowerCharges", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [1232004574] = { "25% chance that if you would gain Power Charges, you instead gain up to", "your maximum number of Power Charges" }, } }, - ["FireDamageCanPoisonUnique__1"] = { affix = "", "Your Fire Damage can Poison", statOrder = { 2866 }, level = 1, group = "FireDamageCanPoison", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [1985969957] = { "Your Fire Damage can Poison" }, } }, - ["ColdDamageCanPoisonUnique__1_"] = { affix = "", "Your Cold Damage can Poison", statOrder = { 2865 }, level = 1, group = "ColdDamageCanPoison", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [1917124426] = { "Your Cold Damage can Poison" }, } }, - ["LightningDamageCanPoisonUnique__1"] = { affix = "", "Your Lightning Damage can Poison", statOrder = { 2867 }, level = 1, group = "LightningDamageCanPoison", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [1604984482] = { "Your Lightning Damage can Poison" }, } }, - ["FireSkillsChanceToPoisonUnique__1"] = { affix = "", "Fire Skills have 20% chance to Poison on Hit", statOrder = { 6588 }, level = 1, group = "FireSkillsChanceToPoison", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [2424717327] = { "Fire Skills have 20% chance to Poison on Hit" }, } }, - ["ColdSkillsChanceToPoisonUnique__1"] = { affix = "", "Cold Skills have 20% chance to Poison on Hit", statOrder = { 5837 }, level = 1, group = "ColdSkillsChanceToPoison", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [2373079502] = { "Cold Skills have 20% chance to Poison on Hit" }, } }, - ["LightningSkillsChanceToPoisonUnique__1_"] = { affix = "", "Lightning Skills have 20% chance to Poison on Hit", statOrder = { 7469 }, level = 1, group = "LightningSkillsChanceToPoison", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [949718413] = { "Lightning Skills have 20% chance to Poison on Hit" }, } }, - ["GainManaAsExtraEnergyShieldUnique__1"] = { affix = "", "Gain (10-15)% of Maximum Mana as Extra Maximum Energy Shield", statOrder = { 2175 }, level = 1, group = "GainManaAsExtraEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2663376056] = { "Gain (10-15)% of Maximum Mana as Extra Maximum Energy Shield" }, } }, - ["GrantsTouchOfGodUnique__1"] = { affix = "", "Grants Level 20 Doryani's Touch Skill", statOrder = { 660 }, level = 1, group = "GrantsTouchOfGod", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [2498303876] = { "Grants Level 20 Doryani's Touch Skill" }, } }, - ["AdditionalPhysicalDamageReductionUnique_1UNUSED"] = { affix = "", "(3-5)% additional Physical Damage Reduction", statOrder = { 2273 }, level = 1, group = "ReducedPhysicalDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHashes = { [3771516363] = { "(3-5)% additional Physical Damage Reduction" }, } }, - ["UniqueReducedExtraDamageFromCrits__1"] = { affix = "", "You take (150-200)% reduced Extra Damage from Critical Strikes", statOrder = { 1512 }, level = 1, group = "ReducedExtraDamageFromCrits", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [3855016469] = { "You take (150-200)% reduced Extra Damage from Critical Strikes" }, } }, - ["SpellDamageSuppressedUnique__1"] = { affix = "", "Prevent +(4-6)% of Suppressed Spell Damage", statOrder = { 1141 }, level = 56, group = "SpellDamageSuppressed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4116705863] = { "Prevent +(4-6)% of Suppressed Spell Damage" }, } }, - ["SpellDamageSuppressedUnique__2"] = { affix = "", "-10% to amount of Suppressed Spell Damage Prevented", statOrder = { 1141 }, level = 1, group = "SpellDamageSuppressed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4116705863] = { "-10% to amount of Suppressed Spell Damage Prevented" }, } }, - ["GrantsFrostbiteUnique__1"] = { affix = "", "Grants Level 5 Frostbite Skill", statOrder = { 637 }, level = 1, group = "FrostbiteSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [1169502663] = { "Grants Level 5 Frostbite Skill" }, } }, - ["GrantsSummonBeastRhoaUnique__1"] = { affix = "", "Grants Level 20 Summon Bestial Rhoa Skill", statOrder = { 630 }, level = 1, group = "GrantsSummonBeast", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [2878779644] = { "Grants Level 20 Summon Bestial Rhoa Skill" }, } }, - ["GrantsSummonBeastUrsaUnique__1"] = { affix = "", "Grants Level 20 Summon Bestial Ursa Skill", statOrder = { 630 }, level = 1, group = "GrantsSummonBeast", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [2878779644] = { "Grants Level 20 Summon Bestial Ursa Skill" }, } }, - ["GrantsSummonBeastSnakeUnique__1"] = { affix = "", "Grants Level 20 Summon Bestial Snake Skill", statOrder = { 630 }, level = 1, group = "GrantsSummonBeast", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [2878779644] = { "Grants Level 20 Summon Bestial Snake Skill" }, } }, - ["ChaosResistDoubledUnique__1"] = { affix = "", "Chaos Resistance is doubled", statOrder = { 5740 }, level = 1, group = "ChaosResistDoubled", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [1573646535] = { "Chaos Resistance is doubled" }, } }, - ["PlayerFarShotUnique__1"] = { affix = "", "Far Shot", statOrder = { 10828 }, level = 1, group = "PlayerFarShot", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2483362276] = { "Far Shot" }, } }, - ["MinionSkillManaCostUnique__1_"] = { affix = "", "(10-15)% reduced Mana Cost of Minion Skills", statOrder = { 9332 }, level = 1, group = "MinionSkillManaCost", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "minion" }, tradeHashes = { [2969128501] = { "(10-15)% reduced Mana Cost of Minion Skills" }, } }, - ["MinionSkillManaCostUnique__2"] = { affix = "", "(20-30)% reduced Mana Cost of Minion Skills", statOrder = { 9332 }, level = 1, group = "MinionSkillManaCost", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "minion" }, tradeHashes = { [2969128501] = { "(20-30)% reduced Mana Cost of Minion Skills" }, } }, - ["TriggeredAbyssalCryUnique__1"] = { affix = "", "Trigger Level 1 Intimidating Cry on Hit", statOrder = { 825 }, level = 1, group = "TriggeredAbyssalCry", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [311420892] = { "" }, [1795756125] = { "Trigger Level 1 Intimidating Cry on Hit" }, } }, - ["TriggeredLightningWarpUnique__1__"] = { affix = "", "Trigger Level 15 Lightning Warp on Hit with this Weapon", statOrder = { 748 }, level = 1, group = "TriggeredLightningWarp", weightKey = { }, weightVal = { }, modTags = { "skill", "caster" }, tradeHashes = { [1571803312] = { "" }, [1527893390] = { "Trigger Level 15 Lightning Warp on Hit with this Weapon" }, [311420892] = { "" }, } }, - ["EnergyShieldRechargeStartsWhenStunnedUnique__1"] = { affix = "", "Energy Shield Recharge starts when you are Stunned", statOrder = { 6448 }, level = 1, group = "EnergyShieldRechargeStartsWhenStunned", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [788946728] = { "Energy Shield Recharge starts when you are Stunned" }, } }, - ["TrapCooldownRecoveryUnique__1"] = { affix = "", "(10-15)% increased Cooldown Recovery Rate for throwing Traps", statOrder = { 3461 }, level = 1, group = "TrapCooldownRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3417757416] = { "(10-15)% increased Cooldown Recovery Rate for throwing Traps" }, } }, - ["ReducedExtraDamageFromCritsWithNoPowerChargesUnique__1"] = { affix = "", "You take 50% reduced Extra Damage from Critical Strikes while you have no Power Charges", statOrder = { 6538 }, level = 1, group = "ReducedExtraDamageFromCritsWithNoPowerCharges", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [3544527742] = { "You take 50% reduced Extra Damage from Critical Strikes while you have no Power Charges" }, } }, - ["PhysAddedAsChaosWithMaxPowerChargesUnique__1"] = { affix = "", "Gain (8-12)% of Physical Damage as Extra Chaos Damage while at maximum Power Charges", statOrder = { 3471 }, level = 1, group = "PhysAddedAsChaosWithMaxPowerCharges", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, tradeHashes = { [3492297134] = { "Gain (8-12)% of Physical Damage as Extra Chaos Damage while at maximum Power Charges" }, } }, - ["ScorchingRaySkillUnique__1"] = { affix = "", "Grants Level 25 Scorching Ray Skill", statOrder = { 653 }, level = 1, group = "ScorchingRaySkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [1540840] = { "Grants Level 25 Scorching Ray Skill" }, } }, - ["BlightSkillUnique__1"] = { affix = "", "Grants Level 25 Blight Skill", statOrder = { 657 }, level = 1, group = "BlightSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [1198418726] = { "Grants Level 25 Blight Skill" }, } }, - ["HarbingerSkillOnEquipUnique__1"] = { affix = "", "Grants Summon Harbinger of the Arcane Skill", statOrder = { 633 }, level = 1, group = "HarbingerSkillOnEquip", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [3872739249] = { "Grants Summon Harbinger of the Arcane Skill" }, } }, - ["HarbingerSkillOnEquipUnique__2"] = { affix = "", "Grants Summon Harbinger of Time Skill", statOrder = { 633 }, level = 1, group = "HarbingerSkillOnEquip", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [3872739249] = { "Grants Summon Harbinger of Time Skill" }, } }, - ["HarbingerSkillOnEquipUnique__3"] = { affix = "", "Grants Summon Harbinger of Focus Skill", statOrder = { 633 }, level = 1, group = "HarbingerSkillOnEquip", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [3872739249] = { "Grants Summon Harbinger of Focus Skill" }, } }, - ["HarbingerSkillOnEquipUnique__4_"] = { affix = "", "Grants Summon Harbinger of Directions Skill", statOrder = { 633 }, level = 1, group = "HarbingerSkillOnEquip", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [3872739249] = { "Grants Summon Harbinger of Directions Skill" }, } }, - ["HarbingerSkillOnEquipUnique__5"] = { affix = "", "Grants Summon Harbinger of Storms Skill", statOrder = { 633 }, level = 1, group = "HarbingerSkillOnEquip", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [3872739249] = { "Grants Summon Harbinger of Storms Skill" }, } }, - ["HarbingerSkillOnEquipUnique__6"] = { affix = "", "Grants Summon Harbinger of Brutality Skill", statOrder = { 633 }, level = 1, group = "HarbingerSkillOnEquip", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [3872739249] = { "Grants Summon Harbinger of Brutality Skill" }, } }, - ["HarbingerSkillOnEquipUnique2_1"] = { affix = "", "Grants Summon Greater Harbinger of the Arcane Skill", statOrder = { 633 }, level = 1, group = "HarbingerSkillOnEquip", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [3872739249] = { "Grants Summon Greater Harbinger of the Arcane Skill" }, } }, - ["HarbingerSkillOnEquipUnique2_2"] = { affix = "", "Grants Summon Greater Harbinger of Time Skill", statOrder = { 633 }, level = 1, group = "HarbingerSkillOnEquip", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [3872739249] = { "Grants Summon Greater Harbinger of Time Skill" }, } }, - ["HarbingerSkillOnEquipUnique2__3"] = { affix = "", "Grants Summon Greater Harbinger of Focus Skill", statOrder = { 633 }, level = 1, group = "HarbingerSkillOnEquip", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [3872739249] = { "Grants Summon Greater Harbinger of Focus Skill" }, } }, - ["HarbingerSkillOnEquipUnique2_4"] = { affix = "", "Grants Summon Greater Harbinger of Directions Skill", statOrder = { 633 }, level = 1, group = "HarbingerSkillOnEquip", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [3872739249] = { "Grants Summon Greater Harbinger of Directions Skill" }, } }, - ["HarbingerSkillOnEquipUnique2_5"] = { affix = "", "Grants Summon Greater Harbinger of Storms Skill", statOrder = { 633 }, level = 1, group = "HarbingerSkillOnEquip", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [3872739249] = { "Grants Summon Greater Harbinger of Storms Skill" }, } }, - ["HarbingerSkillOnEquipUnique2_6"] = { affix = "", "Grants Summon Greater Harbinger of Brutality Skill", statOrder = { 633 }, level = 1, group = "HarbingerSkillOnEquip", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [3872739249] = { "Grants Summon Greater Harbinger of Brutality Skill" }, } }, - ["ChannelledSkillDamageUnique__1"] = { affix = "", "Channelling Skills deal (50-70)% increased Damage", statOrder = { 5727 }, level = 1, group = "ChannelledSkillDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2733285506] = { "Channelling Skills deal (50-70)% increased Damage" }, } }, - ["VolkuurLessPoisonDurationUnique__1"] = { affix = "", "50% less Poison Duration", statOrder = { 3171 }, level = 1, group = "VolkuurLessPoisonDuration", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [1237693206] = { "50% less Poison Duration" }, } }, - ["ProjectileAttackCriticalStrikeChanceUnique__1"] = { affix = "", "Projectile Attack Skills have (40-60)% increased Critical Strike Chance", statOrder = { 4317 }, level = 1, group = "ProjectileAttackCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [4095169720] = { "Projectile Attack Skills have (40-60)% increased Critical Strike Chance" }, } }, - ["SupportedByLesserPoisonUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 10 Chance to Poison", statOrder = { 523 }, level = 1, group = "SupportedByLesserPoison", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [228165595] = { "Socketed Gems are Supported by Level 10 Chance to Poison" }, } }, - ["SupportedByVileToxinsUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 20 Vile Toxins", statOrder = { 522 }, level = 1, group = "SupportedByVileToxins", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [1002855537] = { "Socketed Gems are Supported by Level 20 Vile Toxins" }, } }, - ["SupportedByInnervateUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 18 Innervate", statOrder = { 521 }, level = 1, group = "SupportedByInnervate", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [1106668565] = { "Socketed Gems are Supported by Level 18 Innervate" }, } }, - ["SupportedByInnervateUnique__2"] = { affix = "", "Socketed Gems are Supported by Level 15 Innervate", statOrder = { 521 }, level = 1, group = "SupportedByInnervate", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [1106668565] = { "Socketed Gems are Supported by Level 15 Innervate" }, } }, - ["SupportedByIceBiteUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 18 Ice Bite", statOrder = { 512 }, level = 1, group = "SupportedByIceBite", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [1384629003] = { "Socketed Gems are Supported by Level 18 Ice Bite" }, } }, - ["GrantsVoidGazeUnique__1"] = { affix = "", "Trigger Level 10 Void Gaze when you use a Skill", statOrder = { 747 }, level = 1, group = "GrantsVoidGaze", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [1869144397] = { "Trigger Level 10 Void Gaze when you use a Skill" }, } }, - ["AddedChaosDamageVsEnemiesWith5PoisonsUnique__1"] = { affix = "", "Attacks with this Weapon deal 80 to 120 added Chaos Damage against", "Enemies affected by at least 5 Poisons", statOrder = { 9230, 9230.1 }, level = 1, group = "AddedChaosDamageVsEnemiesWith5Poisons", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [3829706447] = { "Attacks with this Weapon deal 80 to 120 added Chaos Damage against", "Enemies affected by at least 5 Poisons" }, } }, - ["PoisonDurationPerPowerChargeUnique__1"] = { affix = "", "3% increased Poison Duration per Power Charge", statOrder = { 9688 }, level = 1, group = "PoisonDurationPerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [3491499175] = { "3% increased Poison Duration per Power Charge" }, } }, - ["PoisonDamagePerFrenzyChargeUnique__1"] = { affix = "", "10% increased Damage with Poison per Frenzy Charge", statOrder = { 9680 }, level = 1, group = "PoisonDamagePerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, tradeHashes = { [1221011086] = { "10% increased Damage with Poison per Frenzy Charge" }, } }, - ["GainFrenzyChargeOnKillVsEnemiesWith5PoisonsUnique__1"] = { affix = "", "(25-30)% chance to gain a Frenzy Charge on Killing an Enemy affected by at least 5 Poisons", statOrder = { 6763 }, level = 1, group = "GainFrenzyChargeOnKillVsEnemiesWith5Poisons", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [496822696] = { "(25-30)% chance to gain a Frenzy Charge on Killing an Enemy affected by at least 5 Poisons" }, } }, - ["GainPowerChargeOnKillVsEnemiesWithLessThan5PoisonsUnique__1"] = { affix = "", "(12-15)% chance to gain a Power Charge on Killing an Enemy affected by fewer than 5 Poisons", statOrder = { 6808 }, level = 1, group = "GainPowerChargeOnKillVsEnemiesWithLessThan5Poisons", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [352612932] = { "(12-15)% chance to gain a Power Charge on Killing an Enemy affected by fewer than 5 Poisons" }, } }, - ["PoisonDurationWithOver150IntelligenceUnique__1"] = { affix = "", "(15-25)% increased Poison Duration if you have at least 150 Intelligence", statOrder = { 9689 }, level = 1, group = "PoisonDurationWithOver150Intelligence", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [2771181375] = { "(15-25)% increased Poison Duration if you have at least 150 Intelligence" }, } }, - ["PoisonDamageWithOver300DexterityUnique__1"] = { affix = "", "(75-100)% increased Damage with Poison if you have at least 300 Dexterity", statOrder = { 9683 }, level = 1, group = "PoisonDamageWithOver300Dexterity", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, tradeHashes = { [256730087] = { "(75-100)% increased Damage with Poison if you have at least 300 Dexterity" }, } }, - ["YouCannotBeHinderedUnique__1"] = { affix = "", "You cannot be Hindered", statOrder = { 10657 }, level = 1, group = "YouCannotBeHindered", weightKey = { }, weightVal = { }, modTags = { "blue_herring" }, tradeHashes = { [721014846] = { "You cannot be Hindered" }, } }, - ["YouCannotBeHinderedUnique__2"] = { affix = "", "You cannot be Hindered", statOrder = { 10657 }, level = 1, group = "YouCannotBeHindered", weightKey = { }, weightVal = { }, modTags = { "blue_herring" }, tradeHashes = { [721014846] = { "You cannot be Hindered" }, } }, - ["LocalMaimOnHitChanceUnique__1"] = { affix = "", "(15-20)% chance to Maim on Hit", statOrder = { 7989 }, level = 1, group = "LocalMaimOnHitChance", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2763429652] = { "(15-20)% chance to Maim on Hit" }, } }, - ["BlightSecondarySkillEffectDurationUnique__1"] = { affix = "", "Blight has (20-30)% increased Hinder Duration", statOrder = { 5171 }, level = 1, group = "BlightSecondarySkillEffectDuration", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHashes = { [4170725899] = { "Blight has (20-30)% increased Hinder Duration" }, } }, - ["GlobalCooldownRecoveryUnique__1"] = { affix = "", "(15-20)% increased Cooldown Recovery Rate", statOrder = { 5005 }, level = 1, group = "GlobalCooldownRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1004011302] = { "(15-20)% increased Cooldown Recovery Rate" }, } }, - ["GlobalCooldownRecoveryUnique__2"] = { affix = "", "(10-15)% increased Cooldown Recovery Rate", statOrder = { 5005 }, level = 1, group = "GlobalCooldownRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1004011302] = { "(10-15)% increased Cooldown Recovery Rate" }, } }, - ["DebuffTimePassedUnique__1"] = { affix = "", "Debuffs on you expire (15-20)% faster", statOrder = { 6151 }, level = 1, group = "DebuffTimePassed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1238227257] = { "Debuffs on you expire (15-20)% faster" }, } }, - ["DebuffTimePassedUnique__2"] = { affix = "", "Debuffs on you expire (80-100)% faster", statOrder = { 6151 }, level = 1, group = "DebuffTimePassed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1238227257] = { "Debuffs on you expire (80-100)% faster" }, } }, - ["DebuffTimePassedUnique__3"] = { affix = "", "Debuffs on you expire 100% faster", statOrder = { 6151 }, level = 1, group = "DebuffTimePassed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1238227257] = { "Debuffs on you expire 100% faster" }, } }, - ["LifeAndEnergyShieldRecoveryRateUnique_1"] = { affix = "", "(10-15)% increased Energy Shield Recovery rate", "(10-15)% increased Life Recovery rate", statOrder = { 1568, 1578 }, level = 1, group = "LifeAndEnergyShieldRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "defences", "energy_shield" }, tradeHashes = { [988575597] = { "(10-15)% increased Energy Shield Recovery rate" }, [3240073117] = { "(10-15)% increased Life Recovery rate" }, } }, - ["LocalGrantsStormCascadeOnAttackUnique__1"] = { affix = "", "Trigger Level 20 Storm Cascade when you Attack", statOrder = { 749 }, level = 1, group = "LocalDisplayGrantsStormCascadeOnAttack", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [818329660] = { "Trigger Level 20 Storm Cascade when you Attack" }, } }, - ["ProjectileAttacksChanceToBleedBeastialMinionUnique__1_"] = { affix = "", "Projectiles from Attacks inflict Bleeding on Hit while you have a Bestial Minion", statOrder = { 4318 }, level = 1, group = "ProjectileAttacksChanceToBleedBeastialMinion", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [4058504226] = { "Projectiles from Attacks inflict Bleeding on Hit while you have a Bestial Minion" }, } }, - ["ProjectileAttacksChanceToPoisonBeastialMinionUnique__1"] = { affix = "", "Projectiles from Attacks Poison on Hit while you have a Bestial Minion", statOrder = { 4320 }, level = 1, group = "ProjectileAttacksChanceToPoisonBeastialMinion", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "attack", "ailment" }, tradeHashes = { [1114411822] = { "Projectiles from Attacks Poison on Hit while you have a Bestial Minion" }, } }, - ["ProjectileAttacksChanceToMaimBeastialMinionUnique__1"] = { affix = "", "Projectiles from Attacks Maim on Hit while you have a Bestial Minion", statOrder = { 4319 }, level = 1, group = "ProjectileAttacksChanceToMaimBeastialMinion", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [1753916791] = { "Projectiles from Attacks Maim on Hit while you have a Bestial Minion" }, } }, - ["AddedPhysicalDamageToAttacksBeastialMinionUnique__1"] = { affix = "", "Adds (18-24) to (30-36) Physical Damage to Attacks while you have a Bestial Minion", statOrder = { 4321 }, level = 1, group = "AddedPhysicalDamageToAttacksBeastialMinion", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [242822230] = { "Adds (18-24) to (30-36) Physical Damage to Attacks while you have a Bestial Minion" }, } }, - ["AddedChaosDamageToAttacksBeastialMinionUnique__1"] = { affix = "", "Adds (23-31) to (37-47) Chaos Damage to Attacks while you have a Bestial Minion", statOrder = { 4322 }, level = 1, group = "AddedChaosDamageToAttacksBeastialMinion", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2152491486] = { "Adds (23-31) to (37-47) Chaos Damage to Attacks while you have a Bestial Minion" }, } }, - ["AttackAndMovementSpeedBeastialMinionUnique__1"] = { affix = "", "(10-20)% increased Attack and Movement Speed while you have a Bestial Minion", statOrder = { 4323 }, level = 1, group = "AttackAndMovementSpeedBeastialMinion", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [3597737983] = { "(10-20)% increased Attack and Movement Speed while you have a Bestial Minion" }, } }, - ["LifeLeechFromAttackDamageAgainstMaimedEnemiesUnique__1"] = { affix = "", "0.5% of Attack Damage Leeched as Life against Maimed Enemies", statOrder = { 7367 }, level = 1, group = "LifeLeechFromAttackDamageAgainstMaimedEnemies", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHashes = { [447636597] = { "0.5% of Attack Damage Leeched as Life against Maimed Enemies" }, } }, - ["GrantsDarktongueKissUnique__1"] = { affix = "", "Trigger Level 20 Darktongue's Kiss when you Cast a Curse Spell", statOrder = { 746 }, level = 1, group = "GrantsDarktongueKiss", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [3670477918] = { "Trigger Level 20 Darktongue's Kiss when you Cast a Curse Spell" }, } }, - ["ShockEffectUnique__1"] = { affix = "", "(15-25)% increased Effect of Shock", statOrder = { 10009 }, level = 1, group = "ShockEffect", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [2527686725] = { "(15-25)% increased Effect of Shock" }, } }, - ["ShockEffectUnique__2"] = { affix = "", "(1-50)% increased Effect of Lightning Ailments", statOrder = { 7434 }, level = 1, group = "LightningAilmentEffect", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3081816887] = { "(1-50)% increased Effect of Lightning Ailments" }, } }, - ["ShockEffectUnique__3"] = { affix = "", "30% increased Effect of Lightning Ailments", statOrder = { 7434 }, level = 1, group = "LightningAilmentEffect", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3081816887] = { "30% increased Effect of Lightning Ailments" }, } }, - ["LightningAilmentEffectUnique__1"] = { affix = "", "100% increased Effect of Lightning Ailments", statOrder = { 7434 }, level = 1, group = "LightningAilmentEffect", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3081816887] = { "100% increased Effect of Lightning Ailments" }, } }, - ["LocalCanSocketIgnoringColourUnique__1"] = { affix = "", "Gems can be Socketed in this Item ignoring Socket Colour", statOrder = { 91 }, level = 1, group = "LocalCanSocketIgnoringColour", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [899329924] = { "Gems can be Socketed in this Item ignoring Socket Colour" }, } }, - ["LocalNoAttributeRequirementsUnique__1"] = { affix = "", "Has no Attribute Requirements", statOrder = { 1082 }, level = 1, group = "LocalNoAttributeRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2739148464] = { "Has no Attribute Requirements" }, } }, - ["LocalNoAttributeRequirementsUnique__2"] = { affix = "", "Has no Attribute Requirements", statOrder = { 1082 }, level = 1, group = "LocalNoAttributeRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2739148464] = { "Has no Attribute Requirements" }, } }, - ["SocketedGemsInRedSocketEffectUnique__1"] = { affix = "", "Gems Socketed in Red Sockets have +2 to Level", statOrder = { 164 }, level = 1, group = "SocketedGemsInRedSocketEffect", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [2886998024] = { "Gems Socketed in Red Sockets have +2 to Level" }, } }, - ["SocketedGemsInGreenSocketEffectUnique__1"] = { affix = "", "Gems Socketed in Green Sockets have +30% to Quality", statOrder = { 165 }, level = 1, group = "SocketedGemsInGreenSocketEffect", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [3799930101] = { "Gems Socketed in Green Sockets have +30% to Quality" }, } }, - ["SocketedGemsInBlueSocketEffectUnique__1"] = { affix = "", "Gems Socketed in Blue Sockets gain 100% increased Experience", statOrder = { 166 }, level = 1, group = "SocketedGemsInBlueSocketEffect", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [2236460050] = { "Gems Socketed in Blue Sockets gain 100% increased Experience" }, } }, - ["GainThaumaturgyBuffRotationUnique__1_"] = { affix = "", "Grants Malachai's Endurance, Frenzy and Power for 6 seconds each, in sequence", statOrder = { 10369 }, level = 1, group = "GainThaumaturgyBuffRotation", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2918150296] = { "Grants Malachai's Endurance, Frenzy and Power for 6 seconds each, in sequence" }, } }, - ["FireBeamLengthUnique__1"] = { affix = "", "10% increased Scorching Ray beam length", statOrder = { 6559 }, level = 1, group = "FireBeamLength", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHashes = { [702909553] = { "10% increased Scorching Ray beam length" }, } }, - ["GrantsPurityOfFireUnique__1"] = { affix = "", "Grants Level 25 Purity of Fire Skill", statOrder = { 623 }, level = 1, group = "PurityOfFireSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [3970432307] = { "Grants Level 25 Purity of Fire Skill" }, } }, - ["GrantsPurityOfIceUnique__1"] = { affix = "", "Grants Level 25 Purity of Ice Skill", statOrder = { 629 }, level = 1, group = "PurityOfColdSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [4193390599] = { "Grants Level 25 Purity of Ice Skill" }, } }, - ["GrantsPurityOfLightningUnique__1"] = { affix = "", "Grants Level 25 Purity of Lightning Skill", statOrder = { 631 }, level = 1, group = "PurityOfLightningSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [3822878124] = { "Grants Level 25 Purity of Lightning Skill" }, } }, - ["GrantsVaalPurityOfFireUnique__1"] = { affix = "", "Grants Level 25 Vaal Impurity of Fire Skill", statOrder = { 724 }, level = 1, group = "VaalPurityOfFireSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [2700934265] = { "Grants Level 25 Vaal Impurity of Fire Skill" }, } }, - ["GrantsVaalPurityOfIceUnique__1"] = { affix = "", "Grants Level 25 Vaal Impurity of Ice Skill", statOrder = { 725 }, level = 1, group = "VaalPurityOfIceSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [1300125165] = { "Grants Level 25 Vaal Impurity of Ice Skill" }, } }, - ["GrantsVaalPurityOfLightningUnique__1"] = { affix = "", "Grants Level 25 Vaal Impurity of Lightning Skill", statOrder = { 726 }, level = 1, group = "VaalPurityOfLightningSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [2959369472] = { "Grants Level 25 Vaal Impurity of Lightning Skill" }, } }, - ["SpectreLifeUnique__1___"] = { affix = "", "+1000 to Spectre maximum Life", statOrder = { 10114 }, level = 1, group = "SpectreLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, tradeHashes = { [3111456397] = { "+1000 to Spectre maximum Life" }, } }, - ["SpectreIncreasedLifeUnique__1"] = { affix = "", "Raised Spectres have (50-100)% increased maximum Life", statOrder = { 1770 }, level = 1, group = "SpectreIncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, tradeHashes = { [3035514623] = { "Raised Spectres have (50-100)% increased maximum Life" }, } }, - ["PowerChargeOnManaSpentUnique__1"] = { affix = "", "Gain a Power Charge after Spending a total of 200 Mana", statOrder = { 7893 }, level = 1, group = "PowerChargeOnManaSpent", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [3269060224] = { "Gain a Power Charge after Spending a total of 200 Mana" }, } }, - ["IncreasedCastSpeedPerPowerChargeUnique__1"] = { affix = "", "2% increased Cast Speed per Power Charge", statOrder = { 1451 }, level = 1, group = "IncreasedCastSpeedPerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [1604393896] = { "2% increased Cast Speed per Power Charge" }, } }, - ["ManaRegeneratedPerSecondPerPowerChargeUnique__1"] = { affix = "", "Regenerate 2 Mana per Second per Power Charge", statOrder = { 8199 }, level = 1, group = "ManaRegeneratedPerSecondPerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [4084763463] = { "Regenerate 2 Mana per Second per Power Charge" }, } }, - ["GainARandomChargePerSecondWhileStationaryUnique__1"] = { affix = "", "Gain a Frenzy, Endurance, or Power Charge once per second while you are Stationary", statOrder = { 6814 }, level = 1, group = "GainARandomChargePerSecondWhileStationary", weightKey = { }, weightVal = { }, modTags = { "endurance_charge", "frenzy_charge", "power_charge" }, tradeHashes = { [1438403666] = { "Gain a Frenzy, Endurance, or Power Charge once per second while you are Stationary" }, } }, - ["LoseAllChargesOnMoveUnique__1"] = { affix = "", "Count as having maximum number of Endurance Charges", "Count as having maximum number of Frenzy Charges", "Count as having maximum number of Power Charges", statOrder = { 5886, 5886.1, 5886.2 }, level = 1, group = "LoseAllChargesOnMove", weightKey = { }, weightVal = { }, modTags = { "endurance_charge", "frenzy_charge", "power_charge" }, tradeHashes = { [3584443917] = { "Count as having maximum number of Endurance Charges", "Count as having maximum number of Frenzy Charges", "Count as having maximum number of Power Charges" }, } }, - ["ConsumesSupportGemsUnique"] = { affix = "", "Consumes Socketed Uncorrupted Support Gems when they reach Maximum Level", "Can Consume 4 Uncorrupted Support Gems", "Has not Consumed any Gems", statOrder = { 104, 104.1, 104.2 }, level = 88, group = "ConsumesSupportGemsUnique", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4206709389] = { "Consumes Socketed Uncorrupted Support Gems when they reach Maximum Level", "Can Consume 4 Uncorrupted Support Gems", "Has not Consumed any Gems" }, } }, - ["HungryLoopSupportedByAddedFireDamage"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Added Fire Damage", statOrder = { 104, 462 }, level = 1, group = "HungryLoopSupportedByAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [2572192375] = { "Socketed Gems are Supported by Level 20 Added Fire Damage" }, [4206709389] = { "" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByColdPenetration_"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Cold Penetration", statOrder = { 104, 513 }, level = 1, group = "HungryLoopSupportedByColdPenetration", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [1991958615] = { "Socketed Gems are Supported by Level 20 Cold Penetration" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByIceBite"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Ice Bite", statOrder = { 104, 512 }, level = 1, group = "HungryLoopSupportedByIceBite", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [1384629003] = { "Socketed Gems are Supported by Level 20 Ice Bite" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByManaLeech"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Mana Leech", statOrder = { 104, 514 }, level = 1, group = "HungryLoopSupportedByManaLeech", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [2608615082] = { "Socketed Gems are Supported by Level 20 Mana Leech" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByAddedColdDamage"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Added Cold Damage", statOrder = { 104, 518 }, level = 1, group = "HungryLoopSupportedByAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [4020144606] = { "Socketed Gems are Supported by Level 20 Added Cold Damage" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByReducedManaCost"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Inspiration", statOrder = { 104, 519 }, level = 1, group = "HungryLoopSupportedByReducedManaCost", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [749770518] = { "Socketed Gems are Supported by Level 20 Inspiration" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByAdditionalAccuracy"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are supported by Level 20 Additional Accuracy", statOrder = { 104, 480 }, level = 1, group = "HungryLoopSupportedByAdditionalAccuracy", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [1567462963] = { "Socketed Gems are supported by Level 20 Additional Accuracy" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByBloodMagic"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Arrogance", statOrder = { 104, 459 }, level = 1, group = "HungryLoopSupportedByBloodMagic", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [3922006600] = { "Socketed Gems are Supported by Level 20 Arrogance" }, [4206709389] = { "" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByFork"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are supported by Level 20 Fork", statOrder = { 104, 486 }, level = 1, group = "HungryLoopSupportedByFork", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [2062753054] = { "Socketed Gems are supported by Level 20 Fork" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByInnervate_"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Innervate", statOrder = { 104, 521 }, level = 1, group = "HungryLoopSupportedByInnervate", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [1106668565] = { "Socketed Gems are Supported by Level 20 Innervate" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByLesserPoison_"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Chance to Poison", statOrder = { 104, 523 }, level = 1, group = "HungryLoopSupportedByLesserPoison", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [228165595] = { "Socketed Gems are Supported by Level 20 Chance to Poison" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByHypothermia"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Hypothermia", statOrder = { 104, 511 }, level = 1, group = "HungryLoopSupportedByHypothermia", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [13669281] = { "Socketed Gems are Supported by Level 20 Hypothermia" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByLifeLeech"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are supported by Level 20 Life Leech", statOrder = { 104, 483 }, level = 1, group = "HungryLoopSupportedByLifeLeech", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [891277550] = { "Socketed Gems are supported by Level 20 Life Leech" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByMeleeSplash_"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are supported by Level 20 Melee Splash", statOrder = { 104, 471 }, level = 1, group = "HungryLoopSupportedByMeleeSplash", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [1811422871] = { "Socketed Gems are supported by Level 20 Melee Splash" }, [4206709389] = { "" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByMultistrike"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are supported by Level 20 Multistrike", statOrder = { 104, 481 }, level = 1, group = "HungryLoopSupportedByMultistrike", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [2501237765] = { "Socketed Gems are supported by Level 20 Multistrike" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByFasterProjectiles"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are supported by Level 20 Faster Projectiles", statOrder = { 104, 482 }, level = 1, group = "HungryLoopSupportedByFasterProjectiles", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [99089516] = { "Socketed Gems are supported by Level 20 Faster Projectiles" }, [4206709389] = { "" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByRemoteMine"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Blastchain Mine", statOrder = { 104, 497 }, level = 1, group = "HungryLoopSupportedByRemoteMine", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [1710508327] = { "Socketed Gems are Supported by Level 20 Blastchain Mine" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByRemoteMine2_"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 High-Impact Mine", statOrder = { 104, 366 }, level = 1, group = "HungryLoopSupportedByRemoteMine2", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [2116100988] = { "Socketed Gems are Supported by Level 20 High-Impact Mine" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByStun"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are supported by Level 20 Stun", statOrder = { 104, 479 }, level = 1, group = "HungryLoopSupportedByStun", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [689720069] = { "Socketed Gems are supported by Level 20 Stun" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByCastOnCrit"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are supported by Level 20 Cast On Critical Strike", statOrder = { 104, 472 }, level = 1, group = "HungryLoopSupportedByCastOnCrit", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [2325632050] = { "Socketed Gems are supported by Level 20 Cast On Critical Strike" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByCastWhenStunned"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are supported by Level 20 Cast when Stunned", statOrder = { 104, 477 }, level = 1, group = "HungryLoopSupportedByCastWhenStunned", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [1079148723] = { "Socketed Gems are supported by Level 20 Cast when Stunned" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByVileToxins_"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Vile Toxins", statOrder = { 104, 522 }, level = 1, group = "HungryLoopSupportedByVileToxins", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [1002855537] = { "Socketed Gems are Supported by Level 20 Vile Toxins" }, [4206709389] = { "" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByWeaponElementalDamage"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are supported by Level 20 Elemental Damage with Attacks", statOrder = { 104, 487 }, level = 1, group = "HungryLoopSupportedByWeaponElementalDamage", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [2532625478] = { "Socketed Gems are supported by Level 20 Elemental Damage with Attacks" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByIncreasedArea"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Increased Area of Effect", statOrder = { 104, 224 }, level = 1, group = "HungryLoopSupportedByIncreasedArea", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [3720936304] = { "Socketed Gems are Supported by Level 20 Increased Area of Effect" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByKnockback"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Knockback", statOrder = { 104, 502 }, level = 1, group = "HungryLoopSupportedByKnockback", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4066711249] = { "Socketed Gems are Supported by Level 20 Knockback" }, [4206709389] = { "" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByIncreasedMinionLife"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Minion Life", statOrder = { 104, 504 }, level = 1, group = "HungryLoopSupportedByIncreasedMinionLife", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [1337327984] = { "Socketed Gems are Supported by Level 20 Minion Life" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByIncreasedMinionSpeed"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Minion Speed", statOrder = { 104, 508 }, level = 1, group = "HungryLoopSupportedByIncreasedMinionSpeed", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [995332031] = { "Socketed Gems are Supported by Level 20 Minion Speed" }, [4206709389] = { "" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByLesserMultipleProjectiles_"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Multiple Projectiles", statOrder = { 104, 505 }, level = 1, group = "HungryLoopSupportedByLesserMultipleProjectiles", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [584144941] = { "Socketed Gems are Supported by Level 20 Multiple Projectiles" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByIncreasedMinionDamage_"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Minion Damage", statOrder = { 104, 506 }, level = 1, group = "HungryLoopSupportedByIncreasedMinionDamage", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [808939569] = { "Socketed Gems are Supported by Level 20 Minion Damage" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByIncreasedCriticalDamage"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are supported by Level 20 Increased Critical Damage", statOrder = { 104, 485 }, level = 1, group = "HungryLoopSupportedByIncreasedCriticalDamage", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [1108755349] = { "Socketed Gems are supported by Level 20 Increased Critical Damage" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByBlind"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are supported by Level 20 Blind", statOrder = { 104, 470 }, level = 1, group = "HungryLoopSupportedByBlind", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [2223640518] = { "Socketed Gems are supported by Level 20 Blind" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByEnduranceChargeOnStun"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Endurance Charge on Melee Stun", statOrder = { 104, 526 }, level = 1, group = "HungryLoopSupportedByEnduranceChargeOnStun", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [3375208082] = { "Socketed Gems are Supported by Level 20 Endurance Charge on Melee Stun" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByBlasphemy"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Blasphemy", statOrder = { 104, 520 }, level = 1, group = "HungryLoopSupportedByBlasphemy", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [539747809] = { "Socketed Gems are Supported by Level 20 Blasphemy" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByTrap"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Trap", statOrder = { 104, 454 }, level = 1, group = "HungryLoopSupportedByTrap", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [1122134690] = { "Socketed Gems are Supported by Level 20 Trap" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByIronWill"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Iron Will", statOrder = { 104, 501 }, level = 1, group = "HungryLoopSupportedByIronWill", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [906997920] = { "Socketed Gems are Supported by Level 20 Iron Will" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByFasterCast"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Faster Casting", statOrder = { 104, 500 }, level = 1, group = "HungryLoopSupportedByFasterCast", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [2169938251] = { "Socketed Gems are Supported by Level 20 Faster Casting" }, [4206709389] = { "" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByFlee"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are supported by Level 20 Chance to Flee", statOrder = { 104, 498 }, level = 1, group = "HungryLoopSupportedByFlee", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [952060721] = { "Socketed Gems are supported by Level 20 Chance to Flee" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByColdToFire_"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Cold to Fire", statOrder = { 104, 463 }, level = 1, group = "HungryLoopSupportedByColdToFire", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [550444281] = { "Socketed Gems are Supported by Level 20 Cold to Fire" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedBySpellTotem"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Spell Totem", statOrder = { 104, 464 }, level = 1, group = "HungryLoopSupportedBySpellTotem", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [2962840349] = { "Socketed Gems are Supported by Level 20 Spell Totem" }, [4206709389] = { "" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByGreaterMultipleProjectiles"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Greater Multiple Projectiles", statOrder = { 104, 295 }, level = 1, group = "HungryLoopSupportedByGreaterMultipleProjectiles", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [359450079] = { "Socketed Gems are Supported by Level 20 Greater Multiple Projectiles" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByIncreasedCriticalStrikes"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Increased Critical Strikes", statOrder = { 104, 313 }, level = 1, group = "HungryLoopSupportedByIncreasedCriticalStrikes", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [2259700079] = { "Socketed Gems are Supported by Level 20 Increased Critical Strikes" }, [4206709389] = { "" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByItemQuantity"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Item Quantity", statOrder = { 104, 320 }, level = 1, group = "HungryLoopSupportedByItemQuantity", weightKey = { }, weightVal = { }, modTags = { "support", "gem", "drop" }, tradeHashes = { [248646071] = { "Socketed Gems are Supported by Level 20 Item Quantity" }, [4206709389] = { "" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByItemRarity"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Item Rarity", statOrder = { 104, 321 }, level = 1, group = "HungryLoopSupportedByItemRarity", weightKey = { }, weightVal = { }, modTags = { "support", "gem", "drop" }, tradeHashes = { [4206709389] = { "" }, [3587013273] = { "Socketed Gems are Supported by Level 20 Item Rarity" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByIncreasedDuration"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 More Duration", statOrder = { 104, 314 }, level = 1, group = "HungryLoopSupportedByIncreasedDuration", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [407317553] = { "Socketed Gems are Supported by Level 20 More Duration" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByChanceToIgnite"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Combustion", statOrder = { 104, 245 }, level = 1, group = "HungryLoopSupportedByChanceToIgnite", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [1828254451] = { "Socketed Gems are Supported by Level 20 Combustion" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByBloodlust"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Bloodlust", statOrder = { 104, 232 }, level = 1, group = "HungryLoopSupportedByBloodlust", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [804508379] = { "Socketed Gems are Supported by Level 20 Bloodlust" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByLifeGainOnHit"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Life Gain On Hit", statOrder = { 104, 324 }, level = 1, group = "HungryLoopSupportedByLifeGainOnHit", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [2032386732] = { "Socketed Gems are Supported by Level 20 Life Gain On Hit" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByCullingStrike"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Culling Strike", statOrder = { 104, 254 }, level = 1, group = "HungryLoopSupportedByCullingStrike", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [1135493957] = { "Socketed Gems are Supported by Level 20 Culling Strike" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByPointBlank"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Point Blank", statOrder = { 104, 354 }, level = 1, group = "HungryLoopSupportedByPointBlank", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [3754129682] = { "Socketed Gems are Supported by Level 20 Point Blank" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByIronGrip"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Iron Grip", statOrder = { 104, 319 }, level = 1, group = "HungryLoopSupportedByIronGrip", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [251446805] = { "Socketed Gems are Supported by Level 20 Iron Grip" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByMeleeDamageOnFullLife"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Damage On Full Life", statOrder = { 104, 336 }, level = 1, group = "HungryLoopSupportedByMeleeDamageOnFullLife", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [2126431157] = { "Socketed Gems are Supported by Level 20 Damage On Full Life" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByRangedAttackTotem"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Ballista Totem", statOrder = { 104, 362 }, level = 1, group = "HungryLoopSupportedByRangedAttackTotem", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [3030692053] = { "Socketed Gems are Supported by Level 20 Ballista Totem" }, [4206709389] = { "" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByFirePenetration"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Fire Penetration", statOrder = { 104, 277 }, level = 1, group = "HungryLoopSupportedByFirePenetration", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [1979658770] = { "Socketed Gems are Supported by Level 20 Fire Penetration" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByLightningPenetration"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Lightning Penetration", statOrder = { 104, 326 }, level = 1, group = "HungryLoopSupportedByLightningPenetration", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [3354027870] = { "Socketed Gems are Supported by Level 20 Lightning Penetration" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByChain"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Chain", statOrder = { 104, 243 }, level = 1, group = "HungryLoopSupportedByChain", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [2643665787] = { "Socketed Gems are Supported by Level 20 Chain" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByMulticast"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Spell Echo", statOrder = { 104, 341 }, level = 1, group = "HungryLoopSupportedByMulticast", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [913919528] = { "Socketed Gems are Supported by Level 20 Spell Echo" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByPowerChargeOnCrit_"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Power Charge On Critical Strike", statOrder = { 104, 356 }, level = 1, group = "HungryLoopSupportedByPowerChargeOnCrit", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [4015918489] = { "Socketed Gems are Supported by Level 20 Power Charge On Critical Strike" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByIncreasedBurningDamage"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Burning Damage", statOrder = { 104, 312 }, level = 1, group = "HungryLoopSupportedByIncreasedBurningDamage", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [2680613507] = { "Socketed Gems are Supported by Level 20 Burning Damage" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedBySummonElementalResistance"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Elemental Army Support", statOrder = { 104, 384 }, level = 1, group = "HungryLoopSupportedBySummonElementalResistance", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [514705332] = { "Socketed Gems are Supported by Level 20 Elemental Army Support" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByCurseOnHit"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Hextouch", statOrder = { 104, 255 }, level = 1, group = "HungryLoopSupportedByCurseOnHit", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [2697741965] = { "Socketed Gems are Supported by Level 20 Hextouch" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByCastOnKill"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Cast On Melee Kill", statOrder = { 104, 240 }, level = 1, group = "HungryLoopSupportedByCastOnKill", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [3312593243] = { "Socketed Gems are Supported by Level 20 Cast On Melee Kill" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByMultiTrap"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Multiple Traps", statOrder = { 104, 456 }, level = 1, group = "HungryLoopSupportedByMultiTrap", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [3016436615] = { "Socketed Gems are Supported by Level 20 Multiple Traps" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByEmpower"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 3 Empower", statOrder = { 104, 269 }, level = 1, group = "HungryLoopSupportedByEmpower", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [3581578643] = { "Socketed Gems are Supported by Level 3 Empower" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedBySlowerProjectiles"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Slower Projectiles", statOrder = { 104, 377 }, level = 1, group = "HungryLoopSupportedBySlowerProjectiles", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [1390285657] = { "Socketed Gems are Supported by Level 20 Slower Projectiles" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByReducedDuration"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Less Duration", statOrder = { 104, 365 }, level = 1, group = "HungryLoopSupportedByReducedDuration", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [2487643588] = { "Socketed Gems are Supported by Level 20 Less Duration" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByCastOnDamageTaken"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Cast when Damage Taken", statOrder = { 104, 239 }, level = 1, group = "HungryLoopSupportedByCastOnDamageTaken", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [3036440332] = { "Socketed Gems are Supported by Level 20 Cast when Damage Taken" }, [4206709389] = { "" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByEnhance"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 3 Enhance", statOrder = { 104, 271 }, level = 1, group = "HungryLoopSupportedByEnhance", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [2556436882] = { "Socketed Gems are Supported by Level 3 Enhance" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByPhysicalProjectileAttackDamage"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Vicious Projectiles", statOrder = { 104, 351 }, level = 1, group = "HungryLoopSupportedByPhysicalProjectileAttackDamage", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [2513293614] = { "Socketed Gems are Supported by Level 20 Vicious Projectiles" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByEnlighten"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 3 Enlighten", statOrder = { 104, 272 }, level = 1, group = "HungryLoopSupportedByEnlighten", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [2065361612] = { "Socketed Gems are Supported by Level 3 Enlighten" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByPhysicalToLightning_"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Physical To Lightning", statOrder = { 104, 352 }, level = 1, group = "HungryLoopSupportedByPhysicalToLightning", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [3327487371] = { "Socketed Gems are Supported by Level 20 Physical To Lightning" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByTrapAndMineDamage"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Trap And Mine Damage", statOrder = { 104, 457 }, level = 1, group = "HungryLoopSupportedByTrapAndMineDamage", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [3814066599] = { "Socketed Gems are Supported by Level 20 Trap And Mine Damage" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByPoison"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Critical Strike Affliction", statOrder = { 104, 355 }, level = 1, group = "HungryLoopSupportedByPoison", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [2228279620] = { "Socketed Gems are Supported by Level 20 Critical Strike Affliction" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByVoidManipulation"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Void Manipulation", statOrder = { 104, 400 }, level = 1, group = "HungryLoopSupportedByVoidManipulation", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [1866583932] = { "Socketed Gems are Supported by Level 20 Void Manipulation" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByRapidDecay"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Swift Affliction", statOrder = { 104, 363 }, level = 1, group = "HungryLoopSupportedByRapidDecay", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [1636220212] = { "Socketed Gems are Supported by Level 20 Swift Affliction" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByClusterTrap_"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Cluster Trap", statOrder = { 104, 455 }, level = 1, group = "HungryLoopSupportedByClusterTrap", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [2854183975] = { "Socketed Gems are Supported by Level 20 Cluster Trap" }, [4206709389] = { "" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByElementalFocus"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Elemental Focus", statOrder = { 104, 267 }, level = 1, group = "HungryLoopSupportedByElementalFocus", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [1169422227] = { "Socketed Gems are Supported by Level 20 Elemental Focus" }, [4206709389] = { "" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByMinefield"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Minefield", statOrder = { 104, 337 }, level = 1, group = "HungryLoopSupportedByMinefield", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [2805586447] = { "Socketed Gems are Supported by Level 20 Minefield" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByTrapCooldown"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Advanced Traps", statOrder = { 104, 390 }, level = 1, group = "HungryLoopSupportedByTrapCooldown", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [3839163699] = { "Socketed Gems are Supported by Level 20 Advanced Traps" }, [4206709389] = { "" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByCastWhileChannelling"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Cast While Channelling", statOrder = { 104, 242 }, level = 1, group = "HungryLoopSupportedByCastWhileChannelling", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [1316646496] = { "Socketed Gems are Supported by Level 20 Cast While Channelling" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByIgniteProliferation__"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Ignite Proliferation", statOrder = { 104, 308 }, level = 1, group = "HungryLoopSupportedByIgniteProliferation", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [3593797653] = { "Socketed Gems are Supported by Level 20 Ignite Proliferation" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByChanceToBleed"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Chance To Bleed", statOrder = { 104, 244 }, level = 1, group = "HungryLoopSupportedByChanceToBleed", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [4197676934] = { "Socketed Gems are Supported by Level 20 Chance To Bleed" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByDeadlyAilments"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Deadly Ailments", statOrder = { 104, 257 }, level = 1, group = "HungryLoopSupportedByDeadlyAilments", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [103909236] = { "Socketed Gems are Supported by Level 20 Deadly Ailments" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByDecay"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Decay", statOrder = { 104, 259 }, level = 1, group = "HungryLoopSupportedByDecay", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [388696990] = { "Socketed Gems are Supported by Level 20 Decay" }, [4206709389] = { "" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByEfficacy"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Efficacy", statOrder = { 104, 265 }, level = 1, group = "HungryLoopSupportedByEfficacy", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [3924539382] = { "Socketed Gems are Supported by Level 20 Efficacy" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByMaim"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Maim", statOrder = { 104, 331 }, level = 1, group = "HungryLoopSupportedByMaim", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [3826977109] = { "Socketed Gems are Supported by Level 20 Maim" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByImmolate"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Immolate", statOrder = { 104, 309 }, level = 1, group = "HungryLoopSupportedByImmolate", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [2420410470] = { "Socketed Gems are Supported by Level 20 Immolate" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByUnboundAilments"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Unbound Ailments", statOrder = { 104, 393 }, level = 1, group = "HungryLoopSupportedByUnboundAilments", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [3699494172] = { "Socketed Gems are Supported by Level 20 Unbound Ailments" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByBrutality"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Brutality", statOrder = { 104, 237 }, level = 1, group = "HungryLoopSupportedByBrutality", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [715256302] = { "Socketed Gems are Supported by Level 20 Brutality" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByRuthless_"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Ruthless", statOrder = { 104, 370 }, level = 1, group = "HungryLoopSupportedByRuthless", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [3796013729] = { "Socketed Gems are Supported by Level 20 Ruthless" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByOnslaught_"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Momentum", statOrder = { 104, 344 }, level = 1, group = "HungryLoopSupportedByOnslaught", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [3237923082] = { "Socketed Gems are Supported by Level 20 Momentum" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByArcaneSurge"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Arcane Surge", statOrder = { 104, 226 }, level = 1, group = "HungryLoopSupportedByArcaneSurge", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [2287264161] = { "Socketed Gems are Supported by Level 20 Arcane Surge" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByBarrage_"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Barrage", statOrder = { 104, 230 }, level = 1, group = "HungryLoopSupportedByBarrage", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [3827538724] = { "Socketed Gems are Supported by Level 20 Barrage" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByArrowNova"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Arrow Nova", statOrder = { 104, 361 }, level = 1, group = "HungryLoopSupportedByArrowNova", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [1331336999] = { "Socketed Gems are Supported by Level 20 Arrow Nova" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByPierce_"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are supported by Level 20 Pierce", statOrder = { 104, 509 }, level = 1, group = "HungryLoopSupportedByPierce", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [2433615566] = { "Socketed Gems are supported by Level 20 Pierce" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByFasterAttacks"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Faster Attacks", statOrder = { 104, 469 }, level = 1, group = "HungryLoopSupportedByFasterAttacks", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [928701213] = { "Socketed Gems are Supported by Level 20 Faster Attacks" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByMeleePhysicalDamage"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Melee Physical Damage", statOrder = { 104, 468 }, level = 1, group = "HungryLoopSupportedByMeleePhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [2985291457] = { "Socketed Gems are Supported by Level 20 Melee Physical Damage" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByGenerosity_"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Generosity", statOrder = { 104, 495 }, level = 1, group = "HungryLoopSupportedByGenerosity", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [2593773031] = { "Socketed Gems are Supported by Level 20 Generosity" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByFortify_"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Fortify", statOrder = { 104, 496 }, level = 1, group = "HungryLoopSupportedByFortify", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [107118693] = { "Socketed Gems are Supported by Level 20 Fortify" }, [4206709389] = { "" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByElementalProliferation"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Elemental Proliferation", statOrder = { 104, 466 }, level = 1, group = "HungryLoopSupportedByElementalProliferation", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [2929101122] = { "Socketed Gems are Supported by Level 20 Elemental Proliferation" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByControlledDestruction"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Controlled Destruction", statOrder = { 104, 525 }, level = 1, group = "HungryLoopSupportedByControlledDestruction", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [3718597497] = { "Socketed Gems are Supported by Level 20 Controlled Destruction" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByConcentratedEffect"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Concentrated Effect", statOrder = { 104, 453 }, level = 1, group = "HungryLoopSupportedByConcentratedEffect", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [2388360415] = { "Socketed Gems are Supported by Level 20 Concentrated Effect" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByCastOnDeath"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are supported by Level 20 Cast on Death", statOrder = { 104, 478 }, level = 1, group = "HungryLoopSupportedByCastOnDeath", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [3878987051] = { "Socketed Gems are supported by Level 20 Cast on Death" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByAddedLightningDamage"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Added Lightning Damage", statOrder = { 104, 467 }, level = 1, group = "HungryLoopSupportedByAddedLightningDamage", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [1647529598] = { "Socketed Gems are Supported by Level 20 Added Lightning Damage" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByAddedChaosDamage"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Added Chaos Damage", statOrder = { 104, 458 }, level = 1, group = "HungryLoopSupportedByAddedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [411460446] = { "Socketed Gems are Supported by Level 20 Added Chaos Damage" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByReducedBlockChance"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Block Chance Reduction", statOrder = { 104, 364 }, level = 1, group = "HungryLoopSupportedByReducedBlockChance", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [1966051190] = { "Socketed Gems are Supported by Level 20 Block Chance Reduction" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByStormBarrier"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Infused Channelling", statOrder = { 104, 383 }, level = 1, group = "HungryLoopSupportedByStormBarrier", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [4048257027] = { "Socketed Gems are Supported by Level 20 Infused Channelling" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByParallelProjectiles"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Volley", statOrder = { 104, 350 }, level = 1, group = "HungryLoopSupportedByParallelProjectiles", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [2696557965] = { "Socketed Gems are Supported by Level 20 Volley" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByGreaterVolley"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Greater Volley", statOrder = { 104, 300 }, level = 1, group = "HungryLoopSupportedByGreaterVolley", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [2223565123] = { "Socketed Gems are Supported by Level 20 Greater Volley" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedBySpellCascade"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Spell Cascade", statOrder = { 104, 379 }, level = 1, group = "HungryLoopSupportedBySpellCascade", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [503990161] = { "Socketed Gems are Supported by Level 20 Spell Cascade" }, [4206709389] = { "" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedBySpiritStrike"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Ancestral Call", statOrder = { 104, 382 }, level = 1, group = "HungryLoopSupportedBySpiritStrike", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [696805682] = { "Socketed Gems are Supported by Level 20 Ancestral Call" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedBySummonGhostOnKill"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Summon Phantasm", statOrder = { 104, 385 }, level = 1, group = "HungryLoopSupportedBySummonGhostOnKill", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [3155072742] = { "Socketed Gems are Supported by Level 20 Summon Phantasm" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByMirageArcher_"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Mirage Archer", statOrder = { 104, 339 }, level = 1, group = "HungryLoopSupportedByMirageArcher", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [3239503729] = { "Socketed Gems are Supported by Level 20 Mirage Archer" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByFrenzyPowerOnTrapTrigger"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Charged Traps", statOrder = { 104, 285 }, level = 1, group = "HungryLoopSupportedByFrenzyPowerOnTrapTrigger", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [479453859] = { "Socketed Gems are Supported by Level 20 Charged Traps" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByChaosAttacks"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Withering Touch", statOrder = { 104, 405 }, level = 1, group = "HungryLoopSupportedByChaosAttacks", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [3287477747] = { "Socketed Gems are Supported by Level 20 Withering Touch" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByBonechill"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Bonechill", statOrder = { 104, 235 }, level = 1, group = "HungryLoopSupportedByBonechill", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [1859244771] = { "Socketed Gems are Supported by Level 20 Bonechill" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByMultiTotem"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Multiple Totems", statOrder = { 104, 340 }, level = 1, group = "HungryLoopSupportedByMultiTotem", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [807186595] = { "Socketed Gems are Supported by Level 20 Multiple Totems" }, [4206709389] = { "" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByEnergyLeech"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Energy Leech", statOrder = { 104, 270 }, level = 1, group = "HungryLoopSupportedByEnergyLeech", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [799443127] = { "Socketed Gems are Supported by Level 20 Energy Leech" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedBySpellFocus"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Intensify", statOrder = { 104, 380 }, level = 1, group = "HungryLoopSupportedBySpellFocus", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [1876637240] = { "Socketed Gems are Supported by Level 20 Intensify" }, [4206709389] = { "" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByUnleash"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Unleash", statOrder = { 104, 396 }, level = 1, group = "HungryLoopSupportedByUnleash", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [3356013982] = { "Socketed Gems are Supported by Level 20 Unleash" }, [4206709389] = { "" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByImpale"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Impale", statOrder = { 104, 310 }, level = 1, group = "HungryLoopSupportedByImpale", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [1900098804] = { "Socketed Gems are Supported by Level 20 Impale" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByPulverise"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Pulverise", statOrder = { 104, 358 }, level = 1, group = "HungryLoopSupportedByPulverise", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [282757414] = { "Socketed Gems are Supported by Level 20 Pulverise" }, [4206709389] = { "" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByRage_"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Rage", statOrder = { 104, 360 }, level = 1, group = "HungryLoopSupportedByRage", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [369650395] = { "Socketed Gems are Supported by Level 20 Rage" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByCloseCombat"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Close Combat", statOrder = { 104, 247 }, level = 1, group = "HungryLoopSupportedByCloseCombat", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [694651314] = { "Socketed Gems are Supported by Level 20 Close Combat" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByShockwave_"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Shockwave", statOrder = { 104, 376 }, level = 1, group = "HungryLoopSupportedByShockwave", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [1344789934] = { "Socketed Gems are Supported by Level 20 Shockwave" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByFeedingFrenzy"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Feeding Frenzy", statOrder = { 104, 276 }, level = 1, group = "HungryLoopSupportedByFeedingFrenzy", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [2269282877] = { "Socketed Gems are Supported by Level 20 Feeding Frenzy" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByMeatShield"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Meat Shield", statOrder = { 104, 334 }, level = 1, group = "HungryLoopSupportedByMeatShield", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [858460086] = { "Socketed Gems are Supported by Level 20 Meat Shield" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByDeathmark_"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Predator", statOrder = { 104, 258 }, level = 1, group = "HungryLoopSupportedByDeathmark", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [4082662318] = { "Socketed Gems are Supported by Level 20 Predator" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByNightblade"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Nightblade", statOrder = { 104, 342 }, level = 1, group = "HungryLoopSupportedByNightblade", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [2861649515] = { "Socketed Gems are Supported by Level 20 Nightblade" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByInfernalLegion_"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Infernal Legion", statOrder = { 104, 315 }, level = 1, group = "HungryLoopSupportedByInfernalLegion", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [2201102274] = { "Socketed Gems are Supported by Level 20 Infernal Legion" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedBySwiftAssembly"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Swift Assembly", statOrder = { 104, 386 }, level = 1, group = "HungryLoopSupportedBySwiftAssembly", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [4021476585] = { "Socketed Gems are Supported by Level 20 Swift Assembly" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByChargedMines"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Charged Mines", statOrder = { 104, 246 }, level = 1, group = "HungryLoopSupportedByChargedMines", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [1365328494] = { "Socketed Gems are Supported by Level 20 Charged Mines" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByAwakenedAddedFireDamage"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 5 Awakened Added Fire Damage", statOrder = { 104, 415 }, level = 1, group = "HungryLoopSupportedByAwakenedAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [339131601] = { "Socketed Gems are Supported by Level 5 Awakened Added Fire Damage" }, [4206709389] = { "" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByAwakenedAncestralCall"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 5 Awakened Ancestral Call", statOrder = { 104, 417 }, level = 1, group = "HungryLoopSupportedByAwakenedAncestralCall", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [4055526353] = { "Socketed Gems are Supported by Level 5 Awakened Ancestral Call" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByAwakenedBrutality"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 5 Awakened Brutality", statOrder = { 104, 420 }, level = 1, group = "HungryLoopSupportedByAwakenedBrutality", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [3610200044] = { "Socketed Gems are Supported by Level 5 Awakened Brutality" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByAwakenedBurningDamage"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 5 Awakened Burning Damage", statOrder = { 104, 421 }, level = 1, group = "HungryLoopSupportedByAwakenedBurningDamage", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [493707013] = { "Socketed Gems are Supported by Level 5 Awakened Burning Damage" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByAwakenedWeaponElementalDamage_"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 5 Awakened Elemental Damage With Attacks", statOrder = { 104, 450 }, level = 1, group = "HungryLoopSupportedByAwakenedWeaponElementalDamage", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [1786672841] = { "Socketed Gems are Supported by Level 5 Awakened Elemental Damage With Attacks" }, [4206709389] = { "" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByAwakenedFirePenetration"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 5 Awakened Fire Penetration", statOrder = { 104, 433 }, level = 1, group = "HungryLoopSupportedByAwakenedFirePenetration", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [170274897] = { "Socketed Gems are Supported by Level 5 Awakened Fire Penetration" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByAwakenedGenerosity_"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 5 Awakened Generosity", statOrder = { 104, 435 }, level = 1, group = "HungryLoopSupportedByAwakenedGenerosity", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [1007586373] = { "Socketed Gems are Supported by Level 5 Awakened Generosity" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByAwakenedMeleePhysicalDamage"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 5 Awakened Melee Physical Damage", statOrder = { 104, 439 }, level = 1, group = "HungryLoopSupportedByAwakenedMeleePhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [2173069393] = { "Socketed Gems are Supported by Level 5 Awakened Melee Physical Damage" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByAwakenedMeleeSplash"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 5 Awakened Melee Splash", statOrder = { 104, 440 }, level = 1, group = "HungryLoopSupportedByAwakenedMeleeSplash", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [2253550081] = { "Socketed Gems are Supported by Level 5 Awakened Melee Splash" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByAwakenedMultistrike"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 5 Awakened Multistrike", statOrder = { 104, 442 }, level = 1, group = "HungryLoopSupportedByAwakenedMultistrike", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [511417258] = { "Socketed Gems are Supported by Level 5 Awakened Multistrike" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByAwakenedAddedColdDamage"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 5 Awakened Added Cold Damage", statOrder = { 104, 414 }, level = 1, group = "HungryLoopSupportedByAwakenedAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [2509486489] = { "Socketed Gems are Supported by Level 5 Awakened Added Cold Damage" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByAwakenedArrowNova"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 5 Awakened Arrow Nova", statOrder = { 104, 418 }, level = 1, group = "HungryLoopSupportedByAwakenedArrowNova", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [1411990341] = { "Socketed Gems are Supported by Level 5 Awakened Arrow Nova" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByAwakenedCastOnCrit"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 5 Awakened Cast On Critical Strike", statOrder = { 104, 422 }, level = 1, group = "HungryLoopSupportedByAwakenedCastOnCrit", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [2750392696] = { "Socketed Gems are Supported by Level 5 Awakened Cast On Critical Strike" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByAwakenedChain"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 5 Awakened Chain", statOrder = { 104, 424 }, level = 1, group = "HungryLoopSupportedByAwakenedChain", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [2249251344] = { "Socketed Gems are Supported by Level 5 Awakened Chain" }, [4206709389] = { "" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByAwakenedColdPenetration"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 5 Awakened Cold Penetration", statOrder = { 104, 425 }, level = 1, group = "HungryLoopSupportedByAwakenedColdPenetration", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [1889095429] = { "Socketed Gems are Supported by Level 5 Awakened Cold Penetration" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByAwakenedDeadlyAilments"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 5 Awakened Deadly Ailments", statOrder = { 104, 428 }, level = 1, group = "HungryLoopSupportedByAwakenedDeadlyAilments", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [1621366871] = { "Socketed Gems are Supported by Level 5 Awakened Deadly Ailments" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByAwakenedFork"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 5 Awakened Fork", statOrder = { 104, 434 }, level = 1, group = "HungryLoopSupportedByAwakenedFork", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [1803865171] = { "Socketed Gems are Supported by Level 5 Awakened Fork" }, [4206709389] = { "" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByAwakenedGreaterMultipleProjectiles"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 5 Awakened Greater Multiple Projectiles", statOrder = { 104, 436 }, level = 1, group = "HungryLoopSupportedByAwakenedGreaterMultipleProjectiles", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [1980028507] = { "Socketed Gems are Supported by Level 5 Awakened Greater Multiple Projectiles" }, [4206709389] = { "" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByAwakenedSwiftAffliction"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 5 Awakened Swift Affliction", statOrder = { 104, 445 }, level = 1, group = "HungryLoopSupportedByAwakenedSwiftAffliction", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4089933397] = { "Socketed Gems are Supported by Level 5 Awakened Swift Affliction" }, [4206709389] = { "" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByAwakenedVoidManipulation"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 5 Awakened Void Manipulation", statOrder = { 104, 449 }, level = 1, group = "HungryLoopSupportedByAwakenedVoidManipulation", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [1882929618] = { "Socketed Gems are Supported by Level 5 Awakened Void Manipulation" }, [4206709389] = { "" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByAwakenedViciousProjectiles"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 5 Awakened Vicious Projectiles", statOrder = { 104, 448 }, level = 1, group = "HungryLoopSupportedByAwakenedViciousProjectiles", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [2647355055] = { "Socketed Gems are Supported by Level 5 Awakened Vicious Projectiles" }, [4206709389] = { "" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByAwakenedAddedChaosDamage_"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 5 Awakened Added Chaos Damage", statOrder = { 104, 413 }, level = 1, group = "HungryLoopSupportedByAwakenedAddedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [2722592119] = { "Socketed Gems are Supported by Level 5 Awakened Added Chaos Damage" }, [4206709389] = { "" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByAwakenedAddedLightningDamage_"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 5 Awakened Added Lightning Damage", statOrder = { 104, 416 }, level = 1, group = "HungryLoopSupportedByAwakenedAddedLightningDamage", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [3429304534] = { "Socketed Gems are Supported by Level 5 Awakened Added Lightning Damage" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByAwakenedBlasphemy"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 5 Awakened Blasphemy", statOrder = { 104, 419 }, level = 1, group = "HungryLoopSupportedByAwakenedBlasphemy", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [1046449631] = { "Socketed Gems are Supported by Level 5 Awakened Blasphemy" }, [4206709389] = { "" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByAwakenedCastWhileChannelling"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 5 Awakened Cast While Channelling", statOrder = { 104, 423 }, level = 1, group = "HungryLoopSupportedByAwakenedCastWhileChannelling", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [760968853] = { "Socketed Gems are Supported by Level 5 Awakened Cast While Channelling" }, [4206709389] = { "" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByAwakenedControlledDestruction"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 5 Awakened Controlled Destruction", statOrder = { 104, 426 }, level = 1, group = "HungryLoopSupportedByAwakenedControlledDestruction", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [271119551] = { "Socketed Gems are Supported by Level 5 Awakened Controlled Destruction" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByAwakenedCurseOnHit"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 5 Awakened Hextouch", statOrder = { 104, 427 }, level = 1, group = "HungryLoopSupportedByAwakenedCurseOnHit", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [2635746638] = { "Socketed Gems are Supported by Level 5 Awakened Hextouch" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByAwakenedElementalFocus"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 5 Awakened Elemental Focus", statOrder = { 104, 429 }, level = 1, group = "HungryLoopSupportedByAwakenedElementalFocus", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [2111661233] = { "Socketed Gems are Supported by Level 5 Awakened Elemental Focus" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByAwakenedIncreasedAreaOfEffect_"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 5 Awakened Increased Area Of Effect", statOrder = { 104, 437 }, level = 1, group = "HungryLoopSupportedByAwakenedIncreasedAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [2333301609] = { "Socketed Gems are Supported by Level 5 Awakened Increased Area Of Effect" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByAwakenedLightningPenetration"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 5 Awakened Lightning Penetration", statOrder = { 104, 438 }, level = 1, group = "HungryLoopSupportedByAwakenedLightningPenetration", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [1544223714] = { "Socketed Gems are Supported by Level 5 Awakened Lightning Penetration" }, [4206709389] = { "" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByAwakenedMinionDamage"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 5 Awakened Minion Damage", statOrder = { 104, 441 }, level = 1, group = "HungryLoopSupportedByAwakenedMinionDamage", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [2100048639] = { "Socketed Gems are Supported by Level 5 Awakened Minion Damage" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByAwakenedSpellCascade"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 5 Awakened Spell Cascade", statOrder = { 104, 443 }, level = 1, group = "HungryLoopSupportedByAwakenedSpellCascade", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [2222752567] = { "Socketed Gems are Supported by Level 5 Awakened Spell Cascade" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByAwakenedSpellEcho__"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 5 Awakened Spell Echo", statOrder = { 104, 444 }, level = 1, group = "HungryLoopSupportedByAwakenedSpellEcho", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [48859060] = { "Socketed Gems are Supported by Level 5 Awakened Spell Echo" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByAwakenedUnboundAilments"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 5 Awakened Unbound Ailments", statOrder = { 104, 446 }, level = 1, group = "HungryLoopSupportedByAwakenedUnboundAilments", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [2116002108] = { "Socketed Gems are Supported by Level 5 Awakened Unbound Ailments" }, [4206709389] = { "" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByAwakenedUnleash"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 5 Awakened Unleash", statOrder = { 104, 447 }, level = 1, group = "HungryLoopSupportedByAwakenedUnleash", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [3428829446] = { "Socketed Gems are Supported by Level 5 Awakened Unleash" }, [4206709389] = { "" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByAwakenedEmpower"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 4 Awakened Empower", statOrder = { 104, 430 }, level = 1, group = "HungryLoopSupportedByAwakenedEmpower", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [3739157305] = { "Socketed Gems are Supported by Level 4 Awakened Empower" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByAwakenedEnlighten"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 4 Awakened Enlighten", statOrder = { 104, 432 }, level = 1, group = "HungryLoopSupportedByAwakenedEnlighten", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [4251567680] = { "Socketed Gems are Supported by Level 4 Awakened Enlighten" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByAwakenedEnhance"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 4 Awakened Enhance", statOrder = { 104, 431 }, level = 1, group = "HungryLoopSupportedByAwakenedEnhance", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [2133566731] = { "Socketed Gems are Supported by Level 4 Awakened Enhance" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedBySecondWind_"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Second Wind", statOrder = { 104, 375 }, level = 1, group = "HungryLoopSupportedBySecondWind", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [402499111] = { "Socketed Gems are Supported by Level 20 Second Wind" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByArchmage"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Archmage", statOrder = { 104, 227 }, level = 1, group = "HungryLoopSupportedByArchmage", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [3652278215] = { "Socketed Gems are Supported by Level 20 Archmage" }, [4206709389] = { "" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByUrgentOrders"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Urgent Orders", statOrder = { 104, 397 }, level = 1, group = "HungryLoopSupportedByUrgentOrders", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [1485525812] = { "Socketed Gems are Supported by Level 20 Urgent Orders" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByFistOfWar"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Fist of War", statOrder = { 104, 279 }, level = 1, group = "HungryLoopSupportedByFistofWar", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [2419657101] = { "Socketed Gems are Supported by Level 20 Fist of War" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedBySwiftBrand"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Swiftbrand", statOrder = { 104, 387 }, level = 1, group = "HungryLoopSupportedBySwiftBrand", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [2127532091] = { "Socketed Gems are Supported by Level 20 Swiftbrand" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByElementalPenetration"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Elemental Penetration", statOrder = { 104, 268 }, level = 1, group = "HungryLoopSupportedByElementalPenetration", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [1994143317] = { "Socketed Gems are Supported by Level 20 Elemental Penetration" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByImpendingDoom"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Impending Doom", statOrder = { 104, 311 }, level = 1, group = "HungryLoopSupportedByImpendingDoom", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [3227145554] = { "Socketed Gems are Supported by Level 20 Impending Doom" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByBloodthirst_"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Bloodthirst", statOrder = { 104, 234 }, level = 1, group = "HungryLoopSupportedByBloodthirst", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [1803206643] = { "Socketed Gems are Supported by Level 20 Bloodthirst" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByFragility_"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Cruelty", statOrder = { 104, 284 }, level = 1, group = "HungryLoopSupportedByFragility", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [1679136] = { "Socketed Gems are Supported by Level 20 Cruelty" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByLifetap"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Lifetap", statOrder = { 104, 325 }, level = 1, group = "HungryLoopSupportedByLifetap", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [1079239905] = { "Socketed Gems are Supported by Level 20 Lifetap" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByFocussedBallista_"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Focused Ballista", statOrder = { 104, 282 }, level = 1, group = "HungryLoopSupportedByFocussedBallista", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [921536976] = { "Socketed Gems are Supported by Level 20 Focused Ballista" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByEarthbreaker"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Earthbreaker", statOrder = { 104, 262 }, level = 1, group = "HungryLoopSupportedByEarthbreaker", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [940684417] = { "Socketed Gems are Supported by Level 20 Earthbreaker" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByBehead"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Behead", statOrder = { 104, 231 }, level = 1, group = "HungryLoopSupportedByBehead", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [1019145105] = { "Socketed Gems are Supported by Level 20 Behead" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByMarkOnHit"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Mark On Hit", statOrder = { 104, 333 }, level = 1, group = "HungryLoopSupportedByMarkOnHit", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [3485498591] = { "Socketed Gems are Supported by Level 20 Mark On Hit" }, [4206709389] = { "" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByDivineBlessing"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Eternal Blessing", statOrder = { 104, 273 }, level = 1, group = "HungryLoopSupportedByDivineBlessing", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [3062849155] = { "Socketed Gems are Supported by Level 20 Eternal Blessing" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByEternalBlessing"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Eternal Blessing", statOrder = { 104, 273 }, level = 1, group = "HungryLoopSupportedByEternalBlessing", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [3062849155] = { "Socketed Gems are Supported by Level 20 Eternal Blessing" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByOvercharge"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Overcharge", statOrder = { 104, 345 }, level = 1, group = "HungryLoopSupportedByPureShock", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [3462081007] = { "Socketed Gems are Supported by Level 20 Overcharge" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByCursedGround"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Cursed Ground", statOrder = { 104, 256 }, level = 1, group = "HungryLoopSupportedByCursedGround", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [3998071134] = { "Socketed Gems are Supported by Level 20 Cursed Ground" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByHexBloom"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Hex Bloom", statOrder = { 104, 304 }, level = 1, group = "HungryLoopSupportedByHexBloom", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [3199084318] = { "Socketed Gems are Supported by Level 20 Hex Bloom" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByManaforgedArrows"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Manaforged Arrows", statOrder = { 104, 332 }, level = 1, group = "HungryLoopSupportedByManaforgedArrows", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [4022502578] = { "Socketed Gems are Supported by Level 20 Manaforged Arrows" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByPrismaticBurst"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Prismatic Burst", statOrder = { 104, 357 }, level = 1, group = "HungryLoopSupportedByPrismaticBurst", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [2910545715] = { "Socketed Gems are Supported by Level 20 Prismatic Burst" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByReturningProjectiles"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Returning Projectiles", statOrder = { 104, 367 }, level = 1, group = "HungryLoopSupportedByReturningProjectiles", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [52197415] = { "Socketed Gems are Supported by Level 20 Returning Projectiles" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByTrauma"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Trauma", statOrder = { 104, 391 }, level = 1, group = "HungryLoopSupportedByTrauma", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [1715139253] = { "Socketed Gems are Supported by Level 20 Trauma" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedBySpellblade"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Spellblade", statOrder = { 104, 381 }, level = 1, group = "HungryLoopSupportedBySpellblade", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [633235561] = { "Socketed Gems are Supported by Level 20 Spellblade" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByDevour"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Devour", statOrder = { 104, 260 }, level = 1, group = "HungryLoopSupportedByDevour", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [2820883532] = { "Socketed Gems are Supported by Level 20 Devour" }, [4206709389] = { "" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByFreshMeat"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Fresh Meat", statOrder = { 104, 286 }, level = 1, group = "HungryLoopSupportedByFreshMeat", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [3713917371] = { "Socketed Gems are Supported by Level 20 Fresh Meat" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByFlamewood"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Flamewood", statOrder = { 104, 280 }, level = 1, group = "HungryLoopSupportedByFlamewood", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [285773939] = { "Socketed Gems are Supported by Level 20 Flamewood" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByCorruptingCry"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Corrupting Cry", statOrder = { 104, 252 }, level = 1, group = "HungryLoopSupportedByCorruptingCry", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [3486166615] = { "Socketed Gems are Supported by Level 20 Corrupting Cry" }, [4206709389] = { "" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByVolatility"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Volatility", statOrder = { 104, 403 }, level = 1, group = "HungryLoopSupportedByVolatility", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [4184135167] = { "Socketed Gems are Supported by Level 20 Volatility" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByGuardiansBlessing"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Guardian's Blessing", statOrder = { 104, 301 }, level = 1, group = "HungryLoopSupportedByGuardiansBlessing", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [3434296257] = { "Socketed Gems are Supported by Level 20 Guardian's Blessing" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedBySacrifice"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Sacrifice", statOrder = { 104, 372 }, level = 1, group = "HungryLoopSupportedBySacrifice", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [2302807931] = { "Socketed Gems are Supported by Level 20 Sacrifice" }, [4206709389] = { "" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByFrigidBond"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Frigid Bond", statOrder = { 104, 287 }, level = 1, group = "HungryLoopSupportedByFrigidBond", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [3031999964] = { "Socketed Gems are Supported by Level 20 Frigid Bond" }, [4206709389] = { "" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByLocusMine"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Locus Mine", statOrder = { 104, 328 }, level = 1, group = "HungryLoopSupportedByLocusMine", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [863963929] = { "Socketed Gems are Supported by Level 20 Locus Mine" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedBySadism"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Sadism", statOrder = { 104, 373 }, level = 1, group = "HungryLoopSupportedBySadism", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [794471597] = { "Socketed Gems are Supported by Level 20 Sadism" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByControlledBlaze"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Controlled Blaze", statOrder = { 104, 250 }, level = 1, group = "HungryLoopSupportedByControlledBlaze", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [124226929] = { "Socketed Gems are Supported by Level 20 Controlled Blaze" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByAutomation"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Automation", statOrder = { 104, 229 }, level = 1, group = "HungryLoopSupportedByAutomation", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [397199955] = { "Socketed Gems are Supported by Level 20 Automation" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByCallToArms"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Call To Arms", statOrder = { 104, 238 }, level = 1, group = "HungryLoopSupportedByCallToArms", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [3950097420] = { "Socketed Gems are Supported by Level 20 Call To Arms" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedBySacredWisps"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Sacred Wisps", statOrder = { 104, 371 }, level = 1, group = "HungryLoopSupportedBySacredWisps", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [3304737450] = { "Socketed Gems are Supported by Level 20 Sacred Wisps" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByOverexertion"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Overexertion", statOrder = { 104, 346 }, level = 1, group = "HungryLoopSupportedByOverexertion", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [2707167862] = { "Socketed Gems are Supported by Level 20 Overexertion" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByExpertRetaliation"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Expert Retaliation", statOrder = { 104, 275 }, level = 1, group = "HungryLoopSupportedByExpertRetaliation", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [3570337997] = { "Socketed Gems are Supported by Level 20 Expert Retaliation" }, [4206709389] = { "" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByRupture"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Rupture", statOrder = { 104, 369 }, level = 1, group = "HungryLoopSupportedByRupture", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [970734352] = { "Socketed Gems are Supported by Level 20 Rupture" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByFocusedChannelling"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Focused Channelling", statOrder = { 104, 281 }, level = 1, group = "HungryLoopSupportedByFocusedChannelling", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [2873637569] = { "Socketed Gems are Supported by Level 20 Focused Channelling" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByTornados"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Windburst", statOrder = { 104, 388 }, level = 1, group = "HungryLoopSupportedByTornados", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [143223888] = { "Socketed Gems are Supported by Level 20 Windburst" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByKineticInstability"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Kinetic Instability", statOrder = { 104, 322 }, level = 1, group = "HungryLoopSupportedByKineticInstability", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [3844615363] = { "Socketed Gems are Supported by Level 20 Kinetic Instability" }, [4206709389] = { "" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByLivingLightning"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Living Lightning", statOrder = { 104, 327 }, level = 1, group = "HungryLoopSupportedByLivingLightning", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4096329121] = { "Socketed Gems are Supported by Level 20 Living Lightning" }, [4206709389] = { "" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByExcommunication"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Excommunicate", statOrder = { 104, 274 }, level = 1, group = "HungryLoopSupportedByExcommunication", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [1385879224] = { "Socketed Gems are Supported by Level 20 Excommunicate" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByExemplar"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Exemplar", statOrder = { 104, 335 }, level = 1, group = "HungryLoopSupportedByExemplar", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [3370631451] = { "Socketed Gems are Supported by Level 20 Exemplar" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByBlessedCalling"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Blessed Calling", statOrder = { 104, 249 }, level = 1, group = "HungryLoopSupportedByBlessedCalling", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [2217896386] = { "Socketed Gems are Supported by Level 20 Blessed Calling" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByHallow"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Hallow", statOrder = { 104, 302 }, level = 1, group = "HungryLoopSupportedByHallow", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [88019169] = { "Socketed Gems are Supported by Level 20 Hallow" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByGreaterSpellCascade"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 3 Greater Spell Cascade", statOrder = { 104, 297 }, level = 1, group = "HungryLoopSupportedByGreaterSpellCascade", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [2292610865] = { "Socketed Gems are Supported by Level 3 Greater Spell Cascade" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByEclipse"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 3 Eclipse", statOrder = { 104, 263 }, level = 1, group = "HungryLoopSupportedByEclipse", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [3207084920] = { "Socketed Gems are Supported by Level 3 Eclipse" }, [4206709389] = { "" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByInvertTheRules"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 3 Invert the Rules", statOrder = { 104, 318 }, level = 1, group = "HungryLoopSupportedByInvertTheRules", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [2475469642] = { "Socketed Gems are Supported by Level 3 Invert the Rules" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByCastOnWardBreak"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 3 Cast on Ward Break", statOrder = { 104, 241 }, level = 1, group = "HungryLoopSupportedByCastOnWardBreak", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [668102856] = { "Socketed Gems are Supported by Level 3 Cast on Ward Break" }, [4206709389] = { "" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByWard"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 3 Ward", statOrder = { 104, 404 }, level = 1, group = "HungryLoopSupportedByWard", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4215872260] = { "Socketed Gems are Supported by Level 3 Ward" }, [4206709389] = { "" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByVaalSacrifice"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 3 Vaal Sacrifice", statOrder = { 104, 398 }, level = 1, group = "HungryLoopSupportedByVaalSacrifice", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [1663164024] = { "Socketed Gems are Supported by Level 3 Vaal Sacrifice" }, [4206709389] = { "" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByGreaterSpellEcho"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 3 Greater Spell Echo", statOrder = { 104, 298 }, level = 1, group = "HungryLoopSupportedByGreaterSpellEcho", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [3388448323] = { "Socketed Gems are Supported by Level 3 Greater Spell Echo" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByVaalTemptation"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 3 Vaal Temptation", statOrder = { 104, 399 }, level = 1, group = "HungryLoopSupportedByVaalTemptation", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [3444486593] = { "Socketed Gems are Supported by Level 3 Vaal Temptation" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByMachinations"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 3 Machinations", statOrder = { 104, 329 }, level = 1, group = "HungryLoopSupportedByMachinations", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [532407974] = { "Socketed Gems are Supported by Level 3 Machinations" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByPyre"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 3 Pyre", statOrder = { 104, 359 }, level = 1, group = "HungryLoopSupportedByPyre", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [165595385] = { "Socketed Gems are Supported by Level 3 Pyre" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByBonespire"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 3 Bonespire", statOrder = { 104, 236 }, level = 1, group = "HungryLoopSupportedByBonespire", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [301018639] = { "Socketed Gems are Supported by Level 3 Bonespire" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByFoulgrasp"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 3 Foulgrasp", statOrder = { 104, 283 }, level = 1, group = "HungryLoopSupportedByFoulgrasp", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [2433487502] = { "Socketed Gems are Supported by Level 3 Foulgrasp" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByHiveborn"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 3 Hiveborn", statOrder = { 104, 307 }, level = 1, group = "HungryLoopSupportedByHiveborn", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [4120663487] = { "Socketed Gems are Supported by Level 3 Hiveborn" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByScornfulHerald"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 3 Scornful Herald", statOrder = { 104, 374 }, level = 1, group = "HungryLoopSupportedByScornfulHerald", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [2705480258] = { "Socketed Gems are Supported by Level 3 Scornful Herald" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByCullTheWeak"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 3 Cull the Weak", statOrder = { 104, 253 }, level = 1, group = "HungryLoopSupportedByCullTheWeak", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [2252088501] = { "Socketed Gems are Supported by Level 3 Cull the Weak" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByGreaterAncestralCall"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 3 Greater Ancestral Call", statOrder = { 104, 290 }, level = 1, group = "HungryLoopSupportedByGreaterAncestralCall", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [3607291760] = { "Socketed Gems are Supported by Level 3 Greater Ancestral Call" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByFissure"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 3 Fissure", statOrder = { 104, 278 }, level = 1, group = "HungryLoopSupportedByFissure", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [1379504110] = { "Socketed Gems are Supported by Level 3 Fissure" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByHextoad"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 3 Hextoad", statOrder = { 104, 306 }, level = 1, group = "HungryLoopSupportedByHextoad", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [2172297405] = { "Socketed Gems are Supported by Level 3 Hextoad" }, [4206709389] = { "" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByHexpass"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 3 Hexpass", statOrder = { 104, 305 }, level = 1, group = "HungryLoopSupportedByHexpass", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [3684412823] = { "Socketed Gems are Supported by Level 3 Hexpass" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByGreaterFork"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 3 Greater Fork", statOrder = { 104, 293 }, level = 1, group = "HungryLoopSupportedByGreaterFork", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [2336972637] = { "Socketed Gems are Supported by Level 3 Greater Fork" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByGreaterChain"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 3 Greater Chain", statOrder = { 104, 291 }, level = 1, group = "HungryLoopSupportedByGreaterChain", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [2877350012] = { "Socketed Gems are Supported by Level 3 Greater Chain" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByLethalDose"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 3 Lethal Dose", statOrder = { 104, 323 }, level = 1, group = "HungryLoopSupportedByLethalDose", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [2985239009] = { "Socketed Gems are Supported by Level 3 Lethal Dose" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByCompanionship"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 3 Companionship", statOrder = { 104, 248 }, level = 1, group = "HungryLoopSupportedByCompanionship", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [2020568221] = { "Socketed Gems are Supported by Level 3 Companionship" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByDivineSentinel"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 3 Divine Sentinel", statOrder = { 104, 261 }, level = 1, group = "HungryLoopSupportedByDivineSentinel", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [2755724036] = { "Socketed Gems are Supported by Level 3 Divine Sentinel" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByAnnhilation"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 3 Annihilation", statOrder = { 104, 343 }, level = 1, group = "HungryLoopSupportedByAnnhilation", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [833438017] = { "Socketed Gems are Supported by Level 3 Annihilation" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByEdify"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 3 Edify", statOrder = { 104, 264 }, level = 1, group = "HungryLoopSupportedByEdify", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [503418832] = { "Socketed Gems are Supported by Level 3 Edify" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByInvention"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 3 Invention", statOrder = { 104, 317 }, level = 1, group = "HungryLoopSupportedByInvention", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [2817553827] = { "Socketed Gems are Supported by Level 3 Invention" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByGreaterKineticInstability"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 3 Greater Kinetic Instability", statOrder = { 104, 294 }, level = 1, group = "HungryLoopSupportedByGreaterKineticInstability", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [879572166] = { "Socketed Gems are Supported by Level 3 Greater Kinetic Instability" }, [4206709389] = { "" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByCooldownRecovery"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 3 Cooldown Recovery", statOrder = { 104, 251 }, level = 1, group = "HungryLoopSupportedByCooldownRecovery", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [654335115] = { "Socketed Gems are Supported by Level 3 Cooldown Recovery" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByVoidstorm"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 3 Voidstorm", statOrder = { 104, 402 }, level = 1, group = "HungryLoopSupportedByVoidstorm", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [1159163588] = { "Socketed Gems are Supported by Level 3 Voidstorm" }, [4206709389] = { "" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByVoidShockwave"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 3 Void Shockwave", statOrder = { 104, 401 }, level = 1, group = "HungryLoopSupportedByVoidShockwave", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [3455096360] = { "Socketed Gems are Supported by Level 3 Void Shockwave" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByEldritchBlasphemy"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 3 Eldritch Blasphemy", statOrder = { 104, 266 }, level = 1, group = "HungryLoopSupportedByEldritchBlasphemy", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [1628375748] = { "Socketed Gems are Supported by Level 3 Eldritch Blasphemy" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByGluttony"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 3 Gluttony", statOrder = { 104, 289 }, level = 1, group = "HungryLoopSupportedByGluttony", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [3196117292] = { "Socketed Gems are Supported by Level 3 Gluttony" }, [4206709389] = { "" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByOverheat"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 3 Overheat", statOrder = { 104, 347 }, level = 1, group = "HungryLoopSupportedByOverheat", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [254238561] = { "Socketed Gems are Supported by Level 3 Overheat" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByGreaterMultistrike"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 3 Greater Multistrike", statOrder = { 104, 296 }, level = 1, group = "HungryLoopSupportedByGreaterMultistrike", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [3144811156] = { "Socketed Gems are Supported by Level 3 Greater Multistrike" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByCongregation"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 3 Congregation", statOrder = { 104, 394 }, level = 1, group = "HungryLoopSupportedByCongregation", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [1674086814] = { "Socketed Gems are Supported by Level 3 Congregation" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByFrostmage"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 3 Frostmage", statOrder = { 104, 288 }, level = 1, group = "HungryLoopSupportedByFrostmage", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [139060684] = { "Socketed Gems are Supported by Level 3 Frostmage" }, [4206709389] = { "" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByGreaterDevour"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 3 Greater Devour", statOrder = { 104, 292 }, level = 1, group = "HungryLoopSupportedByGreaterDevour", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [1452699198] = { "Socketed Gems are Supported by Level 3 Greater Devour" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByMagnetism"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 3 Magnetism", statOrder = { 104, 330 }, level = 1, group = "HungryLoopSupportedByMagnetism", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [3401265726] = { "Socketed Gems are Supported by Level 3 Magnetism" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByGreaterUnleash"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 3 Greater Unleash", statOrder = { 104, 299 }, level = 1, group = "HungryLoopSupportedByGreaterUnleash", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [90008414] = { "Socketed Gems are Supported by Level 3 Greater Unleash" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByPacifism"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 3 Pacifism", statOrder = { 104, 349 }, level = 1, group = "HungryLoopSupportedByPacifism", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [346232851] = { "Socketed Gems are Supported by Level 3 Pacifism" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByBloodsoakedBanner"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 3 Bloodsoaked Banner", statOrder = { 104, 233 }, level = 1, group = "HungryLoopSupportedByBloodsoakedBanner", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [1844853227] = { "Socketed Gems are Supported by Level 3 Bloodsoaked Banner" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByMinionPact"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 3 Minion Pact", statOrder = { 104, 338 }, level = 1, group = "HungryLoopSupportedByMinionPact", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [991044906] = { "Socketed Gems are Supported by Level 3 Minion Pact" }, [4206709389] = { "" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByHarrowingThrong"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 3 Harrowing Throng", statOrder = { 104, 303 }, level = 1, group = "HungryLoopSupportedByHarrowingThrong", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [3873656110] = { "Socketed Gems are Supported by Level 3 Harrowing Throng" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByUnholyTrinity"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 3 Unholy Trinity", statOrder = { 104, 395 }, level = 1, group = "HungryLoopSupportedByUnholyTrinity", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [321252761] = { "Socketed Gems are Supported by Level 3 Unholy Trinity" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByOverloadedIntensity"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 3 Overloaded Intensity", statOrder = { 104, 348 }, level = 1, group = "HungryLoopSupportedByOverloadedIntensity", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [2151095784] = { "Socketed Gems are Supported by Level 3 Overloaded Intensity" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByTransfusion"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 3 Transfusion", statOrder = { 104, 389 }, level = 1, group = "HungryLoopSupportedByTransfusion", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [3740740992] = { "Socketed Gems are Supported by Level 3 Transfusion" }, [4206709389] = { "" }, [1782861052] = { "" }, } }, - ["SocketedGemLevelPer25PlayerLevelsUnique__1"] = { affix = "", "+1 to Level of Socketed Skill Gems per 25 Player Levels", statOrder = { 163 }, level = 1, group = "SocketedGemLevelPer25PlayerLevels", weightKey = { }, weightVal = { }, modTags = { "skill", "gem" }, tradeHashes = { [1435838855] = { "+1 to Level of Socketed Skill Gems per 25 Player Levels" }, } }, - ["TriggerSocketedSpellOnAttackUnique__1"] = { affix = "", "Trigger a Socketed Spell when you Attack with this Weapon, with a 0.25 second Cooldown", statOrder = { 831 }, level = 1, group = "TriggerSocketedSpellOnAttack", weightKey = { }, weightVal = { }, modTags = { "skill", "attack", "caster", "gem" }, tradeHashes = { [209056835] = { "Trigger a Socketed Spell when you Attack with this Weapon, with a 0.25 second Cooldown" }, } }, - ["AddsPhysicalDamagePer3PlayerLevelsUnique__1_"] = { affix = "", "Adds 3 to 5 Physical Damage to Attacks with this Weapon per 3 Player Levels", statOrder = { 1269 }, level = 1, group = "AddsPhysicalDamagePer3PlayerLevels", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1454603936] = { "Adds 3 to 5 Physical Damage to Attacks with this Weapon per 3 Player Levels" }, } }, - ["AbyssJewelSocketImplicit"] = { affix = "", "Has 1 Abyssal Socket", statOrder = { 68 }, level = 1, group = "AbyssJewelSocket", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3527617737] = { "Has 1 Abyssal Socket" }, } }, - ["AbyssJewelSocketUnique__1"] = { affix = "", "Has 2 Abyssal Sockets", statOrder = { 68 }, level = 1, group = "AbyssJewelSocket", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3527617737] = { "Has 2 Abyssal Sockets" }, } }, - ["AbyssJewelSocketUnique__2"] = { affix = "", "Has 2 Abyssal Sockets", statOrder = { 68 }, level = 1, group = "AbyssJewelSocket", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3527617737] = { "Has 2 Abyssal Sockets" }, } }, - ["AbyssJewelSocketUnique__3"] = { affix = "", "Has 1 Abyssal Socket", statOrder = { 68 }, level = 1, group = "AbyssJewelSocket", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3527617737] = { "Has 1 Abyssal Socket" }, } }, - ["AbyssJewelSocketUnique__4"] = { affix = "", "Has 2 Abyssal Sockets", statOrder = { 68 }, level = 1, group = "AbyssJewelSocket", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3527617737] = { "Has 2 Abyssal Sockets" }, } }, - ["AbyssJewelSocketUnique__5"] = { affix = "", "Has 1 Abyssal Socket", statOrder = { 68 }, level = 1, group = "AbyssJewelSocket", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3527617737] = { "Has 1 Abyssal Socket" }, } }, - ["AbyssJewelSocketUnique__6_"] = { affix = "", "Has 1 Abyssal Socket", statOrder = { 68 }, level = 1, group = "AbyssJewelSocket", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3527617737] = { "Has 1 Abyssal Socket" }, } }, - ["AbyssJewelSocketUnique__7"] = { affix = "", "Has 1 Abyssal Socket", statOrder = { 68 }, level = 1, group = "AbyssJewelSocket", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3527617737] = { "Has 1 Abyssal Socket" }, } }, - ["AbyssJewelSocketUnique__8"] = { affix = "", "Has 1 Abyssal Socket", statOrder = { 68 }, level = 1, group = "AbyssJewelSocket", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3527617737] = { "Has 1 Abyssal Socket" }, } }, - ["AbyssJewelSocketUnique__9"] = { affix = "", "Has 2 Abyssal Sockets", statOrder = { 68 }, level = 1, group = "AbyssJewelSocket", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3527617737] = { "Has 2 Abyssal Sockets" }, } }, - ["AbyssJewelSocketUnique__10"] = { affix = "", "Has 1 Abyssal Socket", statOrder = { 68 }, level = 1, group = "AbyssJewelSocket", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3527617737] = { "Has 1 Abyssal Socket" }, } }, - ["AbyssJewelSocketUnique__11_"] = { affix = "", "Has 2 Abyssal Sockets", statOrder = { 68 }, level = 1, group = "AbyssJewelSocket", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3527617737] = { "Has 2 Abyssal Sockets" }, } }, - ["AbyssJewelSocketUnique__12"] = { affix = "", "Has 1 Abyssal Socket", statOrder = { 68 }, level = 1, group = "AbyssJewelSocket", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3527617737] = { "Has 1 Abyssal Socket" }, } }, - ["AbyssJewelSocketUnique__13"] = { affix = "", "Has 2 Abyssal Sockets", statOrder = { 68 }, level = 1, group = "AbyssJewelSocket", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3527617737] = { "Has 2 Abyssal Sockets" }, } }, - ["AbyssJewelSocketUnique__14"] = { affix = "", "Has 6 Abyssal Sockets", statOrder = { 68 }, level = 1, group = "AbyssJewelSocket", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3527617737] = { "Has 6 Abyssal Sockets" }, } }, - ["AbyssJewelSocketUnique__15"] = { affix = "", "Has 2 Abyssal Sockets", statOrder = { 68 }, level = 1, group = "AbyssJewelSocket", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3527617737] = { "Has 2 Abyssal Sockets" }, } }, - ["AbyssJewelSocketUnique__16"] = { affix = "", "Has 3 Abyssal Sockets", statOrder = { 68 }, level = 1, group = "AbyssJewelSocket", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3527617737] = { "Has 3 Abyssal Sockets" }, } }, - ["AbyssJewelSocketUnique__17"] = { affix = "", "Has 4 Abyssal Sockets", statOrder = { 68 }, level = 1, group = "AbyssJewelSocket", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3527617737] = { "Has 4 Abyssal Sockets" }, } }, - ["IncreasedCriticalStrikeChancePerAccuracyRatingUnique__1"] = { affix = "", "2% increased Attack Critical Strike Chance per 200 Accuracy Rating", statOrder = { 4845 }, level = 65, group = "IncreasedCriticalStrikeChancePerAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [2196695640] = { "2% increased Attack Critical Strike Chance per 200 Accuracy Rating" }, } }, - ["TriggeredFireAegisSkillUnique__1_"] = { affix = "", "Triggers Level 20 Fire Aegis when Equipped", statOrder = { 769 }, level = 1, group = "TriggeredFireAegisSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [1128763150] = { "Triggers Level 20 Fire Aegis when Equipped" }, } }, - ["TriggeredColdAegisSkillUnique__1"] = { affix = "", "Triggers Level 20 Cold Aegis when Equipped", statOrder = { 767 }, level = 1, group = "TriggeredColdAegisSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [3918947537] = { "Triggers Level 20 Cold Aegis when Equipped" }, } }, - ["TriggeredLightningAegisSkillUnique__1"] = { affix = "", "Triggers Level 20 Lightning Aegis when Equipped", statOrder = { 771 }, level = 1, group = "TriggeredLightningAegisSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [850729424] = { "Triggers Level 20 Lightning Aegis when Equipped" }, } }, - ["TriggeredElementalAegisSkillUnique__1_"] = { affix = "", "Triggers Level 20 Elemental Aegis when Equipped", statOrder = { 768 }, level = 1, group = "TriggeredElementalAegisSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [2602585351] = { "Triggers Level 20 Elemental Aegis when Equipped" }, } }, - ["TriggeredPhysicalAegisSkillUnique__1"] = { affix = "", "Triggers Level 20 Physical Aegis when Equipped", statOrder = { 774 }, level = 1, group = "TriggeredPhysicalAegisSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [1892084828] = { "Triggers Level 20 Physical Aegis when Equipped" }, } }, - ["SupportedByBlasphemyUnique"] = { affix = "", "Socketed Gems are Supported by Level 20 Blasphemy", statOrder = { 520 }, level = 1, group = "SupportedByBlasphemyUnique", weightKey = { }, weightVal = { }, modTags = { "support", "caster", "gem", "curse" }, tradeHashes = { [539747809] = { "Socketed Gems are Supported by Level 20 Blasphemy" }, } }, - ["GrantCursePillarSkillUnique"] = { affix = "", "Grants Level 20 Summon Doedre's Effigy Skill", "Socketed Hex Curse Skills are Triggered by Doedre's Effigy when Summoned", "Hexes from Socketed Skills can apply 5 additional Curses", "20% less Effect of Curses from Socketed Hex Skills", statOrder = { 680, 680.1, 680.2, 680.3 }, level = 1, group = "GrantCursePillarSkillUnique", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [1757548756] = { "Grants Level 20 Summon Doedre's Effigy Skill", "Socketed Hex Curse Skills are Triggered by Doedre's Effigy when Summoned", "Hexes from Socketed Skills can apply 5 additional Curses", "20% less Effect of Curses from Socketed Hex Skills" }, } }, - ["GrantCursePillarSkillUnique__"] = { affix = "", "Grants Level 20 Summon Doedre's Effigy Skill", "Socketed Hex Curse Skills are Triggered by Doedre's Effigy when Summoned", "Hexes from Socketed Skills can apply 5 additional Curses", statOrder = { 681, 681.1, 681.2 }, level = 1, group = "GrantCursePillarSkillUnique__", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [1517357911] = { "Grants Level 20 Summon Doedre's Effigy Skill", "Socketed Hex Curse Skills are Triggered by Doedre's Effigy when Summoned", "Hexes from Socketed Skills can apply 5 additional Curses" }, } }, - ["DamagePerPoisonOnSelfUnique__1_"] = { affix = "", "15% increased Damage for each Poison on you up to a maximum of 75%", statOrder = { 6065 }, level = 1, group = "DamagePerPoisonOnSelf", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [1034580601] = { "15% increased Damage for each Poison on you up to a maximum of 75%" }, } }, - ["MovementSpeedPerPoisonOnSelfUnique__1_"] = { affix = "", "10% increased Movement Speed for each Poison on you up to a maximum of 50%", statOrder = { 9428 }, level = 1, group = "MovementSpeedPerPoisonOnSelf", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [1360723495] = { "10% increased Movement Speed for each Poison on you up to a maximum of 50%" }, } }, - ["TravelSkillsReflectPoisonUnique__1"] = { affix = "", "Poison you inflict with Travel Skills is Reflected to you if you", "have fewer than 5 Poisons on you", statOrder = { 10426, 10426.1 }, level = 57, group = "TravelSkillsReflectPoison", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [130616495] = { "Poison you inflict with Travel Skills is Reflected to you if you", "have fewer than 5 Poisons on you" }, } }, - ["GainCriticalStrikeChanceOnManaSpentUnique__1"] = { affix = "", "Gain +2% to Critical Strike Chance for 2 seconds after Spending a total of 800 Mana", statOrder = { 6744 }, level = 69, group = "GainCriticalStrikeChanceOnManaSpent", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [2864779809] = { "Gain +2% to Critical Strike Chance for 2 seconds after Spending a total of 800 Mana" }, } }, - ["GainHerEmbraceOnIgniteUnique__1"] = { affix = "", "Gain Her Embrace for 3 seconds when you Ignite an Enemy", statOrder = { 6767 }, level = 1, group = "GainHerEmbraceOnIgnite", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [608963131] = { "Gain Her Embrace for 3 seconds when you Ignite an Enemy" }, } }, - ["TakeDamagePerLevelWhileHerEmbraceUnique__1_"] = { affix = "", "While in Her Embrace, take 0.5% of your total Maximum Life and Energy Shield as Fire Damage per second per Level", statOrder = { 9606 }, level = 1, group = "TakeDamagePerLevelWhileHerEmbrace", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2442112158] = { "While in Her Embrace, take 0.5% of your total Maximum Life and Energy Shield as Fire Damage per second per Level" }, } }, - ["GainArmourEqualToManaReservedUnique__1"] = { affix = "", "1% increased Armour per 50 Reserved Mana", statOrder = { 6699 }, level = 1, group = "GainArmourEqualToManaReserved", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [2574337583] = { "1% increased Armour per 50 Reserved Mana" }, } }, - ["VaalPactIfCritRecentlyUnique__1"] = { affix = "", "You have Vaal Pact if you've dealt a Critical Strike Recently", statOrder = { 6828 }, level = 1, group = "VaalPactIfCritRecently", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [1032751668] = { "You have Vaal Pact if you've dealt a Critical Strike Recently" }, } }, - ["AdditionalArrowWhileAccuracyIs3000Uber1"] = { affix = "", "Bow Attacks fire an additional Arrow while Main Hand Accuracy Rating is at least 3000", statOrder = { 9517 }, level = 1, group = "AdditionalArrowWhileAccuracyIs3000", weightKey = { "bow_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "attack" }, tradeHashes = { [3399621281] = { "Bow Attacks fire an additional Arrow while Main Hand Accuracy Rating is at least 3000" }, } }, - ["AccuracyRatingIsDoubledUber1"] = { affix = "", "50% more Global Accuracy Rating", statOrder = { 4514 }, level = 1, group = "AccuracyRatingIsDoubled", weightKey = { "bow_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "attack" }, tradeHashes = { [2161347476] = { "50% more Global Accuracy Rating" }, } }, - ["MeleePhysicalDamagePerStrengthWhileFortifiedUber1"] = { affix = "", "1% increased Melee Physical Damage per 10 Strength while Fortified", statOrder = { 9197 }, level = 1, group = "MeleePhysicalDamagePerStrengthWhileFortified", weightKey = { "mace_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack" }, tradeHashes = { [523320038] = { "1% increased Melee Physical Damage per 10 Strength while Fortified" }, } }, - ["IncreasedEvasionRatingWhileLeechingUber1"] = { affix = "", "20% increased Evasion while Leeching", statOrder = { 6498 }, level = 1, group = "IncreasedEvasionRatingWhileLeeching", weightKey = { "claw_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "defences", "evasion" }, tradeHashes = { [3854334101] = { "20% increased Evasion while Leeching" }, } }, - ["IncreasedEvasionRatingIfHitEnemyRecentlyUber1"] = { affix = "", "20% increased Evasion if you have Hit an Enemy Recently", statOrder = { 6495 }, level = 1, group = "IncreasedEvasionRatingIfHitEnemyRecently", weightKey = { "claw_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "defences", "evasion" }, tradeHashes = { [1511114965] = { "20% increased Evasion if you have Hit an Enemy Recently" }, } }, - ["CriticalStrikeMultiplierIfHaventCritRecentlyUber1"] = { affix = "", "+50% to Critical Strike Multiplier if you haven't dealt a Critical Strike Recently", statOrder = { 5960 }, level = 1, group = "CriticalStrikeMultiplierIfHaventCritRecently", weightKey = { "dagger_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "damage", "critical" }, tradeHashes = { [1478247313] = { "+50% to Critical Strike Multiplier if you haven't dealt a Critical Strike Recently" }, } }, - ["CriticalStrikeChanceAgainstBleedingEnemiesUber1"] = { affix = "", "70% increased Critical Strike Chance against Bleeding Enemies", statOrder = { 3190 }, level = 1, group = "CriticalStrikeChanceAgainstBleedingEnemies", weightKey = { "2h_axe_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "critical" }, tradeHashes = { [2282705842] = { "70% increased Critical Strike Chance against Bleeding Enemies" }, } }, - ["AreaOfEffectWith500StrengthUber1"] = { affix = "", "30% increased Area of Effect if you have at least 500 Strength", statOrder = { 4740 }, level = 1, group = "AreaOfEffectWith500Strength", weightKey = { "mace_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, tradeHashes = { [1966978922] = { "30% increased Area of Effect if you have at least 500 Strength" }, } }, - ["HitsCantBeEvadedIfBlockedRecentlyUber1_"] = { affix = "", "Hits with this Weapon can't be Evaded if you have Blocked Recently", statOrder = { 7941 }, level = 1, group = "HitsCantBeEvadedIfBlockedRecently", weightKey = { "sword_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "attack" }, tradeHashes = { [3124854176] = { "Hits with this Weapon can't be Evaded if you have Blocked Recently" }, } }, - ["AttackSpeedIfBlockedRecentlyUber1"] = { affix = "", "20% increased Attack Speed if you have Blocked Recently", statOrder = { 4896 }, level = 1, group = "AttackSpeedIfBlockedRecently", weightKey = { "sword_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "attack", "speed" }, tradeHashes = { [3203854378] = { "20% increased Attack Speed if you have Blocked Recently" }, } }, - ["AreaOfEffectWhileFortifiedUber1"] = { affix = "", "25% increased Area of Effect while Fortified", statOrder = { 4735 }, level = 1, group = "AreaOfEffectWhileFortified", weightKey = { "2h_sword_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, tradeHashes = { [4281819294] = { "25% increased Area of Effect while Fortified" }, } }, - ["MeleeWeaponRangeWhileFortifiedUber1"] = { affix = "", "+0.2 metres to Melee Strike Range while Fortified", statOrder = { 9215 }, level = 1, group = "MeleeWeaponRangeWhileFortified", weightKey = { "2h_sword_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "attack" }, tradeHashes = { [873142284] = { "+0.2 metres to Melee Strike Range while Fortified" }, } }, - ["StunDurationPerStrengthUber1"] = { affix = "", "2% increased Stun Duration per 15 Strength", statOrder = { 10263 }, level = 1, group = "StunDurationPerStrength", weightKey = { "2h_mace_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, tradeHashes = { [3524793843] = { "2% increased Stun Duration per 15 Strength" }, } }, - ["ReducedStunThresholdWith500StrengthUber1"] = { affix = "", "30% reduced Enemy Stun Threshold while you have at least 500 Strength", statOrder = { 10269 }, level = 1, group = "ReducedStunThresholdWith500Strength", weightKey = { "2h_mace_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, tradeHashes = { [1350423427] = { "30% reduced Enemy Stun Threshold while you have at least 500 Strength" }, } }, - ["AreaDamagePerStrengthUber1"] = { affix = "", "1% increased Area Damage per 12 Strength", statOrder = { 4719 }, level = 1, group = "AreaDamagePerStrength", weightKey = { "2h_mace_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "damage" }, tradeHashes = { [1457012825] = { "1% increased Area Damage per 12 Strength" }, } }, - ["IncreasedDamageAgainstTauntedEnemiesUber1"] = { affix = "", "50% increased Damage with Hits and Ailments against Taunted Enemies", statOrder = { 6072 }, level = 1, group = "IncreasedDamageAgainstTauntedEnemies", weightKey = { "2h_axe_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "damage" }, tradeHashes = { [416495155] = { "50% increased Damage with Hits and Ailments against Taunted Enemies" }, } }, - ["BleedingDamagePerEnduranceChargeUber1"] = { affix = "", "5% increased Damage with Bleeding per Endurance Charge", statOrder = { 5101 }, level = 1, group = "BleedingDamagePerEnduranceCharge", weightKey = { "2h_axe_elder", "default", }, weightVal = { 0, 0 }, modTags = { "physical_damage", "bleed", "influence_mod", "damage", "physical", "attack", "ailment" }, tradeHashes = { [3553579843] = { "5% increased Damage with Bleeding per Endurance Charge" }, } }, - ["MovementSpeedWhileFortifiedUber1"] = { affix = "", "15% increased Movement Speed while Fortified", statOrder = { 3320 }, level = 1, group = "MovementSpeedWhileFortified", weightKey = { "2h_sword_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "speed" }, tradeHashes = { [89156964] = { "15% increased Movement Speed while Fortified" }, } }, - ["MeleeWeaponRangeAtMaximumFrenzyChargesUber1_"] = { affix = "", "+0.3 metres to Melee Strike Range while at Maximum Frenzy Charges", statOrder = { 9214 }, level = 1, group = "MeleeWeaponRangeAtMaximumFrenzyCharges", weightKey = { "2h_sword_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "attack" }, tradeHashes = { [1915592358] = { "+0.3 metres to Melee Strike Range while at Maximum Frenzy Charges" }, } }, - ["BlindEnemiesWhenHitUber1__"] = { affix = "", "20% chance to Blind Enemies when they Hit you", statOrder = { 5220 }, level = 1, group = "BlindEnemiesWhenHit", weightKey = { "claw_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, tradeHashes = { [26216403] = { "20% chance to Blind Enemies when they Hit you" }, } }, - ["PoisonDamageAgainstBleedingEnemiesUber1"] = { affix = "", "50% increased Damage with Poison inflicted on Bleeding Enemies", statOrder = { 9682 }, level = 1, group = "PoisonDamageAgainstBleedingEnemies", weightKey = { "dagger_elder", "default", }, weightVal = { 0, 0 }, modTags = { "chaos_damage", "poison", "influence_mod", "damage", "chaos", "ailment" }, tradeHashes = { [3443763859] = { "50% increased Damage with Poison inflicted on Bleeding Enemies" }, } }, - ["ChanceToBleedOnTauntedEnemiesUber1"] = { affix = "", "20% chance to inflict Bleeding on Hit with Attacks against Taunted Enemies", statOrder = { 4914 }, level = 1, group = "ChanceToBleedOnTauntedEnemies", weightKey = { "2h_axe_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "bleed", "influence_mod", "physical", "attack", "ailment" }, tradeHashes = { [455461462] = { "20% chance to inflict Bleeding on Hit with Attacks against Taunted Enemies" }, } }, - ["AreaOfEffectPerPowerChargeUber1"] = { affix = "", "3% increased Area of Effect per Power Charge", statOrder = { 2129 }, level = 1, group = "AreaOfEffectPerPowerCharge", weightKey = { "staff_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, tradeHashes = { [3094501804] = { "3% increased Area of Effect per Power Charge" }, } }, - ["BleedDamageAgainstPoisonedEnemiesUber1"] = { affix = "", "50% increased Damage with Bleeding inflicted on Poisoned Enemies", statOrder = { 5105 }, level = 1, group = "BleedDamageAgainstPoisonedEnemies", weightKey = { "dagger_elder", "default", }, weightVal = { 0, 0 }, modTags = { "physical_damage", "bleed", "influence_mod", "damage", "physical", "attack", "ailment" }, tradeHashes = { [2598533821] = { "50% increased Damage with Bleeding inflicted on Poisoned Enemies" }, } }, - ["GainEnduranceChargeOnStunChanceUber1"] = { affix = "", "25% chance to gain an Endurance Charge when you Stun an Enemy", statOrder = { 5687 }, level = 1, group = "GainEnduranceChargeOnStunChance", weightKey = { "2h_mace_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "endurance_charge", "influence_mod" }, tradeHashes = { [1582887649] = { "25% chance to gain an Endurance Charge when you Stun an Enemy" }, } }, - ["FortifyEffectWhileStationaryUber1"] = { affix = "", "+4 to maximum Fortification while stationary", statOrder = { 9120 }, level = 1, group = "FortifyEffectWhileStationary", weightKey = { "2h_sword_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, tradeHashes = { [3476600731] = { "+4 to maximum Fortification while stationary" }, } }, - ["FortifyDurationPerStrengthUber1"] = { affix = "", "1% increased Fortification Duration per 10 Strength", statOrder = { 6662 }, level = 1, group = "FortifyDurationPerStrength", weightKey = { "mace_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, tradeHashes = { [3000615037] = { "1% increased Fortification Duration per 10 Strength" }, } }, - ["ReducedElementalDamageTakenPerEnduranceChargeUber1"] = { affix = "", "1% reduced Elemental Damage taken per Endurance Charge", statOrder = { 6320 }, level = 1, group = "ReducedElementalDamageTakenPerEnduranceCharge", weightKey = { "sceptre_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental" }, tradeHashes = { [2615920043] = { "1% reduced Elemental Damage taken per Endurance Charge" }, } }, - ["AreaOfEffectIfBlockedRecentlyUber1"] = { affix = "", "20% increased Area of Effect if you have Blocked Recently", statOrder = { 4730 }, level = 1, group = "AreaOfEffectIfBlockedRecently", weightKey = { "staff_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, tradeHashes = { [1887270958] = { "20% increased Area of Effect if you have Blocked Recently" }, } }, - ["ElementalDamagePer12IntelligenceUber1"] = { affix = "", "1% increased Elemental Damage per 12 Intelligence", statOrder = { 6307 }, level = 1, group = "ElementalDamagePer12Intelligence", weightKey = { "sceptre_elder", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental" }, tradeHashes = { [3384209943] = { "1% increased Elemental Damage per 12 Intelligence" }, } }, - ["AdditionalBlockChanceIfCritRecentlyUber1__"] = { affix = "", "+5% Chance to Block Attack Damage if you've dealt a Critical Strike Recently", statOrder = { 4541 }, level = 1, group = "AdditionalBlockChanceIfCritRecently", weightKey = { "staff_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "block", "influence_mod" }, tradeHashes = { [892558095] = { "+5% Chance to Block Attack Damage if you've dealt a Critical Strike Recently" }, } }, - ["ElementalDamagePer12StrengthUber1"] = { affix = "", "1% increased Elemental Damage per 12 Strength", statOrder = { 6308 }, level = 1, group = "ElementalDamagePer12Strength", weightKey = { "sceptre_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental" }, tradeHashes = { [3770261957] = { "1% increased Elemental Damage per 12 Strength" }, } }, - ["ElementalDamagePerPowerChargeUber1"] = { affix = "", "5% increased Elemental Damage per Power charge", statOrder = { 6309 }, level = 1, group = "ElementalDamagePerPowerCharge", weightKey = { "sceptre_elder", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental" }, tradeHashes = { [1482070333] = { "5% increased Elemental Damage per Power charge" }, } }, - ["CullingStrikeIfCritRecentlyUber1"] = { affix = "", "Hits with this Weapon have Culling Strike if you have dealt a Critical Strike Recently", statOrder = { 7884 }, level = 1, group = "CullingStrikeIfCritRecently", weightKey = { "axe_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "attack" }, tradeHashes = { [318464431] = { "Hits with this Weapon have Culling Strike if you have dealt a Critical Strike Recently" }, } }, - ["CritsHaveCullingStrikeUber1"] = { affix = "", "Critical Strikes with this Weapon have Culling Strike", statOrder = { 7883 }, level = 1, group = "CritsHaveCullingStrike", weightKey = { "dagger_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "attack", "critical" }, tradeHashes = { [1240032295] = { "Critical Strikes with this Weapon have Culling Strike" }, } }, - ["GainEnduranceChargeOnLosingFortifyUber1"] = { affix = "", "Gain an Endurance Charge when you stop being Fortified", statOrder = { 6749 }, level = 1, group = "GainEnduranceChargeOnLosingFortify", weightKey = { "mace_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "endurance_charge", "influence_mod" }, tradeHashes = { [1533103082] = { "Gain an Endurance Charge when you stop being Fortified" }, } }, - ["LifeGainOnHitWhileLeechingUber1"] = { affix = "", "Gain (30-50) Life per Enemy Hit with this Weapon while you are Leeching", statOrder = { 7986 }, level = 1, group = "LifeGainOnHitWhileLeeching", weightKey = { "claw_elder", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "life", "attack" }, tradeHashes = { [840182473] = { "Gain (30-50) Life per Enemy Hit with this Weapon while you are Leeching" }, } }, - ["CannotBeIgnitedWithStrHigherThanDexUnique__1"] = { affix = "", "Cannot be Ignited if Strength is higher than Dexterity", statOrder = { 5407 }, level = 1, group = "CannotBeIgnitedWithStrHigherThanDex", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [676883595] = { "Cannot be Ignited if Strength is higher than Dexterity" }, } }, - ["CannotBeFrozenWithDexHigherThanIntUnique__1"] = { affix = "", "Cannot be Frozen if Dexterity is higher than Intelligence", statOrder = { 5402 }, level = 1, group = "CannotBeFrozenWithDexHigherThanInt", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3881126302] = { "Cannot be Frozen if Dexterity is higher than Intelligence" }, } }, - ["CannotBeShockedWithIntHigherThanStrUnique__1"] = { affix = "", "Cannot be Shocked if Intelligence is higher than Strength", statOrder = { 5415 }, level = 1, group = "CannotBeShockedWithIntHigherThanStr", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3024242403] = { "Cannot be Shocked if Intelligence is higher than Strength" }, } }, - ["IncreasedDamagePerLowestAttributeUnique__1"] = { affix = "", "1% increased Damage per 5 of your lowest Attribute", statOrder = { 6061 }, level = 85, group = "IncreasedDamagePerLowestAttribute", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [35476451] = { "1% increased Damage per 5 of your lowest Attribute" }, } }, - ["IncreasedAilmentDurationUnique__1"] = { affix = "", "40% increased Duration of Ailments on Enemies", statOrder = { 1860 }, level = 1, group = "IncreasedAilmentDuration", weightKey = { }, weightVal = { }, modTags = { "ailment" }, tradeHashes = { [2419712247] = { "40% increased Duration of Ailments on Enemies" }, } }, - ["IncreasedAilmentDurationUnique__2"] = { affix = "", "30% reduced Duration of Ailments on Enemies", statOrder = { 1860 }, level = 88, group = "IncreasedAilmentDuration", weightKey = { }, weightVal = { }, modTags = { "ailment" }, tradeHashes = { [2419712247] = { "30% reduced Duration of Ailments on Enemies" }, } }, - ["IncreasedAilmentDurationUnique__3_"] = { affix = "", "(10-20)% increased Duration of Ailments on Enemies", statOrder = { 1860 }, level = 1, group = "IncreasedAilmentDuration", weightKey = { }, weightVal = { }, modTags = { "ailment" }, tradeHashes = { [2419712247] = { "(10-20)% increased Duration of Ailments on Enemies" }, } }, - ["IncreasedAilmentDurationUnique__4"] = { affix = "", "(5-25)% increased Duration of Ailments on Enemies", statOrder = { 1860 }, level = 1, group = "IncreasedAilmentDuration", weightKey = { }, weightVal = { }, modTags = { "ailment" }, tradeHashes = { [2419712247] = { "(5-25)% increased Duration of Ailments on Enemies" }, } }, - ["FasterAilmentDamageUnique__1"] = { affix = "", "Damaging Ailments deal damage (5-25)% faster", statOrder = { 6127 }, level = 1, group = "FasterAilmentDamage", weightKey = { }, weightVal = { }, modTags = { "ailment" }, tradeHashes = { [538241406] = { "Damaging Ailments deal damage (5-25)% faster" }, } }, - ["SharedSufferingUnique__1"] = { affix = "", "Shared Suffering", statOrder = { 10813 }, level = 1, group = "SharedSuffering", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [956038713] = { "Shared Suffering" }, } }, - ["CreateSmokeCloudWhenTrapTriggeredUnique__1"] = { affix = "", "Trigger Level 20 Fog of War when your Trap is triggered", statOrder = { 815 }, level = 1, group = "CreateSmokeCloudWhenTrapTriggered", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [208447205] = { "Trigger Level 20 Fog of War when your Trap is triggered" }, } }, - ["FlammabilityReservationCostUnique__1"] = { affix = "", "Flammability has no Reservation if Cast as an Aura", statOrder = { 6633 }, level = 1, group = "FlammabilityNoReservation", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [1195140808] = { "Flammability has no Reservation if Cast as an Aura" }, } }, - ["FrostbiteReservationCostUnique__1"] = { affix = "", "Frostbite has no Reservation if Cast as an Aura", statOrder = { 6684 }, level = 1, group = "FrostbiteNoReservation", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [3062707366] = { "Frostbite has no Reservation if Cast as an Aura" }, } }, - ["ConductivityReservationCostUnique__1"] = { affix = "", "Conductivity has no Reservation if Cast as an Aura", statOrder = { 5842 }, level = 1, group = "ConductivityNoReservation", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [1233358566] = { "Conductivity has no Reservation if Cast as an Aura" }, } }, - ["VulnerabilityReservationCostUnique__1_"] = { affix = "", "Vulnerability has no Reservation if Cast as an Aura", statOrder = { 10553 }, level = 1, group = "VulnerabilityNoReservation", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [531868030] = { "Vulnerability has no Reservation if Cast as an Aura" }, } }, - ["DespairReservationCostUnique__1"] = { affix = "", "Despair has no Reservation if Cast as an Aura", statOrder = { 6170 }, level = 1, group = "DespairNoReservation", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [450601566] = { "Despair has no Reservation if Cast as an Aura" }, } }, - ["TemporalChainsReservationCostUnique__1"] = { affix = "", "Temporal Chains has no Reservation if Cast as an Aura", statOrder = { 10367 }, level = 1, group = "TemporalChainsNoReservation", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [2100165275] = { "Temporal Chains has no Reservation if Cast as an Aura" }, } }, - ["TemporalChainsReservationCostUnique__2"] = { affix = "", "Temporal Chains has no Reservation if Cast as an Aura", statOrder = { 10367 }, level = 1, group = "TemporalChainsNoReservation", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [2100165275] = { "Temporal Chains has no Reservation if Cast as an Aura" }, } }, - ["PunishmentReservationCostUnique__1"] = { affix = "", "Punishment has no Reservation if Cast as an Aura", statOrder = { 9759 }, level = 1, group = "PunishmentNoReservation", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [2097195894] = { "Punishment has no Reservation if Cast as an Aura" }, } }, - ["EnfeebleReservationCostUnique__1"] = { affix = "", "Enfeeble has no Reservation if Cast as an Aura", statOrder = { 6464 }, level = 1, group = "EnfeebleNoReservation", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [56919069] = { "Enfeeble has no Reservation if Cast as an Aura" }, } }, - ["ElementalWeaknessReservationCostUnique__1"] = { affix = "", "Elemental Weakness has no Reservation if Cast as an Aura", statOrder = { 6344 }, level = 1, group = "ElementalWeaknessNoReservation", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [3416664215] = { "Elemental Weakness has no Reservation if Cast as an Aura" }, } }, - ["ChanceToDodgeWhileOffhandIsEmpty"] = { affix = "", "+(30-40)% chance to Suppress Spell Damage while your Off Hand is empty", statOrder = { 10180 }, level = 1, group = "ChanceToDodgeWhileOffhandIsEmpty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2076926581] = { "+(30-40)% chance to Suppress Spell Damage while your Off Hand is empty" }, } }, - ["IncreasedColdDamageWhileOffhandIsEmpty_"] = { affix = "", "(100-200)% increased Cold Damage while your Off Hand is empty", statOrder = { 5816 }, level = 1, group = "IncreasedColdDamageWhileOffhandIsEmpty", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3520048646] = { "(100-200)% increased Cold Damage while your Off Hand is empty" }, } }, - ["DisplayIronReflexesFor8SecondsUnique__1"] = { affix = "", "Every 16 seconds you gain Iron Reflexes for 8 seconds", statOrder = { 10843 }, level = 1, group = "DisplayIronReflexesFor8Seconds", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2200114771] = { "Every 16 seconds you gain Iron Reflexes for 8 seconds" }, } }, - ["ArborixMoreDamageAtCloseRangeUnique__1"] = { affix = "", "30% more Damage with Arrow Hits at Close Range while you have Iron Reflexes", statOrder = { 10849 }, level = 1, group = "ArborixMoreDamageAtCloseRange", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [304032021] = { "30% more Damage with Arrow Hits at Close Range while you have Iron Reflexes" }, } }, - ["FarShotWhileYouDoNotHaveIronReflexesUnique__1_"] = { affix = "", "You have Far Shot while you do not have Iron Reflexes", statOrder = { 10853 }, level = 1, group = "FarShotWhileYouDoNotHaveIronReflexes", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3284029342] = { "You have Far Shot while you do not have Iron Reflexes" }, } }, - ["AttackCastMovementSpeedWhileYouDoNotHaveIronReflexesUnique__1"] = { affix = "", "30% increased Attack, Cast and Movement Speed while you do not have Iron Reflexes", statOrder = { 10852 }, level = 1, group = "AttackCastMovementSpeedWhileYouDoNotHaveIronReflexes", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed" }, tradeHashes = { [3476327198] = { "30% increased Attack, Cast and Movement Speed while you do not have Iron Reflexes" }, } }, - ["ElementalDamageCanShockUnique__1__"] = { affix = "", "Your Elemental Damage can Shock", statOrder = { 2873 }, level = 1, group = "ElementalDamageCanShock", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [2933625540] = { "Your Elemental Damage can Shock" }, } }, - ["EnemiesTakeIncreasedDamagePerAilmentTypeUnique__1"] = { affix = "", "Enemies take (5-10)% increased Damage for each type of Ailment you have inflicted on them", statOrder = { 2462 }, level = 1, group = "EnemiesTakeIncreasedDamagePerAilmentType", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [1217730254] = { "Enemies take (5-10)% increased Damage for each type of Ailment you have inflicted on them" }, } }, - ["DeathWalk"] = { affix = "", "Triggers Level 20 Death Walk when Equipped", statOrder = { 789 }, level = 1, group = "DeathWalk", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [651875072] = { "Triggers Level 20 Death Walk when Equipped" }, } }, - ["DamagePerAbyssJewelTypeUnique__1_"] = { affix = "", "10% increased Damage for each type of Abyss Jewel affecting you", statOrder = { 4167 }, level = 1, group = "DamagePerAbyssJewelType", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [154272030] = { "10% increased Damage for each type of Abyss Jewel affecting you" }, } }, - ["AdditionalPhysicalDamageReductionWhileMovingUnique__1"] = { affix = "", "5% additional Physical Damage Reduction while moving", statOrder = { 4584 }, level = 1, group = "AdditionalPhysicalDamageReductionWhileMoving", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHashes = { [2713357573] = { "5% additional Physical Damage Reduction while moving" }, } }, - ["ReducedElementalDamageTakenWhileStationaryUnique__1_"] = { affix = "", "5% reduced Elemental Damage taken while stationary", statOrder = { 6321 }, level = 1, group = "ReducedElementalDamageTakenWhileStationary", weightKey = { }, weightVal = { }, modTags = { "elemental" }, tradeHashes = { [983989924] = { "5% reduced Elemental Damage taken while stationary" }, } }, - ["IncreasedLifePerAbyssalJewelUnique__1"] = { affix = "", "1% increased Maximum Life per Abyss Jewel affecting you", statOrder = { 9165 }, level = 1, group = "IncreasedLifePerAbyssalJewel", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3185671537] = { "1% increased Maximum Life per Abyss Jewel affecting you" }, } }, - ["IncreasedManaPerAbyssalJewelUnique__1_"] = { affix = "", "1% increased Maximum Mana per Abyss Jewel affecting you", statOrder = { 9173 }, level = 1, group = "IncreasedManaPerAbyssalJewel", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2135370196] = { "1% increased Maximum Mana per Abyss Jewel affecting you" }, } }, - ["IncreasedLifePerAbyssalJewelUnique__2"] = { affix = "", "3% increased Maximum Life per Abyss Jewel affecting you", statOrder = { 9165 }, level = 1, group = "IncreasedLifePerAbyssalJewel", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3185671537] = { "3% increased Maximum Life per Abyss Jewel affecting you" }, } }, - ["IncreasedManaPerAbyssalJewelUnique__2"] = { affix = "", "3% increased Maximum Mana per Abyss Jewel affecting you", statOrder = { 9173 }, level = 1, group = "IncreasedManaPerAbyssalJewel", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2135370196] = { "3% increased Maximum Mana per Abyss Jewel affecting you" }, } }, - ["ElementalPenetrationPerAbyssalJewelUnique__1"] = { affix = "", "Penetrate 4% Elemental Resistances per Abyss Jewel affecting you", statOrder = { 9596 }, level = 1, group = "ElementalPenetrationPerAbyssalJewel", weightKey = { }, weightVal = { }, modTags = { "elemental" }, tradeHashes = { [4250752669] = { "Penetrate 4% Elemental Resistances per Abyss Jewel affecting you" }, } }, - ["IncreasedLifePerElderItemUnique__1"] = { affix = "", "+6 to Maximum Life per Elder Item Equipped", statOrder = { 4328 }, level = 1, group = "IncreasedLifePerElderItem", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3849523464] = { "+6 to Maximum Life per Elder Item Equipped" }, } }, - ["AilmentEffectPerElderItemUnique__1"] = { affix = "", "8% increased Effect of Non-Damaging Ailments per Elder Item Equipped", statOrder = { 4332 }, level = 1, group = "AilmentEffectPerElderItem", weightKey = { }, weightVal = { }, modTags = { "ailment" }, tradeHashes = { [4133552694] = { "8% increased Effect of Non-Damaging Ailments per Elder Item Equipped" }, } }, - ["AilmentDamagePerElderItemUnique__1__"] = { affix = "", "15% increased Damage with Ailments per Elder Item Equipped", statOrder = { 4329 }, level = 1, group = "AilmentDamagePerElderItem", weightKey = { }, weightVal = { }, modTags = { "damage", "ailment" }, tradeHashes = { [2418574586] = { "15% increased Damage with Ailments per Elder Item Equipped" }, } }, - ["AilmentDamageOverTimeMultiplierPerElderItemUnique__1"] = { affix = "", "+4% to Damage over Time Multiplier for Ailments per Elder Item Equipped", statOrder = { 4330 }, level = 1, group = "AilmentDamageOverTimeMultiplierPerElderItem", weightKey = { }, weightVal = { }, modTags = { "damage", "ailment" }, tradeHashes = { [2212731469] = { "+4% to Damage over Time Multiplier for Ailments per Elder Item Equipped" }, } }, - ["RemoveAilmentOnFlaskUseIfAllItemsAreElderUnique__1_"] = { affix = "", "Remove an Ailment when you use a Flask if all Equipped Items are Elder Items", statOrder = { 9912 }, level = 1, group = "RemoveAilmentOnFlaskUseIfAllItemsAreElder", weightKey = { }, weightVal = { }, modTags = { "flask", "ailment" }, tradeHashes = { [2917587077] = { "Remove an Ailment when you use a Flask if all Equipped Items are Elder Items" }, } }, - ["StrengthDamageBonus3Per10Unique__1"] = { affix = "", "Strength's Damage Bonus instead grants 3% increased Melee", "Physical Damage per 10 Strength", statOrder = { 10257, 10257.1 }, level = 1, group = "StrengthDamageBonus3Per10", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1531241759] = { "Strength's Damage Bonus instead grants 3% increased Melee", "Physical Damage per 10 Strength" }, } }, - ["CannotBlockSpellsUnique__1"] = { affix = "", "Cannot Block Spell Damage", statOrder = { 5428 }, level = 1, group = "CannotBlockSpells", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [4076910393] = { "Cannot Block Spell Damage" }, } }, - ["LocalFlatIncreasedEvasionAndEnergyShieldUnique__1"] = { affix = "", "+(80-100) to Evasion Rating and Energy Shield", statOrder = { 7932 }, level = 1, group = "LocalIncreasedEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1549868759] = { "+(80-100) to Evasion Rating and Energy Shield" }, } }, - ["LocalFlatIncreasedEvasionAndEnergyShieldUnique__2_"] = { affix = "", "+(120-150) to Evasion Rating and Energy Shield", statOrder = { 7932 }, level = 1, group = "LocalIncreasedEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1549868759] = { "+(120-150) to Evasion Rating and Energy Shield" }, } }, - ["IntimidateOnHitWithMeleeAbyssJewelUnique__1"] = { affix = "", "With a Murderous Eye Jewel Socketed, Intimidate Enemies for 4 seconds on Hit with Attacks", statOrder = { 7862 }, level = 1, group = "IntimidateOnHitWithMeleeAbyssJewel", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [642457541] = { "With a Murderous Eye Jewel Socketed, Intimidate Enemies for 4 seconds on Hit with Attacks" }, } }, - ["FortifyOnHitWithMeleeAbyssJewelUnique__1"] = { affix = "", "With a Murderous Eye Jewel Socketed, Melee Hits have 25% chance to Fortify", statOrder = { 7935 }, level = 1, group = "FortifyOnHitWithMeleeAbyssJewel", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [186482813] = { "With a Murderous Eye Jewel Socketed, Melee Hits have 25% chance to Fortify" }, } }, - ["RageOnHitWithMeleeAbyssJewelUnique__1"] = { affix = "", "With a Murderous Eye Jewel Socketed, Melee Attacks grant 1 Rage on Hit", statOrder = { 7934 }, level = 1, group = "RageOnHitWithMeleeAbyssJewel", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [3892691596] = { "With a Murderous Eye Jewel Socketed, Melee Attacks grant 1 Rage on Hit" }, } }, - ["MaimOnHitWithRangedAbyssJewelUnique__1"] = { affix = "", "With a Searching Eye Jewel Socketed, Maim Enemies for 4 seconds on Hit with Attacks", statOrder = { 7863 }, level = 1, group = "MaimOnHitWithRangedAbyssJewel", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2750004091] = { "With a Searching Eye Jewel Socketed, Maim Enemies for 4 seconds on Hit with Attacks" }, } }, - ["BlindOnHitWithRangedAbyssJewelUnique__1"] = { affix = "", "With a Searching Eye Jewel Socketed, Blind Enemies for 4 seconds on Hit with Attacks", statOrder = { 7866 }, level = 1, group = "BlindOnHitWithRangedAbyssJewel", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2044840211] = { "With a Searching Eye Jewel Socketed, Blind Enemies for 4 seconds on Hit with Attacks" }, } }, - ["OnslaughtOnKillWithRangedAbyssJewelUnique__1"] = { affix = "", "With a Searching Eye Jewel Socketed, Attacks have 25% chance to grant Onslaught On Kill", statOrder = { 7860 }, level = 1, group = "OnslaughtOnKillWithRangedAbyssJewel", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2863332749] = { "With a Searching Eye Jewel Socketed, Attacks have 25% chance to grant Onslaught On Kill" }, } }, - ["ArcaneSurgeOnHitWithSpellAbyssJewelUnique__1"] = { affix = "", "With a Hypnotic Eye Jewel Socketed, gain Arcane Surge on Hit with Spells", statOrder = { 8029 }, level = 1, group = "ArcaneSurgeOnHitWithSpellAbyssJewel", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHashes = { [3153744598] = { "With a Hypnotic Eye Jewel Socketed, gain Arcane Surge on Hit with Spells" }, } }, - ["MinionAccuracyWithMinionAbyssJewelUnique__1"] = { affix = "", "With a Ghastly Eye Jewel Socketed, Minions have +1000 to Accuracy Rating", statOrder = { 7998 }, level = 1, group = "MinionAccuracyWithMinionAbyssJewel", weightKey = { }, weightVal = { }, modTags = { "attack", "minion" }, tradeHashes = { [2388362438] = { "With a Ghastly Eye Jewel Socketed, Minions have +1000 to Accuracy Rating" }, } }, - ["MinionUnholyMightWithMinionAbyssJewelUnique__1"] = { affix = "", "With a Ghastly Eye Jewel Socketed, Minions have 25% chance to", "gain Unholy Might on Hit with Spells", statOrder = { 7999, 7999.1 }, level = 1, group = "MinionUnholyMightWithSpells", weightKey = { }, weightVal = { }, modTags = { "physical", "chaos", "caster", "minion" }, tradeHashes = { [4122732904] = { "With a Ghastly Eye Jewel Socketed, Minions have 25% chance to", "gain Unholy Might on Hit with Spells" }, } }, - ["AbyssJewelEffectUnique__1"] = { affix = "", "(50-100)% increased Effect of Socketed Abyss Jewels", statOrder = { 221 }, level = 1, group = "AbyssJewelEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1482572705] = { "(50-100)% increased Effect of Socketed Abyss Jewels" }, } }, - ["MovementVelocityWithMagicAbyssJewelUnique__1"] = { affix = "", "(24-32)% increased Movement Speed while affected by a Magic Abyss Jewel", statOrder = { 9443 }, level = 1, group = "MovementVelocityWithMagicAbyssJewel", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3874817029] = { "(24-32)% increased Movement Speed while affected by a Magic Abyss Jewel" }, } }, - ["ElementalAilmentDurationWithRareAbyssJewelUnique__1"] = { affix = "", "(40-60)% reduced Duration of Elemental Ailments on You while affected by a Rare Abyss Jewel", statOrder = { 6291 }, level = 1, group = "ElementalAilmentDurationWithRareAbyssJewel", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [287112619] = { "(40-60)% reduced Duration of Elemental Ailments on You while affected by a Rare Abyss Jewel" }, } }, - ["ReservationEfficiencyWithUniqueAbyssJewelUnique__1"] = { affix = "", "(16-24)% increased Reservation Efficiency of Skills while affected by a Unique Abyss Jewel", statOrder = { 9921 }, level = 1, group = "ReservationEfficiencyWithUniqueAbyssJewel", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2811179011] = { "(16-24)% increased Reservation Efficiency of Skills while affected by a Unique Abyss Jewel" }, } }, - ["IncreasedArmourWhileStationaryUnique__1"] = { affix = "", "80% increased Armour while stationary", statOrder = { 4774 }, level = 1, group = "IncreasedArmourWhileStationary", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [3184053924] = { "80% increased Armour while stationary" }, } }, - ["NumberOfProjectilesIfHitRecentlyUnique__1"] = { affix = "", "Skills fire 2 additional Projectiles if you've been Hit Recently", statOrder = { 9525 }, level = 1, group = "NumberOfProjectilesIfHitRecently", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [988207959] = { "Skills fire 2 additional Projectiles if you've been Hit Recently" }, } }, - ["GainIronReflexesWhileStationaryUnique__1"] = { affix = "", "Iron Reflexes while stationary", statOrder = { 10841 }, level = 1, group = "GainIronReflexesWhileStationary", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [187998220] = { "Iron Reflexes while stationary" }, } }, - ["PlayerFarShotUnique__2"] = { affix = "", "Far Shot", statOrder = { 10828 }, level = 1, group = "PlayerFarShot", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2483362276] = { "Far Shot" }, } }, - ["PlayerFarShotUnique__3"] = { affix = "", "Far Shot", statOrder = { 10828 }, level = 1, group = "PlayerFarShot", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2483362276] = { "Far Shot" }, } }, - ["KeystonePointBlankUnique__2"] = { affix = "", "Point Blank", statOrder = { 10802 }, level = 1, group = "PointBlank", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [2896346114] = { "Point Blank" }, } }, - ["NumberOfProjectilesIfUsedAMovementSkillRecentlyUnique__1"] = { affix = "", "Skills fire 2 additional Projectiles if you've used a Movement Skill Recently", statOrder = { 9526 }, level = 1, group = "NumberOfProjectilesIfUsedAMovementSkillRecently", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2809802678] = { "Skills fire 2 additional Projectiles if you've used a Movement Skill Recently" }, } }, - ["EvasionRatingWhileMovingUnique__1"] = { affix = "", "80% increased Evasion Rating while moving", statOrder = { 6499 }, level = 1, group = "EvasionRatingWhileMoving", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [734823525] = { "80% increased Evasion Rating while moving" }, } }, - ["AddedPhysicalDamageVersusIgnitedEnemiesUnique__1"] = { affix = "", "Attacks with this Weapon deal (80-100) to (160-200) added Physical Damage to Ignited Enemies", statOrder = { 4877 }, level = 1, group = "AddedPhysicalDamageVersusIgnitedEnemies", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [2202639361] = { "Attacks with this Weapon deal (80-100) to (160-200) added Physical Damage to Ignited Enemies" }, } }, - ["AddedFireDamageVersusBleedingEnemiesUnique__1"] = { affix = "", "Attacks with this Weapon deal (80-100) to (160-200) added Fire Damage to Bleeding Enemies", statOrder = { 4870 }, level = 1, group = "AddedFireDamageVersusBleedingEnemies", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [2453554491] = { "Attacks with this Weapon deal (80-100) to (160-200) added Fire Damage to Bleeding Enemies" }, } }, - ["GainAvatarOfFireEvery8SecondsUnique__1"] = { affix = "", "Every 8 seconds, gain Avatar of Fire for 4 seconds", statOrder = { 10839 }, level = 1, group = "GainAvatarOfFireEvery8Seconds", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3345955207] = { "Every 8 seconds, gain Avatar of Fire for 4 seconds" }, } }, - ["ChanceToBleedIgnitedEnemiesUnique__1"] = { affix = "", "Attacks with this Weapon have 25% chance to inflict Bleeding against Ignited Enemies", statOrder = { 4912 }, level = 1, group = "ChanceToBleedIgnitedEnemies", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [3148418088] = { "Attacks with this Weapon have 25% chance to inflict Bleeding against Ignited Enemies" }, } }, - ["IncreasedCriticalStrikeChanceWithAvatarOfFireUnique__1"] = { affix = "", "(160-200)% increased Critical Strike Chance while you have Avatar of Fire", statOrder = { 10847 }, level = 1, group = "IncreasedCriticalStrikeChanceWithAvatarOfFire", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [2815652613] = { "(160-200)% increased Critical Strike Chance while you have Avatar of Fire" }, } }, - ["ArmourWithoutAvatarOfFireUnique__1"] = { affix = "", "+2000 Armour while you do not have Avatar of Fire", statOrder = { 10851 }, level = 1, group = "ArmourWithoutAvatarOfFire", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [4078952782] = { "+2000 Armour while you do not have Avatar of Fire" }, } }, - ["ConvertPhysicalToFireWithAvatarOfFireUnique__1"] = { affix = "", "50% of Physical Damage Converted to Fire while you have Avatar of Fire", statOrder = { 10848 }, level = 1, group = "ConvertPhysicalToFireWithAvatarOfFire", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [2052379536] = { "50% of Physical Damage Converted to Fire while you have Avatar of Fire" }, } }, - ["GainElementalOverloadEvery16SecondsUnique__1"] = { affix = "", "Every 16 seconds you gain Elemental Overload for 8 seconds", statOrder = { 10840 }, level = 1, group = "GainElementalOverloadEvery16Seconds", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "critical" }, tradeHashes = { [708913352] = { "Every 16 seconds you gain Elemental Overload for 8 seconds" }, } }, - ["GainResoluteTechniqueWithoutElementalOverloadUnique__1"] = { affix = "", "You have Resolute Technique while you do not have Elemental Overload", statOrder = { 10842 }, level = 1, group = "GainResoluteTechniqueWithoutElementalOverload", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [2905429068] = { "You have Resolute Technique while you do not have Elemental Overload" }, } }, - ["ProjectilesGainPercentOfNonChaosAsChaosUnique__1"] = { affix = "", "Projectiles gain (15-20)% of Non-Chaos Damage as extra Chaos Damage per Chain", statOrder = { 9740 }, level = 70, group = "ProjectilesGainPercentOfNonChaosAsChaos", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [1924041432] = { "Projectiles gain (15-20)% of Non-Chaos Damage as extra Chaos Damage per Chain" }, } }, - ["ProjectilesGainPercentOfNonChaosAsChaosUnique__2"] = { affix = "", "Projectiles that have Chained gain (20-35)% of Non-Chaos Damage as extra Chaos Damage", statOrder = { 9739 }, level = 70, group = "ProjectilesGainPercentOfNonChaosAsChaos2", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [1698276268] = { "Projectiles that have Chained gain (20-35)% of Non-Chaos Damage as extra Chaos Damage" }, } }, - ["DeterminationPhysicalDamageReduction"] = { affix = "", "(5-8)% additional Physical Damage Reduction while affected by Determination", statOrder = { 4579 }, level = 1, group = "DeterminationPhysicalDamageReduction", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHashes = { [1873457881] = { "(5-8)% additional Physical Damage Reduction while affected by Determination" }, } }, - ["DeterminationAdditionalBlock"] = { affix = "", "+(5-8)% Chance to Block Attack Damage while affected by Determination", statOrder = { 5231 }, level = 1, group = "DeterminationAdditionalBlock", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [3692646597] = { "+(5-8)% Chance to Block Attack Damage while affected by Determination" }, } }, - ["DeterminationUnaffectedByVulnerability"] = { affix = "", "Unaffected by Vulnerability while affected by Determination", statOrder = { 10486 }, level = 1, group = "DeterminationUnaffectedByVulnerability", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [3207781478] = { "Unaffected by Vulnerability while affected by Determination" }, } }, - ["DeterminationReducedExtraDamageFromCrits"] = { affix = "", "You take (40-60)% reduced Extra Damage from Critical Strikes while affected by Determination", statOrder = { 6537 }, level = 1, group = "DeterminationReducedExtraDamageFromCrits", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [68410701] = { "You take (40-60)% reduced Extra Damage from Critical Strikes while affected by Determination" }, } }, - ["DeterminationReducedReflectedPhysicalDamage"] = { affix = "", "(50-75)% of Physical Damage from your Hits cannot be Reflected while affected by Determination", statOrder = { 9375 }, level = 1, group = "DeterminationReducedReflectedPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHashes = { [2255585376] = { "(50-75)% of Physical Damage from your Hits cannot be Reflected while affected by Determination" }, } }, - ["DeterminationAdditionalArmour"] = { affix = "", "+(600-1000) to Armour while affected by Determination", statOrder = { 4765 }, level = 1, group = "DeterminationAdditionalArmour", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [3742808908] = { "+(600-1000) to Armour while affected by Determination" }, } }, - ["GraceAdditionalChanceToEvade"] = { affix = "", "+(5-8)% chance to Evade Attack Hits while affected by Grace", statOrder = { 5675 }, level = 1, group = "GraceAdditionalChanceToEvade", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [969576725] = { "+(5-8)% chance to Evade Attack Hits while affected by Grace" }, } }, - ["GraceChanceToDodge"] = { affix = "", "+(12-15)% chance to Suppress Spell Damage while affected by Grace", statOrder = { 10175 }, level = 1, group = "GraceChanceToDodge", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4071658793] = { "+(12-15)% chance to Suppress Spell Damage while affected by Grace" }, } }, - ["GraceUnaffectedByEnfeeble"] = { affix = "", "Unaffected by Enfeeble while affected by Grace", statOrder = { 10470 }, level = 1, group = "GraceUnaffectedByEnfeeble", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [2365917222] = { "Unaffected by Enfeeble while affected by Grace" }, } }, - ["GraceIncreasedMovementSpeed"] = { affix = "", "(10-15)% increased Movement Speed while affected by Grace", statOrder = { 9430 }, level = 1, group = "GraceIncreasedMovementSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [3329402420] = { "(10-15)% increased Movement Speed while affected by Grace" }, } }, - ["GraceBlindEnemiesWhenHit"] = { affix = "", "(30-50)% chance to Blind Enemies which Hit you while affected by Grace", statOrder = { 5221 }, level = 1, group = "GraceBlindEnemiesWhenHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2548097895] = { "(30-50)% chance to Blind Enemies which Hit you while affected by Grace" }, } }, - ["DisciplineEnergyShieldRegen"] = { affix = "", "Regenerate (1.5-2.5)% of Energy Shield per Second while affected by Discipline", statOrder = { 6460 }, level = 1, group = "DisciplineEnergyShieldRegen", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [991194404] = { "Regenerate (1.5-2.5)% of Energy Shield per Second while affected by Discipline" }, } }, - ["DisciplineAdditionalSpellBlock"] = { affix = "", "+(5-8)% Chance to Block Spell Damage while affected by Discipline", statOrder = { 5652 }, level = 1, group = "DisciplineAdditionalSpellBlock", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [1313498929] = { "+(5-8)% Chance to Block Spell Damage while affected by Discipline" }, } }, - ["DisciplineFasterStartOfRecharge"] = { affix = "", "(30-40)% faster start of Energy Shield Recharge while affected by Discipline", statOrder = { 6430 }, level = 1, group = "DisciplineFasterStartOfRecharge", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1016185292] = { "(30-40)% faster start of Energy Shield Recharge while affected by Discipline" }, } }, - ["DisciplineEnergyShieldPerHit"] = { affix = "", "Gain (20-30) Energy Shield per Enemy Hit while affected by Discipline", statOrder = { 6433 }, level = 1, group = "DisciplineEnergyShieldPerHit", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3765507527] = { "Gain (20-30) Energy Shield per Enemy Hit while affected by Discipline" }, } }, - ["DisciplineEnergyShieldRecoveryRate"] = { affix = "", "(10-15)% increased Energy Shield Recovery Rate while affected by Discipline", statOrder = { 6453 }, level = 1, group = "DisciplineEnergyShieldRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [80470845] = { "(10-15)% increased Energy Shield Recovery Rate while affected by Discipline" }, } }, - ["WrathLightningPenetration"] = { affix = "", "Damage Penetrates (10-15)% Lightning Resistance while affected by Wrath", statOrder = { 9880 }, level = 1, group = "WrathLightningPenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [1077131949] = { "Damage Penetrates (10-15)% Lightning Resistance while affected by Wrath" }, } }, - ["WrathLightningDamageManaLeech"] = { affix = "", "(1-1.5)% of Lightning Damage is Leeched as Mana while affected by Wrath", statOrder = { 8184 }, level = 1, group = "WrathLightningDamageManaLeech", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "elemental", "lightning" }, tradeHashes = { [2889601846] = { "(1-1.5)% of Lightning Damage is Leeched as Mana while affected by Wrath" }, } }, - ["WrathLightningDamageESLeech"] = { affix = "", "(1-1.5)% of Lightning Damage is Leeched as Energy Shield while affected by Wrath", statOrder = { 6438 }, level = 1, group = "WrathLightningDamageESLeech", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield", "elemental", "lightning" }, tradeHashes = { [121436064] = { "(1-1.5)% of Lightning Damage is Leeched as Energy Shield while affected by Wrath" }, } }, - ["WrathPhysicalAddedAsLightning_"] = { affix = "", "Gain (15-25)% of Physical Damage as Extra Lightning Damage while affected by Wrath", statOrder = { 9636 }, level = 1, group = "WrathPhysicalAddedAsLightning", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [2255914633] = { "Gain (15-25)% of Physical Damage as Extra Lightning Damage while affected by Wrath" }, } }, - ["WrathPhysicalConvertedToLightning"] = { affix = "", "(25-40)% of Physical Damage Converted to Lightning Damage while affected by Wrath", statOrder = { 5045 }, level = 1, group = "WrathPhysicalConvertedToLightning", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [2106756686] = { "(25-40)% of Physical Damage Converted to Lightning Damage while affected by Wrath" }, } }, - ["WrathIncreasedLightningDamage"] = { affix = "", "(40-60)% increased Lightning Damage while affected by Wrath", statOrder = { 7450 }, level = 1, group = "WrathIncreasedLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [418293304] = { "(40-60)% increased Lightning Damage while affected by Wrath" }, } }, - ["WrathIncreasedCriticalStrikeChance"] = { affix = "", "(70-100)% increased Critical Strike Chance while affected by Wrath", statOrder = { 5941 }, level = 1, group = "WrathIncreasedCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [3357049845] = { "(70-100)% increased Critical Strike Chance while affected by Wrath" }, } }, - ["AngerFirePenetration"] = { affix = "", "Damage Penetrates (10-15)% Fire Resistance while affected by Anger", statOrder = { 9879 }, level = 1, group = "AngerFirePenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3111519953] = { "Damage Penetrates (10-15)% Fire Resistance while affected by Anger" }, } }, - ["AngerFireDamageLifeLeech_"] = { affix = "", "(1-1.5)% of Fire Damage Leeched as Life while affected by Anger", statOrder = { 7369 }, level = 1, group = "AngerFireDamageLifeLeech", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "elemental", "fire" }, tradeHashes = { [2312747856] = { "(1-1.5)% of Fire Damage Leeched as Life while affected by Anger" }, } }, - ["AngerPhysicalAddedAsFire"] = { affix = "", "Gain (15-25)% of Physical Damage as Extra Fire Damage while affected by Anger", statOrder = { 9633 }, level = 1, group = "AngerPhysicalAddedAsFire", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [4245204226] = { "Gain (15-25)% of Physical Damage as Extra Fire Damage while affected by Anger" }, } }, - ["AngerPhysicalConvertedToFire"] = { affix = "", "(25-40)% of Physical Damage Converted to Fire Damage while affected by Anger", statOrder = { 5044 }, level = 1, group = "AngerPhysicalConvertedToFire", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [3624529132] = { "(25-40)% of Physical Damage Converted to Fire Damage while affected by Anger" }, } }, - ["AngerIncreasedFireDamage"] = { affix = "", "(40-60)% increased Fire Damage while affected by Anger", statOrder = { 6569 }, level = 1, group = "AngerIncreasedFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3337107517] = { "(40-60)% increased Fire Damage while affected by Anger" }, } }, - ["AngerIncreasedCriticalStrikeMultiplier"] = { affix = "", "+(30-50)% to Critical Strike Multiplier while affected by Anger", statOrder = { 5968 }, level = 1, group = "AngerIncreasedCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [3627458291] = { "+(30-50)% to Critical Strike Multiplier while affected by Anger" }, } }, - ["HatredColdPenetration"] = { affix = "", "Damage Penetrates (10-15)% Cold Resistance while affected by Hatred", statOrder = { 9877 }, level = 1, group = "HatredColdPenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1222888897] = { "Damage Penetrates (10-15)% Cold Resistance while affected by Hatred" }, } }, - ["HatredAdditionalCriticalStrikeChance"] = { affix = "", "+(1.2-1.8)% to Critical Strike Chance while affected by Hatred", statOrder = { 4552 }, level = 1, group = "HatredAdditionalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [2753985507] = { "+(1.2-1.8)% to Critical Strike Chance while affected by Hatred" }, } }, - ["HatredAddedColdDamage"] = { affix = "", "Adds (58-70) to (88-104) Cold Damage while affected by Hatred", statOrder = { 9234 }, level = 1, group = "HatredAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [2643562209] = { "Adds (58-70) to (88-104) Cold Damage while affected by Hatred" }, } }, - ["HatredPhysicalConvertedToCold"] = { affix = "", "(25-40)% of Physical Damage Converted to Cold Damage while affected by Hatred", statOrder = { 5043 }, level = 1, group = "HatredPhysicalConvertedToCold", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, tradeHashes = { [664849247] = { "(25-40)% of Physical Damage Converted to Cold Damage while affected by Hatred" }, } }, - ["HatredIncreasedColdDamage"] = { affix = "", "(40-60)% increased Cold Damage while affected by Hatred", statOrder = { 5814 }, level = 1, group = "HatredIncreasedColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1413864591] = { "(40-60)% increased Cold Damage while affected by Hatred" }, } }, - ["VitalityDamageLifeLeech"] = { affix = "", "(0.8-1.2)% of Damage leeched as Life while affected by Vitality", statOrder = { 7362 }, level = 1, group = "VitalityDamageLifeLeech", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3656959867] = { "(0.8-1.2)% of Damage leeched as Life while affected by Vitality" }, } }, - ["VitalityFlatLifeRegen"] = { affix = "", "Regenerate (100-140) Life per Second while affected by Vitality", statOrder = { 7405 }, level = 1, group = "VitalityFlatLifeRegen", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3489570622] = { "Regenerate (100-140) Life per Second while affected by Vitality" }, } }, - ["VitalityPercentLifeRegen"] = { affix = "", "Regenerate (1-1.5)% of Life per second while affected by Vitality", statOrder = { 7412 }, level = 1, group = "VitalityPercentLifeRegen", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [1165583295] = { "Regenerate (1-1.5)% of Life per second while affected by Vitality" }, } }, - ["VitalityLifeRecoveryRate"] = { affix = "", "(10-15)% increased Life Recovery Rate while affected by Vitality", statOrder = { 7395 }, level = 1, group = "VitalityLifeRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2690790844] = { "(10-15)% increased Life Recovery Rate while affected by Vitality" }, } }, - ["VitalityLifeGainPerHit"] = { affix = "", "Gain (20-30) Life per Enemy Hit while affected by Vitality", statOrder = { 7356 }, level = 1, group = "VitalityLifeGainPerHit", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [4259701244] = { "Gain (20-30) Life per Enemy Hit while affected by Vitality" }, } }, - ["VitalityLifeRecoveryFromFlasks_"] = { affix = "", "(50-70)% increased Life Recovery from Flasks while affected by Vitality", statOrder = { 6641 }, level = 1, group = "VitalityLifeRecoveryFromFlasks", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, tradeHashes = { [362838683] = { "(50-70)% increased Life Recovery from Flasks while affected by Vitality" }, } }, - ["ClarityReducedManaCost"] = { affix = "", "-(10-5) to Total Mana Cost of Skills while affected by Clarity", statOrder = { 10060 }, level = 1, group = "ClarityReducedManaCost", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2445618239] = { "-(10-5) to Total Mana Cost of Skills while affected by Clarity" }, } }, - ["ClarityReducedManaCostNonChannelled"] = { affix = "", "Non-Channelling Skills have -(10-5) to Total Mana Cost while affected by Clarity", statOrder = { 10065 }, level = 1, group = "ClarityReducedManaCostNonChannelled", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1853636813] = { "Non-Channelling Skills have -(10-5) to Total Mana Cost while affected by Clarity" }, } }, - ["ClarityDamageTakenFromManaBeforeLife"] = { affix = "", "(6-10)% of Damage taken from Mana before Life while affected by Clarity", statOrder = { 6088 }, level = 1, group = "ClarityDamageTakenFromManaBeforeLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana" }, tradeHashes = { [2383304564] = { "(6-10)% of Damage taken from Mana before Life while affected by Clarity" }, } }, - ["ClarityRecoverManaOnSkillUse"] = { affix = "", "(10-15)% chance to Recover 10% of Mana when you use a Skill while affected by Clarity", statOrder = { 9847 }, level = 1, group = "ClarityRecoverManaOnSkillUse", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1699077932] = { "(10-15)% chance to Recover 10% of Mana when you use a Skill while affected by Clarity" }, } }, - ["ClarityManaAddedAsEnergyShield"] = { affix = "", "Gain (6-10)% of Maximum Mana as Extra Maximum Energy Shield while affected by Clarity", statOrder = { 9171 }, level = 1, group = "ClarityManaAddedAsEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2831391506] = { "Gain (6-10)% of Maximum Mana as Extra Maximum Energy Shield while affected by Clarity" }, } }, - ["ClarityManaRecoveryRate"] = { affix = "", "(10-15)% increased Mana Recovery Rate while affected by Clarity", statOrder = { 8193 }, level = 1, group = "ClarityManaRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [556659145] = { "(10-15)% increased Mana Recovery Rate while affected by Clarity" }, } }, - ["ClarityDamageTakenGainedAsMana"] = { affix = "", "(15-20)% of Damage taken while affected by Clarity Recouped as Mana", statOrder = { 6106 }, level = 1, group = "ClarityDamageTakenGainedAsMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [380220671] = { "(15-20)% of Damage taken while affected by Clarity Recouped as Mana" }, } }, - ["HasteChanceToDodgeSpells"] = { affix = "", "+(5-8)% chance to Suppress Spell Damage while affected by Haste", statOrder = { 10176 }, level = 1, group = "HasteChanceToDodgeSpells", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2170859717] = { "+(5-8)% chance to Suppress Spell Damage while affected by Haste" }, } }, - ["HasteGainOnslaughtOnKill"] = { affix = "", "You gain Onslaught for 4 seconds on Kill while affected by Haste", statOrder = { 6788 }, level = 1, group = "HasteGainOnslaughtOnKill", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1424006185] = { "You gain Onslaught for 4 seconds on Kill while affected by Haste" }, } }, - ["HasteGainPhasing"] = { affix = "", "You have Phasing while affected by Haste", statOrder = { 6799 }, level = 1, group = "HasteGainPhasing", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1346311588] = { "You have Phasing while affected by Haste" }, } }, - ["HasteUnaffectedByTemporalChains"] = { affix = "", "Unaffected by Temporal Chains while affected by Haste", statOrder = { 10485 }, level = 1, group = "HasteUnaffectedByTemporalChains", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [2806391472] = { "Unaffected by Temporal Chains while affected by Haste" }, } }, - ["HasteDebuffsExpireFaster"] = { affix = "", "Debuffs on you expire (15-20)% faster while affected by Haste", statOrder = { 6150 }, level = 1, group = "HasteDebuffsExpireFaster", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [207635700] = { "Debuffs on you expire (15-20)% faster while affected by Haste" }, } }, - ["HasteCooldownRecoveryForMovementSkills"] = { affix = "", "(30-50)% increased Cooldown Recovery Rate of Movement Skills used while affected by Haste", statOrder = { 9407 }, level = 1, group = "HasteCooldownRecoveryForMovementSkills", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3332055899] = { "(30-50)% increased Cooldown Recovery Rate of Movement Skills used while affected by Haste" }, } }, - ["PurityOfFireTakePhysicalAsFire"] = { affix = "", "(6-10)% of Physical Damage from Hits taken as Fire Damage while affected by Purity of Fire", statOrder = { 9661 }, level = 1, group = "PurityOfFireTakePhysicalAsFire", weightKey = { }, weightVal = { }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [1798459983] = { "(6-10)% of Physical Damage from Hits taken as Fire Damage while affected by Purity of Fire" }, } }, - ["PurityOfFireImmuneToIgnite"] = { affix = "", "Immune to Ignite while affected by Purity of Fire", statOrder = { 7234 }, level = 1, group = "PurityOfFireImmuneToIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [371612541] = { "Immune to Ignite while affected by Purity of Fire" }, } }, - ["PurityOfFireUnaffectedByBurningGround"] = { affix = "", "Unaffected by Burning Ground while affected by Purity of Fire", statOrder = { 10458 }, level = 1, group = "PurityOfFireUnaffectedByBurningGround", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3308185931] = { "Unaffected by Burning Ground while affected by Purity of Fire" }, } }, - ["PurityOfFireUnaffectedByFlammability__"] = { affix = "", "Unaffected by Flammability while affected by Purity of Fire", statOrder = { 10471 }, level = 1, group = "PurityOfFireUnaffectedByFlammability", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [1173690938] = { "Unaffected by Flammability while affected by Purity of Fire" }, } }, - ["PurityOfFireReducedReflectedFireDamage"] = { affix = "", "(50-75)% of Fire Damage from your Hits cannot be Reflected while affected by Purity of Fire", statOrder = { 9373 }, level = 1, group = "PurityOfFireReducedReflectedFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire" }, tradeHashes = { [435235774] = { "(50-75)% of Fire Damage from your Hits cannot be Reflected while affected by Purity of Fire" }, } }, - ["PurityOfFireColdAndLightningTakenAsFire"] = { affix = "", "(10-20)% of Cold and Lightning Damage taken as Fire Damage while affected by Purity of Fire", statOrder = { 5801 }, level = 1, group = "PurityOfFireColdAndLightningTakenAsFire", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning" }, tradeHashes = { [1723738042] = { "(10-20)% of Cold and Lightning Damage taken as Fire Damage while affected by Purity of Fire" }, } }, - ["PurityOfIceTakePhysicalAsIce"] = { affix = "", "(6-10)% of Physical Damage from Hits taken as Cold Damage while affected by Purity of Ice", statOrder = { 9659 }, level = 1, group = "PurityOfIceTakePhysicalAsIce", weightKey = { }, weightVal = { }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [1779027621] = { "(6-10)% of Physical Damage from Hits taken as Cold Damage while affected by Purity of Ice" }, } }, - ["PurityOfIceImmuneToFreeze"] = { affix = "", "Immune to Freeze while affected by Purity of Ice", statOrder = { 7231 }, level = 1, group = "PurityOfIceImmuneToFreeze", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2720072724] = { "Immune to Freeze while affected by Purity of Ice" }, } }, - ["PurityOfIceUnaffectedByChilledGround"] = { affix = "", "Unaffected by Chilled Ground while affected by Purity of Ice", statOrder = { 10463 }, level = 1, group = "PurityOfIceUnaffectedByChilledGround", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2647344903] = { "Unaffected by Chilled Ground while affected by Purity of Ice" }, } }, - ["PurityOfIceUnaffectedByFrostbite"] = { affix = "", "Unaffected by Frostbite while affected by Purity of Ice", statOrder = { 10473 }, level = 1, group = "PurityOfIceUnaffectedByFrostbite", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [4012281889] = { "Unaffected by Frostbite while affected by Purity of Ice" }, } }, - ["PurityOfIceReducedReflectedColdDamage"] = { affix = "", "(50-75)% of Cold Damage from your Hits cannot be Reflected while affected by Purity of Ice", statOrder = { 9371 }, level = 1, group = "PurityOfIceReducedReflectedColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold" }, tradeHashes = { [2480601356] = { "(50-75)% of Cold Damage from your Hits cannot be Reflected while affected by Purity of Ice" }, } }, - ["PurityOfIceFireAndLightningTakenAsCold"] = { affix = "", "(10-20)% of Fire and Lightning Damage taken as Cold Damage while affected by Purity of Ice", statOrder = { 6553 }, level = 1, group = "PurityOfIceFireAndLightningTakenAsCold", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning" }, tradeHashes = { [2189467271] = { "(10-20)% of Fire and Lightning Damage taken as Cold Damage while affected by Purity of Ice" }, } }, - ["PurityOfLightningTakePhysicalAsLightning"] = { affix = "", "(6-10)% of Physical Damage from Hits taken as Lightning Damage while affected by Purity of Lightning", statOrder = { 9663 }, level = 1, group = "PurityOfLightningTakePhysicalAsLightning", weightKey = { }, weightVal = { }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [254131992] = { "(6-10)% of Physical Damage from Hits taken as Lightning Damage while affected by Purity of Lightning" }, } }, - ["PurityOfLightningImmuneToShock_"] = { affix = "", "Immune to Shock while affected by Purity of Lightning", statOrder = { 7239 }, level = 1, group = "PurityOfLightningImmuneToShock", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [281949611] = { "Immune to Shock while affected by Purity of Lightning" }, } }, - ["PurityOfLightningUnaffectedByShockedGround"] = { affix = "", "Unaffected by Shocked Ground while affected by Purity of Lightning", statOrder = { 10483 }, level = 1, group = "PurityOfLightningUnaffectedByShockedGround", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2567659895] = { "Unaffected by Shocked Ground while affected by Purity of Lightning" }, } }, - ["PurityOfLightningUnaffectedByConductivity_____"] = { affix = "", "Unaffected by Conductivity while affected by Purity of Lightning", statOrder = { 10464 }, level = 1, group = "PurityOfLightningUnaffectedByConductivity", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [1567542124] = { "Unaffected by Conductivity while affected by Purity of Lightning" }, } }, - ["PurityOfLightningReducedReflectedLightningDamage"] = { affix = "", "(50-75)% of Lightning Damage from your Hits cannot be Reflected while", "affected by Purity of Lightning", statOrder = { 9374, 9374.1 }, level = 1, group = "PurityOfLightningReducedReflectedLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning" }, tradeHashes = { [3023818840] = { "(50-75)% of Lightning Damage from your Hits cannot be Reflected while", "affected by Purity of Lightning" }, } }, - ["PurityOfLightningFireAndColdTakenAsLightning"] = { affix = "", "(10-20)% of Fire and Cold Damage taken as Lightning Damage while", "affected by Purity of Lightning", statOrder = { 6551, 6551.1 }, level = 1, group = "PurityOfLightningFireAndColdTakenAsLightning", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning" }, tradeHashes = { [3953667743] = { "(10-20)% of Fire and Cold Damage taken as Lightning Damage while", "affected by Purity of Lightning" }, } }, - ["PurityOfElementsTakePhysicalAsFire_"] = { affix = "", "(8-12)% of Physical Damage from Hits taken as Fire Damage while affected by Purity of Elements", statOrder = { 9660 }, level = 1, group = "PurityOfElementsTakePhysicalAsFire", weightKey = { }, weightVal = { }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [1722775216] = { "(8-12)% of Physical Damage from Hits taken as Fire Damage while affected by Purity of Elements" }, } }, - ["PurityOfElementsTakePhysicalAsCold"] = { affix = "", "(8-12)% of Physical Damage from Hits taken as Cold Damage while affected by Purity of Elements", statOrder = { 9658 }, level = 1, group = "PurityOfElementsTakePhysicalAsCold", weightKey = { }, weightVal = { }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [1710207583] = { "(8-12)% of Physical Damage from Hits taken as Cold Damage while affected by Purity of Elements" }, } }, - ["PurityOfElementsTakePhysicalAsLightning"] = { affix = "", "(8-12)% of Physical Damage from Hits taken as Lightning Damage while affected by Purity of Elements", statOrder = { 9662 }, level = 1, group = "PurityOfElementsTakePhysicalAsLightning", weightKey = { }, weightVal = { }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [873224517] = { "(8-12)% of Physical Damage from Hits taken as Lightning Damage while affected by Purity of Elements" }, } }, - ["PurityOfElementsUnaffectedByElementalWeakness"] = { affix = "", "Unaffected by Elemental Weakness while affected by Purity of Elements", statOrder = { 10469 }, level = 1, group = "PurityOfElementsUnaffectedByElementalWeakness", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [3223142064] = { "Unaffected by Elemental Weakness while affected by Purity of Elements" }, } }, - ["PurityOfElementsReducedReflectedElementalDamage"] = { affix = "", "(50-75)% of Elemental Damage from your Hits cannot be Reflected while", "affected by Purity of Elements", statOrder = { 9372, 9372.1 }, level = 1, group = "PurityOfElementsReducedReflectedElementalDamage", weightKey = { }, weightVal = { }, modTags = { "elemental" }, tradeHashes = { [1574578643] = { "(50-75)% of Elemental Damage from your Hits cannot be Reflected while", "affected by Purity of Elements" }, } }, - ["PurityOfElementsChaosResistance"] = { affix = "", "+(30-50)% to Chaos Resistance while affected by Purity of Elements", statOrder = { 5744 }, level = 1, group = "PurityOfElementsChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [1138813382] = { "+(30-50)% to Chaos Resistance while affected by Purity of Elements" }, } }, - ["PurityOfElementsMaximumElementalResistances"] = { affix = "", "+1% to all maximum Elemental Resistances while affected by Purity of Elements", statOrder = { 4561 }, level = 1, group = "PurityOfElementsMaximumElementalResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [3234824465] = { "+1% to all maximum Elemental Resistances while affected by Purity of Elements" }, } }, - ["PrecisionIncreasedCriticalStrikeMultiplier"] = { affix = "", "+(20-30)% to Critical Strike Multiplier while affected by Precision", statOrder = { 5969 }, level = 1, group = "PrecisionIncreasedCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [1817023621] = { "+(20-30)% to Critical Strike Multiplier while affected by Precision" }, } }, - ["PrecisionIncreasedAttackDamage"] = { affix = "", "(40-60)% increased Attack Damage while affected by Precision", statOrder = { 4862 }, level = 1, group = "PrecisionIncreasedAttackDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [2048747572] = { "(40-60)% increased Attack Damage while affected by Precision" }, } }, - ["PrecisionFlaskChargeOnCrit_"] = { affix = "", "Gain a Flask Charge when you deal a Critical Strike while affected by Precision", statOrder = { 9836 }, level = 1, group = "PrecisionFlaskChargeOnCrit", weightKey = { }, weightVal = { }, modTags = { "flask", "critical" }, tradeHashes = { [3772841281] = { "Gain a Flask Charge when you deal a Critical Strike while affected by Precision" }, } }, - ["PrecisionIncreasedAttackSpeed"] = { affix = "", "(10-15)% increased Attack Speed while affected by Precision", statOrder = { 4904 }, level = 1, group = "PrecisionIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [3375743050] = { "(10-15)% increased Attack Speed while affected by Precision" }, } }, - ["PrecisionCannotBeBlinded"] = { affix = "", "Cannot be Blinded while affected by Precision", statOrder = { 5394 }, level = 1, group = "PrecisionCannotBeBlinded", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1653848515] = { "Cannot be Blinded while affected by Precision" }, } }, - ["PrideChanceForDoubleDamage"] = { affix = "", "(8-12)% chance to deal Double Damage while using Pride", statOrder = { 9712 }, level = 1, group = "PrideChanceForDoubleDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [3371719014] = { "(8-12)% chance to deal Double Damage while using Pride" }, } }, - ["PrideIntimidateOnHit"] = { affix = "", "Your Hits Intimidate Enemies for 4 seconds while you are using Pride", statOrder = { 9714 }, level = 1, group = "PrideIntimidateOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3772848194] = { "Your Hits Intimidate Enemies for 4 seconds while you are using Pride" }, } }, - ["PrideIncreasedPhysicalDamage_"] = { affix = "", "(40-60)% increased Physical Damage while using Pride", statOrder = { 9718 }, level = 1, group = "PrideIncreasedPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [576528026] = { "(40-60)% increased Physical Damage while using Pride" }, } }, - ["PrideChanceToImpale"] = { affix = "", "25% chance to Impale Enemies on Hit with Attacks while using Pride", statOrder = { 9713 }, level = 1, group = "PrideChanceToImpale", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHashes = { [4173751044] = { "25% chance to Impale Enemies on Hit with Attacks while using Pride" }, } }, - ["PrideImpaleAdditionalHits"] = { affix = "", "Impales you inflict last 2 additional Hits while using Pride", statOrder = { 9720 }, level = 1, group = "PrideImpaleAdditionalHits", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHashes = { [1011863394] = { "Impales you inflict last 2 additional Hits while using Pride" }, } }, - ["SublimeVisionAnger"] = { affix = "", "Auras from your Skills have (20-40)% increased Effect on you", "Always Scorch while affected by Anger", "Aura Skills other than Anger are Disabled", statOrder = { 3569, 4657, 10669 }, level = 1, group = "SublimeVisionAnger", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1585991257] = { "Always Scorch while affected by Anger" }, [2185337019] = { "Aura Skills other than Anger are Disabled" }, [472812693] = { "Auras from your Skills have (20-40)% increased Effect on you" }, } }, - ["SublimeVisionClarity"] = { affix = "", "Auras from your Skills have (20-40)% increased Effect on you", "80% increased Effect of Arcane Surge on you while affected by Clarity", "Aura Skills other than Clarity are Disabled", statOrder = { 3569, 4705, 10670 }, level = 1, group = "SublimeVisionClarity", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1808477254] = { "80% increased Effect of Arcane Surge on you while affected by Clarity" }, [2010835448] = { "Aura Skills other than Clarity are Disabled" }, [472812693] = { "Auras from your Skills have (20-40)% increased Effect on you" }, } }, - ["SublimeVisionDetermination"] = { affix = "", "Auras from your Skills have (20-40)% increased Effect on you", "+1 to Maximum Endurance Charges while affected by Determination", "Aura Skills other than Determination are Disabled", statOrder = { 3569, 9131, 10671 }, level = 1, group = "SublimeVisionDetermination", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [460973817] = { "Aura Skills other than Determination are Disabled" }, [2110586221] = { "+1 to Maximum Endurance Charges while affected by Determination" }, [472812693] = { "Auras from your Skills have (20-40)% increased Effect on you" }, } }, - ["SublimeVisionDiscipline"] = { affix = "", "Auras from your Skills have (20-40)% increased Effect on you", "+1 to Maximum Power Charges while affected by Discipline", "Aura Skills other than Discipline are Disabled", statOrder = { 3569, 9179, 10672 }, level = 1, group = "SublimeVisionDiscipline", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2204523353] = { "Aura Skills other than Discipline are Disabled" }, [1465672972] = { "+1 to Maximum Power Charges while affected by Discipline" }, [472812693] = { "Auras from your Skills have (20-40)% increased Effect on you" }, } }, - ["SublimeVisionGrace"] = { affix = "", "Auras from your Skills have (20-40)% increased Effect on you", "+1 to Maximum Frenzy Charges while affected by Grace", "Aura Skills other than Grace are Disabled", statOrder = { 3569, 9141, 10673 }, level = 1, group = "SublimeVisionGrace", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1747401945] = { "Aura Skills other than Grace are Disabled" }, [3458080964] = { "+1 to Maximum Frenzy Charges while affected by Grace" }, [472812693] = { "Auras from your Skills have (20-40)% increased Effect on you" }, } }, - ["SublimeVisionHaste"] = { affix = "", "Auras from your Skills have (20-40)% increased Effect on you", "10% increased Action Speed while affected by Haste", "Aura Skills other than Haste are Disabled", statOrder = { 3569, 4523, 10674 }, level = 1, group = "SublimeVisionHaste", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [1960426186] = { "10% increased Action Speed while affected by Haste" }, [3067441492] = { "Aura Skills other than Haste are Disabled" }, [472812693] = { "Auras from your Skills have (20-40)% increased Effect on you" }, } }, - ["SublimeVisionHatred"] = { affix = "", "Auras from your Skills have (20-40)% increased Effect on you", "Always inflict Brittle while affected by Hatred", "Aura Skills other than Hatred are Disabled", statOrder = { 3569, 4652, 10675 }, level = 1, group = "SublimeVisionHatred", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [13285831] = { "Always inflict Brittle while affected by Hatred" }, [472812693] = { "Auras from your Skills have (20-40)% increased Effect on you" }, [3348211884] = { "Aura Skills other than Hatred are Disabled" }, } }, - ["SublimeVisionMalevolence"] = { affix = "", "Auras from your Skills have (20-40)% increased Effect on you", "You can apply an additional Curse while affected by Malevolence", "Aura Skills other than Malevolence are Disabled", statOrder = { 3569, 9519, 10676 }, level = 1, group = "SublimeVisionMalevolence", weightKey = { }, weightVal = { }, modTags = { "curse" }, tradeHashes = { [4102244881] = { "You can apply an additional Curse while affected by Malevolence" }, [3540033124] = { "Aura Skills other than Malevolence are Disabled" }, [472812693] = { "Auras from your Skills have (20-40)% increased Effect on you" }, } }, - ["SublimeVisionPrecision"] = { affix = "", "Auras from your Skills have (20-40)% increased Effect on you", "25% more Critical Strike chance while affected by Precision", "Aura Skills other than Precision are Disabled", statOrder = { 3569, 5915, 10677 }, level = 1, group = "SublimeVisionPrecision", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [2800254163] = { "Aura Skills other than Precision are Disabled" }, [472812693] = { "Auras from your Skills have (20-40)% increased Effect on you" }, [2617837023] = { "25% more Critical Strike chance while affected by Precision" }, } }, - ["SublimeVisionPride"] = { affix = "", "(20-40)% increased Effect of Non-Curse Auras from your Skills on Enemies", "Enemies you Kill while using Pride have 25% chance to Explode, dealing a tenth of their maximum Life as Physical Damage", "Aura Skills other than Pride are Disabled", statOrder = { 3567, 6515, 10678 }, level = 1, group = "SublimeVisionPride", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHashes = { [3970941380] = { "Aura Skills other than Pride are Disabled" }, [1961516633] = { "Enemies you Kill while using Pride have 25% chance to Explode, dealing a tenth of their maximum Life as Physical Damage" }, [1636209393] = { "(20-40)% increased Effect of Non-Curse Auras from your Skills on Enemies" }, } }, - ["SublimeVisionPurityOfElements"] = { affix = "", "Auras from your Skills have (20-40)% increased Effect on you", "+3% to all maximum Elemental Resistances while affected by Purity of Elements", "Aura Skills other than Purity of Elements are Disabled", statOrder = { 3569, 4561, 10679 }, level = 1, group = "SublimeVisionPurityOfElements", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2225434657] = { "Aura Skills other than Purity of Elements are Disabled" }, [3234824465] = { "+3% to all maximum Elemental Resistances while affected by Purity of Elements" }, [472812693] = { "Auras from your Skills have (20-40)% increased Effect on you" }, } }, - ["SublimeVisionPurityOfIce"] = { affix = "", "Auras from your Skills have (20-40)% increased Effect on you", "30% of Fire and Lightning Damage taken as Cold Damage while affected by Purity of Ice", "Aura Skills other than Purity of Ice are Disabled", statOrder = { 3569, 6553, 10681 }, level = 1, group = "SublimeVisionPurityOfIce", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning" }, tradeHashes = { [2189467271] = { "30% of Fire and Lightning Damage taken as Cold Damage while affected by Purity of Ice" }, [472812693] = { "Auras from your Skills have (20-40)% increased Effect on you" }, [2517644375] = { "Aura Skills other than Purity of Ice are Disabled" }, } }, - ["SublimeVisionPurityOfLightning"] = { affix = "", "Auras from your Skills have (20-40)% increased Effect on you", "30% of Fire and Cold Damage taken as Lightning Damage while", "affected by Purity of Lightning", "Aura Skills other than Purity of Lightning are Disabled", statOrder = { 3569, 6551, 6551.1, 10682 }, level = 1, group = "SublimeVisionPurityOfLightning", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning" }, tradeHashes = { [3953667743] = { "30% of Fire and Cold Damage taken as Lightning Damage while", "affected by Purity of Lightning" }, [472812693] = { "Auras from your Skills have (20-40)% increased Effect on you" }, [2523986538] = { "Aura Skills other than Purity of Lightning are Disabled" }, } }, - ["SublimeVisionPurityOfFire"] = { affix = "", "Auras from your Skills have (20-40)% increased Effect on you", "30% of Cold and Lightning Damage taken as Fire Damage while affected by Purity of Fire", "Aura Skills other than Purity of Fire are Disabled", statOrder = { 3569, 5801, 10680 }, level = 1, group = "SublimeVisionPurityOfFire", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning" }, tradeHashes = { [3192291777] = { "Aura Skills other than Purity of Fire are Disabled" }, [472812693] = { "Auras from your Skills have (20-40)% increased Effect on you" }, [1723738042] = { "30% of Cold and Lightning Damage taken as Fire Damage while affected by Purity of Fire" }, } }, - ["SublimeVisionVitality"] = { affix = "", "Auras from your Skills have (20-40)% increased Effect on you", "Regenerate 15% Life over one second when hit while affected by Vitality", "Aura Skills other than Vitality are Disabled", statOrder = { 3569, 9890, 10683 }, level = 1, group = "SublimeVisionVitality", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [110034065] = { "Aura Skills other than Vitality are Disabled" }, [472812693] = { "Auras from your Skills have (20-40)% increased Effect on you" }, [1366273824] = { "Regenerate 15% Life over one second when hit while affected by Vitality" }, } }, - ["SublimeVisionWrath"] = { affix = "", "Auras from your Skills have (20-40)% increased Effect on you", "Always Sap while affected by Wrath", "Aura Skills other than Wrath are Disabled", statOrder = { 3569, 4656, 10684 }, level = 1, group = "SublimeVisionWrath", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [2499038519] = { "Always Sap while affected by Wrath" }, [472812693] = { "Auras from your Skills have (20-40)% increased Effect on you" }, [3292388799] = { "Aura Skills other than Wrath are Disabled" }, } }, - ["SublimeVisionZealotry"] = { affix = "", "Auras from your Skills have (20-40)% increased Effect on you", "Unaffected by Curses while affected by Zealotry", "Aura Skills other than Zealotry are Disabled", statOrder = { 3569, 10466, 10685 }, level = 1, group = "SublimeVisionZealotry", weightKey = { }, weightVal = { }, modTags = { "curse" }, tradeHashes = { [3403419549] = { "Unaffected by Curses while affected by Zealotry" }, [374559518] = { "Aura Skills other than Zealotry are Disabled" }, [472812693] = { "Auras from your Skills have (20-40)% increased Effect on you" }, } }, - ["DealNoNonElementalDamageUnique__1"] = { affix = "", "Deal no Non-Elemental Damage", statOrder = { 6145 }, level = 1, group = "DealNoNonElementalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, tradeHashes = { [4031851097] = { "Deal no Non-Elemental Damage" }, } }, - ["DisplaySupportedByElementalPenetrationUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 25 Elemental Penetration", statOrder = { 268 }, level = 1, group = "DisplaySupportedByElementalPenetration", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [1994143317] = { "Socketed Gems are Supported by Level 25 Elemental Penetration" }, } }, - ["DisplaySupportedByElementalPenetrationUnique__2"] = { affix = "", "Socketed Gems are Supported by Level 15 Elemental Penetration", statOrder = { 268 }, level = 1, group = "DisplaySupportedByElementalPenetration", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [1994143317] = { "Socketed Gems are Supported by Level 15 Elemental Penetration" }, } }, - ["GainSpiritChargeOnKillChanceUnique__1"] = { affix = "", "Gain a Spirit Charge on Kill", statOrder = { 4383 }, level = 1, group = "GainSpiritChargeOnKillChance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [570644802] = { "Gain a Spirit Charge on Kill" }, } }, - ["GainLifeWhenSpiritChargeExpiresOrConsumedUnique__2"] = { affix = "", "Recover (2-3)% of Life when you lose a Spirit Charge", statOrder = { 4385 }, level = 1, group = "GainLifeWhenSpiritChargeExpiresOrConsumed", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [305634887] = { "Recover (2-3)% of Life when you lose a Spirit Charge" }, } }, - ["GainESWhenSpiritChargeExpiresOrConsumedUnique__1"] = { affix = "", "Recover (2-3)% of Energy Shield when you lose a Spirit Charge", statOrder = { 4386 }, level = 1, group = "GainESWhenSpiritChargeExpiresOrConsumed", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1996775727] = { "Recover (2-3)% of Energy Shield when you lose a Spirit Charge" }, } }, - ["PhysAddedAsEachElementPerSpiritChargeUnique__1"] = { affix = "", "Gain 5% of Physical Damage as Extra Damage of each Element per Spirit Charge", statOrder = { 9625 }, level = 1, group = "PhysAddedAsEachElementPerSpiritCharge", weightKey = { }, weightVal = { }, modTags = { "earth_elemental", "physical" }, tradeHashes = { [4288824781] = { "Gain 5% of Physical Damage as Extra Damage of each Element per Spirit Charge" }, } }, - ["LocalDisplayGrantLevelXSpiritBurstUnique__1"] = { affix = "", "Trigger Level 20 Spirit Burst when you Use a Skill while you have a Spirit Charge", statOrder = { 816 }, level = 1, group = "LocalDisplayGrantLevelXSpiritBurst", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [1992516007] = { "Trigger Level 20 Spirit Burst when you Use a Skill while you have a Spirit Charge" }, } }, - ["GainSpiritChargeEverySecondUnique__1"] = { affix = "", "Gain a Spirit Charge every second", statOrder = { 4382 }, level = 1, group = "GainSpiritChargeEverySecond", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [328131617] = { "Gain a Spirit Charge every second" }, } }, - ["LoseSpiritChargesOnSavageHitUnique__1_"] = { affix = "", "You lose all Spirit Charges when taking a Savage Hit", statOrder = { 4384 }, level = 1, group = "LoseSpiritChargesOnSavageHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2663792764] = { "You lose all Spirit Charges when taking a Savage Hit" }, } }, - ["MaximumSpiritChargesPerAbyssJewelEquippedUnique__1"] = { affix = "", "+1 to Maximum Spirit Charges per Abyss Jewel affecting you", statOrder = { 4380 }, level = 1, group = "MaximumSpiritChargesPerAbyssJewelEquipped", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4053097676] = { "+1 to Maximum Spirit Charges per Abyss Jewel affecting you" }, } }, - ["MaximumSpiritChargesPerAbyssJewelEquippedUnique__2"] = { affix = "", "+1 to Maximum Spirit Charges per Abyss Jewel affecting you", statOrder = { 4380 }, level = 1, group = "MaximumSpiritChargesPerAbyssJewelEquipped", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4053097676] = { "+1 to Maximum Spirit Charges per Abyss Jewel affecting you" }, } }, - ["GainDebilitatingPresenceUnique__1"] = { affix = "", "Gain Maddening Presence for 10 seconds when you Kill a Rare or Unique Enemy", statOrder = { 10709 }, level = 1, group = "GainDebilitatingPresence", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3442107889] = { "Gain Maddening Presence for 10 seconds when you Kill a Rare or Unique Enemy" }, } }, - ["LocalDisplayGrantLevelXShadeFormUnique__1"] = { affix = "", "20% chance to Trigger Level 20 Shade Form when you Use a Socketed Skill", statOrder = { 795 }, level = 1, group = "LocalDisplayGrantLevelXShadeForm", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [3308936917] = { "20% chance to Trigger Level 20 Shade Form when you Use a Socketed Skill" }, } }, - ["TriggerShadeFormWhenHitUnique__1"] = { affix = "", "Trigger Level 20 Shade Form when Hit", statOrder = { 796 }, level = 1, group = "TriggerShadeFormWhenHit", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [2603798371] = { "Trigger Level 20 Shade Form when Hit" }, } }, - ["AddedPhysicalDamagePerEnduranceChargeUnique__1"] = { affix = "", "Adds 5 to 8 Physical Damage per Endurance Charge", statOrder = { 9249 }, level = 1, group = "AddedPhysicalDamagePerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [173438493] = { "Adds 5 to 8 Physical Damage per Endurance Charge" }, } }, - ["ChaosResistancePerEnduranceChargeUnique__1_"] = { affix = "", "+4% to Chaos Resistance per Endurance Charge", statOrder = { 5739 }, level = 1, group = "ChaosResistancePerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [4210011075] = { "+4% to Chaos Resistance per Endurance Charge" }, } }, - ["ReducedElementalDamageTakenHitsPerEnduranceChargeUnique__1"] = { affix = "", "1% reduced Elemental Damage taken from Hits per Endurance Charge", statOrder = { 6316 }, level = 1, group = "ReducedElementalDamageTakenHitsPerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "elemental" }, tradeHashes = { [1686913105] = { "1% reduced Elemental Damage taken from Hits per Endurance Charge" }, } }, - ["ArmourPerEnduranceChargeUnique__1"] = { affix = "", "+500 to Armour per Endurance Charge", statOrder = { 9654 }, level = 1, group = "ArmourPerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [513221334] = { "+500 to Armour per Endurance Charge" }, } }, - ["AddedColdDamagePerFrenzyChargeUnique__1"] = { affix = "", "12 to 14 Added Cold Damage per Frenzy Charge", statOrder = { 4273 }, level = 1, group = "AddedColdDamagePerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3648858570] = { "12 to 14 Added Cold Damage per Frenzy Charge" }, } }, - ["AvoidElementalDamagePerFrenzyChargeUnique__1"] = { affix = "", "2% chance to Avoid Elemental Damage from Hits per Frenzy Charge", statOrder = { 3372 }, level = 1, group = "AvoidElementalDamagePerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "elemental" }, tradeHashes = { [1649883131] = { "2% chance to Avoid Elemental Damage from Hits per Frenzy Charge" }, } }, - ["MovementVelocityPerFrenzyChargeUnique__1"] = { affix = "", "4% increased Movement Speed per Frenzy Charge", statOrder = { 1802 }, level = 1, group = "MovementVelocityPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [1541516339] = { "4% increased Movement Speed per Frenzy Charge" }, } }, - ["MovementVelocityPerFrenzyChargeUnique__2"] = { affix = "", "6% increased Movement Speed per Frenzy Charge", statOrder = { 1802 }, level = 1, group = "MovementVelocityPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [1541516339] = { "6% increased Movement Speed per Frenzy Charge" }, } }, - ["AttackDamageLeechPerFrenzyChargeUnique__1"] = { affix = "", "0.5% of Attack Damage Leeched as Life per Frenzy Charge", statOrder = { 7366 }, level = 1, group = "AttackDamageLeechPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHashes = { [3243062554] = { "0.5% of Attack Damage Leeched as Life per Frenzy Charge" }, } }, - ["AddedLightningDamagePerPowerChargeUnique__1"] = { affix = "", "Adds 3 to 9 Lightning Damage to Spells per Power Charge", statOrder = { 9246 }, level = 1, group = "AddedLightningDamagePerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [4085417083] = { "Adds 3 to 9 Lightning Damage to Spells per Power Charge" }, } }, - ["AdditionalCriticalStrikeChancePerPowerChargeUnique__1"] = { affix = "", "+0.3% Critical Strike Chance per Power Charge", statOrder = { 4549 }, level = 1, group = "AdditionalCriticalStrikeChancePerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [1818900806] = { "+0.3% Critical Strike Chance per Power Charge" }, } }, - ["CriticalMultiplierPerPowerChargeUnique__1"] = { affix = "", "+(6-10)% to Critical Strike Multiplier per Power Charge", statOrder = { 3282 }, level = 1, group = "CriticalMultiplierPerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [4164870816] = { "+(6-10)% to Critical Strike Multiplier per Power Charge" }, } }, - ["ChanceToBlockSpellsPerPowerChargeUnique__1"] = { affix = "", "+2% Chance to Block Spell Damage per Power Charge", statOrder = { 4588 }, level = 1, group = "ChanceToBlockSpellsPerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [816458107] = { "+2% Chance to Block Spell Damage per Power Charge" }, } }, - ["ChanceToBlockSpellsPerPowerChargeUnique__2_"] = { affix = "", "+5% Chance to Block Spell Damage per Power Charge", statOrder = { 4588 }, level = 1, group = "ChanceToBlockSpellsPerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [816458107] = { "+5% Chance to Block Spell Damage per Power Charge" }, } }, - ["DamageTakenPerEnduranceChargeWhenHitUnique__1_"] = { affix = "", "200 Fire Damage taken per second per Endurance Charge if you've been Hit Recently", statOrder = { 10707 }, level = 1, group = "DamageTakenPerEnduranceChargeWhenHit", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [1920234902] = { "200 Fire Damage taken per second per Endurance Charge if you've been Hit Recently" }, } }, - ["DamageTakenPerFrenzyChargeMovingUnique__1"] = { affix = "", "200 Cold Damage taken per second per Frenzy Charge while moving", statOrder = { 10704 }, level = 1, group = "DamageTakenPerFrenzyChargeMoving", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1528823952] = { "200 Cold Damage taken per second per Frenzy Charge while moving" }, } }, - ["DamageTakenPerPowerChargeOnCritUnique__1"] = { affix = "", "200 Lightning Damage taken per second per Power Charge if", "your Skills have dealt a Critical Strike Recently", statOrder = { 10711, 10711.1 }, level = 1, group = "DamageTakenPerPowerChargeOnCrit", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [1964333391] = { "200 Lightning Damage taken per second per Power Charge if", "your Skills have dealt a Critical Strike Recently" }, } }, - ["VoidShotOnSkillUseUnique__1_"] = { affix = "", "Consumes a Void Charge to Trigger Level 20 Void Shot when you fire Arrows with a Non-Triggered Skill", statOrder = { 819 }, level = 1, group = "VoidShotOnSkillUse", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [3262369040] = { "Consumes a Void Charge to Trigger Level 20 Void Shot when you fire Arrows with a Non-Triggered Skill" }, } }, - ["MaximumVoidArrowsUnique__1"] = { affix = "", "5 Maximum Void Charges", "Gain a Void Charge every 0.5 seconds", statOrder = { 4356, 6912 }, level = 1, group = "MaximumVoidArrows", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [34273389] = { "Gain a Void Charge every 0.5 seconds" }, [1209237645] = { "5 Maximum Void Charges" }, } }, - ["CannotBeStunnedByAttacksElderItemUnique__1"] = { affix = "", "Cannot be Stunned by Attacks if your opposite Ring is an Elder Item", statOrder = { 4327 }, level = 1, group = "CannotBeStunnedByAttacksElderItem", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2926399803] = { "Cannot be Stunned by Attacks if your opposite Ring is an Elder Item" }, } }, - ["AttackDamageShaperItemUnique__1"] = { affix = "", "(60-80)% increased Attack Damage if your opposite Ring is a Shaper Item", statOrder = { 4324 }, level = 1, group = "AttackDamageShaperItem", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [1555962658] = { "(60-80)% increased Attack Damage if your opposite Ring is a Shaper Item" }, } }, - ["SpellDamageElderItemUnique__1_"] = { affix = "", "(60-80)% increased Spell Damage if your opposite Ring is an Elder Item", statOrder = { 4325 }, level = 1, group = "SpellDamageElderItem", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2921373173] = { "(60-80)% increased Spell Damage if your opposite Ring is an Elder Item" }, } }, - ["CannotBeStunnedBySpellsShaperItemUnique__1"] = { affix = "", "Cannot be Stunned by Spells if your opposite Ring is a Shaper Item", statOrder = { 4326 }, level = 1, group = "CannotBeStunnedBySpellsShaperItem", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2312817839] = { "Cannot be Stunned by Spells if your opposite Ring is a Shaper Item" }, } }, - ["RecoverLifeInstantlyOnManaFlaskUnique__1"] = { affix = "", "Recover (8-10)% of Life when you use a Mana Flask", statOrder = { 4343 }, level = 1, group = "RecoverLifeInstantlyOnManaFlask", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, tradeHashes = { [1926816773] = { "Recover (8-10)% of Life when you use a Mana Flask" }, } }, - ["NonInstantManaRecoveryAlsoAffectsLifeUnique__1"] = { affix = "", "Non-instant Mana Recovery from Flasks is also Recovered as Life", statOrder = { 4344 }, level = 1, group = "NonInstantManaRecoveryAlsoAffectsLife", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, tradeHashes = { [2262007777] = { "Non-instant Mana Recovery from Flasks is also Recovered as Life" }, } }, - ["SpellDamagePer200ManaSpentRecentlyUnique__1__"] = { affix = "", "(20-25)% increased Spell Damage for each 200 total Mana you have Spent Recently, up to 2000%", statOrder = { 4346 }, level = 1, group = "SpellDamagePer200ManaSpentRecently", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [347220474] = { "(20-25)% increased Spell Damage for each 200 total Mana you have Spent Recently, up to 2000%" }, } }, - ["ManaCostPer200ManaSpentRecentlyUnique__1"] = { affix = "", "(50-60)% increased Cost of Skills for each 200 total Mana Spent Recently", statOrder = { 4345 }, level = 1, group = "ManaCostPer200ManaSpentRecently", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2650053239] = { "(50-60)% increased Cost of Skills for each 200 total Mana Spent Recently" }, } }, - ["SiphoningChargeOnSkillUseUnique__1"] = { affix = "", "25% chance to gain a Siphoning Charge when you use a Skill", statOrder = { 4336 }, level = 1, group = "SiphoningChargeOnSkillUse", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2922737717] = { "25% chance to gain a Siphoning Charge when you use a Skill" }, } }, - ["MaximumSiphoningChargePerElderOrShaperItemUnique__1"] = { affix = "", "+1 to Maximum Siphoning Charges per Elder or Shaper Item Equipped", statOrder = { 4335 }, level = 1, group = "MaximumSiphoningChargePerElderOrShaperItem", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1872128565] = { "+1 to Maximum Siphoning Charges per Elder or Shaper Item Equipped" }, } }, - ["PhysicalDamageToAttacksPerSiphoningChargeUnique__1"] = { affix = "", "Adds (12-14) to (15-16) Physical Damage to Attacks and Spells per Siphoning Charge", statOrder = { 4337 }, level = 1, group = "PhysicalDamageToAttacksPerSiphoningCharge", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "attack", "caster" }, tradeHashes = { [3368671817] = { "Adds (12-14) to (15-16) Physical Damage to Attacks and Spells per Siphoning Charge" }, } }, - ["LifeLeechPerSiphoningChargeUnique__1"] = { affix = "", "0.2% of Damage Leeched as Life per Siphoning Charge", statOrder = { 4340 }, level = 1, group = "LifeLeechPerSiphoningCharge", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [1587137379] = { "0.2% of Damage Leeched as Life per Siphoning Charge" }, } }, - ["NonChaosDamageAddedAsChaosPerSiphoningChargeUnique__1"] = { affix = "", "Gain 4% of Non-Chaos Damage as extra Chaos Damage per Siphoning Charge", statOrder = { 4338 }, level = 1, group = "NonChaosDamageAddedAsChaosPerSiphoningCharge", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [3296019532] = { "Gain 4% of Non-Chaos Damage as extra Chaos Damage per Siphoning Charge" }, } }, - ["AdditionalPhysicalDamageReductionPerSiphoningChargeUnique__1"] = { affix = "", "1% additional Physical Damage Reduction from Hits per Siphoning Charge", statOrder = { 4339 }, level = 1, group = "AdditionalPhysicalDamageReductionPerSiphoningCharge", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHashes = { [3837366401] = { "1% additional Physical Damage Reduction from Hits per Siphoning Charge" }, } }, - ["DamageTakenPerSiphoningChargeOnSkillUseUnique__1"] = { affix = "", "Take 150 Physical Damage per Second per Siphoning Charge if you've used a Skill Recently", statOrder = { 4341 }, level = 1, group = "DamageTakenPerSiphoningChargeOnSkillUse", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2440172920] = { "Take 150 Physical Damage per Second per Siphoning Charge if you've used a Skill Recently" }, } }, - ["SpellAddedPhysicalDamageUnique__1_"] = { affix = "", "Battlemage", statOrder = { 10772 }, level = 1, group = "KeystoneBattlemage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [448903047] = { "Battlemage" }, } }, - ["TentacleSmashOnKillUnique__1_"] = { affix = "", "20% chance to Trigger Level 20 Tentacle Whip on Kill", statOrder = { 823 }, level = 100, group = "TentacleSmashOnKill", weightKey = { }, weightVal = { }, modTags = { "skill", "green_herring" }, tradeHashes = { [1350938937] = { "20% chance to Trigger Level 20 Tentacle Whip on Kill" }, } }, - ["GlimpseOfEternityWhenHitUnique__1"] = { affix = "", "Trigger Level 20 Glimpse of Eternity when Hit", statOrder = { 822 }, level = 1, group = "GlimpseOfEternityWhenHit", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [3141831683] = { "Trigger Level 20 Glimpse of Eternity when Hit" }, } }, - ["SummonVoidSphereOnKillUnique__1_"] = { affix = "", "20% chance to Trigger Level 20 Summon Volatile Anomaly on Kill", statOrder = { 824 }, level = 100, group = "SummonVoidSphereOnKill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [2143990571] = { "20% chance to Trigger Level 20 Summon Volatile Anomaly on Kill" }, } }, - ["PetrificationStatueUnique__1"] = { affix = "", "Grants Level 20 Petrification Statue Skill", statOrder = { 677 }, level = 1, group = "GrantsPetrificationStatue", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [1904419785] = { "Grants Level 20 Petrification Statue Skill" }, } }, - ["GrantsCatAspect1"] = { affix = "", "Grants Level 20 Aspect of the Cat Skill", statOrder = { 695 }, level = 1, group = "GrantsCatAspect", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [1265282021] = { "Grants Level 20 Aspect of the Cat Skill" }, } }, - ["GrantsBirdAspect1_"] = { affix = "", "Grants Level 20 Aspect of the Avian Skill", statOrder = { 690 }, level = 1, group = "GrantsBirdAspect", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [3914740665] = { "Grants Level 20 Aspect of the Avian Skill" }, } }, - ["GrantsSpiderAspect1"] = { affix = "", "Grants Level 20 Aspect of the Spider Skill", statOrder = { 720 }, level = 1, group = "GrantsSpiderAspect", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [956546305] = { "Grants Level 20 Aspect of the Spider Skill" }, } }, - ["GrantsIntimidatingCry1"] = { affix = "", "Grants Level 20 Intimidating Cry Skill", statOrder = { 710 }, level = 1, group = "GrantsIntimidatingCry", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [989878105] = { "Grants Level 20 Intimidating Cry Skill" }, } }, - ["GrantsCrabAspect1_"] = { affix = "", "Grants Level 20 Aspect of the Crab Skill", statOrder = { 697 }, level = 1, group = "GrantsCrabAspect", weightKey = { }, weightVal = { }, modTags = { "blue_herring", "skill" }, tradeHashes = { [4102318278] = { "Grants Level 20 Aspect of the Crab Skill" }, } }, - ["ItemQuantityOnLowLifeUnique__1"] = { affix = "", "(10-16)% increased Quantity of Items found when on Low Life", statOrder = { 1593 }, level = 65, group = "ItemQuantityOnLowLife", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [760855772] = { "(10-16)% increased Quantity of Items found when on Low Life" }, } }, - ["DamagePer15DexterityUnique__1"] = { affix = "", "1% increased Damage per 15 Dexterity", statOrder = { 6056 }, level = 72, group = "DamagePer15Dexterity", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2062174346] = { "1% increased Damage per 15 Dexterity" }, } }, - ["DamagePer15DexterityUnique__2"] = { affix = "", "1% increased Damage per 15 Dexterity", statOrder = { 6056 }, level = 1, group = "DamagePer15Dexterity", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2062174346] = { "1% increased Damage per 15 Dexterity" }, } }, - ["LifeRegeneratedPerMinuteWhileIgnitedUnique__1"] = { affix = "", "Regenerate (75-125) Life per second while Ignited", statOrder = { 7406 }, level = 74, group = "LifeRegeneratedPerMinuteWhileIgnited", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [952897668] = { "Regenerate (75-125) Life per second while Ignited" }, } }, - ["IncreasedElementalDamageIfKilledCursedEnemyRecentlyUnique__1"] = { affix = "", "20% increased Elemental Damage if you've Killed a Cursed Enemy Recently", statOrder = { 6299 }, level = 77, group = "IncreasedElementalDamageIfKilledCursedEnemyRecently", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [850820277] = { "20% increased Elemental Damage if you've Killed a Cursed Enemy Recently" }, } }, - ["DoubleDamagePer500StrengthUnique__1"] = { affix = "", "6% chance to deal Double Damage per 500 Strength", statOrder = { 5665 }, level = 63, group = "DoubleDamagePer500Strength", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [4104492115] = { "6% chance to deal Double Damage per 500 Strength" }, } }, - ["BestiaryLeague"] = { affix = "", "Areas contain Beasts to hunt", statOrder = { 8906 }, level = 1, group = "BestiaryLeague", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1158543967] = { "Areas contain Beasts to hunt" }, } }, - ["RagingSpiritDurationResetOnIgnitedEnemyUnique__1"] = { affix = "", "Summoned Raging Spirits refresh their Duration when they Kill an Ignited Enemy", statOrder = { 9804 }, level = 1, group = "RagingSpiritDurationResetOnIgnitedEnemy", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [2761732967] = { "Summoned Raging Spirits refresh their Duration when they Kill an Ignited Enemy" }, } }, - ["FrenzyChargePer50RampageStacksUnique__1"] = { affix = "", "Gain a Frenzy Charge on every 50th Rampage Kill", statOrder = { 4375 }, level = 1, group = "FrenzyChargePer50RampageStacks", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [637690626] = { "Gain a Frenzy Charge on every 50th Rampage Kill" }, } }, - ["AreaOfEffectPer25RampageStacksUnique__1_"] = { affix = "", "2% increased Area of Effect per 25 Rampage Kills", statOrder = { 4374 }, level = 1, group = "AreaOfEffectPer25RampageStacks", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4119032338] = { "2% increased Area of Effect per 25 Rampage Kills" }, } }, - ["UnaffectedByCursesUnique__1"] = { affix = "", "Unaffected by Curses", statOrder = { 2478 }, level = 85, group = "UnaffectedByCurses", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [3809896400] = { "Unaffected by Curses" }, } }, - ["ChanceToChillAttackersOnBlockUnique__1"] = { affix = "", "(30-40)% chance to Chill Attackers for 4 seconds on Block", statOrder = { 5766 }, level = 1, group = "ChanceToChillAttackersOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "red_herring", "elemental", "cold", "ailment" }, tradeHashes = { [864879045] = { "(30-40)% chance to Chill Attackers for 4 seconds on Block" }, } }, - ["ChanceToChillAttackersOnBlockUnique__2__"] = { affix = "", "Chill Attackers for 4 seconds on Block", statOrder = { 5766 }, level = 1, group = "ChanceToChillAttackersOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "red_herring", "elemental", "cold", "ailment" }, tradeHashes = { [864879045] = { "Chill Attackers for 4 seconds on Block" }, } }, - ["ChanceToShockAttackersOnBlockUnique__1_"] = { affix = "", "(30-40)% chance to Shock Attackers for 4 seconds on Block", statOrder = { 10006 }, level = 1, group = "ChanceToShockAttackersOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "elemental", "lightning", "ailment" }, tradeHashes = { [575111651] = { "(30-40)% chance to Shock Attackers for 4 seconds on Block" }, } }, - ["ChanceToShockAttackersOnBlockUnique__2"] = { affix = "", "Shock Attackers for 4 seconds on Block", statOrder = { 10006 }, level = 1, group = "ChanceToShockAttackersOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "elemental", "lightning", "ailment" }, tradeHashes = { [575111651] = { "Shock Attackers for 4 seconds on Block" }, } }, - ["SupportedByTrapAndMineDamageUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 16 Trap And Mine Damage", statOrder = { 457 }, level = 1, group = "SupportedByTrapAndMineDamage", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [3814066599] = { "Socketed Gems are Supported by Level 16 Trap And Mine Damage" }, } }, - ["SupportedByClusterTrapUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 16 Cluster Trap", statOrder = { 455 }, level = 1, group = "SupportedByClusterTrap", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [2854183975] = { "Socketed Gems are Supported by Level 16 Cluster Trap" }, } }, - ["AviansMightColdDamageUnique__1"] = { affix = "", "Adds (20-25) to (37-40) Cold Damage while you have Avian's Might", statOrder = { 9235 }, level = 1, group = "AviansMightColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3485231932] = { "Adds (20-25) to (37-40) Cold Damage while you have Avian's Might" }, } }, - ["AviansMightLightningDamageUnique__1_"] = { affix = "", "Adds (1-3) to (55-62) Lightning Damage while you have Avian's Might", statOrder = { 9247 }, level = 1, group = "AviansMightLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [855634301] = { "Adds (1-3) to (55-62) Lightning Damage while you have Avian's Might" }, } }, - ["AviansMightDurationUnique__1"] = { affix = "", "+(-2-2) seconds to Avian's Might Duration", statOrder = { 4933 }, level = 1, group = "AviansMightDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1251945210] = { "+(-2-2) seconds to Avian's Might Duration" }, } }, - ["GrantAviansAspectToAlliesUnique__1"] = { affix = "", "Aspect of the Avian also grants Avian's Might and Avian's Flight to nearby Allies", statOrder = { 4789 }, level = 1, group = "GrantAviansAspectToAllies", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2544408546] = { "Aspect of the Avian also grants Avian's Might and Avian's Flight to nearby Allies" }, } }, - ["AvianAspectBuffEffectUnique__1"] = { affix = "", "100% increased Aspect of the Avian Buff Effect", statOrder = { 4788 }, level = 1, group = "AvianAspectBuffEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1746347097] = { "100% increased Aspect of the Avian Buff Effect" }, } }, - ["AviansFlightLifeRegenerationUnique__1"] = { affix = "", "Regenerate 100 Life per Second while you have Avian's Flight", statOrder = { 7408 }, level = 1, group = "AviansFlightLifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2589482056] = { "Regenerate 100 Life per Second while you have Avian's Flight" }, } }, - ["AviansFlightManaRegenerationUnique__1_"] = { affix = "", "Regenerate 12 Mana per Second while you have Avian's Flight", statOrder = { 8207 }, level = 1, group = "AviansFlightManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1495376076] = { "Regenerate 12 Mana per Second while you have Avian's Flight" }, } }, - ["AviansFlightDurationUnique__1"] = { affix = "", "+(-2-2) seconds to Avian's Flight Duration", statOrder = { 4932 }, level = 1, group = "AviansFlightDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1251731548] = { "+(-2-2) seconds to Avian's Flight Duration" }, } }, - ["GrantsAvianTornadoUnique__1__"] = { affix = "", "Trigger Level 20 Twister when you gain Avian's Might or Avian's Flight", statOrder = { 797 }, level = 1, group = "GrantsAvianTornado", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [2554328719] = { "Trigger Level 20 Twister when you gain Avian's Might or Avian's Flight" }, } }, - ["CatsStealthTriggeredIntimidatingCry"] = { affix = "", "Trigger Level 20 Intimidating Cry when you lose Cat's Stealth", statOrder = { 812 }, level = 1, group = "CatsStealthTriggeredIntimidatingCry", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [3892608176] = { "Trigger Level 20 Intimidating Cry when you lose Cat's Stealth" }, } }, - ["MaximumCrabBarriersUnique__1"] = { affix = "", "+5 to Maximum number of Crab Barriers", statOrder = { 4349 }, level = 81, group = "MaximumCrabBarriers", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2894704558] = { "+5 to Maximum number of Crab Barriers" }, } }, - ["AdditionalBlockChance5CrabBarriersUnique__1"] = { affix = "", "+3% Chance to Block Attack Damage while you have at least 5 Crab Barriers", statOrder = { 4352 }, level = 1, group = "AdditionalBlockChance5CrabBarriers", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [1354504703] = { "+3% Chance to Block Attack Damage while you have at least 5 Crab Barriers" }, } }, - ["AdditionalBlockChance10CrabBarriersUnique__1"] = { affix = "", "+5% Chance to Block Attack Damage while you have at least 10 Crab Barriers", statOrder = { 4353 }, level = 1, group = "AdditionalBlockChance10CrabBarriers", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [653107703] = { "+5% Chance to Block Attack Damage while you have at least 10 Crab Barriers" }, } }, - ["CrabBarriersLostWhenHitUnique__1_"] = { affix = "", "You only lose (5-7) Crab Barriers when you take Physical Damage from a Hit", statOrder = { 4351 }, level = 1, group = "CrabBarriersLostWhenHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [455217103] = { "You only lose (5-7) Crab Barriers when you take Physical Damage from a Hit" }, } }, - ["DamagePerCrabBarrierUnique__1"] = { affix = "", "3% increased Damage per Crab Barrier", statOrder = { 4350 }, level = 1, group = "DamagePerCrabBarrier", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [1019038967] = { "3% increased Damage per Crab Barrier" }, } }, - ["ChanceToGainMaximumCrabBarriersUnique__1_"] = { affix = "", "10% chance that if you would gain a Crab Barrier, you instead gain up to", "your maximum number of Crab Barriers", statOrder = { 4354, 4354.1 }, level = 1, group = "ChanceToGainMaximumCrabBarriers", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1829869055] = { "10% chance that if you would gain a Crab Barrier, you instead gain up to", "your maximum number of Crab Barriers" }, } }, - ["CannotBeStunned10CrabBarriersUnique__1"] = { affix = "", "Cannot be Stunned if you have at least 10 Crab Barriers", statOrder = { 4347 }, level = 1, group = "CannotBeStunned10CrabBarriers", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [877233648] = { "Cannot be Stunned if you have at least 10 Crab Barriers" }, } }, - ["CannotLoseCrabBarriersIfLostRecentlyUnique__1"] = { affix = "", "Cannot lose Crab Barriers if you have lost Crab Barriers Recently", statOrder = { 4348 }, level = 1, group = "CannotLoseCrabBarriersIfLostRecently", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [241251790] = { "Cannot lose Crab Barriers if you have lost Crab Barriers Recently" }, } }, - ["GainPhasingWhileCatsStealthUnique__1"] = { affix = "", "You have Phasing while you have Cat's Stealth", statOrder = { 6800 }, level = 1, group = "GainPhasingWhileCatsStealth", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1834455446] = { "You have Phasing while you have Cat's Stealth" }, } }, - ["GainOnslaughtWhileCatsAgilityUnique__1_"] = { affix = "", "You have Onslaught while you have Cat's Agility", statOrder = { 6792 }, level = 1, group = "GainOnslaughtWhileCatsAgility", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4274075490] = { "You have Onslaught while you have Cat's Agility" }, } }, - ["CatsStealthDurationUnique__1_"] = { affix = "", "+2 seconds to Cat's Stealth Duration", statOrder = { 5477 }, level = 1, group = "CatsStealthDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [387596329] = { "+2 seconds to Cat's Stealth Duration" }, } }, - ["CatsAgilityDurationUnique__1"] = { affix = "", "+2 seconds to Cat's Agility Duration", statOrder = { 4790 }, level = 1, group = "CatsAgilityDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3686519528] = { "+2 seconds to Cat's Agility Duration" }, } }, - ["CatAspectReservesNoManaUnique__1___"] = { affix = "", "Aspect of the Cat has no Reservation", statOrder = { 5476 }, level = 1, group = "CatAspectReservesNoMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [3850409117] = { "Aspect of the Cat has no Reservation" }, } }, - ["GainMaxFrenzyAndPowerOnCatsStealthUnique__1"] = { affix = "", "Gain up to your maximum number of Frenzy and Power Charges when you gain Cat's Stealth", statOrder = { 6773 }, level = 1, group = "GainMaxFrenzyAndPowerOnCatsStealth", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge", "power_charge" }, tradeHashes = { [2446580062] = { "Gain up to your maximum number of Frenzy and Power Charges when you gain Cat's Stealth" }, } }, - ["GainMaxFrenzyAndEnduranceOnCatsAgilityUnique__1"] = { affix = "", "Gain up to your maximum number of Frenzy and Endurance Charges when you gain Cat's Agility", statOrder = { 6772 }, level = 1, group = "GainMaxFrenzyAndEnduranceOnCatsAgility", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge", "power_charge" }, tradeHashes = { [523966073] = { "Gain up to your maximum number of Frenzy and Endurance Charges when you gain Cat's Agility" }, } }, - ["AttacksBleedOnHitWithCatsStealthUnique__1_"] = { affix = "", "Attacks always inflict Bleeding while you have Cat's Stealth", statOrder = { 4910 }, level = 1, group = "AttacksBleedOnHitWithCatsStealth", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [2059771038] = { "Attacks always inflict Bleeding while you have Cat's Stealth" }, } }, - ["GainCrimsonDanceWithCatsStealthUnique__1"] = { affix = "", "You have Crimson Dance while you have Cat's Stealth", statOrder = { 10834 }, level = 1, group = "GainCrimsonDanceWithCatsStealth", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, tradeHashes = { [3492797685] = { "You have Crimson Dance while you have Cat's Stealth" }, } }, - ["MovementSpeedWithCatsStealthUnique__1"] = { affix = "", "20% increased Movement Speed while you have Cat's Stealth", statOrder = { 9438 }, level = 1, group = "MovementSpeedWithCatsStealth", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [673704994] = { "20% increased Movement Speed while you have Cat's Stealth" }, } }, - ["AdditionalCriticalStrikeChanceWithCatAspectUnique__1"] = { affix = "", "+1% to Critical Strike Chance while affected by Aspect of the Cat", statOrder = { 4360 }, level = 1, group = "AdditionalCriticalStrikeChanceWithCatAspect", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [3992636701] = { "+1% to Critical Strike Chance while affected by Aspect of the Cat" }, } }, - ["CritsBlindChanceWithCatsStealthUnique__1"] = { affix = "", "Critical Strikes have (10-20)% chance to Blind Enemies while you have Cat's Stealth", statOrder = { 4361 }, level = 1, group = "CritsBlindChanceWithCatsStealth", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [843854434] = { "Critical Strikes have (10-20)% chance to Blind Enemies while you have Cat's Stealth" }, } }, - ["DamageAgainstBlindedEnemiesUnique__1"] = { affix = "", "(40-50)% increased Damage with Hits and Ailments against Blinded Enemies", statOrder = { 7150 }, level = 1, group = "DamageAgainstBlindedEnemies", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [3565956680] = { "(40-50)% increased Damage with Hits and Ailments against Blinded Enemies" }, } }, - ["ChanceToAvoidBleedingUnique__1"] = { affix = "", "(40-50)% chance to Avoid Bleeding", statOrder = { 4216 }, level = 1, group = "ChanceToAvoidBleeding", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1618589784] = { "(40-50)% chance to Avoid Bleeding" }, } }, - ["ChanceToAvoidBleedingUnique__2_"] = { affix = "", "100% chance to Avoid Bleeding", statOrder = { 4216 }, level = 1, group = "ChanceToAvoidBleeding", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1618589784] = { "100% chance to Avoid Bleeding" }, } }, - ["DamageAgainstBleedingEnemiesUnique__1"] = { affix = "", "(40-50)% increased Damage with Hits and Ailments against Bleeding Enemies", statOrder = { 7149 }, level = 1, group = "DamageAgainstBleedingEnemies", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [1790172543] = { "(40-50)% increased Damage with Hits and Ailments against Bleeding Enemies" }, } }, - ["AccuracyAgainstBleedingEnemiesUnique__1"] = { affix = "", "+(400-500) to Accuracy Rating", statOrder = { 1433 }, level = 1, group = "AccuracyAgainstBleedingEnemies", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(400-500) to Accuracy Rating" }, } }, - ["CommandmentOfInfernoOnCritUnique__1"] = { affix = "", "Trigger Commandment of Inferno on Critical Strike", statOrder = { 786 }, level = 1, group = "CommandmentOfInfernoOnCrit", weightKey = { }, weightVal = { }, modTags = { "skill", "critical" }, tradeHashes = { [3251948367] = { "Trigger Commandment of Inferno on Critical Strike" }, } }, - ["MaximumResistancesOverrideUnique__1"] = { affix = "", "Your Maximum Resistances are (76-78)%", statOrder = { 9563 }, level = 1, group = "MaximumResistancesOverride", weightKey = { }, weightVal = { }, modTags = { "elemental", "chaos", "resistance" }, tradeHashes = { [798767971] = { "Your Maximum Resistances are (76-78)%" }, } }, - ["MaximumResistancesOverrideUnique__2"] = { affix = "", "Your Maximum Resistances are (70-72)%", statOrder = { 9563 }, level = 1, group = "MaximumResistancesOverride", weightKey = { }, weightVal = { }, modTags = { "elemental", "chaos", "resistance" }, tradeHashes = { [798767971] = { "Your Maximum Resistances are (70-72)%" }, } }, - ["BurningDamagePerEnemyShockedRecentlyUnique__1_"] = { affix = "", "(8-12)% increased Burning Damage for each time you have Shocked a Non-Shocked Enemy Recently, up to a maximum of 120%", statOrder = { 5382 }, level = 1, group = "BurningDamagePerEnemyShockedRecently", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3285748758] = { "(8-12)% increased Burning Damage for each time you have Shocked a Non-Shocked Enemy Recently, up to a maximum of 120%" }, } }, - ["AddedLightningDamageAgainstIgnitedEnemiesUnique__1"] = { affix = "", "Adds (1-3) to (62-70) Lightning Damage to Hits against Ignited Enemies", statOrder = { 6886 }, level = 1, group = "AddedLightningDamageAgainstIgnitedEnemies", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2870108850] = { "Adds (1-3) to (62-70) Lightning Damage to Hits against Ignited Enemies" }, } }, - ["LightningDamageCanIgniteUnique__1"] = { affix = "", "Your Lightning Damage can Ignite", statOrder = { 7444 }, level = 100, group = "LightningDamageCanIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [3121133045] = { "Your Lightning Damage can Ignite" }, } }, - ["ProjectileAttackDamageAt200DexterityUnique__1"] = { affix = "", "(40-50)% increased Projectile Attack Damage while you have at least 200 Dexterity", statOrder = { 4363 }, level = 60, group = "ProjectileAttackDamageAt200Dexterity", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [1822142649] = { "(40-50)% increased Projectile Attack Damage while you have at least 200 Dexterity" }, } }, - ["CriticalStrikeChanceAt200IntelligenceUnique__1"] = { affix = "", "(50-60)% increased Critical Strike Chance while you have at least 200 Intelligence", statOrder = { 4364 }, level = 60, group = "CriticalStrikeChanceAt200Intelligence", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [578121324] = { "(50-60)% increased Critical Strike Chance while you have at least 200 Intelligence" }, } }, - ["AddedFireDamageWhileNoLifeReservedUnique__1"] = { affix = "", "Adds (54-64) to (96-107) Fire Damage to Spells while no Life is Reserved", statOrder = { 9253 }, level = 1, group = "AddedFireDamageWhileNoLifeReserved", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [833719670] = { "Adds (54-64) to (96-107) Fire Damage to Spells while no Life is Reserved" }, } }, - ["AddedColdDamageWhileNoLifeReservedUnique__1__"] = { affix = "", "Adds (42-54) to (78-88) Cold Damage to Spells while no Life is Reserved", statOrder = { 9252 }, level = 1, group = "AddedColdDamageWhileNoLifeReserved", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [897996059] = { "Adds (42-54) to (78-88) Cold Damage to Spells while no Life is Reserved" }, } }, - ["AddedLightningDamageWhileNoLifeReservedUnique__1"] = { affix = "", "Adds (5-14) to (160-173) Lightning Damage to Spells while no Life is Reserved", statOrder = { 9254 }, level = 1, group = "AddedLightningDamageWhileNoLifeReserved", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [985999215] = { "Adds (5-14) to (160-173) Lightning Damage to Spells while no Life is Reserved" }, } }, - ["OnslaughtOnLowLifeUnique__1"] = { affix = "", "You have Onslaught while on Low Life", statOrder = { 6791 }, level = 77, group = "OnslaughtOnLowLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1871938116] = { "You have Onslaught while on Low Life" }, } }, - ["IgnoreEnemyFireResistWhileIgnitedUnique__1"] = { affix = "", "Hits ignore Enemy Monster Fire Resistance while you are Ignited", statOrder = { 7168 }, level = 75, group = "IgnoreEnemyFireResistWhileIgnited", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [4040152475] = { "Hits ignore Enemy Monster Fire Resistance while you are Ignited" }, } }, - ["CrimsonDanceIfCritRecentlyUnique__1"] = { affix = "", "You have Crimson Dance if you have dealt a Critical Strike Recently", statOrder = { 10833 }, level = 74, group = "CrimsonDanceIfCritRecently", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, tradeHashes = { [1756017808] = { "You have Crimson Dance if you have dealt a Critical Strike Recently" }, } }, - ["AnimateGuardianWeaponOnGuardianKillUnique__1_"] = { affix = "", "Trigger Level 20 Animate Guardian's Weapon when Animated Guardian Kills an Enemy", statOrder = { 793 }, level = 1, group = "AnimateGuardianWeaponOnGuardianKillUnique", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3682009780] = { "Trigger Level 20 Animate Guardian's Weapon when Animated Guardian Kills an Enemy" }, [1361762803] = { "" }, } }, - ["AnimateGuardianWeaponOnAnimatedWeaponKillUnique__1"] = { affix = "", "10% chance to Trigger Level 18 Animate Guardian's Weapon when Animated Weapon Kills an Enemy", statOrder = { 794 }, level = 1, group = "AnimateGuardianWeaponOnAnimatedWeaponKill", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [919960234] = { "10% chance to Trigger Level 18 Animate Guardian's Weapon when Animated Weapon Kills an Enemy" }, [1361762803] = { "" }, } }, - ["CannnotHaveNonAnimatedMinionsUnique__1"] = { affix = "", "You cannot have Non-Animated, Non-Manifested Minions", statOrder = { 10658 }, level = 1, group = "CannnotHaveNonAnimatedMinions", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [1220105149] = { "You cannot have Non-Animated, Non-Manifested Minions" }, } }, - ["AnimatedGuardianDamagePerAnimatedWeaponUnique__1__"] = { affix = "", "Animated Guardian deals 5% increased Damage per Animated Weapon", statOrder = { 4689 }, level = 1, group = "AnimatedGuardianDamagePerAnimatedWeapon", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [759294825] = { "Animated Guardian deals 5% increased Damage per Animated Weapon" }, } }, - ["AnimatedMinionsHaveMeleeSplashUnique__1"] = { affix = "", "Animated and Manifested Minions' Melee Strikes deal Splash", "Damage to surrounding targets", statOrder = { 4692, 4692.1 }, level = 1, group = "AnimatedMinionsHaveMeleeSplash", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [91242932] = { "Animated and Manifested Minions' Melee Strikes deal Splash", "Damage to surrounding targets" }, } }, - ["IncreasedAnimatedMinionSplashDamageUnique__1"] = { affix = "", "Animated and Manifested Minions' Melee Strikes deal 50% less Splash Damage", statOrder = { 6907 }, level = 1, group = "IncreasedAnimatedMinionSplashDamage", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [478698670] = { "Animated and Manifested Minions' Melee Strikes deal 50% less Splash Damage" }, } }, - ["FireDamageToAttacksPerStrengthUnique__1"] = { affix = "", "Adds 1 to 2 Fire Damage to Attacks per 10 Strength", statOrder = { 9240 }, level = 1, group = "FireDamageToAttacksPerStrength", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "attack" }, tradeHashes = { [68673913] = { "Adds 1 to 2 Fire Damage to Attacks per 10 Strength" }, } }, - ["ColdDamageToAttacksPerDexterityUnique__1"] = { affix = "", "Adds 1 to 2 Cold Damage to Attacks per 10 Dexterity", statOrder = { 9232 }, level = 1, group = "ColdDamageToAttacksPerDexterity", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "attack" }, tradeHashes = { [769783486] = { "Adds 1 to 2 Cold Damage to Attacks per 10 Dexterity" }, } }, - ["LightningDamageToAttacksPerIntelligenceUnique__1"] = { affix = "", "Adds 0 to 3 Lightning Damage to Attacks per 10 Intelligence", statOrder = { 9245 }, level = 1, group = "LightningDamageToAttacksPerIntelligence", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "attack" }, tradeHashes = { [3168149399] = { "Adds 0 to 3 Lightning Damage to Attacks per 10 Intelligence" }, } }, - ["AttackSpeedIfCriticalStrikeDealtRecentlyUnique__1"] = { affix = "", "(8-12)% increased Attack Speed if you've dealt a Critical Strike Recently", statOrder = { 4897 }, level = 1, group = "AttackSpeedIfCriticalStrikeDealtRecently", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [1585344030] = { "(8-12)% increased Attack Speed if you've dealt a Critical Strike Recently" }, } }, - ["CastSpeedIfCriticalStrikeDealtRecentlyUnique__1"] = { affix = "", "(8-12)% increased Cast Speed if you've dealt a Critical Strike Recently", statOrder = { 5468 }, level = 1, group = "CastSpeedIfCriticalStrikeDealtRecently", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [1174076861] = { "(8-12)% increased Cast Speed if you've dealt a Critical Strike Recently" }, } }, - ["EffectOfChillIsReversedUnique__1"] = { affix = "", "The Effect of Chill on you is reversed", statOrder = { 5768 }, level = 30, group = "EffectOfChillIsReversed", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2955966707] = { "The Effect of Chill on you is reversed" }, } }, - ["TriggerSocketedSpellOnBowAttackUnique__1_"] = { affix = "", "Trigger a Socketed Spell when you Attack with a Bow, with a 0.3 second Cooldown", statOrder = { 544 }, level = 57, group = "TriggerSocketedSpellOnBowAttack", weightKey = { }, weightVal = { }, modTags = { "skill", "attack", "caster", "gem" }, tradeHashes = { [3302736916] = { "Trigger a Socketed Spell when you Attack with a Bow, with a 0.3 second Cooldown" }, } }, - ["TriggerSocketedSpellOnBowAttackUnique__2"] = { affix = "", "Trigger a Socketed Spell when you Attack with a Bow, with a 0.3 second Cooldown", statOrder = { 544 }, level = 1, group = "TriggerSocketedSpellOnBowAttack", weightKey = { }, weightVal = { }, modTags = { "skill", "attack", "caster", "gem" }, tradeHashes = { [3302736916] = { "Trigger a Socketed Spell when you Attack with a Bow, with a 0.3 second Cooldown" }, } }, - ["CountAsLowLifeWhenNotOnFullLifeUnique__1"] = { affix = "", "You count as on Low Life while not on Full Life", statOrder = { 10662 }, level = 75, group = "CountAsLowLifeWhenNotOnFullLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2475362240] = { "You count as on Low Life while not on Full Life" }, } }, - ["IncreasedSpiderWebCountUnique__1"] = { affix = "", "Aspect of the Spider can inflict Spider's Web on Enemies an additional time", statOrder = { 4791 }, level = 1, group = "IncreasedSpiderWebCount", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1509532587] = { "Aspect of the Spider can inflict Spider's Web on Enemies an additional time" }, } }, - ["AspectOfSpiderDurationUnique__1"] = { affix = "", "(40-50)% increased Aspect of the Spider Debuff Duration", statOrder = { 10202 }, level = 1, group = "AspectOfSpiderDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [332854027] = { "(40-50)% increased Aspect of the Spider Debuff Duration" }, } }, - ["ESOnHitWebbedEnemiesUnique__1"] = { affix = "", "Gain (15-20) Energy Shield for each Enemy you Hit which is affected by a Spider's Web", statOrder = { 6434 }, level = 1, group = "ESOnHitWebbedEnemies", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [549215295] = { "Gain (15-20) Energy Shield for each Enemy you Hit which is affected by a Spider's Web" }, } }, - ["AspectOfSpiderWebIntervalUnique__1"] = { affix = "", "Aspect of the Spider inflicts Spider's Webs and Hinder every 0.5 Seconds instead", statOrder = { 10205 }, level = 1, group = "AspectOfSpiderWebInterval", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3832130495] = { "Aspect of the Spider inflicts Spider's Webs and Hinder every 0.5 Seconds instead" }, } }, - ["PowerChargeOnHitWebbedEnemyUnique__1"] = { affix = "", "10% chance to gain a Power Charge on hitting an Enemy affected by a Spider's Web", statOrder = { 5696 }, level = 1, group = "PowerChargeOnHitWebbedEnemy", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [273206351] = { "10% chance to gain a Power Charge on hitting an Enemy affected by a Spider's Web" }, } }, - ["PoisonChancePerPowerChargeUnique__1"] = { affix = "", "(6-10)% chance to Poison per Power Charge", statOrder = { 5718 }, level = 1, group = "PoisonChancePerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [2992087211] = { "(6-10)% chance to Poison per Power Charge" }, } }, - ["PoisonDamagePerPowerChargeUnique__1"] = { affix = "", "(15-20)% increased Damage with Poison per Power Charge", statOrder = { 9681 }, level = 1, group = "PoisonDamagePerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, tradeHashes = { [4230767876] = { "(15-20)% increased Damage with Poison per Power Charge" }, } }, - ["ChaosDamagePerWebOnEnemyUnique__1"] = { affix = "", "Adds (8-10) to (13-15) Chaos Damage for each Spider's Web on the Enemy", statOrder = { 9227 }, level = 1, group = "ChaosDamagePerWebOnEnemy", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [982177653] = { "Adds (8-10) to (13-15) Chaos Damage for each Spider's Web on the Enemy" }, } }, - ["DamageAgainstEnemiesWith3WebsUnique__1_"] = { affix = "", "(40-60)% increased Damage with Hits and Ailments against Enemies affected by 3 Spider's Webs", statOrder = { 7154 }, level = 1, group = "DamageAgainstEnemiesWith3Webs", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [103928310] = { "(40-60)% increased Damage with Hits and Ailments against Enemies affected by 3 Spider's Webs" }, } }, - ["AreaOfEffectAspectOfSpiderUnique__1"] = { affix = "", "(50-70)% increased Aspect of the Spider Area of Effect", statOrder = { 10204 }, level = 1, group = "AreaOfEffectAspectOfSpider", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3686780108] = { "(50-70)% increased Aspect of the Spider Area of Effect" }, } }, - ["DamageDealtByWebbedEnemiesUnique__1"] = { affix = "", "Enemies affected by your Spider's Webs deal 10% reduced Damage", statOrder = { 6041 }, level = 1, group = "DamageDealtByWebbedEnemies", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3231424461] = { "Enemies affected by your Spider's Webs deal 10% reduced Damage" }, } }, - ["ResistancesOfWebbedEnemiesUnique__1"] = { affix = "", "Enemies affected by your Spider's Webs have -10% to All Resistances", statOrder = { 9924 }, level = 1, group = "ResistancesOfWebbedEnemies", weightKey = { }, weightVal = { }, modTags = { "resistance" }, tradeHashes = { [785655723] = { "Enemies affected by your Spider's Webs have -10% to All Resistances" }, } }, - ["NoArmourOrEnergyShieldUnique__1_"] = { affix = "", "You have no Armour or Maximum Energy Shield", statOrder = { 10664 }, level = 1, group = "NoArmourOrEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3591359751] = { "You have no Armour or Maximum Energy Shield" }, } }, - ["PoachersMarkCurseOnHitHexproofUnique__1"] = { affix = "", "Trigger Level 30 Poacher's Mark when you Hit a Rare or Unique Enemy and have no Mark", statOrder = { 760 }, level = 61, group = "PoachersMarkCurseOnHitHexproof", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [364728407] = { "Trigger Level 30 Poacher's Mark when you Hit a Rare or Unique Enemy and have no Mark" }, } }, - ["CullingStrikePoachersMarkUnique__1"] = { affix = "", "Culling Strike against Enemies Cursed with Poacher's Mark", statOrder = { 5988 }, level = 1, group = "CullingStrikePoachersMark", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2114080270] = { "Culling Strike against Enemies Cursed with Poacher's Mark" }, } }, - ["DamageOnMovementSkillUnique__1"] = { affix = "", "Take (100-200) Physical Damage when you use a Movement Skill", statOrder = { 9977 }, level = 1, group = "DamageOnMovementSkill", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2590715472] = { "Take (100-200) Physical Damage when you use a Movement Skill" }, } }, - ["RagingSpiritDamageUnique__1_"] = { affix = "", "Summoned Raging Spirits deal (175-250)% increased Damage", statOrder = { 3651 }, level = 1, group = "RagingSpiritDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, tradeHashes = { [2085855914] = { "Summoned Raging Spirits deal (175-250)% increased Damage" }, } }, - ["RagingSpiritDamageUnique__2"] = { affix = "", "Summoned Raging Spirits deal (25-40)% increased Damage", statOrder = { 3651 }, level = 1, group = "RagingSpiritDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, tradeHashes = { [2085855914] = { "Summoned Raging Spirits deal (25-40)% increased Damage" }, } }, - ["RagingSpiritAlwaysIgniteUnique__1"] = { affix = "", "Summoned Raging Spirits' Hits always Ignite", statOrder = { 9802 }, level = 1, group = "RagingSpiritAlwaysIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "minion", "ailment" }, tradeHashes = { [3954637034] = { "Summoned Raging Spirits' Hits always Ignite" }, } }, - ["ReducedRagingSpiritsAllowedUnique__1"] = { affix = "", "75% reduced Maximum number of Summoned Raging Spirits", statOrder = { 9607 }, level = 1, group = "ReducedRagingSpiritsAllowed", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [1186934478] = { "75% reduced Maximum number of Summoned Raging Spirits" }, } }, - ["BlindingAuraSkillUnique__1"] = { affix = "", "Triggers Level 20 Blinding Aura when Equipped", statOrder = { 678 }, level = 79, group = "BlindingAuraSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [125312907] = { "Triggers Level 20 Blinding Aura when Equipped" }, } }, - ["AddedFireDamageAgainstBlindedEnemiesUnique__1_"] = { affix = "", "Adds (145-157) to (196-210) Fire Damage to Hits with this Weapon against Blinded Enemies", statOrder = { 9241 }, level = 1, group = "AddedFireDamageAgainstBlindedEnemies", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3977907993] = { "Adds (145-157) to (196-210) Fire Damage to Hits with this Weapon against Blinded Enemies" }, } }, - ["LightRadiusAppliesToAccuracyUnique__1_"] = { affix = "", "Increases and Reductions to Light Radius also apply to Accuracy", statOrder = { 7430 }, level = 1, group = "LightRadiusAppliesToAccuracy", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [411986876] = { "Increases and Reductions to Light Radius also apply to Accuracy" }, } }, - ["FirePenetrationAgainstBlindedEnemiesUnique__1"] = { affix = "", "Damage Penetrates 10% Fire Resistance against Blinded Enemies", statOrder = { 9878 }, level = 1, group = "FirePenetrationAgainstBlindedEnemies", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [1748657990] = { "Damage Penetrates 10% Fire Resistance against Blinded Enemies" }, } }, - ["HitsCannotBeEvadedAgainstBlindedEnemiesUnique__1"] = { affix = "", "Your Hits can't be Evaded by Blinded Enemies", statOrder = { 7160 }, level = 72, group = "HitsCannotBeEvadedAgainstBlindedEnemies", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [90597215] = { "Your Hits can't be Evaded by Blinded Enemies" }, } }, - ["ChillEffectUnique__1"] = { affix = "", "(15-20)% increased Effect of Cold Ailments", statOrder = { 5798 }, level = 1, group = "ChillEffect", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1793818220] = { "(15-20)% increased Effect of Cold Ailments" }, } }, - ["OnHitWhileCursedTriggeredCurseNovaUnique__1"] = { affix = "", "Trigger Level 20 Elemental Warding on Melee Hit while Cursed", statOrder = { 807 }, level = 77, group = "OnHitWhileCursedTriggeredCurseNova", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [810166817] = { "Trigger Level 20 Elemental Warding on Melee Hit while Cursed" }, } }, - ["ChanceToBePoisonedUnique__1"] = { affix = "", "+25% chance to be Poisoned", statOrder = { 3370 }, level = 1, group = "ChanceToBePoisoned", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [4250009622] = { "+25% chance to be Poisoned" }, } }, - ["PoisonExpiresSlowerUnique__1"] = { affix = "", "Poisons on you expire 50% slower", statOrder = { 9693 }, level = 1, group = "PoisonExpiresSlower", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [2443132097] = { "Poisons on you expire 50% slower" }, } }, - ["MaximumResistancesWhilePoisonedUnique__1"] = { affix = "", "+3% to all maximum Resistances while Poisoned", statOrder = { 4564 }, level = 1, group = "MaximumResistancesWhilePoisoned", weightKey = { }, weightVal = { }, modTags = { "resistance" }, tradeHashes = { [1030987123] = { "+3% to all maximum Resistances while Poisoned" }, } }, - ["EnergyShieldRegenPerPoisonUnique__1"] = { affix = "", "Regenerate 80 Energy Shield per Second per Poison on you, up to 400 per second", statOrder = { 6458 }, level = 1, group = "EnergyShieldRegenPerPoison", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [948687156] = { "Regenerate 80 Energy Shield per Second per Poison on you, up to 400 per second" }, } }, - ["BleedOnSelfDealChaosDamageUnique__1"] = { affix = "", "You take Chaos Damage instead of Physical Damage from Bleeding", statOrder = { 2450 }, level = 1, group = "BleedOnSelfDealChaosDamage", weightKey = { }, weightVal = { }, modTags = { "bleed", "poison", "physical", "chaos", "attack", "ailment" }, tradeHashes = { [1623397857] = { "You take Chaos Damage instead of Physical Damage from Bleeding" }, } }, - ["MaximumLifePercentPerCorruptedItemUnique__1_"] = { affix = "", "6% increased Maximum Life for each Corrupted Item Equipped", statOrder = { 3097 }, level = 1, group = "MaximumLifePerCorruptedItem", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [4169430079] = { "6% increased Maximum Life for each Corrupted Item Equipped" }, } }, - ["MaximumEnergyShieldPercentPerCorruptedItemUnique__1_"] = { affix = "", "8% increased Maximum Energy Shield for each Corrupted Item Equipped", statOrder = { 3098 }, level = 1, group = "MaximumEnergyShieldPerCorruptedItem", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3916980068] = { "8% increased Maximum Energy Shield for each Corrupted Item Equipped" }, } }, - ["AllResistancesPerCorruptedItemUnique__1"] = { affix = "", "-(6-4)% to all Resistances for each Corrupted Item Equipped", statOrder = { 3103 }, level = 1, group = "AllResistancesPerCorruptedItem", weightKey = { }, weightVal = { }, modTags = { "resistance" }, tradeHashes = { [3100523498] = { "-(6-4)% to all Resistances for each Corrupted Item Equipped" }, } }, - ["UniqueSelfCurseVulnerabilityLevel10"] = { affix = "", "You are Cursed with Vulnerability", statOrder = { 3122 }, level = 28, group = "UniqueSelfCurseVulnerability", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [694123963] = { "You are Cursed with Vulnerability" }, } }, - ["UniqueSelfCurseVulnerabilityLevel20"] = { affix = "", "You are Cursed with Vulnerability", statOrder = { 3122 }, level = 66, group = "UniqueSelfCurseVulnerability", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [694123963] = { "You are Cursed with Vulnerability" }, } }, - ["EnemiesExtraDamageRollsWhileAffectedByVulnerabilityUnique__1_"] = { affix = "", "Damage of Enemies Hitting you is Unlucky while you are Cursed with Vulnerability", statOrder = { 3117 }, level = 1, group = "EnemiesExtraDamageRollsWhileAffectedByVulnerability", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2758554648] = { "Damage of Enemies Hitting you is Unlucky while you are Cursed with Vulnerability" }, } }, - ["CountAsLowLifeWhileAffectedByVulnerabilityUnique__1"] = { affix = "", "You count as on Low Life while you are Cursed with Vulnerability", statOrder = { 3120 }, level = 1, group = "CountAsLowLifeWhileAffectedByVulnerability", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2304300603] = { "You count as on Low Life while you are Cursed with Vulnerability" }, } }, - ["TrapAreaOfEffectUnique__1"] = { affix = "", "Skills used by Traps have (10-20)% increased Area of Effect", statOrder = { 3479 }, level = 1, group = "TrapAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4050593908] = { "Skills used by Traps have (10-20)% increased Area of Effect" }, } }, - ["CastSpeedAppliesToTrapSpeedUnique__1"] = { affix = "", "Increases and Reductions to Cast Speed also Apply to Trap Throwing Speed", statOrder = { 4594 }, level = 1, group = "CastSpeedAppliesToTrapSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [3520223758] = { "Increases and Reductions to Cast Speed also Apply to Trap Throwing Speed" }, } }, - ["RandomChargeOnTrapTriggerUnique__1"] = { affix = "", "10% chance to gain an Endurance, Frenzy or Power Charge when any", "of your Traps are Triggered by an Enemy", statOrder = { 9605, 9605.1 }, level = 1, group = "RandomChargeOnTrapTrigger", weightKey = { }, weightVal = { }, modTags = { "endurance_charge", "frenzy_charge", "power_charge" }, tradeHashes = { [710805027] = { "10% chance to gain an Endurance, Frenzy or Power Charge when any", "of your Traps are Triggered by an Enemy" }, } }, - ["TrapSkillsHaveBloodMagicUnique__1"] = { affix = "", "Skills which throw Traps Cost Life instead of Mana", statOrder = { 10844 }, level = 1, group = "TrapSkillsHaveBloodMagic", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2420786978] = { "Skills which throw Traps Cost Life instead of Mana" }, } }, - ["CannotGainEnergyShieldUnique__1"] = { affix = "", "Cannot gain Energy Shield", statOrder = { 3118 }, level = 1, group = "CannotGainEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [206243615] = { "Cannot gain Energy Shield" }, } }, - ["LifeRegenerationWith500EnergyShieldUnique__1"] = { affix = "", "Regenerate 50 Life per second if you have at least 500 Maximum Energy Shield", statOrder = { 4371 }, level = 1, group = "LifeRegenerationWith500EnergyShield", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [1103902353] = { "Regenerate 50 Life per second if you have at least 500 Maximum Energy Shield" }, } }, - ["LifeRegenerationWith1000EnergyShieldUnique__1"] = { affix = "", "Regenerate 100 Life per second if you have at least 1000 Maximum Energy Shield", statOrder = { 4372 }, level = 1, group = "LifeRegenerationWith1000EnergyShield", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [1704843611] = { "Regenerate 100 Life per second if you have at least 1000 Maximum Energy Shield" }, } }, - ["LifeRegenerationWith1500EnergyShieldUnique__1"] = { affix = "", "Regenerate 150 Life per second if you have at least 1500 Maximum Energy Shield", statOrder = { 4373 }, level = 1, group = "LifeRegenerationWith1500EnergyShield", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3227159962] = { "Regenerate 150 Life per second if you have at least 1500 Maximum Energy Shield" }, } }, - ["IncreasedLifePerIntelligenceUnique__1"] = { affix = "", "+1 to Maximum Life per 2 Intelligence", statOrder = { 2023 }, level = 1, group = "IncreasedLifePerIntelligence", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [4284915962] = { "+1 to Maximum Life per 2 Intelligence" }, } }, - ["NoMaximumLifePerStrengthUnique__1"] = { affix = "", "Strength provides no bonus to Maximum Life", statOrder = { 2018 }, level = 1, group = "NoMaximumLifePerStrength", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2290031712] = { "Strength provides no bonus to Maximum Life" }, } }, - ["NoMaximumLifePerStrengthUnique__2"] = { affix = "", "Strength provides no bonus to Maximum Life", statOrder = { 2018 }, level = 1, group = "NoMaximumLifePerStrength", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2290031712] = { "Strength provides no bonus to Maximum Life" }, } }, - ["NoMaximumManaPerIntelligenceUnique__1"] = { affix = "", "Intelligence provides no inherent bonus to Maximum Mana", statOrder = { 2019 }, level = 1, group = "NoMaximumManaPerIntelligence", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2546599258] = { "Intelligence provides no inherent bonus to Maximum Mana" }, } }, - ["LifeRegenerationPer500EnergyShieldUnique__1"] = { affix = "", "Regenerate 1% of Life per second per 500 Maximum Energy Shield", statOrder = { 7419 }, level = 1, group = "LifeRegenerationPer500EnergyShield", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [1960833438] = { "Regenerate 1% of Life per second per 500 Maximum Energy Shield" }, } }, - ["SkeletonsTakeFireDamagrPerSecondUnique__1"] = { affix = "", "Summoned Skeletons take (15-30)% of their Maximum Life per second as Fire Damage", statOrder = { 10313 }, level = 1, group = "SkeletonsTakeFireDamagrPerSecond", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "minion" }, tradeHashes = { [2912438397] = { "Summoned Skeletons take (15-30)% of their Maximum Life per second as Fire Damage" }, } }, - ["SkeletonsCoverEnemiesInAshUnique__1"] = { affix = "", "Summoned Skeletons Cover Enemies in Ash on Hit", statOrder = { 10312 }, level = 1, group = "SkeletonsCoverEnemiesInAsh", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [3074608753] = { "Summoned Skeletons Cover Enemies in Ash on Hit" }, } }, - ["SkeletonsHaveAvatarOfFireUnique__1_"] = { affix = "", "Summoned Skeletons have Avatar of Fire", statOrder = { 10831 }, level = 1, group = "SkeletonsHaveAvatarOfFire", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "minion" }, tradeHashes = { [1958210928] = { "Summoned Skeletons have Avatar of Fire" }, } }, - ["AreaOfEffectPerEnemyKilledRecentlyUnique__1"] = { affix = "", "1% increased Area of Effect per Enemy killed recently, up to 50%", statOrder = { 4734 }, level = 1, group = "AreaOfEffectPerEnemyKilledRecently", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4070157876] = { "1% increased Area of Effect per Enemy killed recently, up to 50%" }, } }, - ["ZealotsOathIfHaventBeenHitRecentlyUnique__1"] = { affix = "", "You have Zealot's Oath if you haven't been hit recently", statOrder = { 10845 }, level = 1, group = "ZealotsOathIfHaventBeenHitRecently", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "defences", "energy_shield" }, tradeHashes = { [2391255504] = { "You have Zealot's Oath if you haven't been hit recently" }, } }, - ["LifeGainOnHitIfVaalSkillUsedRecentlyUnique__1"] = { affix = "", "Gain 10 Life per Enemy Hit if you have used a Vaal Skill Recently", statOrder = { 7357 }, level = 1, group = "LifeGainOnHitIfVaalSkillUsedRecently", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3285021988] = { "Gain 10 Life per Enemy Hit if you have used a Vaal Skill Recently" }, } }, - ["MovementVelocityIfVaalSkillUsedRecentlyUnique__1_"] = { affix = "", "10% increased Movement Speed if you have used a Vaal Skill Recently", statOrder = { 9423 }, level = 40, group = "MovementVelocityIfVaalSkillUsedRecently", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [1285172810] = { "10% increased Movement Speed if you have used a Vaal Skill Recently" }, } }, - ["GainPowerChargeOnUsingVaalSkillUnique__1"] = { affix = "", "Gain a Power Charge when you use a Vaal Skill", statOrder = { 6810 }, level = 1, group = "GainPowerChargeOnUsingVaalSkill", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [2383388829] = { "Gain a Power Charge when you use a Vaal Skill" }, } }, - ["ChaosDamageCanIgniteChillAndShockUnique__1"] = { affix = "", "Chaos Damage can Ignite, Chill and Shock", statOrder = { 2887 }, level = 1, group = "ChaosDamageCanIgniteChillAndShock", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [3470457445] = { "Chaos Damage can Ignite, Chill and Shock" }, } }, - ["GainSoulEaterOnVaalSkillUseUnique__1"] = { affix = "", "Gain Soul Eater for 20 seconds when you use a Vaal Skill", statOrder = { 6823 }, level = 88, group = "GainSoulEaterOnVaalSkillUse", weightKey = { }, weightVal = { }, modTags = { "vaal" }, tradeHashes = { [161058250] = { "Gain Soul Eater for 20 seconds when you use a Vaal Skill" }, } }, - ["DamageConversionToRandomElementUnique__1"] = { affix = "", "75% of Physical Damage converted to a random Element", statOrder = { 1961 }, level = 1, group = "DamageConversionToRandomElement", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "attack" }, tradeHashes = { [1776612984] = { "75% of Physical Damage converted to a random Element" }, } }, - ["LocalDamageConversionToRandomElementUnique__1"] = { affix = "", "50% of Physical Damage from Hits with this Weapon is Converted to a random Element", statOrder = { 4365 }, level = 1, group = "LocalDamageConversionToRandomElement", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "attack" }, tradeHashes = { [1431238626] = { "50% of Physical Damage from Hits with this Weapon is Converted to a random Element" }, } }, - ["LocalDamageConversionToRandomElementUnique__2_"] = { affix = "", "100% of Physical Damage from Hits with this Weapon is Converted to a random Element", statOrder = { 4365 }, level = 1, group = "LocalDamageConversionToRandomElement", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "attack" }, tradeHashes = { [1431238626] = { "100% of Physical Damage from Hits with this Weapon is Converted to a random Element" }, } }, - ["LocalDamageConversionToRandomElementImplicitE1"] = { affix = "", "100% of Physical Damage from Hits with this Weapon is Converted to a random Element", statOrder = { 4365 }, level = 1, group = "LocalDamageConversionToRandomElement", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "attack" }, tradeHashes = { [1431238626] = { "100% of Physical Damage from Hits with this Weapon is Converted to a random Element" }, } }, - ["LocalAlwaysInflictElementalAilmentsUnique__1"] = { affix = "", "Hits with this Weapon always Ignite, Freeze, and Shock", statOrder = { 4367 }, level = 1, group = "LocalAlwaysInflictElementalAilments", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "attack", "ailment" }, tradeHashes = { [2451774989] = { "Hits with this Weapon always Ignite, Freeze, and Shock" }, } }, - ["LocalElementalDamageAgainstIgnitedEnemiesUnique__1_"] = { affix = "", "Hits with this Weapon deal (30-60)% increased Damage to Ignited Enemies", statOrder = { 4368 }, level = 1, group = "LocalElementalDamageAgainstIgnitedEnemies", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [3095345438] = { "Hits with this Weapon deal (30-60)% increased Damage to Ignited Enemies" }, } }, - ["LocalElementalDamageAgainstFrozenEnemiesUnique__1"] = { affix = "", "Hits with this Weapon deal (30-60)% increased Damage to Frozen Enemies", statOrder = { 4369 }, level = 1, group = "LocalElementalDamageAgainstFrozenEnemies", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [196313911] = { "Hits with this Weapon deal (30-60)% increased Damage to Frozen Enemies" }, } }, - ["LocalElementalDamageAgainstShockedEnemiesUnique__1_"] = { affix = "", "Hits with this Weapon deal (30-60)% increased Damage to Shocked Enemies", statOrder = { 4370 }, level = 1, group = "LocalElementalDamageAgainstShockedEnemies", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [1470894892] = { "Hits with this Weapon deal (30-60)% increased Damage to Shocked Enemies" }, } }, - ["OnslaughtWhileNotOnLowManaUnique__1_"] = { affix = "", "You have Onslaught while not on Low Mana", statOrder = { 6790 }, level = 1, group = "OnslaughtWhileNotOnLowMana", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1959256242] = { "You have Onslaught while not on Low Mana" }, } }, - ["LoseManaPerSecondUnique__1"] = { affix = "", "Lose (30-40) Mana per Second", statOrder = { 8172 }, level = 1, group = "LoseManaPerSecond", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2589042711] = { "Lose (30-40) Mana per Second" }, } }, - ["LoseManaPercentPerSecondUnique__1"] = { affix = "", "Lose 7% of Mana per Second", statOrder = { 8173 }, level = 1, group = "LoseManaPercentPerSecond", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2936435999] = { "Lose 7% of Mana per Second" }, } }, - ["DodgeAndSpellDodgePerMaximumManaUnique__1"] = { affix = "", "20% increased Evasion Rating per 500 Maximum Mana", statOrder = { 6480 }, level = 1, group = "DodgeAndSpellDodgePerMaximumMana", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [3147253569] = { "20% increased Evasion Rating per 500 Maximum Mana" }, } }, - ["DisplayHasAdditionalModUnique__1"] = { affix = "", "Has an additional Implicit Mod", statOrder = { 640 }, level = 1, group = "DisplayHasAdditionalMod", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2489070122] = { "Has an additional Implicit Mod" }, } }, - ["TriggerSummonPhantasmOnCorpseConsumeUnique__1"] = { affix = "", "Trigger Level 25 Summon Phantasm Skill when you Consume a corpse", statOrder = { 818 }, level = 1, group = "TriggerSummonPhantasmOnCorpseConsume", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3252082366] = { "Trigger Level 25 Summon Phantasm Skill when you Consume a corpse" }, } }, - ["CastSpeedPerCorpseConsumedRecentlyUnique__1"] = { affix = "", "3% increased Cast Speed for each corpse Consumed Recently", statOrder = { 5470 }, level = 1, group = "CastSpeedPerCorpseConsumedRecently", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2142553855] = { "3% increased Cast Speed for each corpse Consumed Recently" }, } }, - ["LifeRegenerationIfCorpseConsumedRecentlyUnique__1"] = { affix = "", "If you Consumed a corpse Recently, you and nearby Allies Regenerate 5% of Life per second", statOrder = { 10642 }, level = 1, group = "LifeRegenerationIfCorpseConsumedRecently", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [4089969970] = { "If you Consumed a corpse Recently, you and nearby Allies Regenerate 5% of Life per second" }, } }, - ["CannotHaveNonGolemMinionsUnique__1_"] = { affix = "", "You cannot have non-Golem Minions", statOrder = { 3691 }, level = 1, group = "CannotHaveNonGolemMinions", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [1826605755] = { "You cannot have non-Golem Minions" }, } }, - ["UniqueTriggerSocketedWarcriesOnEnduranceChargeExpireOrUse"] = { affix = "", "Trigger a Socketed Warcry Skill on losing Endurance Charges, with a 0.25 second Cooldown", statOrder = { 156 }, level = 1, group = "UniqueTriggerSocketedWarcriesOnEnduranceChargeExpireOrUse", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1112135314] = { "Trigger a Socketed Warcry Skill on losing Endurance Charges, with a 0.25 second Cooldown" }, } }, - ["UniqueCurseWithSocketedCurseOnHit_"] = { affix = "", "Curse Enemies with Socketed Hex Curse Gem on Hit", statOrder = { 7890 }, level = 30, group = "UniqueCurseWithSocketedCurseOnHit", weightKey = { }, weightVal = { }, modTags = { "skill", "caster", "gem", "curse" }, tradeHashes = { [1352418057] = { "Curse Enemies with Socketed Hex Curse Gem on Hit" }, } }, - ["LessGolemDamageUnique__1"] = { affix = "", "Golems Deal (25-35)% less Damage", statOrder = { 3700 }, level = 1, group = "LessGolemDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, tradeHashes = { [2861397339] = { "Golems Deal (25-35)% less Damage" }, } }, - ["LessGolemLifeUnique__1"] = { affix = "", "Golems have (25-35)% less Life", statOrder = { 4094 }, level = 1, group = "LessGolemLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, tradeHashes = { [3730242558] = { "Golems have (25-35)% less Life" }, } }, - ["GolemSizeUnique__1"] = { affix = "", "25% reduced Golem Size", statOrder = { 3692 }, level = 1, group = "GolemSize", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [2576412389] = { "25% reduced Golem Size" }, } }, - ["GolemMovementSpeedUnique__1"] = { affix = "", "Golems have (80-100)% increased Movement Speed", statOrder = { 6900 }, level = 1, group = "GolemMovementSpeed", weightKey = { }, weightVal = { }, modTags = { "speed", "minion" }, tradeHashes = { [186383409] = { "Golems have (80-100)% increased Movement Speed" }, } }, - ["SacrificeLifeToGainESUnique__1"] = { affix = "", "Sacrifice (5-25)% of Life to gain that much Energy Shield when you Cast a Spell", statOrder = { 9957 }, level = 1, group = "SacrificeLifeToGainES", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "defences", "energy_shield" }, tradeHashes = { [613752285] = { "Sacrifice (5-25)% of Life to gain that much Energy Shield when you Cast a Spell" }, } }, - ["PhysicalDamageReductionPerKeystoneUnique__1"] = { affix = "", "4% additional Physical Damage Reduction per Keystone", statOrder = { 4575 }, level = 1, group = "PhysicalDamageReductionPerKeystone", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHashes = { [3736262267] = { "4% additional Physical Damage Reduction per Keystone" }, } }, - ["CannotGainEnduranceChargesUnique__1__"] = { affix = "", "Cannot gain Endurance Charges", statOrder = { 4998 }, level = 1, group = "CannotGainEnduranceCharges", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHashes = { [3037185464] = { "Cannot gain Endurance Charges" }, } }, - ["GrantsStatsFromNonNotablesInRadiusUnique__1"] = { affix = "", "Grants all bonuses of Unallocated Small Passive Skills in Radius", statOrder = { 7956 }, level = 1, group = "GrantsStatsFromNonNotablesInRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [737702863] = { "Grants all bonuses of Unallocated Small Passive Skills in Radius" }, [3802517517] = { "" }, } }, - ["AllocatedNonNotablesGrantNothingUnique__1_"] = { affix = "", "Allocated Small Passive Skills in Radius grant nothing", statOrder = { 7954 }, level = 1, group = "AllocatedNonNotablesGrantNothing", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [325204898] = { "Allocated Small Passive Skills in Radius grant nothing" }, } }, - ["UniqueNearbyAlliesAreLuckyDisplay"] = { affix = "", "Nearby Allies' Damage with Hits is Lucky", statOrder = { 7904 }, level = 1, group = "UniqueNearbyAlliesAreLuckyDisplay", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [655871604] = { "Nearby Allies' Damage with Hits is Lucky" }, } }, - ["PlaceAdditionalMineWith600IntelligenceUnique__1"] = { affix = "", "Skills which throw Mines throw up to 1 additional Mine if you have at least 800 Intelligence", statOrder = { 9524 }, level = 1, group = "PlaceAdditionalMineWith600Intelligence", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [5955083] = { "Skills which throw Mines throw up to 1 additional Mine if you have at least 800 Intelligence" }, } }, - ["PlaceAdditionalMineWith600DexterityUnique__1"] = { affix = "", "Skills which throw Mines throw up to 1 additional Mine if you have at least 800 Dexterity", statOrder = { 9523 }, level = 1, group = "PlaceAdditionalMineWith600Dexterity", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1917661185] = { "Skills which throw Mines throw up to 1 additional Mine if you have at least 800 Dexterity" }, } }, - ["BlockChancePer50StrengthUnique__1"] = { affix = "", "+1% Chance to Block Attack Damage per 50 Strength", statOrder = { 1152 }, level = 1, group = "BlockChancePer50Strength", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [1061631617] = { "+1% Chance to Block Attack Damage per 50 Strength" }, } }, - ["ExtraRollsSpellBlockUnique__1"] = { affix = "", "Chance to Block Spell Damage is Unlucky", statOrder = { 1159 }, level = 1, group = "ExtraRollsSpellBlock", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [3551025193] = { "Chance to Block Spell Damage is Unlucky" }, } }, - ["ChargeBonusEnduranceChargeDuration"] = { affix = "", "(20-40)% increased Endurance Charge Duration", statOrder = { 2125 }, level = 1, group = "EnduranceChargeDuration", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHashes = { [1170174456] = { "(20-40)% increased Endurance Charge Duration" }, } }, - ["ChargeBonusFrenzyChargeDuration"] = { affix = "", "(20-40)% increased Frenzy Charge Duration", statOrder = { 2127 }, level = 1, group = "FrenzyChargeDuration", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [3338298622] = { "(20-40)% increased Frenzy Charge Duration" }, } }, - ["ChargeBonusPowerChargeDuration"] = { affix = "", "(20-40)% increased Power Charge Duration", statOrder = { 2142 }, level = 1, group = "IncreasedPowerChargeDuration", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [3872306017] = { "(20-40)% increased Power Charge Duration" }, } }, - ["ChargeBonusEnduranceChargeOnKill"] = { affix = "", "10% chance to gain an Endurance Charge on Kill", statOrder = { 2629 }, level = 1, group = "EnduranceChargeOnKillChance", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHashes = { [1054322244] = { "10% chance to gain an Endurance Charge on Kill" }, } }, - ["ChargeBonusFrenzyChargeOnKill"] = { affix = "", "10% chance to gain a Frenzy Charge on Kill", statOrder = { 2631 }, level = 1, group = "FrenzyChargeOnKillChance", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [1826802197] = { "10% chance to gain a Frenzy Charge on Kill" }, } }, - ["ChargeBonusPowerChargeOnKill"] = { affix = "", "10% chance to gain a Power Charge on Kill", statOrder = { 2633 }, level = 1, group = "PowerChargeOnKillChance", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [2483795307] = { "10% chance to gain a Power Charge on Kill" }, } }, - ["ChargeBonusMovementVelocityPerEnduranceCharge"] = { affix = "", "1% increased Movement Speed per Endurance Charge", statOrder = { 9426 }, level = 1, group = "MovementVelocityPerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2116250000] = { "1% increased Movement Speed per Endurance Charge" }, } }, - ["ChargeBonusMovementVelocityPerFrenzyCharge"] = { affix = "", "1% increased Movement Speed per Frenzy Charge", statOrder = { 1802 }, level = 1, group = "MovementVelocityPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [1541516339] = { "1% increased Movement Speed per Frenzy Charge" }, } }, - ["ChargeBonusMovementVelocityPerPowerCharge"] = { affix = "", "1% increased Movement Speed per Power Charge", statOrder = { 9429 }, level = 1, group = "MovementVelocityPerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [3774108776] = { "1% increased Movement Speed per Power Charge" }, } }, - ["ChargeBonusLifeRegenerationPerEnduranceCharge"] = { affix = "", "Regenerate 0.3% of Life per second per Endurance Charge", statOrder = { 1576 }, level = 1, group = "LifeRegenerationPercentPerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [989800292] = { "Regenerate 0.3% of Life per second per Endurance Charge" }, } }, - ["ChargeBonusLifeRegenerationPerFrenzyCharge"] = { affix = "", "Regenerate 0.3% of Life per second per Frenzy Charge", statOrder = { 2628 }, level = 1, group = "LifeRegenerationPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2828673491] = { "Regenerate 0.3% of Life per second per Frenzy Charge" }, } }, - ["ChargeBonusLifeRegenerationPerPowerCharge"] = { affix = "", "Regenerate 0.3% of Life per second per Power Charge", statOrder = { 7422 }, level = 1, group = "LifeRegenerationPercentPerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3961213398] = { "Regenerate 0.3% of Life per second per Power Charge" }, } }, - ["ChargeBonusDamagePerEnduranceCharge"] = { affix = "", "5% increased Damage per Endurance Charge", statOrder = { 3199 }, level = 1, group = "DamagePerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [3515686789] = { "5% increased Damage per Endurance Charge" }, } }, - ["ChargeBonusDamagePerFrenzyCharge"] = { affix = "", "5% increased Damage per Frenzy Charge", statOrder = { 3286 }, level = 1, group = "DamagePerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [902747843] = { "5% increased Damage per Frenzy Charge" }, } }, - ["ChargeBonusDamagePerPowerCharge"] = { affix = "", "5% increased Damage per Power Charge", statOrder = { 6066 }, level = 1, group = "IncreasedDamagePerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2034658008] = { "5% increased Damage per Power Charge" }, } }, - ["ChargeBonusAddedFireDamagePerEnduranceCharge"] = { affix = "", "(7-9) to (13-14) Fire Damage per Endurance Charge", statOrder = { 9238 }, level = 1, group = "GlobalAddedFireDamagePerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [1073447019] = { "(7-9) to (13-14) Fire Damage per Endurance Charge" }, } }, - ["ChargeBonusAddedColdDamagePerFrenzyCharge"] = { affix = "", "(6-8) to (12-13) Added Cold Damage per Frenzy Charge", statOrder = { 4273 }, level = 1, group = "AddedColdDamagePerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3648858570] = { "(6-8) to (12-13) Added Cold Damage per Frenzy Charge" }, } }, - ["ChargeBonusAddedLightningDamagePerPowerCharge"] = { affix = "", "(1-2) to (18-20) Lightning Damage per Power Charge", statOrder = { 9243 }, level = 1, group = "GlobalAddedLightningDamagePerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [1917107159] = { "(1-2) to (18-20) Lightning Damage per Power Charge" }, } }, - ["ChargeBonusBlockChancePerEnduranceCharge"] = { affix = "", "+1% Chance to Block Attack Damage per Endurance Charge", statOrder = { 4536 }, level = 1, group = "BlockChancePerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2355741828] = { "+1% Chance to Block Attack Damage per Endurance Charge" }, } }, - ["ChargeBonusBlockChancePerFrenzyCharge_"] = { affix = "", "+1% Chance to Block Attack Damage per Frenzy Charge", statOrder = { 4537 }, level = 1, group = "BlockChancePerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2148784747] = { "+1% Chance to Block Attack Damage per Frenzy Charge" }, } }, - ["ChargeBonusBlockChancePerPowerCharge_"] = { affix = "", "+1% Chance to Block Attack Damage per Power Charge", statOrder = { 4538 }, level = 1, group = "BlockChancePerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2856326982] = { "+1% Chance to Block Attack Damage per Power Charge" }, } }, - ["ChargeBonusDodgeChancePerEnduranceCharge"] = { affix = "", "+1% chance to Suppress Spell Damage per Endurance Charge", statOrder = { 10171 }, level = 1, group = "DodgeChancePerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [161741084] = { "+1% chance to Suppress Spell Damage per Endurance Charge" }, } }, - ["ChargeBonusDodgeChancePerFrenzyCharge"] = { affix = "", "+1% chance to Suppress Spell Damage per Frenzy Charge", statOrder = { 2546 }, level = 1, group = "ChanceToDodgePerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [482967934] = { "+1% chance to Suppress Spell Damage per Frenzy Charge" }, } }, - ["ChargeBonusDodgeChancePerPowerCharge"] = { affix = "", "+1% chance to Suppress Spell Damage per Power Charge", statOrder = { 10174 }, level = 1, group = "DodgeChancePerPowerCharge", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1309947938] = { "+1% chance to Suppress Spell Damage per Power Charge" }, } }, - ["ChargeBonusFireDamageAddedAsChaos__"] = { affix = "", "Gain 1% of Fire Damage as Extra Chaos Damage per Endurance Charge", statOrder = { 6561 }, level = 1, group = "FireDamageAddedAsChaosPerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "fire", "chaos" }, tradeHashes = { [1109745356] = { "Gain 1% of Fire Damage as Extra Chaos Damage per Endurance Charge" }, } }, - ["ChargeBonusColdDamageAddedAsChaos"] = { affix = "", "Gain 1% of Cold Damage as Extra Chaos Damage per Frenzy Charge", statOrder = { 5807 }, level = 1, group = "ColdDamageAddedAsChaosPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "cold", "chaos" }, tradeHashes = { [3916799917] = { "Gain 1% of Cold Damage as Extra Chaos Damage per Frenzy Charge" }, } }, - ["ChargeBonusLightningDamageAddedAsChaos"] = { affix = "", "Gain 1% of Lightning Damage as Extra Chaos Damage per Power Charge", statOrder = { 7446 }, level = 1, group = "LightningDamageAddedAsChaosPerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "lightning", "chaos" }, tradeHashes = { [3115319277] = { "Gain 1% of Lightning Damage as Extra Chaos Damage per Power Charge" }, } }, - ["ChargeBonusArmourPerEnduranceCharge"] = { affix = "", "6% increased Armour per Endurance Charge", statOrder = { 9656 }, level = 1, group = "IncreasedArmourPerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1447080724] = { "6% increased Armour per Endurance Charge" }, } }, - ["ChargeBonusEvasionPerFrenzyCharge"] = { affix = "", "8% increased Evasion Rating per Frenzy Charge", statOrder = { 1556 }, level = 1, group = "IncreasedEvasionRatingPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [660404777] = { "8% increased Evasion Rating per Frenzy Charge" }, } }, - ["ChargeBonusEnergyShieldPerPowerCharge"] = { affix = "", "3% increased Energy Shield per Power Charge", statOrder = { 6444 }, level = 1, group = "IncreasedEnergyShieldPerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2189382346] = { "3% increased Energy Shield per Power Charge" }, } }, - ["ChargeBonusChanceToGainMaximumEnduranceCharges"] = { affix = "", "15% chance that if you would gain Endurance Charges, you instead gain up to maximum Endurance Charges", statOrder = { 4239 }, level = 1, group = "ChanceToGainMaximumEnduranceCharges", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHashes = { [2713233613] = { "15% chance that if you would gain Endurance Charges, you instead gain up to maximum Endurance Charges" }, } }, - ["ChargeBonusChanceToGainMaximumFrenzyCharges"] = { affix = "", "15% chance that if you would gain Frenzy Charges, you instead gain up to your maximum number of Frenzy Charges", statOrder = { 6774 }, level = 1, group = "ChanceToGainMaximumFrenzyCharges", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [2119664154] = { "15% chance that if you would gain Frenzy Charges, you instead gain up to your maximum number of Frenzy Charges" }, } }, - ["ChargeBonusChanceToGainMaximumPowerCharges"] = { affix = "", "15% chance that if you would gain Power Charges, you instead gain up to", "your maximum number of Power Charges", statOrder = { 6776, 6776.1 }, level = 1, group = "ChanceToGainMaximumPowerCharges", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [1232004574] = { "15% chance that if you would gain Power Charges, you instead gain up to", "your maximum number of Power Charges" }, } }, - ["ChargeBonusEnduranceChargeIfHitRecently"] = { affix = "", "Gain 1 Endurance Charge every second if you've been Hit Recently", statOrder = { 6747 }, level = 1, group = "EnduranceChargeIfHitRecently", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHashes = { [2894476716] = { "Gain 1 Endurance Charge every second if you've been Hit Recently" }, } }, - ["ChargeBonusFrenzyChargeOnHit__"] = { affix = "", "10% chance to gain a Frenzy Charge on Hit", statOrder = { 1833 }, level = 1, group = "FrenzyChargeOnHitChance", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [2323242761] = { "10% chance to gain a Frenzy Charge on Hit" }, } }, - ["ChargeBonusPowerChargeOnCrit"] = { affix = "", "20% chance to gain a Power Charge on Critical Strike", statOrder = { 1830 }, level = 1, group = "PowerChargeOnCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "power_charge", "critical" }, tradeHashes = { [3814876985] = { "20% chance to gain a Power Charge on Critical Strike" }, } }, - ["ChargeBonusAttackAndCastSpeedPerEnduranceCharge"] = { affix = "", "1% increased Attack and Cast Speed per Endurance Charge", statOrder = { 4817 }, level = 1, group = "AttackAndCastSpeedPerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed" }, tradeHashes = { [3618888098] = { "1% increased Attack and Cast Speed per Endurance Charge" }, } }, - ["ChargeBonusAccuracyRatingPerFrenzyCharge"] = { affix = "", "10% increased Accuracy Rating per Frenzy Charge", statOrder = { 2050 }, level = 1, group = "AccuracyRatingPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [3700381193] = { "10% increased Accuracy Rating per Frenzy Charge" }, } }, - ["ChargeBonusAttackAndCastSpeedPerPowerCharge"] = { affix = "", "1% increased Attack and Cast Speed per Power Charge", statOrder = { 4818 }, level = 1, group = "AttackAndCastSpeedPerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed" }, tradeHashes = { [987588151] = { "1% increased Attack and Cast Speed per Power Charge" }, } }, - ["ChargeBonusCriticalStrikeChancePerEnduranceCharge"] = { affix = "", "6% increased Critical Strike Chance per Endurance Charge", statOrder = { 5934 }, level = 1, group = "CriticalStrikeChancePerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [2547511866] = { "6% increased Critical Strike Chance per Endurance Charge" }, } }, - ["ChargeBonusCriticalStrikeChancePerFrenzyCharge"] = { affix = "", "6% increased Critical Strike Chance per Frenzy Charge", statOrder = { 5935 }, level = 1, group = "CriticalStrikeChancePerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [707887043] = { "6% increased Critical Strike Chance per Frenzy Charge" }, } }, - ["ChargeBonusCriticalStrikeMultiplierPerPowerCharge"] = { affix = "", "+3% to Critical Strike Multiplier per Power Charge", statOrder = { 3282 }, level = 1, group = "CriticalMultiplierPerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [4164870816] = { "+3% to Critical Strike Multiplier per Power Charge" }, } }, - ["ChargeBonusChaosResistancePerEnduranceCharge_"] = { affix = "", "+4% to Chaos Resistance per Endurance Charge", statOrder = { 5739 }, level = 1, group = "ChaosResistancePerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [4210011075] = { "+4% to Chaos Resistance per Endurance Charge" }, } }, - ["ChargeBonusPhysicalDamageReductionPerFrenzyCharge__"] = { affix = "", "1% additional Physical Damage Reduction per Frenzy Charge", statOrder = { 9648 }, level = 1, group = "PhysicalDamageReductionPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHashes = { [1226049915] = { "1% additional Physical Damage Reduction per Frenzy Charge" }, } }, - ["ChargeBonusPhysicalDamageReductionPerPowerCharge_"] = { affix = "", "1% additional Physical Damage Reduction per Power Charge", statOrder = { 9650 }, level = 1, group = "PhysicalDamageReductionPerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHashes = { [3986347319] = { "1% additional Physical Damage Reduction per Power Charge" }, } }, - ["ChargeBonusMaximumEnduranceCharges"] = { affix = "", "+1 to Maximum Endurance Charges", statOrder = { 1804 }, level = 1, group = "MaximumEnduranceCharges", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHashes = { [1515657623] = { "+1 to Maximum Endurance Charges" }, } }, - ["ChargeBonusMaximumFrenzyCharges"] = { affix = "", "+1 to Maximum Frenzy Charges", statOrder = { 1809 }, level = 1, group = "MaximumFrenzyCharges", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [4078695] = { "+1 to Maximum Frenzy Charges" }, } }, - ["ChargeBonusMaximumPowerCharges"] = { affix = "", "+1 to Maximum Power Charges", statOrder = { 1814 }, level = 1, group = "IncreasedMaximumPowerCharges", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [227523295] = { "+1 to Maximum Power Charges" }, } }, - ["ChargeBonusIntimidateOnHitEnduranceCharges"] = { affix = "", "Intimidate Enemies for 4 seconds on Hit with Attacks while at maximum Endurance Charges", statOrder = { 7298 }, level = 1, group = "IntimidateOnHitMaximumEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2877370216] = { "Intimidate Enemies for 4 seconds on Hit with Attacks while at maximum Endurance Charges" }, } }, - ["ChargeBonusOnslaughtOnHitFrenzyCharges_"] = { affix = "", "Gain Onslaught for 4 seconds on Hit while at maximum Frenzy Charges", statOrder = { 6786 }, level = 1, group = "OnslaughtOnHitMaximumFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2408544213] = { "Gain Onslaught for 4 seconds on Hit while at maximum Frenzy Charges" }, } }, - ["ChargeBonusArcaneSurgeOnHitPowerCharges"] = { affix = "", "Gain Arcane Surge on Hit with Spells while at maximum Power Charges", statOrder = { 6728 }, level = 1, group = "ArcaneSurgeOnHitMaximumPowerCharge", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHashes = { [813119588] = { "Gain Arcane Surge on Hit with Spells while at maximum Power Charges" }, } }, - ["ChargeBonusCannotBeStunnedEnduranceCharges__"] = { affix = "", "You cannot be Stunned while at maximum Endurance Charges", statOrder = { 4051 }, level = 1, group = "CannotBeStunnedMaximumEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3780437763] = { "You cannot be Stunned while at maximum Endurance Charges" }, } }, - ["ChargeBonusFlaskChargeOnCritFrenzyCharges"] = { affix = "", "Gain a Flask Charge when you deal a Critical Strike while at maximum Frenzy Charges", statOrder = { 6752 }, level = 1, group = "FlaskChargeOnCritMaximumFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [3371432622] = { "Gain a Flask Charge when you deal a Critical Strike while at maximum Frenzy Charges" }, } }, - ["ChargeBonusAdditionalCursePowerCharges"] = { affix = "", "You can apply an additional Curse while at maximum Power Charges", statOrder = { 9520 }, level = 1, group = "AdditionalCurseMaximumPowerCharge", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [761598374] = { "You can apply an additional Curse while at maximum Power Charges" }, } }, - ["ChargeBonusVaalPactEnduranceCharges"] = { affix = "", "You have Vaal Pact while at maximum Endurance Charges", statOrder = { 10837 }, level = 1, group = "VaalPactMaximumEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [1314418188] = { "You have Vaal Pact while at maximum Endurance Charges" }, } }, - ["ChargeBonusIronReflexesFrenzyCharges"] = { affix = "", "You have Iron Reflexes while at maximum Frenzy Charges", statOrder = { 10835 }, level = 1, group = "IronReflexesMaximumFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [1990354706] = { "You have Iron Reflexes while at maximum Frenzy Charges" }, } }, - ["ChargeBonusMindOverMatterPowerCharges"] = { affix = "", "You have Mind over Matter while at maximum Power Charges", statOrder = { 10836 }, level = 1, group = "MindOverMatterMaximumPowerCharge", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana" }, tradeHashes = { [1876857497] = { "You have Mind over Matter while at maximum Power Charges" }, } }, - ["GlobalEnergyShieldPercentUnique__1"] = { affix = "", "(15-20)% increased maximum Energy Shield", statOrder = { 1561 }, level = 1, group = "GlobalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2482852589] = { "(15-20)% increased maximum Energy Shield" }, } }, - ["GlobalEvasionRatingPercentUnique__1"] = { affix = "", "(15-20)% increased Evasion Rating", statOrder = { 1549 }, level = 1, group = "GlobalEvasionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [2106365538] = { "(15-20)% increased Evasion Rating" }, } }, - ["GlobalEvasionRatingAndArmourPercentUnique__1_"] = { affix = "", "(30-60)% increased Evasion Rating and Armour", statOrder = { 1543 }, level = 1, group = "GlobalEvasionAndArmourPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [3366029652] = { "(30-60)% increased Evasion Rating and Armour" }, } }, - ["GlobalPhysicalDamageReductionRatingPercentUnique__1"] = { affix = "", "(15-20)% increased Armour", statOrder = { 1541 }, level = 1, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [2866361420] = { "(15-20)% increased Armour" }, } }, - ["GlobalPhysicalDamageReductionRatingPercentUnique__2"] = { affix = "", "(20-30)% increased Armour", statOrder = { 1541 }, level = 1, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [2866361420] = { "(20-30)% increased Armour" }, } }, - ["NearbyEnemiesReducedStunRecoveryUnique__1"] = { affix = "", "Nearby Enemies have 10% reduced Stun and Block Recovery", statOrder = { 3404 }, level = 1, group = "NearbyEnemiesReducedStunRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2511217560] = { "10% reduced Stun and Block Recovery" }, [3169825297] = { "Nearby Enemies have 10% reduced Stun and Block Recovery" }, } }, - ["NearbyEnemiesGrantIncreasedFlaskChargesUnique__1"] = { affix = "", "Nearby Enemies grant 25% increased Flask Charges", statOrder = { 3402 }, level = 1, group = "NearbyEnemiesGrantIncreasedFlaskCharges", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [2604562862] = { "" }, [3547189490] = { "Nearby Enemies grant 25% increased Flask Charges" }, } }, - ["NearbyEnemiesHaveIncreasedChanceToBeCritUnique__1"] = { affix = "", "Hits against Nearby Enemies have 50% increased Critical Strike Chance", statOrder = { 3400 }, level = 1, group = "NearbyEnemiesHaveIncreasedChanceToBeCrit", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [992435560] = { "Hits against Nearby Enemies have 50% increased Critical Strike Chance" }, [1553352778] = { "" }, } }, - ["NearbyEnemiesHaveIncreasedChanceToBeCritUnique__2"] = { affix = "", "Hits against Nearby Enemies have 50% increased Critical Strike Chance", statOrder = { 3401 }, level = 1, group = "NearbyEnemiesHaveIncreasedChanceToBeCrit2", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [4270096386] = { "Hits have 50% increased Critical Strike Chance against you" }, [3896241826] = { "Hits against Nearby Enemies have 50% increased Critical Strike Chance" }, } }, - ["NearbyEnemiesHaveReducedAllResistancesUnique__1"] = { affix = "", "Nearby Enemies have -10% to all Resistances", statOrder = { 2999 }, level = 1, group = "NearbyEnemiesHaveReducedAllResistances", weightKey = { }, weightVal = { }, modTags = { "resistance" }, tradeHashes = { [668145148] = { "Nearby Enemies have -10% to all Resistances" }, [2016723660] = { "-10% to All Resistances" }, } }, - ["AuraAddedFireDamagePerRedSocketUnique__1"] = { affix = "", "You and Nearby Allies have 64 to 96 added Fire Damage per Red Socket", statOrder = { 3006 }, level = 1, group = "AuraAddedFireDamagePerRedSocket", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [1666896662] = { "You and Nearby Allies have 64 to 96 added Fire Damage per Red Socket" }, } }, - ["AuraAddedColdDamagePerGreenSocketUnique__1"] = { affix = "", "You and Nearby Allies have 56 to 88 added Cold Damage per Green Socket", statOrder = { 3007 }, level = 1, group = "AuraAddedColdDamagePerGreenSocket", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [2665149933] = { "You and Nearby Allies have 56 to 88 added Cold Damage per Green Socket" }, } }, - ["AuraAddedLightningDamagePerBlueSocketUnique__1"] = { affix = "", "You and Nearby Allies have 16 to 144 added Lightning Damage per Blue Socket", statOrder = { 3008 }, level = 1, group = "AuraAddedLightningDamagePerBlueSocket", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [3726585224] = { "You and Nearby Allies have 16 to 144 added Lightning Damage per Blue Socket" }, } }, - ["AuraAddedChaosDamagePerWhiteSocketUnique__1"] = { affix = "", "You and Nearby Allies have 47 to 61 added Chaos Damage per White Socket", statOrder = { 3009 }, level = 1, group = "AuraAddedChaosDamagePerWhiteSocket", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [3232695173] = { "You and Nearby Allies have 47 to 61 added Chaos Damage per White Socket" }, } }, - ["ArmourPerEvasionRatingOnShieldUnique__1"] = { affix = "", "+5 to Armour per 5 Evasion Rating on Equipped Shield", statOrder = { 4378 }, level = 1, group = "ArmourPerEvasionRatingOnShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [3088183606] = { "+5 to Armour per 5 Evasion Rating on Equipped Shield" }, } }, - ["EvasionRatingPerEnergyShieldOnShieldUnique__1"] = { affix = "", "+20 to Evasion Rating per 5 Maximum Energy Shield on Equipped Shield", statOrder = { 4379 }, level = 1, group = "EvasionRatingPerEnergyShieldOnShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [1115914670] = { "+20 to Evasion Rating per 5 Maximum Energy Shield on Equipped Shield" }, } }, - ["EnergyShieldPerArmourOnShieldUnique__1"] = { affix = "", "+1 to Maximum Energy Shield per 5 Armour on Equipped Shield", statOrder = { 4377 }, level = 1, group = "EnergyShieldPerArmourOnShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3636098185] = { "+1 to Maximum Energy Shield per 5 Armour on Equipped Shield" }, } }, - ["LifeLeechFromSpellsWith30BlockOnShieldUnique__1_"] = { affix = "", "0.5% of Spell Damage Leeched as Life if Equipped Shield has at least 30% Chance to Block", statOrder = { 4376 }, level = 1, group = "LifeLeechFromSpellsWith30BlockOnShield", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "caster" }, tradeHashes = { [3893109186] = { "0.5% of Spell Damage Leeched as Life if Equipped Shield has at least 30% Chance to Block" }, } }, - ["AngerNoReservationUnique__1"] = { affix = "", "Anger has no Reservation", statOrder = { 4688 }, level = 69, group = "AngerNoReservation", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHashes = { [2189891129] = { "Anger has no Reservation" }, } }, - ["ClarityNoReservationUnique__1"] = { affix = "", "Clarity has no Reservation", statOrder = { 5786 }, level = 69, group = "ClarityNoReservation", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHashes = { [2250543633] = { "Clarity has no Reservation" }, } }, - ["DeterminationNoReservationUnique__1"] = { affix = "", "Determination has no Reservation", statOrder = { 6174 }, level = 69, group = "DeterminationNoReservation", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHashes = { [1358697130] = { "Determination has no Reservation" }, } }, - ["DisciplineNoReservationUnique__1"] = { affix = "", "Discipline has no Reservation", statOrder = { 6190 }, level = 69, group = "DisciplineNoReservation", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHashes = { [3708588508] = { "Discipline has no Reservation" }, } }, - ["GraceNoReservationUnique__1"] = { affix = "", "Grace has no Reservation", statOrder = { 6905 }, level = 69, group = "GraceNoReservation", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHashes = { [2930404958] = { "Grace has no Reservation" }, } }, - ["HasteNoReservationUnique__1"] = { affix = "", "Haste has no Reservation", statOrder = { 6940 }, level = 69, group = "HasteNoReservation", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHashes = { [751322171] = { "Haste has no Reservation" }, } }, - ["HatredNoReservationUnique__1_"] = { affix = "", "Hatred has no Reservation", statOrder = { 6944 }, level = 69, group = "HatredNoReservation", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHashes = { [1391583476] = { "Hatred has no Reservation" }, } }, - ["PurityOfElementsNoReservationUnique__1_"] = { affix = "", "Purity of Elements has no Reservation", statOrder = { 9768 }, level = 69, group = "PurityOfElementsNoReservation", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHashes = { [1826480903] = { "Purity of Elements has no Reservation" }, } }, - ["PurityOfFireNoReservationUnique__1"] = { affix = "", "Purity of Fire has no Reservation", statOrder = { 9771 }, level = 69, group = "PurityOfFireNoReservation", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHashes = { [2278589942] = { "Purity of Fire has no Reservation" }, } }, - ["PurityOfIceNoReservationUnique__1_"] = { affix = "", "Purity of Ice has no Reservation", statOrder = { 9774 }, level = 69, group = "PurityOfIceNoReservation", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHashes = { [1622979279] = { "Purity of Ice has no Reservation" }, } }, - ["PurityOfLightningNoReservationUnique__1"] = { affix = "", "Purity of Lightning has no Reservation", statOrder = { 9777 }, level = 69, group = "PurityOfLightningNoReservation", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHashes = { [2308225900] = { "Purity of Lightning has no Reservation" }, } }, - ["VitalityNoReservationUnique__1"] = { affix = "", "Vitality has no Reservation", statOrder = { 10538 }, level = 69, group = "VitalityNoReservation", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHashes = { [438083873] = { "Vitality has no Reservation" }, } }, - ["WrathNoReservationUnique__1"] = { affix = "", "Wrath has no Reservation", statOrder = { 10632 }, level = 69, group = "WrathNoReservation", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHashes = { [1865987277] = { "Wrath has no Reservation" }, } }, - ["EnvyNoReservationUnique__1"] = { affix = "", "Envy has no Reservation", statOrder = { 6467 }, level = 69, group = "EnvyNoReservation", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHashes = { [2503479316] = { "Envy has no Reservation" }, } }, - ["MalevolenceNoReservationUnique__1"] = { affix = "", "Malevolence has no Reservation", statOrder = { 6163 }, level = 69, group = "MalevolenceNoReservation", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHashes = { [585622486] = { "Malevolence has no Reservation" }, } }, - ["ZealotryNoReservationUnique__1"] = { affix = "", "Zealotry has no Reservation", statOrder = { 10726 }, level = 69, group = "ZealotryNoReservation", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHashes = { [1741242318] = { "Zealotry has no Reservation" }, } }, - ["PrideNoReservationUnique__1"] = { affix = "", "Pride has no Reservation", statOrder = { 9719 }, level = 69, group = "PrideNoReservation", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHashes = { [3554614456] = { "Pride has no Reservation" }, } }, - ["MinionAddedPhysicalDamageUnique__1"] = { affix = "", "Minions deal (90-102) to (132-156) additional Physical Damage", statOrder = { 3773 }, level = 1, group = "MinionAddedPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "minion" }, tradeHashes = { [1172029298] = { "Minions deal (90-102) to (132-156) additional Physical Damage" }, } }, - ["DoubleDamageChanceImplicitMace1"] = { affix = "", "5% chance to deal Double Damage", statOrder = { 5659 }, level = 1, group = "DoubleDamageChance", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [1172810729] = { "5% chance to deal Double Damage" }, } }, - ["AdditionalHolyRelicUnique__1"] = { affix = "", "+1 to maximum number of Summoned Holy Relics", statOrder = { 5035 }, level = 1, group = "AdditionalHolyRelic", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [2056575682] = { "+1 to maximum number of Summoned Holy Relics" }, } }, - ["HolyRelicCooldownRecoveryUnique__1"] = { affix = "", "Summoned Holy Relics have (20-25)% reduced Cooldown Recovery Rate", statOrder = { 7179 }, level = 1, group = "HolyRelicCooldownRecovery", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [1583498502] = { "Summoned Holy Relics have (20-25)% reduced Cooldown Recovery Rate" }, } }, - ["ColdDamageTakenUnique__1"] = { affix = "", "5% reduced Cold Damage taken", statOrder = { 3389 }, level = 1, group = "ColdDamageTakenPercentage", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold" }, tradeHashes = { [3303114033] = { "5% reduced Cold Damage taken" }, } }, - ["ColdDamageTakenUnique__2"] = { affix = "", "10% increased Cold Damage taken", statOrder = { 3389 }, level = 1, group = "ColdDamageTakenPercentage", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold" }, tradeHashes = { [3303114033] = { "10% increased Cold Damage taken" }, } }, - ["OnslaughtEffectUnique__1"] = { affix = "", "100% increased Effect of Onslaught on you", statOrder = { 3290 }, level = 1, group = "OnslaughtEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3151397056] = { "100% increased Effect of Onslaught on you" }, } }, - ["PhysicalDamageWhileResoluteTechniqueUnique__1__"] = { affix = "", "100% increased Physical Damage while you have Resolute Technique", statOrder = { 10846 }, level = 1, group = "PhysicalDamageWhileResoluteTechnique", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1258679667] = { "100% increased Physical Damage while you have Resolute Technique" }, } }, - ["IncreasedWeaponElementalDamagePercentPerPowerChargeUnique__1"] = { affix = "", "(20-25)% increased Elemental Damage with Attack Skills per Power Charge", statOrder = { 6323 }, level = 1, group = "IncreasedWeaponElementalDamagePercentPerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [4116409626] = { "(20-25)% increased Elemental Damage with Attack Skills per Power Charge" }, } }, - ["ArrowsAlwaysPierceAfterForkingUnique__1__"] = { affix = "", "Arrows Pierce all Targets after Forking", statOrder = { 4781 }, level = 1, group = "ArrowsAlwaysPierceAfterForking", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2138799639] = { "Arrows Pierce all Targets after Forking" }, } }, - ["ArrowsThatPierceHaveCritMultiUnique__1"] = { affix = "", "Arrows that Pierce have +50% to Critical Strike Multiplier", statOrder = { 5951 }, level = 1, group = "ArrowsThatPierceHaveCritMulti", weightKey = { }, weightVal = { }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [1064778484] = { "Arrows that Pierce have +50% to Critical Strike Multiplier" }, } }, - ["SupportedByGreaterVolleyUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 20 Greater Volley", statOrder = { 300 }, level = 1, group = "SupportedByGreaterVolley", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [2223565123] = { "Socketed Gems are Supported by Level 20 Greater Volley" }, } }, - ["SupportedByIgniteProliferationUnique1"] = { affix = "", "Socketed Gems are Supported by Level 20 Ignite Proliferation", statOrder = { 308 }, level = 1, group = "SupportedByIgniteProliferation", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [3593797653] = { "Socketed Gems are Supported by Level 20 Ignite Proliferation" }, } }, - ["ChanceToBleedWithoutAvatarOfFireUnique__1"] = { affix = "", "Attacks with this Weapon have 50% chance to inflict Bleeding while you do not have Avatar of Fire", statOrder = { 10850 }, level = 1, group = "ChanceToBleedWithoutAvatarOfFire", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [4070293064] = { "Attacks with this Weapon have 50% chance to inflict Bleeding while you do not have Avatar of Fire" }, } }, - ["FireDamageVersusBleedingEnemiesUnique__1"] = { affix = "", "(70-100)% increased Fire Damage with Hits and Ailments against Bleeding Enemies", statOrder = { 6568 }, level = 1, group = "FireDamageVersusBleedingEnemies", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3703926412] = { "(70-100)% increased Fire Damage with Hits and Ailments against Bleeding Enemies" }, } }, - ["PhysicalDamageVersusIgnitedEnemiesUnique__1"] = { affix = "", "(70-100)% increased Physical Damage with Hits and Ailments against Ignited Enemies", statOrder = { 9643 }, level = 1, group = "PhysicalDamageVersusIgnitedEnemies", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3375415245] = { "(70-100)% increased Physical Damage with Hits and Ailments against Ignited Enemies" }, } }, - ["PhysicalDamageTakenAsRandomElementUnique__1"] = { affix = "", "20% of Physical Damage from Hits taken as Damage of a Random Element", statOrder = { 9630 }, level = 1, group = "PhysicalDamageTakenAsRandomElement", weightKey = { }, weightVal = { }, modTags = { "physical", "elemental" }, tradeHashes = { [1904530666] = { "20% of Physical Damage from Hits taken as Damage of a Random Element" }, } }, - ["StartEnergyShieldRechargeOnSkillUnique__1"] = { affix = "", "10% chance for Energy Shield Recharge to start when you use a Skill", statOrder = { 6450 }, level = 1, group = "StartEnergyShieldRechargeOnSkillChance", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3853996752] = { "10% chance for Energy Shield Recharge to start when you use a Skill" }, } }, - ["SpellCriticalStrikeChancePerSpectreUnique__1_"] = { affix = "", "(50-100)% increased Spell Critical Strike Chance per Raised Spectre", statOrder = { 10140 }, level = 1, group = "SpellCriticalStrikeChancePerSpectre", weightKey = { }, weightVal = { }, modTags = { "caster", "critical" }, tradeHashes = { [495095219] = { "(50-100)% increased Spell Critical Strike Chance per Raised Spectre" }, } }, - ["GainArcaneSurgeOnCritUnique__1"] = { affix = "", "Gain Arcane Surge when you deal a Critical Strike", statOrder = { 6726 }, level = 1, group = "GainArcaneSurgeOnCrit", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [446027070] = { "Gain Arcane Surge when you deal a Critical Strike" }, } }, - ["SpectresGainArcaneSurgeWhenYouDoUnique__1_"] = { affix = "", "Your Raised Spectres also gain Arcane Surge when you do", statOrder = { 10121 }, level = 1, group = "SpectresGainArcaneSurgeWhenYouDo", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [3462113315] = { "Your Raised Spectres also gain Arcane Surge when you do" }, } }, - ["TriggerFeastOfFleshSkillUnique__1_"] = { affix = "", "Trigger Level 15 Feast of Flesh every 5 seconds", statOrder = { 801 }, level = 1, group = "TriggerFeastOfFleshSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [1560737213] = { "" }, [1024189516] = { "Trigger Level 15 Feast of Flesh every 5 seconds" }, } }, - ["TriggerRandomOfferingSkillUnique__1"] = { affix = "", "Trigger Level 20 Bone Offering, Flesh Offering, Spirit Offering every 5 seconds in sequence", "Offering Skills Triggered this way also affect you", statOrder = { 802, 802.1 }, level = 1, group = "TriggerRandomOfferingSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [1663239249] = { "Trigger Level 20 Bone Offering, Flesh Offering, Spirit Offering every 5 seconds in sequence", "Offering Skills Triggered this way also affect you" }, [1560737213] = { "" }, } }, - ["LeftRingSpellProjectilesForkUnique__1_"] = { affix = "", "Left ring slot: Projectiles from Spells Fork", statOrder = { 7982 }, level = 1, group = "LeftRingSpellProjectilesFork", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2437476305] = { "Left ring slot: Projectiles from Spells Fork" }, } }, - ["LeftRingSpellProjectilesCannotChainUnique__1"] = { affix = "", "Left ring slot: Projectiles from Spells cannot Chain", statOrder = { 7981 }, level = 1, group = "LeftRingSpellProjectilesCannotChain", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3647242059] = { "Left ring slot: Projectiles from Spells cannot Chain" }, } }, - ["RightRingSpellProjectilesChainUnique__1"] = { affix = "", "Right ring slot: Projectiles from Spells Chain +1 times", statOrder = { 8008 }, level = 1, group = "RightRingSpellProjectilesChain", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1555918911] = { "Right ring slot: Projectiles from Spells Chain +1 times" }, } }, - ["RightRingSpellProjectilesCannotForkUnique__1"] = { affix = "", "Right ring slot: Projectiles from Spells cannot Fork", statOrder = { 8009 }, level = 1, group = "RightRingSpellProjectilesCannotFork", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2933024469] = { "Right ring slot: Projectiles from Spells cannot Fork" }, } }, - ["FireAndChaosDamageResistanceUnique__1__"] = { affix = "", "+(20-25)% to Fire and Chaos Resistances", statOrder = { 6550 }, level = 1, group = "FireAndChaosDamageResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "chaos", "resistance" }, tradeHashes = { [378817135] = { "+(20-25)% to Fire and Chaos Resistances" }, } }, - ["TriggerArcaneWakeSkillUnique__1"] = { affix = "", "Trigger Level 20 Arcane Wake after Spending a total of 200 Mana", statOrder = { 764 }, level = 1, group = "TriggerArcaneWakeSkillUnique", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [3344568504] = { "Trigger Level 20 Arcane Wake after Spending a total of 200 Mana" }, } }, - ["DoubleDamageWithWeaponUnique__1"] = { affix = "", "Attacks with this Weapon deal Double Damage", statOrder = { 7926 }, level = 1, group = "DoubleDamageWithWeapon", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [1506185293] = { "Attacks with this Weapon deal Double Damage" }, } }, - ["FocusCooldownRecoveryUnique__1_"] = { affix = "", "Focus has (30-50)% increased Cooldown Recovery Rate", statOrder = { 6654 }, level = 1, group = "FocusCooldownRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3610263531] = { "Focus has (30-50)% increased Cooldown Recovery Rate" }, } }, - ["LifeRegenPerUncorruptedItemUnique__1"] = { affix = "", "Regenerate 15 Life per second for each Uncorrupted Item Equipped", statOrder = { 3101 }, level = 1, group = "LifeRegenPerUncorruptedItem", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [405941409] = { "Regenerate 15 Life per second for each Uncorrupted Item Equipped" }, } }, - ["TotalManaCostPerCorruptedItemUnique__1"] = { affix = "", "-2 to Total Mana Cost of Skills for each Corrupted Item Equipped", statOrder = { 4333 }, level = 1, group = "TotalManaCostPerCorruptedItem", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [3750572810] = { "-2 to Total Mana Cost of Skills for each Corrupted Item Equipped" }, } }, - ["ChillNearbyEnemiesOnFocusUnique__1_"] = { affix = "", "Chill nearby Enemies when you Focus, causing 30% reduced Action Speed", statOrder = { 5772 }, level = 67, group = "ChillNearbyEnemiesOnFocus", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2384145996] = { "Chill nearby Enemies when you Focus, causing 30% reduced Action Speed" }, [1533152070] = { "" }, } }, - ["DamageWithHitsAndAilmentsAgainstChilledEnemyUnique__1"] = { affix = "", "(50-70)% increased Damage with Hits and Ailments against Chilled Enemies", statOrder = { 7151 }, level = 1, group = "DamageWithHitsAndAilmentsAgainstChilledEnemy", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [3747189159] = { "(50-70)% increased Damage with Hits and Ailments against Chilled Enemies" }, } }, - ["ElementalDamageWhileAffectedBySextantUnique__1"] = { affix = "", "(30-40)% increased Elemental Damage while in an area affected by a Sextant", statOrder = { 6312 }, level = 1, group = "ElementalDamageWhileAffectedBySextant", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [4022841749] = { "(30-40)% increased Elemental Damage while in an area affected by a Sextant" }, } }, - ["AttackSpeedPerMapModUnique__1"] = { affix = "", "3% increased Attack Speed for each Map Item Modifier affecting the Area", statOrder = { 4887 }, level = 1, group = "AttackSpeedPerMapMod", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [2025297472] = { "3% increased Attack Speed for each Map Item Modifier affecting the Area" }, } }, - ["AttackDamagePerMapModUnique__1"] = { affix = "", "6% increased Attack Damage for each Map Item Modifier affecting the Area", statOrder = { 4849 }, level = 1, group = "AttackDamagePerMapMod", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [698336758] = { "6% increased Attack Damage for each Map Item Modifier affecting the Area" }, } }, - ["BleedOnCritUnique__1_"] = { affix = "", "50% chance to inflict Bleeding on Critical Strike with Attacks", statOrder = { 2485 }, level = 1, group = "BleedOnCrit", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "critical", "ailment" }, tradeHashes = { [2054257693] = { "50% chance to inflict Bleeding on Critical Strike with Attacks" }, } }, - ["MaimOnCritUnique__1"] = { affix = "", "50% chance to Maim Enemies on Critical Strike with Attacks", statOrder = { 8154 }, level = 1, group = "MaimOnCrit", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [996483959] = { "50% chance to Maim Enemies on Critical Strike with Attacks" }, } }, - ["EnemiesYouBleedGrantIncreasedFlaskChargesUnique__1_"] = { affix = "", "Enemies you inflict Bleeding on grant (60-100)% increased Flask Charges", statOrder = { 2493 }, level = 1, group = "EnemiesYouBleedGrantIncreasedFlaskCharges", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [2671550669] = { "Enemies you inflict Bleeding on grant (60-100)% increased Flask Charges" }, } }, - ["AddedPhysicalDamageVsBleedingEnemiesUnique__1"] = { affix = "", "Adds (100-120) to (150-165) Physical Damage against Bleeding Enemies", statOrder = { 2494 }, level = 1, group = "AddedPhysicalDamageVsBleedingEnemies", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1244003614] = { "Adds (100-120) to (150-165) Physical Damage against Bleeding Enemies" }, } }, - ["LifeRegenerationIfBlockedRecentlyUnique__1"] = { affix = "", "If you have Blocked Recently, you and nearby Allies Regenerate 5% of Life per second", statOrder = { 10643 }, level = 1, group = "LifeRegenerationIfBlockedRecently", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [176085824] = { "If you have Blocked Recently, you and nearby Allies Regenerate 5% of Life per second" }, } }, - ["GroundTarOnBlockUnique__1"] = { affix = "", "Spreads Tar when you Block", statOrder = { 6917 }, level = 79, group = "GroundTarOnBlock", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [3587169341] = { "" }, [2894567787] = { "Spreads Tar when you Block" }, } }, - ["GainShapersPresenceUnique__1"] = { affix = "", "Gain Shaper's Presence for 10 seconds when you kill a Rare or Unique Enemy", statOrder = { 6818 }, level = 81, group = "GainShapersPresence", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1091613629] = { "Gain Shaper's Presence for 10 seconds when you kill a Rare or Unique Enemy" }, } }, - ["SpellsCannotPierceUnique__1__"] = { affix = "", "Projectiles from Spells cannot Pierce", statOrder = { 9750 }, level = 1, group = "SpellsCannotPierce", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3826125995] = { "Projectiles from Spells cannot Pierce" }, } }, - ["AlternateFireAilmentUnique__1"] = { affix = "", "(25-50)% chance to Scorch Enemies", "Cannot inflict Ignite", statOrder = { 2027, 2560 }, level = 1, group = "AlternateFireAilment", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [4198497576] = { "Cannot inflict Ignite" }, [606940191] = { "(25-50)% chance to Scorch Enemies" }, } }, - ["AlternateColdAilmentUnique__1"] = { affix = "", "(25-50)% chance to inflict Brittle", "Cannot inflict Freeze or Chill", statOrder = { 2030, 2562 }, level = 1, group = "AlternateColdAilment", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2238174408] = { "(25-50)% chance to inflict Brittle" }, [612223930] = { "Cannot inflict Freeze or Chill" }, } }, - ["AlternateLightningAilmentUnique__1__"] = { affix = "", "(25-50)% chance to Sap Enemies", "Cannot inflict Shock", statOrder = { 2034, 2563 }, level = 1, group = "AlternateLightningAilment", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [532324017] = { "(25-50)% chance to Sap Enemies" }, [990377349] = { "Cannot inflict Shock" }, } }, - ["PrismaticSkillsInflictScorchUnique_1"] = { affix = "", "Hits with Prismatic Skills always Scorch", statOrder = { 9725 }, level = 1, group = "PrismaticSkillsAlwaysScorch", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [2324756482] = { "Hits with Prismatic Skills always Scorch" }, } }, - ["PrismaticSkillsInflictBrittleUnique_1"] = { affix = "", "Hits with Prismatic Skills always inflict Brittle", statOrder = { 9723 }, level = 1, group = "PrismaticSkillsAlwaysBrittle", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2034210174] = { "Hits with Prismatic Skills always inflict Brittle" }, } }, - ["PrismaticSkillsInflictSapUnique_1"] = { affix = "", "Hits with Prismatic Skills always Sap", statOrder = { 9724 }, level = 1, group = "PrismaticSkillsAlwaysSap", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [2355907154] = { "Hits with Prismatic Skills always Sap" }, } }, - ["ChaosNonAilmentDamageOverTimeMultiplierUnique__1"] = { affix = "", "+(40-55)% to Chaos Damage over Time Multiplier", statOrder = { 1259 }, level = 1, group = "ChaosDamageOverTimeMultiplier", weightKey = { }, weightVal = { }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, tradeHashes = { [4055307827] = { "+(40-55)% to Chaos Damage over Time Multiplier" }, } }, - ["ColdDamageOverTimeMultiplierUnique__1"] = { affix = "", "+(25-35)% to Cold Damage over Time Multiplier", statOrder = { 1256 }, level = 1, group = "ColdDamageOverTimeMultiplier", weightKey = { }, weightVal = { }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(25-35)% to Cold Damage over Time Multiplier" }, } }, - ["ColdDamageOverTimeMultiplierUnique__2"] = { affix = "", "+50% to Cold Damage over Time Multiplier", statOrder = { 1256 }, level = 1, group = "ColdDamageOverTimeMultiplier", weightKey = { }, weightVal = { }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+50% to Cold Damage over Time Multiplier" }, } }, - ["FireDamageOverTimeMultiplierUnique__1"] = { affix = "", "+(40-60)% to Fire Damage over Time Multiplier", statOrder = { 1251 }, level = 1, group = "FireDamageOverTimeMultiplier", weightKey = { }, weightVal = { }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(40-60)% to Fire Damage over Time Multiplier" }, } }, - ["FireDamageOverTimeMultiplierUnique__2_"] = { affix = "", "+(15-25)% to Fire Damage over Time Multiplier", statOrder = { 1251 }, level = 1, group = "FireDamageOverTimeMultiplier", weightKey = { }, weightVal = { }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(15-25)% to Fire Damage over Time Multiplier" }, } }, - ["FireDamageOverTimeMultiplierUnique__3"] = { affix = "", "+(8-12)% to Fire Damage over Time Multiplier", statOrder = { 1251 }, level = 1, group = "FireDamageOverTimeMultiplier", weightKey = { }, weightVal = { }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(8-12)% to Fire Damage over Time Multiplier" }, } }, - ["GlobalDamageOverTimeMultiplierUnique__1"] = { affix = "", "+(20-40)% to Damage over Time Multiplier", statOrder = { 1242 }, level = 1, group = "GlobalDamageOverTimeMultiplier", weightKey = { }, weightVal = { }, modTags = { "dot_multi", "damage" }, tradeHashes = { [3988349707] = { "+(20-40)% to Damage over Time Multiplier" }, } }, - ["GlobalDamageOverTimeMultiplierUnique__2"] = { affix = "", "+(20-40)% to Damage over Time Multiplier", statOrder = { 1242 }, level = 1, group = "GlobalDamageOverTimeMultiplier", weightKey = { }, weightVal = { }, modTags = { "dot_multi", "damage" }, tradeHashes = { [3988349707] = { "+(20-40)% to Damage over Time Multiplier" }, } }, - ["CurseCastSpeedUnique__1"] = { affix = "", "Curse Skills have (10-20)% increased Cast Speed", statOrder = { 2214 }, level = 1, group = "CurseCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed", "curse" }, tradeHashes = { [2378065031] = { "Curse Skills have (10-20)% increased Cast Speed" }, } }, - ["CurseCastSpeedUnique__2"] = { affix = "", "Curse Skills have (8-12)% increased Cast Speed", statOrder = { 2214 }, level = 1, group = "CurseCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed", "curse" }, tradeHashes = { [2378065031] = { "Curse Skills have (8-12)% increased Cast Speed" }, } }, - ["TriggerSocketedCurseSkillsOnCurseUnique__1_"] = { affix = "", "Trigger Socketed Curse Spell when you Cast a Curse Spell, with a 0.25 second Cooldown", statOrder = { 821 }, level = 1, group = "TriggerCurseOnCurse", weightKey = { }, weightVal = { }, modTags = { "skill", "caster", "gem", "curse" }, tradeHashes = { [3657377047] = { "Trigger Socketed Curse Spell when you Cast a Curse Spell, with a 0.25 second Cooldown" }, } }, - ["TrapsApplySocketedCurseSkillsWhenTriggeredUnique_1"] = { affix = "", "You cannot Cast Socketed Hex Curse Skills", "Inflict Socketed Hexes on Enemies that trigger your Traps", statOrder = { 543, 543.1 }, level = 70, group = "TriggerCurseOnTrap", weightKey = { }, weightVal = { }, modTags = { "skill", "caster", "gem", "curse" }, tradeHashes = { [1736212068] = { "You cannot Cast Socketed Hex Curse Skills", "Inflict Socketed Hexes on Enemies that trigger your Traps" }, } }, - ["EnergyShieldLeechPerCurseUnique__1_"] = { affix = "", "0.2% of Spell Damage Leeched as Energy Shield for each Curse on Enemy", statOrder = { 1723 }, level = 1, group = "EnergyShieldLeechPerCurse", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3734213780] = { "0.2% of Spell Damage Leeched as Energy Shield for each Curse on Enemy" }, } }, - ["ElementalDamagePercentAddedAsChaosPerShaperItemUnique__1"] = { affix = "", "Gain (3-5)% of Elemental Damage as Extra Chaos Damage per Shaper Item Equipped", statOrder = { 4334 }, level = 1, group = "ElementalDamagePercentAddedAsChaosPerShaperItem", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "chaos" }, tradeHashes = { [33348259] = { "Gain (3-5)% of Elemental Damage as Extra Chaos Damage per Shaper Item Equipped" }, } }, - ["HitsIgnoreChaosResistanceAllShaperItemsUnique__1"] = { affix = "", "Hits ignore Enemy Monster Chaos Resistance if all Equipped Items are Shaper Items", statOrder = { 7166 }, level = 1, group = "HitsIgnoreChaosResistanceAllShaperItems", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [4234677275] = { "Hits ignore Enemy Monster Chaos Resistance if all Equipped Items are Shaper Items" }, } }, - ["HitsIgnoreChaosResistanceAllElderItemsUnique__1"] = { affix = "", "Hits ignore Enemy Monster Chaos Resistance if all Equipped Items are Elder Items", statOrder = { 7165 }, level = 1, group = "HitsIgnoreChaosResistanceAllElderItems", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [89314980] = { "Hits ignore Enemy Monster Chaos Resistance if all Equipped Items are Elder Items" }, } }, - ["ColdDamagePerResistanceAbove75Unique__1"] = { affix = "", "(15-20)% increased Cold Damage per 1% Cold Resistance above 75%", statOrder = { 5804 }, level = 1, group = "ColdDamagePerResistanceAbove75", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [2517031897] = { "(15-20)% increased Cold Damage per 1% Cold Resistance above 75%" }, } }, - ["LightningDamagePerResistanceAbove75Unique__1"] = { affix = "", "(15-20)% increased Lightning Damage per 1% Lightning Resistance above 75%", statOrder = { 7445 }, level = 1, group = "LightningDamagePerResistanceAbove75", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2642525868] = { "(15-20)% increased Lightning Damage per 1% Lightning Resistance above 75%" }, } }, - ["ElementalDamagePerResistanceAbove75Unique_1"] = { affix = "", "(5-10)% increased Elemental Damage per 1% Fire, Cold, or Lightning Resistance above 75%", statOrder = { 6295 }, level = 1, group = "ElementalDamagePerResistanceAbove75", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [1138456002] = { "(5-10)% increased Elemental Damage per 1% Fire, Cold, or Lightning Resistance above 75%" }, } }, - ["ClassicNebulisImplicitModifierMagnitudeUnique_1"] = { affix = "", "(60-120)% increased Implicit Modifier magnitudes", statOrder = { 58 }, level = 1, group = "LocalImplicitStatMagnitude", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2304729532] = { "(60-120)% increased Implicit Modifier magnitudes" }, } }, - ["FlaskConsecratedGroundDurationUnique__1"] = { affix = "", "(15-30)% reduced Duration", statOrder = { 857 }, level = 1, group = "FlaskConsecratedGroundDuration", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [156096868] = { "(15-30)% reduced Duration" }, } }, - ["FlaskConsecratedGroundAreaOfEffectUnique__1_"] = { affix = "", "Consecrated Ground created by this Flask has Tripled Radius", statOrder = { 880 }, level = 1, group = "FlaskConsecratedGroundAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [806698863] = { "Consecrated Ground created by this Flask has Tripled Radius" }, } }, - ["FlaskConsecratedGroundDamageTakenUnique__1"] = { affix = "", "Consecrated Ground created during Effect applies (7-10)% increased Damage taken to Enemies", statOrder = { 978 }, level = 1, group = "FlaskConsecratedGroundDamageTaken", weightKey = { }, weightVal = { }, modTags = { "flask", "damage" }, tradeHashes = { [1866211373] = { "Consecrated Ground created during Effect applies (7-10)% increased Damage taken to Enemies" }, } }, - ["FlaskConsecratedGroundEffectUnique__1_"] = { affix = "", "+(1-2)% to Critical Strike Chance against Enemies on Consecrated Ground during Effect", statOrder = { 975 }, level = 1, group = "FlaskConsecratedGroundEffect", weightKey = { }, weightVal = { }, modTags = { "flask", "critical" }, tradeHashes = { [1535051459] = { "+(1-2)% to Critical Strike Chance against Enemies on Consecrated Ground during Effect" }, } }, - ["FlaskConsecratedGroundEffectCriticalStrikeUnique__1"] = { affix = "", "(100-150)% increased Critical Strike Chance against Enemies on Consecrated Ground during Effect", statOrder = { 1016 }, level = 1, group = "FlaskConsecratedGroundEffectCriticalStrike", weightKey = { }, weightVal = { }, modTags = { "flask", "critical" }, tradeHashes = { [3278399103] = { "(100-150)% increased Critical Strike Chance against Enemies on Consecrated Ground during Effect" }, } }, - ["ShockProliferationUnique__1"] = { affix = "", "Shocks you inflict spread to other Enemies within 1.5 metres", statOrder = { 2222 }, level = 1, group = "ShockProliferation", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [424549222] = { "Shocks you inflict spread to other Enemies within 1.5 metres" }, } }, - ["ShockProliferationDuringFlaskEffectUnique__1"] = { affix = "", "Shocks you inflict during Effect spread to other Enemies within 2 metres", statOrder = { 1059 }, level = 85, group = "ShockProliferationDuringFlaskEffect", weightKey = { }, weightVal = { }, modTags = { "flask", "elemental", "lightning", "ailment" }, tradeHashes = { [911839512] = { "Shocks you inflict during Effect spread to other Enemies within 2 metres" }, } }, - ["ShockEffectDuringFlaskEffectUnique__1__"] = { affix = "", "(25-40)% increased Effect of Shocks you inflict during Effect", statOrder = { 1058 }, level = 1, group = "ShockEffectDuringFlaskEffect", weightKey = { }, weightVal = { }, modTags = { "flask", "elemental", "lightning", "ailment" }, tradeHashes = { [3338065776] = { "(25-40)% increased Effect of Shocks you inflict during Effect" }, } }, - ["ShockOnKillUnique__1"] = { affix = "", "Enemies you kill are Shocked", statOrder = { 1912 }, level = 1, group = "ShockOnKill", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [209387074] = { "Enemies you kill are Shocked" }, } }, - ["DivineChargeOnHitUnique__1_"] = { affix = "", "+10 to maximum Divine Charges", "Gain a Divine Charge on Hit", statOrder = { 4387, 4388 }, level = 1, group = "DivineChargeOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [108334292] = { "Gain a Divine Charge on Hit" }, [3997368968] = { "+10 to maximum Divine Charges" }, } }, - ["GainDivinityOnMaxDivineChargeUnique__1"] = { affix = "", "You gain Divinity for 10 seconds on reaching maximum Divine Charges", "Lose all Divine Charges when you gain Divinity", statOrder = { 4390, 4390.1 }, level = 1, group = "GainDivinityOnMaxDivineCharge", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1174243390] = { "You gain Divinity for 10 seconds on reaching maximum Divine Charges", "Lose all Divine Charges when you gain Divinity" }, } }, - ["NearbyEnemiesCannotCritUnique__1"] = { affix = "", "Nearby Enemies cannot deal Critical Strikes", statOrder = { 7910 }, level = 1, group = "NearbyEnemiesCannotCrit", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [1177959871] = { "Nearby Enemies cannot deal Critical Strikes" }, [3638599682] = { "Never deal Critical Strikes" }, } }, - ["NearbyAlliesCannotBeSlowedUnique__1"] = { affix = "", "Nearby Allies' Action Speed cannot be modified to below Base Value", statOrder = { 7902 }, level = 1, group = "NearbyAlliesCannotBeSlowed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [1356468153] = { "Nearby Allies' Action Speed cannot be modified to below Base Value" }, [628716294] = { "Action Speed cannot be modified to below Base Value" }, } }, - ["ManaReservationPerAttributeUnique__1"] = { affix = "", "2% increased Mana Reservation Efficiency of Skills per 250 total Attributes", statOrder = { 8216 }, level = 1, group = "ManaReservationPerAttribute", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2676451350] = { "2% increased Mana Reservation Efficiency of Skills per 250 total Attributes" }, } }, - ["ManaReservationEfficiencyPerAttributeUnique__1"] = { affix = "", "2% increased Mana Reservation Efficiency of Skills per 250 total Attributes", statOrder = { 8217 }, level = 1, group = "ManaReservationEfficiencyPerAttribute", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1212083058] = { "2% increased Mana Reservation Efficiency of Skills per 250 total Attributes" }, } }, - ["DefencesPer100StrengthAuraUnique__1"] = { affix = "", "Nearby Allies have (4-6)% increased Defences per 100 Strength you have", statOrder = { 3002 }, level = 1, group = "DefencesPer100StrengthAura", weightKey = { }, weightVal = { }, modTags = { "defences" }, tradeHashes = { [3767939384] = { "Nearby Allies have (4-6)% increased Defences per 100 Strength you have" }, } }, - ["BlockPer100StrengthAuraUnique__1___"] = { affix = "", "Nearby Allies have 1% Chance to Block Attack Damage per 100 Strength you have", statOrder = { 3001 }, level = 1, group = "BlockPer100StrengthAura", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [3941641418] = { "Nearby Allies have 1% Chance to Block Attack Damage per 100 Strength you have" }, } }, - ["CriticalMultiplierPer100DexterityAuraUnique__1"] = { affix = "", "Nearby Allies have +(6-8)% to Critical Strike Multiplier per 100 Dexterity you have", statOrder = { 3003 }, level = 1, group = "CriticalMultiplierPer100DexterityAura", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [1438488526] = { "Nearby Allies have +(6-8)% to Critical Strike Multiplier per 100 Dexterity you have" }, } }, - ["CastSpeedPer100IntelligenceAuraUnique__1"] = { affix = "", "Nearby Allies have (2-4)% increased Cast Speed per 100 Intelligence you have", statOrder = { 3004 }, level = 1, group = "CastSpeedPer100IntelligenceAura", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2373999301] = { "Nearby Allies have (2-4)% increased Cast Speed per 100 Intelligence you have" }, } }, - ["GrantsAccuracyAuraSkillUnique__1"] = { affix = "", "Grants Level 30 Precision Skill", statOrder = { 686 }, level = 81, group = "AccuracyAuraSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [2721815210] = { "Grants Level 30 Precision Skill" }, } }, - ["PrecisionAuraBonusUnique__1"] = { affix = "", "Precision has 100% increased Mana Reservation Efficiency", statOrder = { 9705 }, level = 1, group = "PrecisionAuraBonus", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "aura" }, tradeHashes = { [1291925008] = { "Precision has 100% increased Mana Reservation Efficiency" }, } }, - ["PrecisionReservationEfficiencyUnique__1"] = { affix = "", "Precision has 100% increased Mana Reservation Efficiency", statOrder = { 9706 }, level = 1, group = "PrecisionReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "aura" }, tradeHashes = { [3859865977] = { "Precision has 100% increased Mana Reservation Efficiency" }, } }, - ["SupportedByBlessingSupportUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 25 Divine Blessing", statOrder = { 228 }, level = 1, group = "SupportedByBlessing", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [3274973940] = { "Socketed Gems are Supported by Level 25 Divine Blessing" }, } }, - ["TriggerBowSkillsOnBowAttackUnique__1"] = { affix = "", "Trigger a Socketed Bow Skill when you Attack with a Bow, with a 1 second Cooldown", statOrder = { 757 }, level = 1, group = "TriggerBowSkillsOnBowAttack", weightKey = { }, weightVal = { }, modTags = { "skill", "attack", "gem" }, tradeHashes = { [3171958921] = { "Trigger a Socketed Bow Skill when you Attack with a Bow, with a 1 second Cooldown" }, } }, - ["TriggerBowSkillsOnCastUnique__1"] = { affix = "", "Trigger a Socketed Bow Skill when you Cast a Spell while", "wielding a Bow, with a 1 second Cooldown", statOrder = { 830, 830.1 }, level = 1, group = "TriggerBowSkillsOnCast", weightKey = { }, weightVal = { }, modTags = { "skill", "attack", "caster", "gem" }, tradeHashes = { [1378815167] = { "Trigger a Socketed Bow Skill when you Cast a Spell while", "wielding a Bow, with a 1 second Cooldown" }, } }, - ["MaximumLifeLeechAmountUnique__1"] = { affix = "", "50% reduced Maximum Recovery per Life Leech", statOrder = { 1724 }, level = 1, group = "MaximumLifeLeechAmount", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3101897388] = { "50% reduced Maximum Recovery per Life Leech" }, } }, - ["MaximumLifeLeechAmountUnique__2"] = { affix = "", "80% reduced Maximum Recovery per Life Leech", statOrder = { 1724 }, level = 1, group = "MaximumLifeLeechAmount", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3101897388] = { "80% reduced Maximum Recovery per Life Leech" }, } }, - ["MaximumLifeLeechAmountPerLifeReservedUnique__1"] = { affix = "", "(5-10)% increased Maximum Recovery per Life Leech for each 5% of Life Reserved", statOrder = { 9151 }, level = 1, group = "MaximumLifeLeechAmountPerLifeReserved", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3389810339] = { "(5-10)% increased Maximum Recovery per Life Leech for each 5% of Life Reserved" }, } }, - ["LIfeReservationEfficiencyUnique__1"] = { affix = "", "(15-25)% increased Life Reservation Efficiency of Skills", statOrder = { 2226 }, level = 1, group = "LifeReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [635485889] = { "(15-25)% increased Life Reservation Efficiency of Skills" }, } }, - ["LifeLeechNotRemovedOnFullLifeUnique__1"] = { affix = "", "Life Leech effects are not removed when Unreserved Life is Filled", statOrder = { 3211 }, level = 1, group = "LifeLeechNotRemovedOnFullLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2108380422] = { "Life Leech effects are not removed when Unreserved Life is Filled" }, } }, - ["AttacksBlindOnHitChanceUnique__1"] = { affix = "", "5% chance to Blind Enemies on Hit with Attacks", statOrder = { 4915 }, level = 1, group = "AttacksBlindOnHitChance", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [318953428] = { "5% chance to Blind Enemies on Hit with Attacks" }, } }, - ["AttacksBlindOnHitChanceUnique__2"] = { affix = "", "(10-20)% chance to Blind Enemies on Hit with Attacks", statOrder = { 4915 }, level = 1, group = "AttacksBlindOnHitChance", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [318953428] = { "(10-20)% chance to Blind Enemies on Hit with Attacks" }, } }, - ["AttacksYouUseYourselfRepeatCountUnique__1"] = { affix = "", "Attacks you use yourself Repeat an additional time", statOrder = { 1900 }, level = 1, group = "AttacksYouUseYourselfRepeatCount", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [485236576] = { "Attacks you use yourself Repeat an additional time" }, } }, - ["AttacksYouUseYourselfAttackSpeedFinalUnique__1"] = { affix = "", "Attacks you use yourself have 50% more Attack Speed", statOrder = { 1901 }, level = 1, group = "AttacksYouUseYourselfAttackSpeedFinal", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [2718073792] = { "Attacks you use yourself have 50% more Attack Speed" }, } }, - ["HeraldBonusExtraMod1"] = { affix = "", "When used in the Synthesiser, the new item will have an additional Herald Modifier", statOrder = { 10712 }, level = 1, group = "HeraldBonusExtraMod", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3461563650] = { "When used in the Synthesiser, the new item will have an additional Herald Modifier" }, } }, - ["HeraldBonusExtraMod2_"] = { affix = "", "When used in the Synthesiser, the new item will have an additional Herald Modifier", statOrder = { 10712 }, level = 1, group = "HeraldBonusExtraMod", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3461563650] = { "When used in the Synthesiser, the new item will have an additional Herald Modifier" }, } }, - ["HeraldBonusExtraMod3_"] = { affix = "", "When used in the Synthesiser, the new item will have an additional Herald Modifier", statOrder = { 10712 }, level = 1, group = "HeraldBonusExtraMod", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3461563650] = { "When used in the Synthesiser, the new item will have an additional Herald Modifier" }, } }, - ["HeraldBonusExtraMod4"] = { affix = "", "When used in the Synthesiser, the new item will have an additional Herald Modifier", statOrder = { 10712 }, level = 1, group = "HeraldBonusExtraMod", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3461563650] = { "When used in the Synthesiser, the new item will have an additional Herald Modifier" }, } }, - ["HeraldBonusExtraMod5"] = { affix = "", "When used in the Synthesiser, the new item will have an additional Herald Modifier", statOrder = { 10712 }, level = 1, group = "HeraldBonusExtraMod", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3461563650] = { "When used in the Synthesiser, the new item will have an additional Herald Modifier" }, } }, - ["HeraldBonusThunderReservation"] = { affix = "", "Herald of Thunder has (30-40)% increased Mana Reservation Efficiency", statOrder = { 7127 }, level = 1, group = "HeraldBonusThunderReservation", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [3959101898] = { "Herald of Thunder has (30-40)% increased Mana Reservation Efficiency" }, } }, - ["HeraldBonusThunderReservationEfficiency"] = { affix = "", "Herald of Thunder has (30-40)% increased Mana Reservation Efficiency", statOrder = { 7128 }, level = 1, group = "HeraldBonusThunderReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [3817220109] = { "Herald of Thunder has (30-40)% increased Mana Reservation Efficiency" }, } }, - ["HeraldBonusThunderLightningDamage"] = { affix = "", "(40-60)% increased Lightning Damage while affected by Herald of Thunder", statOrder = { 7449 }, level = 1, group = "HeraldBonusThunderLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [536957] = { "(40-60)% increased Lightning Damage while affected by Herald of Thunder" }, } }, - ["HeraldBonusThunderEffect"] = { affix = "", "Herald of Thunder has (40-60)% increased Buff Effect", statOrder = { 7126 }, level = 1, group = "HeraldBonusThunderEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3814686091] = { "Herald of Thunder has (40-60)% increased Buff Effect" }, } }, - ["HeraldBonusThunderMaxLightningResist"] = { affix = "", "+1% to maximum Lightning Resistance while affected by Herald of Thunder", statOrder = { 9166 }, level = 1, group = "HeraldBonusThunderMaxLightningResist", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [3259396413] = { "+1% to maximum Lightning Resistance while affected by Herald of Thunder" }, } }, - ["HeraldBonusThunderLightningResist_"] = { affix = "", "+(50-60)% to Lightning Resistance while affected by Herald of Thunder", statOrder = { 7451 }, level = 1, group = "HeraldBonusThunderLightningResist", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [2687017988] = { "+(50-60)% to Lightning Resistance while affected by Herald of Thunder" }, } }, - ["HeraldBonusAshReservation"] = { affix = "", "Herald of Ash has (30-40)% increased Mana Reservation Efficiency", statOrder = { 7113 }, level = 1, group = "HeraldBonusAshReservation", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [3819451758] = { "Herald of Ash has (30-40)% increased Mana Reservation Efficiency" }, } }, - ["HeraldBonusAshReservationEfficiency__"] = { affix = "", "Herald of Ash has (30-40)% increased Mana Reservation Efficiency", statOrder = { 7114 }, level = 1, group = "HeraldBonusAshReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2500442851] = { "Herald of Ash has (30-40)% increased Mana Reservation Efficiency" }, } }, - ["HeraldBonusAshFireDamage"] = { affix = "", "(40-60)% increased Fire Damage while affected by Herald of Ash", statOrder = { 6570 }, level = 1, group = "HeraldBonusAshFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2775776604] = { "(40-60)% increased Fire Damage while affected by Herald of Ash" }, } }, - ["HeraldBonusAshEffect"] = { affix = "", "Herald of Ash has (40-60)% increased Buff Effect", statOrder = { 7112 }, level = 1, group = "HeraldBonusAshEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2154349925] = { "Herald of Ash has (40-60)% increased Buff Effect" }, } }, - ["HeraldBonusAshMaxFireResist"] = { affix = "", "+1% to maximum Fire Resistance while affected by Herald of Ash", statOrder = { 9140 }, level = 1, group = "HeraldBonusAshMaxFireResist", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3716758077] = { "+1% to maximum Fire Resistance while affected by Herald of Ash" }, } }, - ["HeraldBonusFireResist"] = { affix = "", "+(50-60)% to Fire Resistance while affected by Herald of Ash", statOrder = { 6571 }, level = 1, group = "HeraldBonusFireResist", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [2675641469] = { "+(50-60)% to Fire Resistance while affected by Herald of Ash" }, } }, - ["HeraldBonusIceReservation_"] = { affix = "", "Herald of Ice has (30-40)% increased Mana Reservation Efficiency", statOrder = { 7117 }, level = 1, group = "HeraldBonusIceReservation", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [3059700363] = { "Herald of Ice has (30-40)% increased Mana Reservation Efficiency" }, } }, - ["HeraldBonusIceReservationEfficiency__"] = { affix = "", "Herald of Ice has (30-40)% increased Mana Reservation Efficiency", statOrder = { 7118 }, level = 1, group = "HeraldBonusIceReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [3395872960] = { "Herald of Ice has (30-40)% increased Mana Reservation Efficiency" }, } }, - ["HeraldBonusIceColdDamage"] = { affix = "", "(40-60)% increased Cold Damage while affected by Herald of Ice", statOrder = { 5815 }, level = 1, group = "HeraldBonusIceColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1970606344] = { "(40-60)% increased Cold Damage while affected by Herald of Ice" }, } }, - ["HeraldBonusIceEffect_"] = { affix = "", "Herald of Ice has (40-60)% increased Buff Effect", statOrder = { 7116 }, level = 1, group = "HeraldBonusIceEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1862926389] = { "Herald of Ice has (40-60)% increased Buff Effect" }, } }, - ["HeraldBonusMaxColdResist__"] = { affix = "", "+1% to maximum Cold Resistance while affected by Herald of Ice", statOrder = { 9129 }, level = 1, group = "HeraldBonusMaxColdResist", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [950661692] = { "+1% to maximum Cold Resistance while affected by Herald of Ice" }, } }, - ["HeraldBonusColdResist"] = { affix = "", "+(50-60)% to Cold Resistance while affected by Herald of Ice", statOrder = { 5817 }, level = 1, group = "HeraldBonusColdResist", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [2494069187] = { "+(50-60)% to Cold Resistance while affected by Herald of Ice" }, } }, - ["HeraldBonusPurityReservation_"] = { affix = "", "Herald of Purity has (30-40)% increased Mana Reservation Efficiency", statOrder = { 7122 }, level = 1, group = "HeraldBonusPurityReservation", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1542765265] = { "Herald of Purity has (30-40)% increased Mana Reservation Efficiency" }, } }, - ["HeraldBonusPurityReservationEfficiency_"] = { affix = "", "Herald of Purity has (30-40)% increased Mana Reservation Efficiency", statOrder = { 7123 }, level = 1, group = "HeraldBonusPurityReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2189040439] = { "Herald of Purity has (30-40)% increased Mana Reservation Efficiency" }, } }, - ["HeraldBonusPurityPhysicalDamage"] = { affix = "", "(40-60)% increased Physical Damage while affected by Herald of Purity", statOrder = { 9644 }, level = 1, group = "HeraldBonusPurityPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3294232483] = { "(40-60)% increased Physical Damage while affected by Herald of Purity" }, } }, - ["HeraldBonusPurityEffect"] = { affix = "", "Herald of Purity has (40-60)% increased Buff Effect", statOrder = { 7120 }, level = 1, group = "HeraldBonusPurityEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2126027382] = { "Herald of Purity has (40-60)% increased Buff Effect" }, } }, - ["HeraldBonusPurityMinionDamage"] = { affix = "", "Sentinels of Purity deal (70-100)% increased Damage", statOrder = { 9988 }, level = 1, group = "HeraldBonusPurityMinionDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, tradeHashes = { [650630047] = { "Sentinels of Purity deal (70-100)% increased Damage" }, } }, - ["HeraldBonusPurityPhysicalDamageReduction"] = { affix = "", "4% additional Physical Damage Reduction while affected by Herald of Purity", statOrder = { 9651 }, level = 1, group = "HeraldBonusPurityPhysicalDamageReduction", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHashes = { [3163114700] = { "4% additional Physical Damage Reduction while affected by Herald of Purity" }, } }, - ["HeraldBonusAgonyReservation"] = { affix = "", "Herald of Agony has (30-40)% increased Mana Reservation Efficiency", statOrder = { 7109 }, level = 1, group = "HeraldBonusAgonyReservation", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1284151528] = { "Herald of Agony has (30-40)% increased Mana Reservation Efficiency" }, } }, - ["HeraldBonusAgonyReservationEfficiency"] = { affix = "", "Herald of Agony has (30-40)% increased Mana Reservation Efficiency", statOrder = { 7110 }, level = 1, group = "HeraldBonusAgonyReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1133703802] = { "Herald of Agony has (30-40)% increased Mana Reservation Efficiency" }, } }, - ["HeraldBonusAgonyChaosDamage_"] = { affix = "", "(40-60)% increased Chaos Damage while affected by Herald of Agony", statOrder = { 5738 }, level = 1, group = "HeraldBonusAgonyChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [739274558] = { "(40-60)% increased Chaos Damage while affected by Herald of Agony" }, } }, - ["HeraldBonusAgonyEffect"] = { affix = "", "Herald of Agony has (40-60)% increased Buff Effect", statOrder = { 7108 }, level = 1, group = "HeraldBonusAgonyEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2572910724] = { "Herald of Agony has (40-60)% increased Buff Effect" }, } }, - ["HeraldBonusAgonyMinionDamage_"] = { affix = "", "Agony Crawler deals (70-100)% increased Damage", statOrder = { 4613 }, level = 1, group = "HeraldBonusAgonyMinionDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, tradeHashes = { [786460697] = { "Agony Crawler deals (70-100)% increased Damage" }, } }, - ["HeraldBonusAgonyChaosResist_"] = { affix = "", "+(31-43)% to Chaos Resistance while affected by Herald of Agony", statOrder = { 5743 }, level = 1, group = "HeraldBonusAgonyChaosResist", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [3456816469] = { "+(31-43)% to Chaos Resistance while affected by Herald of Agony" }, } }, - ["MalevolenceSkillEffectDuration"] = { affix = "", "(20-30)% increased Skill Effect Duration while affected by Malevolence", statOrder = { 10054 }, level = 1, group = "MalevolenceSkillEffectDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4127613649] = { "(20-30)% increased Skill Effect Duration while affected by Malevolence" }, } }, - ["MalevolenceChaosNonAilmentDamageOverTimeMultiplier"] = { affix = "", "+(18-22)% to Damage over Time Multiplier while affected by Malevolence", statOrder = { 6260 }, level = 1, group = "MalevolenceDamageOverTimeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2736708072] = { "+(18-22)% to Damage over Time Multiplier while affected by Malevolence" }, } }, - ["MalevolenceColdDamageOverTimeMultiplier"] = { affix = "", "+(18-22)% to Damage over Time Multiplier while affected by Malevolence", statOrder = { 6260 }, level = 1, group = "MalevolenceDamageOverTimeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2736708072] = { "+(18-22)% to Damage over Time Multiplier while affected by Malevolence" }, } }, - ["MalevolenceLifeAndEnergyShieldRecoveryRate"] = { affix = "", "(8-12)% increased Recovery rate of Life and Energy Shield while affected by Malevolence", statOrder = { 7345 }, level = 1, group = "MalevolenceLifeAndEnergyShieldRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "defences", "energy_shield" }, tradeHashes = { [3643449791] = { "(8-12)% increased Recovery rate of Life and Energy Shield while affected by Malevolence" }, } }, - ["MalevolenceUnaffectedByPoison"] = { affix = "", "Unaffected by Poison while affected by Malevolence", statOrder = { 10477 }, level = 1, group = "MalevolenceUnaffectedByPoison", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [34059570] = { "Unaffected by Poison while affected by Malevolence" }, } }, - ["MalevolenceUnaffectedByBleeding_"] = { affix = "", "Unaffected by Bleeding while affected by Malevolence", statOrder = { 10454 }, level = 1, group = "MalevolenceUnaffectedByBleeding", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [4104891138] = { "Unaffected by Bleeding while affected by Malevolence" }, } }, - ["MalevolenceYourAilmentsDealDamageFaster__"] = { affix = "", "Damaging Ailments you inflict deal Damage (10-15)% faster while affected by Malevolence", statOrder = { 10667 }, level = 1, group = "MalevolenceYourAilmentsDealDamageFaster", weightKey = { }, weightVal = { }, modTags = { "damage", "ailment" }, tradeHashes = { [3468843137] = { "Damaging Ailments you inflict deal Damage (10-15)% faster while affected by Malevolence" }, } }, - ["MalevolenceDamageOverTimeMultiplier"] = { affix = "", "+(18-22)% to Damage over Time Multiplier while affected by Malevolence", statOrder = { 6260 }, level = 1, group = "MalevolenceDamageOverTimeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2736708072] = { "+(18-22)% to Damage over Time Multiplier while affected by Malevolence" }, } }, - ["ZealotryCriticalStrikesPenetratesElementalResistances"] = { affix = "", "Critical Strikes Penetrate (8-10)% of Enemy Elemental Resistances while affected by Zealotry", statOrder = { 5983 }, level = 1, group = "ZealotryCriticalStrikesPenetratesElementalResistances", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "critical" }, tradeHashes = { [2091518682] = { "Critical Strikes Penetrate (8-10)% of Enemy Elemental Resistances while affected by Zealotry" }, } }, - ["ZealotryCastSpeed"] = { affix = "", "(10-15)% increased Cast Speed while affected by Zealotry", statOrder = { 5471 }, level = 1, group = "ZealotryCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2444534954] = { "(10-15)% increased Cast Speed while affected by Zealotry" }, } }, - ["ZealotryConsecratedGroundEffectLingersForMsAfterLeavingTheArea"] = { affix = "", "Effects of Consecrated Ground you create while affected by Zealotry Linger for 2 seconds", statOrder = { 5852 }, level = 1, group = "ZealotryConsecratedGroundEffectLingersForMsAfterLeavingTheArea", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2163419452] = { "Effects of Consecrated Ground you create while affected by Zealotry Linger for 2 seconds" }, } }, - ["ZealotryConsecratedGroundEnemyDamageTaken"] = { affix = "", "Consecrated Ground you create while affected by Zealotry causes enemies to take (8-10)% increased Damage", statOrder = { 5849 }, level = 1, group = "ZealotryConsecratedGroundEnemyDamageTaken", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2434030180] = { "Consecrated Ground you create while affected by Zealotry causes enemies to take (8-10)% increased Damage" }, } }, - ["ZealotryGainArcaneSurgeFor4SecondsWhenYouCreateConsecratedGround"] = { affix = "", "Gain Arcane Surge for 4 seconds when you create Consecrated Ground while affected by Zealotry", statOrder = { 6724 }, level = 1, group = "ZealotryGainArcaneSurgeFor4SecondsWhenYouCreateConsecratedGround", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1919069577] = { "Gain Arcane Surge for 4 seconds when you create Consecrated Ground while affected by Zealotry" }, } }, - ["ZealotryMaximumEnergyShieldPerSecondToMaximumEnergyShieldLeechRate"] = { affix = "", "30% increased Maximum total Energy Shield Recovery per second from Leech while affected by Zealotry", statOrder = { 1736 }, level = 1, group = "ZealotryMaximumEnergyShieldPerSecondToMaximumEnergyShieldLeechRateOld", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3848992177] = { "30% increased Maximum total Energy Shield Recovery per second from Leech while affected by Zealotry" }, } }, - ["ZealotryMaximumEnergyShieldPerSecondToMaximumEnergyShieldLeechRateNew"] = { affix = "", "30% increased Maximum total Energy Shield Recovery per second from Leech while affected by Zealotry", statOrder = { 1735 }, level = 1, group = "ZealotryMaximumEnergyShieldPerSecondToMaximumEnergyShieldLeechRate", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2731416566] = { "30% increased Maximum total Energy Shield Recovery per second from Leech while affected by Zealotry" }, } }, - ["ZealotryCriticalStrikeChanceAgainstEnemiesOnConsecratedGround"] = { affix = "", "(100-120)% increased Critical Strike Chance against Enemies on Consecrated Ground while affected by Zealotry", statOrder = { 5921 }, level = 1, group = "ZealotryCriticalStrikeChanceAgainstEnemiesOnConsecratedGround", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [214835567] = { "(100-120)% increased Critical Strike Chance against Enemies on Consecrated Ground while affected by Zealotry" }, } }, - ["ZombiesCountAsCorpsesUnique__1"] = { affix = "", "Your Raised Zombies count as corpses", statOrder = { 9819 }, level = 1, group = "ZombiesCountAsCorpses", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [3951269079] = { "Your Raised Zombies count as corpses" }, } }, - ["ZombiesNeedNoCorpsesUnique__1"] = { affix = "", "Raise Zombie does not require a corpse", statOrder = { 9813 }, level = 1, group = "ZombiesNeedNoCorpses", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [16924183] = { "Raise Zombie does not require a corpse" }, } }, - ["ZombieIncreasedLifeUnique__1"] = { affix = "", "Raised Zombies have (80-100)% increased maximum Life", statOrder = { 1771 }, level = 1, group = "ZombieIncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, tradeHashes = { [927817294] = { "Raised Zombies have (80-100)% increased maximum Life" }, } }, - ["AdditionalPhysicalDamageReductionWhileBleedingUnique__1"] = { affix = "", "(10-15)% additional Physical Damage Reduction while Bleeding", statOrder = { 4581 }, level = 1, group = "AdditionalPhysicalDamageReductionWhileBleeding", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHashes = { [1089471428] = { "(10-15)% additional Physical Damage Reduction while Bleeding" }, } }, - ["DamageTakenGainedAsLifeUnique__1_"] = { affix = "", "(10-20)% of Damage taken Recouped as Life", statOrder = { 6105 }, level = 1, group = "DamageTakenGainedAsLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [1444556985] = { "(10-20)% of Damage taken Recouped as Life" }, } }, - ["DamageTakenGainedAsLifeUnique__2"] = { affix = "", "(80-100)% of Damage taken Recouped as Life", statOrder = { 6105 }, level = 1, group = "DamageTakenGainedAsLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [1444556985] = { "(80-100)% of Damage taken Recouped as Life" }, } }, - ["DamageTakenGainedAsLifeUnique__3"] = { affix = "", "(6-12)% of Damage taken Recouped as Life", statOrder = { 6105 }, level = 1, group = "DamageTakenGainedAsLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [1444556985] = { "(6-12)% of Damage taken Recouped as Life" }, } }, - ["DamageTakenGainedAsLifeUnique__4"] = { affix = "", "(10-15)% of Damage taken Recouped as Life", statOrder = { 6105 }, level = 1, group = "DamageTakenGainedAsLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [1444556985] = { "(10-15)% of Damage taken Recouped as Life" }, } }, - ["MinimumEnduranceChargeOnLowLifeUnique__1"] = { affix = "", "+3 to Minimum Endurance Charges while on Low Life", statOrder = { 9256 }, level = 1, group = "MinimumEnduranceChargeOnLowLife", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHashes = { [2847937074] = { "+3 to Minimum Endurance Charges while on Low Life" }, } }, - ["MinimumPowerChargeOnLowLifeUnique__1"] = { affix = "", "+3 to Minimum Power Charges while on Low Life", statOrder = { 9261 }, level = 1, group = "MinimumPowerChargeOnLowLife", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [3960918998] = { "+3 to Minimum Power Charges while on Low Life" }, } }, - ["SpellCriticalStrikeChanceIfKilledRecentlyUnique__1"] = { affix = "", "(200-250)% increased Critical Strike Chance for Spells if you've Killed Recently", statOrder = { 5924 }, level = 1, group = "SpellCriticalStrikeChanceIfKilledRecently", weightKey = { }, weightVal = { }, modTags = { "caster", "critical" }, tradeHashes = { [1243114410] = { "(200-250)% increased Critical Strike Chance for Spells if you've Killed Recently" }, } }, - ["SpellCriticalStrikeMultiplierIfNotKilledRecentlyUnique__1"] = { affix = "", "+(60-100)% to Critical Strike Multiplier for Spells if you haven't Killed Recently", statOrder = { 5954 }, level = 1, group = "SpellCriticalStrikeMultiplierIfNotKilledRecently", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster", "critical" }, tradeHashes = { [729430714] = { "+(60-100)% to Critical Strike Multiplier for Spells if you haven't Killed Recently" }, } }, - ["RagingSpiritLifeUnique__1"] = { affix = "", "Summoned Raging Spirits have (25-40)% increased maximum Life", statOrder = { 9328 }, level = 1, group = "RagingSpiritLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, tradeHashes = { [3999870307] = { "Summoned Raging Spirits have (25-40)% increased maximum Life" }, } }, - ["RagingSpiritDurationUnique__1"] = { affix = "", "Summon Raging Spirit has (20-30)% increased Duration", statOrder = { 3412 }, level = 1, group = "RagingSpiritDuration", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [38715141] = { "Summon Raging Spirit has (20-30)% increased Duration" }, } }, - ["RagingSpiritChaosDamageTakenUnique__1"] = { affix = "", "Summoned Raging Spirits take 20% of their Maximum Life per second as Chaos Damage", statOrder = { 9329 }, level = 68, group = "RagingSpiritChaosDamageTaken", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "minion" }, tradeHashes = { [1063920218] = { "Summoned Raging Spirits take 20% of their Maximum Life per second as Chaos Damage" }, } }, - ["LosePowerChargeWhenHitUnique__1"] = { affix = "", "Lose a Power Charge when Hit", statOrder = { 10504 }, level = 1, group = "LosePowerChargeWhenHit", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [4023578899] = { "Lose a Power Charge when Hit" }, } }, - ["SpellDamagePerLifeUnique__1"] = { affix = "", "5% increased Spell Damage per 100 Player Maximum Life", statOrder = { 10152 }, level = 1, group = "SpellDamagePerLife", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [3491815140] = { "5% increased Spell Damage per 100 Player Maximum Life" }, } }, - ["SpellCriticalStrikeChancePerLifeUnique__1"] = { affix = "", "5% increased Spell Critical Strike Chance per 100 Player Maximum Life", statOrder = { 10139 }, level = 1, group = "SpellCriticalStrikeChancePerLife", weightKey = { }, weightVal = { }, modTags = { "caster", "critical" }, tradeHashes = { [3775574601] = { "5% increased Spell Critical Strike Chance per 100 Player Maximum Life" }, } }, - ["SacrificeLifeOnSpellSkillUnique__1"] = { affix = "", "Sacrifice 10% of your Life when you Use or Trigger a Spell Skill", statOrder = { 9956 }, level = 1, group = "SacrificeLifeOnSpellSkill", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "caster" }, tradeHashes = { [545408899] = { "Sacrifice 10% of your Life when you Use or Trigger a Spell Skill" }, } }, - ["PercentDexterityIfStrengthHigherThanIntelligenceUnique__1"] = { affix = "", "15% increased Dexterity if Strength is higher than Intelligence", statOrder = { 6176 }, level = 1, group = "PercentDexterityIfStrengthHigherThanIntelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [2022724400] = { "15% increased Dexterity if Strength is higher than Intelligence" }, } }, - ["CriticalStrikeMultiplierIfDexterityHigherThanIntelligenceUnique__1"] = { affix = "", "+(25-40)% to Critical Strike Multiplier if Dexterity is higher than Intelligence", statOrder = { 5956 }, level = 1, group = "CriticalStrikeMultiplierIfDexterityHigherThanIntelligence", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [2328588114] = { "+(25-40)% to Critical Strike Multiplier if Dexterity is higher than Intelligence" }, } }, - ["ElementalDamagePerDexterityUnique__1"] = { affix = "", "1% increased Elemental Damage per 10 Dexterity", statOrder = { 6306 }, level = 1, group = "ElementalDamagePerDexterity", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [963261439] = { "1% increased Elemental Damage per 10 Dexterity" }, } }, - ["LifePer10IntelligenceUnique__1"] = { affix = "", "+2 to Maximum Life per 10 Intelligence", statOrder = { 9157 }, level = 1, group = "LifePer10Intelligence", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [1114351662] = { "+2 to Maximum Life per 10 Intelligence" }, } }, - ["GrantsLevel30SmiteUnique__1"] = { affix = "", "Grants Level 30 Smite Skill", statOrder = { 719 }, level = 1, group = "GrantsSmiteLevel", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [979973117] = { "Grants Level 30 Smite Skill" }, } }, - ["ElementalAilmentsOnYouInsteadOfAlliesUnique__1"] = { affix = "", "Enemies inflict Elemental Ailments on you instead of nearby Allies", statOrder = { 7925 }, level = 1, group = "ElementalAilmentsOnYouInsteadOfAllies", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [979288792] = { "Enemies inflict Elemental Ailments on you instead of nearby Allies" }, [3151718243] = { "" }, } }, - ["UnaffectedByPoisonUnique__1_"] = { affix = "", "Unaffected by Poison", statOrder = { 5055 }, level = 1, group = "UnaffectedByPoison", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [1953432004] = { "Unaffected by Poison" }, } }, - ["KeystoneInnerConvictionUnique__1"] = { affix = "", "Inner Conviction", statOrder = { 10806 }, level = 1, group = "KeystoneInnerConviction", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge", "power_charge", "damage" }, tradeHashes = { [354080151] = { "Inner Conviction" }, } }, - ["FasterPoisonDamageUnique__1"] = { affix = "", "Poisons you inflict deal Damage (30-50)% faster", statOrder = { 6546 }, level = 1, group = "FasterPoisonDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, tradeHashes = { [2907156609] = { "Poisons you inflict deal Damage (30-50)% faster" }, } }, - ["TriggerRainOfArrowsOnBowAttackUnique__1"] = { affix = "", "Trigger Level 5 Rain of Arrows when you Attack with a Bow", statOrder = { 813 }, level = 1, group = "TriggerRainOfArrowsOnBowAttack", weightKey = { }, weightVal = { }, modTags = { "skill", "attack" }, tradeHashes = { [2935409762] = { "Trigger Level 5 Rain of Arrows when you Attack with a Bow" }, } }, - ["TriggerToxicRainOnBowAttackUnique__1"] = { affix = "", "Trigger Level 5 Toxic Rain when you Attack with a Bow", statOrder = { 835 }, level = 1, group = "TriggerToxicRainOnBowAttack", weightKey = { }, weightVal = { }, modTags = { "skill", "attack" }, tradeHashes = { [767464019] = { "Trigger Level 5 Toxic Rain when you Attack with a Bow" }, } }, - ["CursesRemainOnDeathUnique__1_"] = { affix = "", "Non-Aura Curses you inflict are not removed from Dying Enemies", statOrder = { 6010 }, level = 1, group = "CursesRemainOnDeath", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [847744351] = { "Non-Aura Curses you inflict are not removed from Dying Enemies" }, } }, - ["EnemiesNearCursesBlindAndExplodeUnique__1"] = { affix = "", "Enemies near corpses affected by your Curses are Blinded", "Enemies Killed near corpses affected by your Curses explode, dealing", "3% of their Life as Physical Damage", statOrder = { 6388, 6388.1, 6388.2 }, level = 1, group = "EnemiesNearCursesBlindAndExplode", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1509756274] = { "Enemies near corpses affected by your Curses are Blinded", "Enemies Killed near corpses affected by your Curses explode, dealing", "3% of their Life as Physical Damage" }, } }, - ["WarcryCooldownIs2SecondsUnique__1"] = { affix = "", "Warcry Skills' Cooldown Time is 4 seconds", statOrder = { 10576 }, level = 1, group = "WarcryCooldownIs2Seconds", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [684268017] = { "Warcry Skills' Cooldown Time is 4 seconds" }, } }, - ["CriticalStrikeMultiplierIs250Unique__1"] = { affix = "", "Your Critical Strike Multiplier is 300%", statOrder = { 5952 }, level = 1, group = "CriticalStrikeMultiplierIs250", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [824024007] = { "Your Critical Strike Multiplier is 300%" }, } }, - ["RageOnAttackCritUnique__1"] = { affix = "", "Gain 1 Rage on Critical Strike with Attacks", statOrder = { 7308 }, level = 1, group = "RageOnAttackCrit", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [1043982313] = { "Gain 1 Rage on Critical Strike with Attacks" }, } }, - ["RageOnMeleeHitUnique__1"] = { affix = "", "Gain 5 Rage on Melee Hit", statOrder = { 6845 }, level = 1, group = "RageOnMeleeHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2709367754] = { "Gain 5 Rage on Melee Hit" }, } }, - ["PhysicalAddedAsFirePerRageUnique__1"] = { affix = "", "Every Rage also grants 1% of Physical Damage as Extra Fire Damage", statOrder = { 9635 }, level = 1, group = "PhysicalAddedAsFirePerRage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [1431402553] = { "Every Rage also grants 1% of Physical Damage as Extra Fire Damage" }, } }, - ["LocalChanceForPoisonDamage300FinalInflictedWithThisWeaponUnique__1_"] = { affix = "", "20% chance for Poisons inflicted with this Weapon to deal 300% more Damage", statOrder = { 7873 }, level = 1, group = "LocalChanceForPoisonDamage300FinalInflictedWithThisWeapon", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "poison", "damage", "chaos", "attack", "ailment" }, tradeHashes = { [768124628] = { "20% chance for Poisons inflicted with this Weapon to deal 300% more Damage" }, } }, - ["AttackDamageWhileHoldingShieldUnique__1"] = { affix = "", "(10-15)% increased Attack Damage while holding a Shield", statOrder = { 1206 }, level = 1, group = "AttackDamageWhileHoldingShield", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [1393393937] = { "(10-15)% increased Attack Damage while holding a Shield" }, } }, - ["DisplayCowardsTrialWavesOfMonsters"] = { affix = "", "Contains waves of Monsters", statOrder = { 6205 }, level = 1, group = "DisplayCowardsTrialWavesOfMonsters", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1787444936] = { "Contains waves of Monsters" }, } }, - ["DisplayCowardsTrialWavesOfUndeadMonsters"] = { affix = "", "Contains additional waves of Undead Monsters", statOrder = { 6206 }, level = 1, group = "DisplayCowardsTrialWavesOfUndeadMonsters", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1968038301] = { "Contains additional waves of Undead Monsters" }, } }, - ["CowardsTrialExtraGhosts___"] = { affix = "", "Area contains additional waves of Ghosts", statOrder = { 8416 }, level = 1, group = "CowardsTrialExtraGhosts", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3397728378] = { "Area contains additional waves of Ghosts" }, } }, - ["CowardsTrialExtraPhantasms"] = { affix = "", "Area contains additional waves of Phantasms", statOrder = { 8418 }, level = 1, group = "CowardsTrialExtraPhantasms", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2681416653] = { "Area contains additional waves of Phantasms" }, } }, - ["CowardsTrialExtraZombies"] = { affix = "", "Area contains additional waves of Zombies", statOrder = { 8422 }, level = 1, group = "CowardsTrialExtraZombies", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2724985127] = { "Area contains additional waves of Zombies" }, } }, - ["CowardsTrialExtraRagingSpirits"] = { affix = "", "Area contains additional waves of Raging Spirits", statOrder = { 8419 }, level = 1, group = "CowardsTrialExtraRagingSpirits", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1217959763] = { "Area contains additional waves of Raging Spirits" }, } }, - ["CowardsTrialExtraRhoas___"] = { affix = "", "Area contains additional waves of Bone Rhoas", statOrder = { 8420 }, level = 1, group = "CowardsTrialExtraRhoas", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2210267337] = { "Area contains additional waves of Bone Rhoas" }, } }, - ["CowardsTrialExtraOriathCitizens"] = { affix = "", "Area contains additional waves of Oriathan Zombies", statOrder = { 8417 }, level = 1, group = "CowardsTrialExtraOriathCitizens", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4261620841] = { "Area contains additional waves of Oriathan Zombies" }, } }, - ["CowardsTrialExtraSkeletonCannons"] = { affix = "", "Area contains additional waves of Ravager Maws", statOrder = { 8421 }, level = 1, group = "CowardsTrialExtraSkeletonCannons", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2481080006] = { "Area contains additional waves of Ravager Maws" }, } }, - ["TotemDamagePerDevotion"] = { affix = "", "4% increased Totem Damage per 10 Devotion", statOrder = { 10395 }, level = 1, group = "TotemDamagePerDevotion", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2566390555] = { "4% increased Totem Damage per 10 Devotion" }, } }, - ["BrandDamagePerDevotion"] = { affix = "", "4% increased Brand Damage per 10 Devotion", statOrder = { 10038 }, level = 1, group = "BrandDamagePerDevotion", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2697019412] = { "4% increased Brand Damage per 10 Devotion" }, } }, - ["ChannelledSkillDamagePerDevotion"] = { affix = "", "Channelling Skills deal 4% increased Damage per 10 Devotion", statOrder = { 5728 }, level = 1, group = "ChannelledSkillDamagePerDevotion", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [970844066] = { "Channelling Skills deal 4% increased Damage per 10 Devotion" }, } }, - ["AreaDamagePerDevotion"] = { affix = "", "4% increased Area Damage per 10 Devotion", statOrder = { 4718 }, level = 1, group = "AreaDamagePerDevotion", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [1724614884] = { "4% increased Area Damage per 10 Devotion" }, } }, - ["ElementalDamagePerDevotion_"] = { affix = "", "4% increased Elemental Damage per 10 Devotion", statOrder = { 6305 }, level = 1, group = "ElementalDamagePerDevotion", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3103189267] = { "4% increased Elemental Damage per 10 Devotion" }, } }, - ["ElementalResistancesPerDevotion"] = { affix = "", "+2% to all Elemental Resistances per 10 Devotion", statOrder = { 6340 }, level = 1, group = "ElementalResistancesPerDevotion", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [1910205563] = { "+2% to all Elemental Resistances per 10 Devotion" }, } }, - ["AilmentEffectPerDevotion"] = { affix = "", "3% increased Effect of non-Damaging Ailments on Enemies per 10 Devotion", statOrder = { 9503 }, level = 1, group = "AilmentEffectPerDevotion", weightKey = { }, weightVal = { }, modTags = { "ailment" }, tradeHashes = { [1810368194] = { "3% increased Effect of non-Damaging Ailments on Enemies per 10 Devotion" }, } }, - ["ElementalAilmentSelfDurationPerDevotion_"] = { affix = "", "4% reduced Elemental Ailment Duration on you per 10 Devotion", statOrder = { 9976 }, level = 1, group = "ElementalAilmentSelfDurationPerDevotion", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [730530528] = { "4% reduced Elemental Ailment Duration on you per 10 Devotion" }, } }, - ["CurseSelfDurationPerDevotion"] = { affix = "", "4% reduced Duration of Curses on you per 10 Devotion", statOrder = { 9973 }, level = 1, group = "CurseSelfDurationPerDevotion", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [4235333770] = { "4% reduced Duration of Curses on you per 10 Devotion" }, } }, - ["MinionAttackAndCastSpeedPerDevotion"] = { affix = "", "1% increased Minion Attack and Cast Speed per 10 Devotion", statOrder = { 9272 }, level = 1, group = "MinionAttackAndCastSpeedPerDevotion", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed", "minion" }, tradeHashes = { [3808469650] = { "1% increased Minion Attack and Cast Speed per 10 Devotion" }, } }, - ["MinionAccuracyRatingPerDevotion_"] = { affix = "", "Minions have +60 to Accuracy Rating per 10 Devotion", statOrder = { 9265 }, level = 1, group = "MinionAccuracyRatingPerDevotion", weightKey = { }, weightVal = { }, modTags = { "attack", "minion" }, tradeHashes = { [2830135449] = { "Minions have +60 to Accuracy Rating per 10 Devotion" }, } }, - ["AddedManaRegenerationPerDevotion"] = { affix = "", "Regenerate 0.6 Mana per Second per 10 Devotion", statOrder = { 8198 }, level = 1, group = "AddedManaRegenerationPerDevotion", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2042813020] = { "Regenerate 0.6 Mana per Second per 10 Devotion" }, } }, - ["ReducedManaCostPerDevotion"] = { affix = "", "1% reduced Mana Cost of Skills per 10 Devotion", statOrder = { 8171 }, level = 1, group = "ReducedManaCostPerDevotion", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [3293275880] = { "1% reduced Mana Cost of Skills per 10 Devotion" }, } }, - ["AuraEffectPerDevotion"] = { affix = "", "1% increased effect of Non-Curse Auras per 10 Devotion", statOrder = { 9494 }, level = 1, group = "AuraEffectPerDevotion", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHashes = { [2585926696] = { "1% increased effect of Non-Curse Auras per 10 Devotion" }, } }, - ["ShieldDefencesPerDevotion"] = { affix = "", "3% increased Defences from Equipped Shield per 10 Devotion", statOrder = { 10004 }, level = 1, group = "ShieldDefencesPerDevotion", weightKey = { }, weightVal = { }, modTags = { "defences" }, tradeHashes = { [2803981661] = { "3% increased Defences from Equipped Shield per 10 Devotion" }, } }, - ["DealNoChaosDamageUnique_1"] = { affix = "", "Deal no Chaos Damage", statOrder = { 5007 }, level = 1, group = "DealNoChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [1896269067] = { "Deal no Chaos Damage" }, } }, - ["LightRadiusToDamageUnique_1"] = { affix = "", "Increases and Reductions to Light Radius also apply to Damage", statOrder = { 2499 }, level = 1, group = "LightRadiusModifiersApplyToDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [3519807287] = { "Increases and Reductions to Light Radius also apply to Damage" }, } }, - ["LightRadiusToAreaOfEffectUnique__1"] = { affix = "", "Increases and Reductions to Light Radius also apply to Area of Effect at 50% of their value", statOrder = { 2498 }, level = 1, group = "LightRadiusModifiersApplyToAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1138742368] = { "Increases and Reductions to Light Radius also apply to Area of Effect at 50% of their value" }, } }, - ["CanRollMinionModifiersImplicitWandAtlas1"] = { affix = "", "Can roll Minion Modifiers", statOrder = { 17 }, level = 1, group = "CanRollMinionModifiers", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [2994708956] = { "Can roll Minion Modifiers" }, } }, - ["MinionDamageImplicitWand1"] = { affix = "", "Minions deal (26-30)% increased Damage", statOrder = { 1973 }, level = 1, group = "MinionDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (26-30)% increased Damage" }, } }, - ["MinionDamageImplicitWand2"] = { affix = "", "Minions deal (20-24)% increased Damage", statOrder = { 1973 }, level = 1, group = "MinionDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (20-24)% increased Damage" }, } }, - ["MinionDamageImplicitWand3"] = { affix = "", "Minions deal (12-16)% increased Damage", statOrder = { 1973 }, level = 1, group = "MinionDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (12-16)% increased Damage" }, } }, - ["MinionDamageImplicitShield1"] = { affix = "", "Minions deal (5-10)% increased Damage", statOrder = { 1973 }, level = 1, group = "MinionDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (5-10)% increased Damage" }, } }, - ["MinionElementalResistanceImplicitRing1"] = { affix = "", "Minions have +(10-15)% to all Elemental Resistances", statOrder = { 2912 }, level = 32, group = "MinionElementalResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance", "minion" }, tradeHashes = { [1423639565] = { "Minions have +(10-15)% to all Elemental Resistances" }, } }, - ["TulBreachRingImplicit"] = { affix = "", "+2% to maximum Cold Resistance", "Cannot roll Modifiers of Non-Cold Damage Types", statOrder = { 1629, 5271 }, level = 40, group = "TulBreachRingImplicit", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+2% to maximum Cold Resistance" }, [4215265273] = { "Cannot roll Modifiers of Non-Cold Damage Types" }, } }, - ["XophBreachRingImplicit"] = { affix = "", "+2% to maximum Fire Resistance", "Cannot roll Modifiers of Non-Fire Damage Types", statOrder = { 1623, 5273 }, level = 40, group = "XophBreachRingImplicit", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4040327616] = { "Cannot roll Modifiers of Non-Fire Damage Types" }, [4095671657] = { "+2% to maximum Fire Resistance" }, } }, - ["EshBreachRingImplicit"] = { affix = "", "+2% to maximum Lightning Resistance", "Cannot roll Modifiers of Non-Lightning Damage Types", statOrder = { 1634, 5270 }, level = 40, group = "EshBreachRingImplicit", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+2% to maximum Lightning Resistance" }, [1765111378] = { "Cannot roll Modifiers of Non-Lightning Damage Types" }, } }, - ["UulNetolBreachRingImplicit"] = { affix = "", "3% additional Physical Damage Reduction", "Cannot roll Modifiers of Non-Physical Damage Types", statOrder = { 2273, 5272 }, level = 40, group = "UulNetolBreachRingImplicit", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHashes = { [361491825] = { "Cannot roll Modifiers of Non-Physical Damage Types" }, [3771516363] = { "3% additional Physical Damage Reduction" }, } }, - ["ChayulaBreachRingImplicit"] = { affix = "", "+2% to maximum Chaos Resistance", "Cannot roll Modifiers of Non-Chaos Damage Types", statOrder = { 1640, 5269 }, level = 40, group = "ChayulaBreachRingImplicit", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [3363758458] = { "Cannot roll Modifiers of Non-Chaos Damage Types" }, [1301765461] = { "+2% to maximum Chaos Resistance" }, } }, - ["FormlessBreachRingImplicit"] = { affix = "", "(5-7)% increased Global Defences", statOrder = { 2833 }, level = 53, group = "FormlessBreachRingImplicit", weightKey = { }, weightVal = { }, modTags = { "defences" }, tradeHashes = { [1389153006] = { "(5-7)% increased Global Defences" }, } }, - ["KineticWandImplicit"] = { affix = "", "Cannot roll Caster Modifiers", statOrder = { 7322 }, level = 1, group = "KineticWandImplicit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4082780964] = { "Cannot roll Caster Modifiers" }, } }, - ["MinionPhysicalToFirePerRedSocket"] = { affix = "", "Minions convert 25% of Physical Damage to Fire Damage per Red Socket", statOrder = { 2719 }, level = 1, group = "MinionPhysicalToFirePerRedSocket", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire", "minion" }, tradeHashes = { [2139569643] = { "Minions convert 25% of Physical Damage to Fire Damage per Red Socket" }, } }, - ["MinionPhysicalToColdPerGreenSocket_"] = { affix = "", "Minions convert 25% of Physical Damage to Cold Damage per Green Socket", statOrder = { 2723 }, level = 1, group = "MinionPhysicalToColdPerGreenSocket", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold", "minion" }, tradeHashes = { [306443498] = { "Minions convert 25% of Physical Damage to Cold Damage per Green Socket" }, } }, - ["MinionPhysicalToLightningPerBlueSocket"] = { affix = "", "Minions convert 25% of Physical Damage to Lightning Damage per Blue Socket", statOrder = { 2725 }, level = 1, group = "MinionPhysicalToLightningPerBlueSocket", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning", "minion" }, tradeHashes = { [3366426512] = { "Minions convert 25% of Physical Damage to Lightning Damage per Blue Socket" }, } }, - ["MinionPhysicalToChaosPerWhiteSocket"] = { affix = "", "Minions convert 25% of Physical Damage to Chaos Damage per White Socket", statOrder = { 2729 }, level = 1, group = "MinionPhysicalToChaosPerWhiteSocket", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos", "minion" }, tradeHashes = { [199362230] = { "Minions convert 25% of Physical Damage to Chaos Damage per White Socket" }, } }, - ["MinionChanceToFreezeShockIgnite"] = { affix = "", "Minions have (5-10)% chance to Freeze, Shock and Ignite", statOrder = { 9283 }, level = 1, group = "MinionChanceToFreezeShockIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "minion", "ailment" }, tradeHashes = { [1994549323] = { "Minions have (5-10)% chance to Freeze, Shock and Ignite" }, } }, - ["NonChilledEnemiesBleedAndChillUnique__1_"] = { affix = "", "Non-Chilled Enemies you inflict Bleeding on are Chilled", statOrder = { 9490 }, level = 1, group = "NonChilledEnemiesBleedAndChill", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [398940995] = { "Non-Chilled Enemies you inflict Bleeding on are Chilled" }, } }, - ["ChilledWhileBleedingUnique__1_"] = { affix = "", "You are Chilled while you are Bleeding", statOrder = { 5775 }, level = 1, group = "ChilledWhileBleeding", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [67132951] = { "You are Chilled while you are Bleeding" }, } }, - ["BleedingEnemiesShatterOnKillUnique__1"] = { affix = "", "Bleeding Enemies you Kill with Hits Shatter", statOrder = { 9991 }, level = 1, group = "BleedingEnemiesShatterOnKill", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [881917501] = { "Bleeding Enemies you Kill with Hits Shatter" }, } }, - ["NonChilledEnemiesPoisonAndChillUnique__1"] = { affix = "", "Non-Chilled Enemies you Poison are Chilled", statOrder = { 9491 }, level = 1, group = "NonChilledEnemiesPoisonAndChill", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3998191356] = { "Non-Chilled Enemies you Poison are Chilled" }, } }, - ["ChilledWhilePoisonedUnique__1"] = { affix = "", "You are Chilled when you are Poisoned", statOrder = { 5776 }, level = 1, group = "ChilledWhilePoisoned", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1802660259] = { "You are Chilled when you are Poisoned" }, } }, - ["PoisonedEnemiesShatterOnKillUnique__1"] = { affix = "", "Poisoned Enemies you Kill with Hits Shatter", statOrder = { 9992 }, level = 1, group = "PoisonedEnemiesShatterOnKill", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3350228283] = { "Poisoned Enemies you Kill with Hits Shatter" }, } }, - ["DamagePerZombieUnique__1"] = { affix = "", "(5-8)% increased Damage per Raised Zombie", statOrder = { 6018 }, level = 1, group = "DamagePerZombie", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [3868443508] = { "(5-8)% increased Damage per Raised Zombie" }, } }, - ["ElementalDamageTakenPerZombieUnique__1"] = { affix = "", "1% less Elemental Damage taken per Raised Zombie", statOrder = { 6315 }, level = 1, group = "ElementalDamageTakenPerZombie", weightKey = { }, weightVal = { }, modTags = { "elemental" }, tradeHashes = { [512740886] = { "1% less Elemental Damage taken per Raised Zombie" }, } }, - ["LoseEnduranceChargeOnFortifyGainUnique__1"] = { affix = "", "(20-25)% chance to lose an Endurance Charge when you gain Fortification", statOrder = { 4395 }, level = 1, group = "LoseEnduranceChargeOnFortifyGain", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHashes = { [1087146228] = { "(20-25)% chance to lose an Endurance Charge when you gain Fortification" }, } }, - ["LoseFrenzyChargeOnTravelSkillUnique__1"] = { affix = "", "(20-25)% chance to lose a Frenzy Charge when you use a Travel Skill", statOrder = { 4394 }, level = 1, group = "LoseFrenzyChargeOnTravelSkill", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [445906009] = { "(20-25)% chance to lose a Frenzy Charge when you use a Travel Skill" }, } }, - ["LosePowerChargeOnElusiveGainUnique__1_"] = { affix = "", "(20-25)% chance to lose a Power Charge when you gain Elusive", statOrder = { 4396 }, level = 1, group = "LosePowerChargeOnElusiveGain", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [1819086604] = { "(20-25)% chance to lose a Power Charge when you gain Elusive" }, } }, - ["ElusiveBuffEffectPerPowerChargeUnique__1"] = { affix = "", "(7-10)% increased Effect of Elusive on you per Power Charge", statOrder = { 4393 }, level = 1, group = "ElusiveBuffEffectPerPowerCharge", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3545269928] = { "(7-10)% increased Effect of Elusive on you per Power Charge" }, } }, - ["TravelSkillCooldownRecoveryPerFrenzyChargeUnique__1"] = { affix = "", "(7-10)% increased Cooldown Recovery Rate of Travel Skills per Frenzy Charge", statOrder = { 4392 }, level = 1, group = "TravelSkillCooldownRecoveryPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3083201633] = { "(7-10)% increased Cooldown Recovery Rate of Travel Skills per Frenzy Charge" }, } }, - ["MaximumFortificationPerEnduranceChargeUnique__1"] = { affix = "", "+1 to maximum Fortification per Endurance Charge", statOrder = { 4391 }, level = 1, group = "MaximumFortificationPerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2032578228] = { "+1 to maximum Fortification per Endurance Charge" }, } }, - ["MaximumFrenzyChargesEqualToMaximumPowerChargesUnique__1"] = { affix = "", "Your Maximum Frenzy Charges is equal to your Maximum Power Charges", statOrder = { 1810 }, level = 75, group = "MaximumFrenzyChargesEqualToMaximumPowerCharges", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [2238831336] = { "Your Maximum Frenzy Charges is equal to your Maximum Power Charges" }, } }, - ["MaximumEnduranceChargesEqualToMaximumFrenzyChargesUnique__1"] = { affix = "", "Your Maximum Endurance Charges is equal to your Maximum Frenzy Charges", statOrder = { 1805 }, level = 75, group = "MaximumEnduranceChargesEqualToMaximumFrenzyCharges", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHashes = { [3443585706] = { "Your Maximum Endurance Charges is equal to your Maximum Frenzy Charges" }, } }, - ["MinionAttacksTauntOnHitChanceUnique__1"] = { affix = "", "Minions have 5% chance to Taunt on Hit with Attacks", statOrder = { 3431 }, level = 55, group = "MinionAttacksTauntOnHitChance", weightKey = { }, weightVal = { }, modTags = { "attack", "minion" }, tradeHashes = { [2911442053] = { "Minions have 5% chance to Taunt on Hit with Attacks" }, } }, - ["MinionCausticCloudOnDeathUnique__1_"] = { affix = "", "Your Minions spread Caustic Ground on Death, dealing 20% of their maximum Life as Chaos Damage per second", statOrder = { 3442 }, level = 1, group = "MinionCausticCloudOnDeath", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "minion" }, tradeHashes = { [688802590] = { "Your Minions spread Caustic Ground on Death, dealing 20% of their maximum Life as Chaos Damage per second" }, } }, - ["MinionBurningCloudOnDeathUnique__1"] = { affix = "", "Your Minions spread Burning Ground on Death, dealing 20% of their maximum Life as Fire Damage per second", statOrder = { 9305 }, level = 55, group = "MinionBurningCloudOnDeath", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "minion" }, tradeHashes = { [4099989681] = { "Your Minions spread Burning Ground on Death, dealing 20% of their maximum Life as Fire Damage per second" }, } }, - ["TotemReflectFireDamageUnique__1_"] = { affix = "", "Totems Reflect 100% of their maximum Life as Fire Damage to nearby Enemies when Hit", statOrder = { 3788 }, level = 1, group = "TotemReflectFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [1723061251] = { "Totems Reflect 100% of their maximum Life as Fire Damage to nearby Enemies when Hit" }, } }, - ["MinionAddedColdDamageUnique__1"] = { affix = "", "Minions deal (25-35) to (50-65) additional Cold Damage", statOrder = { 3770 }, level = 1, group = "MinionAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "minion" }, tradeHashes = { [3152982863] = { "Minions deal (25-35) to (50-65) additional Cold Damage" }, } }, - ["MineDamageLeechedToYouUnique__1"] = { affix = "", "1% of Damage dealt by your Mines is Leeched to you as Life", statOrder = { 4236 }, level = 1, group = "MineDamageLeechedToYou", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [807450540] = { "1% of Damage dealt by your Mines is Leeched to you as Life" }, } }, - ["LifeEnergyShieldRecoveryRateUnique__1"] = { affix = "", "(20-30)% reduced Recovery rate of Life and Energy Shield", statOrder = { 7341 }, level = 1, group = "LifeEnergyShieldRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "defences", "energy_shield" }, tradeHashes = { [1092546321] = { "(20-30)% reduced Recovery rate of Life and Energy Shield" }, } }, - ["LifeAndEnergyShieldRecoveryRatePerPowerChargeUnique__1"] = { affix = "", "5% increased Recovery rate of Life and Energy Shield per Power Charge", statOrder = { 7344 }, level = 1, group = "LifeAndEnergyShieldRecoveryRatePerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "defences", "energy_shield" }, tradeHashes = { [604671218] = { "5% increased Recovery rate of Life and Energy Shield per Power Charge" }, } }, - ["LosePowerChargeIfNotDetonatedRecentlyUnique__1"] = { affix = "", "Lose a Power Charge each second if you have not Detonated Mines Recently", statOrder = { 8144 }, level = 1, group = "LosePowerChargeIfNotDetonatedRecently", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [3530865840] = { "Lose a Power Charge each second if you have not Detonated Mines Recently" }, } }, - ["NotablesGrantMinionDamageTakenUnique__1_"] = { affix = "", "Notable Passive Skills in Radius are Transformed to", "instead grant: Minions take 20% increased Damage", statOrder = { 10763, 10763.1 }, level = 1, group = "NotablesGrantMinionDamageTaken", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [3802517517] = { "" }, [3659983276] = { "Notable Passive Skills in Radius are Transformed to", "instead grant: Minions take 20% increased Damage" }, } }, - ["NotablesGrantMinionMovementSpeedUnique__1_"] = { affix = "", "Notable Passive Skills in Radius are Transformed to", "instead grant: Minions have 25% reduced Movement Speed", statOrder = { 10764, 10764.1 }, level = 1, group = "NotablesGrantMinionMovementSpeed", weightKey = { }, weightVal = { }, modTags = { "speed", "minion" }, tradeHashes = { [3802517517] = { "" }, [3362879252] = { "Notable Passive Skills in Radius are Transformed to", "instead grant: Minions have 25% reduced Movement Speed" }, } }, - ["PassivesGrantTrapMineAddedPhysicalUnique__1_"] = { affix = "", "Passive Skills in Radius also grant: Traps and Mines deal (2-3) to (4-6) added Physical Damage", statOrder = { 10765 }, level = 1, group = "PassivesGrantTrapMineAddedPhysical", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3802517517] = { "" }, [576760472] = { "Passive Skills in Radius also grant: Traps and Mines deal (2-3) to (4-6) added Physical Damage" }, } }, - ["PassivesGrantUnarmedAttackSpeedUnique__1_"] = { affix = "", "Passive Skills in Radius also grant: 1% increased Unarmed Attack Speed with Melee Skills", statOrder = { 8117 }, level = 1, group = "PassivesGrantUnarmedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [3802517517] = { "" }, [3087912144] = { "Passive Skills in Radius also grant: 1% increased Unarmed Attack Speed with Melee Skills" }, } }, - ["MovementVelocityOverrideUnique__1"] = { affix = "", "Your Movement Speed is 150% of its base value", statOrder = { 9416 }, level = 1, group = "MovementVelocityOverride", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [3945685369] = { "Your Movement Speed is 150% of its base value" }, } }, - ["TravelSkillCooldownRecoveryUnique__1_"] = { affix = "", "(50-80)% increased Cooldown Recovery Rate of Travel Skills", statOrder = { 4381 }, level = 1, group = "TravelSkillCooldownRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2308278768] = { "(50-80)% increased Cooldown Recovery Rate of Travel Skills" }, } }, - ["DamageRemovedFromSpectresUnique__1"] = { affix = "", "10% of Damage from Hits is taken from your Raised Spectres' Life before you", statOrder = { 6092 }, level = 1, group = "DamageRemovedFromSpectres", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [54812069] = { "10% of Damage from Hits is taken from your Raised Spectres' Life before you" }, } }, - ["MinionElementalDamageAddedAsChaosUnique__1"] = { affix = "", "Minions gain (15-20)% of Elemental Damage as Extra Chaos Damage", statOrder = { 9301 }, level = 1, group = "MinionElementalDamageAddedAsChaos", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "chaos", "minion" }, tradeHashes = { [247168950] = { "Minions gain (15-20)% of Elemental Damage as Extra Chaos Damage" }, } }, - ["LifeRegenerationPerZombieUnique__1"] = { affix = "", "Regenerate 0.6% of Life per second for each Raised Zombie", statOrder = { 7423 }, level = 1, group = "LifeRegenerationPerZombie", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2841618445] = { "Regenerate 0.6% of Life per second for each Raised Zombie" }, } }, - ["ManaRegenerationPerSpectreUnique__1"] = { affix = "", "30% increased Mana Regeneration Rate per Raised Spectre", statOrder = { 8211 }, level = 1, group = "ManaRegenerationPerSpectre", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2666795121] = { "30% increased Mana Regeneration Rate per Raised Spectre" }, } }, - ["AttackBlockPerSkeletonUnique__1"] = { affix = "", "+1% Chance to Block Attack Damage per Summoned Skeleton", statOrder = { 4539 }, level = 1, group = "AttackBlockPerSkeleton", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2445675562] = { "+1% Chance to Block Attack Damage per Summoned Skeleton" }, } }, - ["AttackAndCastSpeedPerRagingSpiritUnique__1"] = { affix = "", "2% increased Attack and Cast Speed per Summoned Raging Spirit", statOrder = { 4819 }, level = 1, group = "AttackAndCastSpeedPerRagingSpirit", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed" }, tradeHashes = { [3133579934] = { "2% increased Attack and Cast Speed per Summoned Raging Spirit" }, } }, - ["SupportedByMeatShieldUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 1 Meat Shield", statOrder = { 334 }, level = 1, group = "SupportedByMeatShield", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [858460086] = { "Socketed Gems are Supported by Level 1 Meat Shield" }, } }, - ["ReviveEnemiesOnKillUnique__1"] = { affix = "", "Create a Blighted Spore when your Skills or Minions Kill a Rare Monster", statOrder = { 5902 }, level = 1, group = "ReviveEnemiesOnKill", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2485187927] = { "Create a Blighted Spore when your Skills or Minions Kill a Rare Monster" }, } }, - ["FireResistanceOverrideUnique__1__"] = { affix = "", "Fire Resistance is 75%", statOrder = { 1624 }, level = 1, group = "FireResistanceOverride", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [763311546] = { "Fire Resistance is 75%" }, } }, - ["ColdResistanceOverrideUnique__1"] = { affix = "", "Cold Resistance is 75%", statOrder = { 1630 }, level = 1, group = "ColdResistanceOverride", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [496075050] = { "Cold Resistance is 75%" }, } }, - ["LightningResistanceOverrideUnique__1_"] = { affix = "", "Lightning Resistance is 75%", statOrder = { 1635 }, level = 1, group = "LightningResistanceOverride", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1942151132] = { "Lightning Resistance is 75%" }, } }, - ["ReducedFireResistanceUnique__1"] = { affix = "", "(50-55)% reduced Fire Resistance", statOrder = { 1628 }, level = 1, group = "IncreasedFireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [1680060098] = { "(50-55)% reduced Fire Resistance" }, } }, - ["ReducedColdResistanceUnique__1"] = { affix = "", "(50-55)% reduced Cold Resistance", statOrder = { 1633 }, level = 1, group = "IncreasedColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4252311791] = { "(50-55)% reduced Cold Resistance" }, } }, - ["ReducedLightningResistanceUnique__1"] = { affix = "", "(50-55)% reduced Lightning Resistance", statOrder = { 1639 }, level = 1, group = "IncreasedLightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [2249211872] = { "(50-55)% reduced Lightning Resistance" }, } }, - ["ManaRegenerationRateWhileMovingUnique__1"] = { affix = "", "(30-40)% increased Mana Regeneration Rate while moving", statOrder = { 8212 }, level = 1, group = "ManaRegenerationRateWhileMoving", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1327522346] = { "(30-40)% increased Mana Regeneration Rate while moving" }, } }, - ["FungalAroundWhenStationaryUnique__1_"] = { affix = "", "You have Fungal Ground around you while stationary", statOrder = { 6695 }, level = 1, group = "FungalAroundWhenStationary", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [799872465] = { "You have Fungal Ground around you while stationary" }, } }, - ["TriggerFungalGroundOnKillUnique__1_"] = { affix = "", "Trigger Level 10 Contaminate when you Kill an Enemy", statOrder = { 788 }, level = 1, group = "TriggerFungalGroundOnKill", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3159312340] = { "Trigger Level 10 Contaminate when you Kill an Enemy" }, } }, - ["EnemiesOnFungalGroundExplodeUnique__1"] = { affix = "", "Enemies on Fungal Ground you Kill Explode, dealing 10% of their Life as Chaos Damage", statOrder = { 6386 }, level = 1, group = "EnemiesOnFungalGroundExplode", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [2224428651] = { "Enemies on Fungal Ground you Kill Explode, dealing 10% of their Life as Chaos Damage" }, } }, - ["FrostblinkDurationUnique__1_"] = { affix = "", "Frostblink has 50% increased Duration", statOrder = { 7188 }, level = 1, group = "FrostblinkDuration", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHashes = { [3941271999] = { "Frostblink has 50% increased Duration" }, } }, - ["GrantsFrostblinkSkillUnique__1"] = { affix = "", "Grants Level 10 Frostblink Skill", statOrder = { 622 }, level = 1, group = "GrantsFrostblinkSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [2911866787] = { "Grants Level 10 Frostblink Skill" }, } }, - ["AttackSkillsHavePhysToExtraFireDamagePerSocketedRedGemUniqueTwoHandSword8"] = { affix = "", "Attack Skills gain 5% of Physical Damage as Extra Fire Damage per Socketed Red Gem", statOrder = { 2715 }, level = 1, group = "AttackSkillsHavePhysToExtraFireDamagePerSocketedRedGem", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire", "attack", "gem" }, tradeHashes = { [1302700515] = { "Attack Skills gain 5% of Physical Damage as Extra Fire Damage per Socketed Red Gem" }, } }, - ["VaalPactIfAllSocketedGemsAreRedUniqueTwoHandSword8"] = { affix = "", "You have Vaal Pact while all Socketed Gems are Red", statOrder = { 10838 }, level = 1, group = "VaalPactIfAllSocketedGemsAreRed", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "gem" }, tradeHashes = { [3242537102] = { "You have Vaal Pact while all Socketed Gems are Red" }, } }, - ["MultipleEnchantmentsAllowedUnique__1"] = { affix = "", "Can have a second Enchantment Modifier", statOrder = { 13 }, level = 1, group = "MultipleEnchantmentsAllowed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1135194732] = { "Can have a second Enchantment Modifier" }, } }, - ["MultipleEnchantmentsAllowedUnique__2"] = { affix = "", "Can have 3 additional Enchantment Modifiers", statOrder = { 13 }, level = 65, group = "MultipleEnchantmentsAllowed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1135194732] = { "Can have 3 additional Enchantment Modifiers" }, } }, - ["AdditionalProjectilesUnique__1__"] = { affix = "", "Skills fire 2 additional Projectiles", statOrder = { 1792 }, level = 1, group = "AdditionalProjectiles", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [74338099] = { "Skills fire 2 additional Projectiles" }, } }, - ["ProjectileModifiersApplyToSplitsUnique__1"] = { affix = "", "Modifiers to number of Projectiles instead apply", "to the number of targets Projectiles Split towards", statOrder = { 9387, 9387.1 }, level = 50, group = "ProjectileModifiersApplyToSplits", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2057712935] = { "Modifiers to number of Projectiles instead apply", "to the number of targets Projectiles Split towards" }, } }, - ["MaximumLifeManaEnergyShieldUnique__1"] = { affix = "", "(9-21)% increased maximum Life, Mana and Global Energy Shield", statOrder = { 1570 }, level = 1, group = "MaximumLifeManaEnergyShield", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana", "defences", "energy_shield" }, tradeHashes = { [3899352861] = { "(9-21)% increased maximum Life, Mana and Global Energy Shield" }, } }, - ["TransfigurationOfBodyUnique__1"] = { affix = "", "Transfiguration of Body", statOrder = { 4601 }, level = 1, group = "TransfigurationOfBody", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [881645355] = { "Transfiguration of Body" }, } }, - ["TransfigurationOfMindUnique__1"] = { affix = "", "Transfiguration of Mind", statOrder = { 4603 }, level = 1, group = "TransfigurationOfMind", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2571899044] = { "Transfiguration of Mind" }, } }, - ["TransfigurationOfSoulUnique__1_"] = { affix = "", "Transfiguration of Soul", statOrder = { 4597 }, level = 1, group = "TransfigurationOfSoul", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [3268519799] = { "Transfiguration of Soul" }, } }, - ["MaximumEnergyShieldPerReservedLifeUnique__1"] = { affix = "", "+30 to maximum Energy Shield per 100 Reserved Life", statOrder = { 1566 }, level = 1, group = "MaximumEnergyShieldPerReservedLife", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4270089231] = { "+30 to maximum Energy Shield per 100 Reserved Life" }, } }, - ["ChaosDamageRemovedFromManaBeforeLifeUnique__1___"] = { affix = "", "Chaos Damage is taken from Mana before Life", statOrder = { 5736 }, level = 1, group = "ChaosDamageRemovedFromManaBeforeLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana", "chaos" }, tradeHashes = { [3967028570] = { "Chaos Damage is taken from Mana before Life" }, } }, - ["DrainAllManaLightningDamageUnique__1"] = { affix = "", "When you Cast a Spell, Sacrifice all Mana to gain Added Maximum Lightning Damage", "equal to 50% of Sacrificed Mana for 4 seconds", statOrder = { 9556, 9556.1 }, level = 1, group = "DrainAllManaLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "resource", "mana", "damage", "elemental", "lightning" }, tradeHashes = { [820827484] = { "When you Cast a Spell, Sacrifice all Mana to gain Added Maximum Lightning Damage", "equal to 50% of Sacrificed Mana for 4 seconds" }, } }, - ["MultipleOfferingsAllowedUnique__1_"] = { affix = "", "You can have an Offering of each type", statOrder = { 4638 }, level = 62, group = "MultipleOfferingsAllowed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [230941555] = { "You can have an Offering of each type" }, } }, - ["OfferingDurationUnique__1"] = { affix = "", "Offering Skills have 50% reduced Duration", statOrder = { 9553 }, level = 1, group = "OfferingDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2957407601] = { "Offering Skills have 50% reduced Duration" }, } }, - ["MaximumBlockChanceIfNotBlockedRecentlyUnique__1"] = { affix = "", "You are at Maximum Chance to Block Attack Damage if you have not Blocked Recently", statOrder = { 9117 }, level = 1, group = "MaximumBlockChanceIfNotBlockedRecently", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2584264074] = { "You are at Maximum Chance to Block Attack Damage if you have not Blocked Recently" }, } }, - ["PhasingIfBlockedRecentlyUnique__1"] = { affix = "", "You have Phasing if you have Blocked Recently", statOrder = { 9617 }, level = 1, group = "PhasingIfBlockedRecently", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3492654051] = { "You have Phasing if you have Blocked Recently" }, } }, - ["AvoidElementalDamagePhasingUnique__1"] = { affix = "", "+(8-15)% chance to Avoid Elemental Damage from Hits while Phasing", statOrder = { 4944 }, level = 1, group = "AvoidElementalDamagePhasing", weightKey = { }, weightVal = { }, modTags = { "elemental" }, tradeHashes = { [143510471] = { "+(8-15)% chance to Avoid Elemental Damage from Hits while Phasing" }, } }, - ["ApplyAilmentsMoreDamageUnique__1"] = { affix = "", "Inflict non-Damaging Ailments as though dealing (100-200)% more Damage", statOrder = { 9505 }, level = 1, group = "ApplyAilmentsMoreDamage", weightKey = { }, weightVal = { }, modTags = { "ailment" }, tradeHashes = { [1345113611] = { "Inflict non-Damaging Ailments as though dealing (100-200)% more Damage" }, } }, - ["CriticalStrikesNotAlwaysApplyAilmentsUnique__1"] = { affix = "", "Critical Strikes do not inherently inflict non-Damaging Ailments", statOrder = { 5980 }, level = 1, group = "CriticalStrikesNotAlwaysApplyAilments", weightKey = { }, weightVal = { }, modTags = { "critical", "ailment" }, tradeHashes = { [249545292] = { "Critical Strikes do not inherently inflict non-Damaging Ailments" }, } }, - ["PermanentPhantasmUnique__1"] = { affix = "", "Summoned Phantasms have no Duration", statOrder = { 10306 }, level = 1, group = "PermanentPhantasm", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [1994138363] = { "Summoned Phantasms have no Duration" }, } }, - ["PhantasmGrantsBuffUnique__1"] = { affix = "", "Each Summoned Phantasm grants you Phantasmal Might", statOrder = { 10305 }, level = 1, group = "PhantasmGrantsBuff", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [943553365] = { "Each Summoned Phantasm grants you Phantasmal Might" }, } }, - ["CorruptUntilFiveImplicits"] = { affix = "", "Can be modified while Corrupted", "Can have up to 5 Implicit Modifiers while Item has this Modifier", statOrder = { 11, 14 }, level = 1, group = "ModifyableWhileCorrupted", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1161341806] = { "Can have up to 5 Implicit Modifiers while Item has this Modifier" }, [1161337167] = { "Can be modified while Corrupted" }, } }, - ["ModifyableWhileCorruptedUnique__1"] = { affix = "", "Can be modified while Corrupted", statOrder = { 11 }, level = 1, group = "ModifyableWhileCorruptedAndSpecialCorruption", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1161337167] = { "Can be modified while Corrupted" }, } }, - ["MinionsUseFlaskOnSummonUnique__1__"] = { affix = "", "Your Minions use your Flasks when summoned", statOrder = { 2182 }, level = 50, group = "MinionsUseFlaskOnSummon", weightKey = { }, weightVal = { }, modTags = { "flask", "minion" }, tradeHashes = { [1827636152] = { "Your Minions use your Flasks when summoned" }, } }, - ["MinionFlaskChargesUsedUnique__1"] = { affix = "", "Minions have (25-40)% reduced Flask Charges used", statOrder = { 2186 }, level = 1, group = "MinionFlaskChargesUsed", weightKey = { }, weightVal = { }, modTags = { "flask", "minion" }, tradeHashes = { [180240697] = { "Minions have (25-40)% reduced Flask Charges used" }, } }, - ["MinionFlaskDurationUnique__1"] = { affix = "", "Minions have (50-80)% increased Flask Effect Duration", statOrder = { 2188 }, level = 1, group = "MinionFlaskDuration", weightKey = { }, weightVal = { }, modTags = { "flask", "minion" }, tradeHashes = { [1932583315] = { "Minions have (50-80)% increased Flask Effect Duration" }, } }, - ["StrikeSkillMemoryUseUnique__1_______"] = { affix = "", "Strike Skills also target the previous location they were used", statOrder = { 9212 }, level = 50, group = "StrikeSkillMemory", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [719626796] = { "Strike Skills also target the previous location they were used" }, } }, - ["NovaSkillsTargetLocationUnique__1__"] = { affix = "", "Nova Spells Cast at the targeted location instead of around you", statOrder = { 9516 }, level = 50, group = "NovaSkillsTargetLocation", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHashes = { [728246008] = { "Nova Spells Cast at the targeted location instead of around you" }, } }, - ["AttackAndCastSpeedFortifyUnique__1"] = { affix = "", "(15-25)% increased Attack and Cast Speed while at maximum Fortification", statOrder = { 2268 }, level = 1, group = "AttackAndCastSpeedFortify", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed" }, tradeHashes = { [1473444150] = { "(15-25)% increased Attack and Cast Speed while at maximum Fortification" }, } }, - ["AlternateFortifyUnique__1_"] = { affix = "", "You do not inherently take less Damage for having Fortification", "+4% chance to Suppress Spell Damage per Fortification", statOrder = { 2266, 2267 }, level = 65, group = "AlternateFortify", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3560157887] = { "You do not inherently take less Damage for having Fortification" }, [2731261141] = { "+4% chance to Suppress Spell Damage per Fortification" }, } }, - ["MapAreaContainsExiles__"] = { affix = "", "Area is inhabited by 10 additional Rogue Exiles", statOrder = { 2333 }, level = 1, group = "MapAreaContainsExiles", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3550168289] = { "Area is inhabited by 10 additional Rogue Exiles" }, } }, - ["SummonDoubleOnCritUnique__1"] = { affix = "", "Triggers Level 20 Reflection when Equipped", statOrder = { 814 }, level = 1, group = "SummonDoubleOnCrit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [768430540] = { "" }, [3451043685] = { "Triggers Level 20 Reflection when Equipped" }, } }, - ["FireExposureOnHitUnique__1"] = { affix = "", "25% chance to inflict Fire Exposure on Hit", statOrder = { 5027 }, level = 1, group = "FireExposureOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3602667353] = { "25% chance to inflict Fire Exposure on Hit" }, } }, - ["ColdExposureOnHitUnique__1"] = { affix = "", "25% chance to inflict Cold Exposure on Hit", statOrder = { 5026 }, level = 1, group = "ColdExposureOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2630708439] = { "25% chance to inflict Cold Exposure on Hit" }, } }, - ["NearbyEnemiesIncreasedFireColdResistUnique__1_"] = { affix = "", "Nearby Enemies have 50% increased Fire and Cold Resistances", statOrder = { 7892 }, level = 1, group = "NearbyEnemiesIncreasedFireColdResist", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "cold" }, tradeHashes = { [4273356746] = { "Nearby Enemies have 50% increased Fire and Cold Resistances" }, [4252311791] = { "50% increased Cold Resistance" }, [1680060098] = { "50% increased Fire Resistance" }, } }, - ["MetamorphosisItemisedBossDifficult"] = { affix = "", "50% more Life", "50% more Damage", statOrder = { 5262, 6257 }, level = 1, group = "MetamorphosisItemisedBossDifficult", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2692483763] = { "50% more Life" }, [1724092423] = { "50% more Damage" }, } }, - ["ChanceToImpaleUnique__1"] = { affix = "", "10% chance to Impale Enemies on Hit with Attacks", statOrder = { 4918 }, level = 1, group = "AttackImpaleChance", weightKey = { }, weightVal = { }, modTags = { "physical", "attack" }, tradeHashes = { [3739863694] = { "10% chance to Impale Enemies on Hit with Attacks" }, } }, - ["MapAddsExtraSynthesisMods"] = { affix = "", "Map has (3-5) additional random Modifiers", statOrder = { 8236 }, level = 1, group = "MapAddsExtraSynthesisMods", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4003278965] = { "Map has (3-5) additional random Modifiers" }, } }, - ["MapAddsExtraSynthesisModsCortexReplica"] = { affix = "", "Map has (6-8) additional random Modifiers", statOrder = { 8236 }, level = 1, group = "MapAddsExtraSynthesisMods", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4003278965] = { "Map has (6-8) additional random Modifiers" }, } }, - ["MapAddsExtraSynthesisSpecialMods"] = { affix = "", "Map has (2-4) additional Synthesis Global Modifiers", statOrder = { 8237 }, level = 1, group = "MapAddsExtraSynthesisSpecialMods", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2132807290] = { "Map has (2-4) additional Synthesis Global Modifiers" }, } }, - ["MapAddsExtraSynthesisSpecialModsCortex"] = { affix = "", "Map has (4-6) additional Synthesis Global Modifiers", statOrder = { 8237 }, level = 1, group = "MapAddsExtraSynthesisSpecialMods", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2132807290] = { "Map has (4-6) additional Synthesis Global Modifiers" }, } }, - ["MapAddsExtraSynthesisSpecialModsCortexReplica"] = { affix = "", "Map has (4-6) additional Synthesis Global Modifiers", statOrder = { 8237 }, level = 1, group = "MapAddsExtraSynthesisSpecialMods", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2132807290] = { "Map has (4-6) additional Synthesis Global Modifiers" }, } }, - ["NovaSpellsAreaOfEffectUnique__1"] = { affix = "", "Nova Spells have 20% less Area of Effect", statOrder = { 8015 }, level = 50, group = "NovaSpellsAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHashes = { [200113086] = { "Nova Spells have 20% less Area of Effect" }, } }, - ["RingAttackSpeedUnique__1"] = { affix = "", "20% less Attack Speed", statOrder = { 8012 }, level = 1, group = "RingAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [2418322751] = { "20% less Attack Speed" }, } }, - ["IncreasedAilmentEffectOnEnemiesUnique__1"] = { affix = "", "(15-20)% increased Effect of Non-Damaging Ailments", statOrder = { 9500 }, level = 1, group = "IncreasedAilmentEffectOnEnemies", weightKey = { }, weightVal = { }, modTags = { "ailment" }, tradeHashes = { [782230869] = { "(15-20)% increased Effect of Non-Damaging Ailments" }, } }, - ["IncreasedAilmentEffectOnEnemiesUnique_2"] = { affix = "", "(20-40)% increased Effect of Non-Damaging Ailments", statOrder = { 9500 }, level = 1, group = "IncreasedAilmentEffectOnEnemies", weightKey = { }, weightVal = { }, modTags = { "ailment" }, tradeHashes = { [782230869] = { "(20-40)% increased Effect of Non-Damaging Ailments" }, } }, - ["ChillingAreasAlsoGrantLightningDamageTakenUnique__1"] = { affix = "", "Enemies in your Chilling Areas take (25-35)% increased Lightning Damage", statOrder = { 5778 }, level = 1, group = "ChillingAreasAlsoGrantLightningDamageTaken", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [3923274300] = { "Enemies in your Chilling Areas take (25-35)% increased Lightning Damage" }, } }, - ["ChanceToSapVsEnemiesInChillingAreasUnique__1"] = { affix = "", "(20-30)% chance to Sap Enemies in Chilling Areas", statOrder = { 5720 }, level = 1, group = "ChanceToSapVsEnemiesInChillingAreas", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3057853352] = { "(20-30)% chance to Sap Enemies in Chilling Areas" }, } }, - ["Allow2ActiveBannersUnique__1"] = { affix = "", "Having a placed Banner does not prevent you gaining Valour", statOrder = { 1137 }, level = 1, group = "Allow2ActiveBanners", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2175510000] = { "Having a placed Banner does not prevent you gaining Valour" }, } }, - ["AdditionalMaxStackSnipeUnique"] = { affix = "", "+2 to maximum Snipe Stages", statOrder = { 10089 }, level = 1, group = "AdditionanalMaxStackSnipeUnique", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [3821882617] = { "+2 to maximum Snipe Stages" }, } }, - ["GrantsHighLevelSnipeUnique__1"] = { affix = "", "Grants Level 30 Snipe Skill", statOrder = { 59 }, level = 1, group = "GrantsSnipeSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [2343098806] = { "Grants Level 30 Snipe Skill" }, } }, - ["GrantsHighLevelSnipeSupportUnique__1"] = { affix = "", "Socketed Non-Channelling Bow Skills are Triggered by Snipe", "Socketed Triggered Bow Skills gain a 0.05 second Cooldown", statOrder = { 378, 378.1 }, level = 1, group = "GrantsSnipeSkillSupport", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [3282302743] = { "Socketed Non-Channelling Bow Skills are Triggered by Snipe", "Socketed Triggered Bow Skills gain a 0.05 second Cooldown" }, } }, - ["ChanceToDodgeAttacksWhileChannellingUnique__1"] = { affix = "", "+(7-10)% chance to Suppress Spell Damage while Channelling", statOrder = { 10177 }, level = 1, group = "ChanceToDodgeSpellsWhileChannelling", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4108186648] = { "+(7-10)% chance to Suppress Spell Damage while Channelling" }, } }, - ["ChanceToDodgeSpellsWhileChannellingUnique__1"] = { affix = "", "+(7-10)% chance to Suppress Spell Damage while Channelling", statOrder = { 10177 }, level = 1, group = "ChanceToDodgeSpellsWhileChannelling", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4108186648] = { "+(7-10)% chance to Suppress Spell Damage while Channelling" }, } }, - ["ChanceToSuppressSpellsWhileChannellingUnique__1____"] = { affix = "", "+(14-20)% chance to Suppress Spell Damage while Channelling", statOrder = { 10177 }, level = 1, group = "ChanceToDodgeSpellsWhileChannelling", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4108186648] = { "+(14-20)% chance to Suppress Spell Damage while Channelling" }, } }, - ["SupportSkitterBotAilmentAuraReplaceWithCurse____1"] = { affix = "", "Left Ring Slot: Your Chilling Skitterbot's Aura applies Socketed Hex Curse instead", "Right Ring Slot: Your Shocking Skitterbot's Aura applies Socketed Hex Curse instead", statOrder = { 7984, 8011 }, level = 65, group = "UniqueReplaceSkitterbotAilmentAura", weightKey = { }, weightVal = { }, modTags = { "caster", "minion", "curse" }, tradeHashes = { [1809329372] = { "Right Ring Slot: Your Shocking Skitterbot's Aura applies Socketed Hex Curse instead" }, [625885138] = { "Left Ring Slot: Your Chilling Skitterbot's Aura applies Socketed Hex Curse instead" }, } }, - ["AttackLightningDamageMaximumManaUnique__1__"] = { affix = "", "Attack Skills have Added Lightning Damage equal to 6% of maximum Mana", statOrder = { 4885 }, level = 1, group = "AttackLightningDamageMaximumMana", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [2778228111] = { "Attack Skills have Added Lightning Damage equal to 6% of maximum Mana" }, } }, - ["LoseManaOnAttackSkillUnique__1"] = { affix = "", "Lose 3% of Mana when you use an Attack Skill", statOrder = { 8143 }, level = 1, group = "LoseManaOnAttackSkill", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "attack" }, tradeHashes = { [113147867] = { "Lose 3% of Mana when you use an Attack Skill" }, } }, - ["EnemiesExplodeOnDeathChaosGloriousMadnessUnique1"] = { affix = "", "Enemies you Kill while affected by Glorious Madness have a 40% chance to Explode, dealing a quarter of their Life as Chaos Damage", statOrder = { 10706 }, level = 1, group = "EnemiesExplodeOnDeathChaosGloriousMadness", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [2780297117] = { "Enemies you Kill while affected by Glorious Madness have a 40% chance to Explode, dealing a quarter of their Life as Chaos Damage" }, } }, - ["AllDamageCanPoisonGloriousMadnessUnique___1"] = { affix = "", "All Damage inflicts Poison while affected by Glorious Madness", statOrder = { 10702 }, level = 1, group = "AllDamageCanPoisonGloriousMadness", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [3359218839] = { "All Damage inflicts Poison while affected by Glorious Madness" }, } }, - ["SpellBlockWhileInOffHandUnique_1"] = { affix = "", "+(30-45)% Chance to Block Spell Damage while in Off Hand", statOrder = { 1161 }, level = 1, group = "SpellBlockWhileInOffHand", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2040964235] = { "+(30-45)% Chance to Block Spell Damage while in Off Hand" }, } }, - ["AllDamageFromTriggeredSpellsCanPoisonUnique_1"] = { affix = "", "All Damage with Triggered Spells can Poison", statOrder = { 10434 }, level = 85, group = "AllDamageFromTriggeredSpellsCanPoison", weightKey = { }, weightVal = { }, modTags = { "caster", "ailment" }, tradeHashes = { [373509484] = { "All Damage with Triggered Spells can Poison" }, } }, - ["TriggeredSpellsPoisonOnHitUnique_1"] = { affix = "", "Triggered Spells Poison on Hit", statOrder = { 10433 }, level = 1, group = "TriggeredSpellsPoisonOnHit", weightKey = { }, weightVal = { }, modTags = { "caster", "ailment" }, tradeHashes = { [3484434547] = { "Triggered Spells Poison on Hit" }, } }, - ["SupportVirulenceSpellsCastOnBlockUnique_1"] = { affix = "", "Trigger a Socketed Spell when you Block, with a 0.25 second Cooldown", statOrder = { 828 }, level = 1, group = "CastSocketedSpellsOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "caster" }, tradeHashes = { [1565744562] = { "Trigger a Socketed Spell when you Block, with a 0.25 second Cooldown" }, } }, - ["FortifyEffectSelfGloriousMadnessUnique1"] = { affix = "", "+60 to maximum Fortification while affected by Glorious Madness", statOrder = { 10719 }, level = 1, group = "FortifyEffectSelfGloriousMadness", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2611224062] = { "+60 to maximum Fortification while affected by Glorious Madness" }, } }, - ["DoubleDamageChanceGloriousMadnessUnique_1"] = { affix = "", "20% chance to deal Double Damage while affected by Glorious Madness", statOrder = { 10703 }, level = 1, group = "DoubleDamageChanceGloriousMadness", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [1299868012] = { "20% chance to deal Double Damage while affected by Glorious Madness" }, } }, - ["ElementalConfluxesGloriousMadnessUnique1"] = { affix = "", "You have Igniting, Chilling and Shocking Conflux while affected by Glorious Madness", statOrder = { 10708 }, level = 1, group = "ElementalConfluxesGloriousMadness", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3909952544] = { "You have Igniting, Chilling and Shocking Conflux while affected by Glorious Madness" }, } }, - ["ElementalAilmentImmunityGloriousMadnessUnique1"] = { affix = "", "Immune to Elemental Ailments while affected by Glorious Madness", statOrder = { 10710 }, level = 1, group = "ElementalAilmentImmunityGloriousMadness", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [1065479853] = { "Immune to Elemental Ailments while affected by Glorious Madness" }, } }, - ["MovementSpeedUnique_42"] = { affix = "", "30% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "30% increased Movement Speed" }, } }, - ["GrantEmbraceMadnessSkillUnique1"] = { affix = "", "Grants Level 1 Embrace Madness Skill", statOrder = { 701 }, level = 1, group = "GrantEmbraceMadnessSkillDisplay", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [1749783861] = { "Grants Level 1 Embrace Madness Skill" }, } }, - ["AttackSpeedAfterSavageHitTakenUnique__1"] = { affix = "", "40% increased Attack Speed if you've taken a Savage Hit Recently", statOrder = { 3447 }, level = 1, group = "AttackSpeedAfterSavageHitTaken", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [3842406602] = { "40% increased Attack Speed if you've taken a Savage Hit Recently" }, } }, - ["FrenzyChargeOnCritCloseRangeUnique__1"] = { affix = "", "(20-30)% chance to gain a Frenzy Charge on Critical Strike at Close Range", statOrder = { 6755 }, level = 1, group = "FrenzyChargeOnCritCloseRange", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge", "critical" }, tradeHashes = { [911695185] = { "(20-30)% chance to gain a Frenzy Charge on Critical Strike at Close Range" }, } }, - ["BleedDotMultiplierPerFrenzyChargeUnique__1_"] = { affix = "", "+4% to Damage over Time Multiplier for Bleeding per Frenzy Charge", statOrder = { 5106 }, level = 1, group = "BleedDotMultiplierPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, tradeHashes = { [2583415204] = { "+4% to Damage over Time Multiplier for Bleeding per Frenzy Charge" }, } }, - ["FasterBleedPerFrenzyChargeUnique__1"] = { affix = "", "Bleeding you inflict deals Damage 4% faster per Frenzy Charge", statOrder = { 6544 }, level = 1, group = "FasterBleedPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, tradeHashes = { [1670470989] = { "Bleeding you inflict deals Damage 4% faster per Frenzy Charge" }, } }, - ["CriticalBleedDotMultiplierUnique__1_"] = { affix = "", "+(60-80)% to Damage over Time Multiplier for Bleeding from Critical Strikes", statOrder = { 1249 }, level = 1, group = "CriticalBleedDotMultiplier", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, tradeHashes = { [1454648374] = { "+(60-80)% to Damage over Time Multiplier for Bleeding from Critical Strikes" }, } }, - ["BleedDotMultiplier2HImplicit1"] = { affix = "", "+20% to Damage over Time Multiplier for Bleeding", statOrder = { 1248 }, level = 1, group = "BleedDotMultiplier", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, tradeHashes = { [1423749435] = { "+20% to Damage over Time Multiplier for Bleeding" }, } }, - ["LocalWitherOnHitChanceUnique__2"] = { affix = "", "Inflict Withered for 2 seconds on Hit with this Weapon", statOrder = { 4411 }, level = 1, group = "LocalWitherOnHitChance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1226121733] = { "Inflict Withered for 2 seconds on Hit with this Weapon" }, } }, - ["WitherOnHitChanceUnique__1"] = { affix = "", "(20-25)% chance to inflict Withered for 2 seconds on Hit", statOrder = { 4397 }, level = 1, group = "WitherOnHitChance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1957711555] = { "(20-25)% chance to inflict Withered for 2 seconds on Hit" }, } }, - ["CannotPenetrateResistancesUnique__1"] = { affix = "", "Your Hits cannot Penetrate or ignore Elemental Resistances", statOrder = { 5440 }, level = 1, group = "CannotPenetrateResistances", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3091072796] = { "Your Hits cannot Penetrate or ignore Elemental Resistances" }, } }, - ["WitherGrantsElementalDamageTakenUnique__1__"] = { affix = "", "Enemies take 4% increased Elemental Damage from your Hits for", "each Withered you have inflicted on them", statOrder = { 4398, 4398.1 }, level = 1, group = "WitherGrantsElementalDamageTaken", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3507915723] = { "Enemies take 4% increased Elemental Damage from your Hits for", "each Withered you have inflicted on them" }, } }, - ["ActivateHeraldOfThunderOnShockUnique__1"] = { affix = "", "Herald of Thunder also creates a storm when you Shock an Enemy", statOrder = { 5907 }, level = 1, group = "ActivateHeraldOfThunderOnShock", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [278339309] = { "Herald of Thunder also creates a storm when you Shock an Enemy" }, } }, - ["TakeDamageWhenHeraldOfThunderHitsUnique__1__"] = { affix = "", "Take 250 Lightning Damage when Herald of Thunder Hits an Enemy", statOrder = { 10351 }, level = 1, group = "TakeDamageWhenHeraldOfThunderHits", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2007062029] = { "Take 250 Lightning Damage when Herald of Thunder Hits an Enemy" }, } }, - ["HeraldOfThunderBoltFrequencyUnique__1"] = { affix = "", "Herald of Thunder's Storms Hit Enemies with (30-50)% increased Frequency", statOrder = { 7125 }, level = 1, group = "HeraldOfThunderBoltFrequency", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [28299254] = { "Herald of Thunder's Storms Hit Enemies with (30-50)% increased Frequency" }, } }, - ["RagingSpiritFireSplashDamageUnique__1"] = { affix = "", "Summoned Raging Spirits' Melee Strikes deal Fire-only Splash", "Damage to Surrounding Targets", statOrder = { 10298, 10298.1 }, level = 1, group = "RagingSpiritSplashDamage", weightKey = { }, weightVal = { }, modTags = { "red_herring", "elemental", "fire", "minion" }, tradeHashes = { [221328679] = { "Summoned Raging Spirits' Melee Strikes deal Fire-only Splash", "Damage to Surrounding Targets" }, } }, - ["FragileRegrowthLifeRegenerationUnique__1"] = { affix = "", "Maximum 10 Fragile Regrowth", "0.7% of Life Regenerated per second per Fragile Regrowth", "Lose all Fragile Regrowth when Hit", "Gain 1 Fragile Regrowth each second", statOrder = { 4400, 4401, 4402, 6835 }, level = 1, group = "FragileRegrowthLifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [223497523] = { "" }, [1173537953] = { "Maximum 10 Fragile Regrowth" }, [3175722882] = { "0.7% of Life Regenerated per second per Fragile Regrowth" }, [1306791873] = { "Lose all Fragile Regrowth when Hit" }, [3841984913] = { "Gain 1 Fragile Regrowth each second" }, } }, - ["FragileRegrowthLifeRegenerationUnique__2_"] = { affix = "", "Maximum 5 Fragile Regrowth", "0.7% of Life Regenerated per second per Fragile Regrowth", "Gain up to maximum Fragile Regrowth when Hit", "Lose 1 Fragile Regrowth each second", statOrder = { 4400, 4401, 6827, 6835 }, level = 1, group = "FragileRegrowthLifeRegenerationReverse", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2796308895] = { "Gain up to maximum Fragile Regrowth when Hit" }, [1173537953] = { "Maximum 5 Fragile Regrowth" }, [223497523] = { "" }, [3175722882] = { "0.7% of Life Regenerated per second per Fragile Regrowth" }, [3841984913] = { "Lose 1 Fragile Regrowth each second" }, } }, - ["MaximumESLeechAmountUnique__1_"] = { affix = "", "50% reduced Maximum Recovery per Energy Shield Leech", statOrder = { 1726 }, level = 1, group = "MaximumESLeechAmount", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3589396689] = { "50% reduced Maximum Recovery per Energy Shield Leech" }, } }, - ["ESLeechFromAttacksNotRemovedOnFullESUnique__1"] = { affix = "", "Energy Shield Leech Effects from Attacks are not removed at Full Energy Shield", statOrder = { 6437 }, level = 1, group = "ESLeechFromAttacksNotRemovedOnFullES", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1004885987] = { "Energy Shield Leech Effects from Attacks are not removed at Full Energy Shield" }, } }, - ["MaximumESLeechAmountDoubledUnique__1"] = { affix = "", "Maximum Recovery per Energy Shield Leech is Doubled", statOrder = { 9137 }, level = 1, group = "MaximumESLeechAmountDoubled", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4113811490] = { "Maximum Recovery per Energy Shield Leech is Doubled" }, } }, - ["EnemiesKilledApplyImpaleDamageUnique__1"] = { affix = "", "50% chance for Impales on Enemies you Kill to Reflect Damage to surrounding Enemies", statOrder = { 7312 }, level = 1, group = "EnemiesKilledApplyImpaleDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3927388937] = { "50% chance for Impales on Enemies you Kill to Reflect Damage to surrounding Enemies" }, } }, - ["ArmourAppliesToLightningDamageUnique__1_"] = { affix = "", "Armour also applies to Lightning Damage taken from Hits", statOrder = { 4989 }, level = 1, group = "ArmourAppliesToLightningDamage", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "elemental", "lightning" }, tradeHashes = { [2134207902] = { "Armour also applies to Lightning Damage taken from Hits" }, } }, - ["LightningResistNoReductionUnique__1_"] = { affix = "", "Lightning Resistance does not affect Lightning Damage taken", statOrder = { 7463 }, level = 1, group = "LightningResistNoReduction", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [3999959974] = { "Lightning Resistance does not affect Lightning Damage taken" }, } }, - ["DealNoNonLightningDamageUnique__1_"] = { affix = "", "Deal no Non-Lightning Damage", statOrder = { 2794 }, level = 1, group = "DealNoNonLightningDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2075742842] = { "Deal no Non-Lightning Damage" }, } }, - ["NearbyEnemyLightningResistanceEqualUnique__1"] = { affix = "", "Nearby Enemies have Lightning Resistance equal to yours", statOrder = { 9462 }, level = 1, group = "NearbyEnemyLightningResistanceEqual", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [3549734978] = { "Nearby Enemies have Lightning Resistance equal to yours" }, } }, - ["SupportedByIntensifyUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 10 Intensify", statOrder = { 316 }, level = 1, group = "SupportedByIntensify", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [28821524] = { "Socketed Gems are Supported by Level 10 Intensify" }, } }, - ["ShockedGroundWhileMovingUnique__1_"] = { affix = "", "Drops Shocked Ground while moving, lasting 2 seconds", statOrder = { 4311 }, level = 1, group = "ShockedGroundWhileMoving", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3002060175] = { "Drops Shocked Ground while moving, lasting 2 seconds" }, } }, - ["TriggerGoreShockwaveOnMeleeHitWith150StrengthUnique__1_"] = { affix = "", "Trigger Level 1 Gore Shockwave on Melee Hit if you have at least 150 Strength", statOrder = { 810 }, level = 1, group = "TriggerGoreShockwaveOnMeleeHitWith150Strength", weightKey = { }, weightVal = { }, modTags = { "skill", "attack" }, tradeHashes = { [252427115] = { "Trigger Level 1 Gore Shockwave on Melee Hit if you have at least 150 Strength" }, } }, - ["TriggerGoreShockwaveOnMeleeHitWith150StrengthUnique__2"] = { affix = "", "Trigger Level 5 Gore Shockwave on Melee Hit if you have at least 150 Strength", statOrder = { 810 }, level = 1, group = "TriggerGoreShockwaveOnMeleeHitWith150Strength", weightKey = { }, weightVal = { }, modTags = { "skill", "attack" }, tradeHashes = { [252427115] = { "Trigger Level 5 Gore Shockwave on Melee Hit if you have at least 150 Strength" }, } }, - ["ProjectileDamageBloodStanceUnique__1"] = { affix = "", "(40-60)% increased Projectile Damage while in Blood Stance", statOrder = { 10216 }, level = 1, group = "ProjectileDamageBloodStance", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2982500944] = { "(40-60)% increased Projectile Damage while in Blood Stance" }, } }, - ["LifeRegenerationBloodStanceUnique__1"] = { affix = "", "Regenerate (150-200) Life per Second while in Blood Stance", statOrder = { 10215 }, level = 1, group = "LifeRegenerationBloodStance", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [550848224] = { "Regenerate (150-200) Life per Second while in Blood Stance" }, } }, - ["AreaOfEffectSandStanceUnique__1"] = { affix = "", "(20-30)% increased Area of Effect while in Sand Stance", statOrder = { 10221 }, level = 1, group = "AreaOfEffectSandStance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1647746883] = { "(20-30)% increased Area of Effect while in Sand Stance" }, } }, - ["EvasionRatingSandStanceUnique__1"] = { affix = "", "+(700-1000) to Evasion Rating while in Sand Stance", statOrder = { 10217 }, level = 1, group = "EvasionRatingSandStance", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [1922061483] = { "+(700-1000) to Evasion Rating while in Sand Stance" }, } }, - ["MaxRagePerEquippedSwordUnique__1____"] = { affix = "", "+10 to Maximum Rage while wielding a Sword", statOrder = { 9181 }, level = 1, group = "MaxRagePerEquippedSword", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [406887685] = { "+10 to Maximum Rage while wielding a Sword" }, } }, - ["BleedDotMultiplierPerRagePerEquippedAxeUnique__1"] = { affix = "", "Each Rage also grants +2% to Damage over Time Multiplier for Bleeding while wielding an Axe", statOrder = { 5103 }, level = 1, group = "BleedDotMultiplierPerRagePerEquippedAxe", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, tradeHashes = { [769468514] = { "Each Rage also grants +2% to Damage over Time Multiplier for Bleeding while wielding an Axe" }, } }, - ["LifeManaESLeechRateUnique__1"] = { affix = "", "30% increased total Recovery per second from Life, Mana, or Energy Shield Leech", statOrder = { 7383 }, level = 1, group = "LifeManaESLeechRate", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana", "defences", "energy_shield" }, tradeHashes = { [2314393054] = { "30% increased total Recovery per second from Life, Mana, or Energy Shield Leech" }, } }, - ["RandomSupportUnique__1"] = { affix = "", "Socketed Gems are Supported by Level (1-10) (1-172)", statOrder = { 451 }, level = 1, group = "RandomSupport1", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4036547045] = { "Socketed Gems are Supported by Level (1-10) 0" }, [2218073584] = { "Socketed Gems are Supported by Level 0 (1-172)" }, } }, - ["RandomSupportUnique__2"] = { affix = "", "Socketed Gems are Supported by Level (25-35) (1-172)", statOrder = { 452 }, level = 1, group = "RandomSupport2", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [1700437154] = { "Socketed Gems are Supported by Level (25-35) 0" }, [4135300657] = { "Socketed Gems are Supported by Level 0 (1-172)" }, } }, - ["RandomSupportUnique__3"] = { affix = "", "Socketed Gems are Supported by Level (1-10) (1-172)", statOrder = { 451 }, level = 1, group = "RandomSupport1", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4036547045] = { "Socketed Gems are Supported by Level (1-10) 0" }, [2218073584] = { "Socketed Gems are Supported by Level 0 (1-172)" }, } }, - ["RandomSupportUnique__4_"] = { affix = "", "Socketed Gems are Supported by Level (25-35) (1-172)", statOrder = { 452 }, level = 1, group = "RandomSupport2", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [1700437154] = { "Socketed Gems are Supported by Level (25-35) 0" }, [4135300657] = { "Socketed Gems are Supported by Level 0 (1-172)" }, } }, - ["RandomSkillUnique__1"] = { affix = "", "+3 to Level of all (1-286) Gems", statOrder = { 1618 }, level = 71, group = "RandomSkill", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3854777240] = { "" }, [2362975498] = { "+3 to Level of all 0 Gems" }, } }, - ["GrantsDashUnique__1_"] = { affix = "", "Grants Level 30 Dash Skill", statOrder = { 698 }, level = 1, group = "GrantsDash", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [3883691934] = { "Grants Level 30 Dash Skill" }, } }, - ["DisableTravelSkillsExceptDashUnique__1"] = { affix = "", "Travel Skills other than Dash are Disabled", statOrder = { 10700 }, level = 1, group = "DisableTravelSkillsExceptDash", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [3066073024] = { "Travel Skills other than Dash are Disabled" }, } }, - ["ArrowsIfHaventUsedDashRecentlyUnique__1"] = { affix = "", "Bow Attacks fire 2 additional Arrows if you haven't Cast Dash recently", statOrder = { 1795 }, level = 1, group = "ArrowsIfHaventUsedDashRecently", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2482927318] = { "Bow Attacks fire 2 additional Arrows if you haven't Cast Dash recently" }, } }, - ["AttackSpeedIfHaventUsedDashRecentlyUnique__1"] = { affix = "", "(20-30)% increased Attack Speed if you haven't Cast Dash recently", statOrder = { 4898 }, level = 1, group = "AttackSpeedIfHaventUsedDashRecently", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [1003608257] = { "(20-30)% increased Attack Speed if you haven't Cast Dash recently" }, } }, - ["MovementSpeedIfUsedDashRecentlyUnique__1"] = { affix = "", "(20-30)% increased Movement Speed if you've Cast Dash recently", statOrder = { 9421 }, level = 1, group = "MovementSpeedIfUsedDashRecently", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2659793306] = { "(20-30)% increased Movement Speed if you've Cast Dash recently" }, } }, - ["EvasionRatingIfUsedDashRecentlyUnique__1"] = { affix = "", "(100-160)% increased Evasion Rating if you've Cast Dash recently", statOrder = { 6493 }, level = 1, group = "EvasionRatingIfUsedDashRecently", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [237513297] = { "(100-160)% increased Evasion Rating if you've Cast Dash recently" }, } }, - ["MinionLifeConvertedToEnergyShieldUnique__1"] = { affix = "", "Minions Convert 2% of their Maximum Life to Maximum Energy", "Shield per 1% Chaos Resistance they have", statOrder = { 4403, 4403.1 }, level = 1, group = "MinionLifeConvertedToEnergyShield", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "defences", "energy_shield", "minion" }, tradeHashes = { [433536969] = { "Minions Convert 2% of their Maximum Life to Maximum Energy", "Shield per 1% Chaos Resistance they have" }, } }, - ["MinionChaosDamageDoesNotBypassESUnique__1"] = { affix = "", "Chaos Damage taken does not bypass Minions' Energy Shield", statOrder = { 4404 }, level = 1, group = "MinionChaosDamageDoesNotBypassES", weightKey = { }, weightVal = { }, modTags = { "chaos", "minion" }, tradeHashes = { [3008104268] = { "Chaos Damage taken does not bypass Minions' Energy Shield" }, } }, - ["MinionHitsIgnoreResistanceWithESUnique__1_"] = { affix = "", "While Minions have Energy Shield, their Hits Ignore Monster Elemental Resistances", statOrder = { 4406 }, level = 1, group = "MinionHitsIgnoreResistanceWithES", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "minion" }, tradeHashes = { [1360359242] = { "While Minions have Energy Shield, their Hits Ignore Monster Elemental Resistances" }, } }, - ["MinionEnergyShieldRechargeDelayUnique__1"] = { affix = "", "Minions have (50-100)% faster start of Energy Shield Recharge", statOrder = { 4405 }, level = 1, group = "MinionEnergyShieldRechargeDelay", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield", "minion" }, tradeHashes = { [2834476618] = { "Minions have (50-100)% faster start of Energy Shield Recharge" }, } }, - ["DamageBypassEnergyShieldBlockUnique__1"] = { affix = "", "Damage taken from Blocked Hits cannot bypass Energy Shield", "Damage taken from Unblocked hits always bypasses Energy Shield", statOrder = { 6022, 6022.1 }, level = 1, group = "DamageBypassEnergyShieldBlock", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2331104018] = { "Damage taken from Blocked Hits cannot bypass Energy Shield", "Damage taken from Unblocked hits always bypasses Energy Shield" }, } }, - ["NoEnergyShieldUnique__1"] = { affix = "", "Has no Energy Shield", statOrder = { 1083 }, level = 1, group = "LocalNoEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3109875952] = { "Has no Energy Shield" }, } }, - ["CannotBlockWithNoEnergyShieldUnique__1"] = { affix = "", "Cannot Block while you have no Energy Shield", statOrder = { 2733 }, level = 1, group = "CannotBlockWithNoEnergyShield", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [3890287045] = { "Cannot Block while you have no Energy Shield" }, } }, - ["BlindReflectedToSelfUnique__1"] = { affix = "", "Blind you inflict is Reflected to you", statOrder = { 5222 }, level = 1, group = "BlindReflectedToSelf", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2458598175] = { "Blind you inflict is Reflected to you" }, } }, - ["BlindDoesNotAffectLightRadiusUnique__1"] = { affix = "", "Blind does not affect your Light Radius", statOrder = { 5218 }, level = 1, group = "BlindDoesNotAffectLightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3013171896] = { "Blind does not affect your Light Radius" }, } }, - ["NotablesGrantManaCostAndSpellDamageUnique1"] = { affix = "", "Notable Passive Skills in Radius are Transformed to", "instead grant: 10% increased Mana Cost of Skills and 20% increased Spell Damage", statOrder = { 10762, 10762.1 }, level = 1, group = "NotablesGrantManaCostAndSpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "resource", "mana", "damage", "caster" }, tradeHashes = { [3802517517] = { "" }, [3511232600] = { "" }, [2636000900] = { "" }, } }, - ["UnleashSealGainFrequencyUnique__1"] = { affix = "", "Skills Supported by Unleash have (30-50)% increased Seal gain frequency", statOrder = { 10320 }, level = 1, group = "UnleashSealGainFrequency", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1504513372] = { "Skills Supported by Unleash have (30-50)% increased Seal gain frequency" }, } }, - ["UnholyMightOnZeroEnergyShieldUnique__1"] = { affix = "", "You have Unholy Might while you have no Energy Shield", statOrder = { 2736 }, level = 1, group = "UnholyMightOnZeroEnergyShield", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2353201291] = { "You have Unholy Might while you have no Energy Shield" }, } }, - ["ProfaneGroundInsteadOfConsecratedGround__1_"] = { affix = "", "Create Profane Ground instead of Consecrated Ground", statOrder = { 5908 }, level = 1, group = "ProfaneGroundInsteadOfConsecratedGround", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1243613350] = { "Create Profane Ground instead of Consecrated Ground" }, } }, - ["StalkingPustuleOnKillUnique__1"] = { affix = "", "Trigger Level 1 Stalking Pustule on Kill", statOrder = { 817 }, level = 50, group = "StalkingPustuleOnKill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [1662669872] = { "Trigger Level 1 Stalking Pustule on Kill" }, } }, - ["BlindDoesNotAffectHitChanceUnique__1"] = { affix = "", "Unaffected by Blind", statOrder = { 10456 }, level = 1, group = "BlindDoesNotAffectHitChance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4193902224] = { "Unaffected by Blind" }, } }, - ["MaledictionOnBlindWhileBlindedUnique__1"] = { affix = "", "Enemies Blinded by you have Malediction", statOrder = { 6366 }, level = 1, group = "MaledictionOnBlindWhileBlinded", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2621660713] = { "Enemies Blinded by you have Malediction" }, } }, - ["AttackImpaleChanceUnique__1"] = { affix = "", "(10-20)% chance to Impale Enemies on Hit with Attacks", statOrder = { 4918 }, level = 1, group = "AttackImpaleChance", weightKey = { }, weightVal = { }, modTags = { "physical", "attack" }, tradeHashes = { [3739863694] = { "(10-20)% chance to Impale Enemies on Hit with Attacks" }, } }, - ["AttackImpaleChanceUnique__2"] = { affix = "", "(10-20)% chance to Impale Enemies on Hit with Attacks", statOrder = { 4918 }, level = 1, group = "AttackImpaleChance", weightKey = { }, weightVal = { }, modTags = { "physical", "attack" }, tradeHashes = { [3739863694] = { "(10-20)% chance to Impale Enemies on Hit with Attacks" }, } }, - ["AttackImpaleChanceUnique__3"] = { affix = "", "(15-30)% chance to Impale Enemies on Hit with Attacks", statOrder = { 4918 }, level = 1, group = "AttackImpaleChance", weightKey = { }, weightVal = { }, modTags = { "physical", "attack" }, tradeHashes = { [3739863694] = { "(15-30)% chance to Impale Enemies on Hit with Attacks" }, } }, - ["GrantsBrandDetonateUnique__1"] = { affix = "", "Grants Level 20 Brandsurge Skill", statOrder = { 692 }, level = 85, group = "GrantsBrandDetonate", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [2859437049] = { "Grants Level 20 Brandsurge Skill" }, } }, - ["BrandDurationUnique__1"] = { affix = "", "Brand Skills have (50-100)% increased Duration", statOrder = { 10039 }, level = 1, group = "BrandDuration", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHashes = { [3089482869] = { "Brand Skills have (50-100)% increased Duration" }, } }, - ["SummonAdditionalBrandUnique__1"] = { affix = "", "Skills which create Brands create an additional Brand", statOrder = { 4567 }, level = 1, group = "SummonAdditionalBrand", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHashes = { [3741633972] = { "Skills which create Brands create an additional Brand" }, } }, - ["AttackSpeedChangedStanceUnique__1"] = { affix = "", "(25-30)% increased Attack Speed if you've changed Stance Recently", statOrder = { 10223 }, level = 72, group = "AttackSpeedChangedStance", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [2188905761] = { "(25-30)% increased Attack Speed if you've changed Stance Recently" }, } }, - ["WarcryInfiniteEnemyPowerUnique__1__"] = { affix = "", "Warcries have infinite Power", statOrder = { 10570 }, level = 1, group = "WarcryInfiniteEnemyPower", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1139939070] = { "Warcries have infinite Power" }, } }, - ["KeystoneCallToArmsUnique__2_"] = { affix = "", "Call to Arms", statOrder = { 10774 }, level = 1, group = "CallToArms", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3292262540] = { "Call to Arms" }, } }, - ["WarcryGrantsArcaneSurgeUnique__1"] = { affix = "", "Warcries grant Arcane Surge to you and Allies, with 10% increased effect per 5 power, up to 50%", statOrder = { 4709 }, level = 1, group = "WarcryGrantsArcaneSurge", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3399924348] = { "Warcries grant Arcane Surge to you and Allies, with 10% increased effect per 5 power, up to 50%" }, } }, - ["WarcryTauntChaosExplosionUnique__1_"] = { affix = "", "Enemies Taunted by your Warcries Explode on death, dealing 8% of their maximum Life as Chaos Damage", statOrder = { 6399 }, level = 1, group = "WarcryTauntChaosExplosion", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [2937093415] = { "Enemies Taunted by your Warcries Explode on death, dealing 8% of their maximum Life as Chaos Damage" }, } }, - ["Curse25PercentHinderEnemyUnique__1"] = { affix = "", "Enemies Cursed by you are Hindered if 25% of Curse Duration expired", statOrder = { 10613 }, level = 77, group = "Curse25PercentHinderEnemy", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [313419608] = { "Enemies Cursed by you are Hindered if 25% of Curse Duration expired" }, } }, - ["Curse50PercentCurseEffectUnique__1"] = { affix = "", "Your Curses have 25% increased Effect if 50% of Curse Duration expired", statOrder = { 10615 }, level = 1, group = "Curse50PercentCurseEffect", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [2339022735] = { "Your Curses have 25% increased Effect if 50% of Curse Duration expired" }, } }, - ["Curse75PercentEnemyDamageTakenUnique__1__"] = { affix = "", "Enemies Cursed by you take 35% increased Damage if 75% of Curse Duration expired", statOrder = { 10616 }, level = 1, group = "Curse75PercentEnemyDamageTaken", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster", "curse" }, tradeHashes = { [2057136736] = { "Enemies Cursed by you take 35% increased Damage if 75% of Curse Duration expired" }, } }, - ["SpellsAlwaysCritFinalRepeatUnique__1_"] = { affix = "", "Spell Skills always deal Critical Strikes on final Repeat", statOrder = { 10165 }, level = 80, group = "SpellsAlwaysCritFinalRepeat", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [3738009328] = { "Spell Skills always deal Critical Strikes on final Repeat" }, } }, - ["SpellsNeverCritExceptFinalRepeatUnique__1"] = { affix = "", "Spell Skills cannot deal Critical Strikes except on final Repeat", statOrder = { 10168 }, level = 1, group = "SpellsNeverCritExceptFinalRepeat", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [2516869940] = { "Spell Skills cannot deal Critical Strikes except on final Repeat" }, } }, - ["SpellsCriticalMultiplierFinalRepeatUnique__1"] = { affix = "", "Spell Skills have +(20-30)% to Critical Strike Multiplier on final Repeat", statOrder = { 10166 }, level = 1, group = "SpellsCriticalMultiplierFinalRepeat", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [4128319542] = { "Spell Skills have +(20-30)% to Critical Strike Multiplier on final Repeat" }, } }, - ["NonCriticalStrikesLessDamageUnique__1"] = { affix = "", "Non-critical strikes deal 80% less Damage", statOrder = { 2713 }, level = 1, group = "NonCriticalDamageMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [1711683262] = { "Non-critical strikes deal 80% less Damage" }, } }, - ["MaximumRageUnique__1"] = { affix = "", "+10 to Maximum Rage", statOrder = { 9786 }, level = 85, group = "MaximumRage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1181501418] = { "+10 to Maximum Rage" }, } }, - ["MaximumRageUnique__2"] = { affix = "", "+5 to Maximum Rage", statOrder = { 9786 }, level = 1, group = "MaximumRage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1181501418] = { "+5 to Maximum Rage" }, } }, - ["MaximumRageUnique__3"] = { affix = "", "+(-5-5) to Maximum Rage", statOrder = { 9786 }, level = 1, group = "MaximumRage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1181501418] = { "+(-5-5) to Maximum Rage" }, } }, - ["MaximumRageImplicitE1"] = { affix = "", "+10 to Maximum Rage", statOrder = { 9786 }, level = 1, group = "MaximumRage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1181501418] = { "+10 to Maximum Rage" }, } }, - ["MaximumRageImplicitE2"] = { affix = "", "+15 to Maximum Rage", statOrder = { 9786 }, level = 1, group = "MaximumRage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1181501418] = { "+15 to Maximum Rage" }, } }, - ["MaximumRageImplicitE3"] = { affix = "", "+20 to Maximum Rage", statOrder = { 9786 }, level = 1, group = "MaximumRage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1181501418] = { "+20 to Maximum Rage" }, } }, - ["RageOnMeleeHitE1"] = { affix = "", "Gain 3 Rage on Melee Hit", statOrder = { 6845 }, level = 1, group = "RageOnMeleeHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2709367754] = { "Gain 3 Rage on Melee Hit" }, } }, - ["RageOnMeleeHitE2"] = { affix = "", "Gain 4 Rage on Melee Hit", statOrder = { 6845 }, level = 1, group = "RageOnMeleeHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2709367754] = { "Gain 4 Rage on Melee Hit" }, } }, - ["RageOnMeleeHitE3"] = { affix = "", "Gain 5 Rage on Melee Hit", statOrder = { 6845 }, level = 1, group = "RageOnMeleeHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2709367754] = { "Gain 5 Rage on Melee Hit" }, } }, - ["EnemiesCrushedWithRageUnique__1_"] = { affix = "", "Nearby Enemies are Crushed while you have at least 25 Rage", statOrder = { 9453 }, level = 1, group = "EnemiesCrushedWithRage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3069588220] = { "Nearby Enemies are Crushed while you have at least 25 Rage" }, } }, - ["FlaskDurationConsumedPerUse"] = { affix = "", "50% increased Duration. -1% to this value when used", statOrder = { 857 }, level = 1, group = "FlaskDurationConsumedPerUse", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [798785332] = { "" }, [156096868] = { "50% increased Duration" }, } }, - ["MapGainsRandomZanaMod"] = { affix = "", "Map has an additional random Modifier from Kirac's Crafting Bench", statOrder = { 8860 }, level = 1, group = "MapGainsRandomZanaMod", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1389457945] = { "Map has an additional random Modifier from Kirac's Crafting Bench" }, } }, - ["MapBossSurroundedByTormentedSpirits"] = { affix = "", "Map Boss is surrounded by Tormented Spirits", statOrder = { 8334 }, level = 1, group = "MapBossSurroundedByTormentedSpirits", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3750528071] = { "Map Boss is surrounded by Tormented Spirits" }, } }, - ["MapHarbingerPortalAdditionalFragments__"] = { affix = "", "Unique Boss drops an additional Harbinger Scroll", statOrder = { 8501 }, level = 1, group = "MapHarbingerPortalAdditionalFragments", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1432093361] = { "Unique Boss drops an additional Harbinger Scroll" }, } }, - ["VolleyFirstPointPierceUnique__1_"] = { affix = "", "Arrows fired from the first firing points always Pierce", statOrder = { 4407 }, level = 1, group = "VolleyFirstPointPierce", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2168987271] = { "Arrows fired from the first firing points always Pierce" }, } }, - ["VolleySecondPointForkUnique__1"] = { affix = "", "Arrows fired from the second firing points Fork", statOrder = { 4408 }, level = 1, group = "VolleySecondPointFork", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [3290081052] = { "Arrows fired from the second firing points Fork" }, } }, - ["VolleyThirdPointReturnUnique__1__"] = { affix = "", "Arrows fired from the third firing points Return to you", statOrder = { 4409 }, level = 1, group = "VolleyThirdPointReturn", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [301746072] = { "Arrows fired from the third firing points Return to you" }, } }, - ["VolleyFourthPointChainUnique__1"] = { affix = "", "Arrows fired from the fourth firing points Chain +2 times", statOrder = { 4410 }, level = 1, group = "VolleyFourthPointChain", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [226515115] = { "Arrows fired from the fourth firing points Chain +2 times" }, } }, - ["HarvestAlternateWeaponQualityLocalCriticalStrikeChance__"] = { affix = "", "Quality does not increase Physical Damage", "1% increased Critical Strike Chance per 4% Quality", statOrder = { 1916, 7882 }, level = 1, group = "HarvestAlternateWeaponQualityLocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack", "critical" }, tradeHashes = { [3103053611] = { "1% increased Critical Strike Chance per 4% Quality" }, [2052525717] = { "Quality does not increase Physical Damage" }, } }, - ["HarvestAlternateWeaponQualityAccuracyRatingIncrease_"] = { affix = "", "Quality does not increase Physical Damage", "Grants 1% increased Accuracy per 2% Quality", statOrder = { 1916, 7510 }, level = 1, group = "HarvestAlternateWeaponQualityAccuracyRatingIncrease", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [2421363283] = { "Grants 1% increased Accuracy per 2% Quality" }, [2052525717] = { "Quality does not increase Physical Damage" }, } }, - ["HarvestAlternateWeaponQualityLocalIncreasedAttackSpeed"] = { affix = "", "Quality does not increase Physical Damage", "1% increased Attack Speed per 8% Quality", statOrder = { 1916, 7859 }, level = 1, group = "HarvestAlternateWeaponQualityLocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack", "speed" }, tradeHashes = { [3331111689] = { "1% increased Attack Speed per 8% Quality" }, [2052525717] = { "Quality does not increase Physical Damage" }, } }, - ["HarvestAlternateWeaponQualityLocalMeleeWeaponRange_"] = { affix = "", "Quality does not increase Physical Damage", "+0.1 metres to Weapon Range per 10% Quality", statOrder = { 1916, 8131 }, level = 1, group = "HarvestAlternateWeaponQualityLocalMeleeWeaponRange", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [2967267655] = { "+0.1 metres to Weapon Range per 10% Quality" }, [2052525717] = { "Quality does not increase Physical Damage" }, } }, - ["HarvestAlternateWeaponQualityElementalDamagePercent"] = { affix = "", "Quality does not increase Physical Damage", "Grants 1% increased Elemental Damage per 2% Quality", statOrder = { 1916, 7929 }, level = 1, group = "HarvestAlternateWeaponQualityElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "attack" }, tradeHashes = { [1482025771] = { "Grants 1% increased Elemental Damage per 2% Quality" }, [2052525717] = { "Quality does not increase Physical Damage" }, } }, - ["HarvestAlternateWeaponQualityAreaOfEffect_"] = { affix = "", "Quality does not increase Physical Damage", "Grants 1% increased Area of Effect per 4% Quality", statOrder = { 1916, 7856 }, level = 1, group = "HarvestAlternateWeaponQualityAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [334333797] = { "Grants 1% increased Area of Effect per 4% Quality" }, [2052525717] = { "Quality does not increase Physical Damage" }, } }, - ["HarvestAlternateArmourQualityIncreasedLife"] = { affix = "", "Quality does not increase Defences", "Grants +1 to Maximum Life per 2% Quality", statOrder = { 1915, 7993 }, level = 1, group = "HarvestAlternateArmourQualityIncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "defences" }, tradeHashes = { [2711867632] = { "Grants +1 to Maximum Life per 2% Quality" }, [2677401098] = { "Quality does not increase Defences" }, } }, - ["HarvestAlternateArmourQualityIncreasedMana"] = { affix = "", "Quality does not increase Defences", "Grants +1 to Maximum Mana per 2% Quality", statOrder = { 1915, 7995 }, level = 1, group = "HarvestAlternateArmourQualityIncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "defences" }, tradeHashes = { [3764009282] = { "Grants +1 to Maximum Mana per 2% Quality" }, [2677401098] = { "Quality does not increase Defences" }, } }, - ["HarvestAlternateArmourQualityStrength"] = { affix = "", "Quality does not increase Defences", "Grants +1 to Strength per 2% Quality", statOrder = { 1915, 8030 }, level = 1, group = "HarvestAlternateArmourQualityStrength", weightKey = { }, weightVal = { }, modTags = { "defences", "attribute" }, tradeHashes = { [1519019245] = { "Grants +1 to Strength per 2% Quality" }, [2677401098] = { "Quality does not increase Defences" }, } }, - ["HarvestAlternateArmourQualityDexterity"] = { affix = "", "Quality does not increase Defences", "Grants +1 to Dexterity per 2% Quality", statOrder = { 1915, 7888 }, level = 1, group = "HarvestAlternateArmourQualityDexterity", weightKey = { }, weightVal = { }, modTags = { "defences", "attribute" }, tradeHashes = { [452753731] = { "Grants +1 to Dexterity per 2% Quality" }, [2677401098] = { "Quality does not increase Defences" }, } }, - ["HarvestAlternateArmourQualityIntelligence_"] = { affix = "", "Quality does not increase Defences", "Grants +1 to Intelligence per 2% Quality", statOrder = { 1915, 7949 }, level = 1, group = "HarvestAlternateArmourQualityIntelligence", weightKey = { }, weightVal = { }, modTags = { "defences", "attribute" }, tradeHashes = { [2748574832] = { "Grants +1 to Intelligence per 2% Quality" }, [2677401098] = { "Quality does not increase Defences" }, } }, - ["HarvestAlternateArmourQualityFireResistance"] = { affix = "", "Quality does not increase Defences", "Grants +1% to Fire Resistance per 2% Quality", statOrder = { 1915, 7933 }, level = 1, group = "HarvestAlternateArmourQualityFireResistance", weightKey = { }, weightVal = { }, modTags = { "defences", "elemental", "fire", "resistance" }, tradeHashes = { [2787227226] = { "Grants +1% to Fire Resistance per 2% Quality" }, [2677401098] = { "Quality does not increase Defences" }, } }, - ["HarvestAlternateArmourQualityColdResistance"] = { affix = "", "Quality does not increase Defences", "Grants +1% to Cold Resistance per 2% Quality", statOrder = { 1915, 7878 }, level = 1, group = "HarvestAlternateArmourQualityColdResistance", weightKey = { }, weightVal = { }, modTags = { "defences", "elemental", "cold", "resistance" }, tradeHashes = { [1665106429] = { "Grants +1% to Cold Resistance per 2% Quality" }, [2677401098] = { "Quality does not increase Defences" }, } }, - ["HarvestAlternateArmourQualityLightningResistance"] = { affix = "", "Quality does not increase Defences", "Grants +1% to Lightning Resistance per 2% Quality", statOrder = { 1915, 7988 }, level = 1, group = "HarvestAlternateArmourQualityLightningResistance", weightKey = { }, weightVal = { }, modTags = { "defences", "elemental", "lightning", "resistance" }, tradeHashes = { [2702369635] = { "Grants +1% to Lightning Resistance per 2% Quality" }, [2677401098] = { "Quality does not increase Defences" }, } }, - ["SummonedSkeletonWarriorsGetWeaponStatsInMainHandUnique__1"] = { affix = "", "Summoned Skeleton Warriors and Soldiers wield this Weapon while in your Main Hand", statOrder = { 4412 }, level = 1, group = "SummonSkeletonsWarriorsGetWeaponStatsInMainHand", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2646007123] = { "Summoned Skeleton Warriors and Soldiers wield this Weapon while in your Main Hand" }, } }, - ["SkeletonWarriorsTripleDamageUnique__1_"] = { affix = "", "Summoned Skeleton Warriors and Soldiers deal Triple Damage with this", "Weapon if you've Hit with this Weapon Recently", statOrder = { 4413, 4413.1 }, level = 1, group = "SkeletonWarriorsTripleDamage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [697059777] = { "Summoned Skeleton Warriors and Soldiers deal Triple Damage with this", "Weapon if you've Hit with this Weapon Recently" }, } }, - ["GrantsUnholyMightUnique__1"] = { affix = "", "Unholy Might", statOrder = { 2914 }, level = 1, group = "GrantsUnholyMight", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [279871631] = { "" }, [1646760085] = { "Unholy Might" }, } }, - ["NearbyEnemiesAreChilledUnique__1"] = { affix = "", "Nearby Enemies are Chilled", statOrder = { 7906 }, level = 1, group = "NearbyEnemiesAreChilled", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2159555743] = { "Nearby Enemies are Chilled" }, } }, - ["FreezeChilledEnemiesMoreDamageUnique__1_"] = { affix = "", "Freeze Chilled Enemies as though dealing (50-100)% more Damage", statOrder = { 6665 }, level = 1, group = "FreezeChilledEnemiesMoreDamage", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [4272678430] = { "Freeze Chilled Enemies as though dealing (50-100)% more Damage" }, } }, - ["AllDamageCanFreezeUnique__1"] = { affix = "", "All Damage can Freeze", statOrder = { 4624 }, level = 1, group = "AllDamageCanFreeze", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [4052117756] = { "All Damage can Freeze" }, } }, - ["CriticalStrikeMultiplierIfGainedPowerChargeUnique__1_"] = { affix = "", "+(30-40)% to Critical Strike Multiplier if you've gained a Power Charge Recently", statOrder = { 5959 }, level = 85, group = "CriticalStrikeMultiplierIfGainedPowerCharge", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [2865731079] = { "+(30-40)% to Critical Strike Multiplier if you've gained a Power Charge Recently" }, } }, - ["PowerChargeDurationFinalUnique__1__"] = { affix = "", "90% less Power Charge Duration", statOrder = { 9699 }, level = 1, group = "PowerChargeDurationFinal", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [2625134410] = { "90% less Power Charge Duration" }, } }, - ["ElementalDamageTakenUnique__1"] = { affix = "", "(40-50)% increased Elemental Damage taken", statOrder = { 3293 }, level = 1, group = "ElementalDamageTaken", weightKey = { }, weightVal = { }, modTags = { "elemental" }, tradeHashes = { [2734809852] = { "(40-50)% increased Elemental Damage taken" }, } }, - ["DisplaySupportedByImmolateUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 15 Immolate", statOrder = { 309 }, level = 1, group = "DisplaySupportedByImmolate", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [2420410470] = { "Socketed Gems are Supported by Level 15 Immolate" }, } }, - ["DisplaySupportedByUnboundAilmentsUnique__1__"] = { affix = "", "Socketed Gems are Supported by Level 15 Unbound Ailments", statOrder = { 393 }, level = 1, group = "DisplaySupportedByUnboundAilments", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [3699494172] = { "Socketed Gems are Supported by Level 15 Unbound Ailments" }, } }, - ["FireHitAndDoTDamageTakenAsLightningUnique__1"] = { affix = "", "40% of Fire Damage taken as Lightning Damage", statOrder = { 6583 }, level = 1, group = "FireHitAndDoTDamageTakenAsLightning", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4142376596] = { "40% of Fire Damage taken as Lightning Damage" }, } }, - ["ColdHitAndDoTDamageTakenAsLightningUnique__1"] = { affix = "", "40% of Cold Damage taken as Lightning Damage", statOrder = { 5826 }, level = 1, group = "ColdHitAndDoTDamageTakenAsLightning", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2881210047] = { "40% of Cold Damage taken as Lightning Damage" }, } }, - ["EnemyShockedConvertedToLightningUnique__1"] = { affix = "", "Enemies Shocked by you have (10-15)% of Physical Damage they deal converted to Lightning", statOrder = { 6396 }, level = 1, group = "EnemyShockedConvertedToLightning", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1070888079] = { "Enemies Shocked by you have (10-15)% of Physical Damage they deal converted to Lightning" }, } }, - ["EnemyIgnitedConvertedToFireUnique__1"] = { affix = "", "Enemies Ignited by you have (10-15)% of Physical Damage they deal converted to Fire", statOrder = { 6384 }, level = 1, group = "EnemyIgnitedConvertedToFire", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1272032962] = { "Enemies Ignited by you have (10-15)% of Physical Damage they deal converted to Fire" }, } }, - ["LifeGainOnHitCursedEnemyUnique__1"] = { affix = "", "Gain (20-28) Life per Cursed Enemy Hit with Attacks", statOrder = { 7358 }, level = 61, group = "LifeGainOnHitCursedEnemy", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHashes = { [3072303874] = { "Gain (20-28) Life per Cursed Enemy Hit with Attacks" }, } }, - ["ManaGainOnHitCursedEnemyUnique__1"] = { affix = "", "Gain (10-14) Mana per Cursed Enemy Hit with Attacks", statOrder = { 8178 }, level = 1, group = "ManaGainOnHitCursedEnemy", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "attack" }, tradeHashes = { [2087996552] = { "Gain (10-14) Mana per Cursed Enemy Hit with Attacks" }, } }, - ["CullingStrikeCursedEnemyUnique__1_"] = { affix = "", "You have Culling Strike against Cursed Enemies", statOrder = { 5990 }, level = 1, group = "CullingStrikeCursedEnemy", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2150694455] = { "You have Culling Strike against Cursed Enemies" }, } }, - ["NearbyEnemiesAvoidProjectilesUnique__1"] = { affix = "", "Projectiles cannot collide with Enemies in Close Range", statOrder = { 9456 }, level = 1, group = "NearbyEnemiesAvoidProjectiles", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2826633504] = { "Projectiles cannot collide with Enemies in Close Range" }, } }, - ["ScorchingBrittleSappingConfluxUnique__1"] = { affix = "", "You have Scorching Conflux, Brittle Conflux and Sapping Conflux while your two highest Attributes are equal", statOrder = { 6817 }, level = 85, group = "ScorchingBrittleSappingConflux", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1518701332] = { "You have Scorching Conflux, Brittle Conflux and Sapping Conflux while your two highest Attributes are equal" }, } }, - ["CannotIgniteChillFreezeShockUnique__1"] = { affix = "", "Cannot Ignite, Chill, Freeze or Shock", statOrder = { 9479 }, level = 1, group = "CannotIgniteChillFreezeShock", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3281123655] = { "Cannot Ignite, Chill, Freeze or Shock" }, } }, - ["CorpseWalk"] = { affix = "", "Triggers Level 20 Corpse Walk when Equipped", statOrder = { 787 }, level = 1, group = "CorpseWalk", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [779168081] = { "Triggers Level 20 Corpse Walk when Equipped" }, } }, - ["GainAreaOfEffectPluspercentOnManaSpentUnique__1"] = { affix = "", "Gain 40% increased Area of Effect for 2 seconds after Spending a total of 800 Mana", statOrder = { 6736 }, level = 69, group = "GainAreaOfEffectPluspercentOnManaSpent", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3591816140] = { "Gain 40% increased Area of Effect for 2 seconds after Spending a total of 800 Mana" }, } }, - ["LifeRegenerationPerNearbyCorpseUnique__1"] = { affix = "", "For each nearby corpse, Regenerate 0.25% Life per second, up to 3%", statOrder = { 7421 }, level = 1, group = "LifeRegenerationPerNearbyCorpse", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3845048660] = { "For each nearby corpse, Regenerate 0.25% Life per second, up to 3%" }, } }, - ["GainEnduranceChargesWhenHitUnique__1_"] = { affix = "", "Gain an Endurance Charge when you are Hit", statOrder = { 2751 }, level = 1, group = "GainEnduranceChargesWhenHit", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHashes = { [1514657588] = { "Gain an Endurance Charge when you are Hit" }, } }, - ["LoseLifeIfHitRecentlyUnique__1"] = { affix = "", "Lose 2% of Life per second if you have been Hit Recently", statOrder = { 7381 }, level = 1, group = "LoseLifeIfHitRecently", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2325592140] = { "Lose 2% of Life per second if you have been Hit Recently" }, } }, - ["PerfectAgonyIfCritRecentlyUnique__1"] = { affix = "", "You have Perfect Agony if you've dealt a Critical Strike recently", statOrder = { 6796 }, level = 1, group = "PerfectAgonyIfCritRecently", weightKey = { }, weightVal = { }, modTags = { "damage", "critical", "ailment" }, tradeHashes = { [3058395672] = { "You have Perfect Agony if you've dealt a Critical Strike recently" }, } }, - ["BrandDamageUnique__1"] = { affix = "", "40% increased Brand Damage", statOrder = { 10037 }, level = 1, group = "BrandDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [1323465399] = { "40% increased Brand Damage" }, } }, - ["AdditionalBrandUnique__1"] = { affix = "", "You can Cast an additional Brand", statOrder = { 5053 }, level = 1, group = "AdditionalBrand", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHashes = { [708630863] = { "You can Cast an additional Brand" }, } }, - ["CriticalStrikeChancePerBrandUnique__1___"] = { affix = "", "20% increased Critical Strike Chance per Brand", statOrder = { 5933 }, level = 1, group = "CriticalStrikeChancePerBrand", weightKey = { }, weightVal = { }, modTags = { "caster", "critical" }, tradeHashes = { [2409504914] = { "20% increased Critical Strike Chance per Brand" }, } }, - ["DamageAgainstMarkedEnemiesUnique__1"] = { affix = "", "(30-50)% increased Damage with Hits and Ailments against Marked Enemy", statOrder = { 6037 }, level = 1, group = "DamageAgainstMarkedEnemies", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2001747092] = { "(30-50)% increased Damage with Hits and Ailments against Marked Enemy" }, } }, - ["MarkCastSpeedUnique__1"] = { affix = "", "Mark Skills have (10-15)% increased Cast Speed", statOrder = { 2216 }, level = 1, group = "MarkCastSpeed", weightKey = { }, weightVal = { }, modTags = { "speed", "curse" }, tradeHashes = { [4189061307] = { "Mark Skills have (10-15)% increased Cast Speed" }, } }, - ["TransferMarkOnDeathUnique__1"] = { affix = "", "Your Mark Transfers to another Enemy when Marked Enemy dies", statOrder = { 10691 }, level = 1, group = "TransferMarkOnDeath", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1104120660] = { "Your Mark Transfers to another Enemy when Marked Enemy dies" }, } }, - ["DamageTakenFromMarkedTargetUnique__1"] = { affix = "", "8% of Damage from Hits is taken from Marked Target's Life before you", statOrder = { 6090 }, level = 1, group = "DamageTakenFromMarkedTarget", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3691190311] = { "8% of Damage from Hits is taken from Marked Target's Life before you" }, } }, - ["FlaskEldritchBatteryUnique__1"] = { affix = "", "Life Recovery from Flasks also applies to Energy Shield during Effect", "Eldritch Battery during Effect", statOrder = { 851, 1070 }, level = 1, group = "FlaskEldritchBattery", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life", "defences", "energy_shield" }, tradeHashes = { [74462130] = { "Life Recovery from Flasks also applies to Energy Shield during Effect" }, [1544417021] = { "Eldritch Battery during Effect" }, } }, - ["GrantsDeathWishUnique__1__"] = { affix = "", "Grants Level 20 Death Wish Skill", statOrder = { 699 }, level = 1, group = "GrantsDeathWish", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [1965393792] = { "Grants Level 20 Death Wish Skill" }, } }, - ["EnemyTemporalChainsOnHitUnique__1"] = { affix = "", "Enemy Hits inflict Temporal Chains on you", statOrder = { 6403 }, level = 1, group = "EnemyTemporalChainsOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1955994922] = { "Enemy Hits inflict Temporal Chains on you" }, } }, - ["GainRageOnLosingTemporalChainsUnique__1__"] = { affix = "", "When you lose Temporal Chains you gain maximum Rage", statOrder = { 6769 }, level = 1, group = "GainRageOnLosingTemporalChains", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2174796794] = { "When you lose Temporal Chains you gain maximum Rage" }, } }, - ["ImmuneToCursesWithRageUnique__1"] = { affix = "", "Immune to Curses while you have at least 25 Rage", statOrder = { 7222 }, level = 1, group = "ImmuneToCursesWithRage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [534844170] = { "Immune to Curses while you have at least 25 Rage" }, } }, - ["WeaponCritChanceOverrideUnique__1__"] = { affix = "", "Critical Strike Chance is (30-40)% for Hits with this Weapon", statOrder = { 8129 }, level = 1, group = "WeaponCritChanceIs", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [1672183492] = { "Critical Strike Chance is (30-40)% for Hits with this Weapon" }, } }, - ["NoIntelligenceUnique__1_"] = { affix = "", "You have no Intelligence", statOrder = { 7292 }, level = 1, group = "NoIntelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [2706175703] = { "You have no Intelligence" }, } }, - ["FlaskLifeRecoveryAlliesUnique__1_"] = { affix = "", "100% of Life Recovery from Flasks is applied to nearby Allies instead of You", statOrder = { 7390 }, level = 1, group = "FlaskLifeRecoveryAllies", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [2264655303] = { "100% of Life Recovery from Flasks is applied to nearby Allies instead of You" }, } }, - ["DamageIfConsumedCorpseUnique__1__"] = { affix = "", "(20-40)% increased Damage if you have Consumed a corpse Recently", statOrder = { 4253 }, level = 1, group = "DamageIfConsumedCorpse", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2118708619] = { "(20-40)% increased Damage if you have Consumed a corpse Recently" }, } }, - ["HexExpiresMaxDoomUnique__1"] = { affix = "", "Non-Aura Hexes expire upon reaching 200% of base Effect", statOrder = { 7139 }, level = 48, group = "HexExpiresMaxDoom", weightKey = { }, weightVal = { }, modTags = { "curse" }, tradeHashes = { [3363199577] = { "Non-Aura Hexes expire upon reaching 200% of base Effect" }, } }, - ["DoubleDoomEffectUnique__1"] = { affix = "", "Non-Aura Hexes gain 20% increased Effect per second", statOrder = { 9486 }, level = 1, group = "DoubleDoomEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3266609002] = { "Non-Aura Hexes gain 20% increased Effect per second" }, } }, - ["GlobalAddedLightningDamagePerPowerChargeUnique__1"] = { affix = "", "(1-2) to (36-40) Lightning Damage per Power Charge", statOrder = { 9243 }, level = 1, group = "GlobalAddedLightningDamagePerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [1917107159] = { "(1-2) to (36-40) Lightning Damage per Power Charge" }, } }, - ["HasMassiveShrineBuffUnique__1"] = { affix = "", "You have Lesser Massive Shrine Buff", statOrder = { 6937 }, level = 1, group = "HasMassiveShrineBuff", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3779398176] = { "You have Lesser Massive Shrine Buff" }, } }, - ["HasBrutalShrineBuffUnique__1"] = { affix = "", "You have Lesser Brutal Shrine Buff", statOrder = { 6936 }, level = 1, group = "HasBrutalShrineBuff", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2761538350] = { "You have Lesser Brutal Shrine Buff" }, } }, - ["SocketedSkillsDoubleDamageUnique__1_"] = { affix = "", "Socketed Skills deal Double Damage", statOrder = { 563 }, level = 1, group = "SocketedSkillsDoubleDamage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2132884933] = { "Socketed Skills deal Double Damage" }, } }, - ["TotalRecoveryLifeLeechDoubledUnique__1"] = { affix = "", "Total Recovery per second from Life Leech is Doubled", statOrder = { 10389 }, level = 55, group = "TotalRecoveryLifeLeechDoubled", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1277035917] = { "Total Recovery per second from Life Leech is Doubled" }, } }, - ["DamageLeechWith5ChargesUnique__1"] = { affix = "", "0.5% of Damage Leeched as Life while you have at least 5 total Endurance, Frenzy and Power Charges", statOrder = { 7365 }, level = 1, group = "DamageLeechWith5Charges", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1526625193] = { "0.5% of Damage Leeched as Life while you have at least 5 total Endurance, Frenzy and Power Charges" }, } }, - ["ReflectElementalAilmentsToSelfUnique__1"] = { affix = "", "Elemental Ailments you inflict are Reflected to you", statOrder = { 6293 }, level = 1, group = "ReflectElementalAilmentsToSelf", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1370804479] = { "Elemental Ailments you inflict are Reflected to you" }, } }, - ["ProlifElementalAilmentsFromSelfUnique__1__"] = { affix = "", "Elemental Ailments inflicted on you spread to Enemies within 2.5 metres", statOrder = { 6292 }, level = 1, group = "ProlifElementalAilmentsFromSelf", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3435227689] = { "Elemental Ailments inflicted on you spread to Enemies within 2.5 metres" }, } }, - ["ElementalDamagePerPowerChargeUnique__1"] = { affix = "", "(3-5)% increased Elemental Damage per Power charge", statOrder = { 6309 }, level = 1, group = "ElementalDamagePerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [1482070333] = { "(3-5)% increased Elemental Damage per Power charge" }, } }, - ["LosePowerChargesOnBlockUnique__1"] = { affix = "", "Lose all Power Charges when you Block", statOrder = { 8139 }, level = 1, group = "LosePowerChargesOnBlock", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3898799092] = { "Lose all Power Charges when you Block" }, } }, - ["GainPowerChargesNotLostRecentlyUnique__1_"] = { affix = "", "Gain a Power Charge every Second if you haven't lost Power Charges Recently", statOrder = { 6811 }, level = 1, group = "GainPowerChargesNotLostRecently", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [1099200124] = { "Gain a Power Charge every Second if you haven't lost Power Charges Recently" }, } }, - ["SocketedGemQualityUnique__1"] = { affix = "", "+(30-50)% to Quality of Socketed Gems", statOrder = { 204 }, level = 1, group = "SocketedGemQuality", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [3828613551] = { "+(30-50)% to Quality of Socketed Gems" }, } }, - ["SocketedGemQualityUnique__2_"] = { affix = "", "+30% to Quality of Socketed Gems", statOrder = { 204 }, level = 57, group = "SocketedGemQuality", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [3828613551] = { "+30% to Quality of Socketed Gems" }, } }, - ["NearbyEnemiesAreBlindedPhysicalAegisUnique__1"] = { affix = "", "Nearby Enemies are Blinded while Physical Aegis is not depleted", statOrder = { 9450 }, level = 1, group = "NearbyEnemiesAreBlindedPhysicalAegis", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2504709365] = { "Nearby Enemies are Blinded while Physical Aegis is not depleted" }, } }, - ["CriticalStrikeChanceWithoutPhysicalAegisUnique__1"] = { affix = "", "(50-70)% increased Critical Strike Chance while Physical Aegis is depleted", statOrder = { 5946 }, level = 1, group = "CriticalStrikeChanceWithoutPhysicalAegis", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2620656067] = { "(50-70)% increased Critical Strike Chance while Physical Aegis is depleted" }, } }, - ["AttackAndCastSpeedWithoutPhysicalAegisUnique__1"] = { affix = "", "(8-15)% increased Attack and Cast Speed while Physical Aegis is depleted", statOrder = { 4824 }, level = 1, group = "AttackAndCastSpeedWithoutPhysicalAegis", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [232331266] = { "(8-15)% increased Attack and Cast Speed while Physical Aegis is depleted" }, } }, - ["SpellsGainIntensityUnique__1"] = { affix = "", "Spells which have gained Intensity Recently gain 1 Intensity every 0.5 Seconds", statOrder = { 10068 }, level = 1, group = "SpellsGainIntensity", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2540626225] = { "Spells which have gained Intensity Recently gain 1 Intensity every 0.5 Seconds" }, } }, - ["SpellsLoseIntensityUnique__1"] = { affix = "", "Spells which have gained Intensity Recently lose 1 Intensity every 0.5 Seconds", statOrder = { 10069 }, level = 1, group = "SpellsLoseIntensity", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2122561670] = { "Spells which have gained Intensity Recently lose 1 Intensity every 0.5 Seconds" }, } }, - ["CriticalStrikeChancePerIntensityUnique__1"] = { affix = "", "Spells have 10% reduced Critical Strike Chance per Intensity", statOrder = { 5936 }, level = 1, group = "CriticalStrikeChancePerIntensity", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2923377613] = { "Spells have 10% reduced Critical Strike Chance per Intensity" }, } }, - ["CriticalStrikeChancePerIntensityUnique__2"] = { affix = "", "Spells have (30-50)% increased Critical Strike Chance per Intensity", statOrder = { 5936 }, level = 1, group = "CriticalStrikeChancePerIntensity", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2923377613] = { "Spells have (30-50)% increased Critical Strike Chance per Intensity" }, } }, - ["LifeFlaskPassiveChargeGainUnique__1_"] = { affix = "", "Life Flasks gain 1 Charge every 3 seconds", statOrder = { 7348 }, level = 1, group = "LifeFlaskPassiveChargeGain", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2592686757] = { "Life Flasks gain 1 Charge every 3 seconds" }, } }, - ["LifeFlaskPassiveChargeGainUnique__2"] = { affix = "", "Life Flasks gain (0-3) Charges every 3 seconds", statOrder = { 7348 }, level = 98, group = "LifeFlaskPassiveChargeGain", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2592686757] = { "Life Flasks gain (0-3) Charges every 3 seconds" }, } }, - ["LifeFlaskPassiveChargeGainOnLowLifeUnique__1"] = { affix = "", "While on Low Life, Life Flasks gain (3-6) Charges every 3 seconds", statOrder = { 7349 }, level = 70, group = "LifeFlaskPassiveChargeGainOnLowLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [4197693974] = { "While on Low Life, Life Flasks gain (3-6) Charges every 3 seconds" }, } }, - ["ManaFlaskPassiveChargeGainUnique__1"] = { affix = "", "Mana Flasks gain (0-3) Charges every 3 seconds", statOrder = { 8176 }, level = 1, group = "ManaFlaskPassiveChargeGain", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1193925814] = { "Mana Flasks gain (0-3) Charges every 3 seconds" }, } }, - ["UtilityFlaskPassiveChargeGainUnique__1"] = { affix = "", "Utility Flasks gain (0-3) Charges every 3 seconds", statOrder = { 10514 }, level = 1, group = "UtilityFlaskPassiveChargeGain", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2567919918] = { "Utility Flasks gain (0-3) Charges every 3 seconds" }, } }, - ["ElementalDamageLowestResistUnique__1"] = { affix = "", "Elemental Damage you Deal with Hits is Resisted by lowest Elemental Resistance instead", statOrder = { 6314 }, level = 1, group = "ElementalDamageLowestResist", weightKey = { }, weightVal = { }, modTags = { "elemental" }, tradeHashes = { [1740349133] = { "Elemental Damage you Deal with Hits is Resisted by lowest Elemental Resistance instead" }, } }, - ["ReducedAttackSpeedWhilePhasingUnique__1"] = { affix = "", "30% reduced Attack Speed while Phasing", statOrder = { 4907 }, level = 1, group = "AttackSpeedWhilePhasing", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [2752264922] = { "30% reduced Attack Speed while Phasing" }, } }, - ["PhysicalDamageAddedAsRandomWhileIgnitedUnique__1"] = { affix = "", "Gain (30-40)% of Physical Damage as Extra Damage of a random Element while you are Ignited", statOrder = { 9637 }, level = 1, group = "PhysicalDamageAddedAsRandomWhileIgnited", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3595519743] = { "Gain (30-40)% of Physical Damage as Extra Damage of a random Element while you are Ignited" }, } }, - ["ElementalPenetrationWhileChilledUnique__1___"] = { affix = "", "Damage Penetrates (8-10)% Elemental Resistances while you are Chilled", statOrder = { 6334 }, level = 1, group = "ElementalPenetrationWhileChilled", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1089858120] = { "Damage Penetrates (8-10)% Elemental Resistances while you are Chilled" }, } }, - ["ElementalDamageLuckyWhileShockedUnique__1__"] = { affix = "", "Elemental Damage with Hits is Lucky while you are Shocked", statOrder = { 6297 }, level = 1, group = "ElementalDamageLuckyWhileShocked", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [888026555] = { "Elemental Damage with Hits is Lucky while you are Shocked" }, } }, - ["WeaponEnchantmentHeistPhysicalEffect1"] = { affix = "Enchantment Physical Modifier Effect", "8% increased Explicit Physical Modifier magnitudes", statOrder = { 50 }, level = 1, group = "WeaponEnchantmentHeistPhysicalModifierEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1335369947] = { "8% increased Explicit Physical Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistFireEffect1"] = { affix = "Enchantment Fire Modifier Effect", "8% increased Explicit Fire Modifier magnitudes", statOrder = { 46 }, level = 1, group = "WeaponEnchantmentHeistFireModifierEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3574578302] = { "8% increased Explicit Fire Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistLightningEffect1"] = { affix = "Enchantment Lightning Modifier Effect", "8% increased Explicit Lightning Modifier magnitudes", statOrder = { 48 }, level = 1, group = "WeaponEnchantmentHeistLightningModifierEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3624940721] = { "8% increased Explicit Lightning Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistColdEffect1__"] = { affix = "Enchantment Cold Modifier Effect", "8% increased Explicit Cold Modifier magnitudes", statOrder = { 42 }, level = 1, group = "WeaponEnchantmentHeistColdModifierEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3206904707] = { "8% increased Explicit Cold Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistChaosEffect1__"] = { affix = "Enchantment Chaos Modifier Effect", "8% increased Explicit Chaos Modifier magnitudes", statOrder = { 41 }, level = 1, group = "WeaponEnchantmentHeistChaosModifierEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3196512240] = { "8% increased Explicit Chaos Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistCasterDamageEffect1"] = { affix = "Enchantment Caster Damage Modifier Effect", "8% increased Explicit Caster Damage Modifier magnitudes", statOrder = { 40 }, level = 1, group = "WeaponEnchantmentHeistCasterDamageModifierEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1498186316] = { "8% increased Explicit Caster Damage Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistManaEffect1"] = { affix = "Enchantment Mana Modifier Effect", "8% increased Explicit Mana Modifier magnitudes", statOrder = { 49 }, level = 10, group = "WeaponEnchantmentHeistManaModifierEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3514984677] = { "8% increased Explicit Mana Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistSpeedEffect1_"] = { affix = "Enchantment Speed Modifier Effect", "8% increased Explicit Speed Modifier magnitudes", statOrder = { 52 }, level = 70, group = "WeaponEnchantmentHeistSpeedModifierEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [363924732] = { "8% increased Explicit Speed Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistCriticalEffect1_"] = { affix = "Enchantment Critical Modifier Effect", "8% increased Explicit Critical Modifier magnitudes", statOrder = { 43 }, level = 70, group = "WeaponEnchantmentHeistCriticalModifierEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2393315299] = { "8% increased Explicit Critical Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistAttributeEffect1"] = { affix = "Enchantment Attribute Modifier Effect", "8% increased Explicit Attribute Modifier magnitudes", statOrder = { 39 }, level = 20, group = "WeaponEnchantmentHeistAttributeModifierEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3243861579] = { "8% increased Explicit Attribute Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistAilmentEffect1"] = { affix = "Enchantment Ailment Modifier Effect", "8% increased Explicit Ailment Modifier magnitudes", statOrder = { 38 }, level = 20, group = "WeaponEnchantmentHeistAilmentModifierEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3086446674] = { "8% increased Explicit Ailment Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistAttributeRequirement1"] = { affix = "Enchantment Attribute Requirement", "40% reduced Attribute Requirements", statOrder = { 1075 }, level = 1, group = "WeaponEnchantmentHeistAttributeRequirement", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3639275092] = { "40% reduced Attribute Requirements" }, } }, - ["WeaponEnchantmentHeistSocketsAreLinked1_"] = { affix = "Enchantment Sockets Are Linked", "All Sockets Linked", statOrder = { 71 }, level = 40, group = "WeaponEnchantmentHeistSocketsAreLinked", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2740018301] = { "All Sockets Linked" }, } }, - ["WeaponEnchantmentHeistWhiteSockets1_"] = { affix = "Enchantment White Sockets", "Has 2 White Sockets", statOrder = { 77 }, level = 70, group = "WeaponEnchantmentHeistWhiteSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [931294424] = { "Has 2 White Sockets" }, } }, - ["WeaponEnchantmentHeistPhysicalEffectSpeedEffect1"] = { affix = "Enchantment Physical Modifier Effect and Speed Modifier Effect", "6% increased Explicit Physical Modifier magnitudes", "6% increased Explicit Speed Modifier magnitudes", statOrder = { 50, 52 }, level = 70, group = "WeaponEnchantmentHeistPhysicalModifierEffectSpeedModifierEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [363924732] = { "6% increased Explicit Speed Modifier magnitudes" }, [1335369947] = { "6% increased Explicit Physical Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistPhysicalEffectCriticalEffect1"] = { affix = "Enchantment Physical Modifier Effect and Critical Modifier Effect", "6% increased Explicit Critical Modifier magnitudes", "6% increased Explicit Physical Modifier magnitudes", statOrder = { 43, 50 }, level = 70, group = "WeaponEnchantmentHeistPhysicalModifierEffectCriticalModifierEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2393315299] = { "6% increased Explicit Critical Modifier magnitudes" }, [1335369947] = { "6% increased Explicit Physical Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistPhysicalEffectAttributeEffect1____"] = { affix = "Enchantment Physical Modifier Effect and Attribute Modifier Effect", "6% increased Explicit Attribute Modifier magnitudes", "6% increased Explicit Physical Modifier magnitudes", statOrder = { 39, 50 }, level = 70, group = "WeaponEnchantmentHeistPhysicalModifierEffectAttributeModifierEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3243861579] = { "6% increased Explicit Attribute Modifier magnitudes" }, [1335369947] = { "6% increased Explicit Physical Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistPhysicalEffectAilmentEffect1"] = { affix = "Enchantment Physical Modifier Effect and Ailment Modifier Effect", "6% increased Explicit Ailment Modifier magnitudes", "6% increased Explicit Physical Modifier magnitudes", statOrder = { 38, 50 }, level = 70, group = "WeaponEnchantmentHeistPhysicalModifierEffectAilmentModifierEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3086446674] = { "6% increased Explicit Ailment Modifier magnitudes" }, [1335369947] = { "6% increased Explicit Physical Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistPhysicalEffectAttributeRequirement1"] = { affix = "Enchantment Physical Modifier Effect and Attribute Requirement", "6% increased Explicit Physical Modifier magnitudes", "25% reduced Attribute Requirements", statOrder = { 50, 1075 }, level = 20, group = "WeaponEnchantmentHeistPhysicalModifierEffectAttributeRequirement", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3639275092] = { "25% reduced Attribute Requirements" }, [1335369947] = { "6% increased Explicit Physical Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistPhysicalEffectSocketsAreLinked1"] = { affix = "Enchantment Physical Modifier Effect and Sockets Are Linked", "6% increased Explicit Physical Modifier magnitudes", "All Sockets Linked", statOrder = { 50, 71 }, level = 20, group = "WeaponEnchantmentHeistPhysicalModifierEffectSocketsAreLinked", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2740018301] = { "All Sockets Linked" }, [1335369947] = { "6% increased Explicit Physical Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistPhysicalEffectNoRedSockets1"] = { affix = "Enchantment Physical Modifier Effect and No Red Sockets", "8% increased Explicit Physical Modifier magnitudes", "Has no Red Sockets", statOrder = { 50, 66 }, level = 20, group = "WeaponEnchantmentHeistPhysicalModifierEffectNoRedSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [320043039] = { "Has no Red Sockets" }, [1335369947] = { "8% increased Explicit Physical Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistPhysicalEffectNoBlueSockets1"] = { affix = "Enchantment Physical Modifier Effect and No Blue Sockets", "8% increased Explicit Physical Modifier magnitudes", "Has no Green Sockets", statOrder = { 50, 65 }, level = 20, group = "WeaponEnchantmentHeistPhysicalModifierEffectNoBlueSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1615727675] = { "Has no Green Sockets" }, [1335369947] = { "8% increased Explicit Physical Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistPhysicalEffectNoGreenSockets1_"] = { affix = "Enchantment Physical Modifier Effect and No Green Sockets", "8% increased Explicit Physical Modifier magnitudes", "Has no Blue Sockets", statOrder = { 50, 64 }, level = 20, group = "WeaponEnchantmentHeistPhysicalModifierEffectNoGreenSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3837805260] = { "Has no Blue Sockets" }, [1335369947] = { "8% increased Explicit Physical Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistPhysicalEffectWhiteSockets1_"] = { affix = "Enchantment Physical Modifier Effect and White Sockets", "8% increased Explicit Physical Modifier magnitudes", "Has 1 White Socket", statOrder = { 50, 77 }, level = 20, group = "WeaponEnchantmentHeistPhysicalModifierEffectWhiteSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [931294424] = { "Has 1 White Socket" }, [1335369947] = { "8% increased Explicit Physical Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistFireEffectSpeedEffect1"] = { affix = "Enchantment Fire Modifier Effect and Speed Modifier Effect", "6% increased Explicit Fire Modifier magnitudes", "6% increased Explicit Speed Modifier magnitudes", statOrder = { 46, 52 }, level = 70, group = "WeaponEnchantmentHeistFireModifierEffectSpeedModifierEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3574578302] = { "6% increased Explicit Fire Modifier magnitudes" }, [363924732] = { "6% increased Explicit Speed Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistFireEffectCriticalEffect1"] = { affix = "Enchantment Fire Modifier Effect and Critical Modifier Effect", "6% increased Explicit Critical Modifier magnitudes", "6% increased Explicit Fire Modifier magnitudes", statOrder = { 43, 46 }, level = 70, group = "WeaponEnchantmentHeistFireModifierEffectCriticalModifierEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3574578302] = { "6% increased Explicit Fire Modifier magnitudes" }, [2393315299] = { "6% increased Explicit Critical Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistFireEffectAttributeEffect1"] = { affix = "Enchantment Fire Modifier Effect and Attribute Modifier Effect", "6% increased Explicit Attribute Modifier magnitudes", "6% increased Explicit Fire Modifier magnitudes", statOrder = { 39, 46 }, level = 70, group = "WeaponEnchantmentHeistFireModifierEffectAttributeModifierEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3574578302] = { "6% increased Explicit Fire Modifier magnitudes" }, [3243861579] = { "6% increased Explicit Attribute Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistFireEffectAilmentEffect1_"] = { affix = "Enchantment Fire Modifier Effect and Ailment Modifier Effect", "6% increased Explicit Ailment Modifier magnitudes", "6% increased Explicit Fire Modifier magnitudes", statOrder = { 38, 46 }, level = 70, group = "WeaponEnchantmentHeistFireModifierEffectAilmentModifierEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3574578302] = { "6% increased Explicit Fire Modifier magnitudes" }, [3086446674] = { "6% increased Explicit Ailment Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistFireEffectAttributeRequirement1"] = { affix = "Enchantment Fire Modifier Effect and Attribute Requirement", "6% increased Explicit Fire Modifier magnitudes", "25% reduced Attribute Requirements", statOrder = { 46, 1075 }, level = 20, group = "WeaponEnchantmentHeistFireModifierEffectAttributeRequirement", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3574578302] = { "6% increased Explicit Fire Modifier magnitudes" }, [3639275092] = { "25% reduced Attribute Requirements" }, } }, - ["WeaponEnchantmentHeistFireEffectSocketsAreLinked1"] = { affix = "Enchantment Fire Modifier Effect and Sockets Are Linked", "6% increased Explicit Fire Modifier magnitudes", "All Sockets Linked", statOrder = { 46, 71 }, level = 20, group = "WeaponEnchantmentHeistFireModifierEffectSocketsAreLinked", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3574578302] = { "6% increased Explicit Fire Modifier magnitudes" }, [2740018301] = { "All Sockets Linked" }, } }, - ["WeaponEnchantmentHeistFireEffectNoRedSockets1"] = { affix = "Enchantment Fire Modifier Effect and No Red Sockets", "8% increased Explicit Fire Modifier magnitudes", "Has no Red Sockets", statOrder = { 46, 66 }, level = 20, group = "WeaponEnchantmentHeistFireModifierEffectNoRedSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3574578302] = { "8% increased Explicit Fire Modifier magnitudes" }, [320043039] = { "Has no Red Sockets" }, } }, - ["WeaponEnchantmentHeistFireEffectNoBlueSockets1"] = { affix = "Enchantment Fire Modifier Effect and No Blue Sockets", "8% increased Explicit Fire Modifier magnitudes", "Has no Green Sockets", statOrder = { 46, 65 }, level = 20, group = "WeaponEnchantmentHeistFireModifierEffectNoBlueSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3574578302] = { "8% increased Explicit Fire Modifier magnitudes" }, [1615727675] = { "Has no Green Sockets" }, } }, - ["WeaponEnchantmentHeistFireEffectNoGreenSockets1_"] = { affix = "Enchantment Fire Modifier Effect and No Green Sockets", "8% increased Explicit Fire Modifier magnitudes", "Has no Blue Sockets", statOrder = { 46, 64 }, level = 20, group = "WeaponEnchantmentHeistFireModifierEffectNoGreenSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3574578302] = { "8% increased Explicit Fire Modifier magnitudes" }, [3837805260] = { "Has no Blue Sockets" }, } }, - ["WeaponEnchantmentHeistFireEffectWhiteSockets1"] = { affix = "Enchantment Fire Modifier Effect and White Sockets", "8% increased Explicit Fire Modifier magnitudes", "Has 1 White Socket", statOrder = { 46, 77 }, level = 20, group = "WeaponEnchantmentHeistFireModifierEffectWhiteSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3574578302] = { "8% increased Explicit Fire Modifier magnitudes" }, [931294424] = { "Has 1 White Socket" }, } }, - ["WeaponEnchantmentHeistLightningEffectSpeedEffect1_"] = { affix = "Enchantment Lightning Modifier Effect and Speed Modifier Effect", "6% increased Explicit Lightning Modifier magnitudes", "6% increased Explicit Speed Modifier magnitudes", statOrder = { 48, 52 }, level = 70, group = "WeaponEnchantmentHeistLightningModifierEffectSpeedModifierEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [363924732] = { "6% increased Explicit Speed Modifier magnitudes" }, [3624940721] = { "6% increased Explicit Lightning Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistLightningEffectCriticalEffect1"] = { affix = "Enchantment Lightning Modifier Effect and Critical Modifier Effect", "6% increased Explicit Critical Modifier magnitudes", "6% increased Explicit Lightning Modifier magnitudes", statOrder = { 43, 48 }, level = 70, group = "WeaponEnchantmentHeistLightningModifierEffectCriticalModifierEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2393315299] = { "6% increased Explicit Critical Modifier magnitudes" }, [3624940721] = { "6% increased Explicit Lightning Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistLightningEffectAttributeEffect1"] = { affix = "Enchantment Lightning Modifier Effect and Attribute Modifier Effect", "6% increased Explicit Attribute Modifier magnitudes", "6% increased Explicit Lightning Modifier magnitudes", statOrder = { 39, 48 }, level = 70, group = "WeaponEnchantmentHeistLightningModifierEffectAttributeModifierEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3243861579] = { "6% increased Explicit Attribute Modifier magnitudes" }, [3624940721] = { "6% increased Explicit Lightning Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistLightningEffectAilmentEffect1"] = { affix = "Enchantment Lightning Modifier Effect and Ailment Modifier Effect", "6% increased Explicit Ailment Modifier magnitudes", "6% increased Explicit Lightning Modifier magnitudes", statOrder = { 38, 48 }, level = 70, group = "WeaponEnchantmentHeistLightningModifierEffectAilmentModifierEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3086446674] = { "6% increased Explicit Ailment Modifier magnitudes" }, [3624940721] = { "6% increased Explicit Lightning Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistLightningEffectAttributeRequirement1"] = { affix = "Enchantment Lightning Modifier Effect and Attribute Requirement", "6% increased Explicit Lightning Modifier magnitudes", "25% reduced Attribute Requirements", statOrder = { 48, 1075 }, level = 20, group = "WeaponEnchantmentHeistLightningModifierEffectAttributeRequirement", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3639275092] = { "25% reduced Attribute Requirements" }, [3624940721] = { "6% increased Explicit Lightning Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistLightningEffectSocketsAreLinked1"] = { affix = "Enchantment Lightning Modifier Effect and Sockets Are Linked", "6% increased Explicit Lightning Modifier magnitudes", "All Sockets Linked", statOrder = { 48, 71 }, level = 20, group = "WeaponEnchantmentHeistLightningModifierEffectSocketsAreLinked", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2740018301] = { "All Sockets Linked" }, [3624940721] = { "6% increased Explicit Lightning Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistLightningEffectNoRedSockets1"] = { affix = "Enchantment Lightning Modifier Effect and No Red Sockets", "8% increased Explicit Lightning Modifier magnitudes", "Has no Red Sockets", statOrder = { 48, 66 }, level = 20, group = "WeaponEnchantmentHeistLightningModifierEffectNoRedSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [320043039] = { "Has no Red Sockets" }, [3624940721] = { "8% increased Explicit Lightning Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistLightningEffectNoBlueSockets1_"] = { affix = "Enchantment Lightning Modifier Effect and No Blue Sockets", "8% increased Explicit Lightning Modifier magnitudes", "Has no Green Sockets", statOrder = { 48, 65 }, level = 20, group = "WeaponEnchantmentHeistLightningModifierEffectNoBlueSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1615727675] = { "Has no Green Sockets" }, [3624940721] = { "8% increased Explicit Lightning Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistLightningEffectNoGreenSockets1"] = { affix = "Enchantment Lightning Modifier Effect and No Green Sockets", "8% increased Explicit Lightning Modifier magnitudes", "Has no Blue Sockets", statOrder = { 48, 64 }, level = 20, group = "WeaponEnchantmentHeistLightningModifierEffectNoGreenSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3837805260] = { "Has no Blue Sockets" }, [3624940721] = { "8% increased Explicit Lightning Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistLightningEffectWhiteSockets1_"] = { affix = "Enchantment Lightning Modifier Effect and White Sockets", "8% increased Explicit Lightning Modifier magnitudes", "Has 1 White Socket", statOrder = { 48, 77 }, level = 20, group = "WeaponEnchantmentHeistLightningModifierEffectWhiteSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [931294424] = { "Has 1 White Socket" }, [3624940721] = { "8% increased Explicit Lightning Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistColdEffectSpeedEffect1"] = { affix = "Enchantment Cold Modifier Effect and Speed Modifier Effect", "6% increased Explicit Cold Modifier magnitudes", "6% increased Explicit Speed Modifier magnitudes", statOrder = { 42, 52 }, level = 70, group = "WeaponEnchantmentHeistColdModifierEffectSpeedModifierEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3206904707] = { "6% increased Explicit Cold Modifier magnitudes" }, [363924732] = { "6% increased Explicit Speed Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistColdEffectCriticalEffect1_"] = { affix = "Enchantment Cold Modifier Effect and Critical Modifier Effect", "6% increased Explicit Cold Modifier magnitudes", "6% increased Explicit Critical Modifier magnitudes", statOrder = { 42, 43 }, level = 70, group = "WeaponEnchantmentHeistColdModifierEffectCriticalModifierEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3206904707] = { "6% increased Explicit Cold Modifier magnitudes" }, [2393315299] = { "6% increased Explicit Critical Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistColdEffectAttributeEffect1"] = { affix = "Enchantment Cold Modifier Effect and Attribute Modifier Effect", "6% increased Explicit Attribute Modifier magnitudes", "6% increased Explicit Cold Modifier magnitudes", statOrder = { 39, 42 }, level = 70, group = "WeaponEnchantmentHeistColdModifierEffectAttributeModifierEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3206904707] = { "6% increased Explicit Cold Modifier magnitudes" }, [3243861579] = { "6% increased Explicit Attribute Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistColdEffectAilmentEffect1"] = { affix = "Enchantment Cold Modifier Effect and Ailment Modifier Effect", "6% increased Explicit Ailment Modifier magnitudes", "6% increased Explicit Cold Modifier magnitudes", statOrder = { 38, 42 }, level = 70, group = "WeaponEnchantmentHeistColdModifierEffectAilmentModifierEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3206904707] = { "6% increased Explicit Cold Modifier magnitudes" }, [3086446674] = { "6% increased Explicit Ailment Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistColdEffectAttributeRequirement1"] = { affix = "Enchantment Cold Modifier Effect and Attribute Requirement", "6% increased Explicit Cold Modifier magnitudes", "25% reduced Attribute Requirements", statOrder = { 42, 1075 }, level = 20, group = "WeaponEnchantmentHeistColdModifierEffectAttributeRequirement", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3206904707] = { "6% increased Explicit Cold Modifier magnitudes" }, [3639275092] = { "25% reduced Attribute Requirements" }, } }, - ["WeaponEnchantmentHeistColdEffectSocketsAreLinked1"] = { affix = "Enchantment Cold Modifier Effect and Sockets Are Linked", "6% increased Explicit Cold Modifier magnitudes", "All Sockets Linked", statOrder = { 42, 71 }, level = 20, group = "WeaponEnchantmentHeistColdModifierEffectSocketsAreLinked", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3206904707] = { "6% increased Explicit Cold Modifier magnitudes" }, [2740018301] = { "All Sockets Linked" }, } }, - ["WeaponEnchantmentHeistColdEffectNoRedSockets1"] = { affix = "Enchantment Cold Modifier Effect and No Red Sockets", "8% increased Explicit Cold Modifier magnitudes", "Has no Red Sockets", statOrder = { 42, 66 }, level = 20, group = "WeaponEnchantmentHeistColdModifierEffectNoRedSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3206904707] = { "8% increased Explicit Cold Modifier magnitudes" }, [320043039] = { "Has no Red Sockets" }, } }, - ["WeaponEnchantmentHeistColdEffectNoBlueSockets1"] = { affix = "Enchantment Cold Modifier Effect and No Blue Sockets", "8% increased Explicit Cold Modifier magnitudes", "Has no Green Sockets", statOrder = { 42, 65 }, level = 20, group = "WeaponEnchantmentHeistColdModifierEffectNoBlueSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3206904707] = { "8% increased Explicit Cold Modifier magnitudes" }, [1615727675] = { "Has no Green Sockets" }, } }, - ["WeaponEnchantmentHeistColdEffectNoGreenSockets1"] = { affix = "Enchantment Cold Modifier Effect and No Green Sockets", "8% increased Explicit Cold Modifier magnitudes", "Has no Blue Sockets", statOrder = { 42, 64 }, level = 20, group = "WeaponEnchantmentHeistColdModifierEffectNoGreenSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3206904707] = { "8% increased Explicit Cold Modifier magnitudes" }, [3837805260] = { "Has no Blue Sockets" }, } }, - ["WeaponEnchantmentHeistColdEffectWhiteSockets1___"] = { affix = "Enchantment Cold Modifier Effect and White Sockets", "8% increased Explicit Cold Modifier magnitudes", "Has 1 White Socket", statOrder = { 42, 77 }, level = 20, group = "WeaponEnchantmentHeistColdModifierEffectWhiteSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3206904707] = { "8% increased Explicit Cold Modifier magnitudes" }, [931294424] = { "Has 1 White Socket" }, } }, - ["WeaponEnchantmentHeistChaosEffectSpeedEffect1_"] = { affix = "Enchantment Chaos Modifier Effect and Speed Modifier Effect", "6% increased Explicit Chaos Modifier magnitudes", "6% increased Explicit Speed Modifier magnitudes", statOrder = { 41, 52 }, level = 70, group = "WeaponEnchantmentHeistChaosModifierEffectSpeedModifierEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3196512240] = { "6% increased Explicit Chaos Modifier magnitudes" }, [363924732] = { "6% increased Explicit Speed Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistChaosEffectCriticalEffect1"] = { affix = "Enchantment Chaos Modifier Effect and Critical Modifier Effect", "6% increased Explicit Chaos Modifier magnitudes", "6% increased Explicit Critical Modifier magnitudes", statOrder = { 41, 43 }, level = 70, group = "WeaponEnchantmentHeistChaosModifierEffectCriticalModifierEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3196512240] = { "6% increased Explicit Chaos Modifier magnitudes" }, [2393315299] = { "6% increased Explicit Critical Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistChaosEffectAttributeEffect1"] = { affix = "Enchantment Chaos Modifier Effect and Attribute Modifier Effect", "6% increased Explicit Attribute Modifier magnitudes", "6% increased Explicit Chaos Modifier magnitudes", statOrder = { 39, 41 }, level = 70, group = "WeaponEnchantmentHeistChaosModifierEffectAttributeModifierEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3196512240] = { "6% increased Explicit Chaos Modifier magnitudes" }, [3243861579] = { "6% increased Explicit Attribute Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistChaosEffectAilmentEffect1_"] = { affix = "Enchantment Chaos Modifier Effect and Ailment Modifier Effect", "6% increased Explicit Ailment Modifier magnitudes", "6% increased Explicit Chaos Modifier magnitudes", statOrder = { 38, 41 }, level = 70, group = "WeaponEnchantmentHeistChaosModifierEffectAilmentModifierEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3196512240] = { "6% increased Explicit Chaos Modifier magnitudes" }, [3086446674] = { "6% increased Explicit Ailment Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistChaosEffectAttributeRequirement1_"] = { affix = "Enchantment Chaos Modifier Effect and Attribute Requirement", "6% increased Explicit Chaos Modifier magnitudes", "25% reduced Attribute Requirements", statOrder = { 41, 1075 }, level = 20, group = "WeaponEnchantmentHeistChaosModifierEffectAttributeRequirement", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3196512240] = { "6% increased Explicit Chaos Modifier magnitudes" }, [3639275092] = { "25% reduced Attribute Requirements" }, } }, - ["WeaponEnchantmentHeistChaosEffectSocketsAreLinked1_"] = { affix = "Enchantment Chaos Modifier Effect and Sockets Are Linked", "6% increased Explicit Chaos Modifier magnitudes", "All Sockets Linked", statOrder = { 41, 71 }, level = 20, group = "WeaponEnchantmentHeistChaosModifierEffectSocketsAreLinked", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3196512240] = { "6% increased Explicit Chaos Modifier magnitudes" }, [2740018301] = { "All Sockets Linked" }, } }, - ["WeaponEnchantmentHeistChaosEffectNoRedSockets1___"] = { affix = "Enchantment Chaos Modifier Effect and No Red Sockets", "8% increased Explicit Chaos Modifier magnitudes", "Has no Red Sockets", statOrder = { 41, 66 }, level = 20, group = "WeaponEnchantmentHeistChaosModifierEffectNoRedSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3196512240] = { "8% increased Explicit Chaos Modifier magnitudes" }, [320043039] = { "Has no Red Sockets" }, } }, - ["WeaponEnchantmentHeistChaosEffectNoBlueSockets1"] = { affix = "Enchantment Chaos Modifier Effect and No Blue Sockets", "8% increased Explicit Chaos Modifier magnitudes", "Has no Green Sockets", statOrder = { 41, 65 }, level = 20, group = "WeaponEnchantmentHeistChaosModifierEffectNoBlueSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3196512240] = { "8% increased Explicit Chaos Modifier magnitudes" }, [1615727675] = { "Has no Green Sockets" }, } }, - ["WeaponEnchantmentHeistChaosEffectNoGreenSockets1"] = { affix = "Enchantment Chaos Modifier Effect and No Green Sockets", "8% increased Explicit Chaos Modifier magnitudes", "Has no Blue Sockets", statOrder = { 41, 64 }, level = 20, group = "WeaponEnchantmentHeistChaosModifierEffectNoGreenSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3196512240] = { "8% increased Explicit Chaos Modifier magnitudes" }, [3837805260] = { "Has no Blue Sockets" }, } }, - ["WeaponEnchantmentHeistChaosEffectWhiteSockets1"] = { affix = "Enchantment Chaos Modifier Effect and White Sockets", "8% increased Explicit Chaos Modifier magnitudes", "Has 1 White Socket", statOrder = { 41, 77 }, level = 20, group = "WeaponEnchantmentHeistChaosModifierEffectWhiteSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3196512240] = { "8% increased Explicit Chaos Modifier magnitudes" }, [931294424] = { "Has 1 White Socket" }, } }, - ["WeaponEnchantmentHeistCasterDamageEffectSpeedEffect1"] = { affix = "Enchantment Caster Damage Modifier Effect and Speed Modifier Effect", "6% increased Explicit Caster Damage Modifier magnitudes", "6% increased Explicit Speed Modifier magnitudes", statOrder = { 40, 52 }, level = 70, group = "WeaponEnchantmentHeistCasterDamageModifierEffectSpeedModifierEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [363924732] = { "6% increased Explicit Speed Modifier magnitudes" }, [1498186316] = { "6% increased Explicit Caster Damage Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistCasterDamageEffectCriticalEffect1"] = { affix = "Enchantment Caster Damage Modifier Effect and Critical Modifier Effect", "6% increased Explicit Caster Damage Modifier magnitudes", "6% increased Explicit Critical Modifier magnitudes", statOrder = { 40, 43 }, level = 70, group = "WeaponEnchantmentHeistCasterDamageModifierEffectCriticalModifierEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2393315299] = { "6% increased Explicit Critical Modifier magnitudes" }, [1498186316] = { "6% increased Explicit Caster Damage Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistCasterDamageEffectAttributeEffect1"] = { affix = "Enchantment Caster Damage Modifier Effect and Attribute Modifier Effect", "6% increased Explicit Attribute Modifier magnitudes", "6% increased Explicit Caster Damage Modifier magnitudes", statOrder = { 39, 40 }, level = 70, group = "WeaponEnchantmentHeistCasterDamageModifierEffectAttributeModifierEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3243861579] = { "6% increased Explicit Attribute Modifier magnitudes" }, [1498186316] = { "6% increased Explicit Caster Damage Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistCasterDamageEffectAilmentEffect1_"] = { affix = "Enchantment Caster Damage Modifier Effect and Ailment Modifier Effect", "6% increased Explicit Ailment Modifier magnitudes", "6% increased Explicit Caster Damage Modifier magnitudes", statOrder = { 38, 40 }, level = 70, group = "WeaponEnchantmentHeistCasterDamageModifierEffectAilmentModifierEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3086446674] = { "6% increased Explicit Ailment Modifier magnitudes" }, [1498186316] = { "6% increased Explicit Caster Damage Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistCasterDamageEffectAttributeRequirement1_"] = { affix = "Enchantment Caster Damage Modifier Effect and Attribute Requirement", "6% increased Explicit Caster Damage Modifier magnitudes", "25% reduced Attribute Requirements", statOrder = { 40, 1075 }, level = 20, group = "WeaponEnchantmentHeistCasterDamageModifierEffectAttributeRequirement", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3639275092] = { "25% reduced Attribute Requirements" }, [1498186316] = { "6% increased Explicit Caster Damage Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistCasterDamageEffectSocketsAreLinked1"] = { affix = "Enchantment Caster Damage Modifier Effect and Sockets Are Linked", "6% increased Explicit Caster Damage Modifier magnitudes", "All Sockets Linked", statOrder = { 40, 71 }, level = 20, group = "WeaponEnchantmentHeistCasterDamageModifierEffectSocketsAreLinked", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2740018301] = { "All Sockets Linked" }, [1498186316] = { "6% increased Explicit Caster Damage Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistCasterDamageEffectNoRedSockets1_"] = { affix = "Enchantment Caster Damage Modifier Effect and No Red Sockets", "8% increased Explicit Caster Damage Modifier magnitudes", "Has no Red Sockets", statOrder = { 40, 66 }, level = 20, group = "WeaponEnchantmentHeistCasterDamageModifierEffectNoRedSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [320043039] = { "Has no Red Sockets" }, [1498186316] = { "8% increased Explicit Caster Damage Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistCasterDamageEffectNoBlueSockets1_"] = { affix = "Enchantment Caster Damage Modifier Effect and No Blue Sockets", "8% increased Explicit Caster Damage Modifier magnitudes", "Has no Green Sockets", statOrder = { 40, 65 }, level = 20, group = "WeaponEnchantmentHeistCasterDamageModifierEffectNoBlueSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1615727675] = { "Has no Green Sockets" }, [1498186316] = { "8% increased Explicit Caster Damage Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistCasterDamageEffectNoGreenSockets1"] = { affix = "Enchantment Caster Damage Modifier Effect and No Green Sockets", "8% increased Explicit Caster Damage Modifier magnitudes", "Has no Blue Sockets", statOrder = { 40, 64 }, level = 20, group = "WeaponEnchantmentHeistCasterDamageModifierEffectNoGreenSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3837805260] = { "Has no Blue Sockets" }, [1498186316] = { "8% increased Explicit Caster Damage Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistCasterDamageEffectWhiteSockets1"] = { affix = "Enchantment Caster Damage Modifier Effect and White Sockets", "8% increased Explicit Caster Damage Modifier magnitudes", "Has 1 White Socket", statOrder = { 40, 77 }, level = 20, group = "WeaponEnchantmentHeistCasterDamageModifierEffectWhiteSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [931294424] = { "Has 1 White Socket" }, [1498186316] = { "8% increased Explicit Caster Damage Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistManaEffectSpeedEffect1"] = { affix = "Enchantment Mana Modifier Effect and Speed Modifier Effect", "6% increased Explicit Mana Modifier magnitudes", "6% increased Explicit Speed Modifier magnitudes", statOrder = { 49, 52 }, level = 70, group = "WeaponEnchantmentHeistManaModifierEffectSpeedModifierEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [363924732] = { "6% increased Explicit Speed Modifier magnitudes" }, [3514984677] = { "6% increased Explicit Mana Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistManaEffectCriticalEffect1"] = { affix = "Enchantment Mana Modifier Effect and Critical Modifier Effect", "6% increased Explicit Critical Modifier magnitudes", "6% increased Explicit Mana Modifier magnitudes", statOrder = { 43, 49 }, level = 70, group = "WeaponEnchantmentHeistManaModifierEffectCriticalModifierEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2393315299] = { "6% increased Explicit Critical Modifier magnitudes" }, [3514984677] = { "6% increased Explicit Mana Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistManaEffectAttributeEffect1_"] = { affix = "Enchantment Mana Modifier Effect and Attribute Modifier Effect", "6% increased Explicit Attribute Modifier magnitudes", "6% increased Explicit Mana Modifier magnitudes", statOrder = { 39, 49 }, level = 70, group = "WeaponEnchantmentHeistManaModifierEffectAttributeModifierEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3243861579] = { "6% increased Explicit Attribute Modifier magnitudes" }, [3514984677] = { "6% increased Explicit Mana Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistManaEffectAilmentEffect1"] = { affix = "Enchantment Mana Modifier Effect and Ailment Modifier Effect", "6% increased Explicit Ailment Modifier magnitudes", "6% increased Explicit Mana Modifier magnitudes", statOrder = { 38, 49 }, level = 70, group = "WeaponEnchantmentHeistManaModifierEffectAilmentModifierEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3086446674] = { "6% increased Explicit Ailment Modifier magnitudes" }, [3514984677] = { "6% increased Explicit Mana Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistManaEffectAttributeRequirement1"] = { affix = "Enchantment Mana Modifier Effect and Attribute Requirement", "6% increased Explicit Mana Modifier magnitudes", "25% reduced Attribute Requirements", statOrder = { 49, 1075 }, level = 20, group = "WeaponEnchantmentHeistManaModifierEffectAttributeRequirement", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3639275092] = { "25% reduced Attribute Requirements" }, [3514984677] = { "6% increased Explicit Mana Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistManaEffectSocketsAreLinked1"] = { affix = "Enchantment Mana Modifier Effect and Sockets Are Linked", "6% increased Explicit Mana Modifier magnitudes", "All Sockets Linked", statOrder = { 49, 71 }, level = 20, group = "WeaponEnchantmentHeistManaModifierEffectSocketsAreLinked", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2740018301] = { "All Sockets Linked" }, [3514984677] = { "6% increased Explicit Mana Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistManaEffectNoRedSockets1"] = { affix = "Enchantment Mana Modifier Effect and No Red Sockets", "8% increased Explicit Mana Modifier magnitudes", "Has no Red Sockets", statOrder = { 49, 66 }, level = 20, group = "WeaponEnchantmentHeistManaModifierEffectNoRedSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [320043039] = { "Has no Red Sockets" }, [3514984677] = { "8% increased Explicit Mana Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistManaEffectNoBlueSockets1__"] = { affix = "Enchantment Mana Modifier Effect and No Blue Sockets", "8% increased Explicit Mana Modifier magnitudes", "Has no Green Sockets", statOrder = { 49, 65 }, level = 20, group = "WeaponEnchantmentHeistManaModifierEffectNoBlueSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1615727675] = { "Has no Green Sockets" }, [3514984677] = { "8% increased Explicit Mana Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistManaEffectNoGreenSockets1"] = { affix = "Enchantment Mana Modifier Effect and No Green Sockets", "8% increased Explicit Mana Modifier magnitudes", "Has no Blue Sockets", statOrder = { 49, 64 }, level = 20, group = "WeaponEnchantmentHeistManaModifierEffectNoGreenSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3837805260] = { "Has no Blue Sockets" }, [3514984677] = { "8% increased Explicit Mana Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistManaEffectWhiteSockets1"] = { affix = "Enchantment Mana Modifier Effect and White Sockets", "8% increased Explicit Mana Modifier magnitudes", "Has 1 White Socket", statOrder = { 49, 77 }, level = 20, group = "WeaponEnchantmentHeistManaModifierEffectWhiteSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [931294424] = { "Has 1 White Socket" }, [3514984677] = { "8% increased Explicit Mana Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistSpeedEffectAttributeRequirement1__"] = { affix = "Enchantment Speed Modifier Effect and Attribute Requirement", "6% increased Explicit Speed Modifier magnitudes", "25% reduced Attribute Requirements", statOrder = { 52, 1075 }, level = 20, group = "WeaponEnchantmentHeistSpeedModifierEffectAttributeRequirement", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3639275092] = { "25% reduced Attribute Requirements" }, [363924732] = { "6% increased Explicit Speed Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistSpeedEffectSocketsAreLinked1__"] = { affix = "Enchantment Speed Modifier Effect and Sockets Are Linked", "6% increased Explicit Speed Modifier magnitudes", "All Sockets Linked", statOrder = { 52, 71 }, level = 20, group = "WeaponEnchantmentHeistSpeedModifierEffectSocketsAreLinked", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2740018301] = { "All Sockets Linked" }, [363924732] = { "6% increased Explicit Speed Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistSpeedEffectNoRedSockets1"] = { affix = "Enchantment Speed Modifier Effect and No Red Sockets", "8% increased Explicit Speed Modifier magnitudes", "Has no Red Sockets", statOrder = { 52, 66 }, level = 20, group = "WeaponEnchantmentHeistSpeedModifierEffectNoRedSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [320043039] = { "Has no Red Sockets" }, [363924732] = { "8% increased Explicit Speed Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistSpeedEffectNoBlueSockets1"] = { affix = "Enchantment Speed Modifier Effect and No Blue Sockets", "8% increased Explicit Speed Modifier magnitudes", "Has no Green Sockets", statOrder = { 52, 65 }, level = 20, group = "WeaponEnchantmentHeistSpeedModifierEffectNoBlueSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1615727675] = { "Has no Green Sockets" }, [363924732] = { "8% increased Explicit Speed Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistSpeedEffectNoGreenSockets1"] = { affix = "Enchantment Speed Modifier Effect and No Green Sockets", "8% increased Explicit Speed Modifier magnitudes", "Has no Blue Sockets", statOrder = { 52, 64 }, level = 20, group = "WeaponEnchantmentHeistSpeedModifierEffectNoGreenSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3837805260] = { "Has no Blue Sockets" }, [363924732] = { "8% increased Explicit Speed Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistSpeedEffectWhiteSockets1_"] = { affix = "Enchantment Speed Modifier Effect and White Sockets", "8% increased Explicit Speed Modifier magnitudes", "Has 1 White Socket", statOrder = { 52, 77 }, level = 20, group = "WeaponEnchantmentHeistSpeedModifierEffectWhiteSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [931294424] = { "Has 1 White Socket" }, [363924732] = { "8% increased Explicit Speed Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistCriticalEffectAttributeRequirement1_"] = { affix = "Enchantment Critical Modifier Effect and Attribute Requirement", "6% increased Explicit Critical Modifier magnitudes", "25% reduced Attribute Requirements", statOrder = { 43, 1075 }, level = 30, group = "WeaponEnchantmentHeistCriticalModifierEffectAttributeRequirement", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3639275092] = { "25% reduced Attribute Requirements" }, [2393315299] = { "6% increased Explicit Critical Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistCriticalEffectSocketsAreLinked1"] = { affix = "Enchantment Critical Modifier Effect and Sockets Are Linked", "6% increased Explicit Critical Modifier magnitudes", "All Sockets Linked", statOrder = { 43, 71 }, level = 30, group = "WeaponEnchantmentHeistCriticalModifierEffectSocketsAreLinked", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2740018301] = { "All Sockets Linked" }, [2393315299] = { "6% increased Explicit Critical Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistCriticalEffectNoRedSockets1"] = { affix = "Enchantment Critical Modifier Effect and No Red Sockets", "8% increased Explicit Critical Modifier magnitudes", "Has no Red Sockets", statOrder = { 43, 66 }, level = 30, group = "WeaponEnchantmentHeistCriticalModifierEffectNoRedSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [320043039] = { "Has no Red Sockets" }, [2393315299] = { "8% increased Explicit Critical Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistCriticalEffectNoBlueSockets1"] = { affix = "Enchantment Critical Modifier Effect and No Blue Sockets", "8% increased Explicit Critical Modifier magnitudes", "Has no Green Sockets", statOrder = { 43, 65 }, level = 30, group = "WeaponEnchantmentHeistCriticalModifierEffectNoBlueSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1615727675] = { "Has no Green Sockets" }, [2393315299] = { "8% increased Explicit Critical Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistCriticalEffectNoGreenSockets1"] = { affix = "Enchantment Critical Modifier Effect and No Green Sockets", "8% increased Explicit Critical Modifier magnitudes", "Has no Blue Sockets", statOrder = { 43, 64 }, level = 30, group = "WeaponEnchantmentHeistCriticalModifierEffectNoGreenSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3837805260] = { "Has no Blue Sockets" }, [2393315299] = { "8% increased Explicit Critical Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistCriticalEffectWhiteSockets1_"] = { affix = "Enchantment Critical Modifier Effect and White Sockets", "8% increased Explicit Critical Modifier magnitudes", "Has 1 White Socket", statOrder = { 43, 77 }, level = 30, group = "WeaponEnchantmentHeistCriticalModifierEffectWhiteSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [931294424] = { "Has 1 White Socket" }, [2393315299] = { "8% increased Explicit Critical Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistAttributeEffectAttributeRequirement1"] = { affix = "Enchantment Attribute Modifier Effect and Attribute Requirement", "6% increased Explicit Attribute Modifier magnitudes", "25% reduced Attribute Requirements", statOrder = { 39, 1075 }, level = 20, group = "WeaponEnchantmentHeistAttributeModifierEffectAttributeRequirement", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3639275092] = { "25% reduced Attribute Requirements" }, [3243861579] = { "6% increased Explicit Attribute Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistAttributeEffectSocketsAreLinked1_"] = { affix = "Enchantment Attribute Modifier Effect and Sockets Are Linked", "6% increased Explicit Attribute Modifier magnitudes", "All Sockets Linked", statOrder = { 39, 71 }, level = 20, group = "WeaponEnchantmentHeistAttributeModifierEffectSocketsAreLinked", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2740018301] = { "All Sockets Linked" }, [3243861579] = { "6% increased Explicit Attribute Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistAttributeEffectNoRedSockets1"] = { affix = "Enchantment Attribute Modifier Effect and No Red Sockets", "8% increased Explicit Attribute Modifier magnitudes", "Has no Red Sockets", statOrder = { 39, 66 }, level = 20, group = "WeaponEnchantmentHeistAttributeModifierEffectNoRedSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [320043039] = { "Has no Red Sockets" }, [3243861579] = { "8% increased Explicit Attribute Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistAttributeEffectNoBlueSockets1_"] = { affix = "Enchantment Attribute Modifier Effect and No Blue Sockets", "8% increased Explicit Attribute Modifier magnitudes", "Has no Green Sockets", statOrder = { 39, 65 }, level = 20, group = "WeaponEnchantmentHeistAttributeModifierEffectNoBlueSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1615727675] = { "Has no Green Sockets" }, [3243861579] = { "8% increased Explicit Attribute Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistAttributeEffectNoGreenSockets1"] = { affix = "Enchantment Attribute Modifier Effect and No Green Sockets", "8% increased Explicit Attribute Modifier magnitudes", "Has no Blue Sockets", statOrder = { 39, 64 }, level = 20, group = "WeaponEnchantmentHeistAttributeModifierEffectNoGreenSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3837805260] = { "Has no Blue Sockets" }, [3243861579] = { "8% increased Explicit Attribute Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistAttributeEffectWhiteSockets1_"] = { affix = "Enchantment Attribute Modifier Effect and White Sockets", "8% increased Explicit Attribute Modifier magnitudes", "Has 1 White Socket", statOrder = { 39, 77 }, level = 20, group = "WeaponEnchantmentHeistAttributeModifierEffectWhiteSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [931294424] = { "Has 1 White Socket" }, [3243861579] = { "8% increased Explicit Attribute Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistAilmentEffectAttributeRequirement1_"] = { affix = "Enchantment Ailment Modifier Effect and Attribute Requirement", "6% increased Explicit Ailment Modifier magnitudes", "25% reduced Attribute Requirements", statOrder = { 38, 1075 }, level = 20, group = "WeaponEnchantmentHeistAilmentModifierEffectAttributeRequirement", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3086446674] = { "6% increased Explicit Ailment Modifier magnitudes" }, [3639275092] = { "25% reduced Attribute Requirements" }, } }, - ["WeaponEnchantmentHeistAilmentEffectSocketsAreLinked1"] = { affix = "Enchantment Ailment Modifier Effect and Sockets Are Linked", "6% increased Explicit Ailment Modifier magnitudes", "All Sockets Linked", statOrder = { 38, 71 }, level = 20, group = "WeaponEnchantmentHeistAilmentModifierEffectSocketsAreLinked", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3086446674] = { "6% increased Explicit Ailment Modifier magnitudes" }, [2740018301] = { "All Sockets Linked" }, } }, - ["WeaponEnchantmentHeistAilmentEffectNoRedSockets1_"] = { affix = "Enchantment Ailment Modifier Effect and No Red Sockets", "8% increased Explicit Ailment Modifier magnitudes", "Has no Red Sockets", statOrder = { 38, 66 }, level = 20, group = "WeaponEnchantmentHeistAilmentModifierEffectNoRedSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3086446674] = { "8% increased Explicit Ailment Modifier magnitudes" }, [320043039] = { "Has no Red Sockets" }, } }, - ["WeaponEnchantmentHeistAilmentEffectNoBlueSockets1__"] = { affix = "Enchantment Ailment Modifier Effect and No Blue Sockets", "8% increased Explicit Ailment Modifier magnitudes", "Has no Green Sockets", statOrder = { 38, 65 }, level = 20, group = "WeaponEnchantmentHeistAilmentModifierEffectNoBlueSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3086446674] = { "8% increased Explicit Ailment Modifier magnitudes" }, [1615727675] = { "Has no Green Sockets" }, } }, - ["WeaponEnchantmentHeistAilmentEffectNoGreenSockets1"] = { affix = "Enchantment Ailment Modifier Effect and No Green Sockets", "8% increased Explicit Ailment Modifier magnitudes", "Has no Blue Sockets", statOrder = { 38, 64 }, level = 20, group = "WeaponEnchantmentHeistAilmentModifierEffectNoGreenSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3086446674] = { "8% increased Explicit Ailment Modifier magnitudes" }, [3837805260] = { "Has no Blue Sockets" }, } }, - ["WeaponEnchantmentHeistAilmentEffectWhiteSockets1"] = { affix = "Enchantment Ailment Modifier Effect and White Sockets", "8% increased Explicit Ailment Modifier magnitudes", "Has 1 White Socket", statOrder = { 38, 77 }, level = 20, group = "WeaponEnchantmentHeistAilmentModifierEffectWhiteSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3086446674] = { "8% increased Explicit Ailment Modifier magnitudes" }, [931294424] = { "Has 1 White Socket" }, } }, - ["WeaponEnchantmentHeistPhysicalEffectSpeedEffectPenalty1___"] = { affix = "Enchantment Physical Modifier Effect and Speed Modifier Effect Penalty", "10% increased Explicit Physical Modifier magnitudes", "25% reduced Explicit Speed Modifier magnitudes", statOrder = { 50, 52 }, level = 69, group = "WeaponEnchantmentHeistPhysicalModifierEffectSpeedModifierEffectPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [363924732] = { "25% reduced Explicit Speed Modifier magnitudes" }, [1335369947] = { "10% increased Explicit Physical Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistPhysicalEffectCriticalEffectPenalty1"] = { affix = "Enchantment Physical Modifier Effect and Critical Modifier Effect Penalty", "25% reduced Explicit Critical Modifier magnitudes", "10% increased Explicit Physical Modifier magnitudes", statOrder = { 43, 50 }, level = 69, group = "WeaponEnchantmentHeistPhysicalModifierEffectCriticalModifierEffectPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2393315299] = { "25% reduced Explicit Critical Modifier magnitudes" }, [1335369947] = { "10% increased Explicit Physical Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistPhysicalEffectSocketPenalty1"] = { affix = "Enchantment Physical Modifier Effect and Socket Penalty", "15% increased Explicit Physical Modifier magnitudes", "-3 to maximum Sockets", statOrder = { 50, 78 }, level = 69, group = "WeaponEnchantmentHeistPhysicalModifierEffectSocketPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4099204231] = { "-3 to maximum Sockets" }, [1335369947] = { "15% increased Explicit Physical Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistPhysicalEffectAttributeRequirementPenalty1"] = { affix = "Enchantment Physical Modifier Effect and Attribute Requirement Penalty", "15% increased Explicit Physical Modifier magnitudes", "200% increased Attribute Requirements", statOrder = { 50, 1075 }, level = 69, group = "WeaponEnchantmentHeistPhysicalModifierEffectAttributeRequirementPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3639275092] = { "200% increased Attribute Requirements" }, [1335369947] = { "15% increased Explicit Physical Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistPhysicalEffectOnlyRedSockets1"] = { affix = "Enchantment Physical Modifier Effect and Only Red Sockets", "10% increased Explicit Physical Modifier magnitudes", "All Sockets are Red", statOrder = { 50, 75 }, level = 69, group = "WeaponEnchantmentHeistPhysicalModifierEffectOnlyRedSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1918718830] = { "All Sockets are Red" }, [1335369947] = { "10% increased Explicit Physical Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistPhysicalEffectOnlyBlueSockets1_"] = { affix = "Enchantment Physical Modifier Effect and Only Blue Sockets", "10% increased Explicit Physical Modifier magnitudes", "All Sockets are Blue", statOrder = { 50, 73 }, level = 69, group = "WeaponEnchantmentHeistPhysicalModifierEffectOnlyBlueSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2803653753] = { "All Sockets are Blue" }, [1335369947] = { "10% increased Explicit Physical Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistPhysicalEffectOnlyGreenSockets1"] = { affix = "Enchantment Physical Modifier Effect and Only Green Sockets", "10% increased Explicit Physical Modifier magnitudes", "All Sockets are Green", statOrder = { 50, 74 }, level = 69, group = "WeaponEnchantmentHeistPhysicalModifierEffectOnlyGreenSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2849380136] = { "All Sockets are Green" }, [1335369947] = { "10% increased Explicit Physical Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistFireEffectSpeedEffectPenalty1"] = { affix = "Enchantment Fire Modifier Effect and Speed Modifier Effect Penalty", "10% increased Explicit Fire Modifier magnitudes", "25% reduced Explicit Speed Modifier magnitudes", statOrder = { 46, 52 }, level = 69, group = "WeaponEnchantmentHeistFireModifierEffectSpeedModifierEffectPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3574578302] = { "10% increased Explicit Fire Modifier magnitudes" }, [363924732] = { "25% reduced Explicit Speed Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistFireEffectCriticalEffectPenalty1"] = { affix = "Enchantment Fire Modifier Effect and Critical Modifier Effect Penalty", "25% reduced Explicit Critical Modifier magnitudes", "10% increased Explicit Fire Modifier magnitudes", statOrder = { 43, 46 }, level = 69, group = "WeaponEnchantmentHeistFireModifierEffectCriticalModifierEffectPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3574578302] = { "10% increased Explicit Fire Modifier magnitudes" }, [2393315299] = { "25% reduced Explicit Critical Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistFireEffectSocketPenalty1"] = { affix = "Enchantment Fire Modifier Effect and Socket Penalty", "15% increased Explicit Fire Modifier magnitudes", "-3 to maximum Sockets", statOrder = { 46, 78 }, level = 69, group = "WeaponEnchantmentHeistFireModifierEffectSocketPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3574578302] = { "15% increased Explicit Fire Modifier magnitudes" }, [4099204231] = { "-3 to maximum Sockets" }, } }, - ["WeaponEnchantmentHeistFireEffectAttributeRequirementPenalty1"] = { affix = "Enchantment Fire Modifier Effect and Attribute Requirement Penalty", "15% increased Explicit Fire Modifier magnitudes", "200% increased Attribute Requirements", statOrder = { 46, 1075 }, level = 69, group = "WeaponEnchantmentHeistFireModifierEffectAttributeRequirementPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3574578302] = { "15% increased Explicit Fire Modifier magnitudes" }, [3639275092] = { "200% increased Attribute Requirements" }, } }, - ["WeaponEnchantmentHeistFireEffectOnlyRedSockets1"] = { affix = "Enchantment Fire Modifier Effect and Only Red Sockets", "10% increased Explicit Fire Modifier magnitudes", "All Sockets are Red", statOrder = { 46, 75 }, level = 69, group = "WeaponEnchantmentHeistFireModifierEffectOnlyRedSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3574578302] = { "10% increased Explicit Fire Modifier magnitudes" }, [1918718830] = { "All Sockets are Red" }, } }, - ["WeaponEnchantmentHeistFireEffectOnlyBlueSockets1"] = { affix = "Enchantment Fire Modifier Effect and Only Blue Sockets", "10% increased Explicit Fire Modifier magnitudes", "All Sockets are Blue", statOrder = { 46, 73 }, level = 69, group = "WeaponEnchantmentHeistFireModifierEffectOnlyBlueSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3574578302] = { "10% increased Explicit Fire Modifier magnitudes" }, [2803653753] = { "All Sockets are Blue" }, } }, - ["WeaponEnchantmentHeistFireEffectOnlyGreenSockets1"] = { affix = "Enchantment Fire Modifier Effect and Only Green Sockets", "10% increased Explicit Fire Modifier magnitudes", "All Sockets are Green", statOrder = { 46, 74 }, level = 69, group = "WeaponEnchantmentHeistFireModifierEffectOnlyGreenSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3574578302] = { "10% increased Explicit Fire Modifier magnitudes" }, [2849380136] = { "All Sockets are Green" }, } }, - ["WeaponEnchantmentHeistLightningEffectSpeedEffectPenalty1"] = { affix = "Enchantment Lightning Modifier Effect and Speed Modifier Effect Penalty", "10% increased Explicit Lightning Modifier magnitudes", "25% reduced Explicit Speed Modifier magnitudes", statOrder = { 48, 52 }, level = 69, group = "WeaponEnchantmentHeistLightningModifierEffectSpeedModifierEffectPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [363924732] = { "25% reduced Explicit Speed Modifier magnitudes" }, [3624940721] = { "10% increased Explicit Lightning Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistLightningEffectCriticalEffectPenalty1_"] = { affix = "Enchantment Lightning Modifier Effect and Critical Modifier Effect Penalty", "25% reduced Explicit Critical Modifier magnitudes", "10% increased Explicit Lightning Modifier magnitudes", statOrder = { 43, 48 }, level = 69, group = "WeaponEnchantmentHeistLightningModifierEffectCriticalModifierEffectPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2393315299] = { "25% reduced Explicit Critical Modifier magnitudes" }, [3624940721] = { "10% increased Explicit Lightning Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistLightningEffectSocketPenalty1"] = { affix = "Enchantment Lightning Modifier Effect and Socket Penalty", "15% increased Explicit Lightning Modifier magnitudes", "-3 to maximum Sockets", statOrder = { 48, 78 }, level = 69, group = "WeaponEnchantmentHeistLightningModifierEffectSocketPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4099204231] = { "-3 to maximum Sockets" }, [3624940721] = { "15% increased Explicit Lightning Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistLightningEffectAttributeRequirementPenalty1"] = { affix = "Enchantment Lightning Modifier Effect and Attribute Requirement Penalty", "15% increased Explicit Lightning Modifier magnitudes", "200% increased Attribute Requirements", statOrder = { 48, 1075 }, level = 69, group = "WeaponEnchantmentHeistLightningModifierEffectAttributeRequirementPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3639275092] = { "200% increased Attribute Requirements" }, [3624940721] = { "15% increased Explicit Lightning Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistLightningEffectOnlyRedSockets1"] = { affix = "Enchantment Lightning Modifier Effect and Only Red Sockets", "10% increased Explicit Lightning Modifier magnitudes", "All Sockets are Red", statOrder = { 48, 75 }, level = 69, group = "WeaponEnchantmentHeistLightningModifierEffectOnlyRedSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1918718830] = { "All Sockets are Red" }, [3624940721] = { "10% increased Explicit Lightning Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistLightningEffectOnlyBlueSockets1"] = { affix = "Enchantment Lightning Modifier Effect and Only Blue Sockets", "10% increased Explicit Lightning Modifier magnitudes", "All Sockets are Blue", statOrder = { 48, 73 }, level = 69, group = "WeaponEnchantmentHeistLightningModifierEffectOnlyBlueSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2803653753] = { "All Sockets are Blue" }, [3624940721] = { "10% increased Explicit Lightning Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistLightningEffectOnlyGreenSockets1"] = { affix = "Enchantment Lightning Modifier Effect and Only Green Sockets", "10% increased Explicit Lightning Modifier magnitudes", "All Sockets are Green", statOrder = { 48, 74 }, level = 69, group = "WeaponEnchantmentHeistLightningModifierEffectOnlyGreenSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2849380136] = { "All Sockets are Green" }, [3624940721] = { "10% increased Explicit Lightning Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistColdEffectSpeedEffectPenalty1"] = { affix = "Enchantment Cold Modifier Effect and Speed Modifier Effect Penalty", "10% increased Explicit Cold Modifier magnitudes", "25% reduced Explicit Speed Modifier magnitudes", statOrder = { 42, 52 }, level = 69, group = "WeaponEnchantmentHeistColdModifierEffectSpeedModifierEffectPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3206904707] = { "10% increased Explicit Cold Modifier magnitudes" }, [363924732] = { "25% reduced Explicit Speed Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistColdEffectCriticalEffectPenalty1"] = { affix = "Enchantment Cold Modifier Effect and Critical Modifier Effect Penalty", "10% increased Explicit Cold Modifier magnitudes", "25% reduced Explicit Critical Modifier magnitudes", statOrder = { 42, 43 }, level = 69, group = "WeaponEnchantmentHeistColdModifierEffectCriticalModifierEffectPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3206904707] = { "10% increased Explicit Cold Modifier magnitudes" }, [2393315299] = { "25% reduced Explicit Critical Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistColdEffectSocketPenalty1_"] = { affix = "Enchantment Cold Modifier Effect and Socket Penalty", "15% increased Explicit Cold Modifier magnitudes", "-3 to maximum Sockets", statOrder = { 42, 78 }, level = 69, group = "WeaponEnchantmentHeistColdModifierEffectSocketPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3206904707] = { "15% increased Explicit Cold Modifier magnitudes" }, [4099204231] = { "-3 to maximum Sockets" }, } }, - ["WeaponEnchantmentHeistColdEffectAttributeRequirementPenalty1_"] = { affix = "Enchantment Cold Modifier Effect and Attribute Requirement Penalty", "15% increased Explicit Cold Modifier magnitudes", "200% increased Attribute Requirements", statOrder = { 42, 1075 }, level = 69, group = "WeaponEnchantmentHeistColdModifierEffectAttributeRequirementPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3206904707] = { "15% increased Explicit Cold Modifier magnitudes" }, [3639275092] = { "200% increased Attribute Requirements" }, } }, - ["WeaponEnchantmentHeistColdEffectOnlyRedSockets1_"] = { affix = "Enchantment Cold Modifier Effect and Only Red Sockets", "10% increased Explicit Cold Modifier magnitudes", "All Sockets are Red", statOrder = { 42, 75 }, level = 69, group = "WeaponEnchantmentHeistColdModifierEffectOnlyRedSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3206904707] = { "10% increased Explicit Cold Modifier magnitudes" }, [1918718830] = { "All Sockets are Red" }, } }, - ["WeaponEnchantmentHeistColdEffectOnlyBlueSockets1_"] = { affix = "Enchantment Cold Modifier Effect and Only Blue Sockets", "10% increased Explicit Cold Modifier magnitudes", "All Sockets are Blue", statOrder = { 42, 73 }, level = 69, group = "WeaponEnchantmentHeistColdModifierEffectOnlyBlueSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3206904707] = { "10% increased Explicit Cold Modifier magnitudes" }, [2803653753] = { "All Sockets are Blue" }, } }, - ["WeaponEnchantmentHeistColdEffectOnlyGreenSockets1__"] = { affix = "Enchantment Cold Modifier Effect and Only Green Sockets", "10% increased Explicit Cold Modifier magnitudes", "All Sockets are Green", statOrder = { 42, 74 }, level = 69, group = "WeaponEnchantmentHeistColdModifierEffectOnlyGreenSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3206904707] = { "10% increased Explicit Cold Modifier magnitudes" }, [2849380136] = { "All Sockets are Green" }, } }, - ["WeaponEnchantmentHeistChaosEffectSpeedEffectPenalty1"] = { affix = "Enchantment Chaos Modifier Effect and Speed Modifier Effect Penalty", "10% increased Explicit Chaos Modifier magnitudes", "25% reduced Explicit Speed Modifier magnitudes", statOrder = { 41, 52 }, level = 69, group = "WeaponEnchantmentHeistChaosModifierEffectSpeedModifierEffectPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3196512240] = { "10% increased Explicit Chaos Modifier magnitudes" }, [363924732] = { "25% reduced Explicit Speed Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistChaosEffectCriticalEffectPenalty1"] = { affix = "Enchantment Chaos Modifier Effect and Critical Modifier Effect Penalty", "10% increased Explicit Chaos Modifier magnitudes", "25% reduced Explicit Critical Modifier magnitudes", statOrder = { 41, 43 }, level = 69, group = "WeaponEnchantmentHeistChaosModifierEffectCriticalModifierEffectPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3196512240] = { "10% increased Explicit Chaos Modifier magnitudes" }, [2393315299] = { "25% reduced Explicit Critical Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistChaosEffectSocketPenalty1"] = { affix = "Enchantment Chaos Modifier Effect and Socket Penalty", "15% increased Explicit Chaos Modifier magnitudes", "-3 to maximum Sockets", statOrder = { 41, 78 }, level = 69, group = "WeaponEnchantmentHeistChaosModifierEffectSocketPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3196512240] = { "15% increased Explicit Chaos Modifier magnitudes" }, [4099204231] = { "-3 to maximum Sockets" }, } }, - ["WeaponEnchantmentHeistChaosEffectAttributeRequirementPenalty1"] = { affix = "Enchantment Chaos Modifier Effect and Attribute Requirement Penalty", "15% increased Explicit Chaos Modifier magnitudes", "200% increased Attribute Requirements", statOrder = { 41, 1075 }, level = 69, group = "WeaponEnchantmentHeistChaosModifierEffectAttributeRequirementPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3196512240] = { "15% increased Explicit Chaos Modifier magnitudes" }, [3639275092] = { "200% increased Attribute Requirements" }, } }, - ["WeaponEnchantmentHeistChaosEffectOnlyRedSockets1"] = { affix = "Enchantment Chaos Modifier Effect and Only Red Sockets", "10% increased Explicit Chaos Modifier magnitudes", "All Sockets are Red", statOrder = { 41, 75 }, level = 69, group = "WeaponEnchantmentHeistChaosModifierEffectOnlyRedSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3196512240] = { "10% increased Explicit Chaos Modifier magnitudes" }, [1918718830] = { "All Sockets are Red" }, } }, - ["WeaponEnchantmentHeistChaosEffectOnlyBlueSockets1"] = { affix = "Enchantment Chaos Modifier Effect and Only Blue Sockets", "10% increased Explicit Chaos Modifier magnitudes", "All Sockets are Blue", statOrder = { 41, 73 }, level = 69, group = "WeaponEnchantmentHeistChaosModifierEffectOnlyBlueSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3196512240] = { "10% increased Explicit Chaos Modifier magnitudes" }, [2803653753] = { "All Sockets are Blue" }, } }, - ["WeaponEnchantmentHeistChaosEffectOnlyGreenSockets1___"] = { affix = "Enchantment Chaos Modifier Effect and Only Green Sockets", "10% increased Explicit Chaos Modifier magnitudes", "All Sockets are Green", statOrder = { 41, 74 }, level = 69, group = "WeaponEnchantmentHeistChaosModifierEffectOnlyGreenSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3196512240] = { "10% increased Explicit Chaos Modifier magnitudes" }, [2849380136] = { "All Sockets are Green" }, } }, - ["WeaponEnchantmentHeistCasterDamageEffectSpeedEffectPenalty1"] = { affix = "Enchantment Caster Damage Modifier Effect and Speed Modifier Effect Penalty", "10% increased Explicit Caster Damage Modifier magnitudes", "25% reduced Explicit Speed Modifier magnitudes", statOrder = { 40, 52 }, level = 69, group = "WeaponEnchantmentHeistCasterDamageModifierEffectSpeedModifierEffectPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [363924732] = { "25% reduced Explicit Speed Modifier magnitudes" }, [1498186316] = { "10% increased Explicit Caster Damage Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistCasterDamageEffectCriticalEffectPenalty1"] = { affix = "Enchantment Caster Damage Modifier Effect and Critical Modifier Effect Penalty", "10% increased Explicit Caster Damage Modifier magnitudes", "25% reduced Explicit Critical Modifier magnitudes", statOrder = { 40, 43 }, level = 69, group = "WeaponEnchantmentHeistCasterDamageModifierEffectCriticalModifierEffectPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2393315299] = { "25% reduced Explicit Critical Modifier magnitudes" }, [1498186316] = { "10% increased Explicit Caster Damage Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistCasterDamageEffectSocketPenalty1__"] = { affix = "Enchantment Caster Damage Modifier Effect and Socket Penalty", "15% increased Explicit Caster Damage Modifier magnitudes", "-3 to maximum Sockets", statOrder = { 40, 78 }, level = 69, group = "WeaponEnchantmentHeistCasterDamageModifierEffectSocketPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4099204231] = { "-3 to maximum Sockets" }, [1498186316] = { "15% increased Explicit Caster Damage Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistCasterDamageEffectAttributeRequirementPenalty1"] = { affix = "Enchantment Caster Damage Modifier Effect and Attribute Requirement Penalty", "15% increased Explicit Caster Damage Modifier magnitudes", "200% increased Attribute Requirements", statOrder = { 40, 1075 }, level = 69, group = "WeaponEnchantmentHeistCasterDamageModifierEffectAttributeRequirementPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3639275092] = { "200% increased Attribute Requirements" }, [1498186316] = { "15% increased Explicit Caster Damage Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistCasterDamageEffectOnlyRedSockets1"] = { affix = "Enchantment Caster Damage Modifier Effect and Only Red Sockets", "10% increased Explicit Caster Damage Modifier magnitudes", "All Sockets are Red", statOrder = { 40, 75 }, level = 69, group = "WeaponEnchantmentHeistCasterDamageModifierEffectOnlyRedSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1918718830] = { "All Sockets are Red" }, [1498186316] = { "10% increased Explicit Caster Damage Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistCasterDamageEffectOnlyBlueSockets1_"] = { affix = "Enchantment Caster Damage Modifier Effect and Only Blue Sockets", "10% increased Explicit Caster Damage Modifier magnitudes", "All Sockets are Blue", statOrder = { 40, 73 }, level = 69, group = "WeaponEnchantmentHeistCasterDamageModifierEffectOnlyBlueSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2803653753] = { "All Sockets are Blue" }, [1498186316] = { "10% increased Explicit Caster Damage Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistCasterDamageEffectOnlyGreenSockets1"] = { affix = "Enchantment Caster Damage Modifier Effect and Only Green Sockets", "10% increased Explicit Caster Damage Modifier magnitudes", "All Sockets are Green", statOrder = { 40, 74 }, level = 69, group = "WeaponEnchantmentHeistCasterDamageModifierEffectOnlyGreenSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2849380136] = { "All Sockets are Green" }, [1498186316] = { "10% increased Explicit Caster Damage Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistManaEffectSpeedEffectPenalty1"] = { affix = "Enchantment Mana Modifier Effect and Speed Modifier Effect Penalty", "10% increased Explicit Mana Modifier magnitudes", "25% reduced Explicit Speed Modifier magnitudes", statOrder = { 49, 52 }, level = 69, group = "WeaponEnchantmentHeistManaModifierEffectSpeedModifierEffectPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [363924732] = { "25% reduced Explicit Speed Modifier magnitudes" }, [3514984677] = { "10% increased Explicit Mana Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistManaEffectCriticalEffectPenalty1"] = { affix = "Enchantment Mana Modifier Effect and Critical Modifier Effect Penalty", "25% reduced Explicit Critical Modifier magnitudes", "10% increased Explicit Mana Modifier magnitudes", statOrder = { 43, 49 }, level = 69, group = "WeaponEnchantmentHeistManaModifierEffectCriticalModifierEffectPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2393315299] = { "25% reduced Explicit Critical Modifier magnitudes" }, [3514984677] = { "10% increased Explicit Mana Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistManaEffectSocketPenalty1_"] = { affix = "Enchantment Mana Modifier Effect and Socket Penalty", "15% increased Explicit Mana Modifier magnitudes", "-3 to maximum Sockets", statOrder = { 49, 78 }, level = 69, group = "WeaponEnchantmentHeistManaModifierEffectSocketPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4099204231] = { "-3 to maximum Sockets" }, [3514984677] = { "15% increased Explicit Mana Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistManaEffectAttributeRequirementPenalty1__"] = { affix = "Enchantment Mana Modifier Effect and Attribute Requirement Penalty", "15% increased Explicit Mana Modifier magnitudes", "200% increased Attribute Requirements", statOrder = { 49, 1075 }, level = 69, group = "WeaponEnchantmentHeistManaModifierEffectAttributeRequirementPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3639275092] = { "200% increased Attribute Requirements" }, [3514984677] = { "15% increased Explicit Mana Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistManaEffectOnlyRedSockets1"] = { affix = "Enchantment Mana Modifier Effect and Only Red Sockets", "10% increased Explicit Mana Modifier magnitudes", "All Sockets are Red", statOrder = { 49, 75 }, level = 69, group = "WeaponEnchantmentHeistManaModifierEffectOnlyRedSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1918718830] = { "All Sockets are Red" }, [3514984677] = { "10% increased Explicit Mana Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistManaEffectOnlyBlueSockets1"] = { affix = "Enchantment Mana Modifier Effect and Only Blue Sockets", "10% increased Explicit Mana Modifier magnitudes", "All Sockets are Blue", statOrder = { 49, 73 }, level = 69, group = "WeaponEnchantmentHeistManaModifierEffectOnlyBlueSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2803653753] = { "All Sockets are Blue" }, [3514984677] = { "10% increased Explicit Mana Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistManaEffectOnlyGreenSockets1"] = { affix = "Enchantment Mana Modifier Effect and Only Green Sockets", "10% increased Explicit Mana Modifier magnitudes", "All Sockets are Green", statOrder = { 49, 74 }, level = 69, group = "WeaponEnchantmentHeistManaModifierEffectOnlyGreenSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2849380136] = { "All Sockets are Green" }, [3514984677] = { "10% increased Explicit Mana Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistSpeedEffectDamageEffectPenalty1"] = { affix = "Enchantment Speed Modifier Effect and Damage Modifier Effect Penalty", "25% reduced Explicit Damage Modifier magnitudes", "12% increased Explicit Speed Modifier magnitudes", statOrder = { 44, 52 }, level = 74, group = "WeaponEnchantmentHeistSpeedModifierEffectDamageModifierEffectPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2979443822] = { "25% reduced Explicit Damage Modifier magnitudes" }, [363924732] = { "12% increased Explicit Speed Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistSpeedEffectSocketPenalty1"] = { affix = "Enchantment Speed Modifier Effect and Socket Penalty", "15% increased Explicit Speed Modifier magnitudes", "-3 to maximum Sockets", statOrder = { 52, 78 }, level = 74, group = "WeaponEnchantmentHeistSpeedModifierEffectSocketPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4099204231] = { "-3 to maximum Sockets" }, [363924732] = { "15% increased Explicit Speed Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistSpeedEffectAttributeRequirementPenalty1"] = { affix = "Enchantment Speed Modifier Effect and Attribute Requirement Penalty", "15% increased Explicit Speed Modifier magnitudes", "200% increased Attribute Requirements", statOrder = { 52, 1075 }, level = 74, group = "WeaponEnchantmentHeistSpeedModifierEffectAttributeRequirementPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3639275092] = { "200% increased Attribute Requirements" }, [363924732] = { "15% increased Explicit Speed Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistSpeedEffectOnlyRedSockets1"] = { affix = "Enchantment Speed Modifier Effect and Only Red Sockets", "10% increased Explicit Speed Modifier magnitudes", "All Sockets are Red", statOrder = { 52, 75 }, level = 74, group = "WeaponEnchantmentHeistSpeedModifierEffectOnlyRedSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1918718830] = { "All Sockets are Red" }, [363924732] = { "10% increased Explicit Speed Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistSpeedEffectOnlyBlueSockets1"] = { affix = "Enchantment Speed Modifier Effect and Only Blue Sockets", "10% increased Explicit Speed Modifier magnitudes", "All Sockets are Blue", statOrder = { 52, 73 }, level = 74, group = "WeaponEnchantmentHeistSpeedModifierEffectOnlyBlueSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2803653753] = { "All Sockets are Blue" }, [363924732] = { "10% increased Explicit Speed Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistSpeedEffectOnlyGreenSockets1"] = { affix = "Enchantment Speed Modifier Effect and Only Green Sockets", "10% increased Explicit Speed Modifier magnitudes", "All Sockets are Green", statOrder = { 52, 74 }, level = 74, group = "WeaponEnchantmentHeistSpeedModifierEffectOnlyGreenSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2849380136] = { "All Sockets are Green" }, [363924732] = { "10% increased Explicit Speed Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistCriticalEffectDamageEffectPenalty1"] = { affix = "Enchantment Critical Modifier Effect and Damage Modifier Effect Penalty", "12% increased Explicit Critical Modifier magnitudes", "25% reduced Explicit Damage Modifier magnitudes", statOrder = { 43, 44 }, level = 78, group = "WeaponEnchantmentHeistCriticalModifierEffectDamageModifierEffectPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2979443822] = { "25% reduced Explicit Damage Modifier magnitudes" }, [2393315299] = { "12% increased Explicit Critical Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistCriticalEffectSocketPenalty1___"] = { affix = "Enchantment Critical Modifier Effect and Socket Penalty", "15% increased Explicit Critical Modifier magnitudes", "-3 to maximum Sockets", statOrder = { 43, 78 }, level = 78, group = "WeaponEnchantmentHeistCriticalModifierEffectSocketPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4099204231] = { "-3 to maximum Sockets" }, [2393315299] = { "15% increased Explicit Critical Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistCriticalEffectAttributeRequirementPenalty1"] = { affix = "Enchantment Critical Modifier Effect and Attribute Requirement Penalty", "15% increased Explicit Critical Modifier magnitudes", "200% increased Attribute Requirements", statOrder = { 43, 1075 }, level = 78, group = "WeaponEnchantmentHeistCriticalModifierEffectAttributeRequirementPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3639275092] = { "200% increased Attribute Requirements" }, [2393315299] = { "15% increased Explicit Critical Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistCriticalEffectOnlyRedSockets1"] = { affix = "Enchantment Critical Modifier Effect and Only Red Sockets", "10% increased Explicit Critical Modifier magnitudes", "All Sockets are Red", statOrder = { 43, 75 }, level = 78, group = "WeaponEnchantmentHeistCriticalModifierEffectOnlyRedSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1918718830] = { "All Sockets are Red" }, [2393315299] = { "10% increased Explicit Critical Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistCriticalEffectOnlyBlueSockets1"] = { affix = "Enchantment Critical Modifier Effect and Only Blue Sockets", "10% increased Explicit Critical Modifier magnitudes", "All Sockets are Blue", statOrder = { 43, 73 }, level = 78, group = "WeaponEnchantmentHeistCriticalModifierEffectOnlyBlueSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2803653753] = { "All Sockets are Blue" }, [2393315299] = { "10% increased Explicit Critical Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistCriticalEffectOnlyGreenSockets1"] = { affix = "Enchantment Critical Modifier Effect and Only Green Sockets", "10% increased Explicit Critical Modifier magnitudes", "All Sockets are Green", statOrder = { 43, 74 }, level = 78, group = "WeaponEnchantmentHeistCriticalModifierEffectOnlyGreenSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2849380136] = { "All Sockets are Green" }, [2393315299] = { "10% increased Explicit Critical Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistAttributeEffectDamageEffectPenalty1"] = { affix = "Enchantment Attribute Modifier Effect and Damage Modifier Effect Penalty", "12% increased Explicit Attribute Modifier magnitudes", "25% reduced Explicit Damage Modifier magnitudes", statOrder = { 39, 44 }, level = 69, group = "WeaponEnchantmentHeistAttributeModifierEffectDamageModifierEffectPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2979443822] = { "25% reduced Explicit Damage Modifier magnitudes" }, [3243861579] = { "12% increased Explicit Attribute Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistAttributeEffectSocketPenalty1"] = { affix = "Enchantment Attribute Modifier Effect and Socket Penalty", "15% increased Explicit Attribute Modifier magnitudes", "-3 to maximum Sockets", statOrder = { 39, 78 }, level = 69, group = "WeaponEnchantmentHeistAttributeModifierEffectSocketPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4099204231] = { "-3 to maximum Sockets" }, [3243861579] = { "15% increased Explicit Attribute Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistAttributeEffectAttributeRequirementPenalty1"] = { affix = "Enchantment Attribute Modifier Effect and Attribute Requirement Penalty", "15% increased Explicit Attribute Modifier magnitudes", "200% increased Attribute Requirements", statOrder = { 39, 1075 }, level = 69, group = "WeaponEnchantmentHeistAttributeModifierEffectAttributeRequirementPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3639275092] = { "200% increased Attribute Requirements" }, [3243861579] = { "15% increased Explicit Attribute Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistAttributeEffectOnlyRedSockets1_"] = { affix = "Enchantment Attribute Modifier Effect and Only Red Sockets", "10% increased Explicit Attribute Modifier magnitudes", "All Sockets are Red", statOrder = { 39, 75 }, level = 69, group = "WeaponEnchantmentHeistAttributeModifierEffectOnlyRedSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1918718830] = { "All Sockets are Red" }, [3243861579] = { "10% increased Explicit Attribute Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistAttributeEffectOnlyBlueSockets1"] = { affix = "Enchantment Attribute Modifier Effect and Only Blue Sockets", "10% increased Explicit Attribute Modifier magnitudes", "All Sockets are Blue", statOrder = { 39, 73 }, level = 69, group = "WeaponEnchantmentHeistAttributeModifierEffectOnlyBlueSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2803653753] = { "All Sockets are Blue" }, [3243861579] = { "10% increased Explicit Attribute Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistAttributeEffectOnlyGreenSockets1"] = { affix = "Enchantment Attribute Modifier Effect and Only Green Sockets", "10% increased Explicit Attribute Modifier magnitudes", "All Sockets are Green", statOrder = { 39, 74 }, level = 69, group = "WeaponEnchantmentHeistAttributeModifierEffectOnlyGreenSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2849380136] = { "All Sockets are Green" }, [3243861579] = { "10% increased Explicit Attribute Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistAilmentEffectSocketPenalty1__"] = { affix = "Enchantment Ailment Modifier Effect and Socket Penalty", "15% increased Explicit Ailment Modifier magnitudes", "-3 to maximum Sockets", statOrder = { 38, 78 }, level = 69, group = "WeaponEnchantmentHeistAilmentModifierEffectSocketPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3086446674] = { "15% increased Explicit Ailment Modifier magnitudes" }, [4099204231] = { "-3 to maximum Sockets" }, } }, - ["WeaponEnchantmentHeistAilmentEffectAttributeRequirementPenalty1"] = { affix = "Enchantment Ailment Modifier Effect and Attribute Requirement Penalty", "15% increased Explicit Ailment Modifier magnitudes", "200% increased Attribute Requirements", statOrder = { 38, 1075 }, level = 69, group = "WeaponEnchantmentHeistAilmentModifierEffectAttributeRequirementPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3086446674] = { "15% increased Explicit Ailment Modifier magnitudes" }, [3639275092] = { "200% increased Attribute Requirements" }, } }, - ["WeaponEnchantmentHeistAilmentEffectOnlyRedSockets1"] = { affix = "Enchantment Ailment Modifier Effect and Only Red Sockets", "10% increased Explicit Ailment Modifier magnitudes", "All Sockets are Red", statOrder = { 38, 75 }, level = 69, group = "WeaponEnchantmentHeistAilmentModifierEffectOnlyRedSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3086446674] = { "10% increased Explicit Ailment Modifier magnitudes" }, [1918718830] = { "All Sockets are Red" }, } }, - ["WeaponEnchantmentHeistAilmentEffectOnlyBlueSockets1__"] = { affix = "Enchantment Ailment Modifier Effect and Only Blue Sockets", "10% increased Explicit Ailment Modifier magnitudes", "All Sockets are Blue", statOrder = { 38, 73 }, level = 69, group = "WeaponEnchantmentHeistAilmentModifierEffectOnlyBlueSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3086446674] = { "10% increased Explicit Ailment Modifier magnitudes" }, [2803653753] = { "All Sockets are Blue" }, } }, - ["WeaponEnchantmentHeistAilmentEffectOnlyGreenSockets1"] = { affix = "Enchantment Ailment Modifier Effect and Only Green Sockets", "10% increased Explicit Ailment Modifier magnitudes", "All Sockets are Green", statOrder = { 38, 74 }, level = 69, group = "WeaponEnchantmentHeistAilmentModifierEffectOnlyGreenSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3086446674] = { "10% increased Explicit Ailment Modifier magnitudes" }, [2849380136] = { "All Sockets are Green" }, } }, - ["WeaponEnchantmentHeistAdditionalCraftingModifier1_"] = { affix = "Enchantment Additional Crafted Modifier", "Can have 1 additional Crafted Modifier", statOrder = { 27 }, level = 80, group = "WeaponEnchantmentHeistAdditionalCraftingModifier", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1963398329] = { "Can have 1 additional Crafted Modifier" }, } }, - ["DisplaySupportedByUnleashUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 18 Unleash", statOrder = { 396 }, level = 1, group = "DisplaySupportedByUnleash", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [3356013982] = { "Socketed Gems are Supported by Level 18 Unleash" }, } }, - ["CanHaveEveryInfluenceTypeImplicitE1"] = { affix = "", "Implicit Modifiers Cannot Be Changed", "Has Elder, Shaper and all Conqueror Influences", statOrder = { 21, 7950 }, level = 87, group = "HasEveryInfluenceType", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1795443614] = { "Has Elder, Shaper and all Conqueror Influences" }, [532463031] = { "Implicit Modifiers Cannot Be Changed" }, } }, - ["ArmourEnchantmentHeistLifeEffect1"] = { affix = "Enchantment Life Modifier Effect", "8% increased Explicit Life Modifier magnitudes", statOrder = { 47 }, level = 1, group = "ArmourEnchantmentHeistLifeModifierEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1308141466] = { "8% increased Explicit Life Modifier magnitudes" }, } }, - ["ArmourEnchantmentHeistDefenceEffect1"] = { affix = "Enchantment Defence Modifier Effect", "8% increased Explicit Defence Modifier magnitudes", statOrder = { 45 }, level = 1, group = "ArmourEnchantmentHeistDefenceModifierEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3300369861] = { "8% increased Explicit Defence Modifier magnitudes" }, } }, - ["ArmourEnchantmentHeistManaEffect1"] = { affix = "Enchantment Mana Modifier Effect", "8% increased Explicit Mana Modifier magnitudes", statOrder = { 49 }, level = 1, group = "ArmourEnchantmentHeistManaModifierEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3514984677] = { "8% increased Explicit Mana Modifier magnitudes" }, } }, - ["ArmourEnchantmentHeistResistanceEffect1__"] = { affix = "Enchantment Resistance Modifier Effect", "8% increased Explicit Resistance Modifier magnitudes", statOrder = { 51 }, level = 1, group = "ArmourEnchantmentHeistResistanceModifierEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1972391381] = { "8% increased Explicit Resistance Modifier magnitudes" }, } }, - ["ArmourEnchantmentHeistAttributeEffect1"] = { affix = "Enchantment Attribute Modifier Effect", "8% increased Explicit Attribute Modifier magnitudes", statOrder = { 39 }, level = 1, group = "ArmourEnchantmentHeistAttributeModifierEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3243861579] = { "8% increased Explicit Attribute Modifier magnitudes" }, } }, - ["ArmourEnchantmentHeistAttributeRequirements1"] = { affix = "Enchantment Attribute Requirements", "40% reduced Attribute Requirements", statOrder = { 1075 }, level = 1, group = "ArmourEnchantmentHeistAttributeRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3639275092] = { "40% reduced Attribute Requirements" }, } }, - ["ArmourEnchantmentHeistSocketsAreLinked1"] = { affix = "Enchantment Sockets Are Linked", "All Sockets Linked", statOrder = { 71 }, level = 1, group = "ArmourEnchantmentHeistSocketsAreLinked", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2740018301] = { "All Sockets Linked" }, } }, - ["ArmourEnchantmentHeistWhiteSockets1__"] = { affix = "Enchantment White Sockets", "Has 2 White Sockets", statOrder = { 77 }, level = 1, group = "ArmourEnchantmentHeistWhiteSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [931294424] = { "Has 2 White Sockets" }, } }, - ["ArmourEnchantmentHeistLifeEffectResistanceEffect1__"] = { affix = "Enchantment Life Modifier Effect and Resistance Modifier Effect", "6% increased Explicit Life Modifier magnitudes", "6% increased Explicit Resistance Modifier magnitudes", statOrder = { 47, 51 }, level = 20, group = "ArmourEnchantmentHeistLifeModifierEffectResistanceModifierEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1308141466] = { "6% increased Explicit Life Modifier magnitudes" }, [1972391381] = { "6% increased Explicit Resistance Modifier magnitudes" }, } }, - ["ArmourEnchantmentHeistLifeEffectAttributeEffect1_"] = { affix = "Enchantment Life Modifier Effect and Attribute Modifier Effect", "6% increased Explicit Attribute Modifier magnitudes", "6% increased Explicit Life Modifier magnitudes", statOrder = { 39, 47 }, level = 20, group = "ArmourEnchantmentHeistLifeModifierEffectAttributeModifierEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1308141466] = { "6% increased Explicit Life Modifier magnitudes" }, [3243861579] = { "6% increased Explicit Attribute Modifier magnitudes" }, } }, - ["ArmourEnchantmentHeistLifeEffectAttributeRequirements1"] = { affix = "Enchantment Life Modifier Effect and Attribute Requirements", "6% increased Explicit Life Modifier magnitudes", "25% reduced Attribute Requirements", statOrder = { 47, 1075 }, level = 20, group = "ArmourEnchantmentHeistLifeModifierEffectAttributeRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1308141466] = { "6% increased Explicit Life Modifier magnitudes" }, [3639275092] = { "25% reduced Attribute Requirements" }, } }, - ["ArmourEnchantmentHeistLifeEffectSocketsAreLinked1_"] = { affix = "Enchantment Life Modifier Effect and Sockets Are Linked", "6% increased Explicit Life Modifier magnitudes", "All Sockets Linked", statOrder = { 47, 71 }, level = 30, group = "ArmourEnchantmentHeistLifeModifierEffectSocketsAreLinked", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1308141466] = { "6% increased Explicit Life Modifier magnitudes" }, [2740018301] = { "All Sockets Linked" }, } }, - ["ArmourEnchantmentHeistLifeEffectNoRedSockets1"] = { affix = "Enchantment Life Modifier Effect and No Red Sockets", "8% increased Explicit Life Modifier magnitudes", "Has no Red Sockets", statOrder = { 47, 66 }, level = 30, group = "ArmourEnchantmentHeistLifeModifierEffectNoRedSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1308141466] = { "8% increased Explicit Life Modifier magnitudes" }, [320043039] = { "Has no Red Sockets" }, } }, - ["ArmourEnchantmentHeistLifeEffectNoBlueSockets1"] = { affix = "Enchantment Life Modifier Effect and No Blue Sockets", "8% increased Explicit Life Modifier magnitudes", "Has no Green Sockets", statOrder = { 47, 65 }, level = 30, group = "ArmourEnchantmentHeistLifeModifierEffectNoBlueSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1308141466] = { "8% increased Explicit Life Modifier magnitudes" }, [1615727675] = { "Has no Green Sockets" }, } }, - ["ArmourEnchantmentHeistLifeEffectNoGreenSockets1__"] = { affix = "Enchantment Life Modifier Effect and No Green Sockets", "8% increased Explicit Life Modifier magnitudes", "Has no Blue Sockets", statOrder = { 47, 64 }, level = 30, group = "ArmourEnchantmentHeistLifeModifierEffectNoGreenSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1308141466] = { "8% increased Explicit Life Modifier magnitudes" }, [3837805260] = { "Has no Blue Sockets" }, } }, - ["ArmourEnchantmentHeistLifeEffectWhiteSocket1_"] = { affix = "Enchantment Life Modifier Effect and White Socket", "8% increased Explicit Life Modifier magnitudes", "Has 1 White Socket", statOrder = { 47, 77 }, level = 30, group = "ArmourEnchantmentHeistLifeModifierEffectWhiteSocket", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1308141466] = { "8% increased Explicit Life Modifier magnitudes" }, [931294424] = { "Has 1 White Socket" }, } }, - ["ArmourEnchantmentHeistDefenceEffectResistanceEffect1"] = { affix = "Enchantment Defence Modifier Effect and Resistance Modifier Effect", "6% increased Explicit Defence Modifier magnitudes", "6% increased Explicit Resistance Modifier magnitudes", statOrder = { 45, 51 }, level = 20, group = "ArmourEnchantmentHeistDefenceModifierEffectResistanceModifierEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1972391381] = { "6% increased Explicit Resistance Modifier magnitudes" }, [3300369861] = { "6% increased Explicit Defence Modifier magnitudes" }, } }, - ["ArmourEnchantmentHeistDefenceEffectAttributeEffect1"] = { affix = "Enchantment Defence Modifier Effect and Attribute Modifier Effect", "6% increased Explicit Attribute Modifier magnitudes", "6% increased Explicit Defence Modifier magnitudes", statOrder = { 39, 45 }, level = 20, group = "ArmourEnchantmentHeistDefenceModifierEffectAttributeModifierEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3243861579] = { "6% increased Explicit Attribute Modifier magnitudes" }, [3300369861] = { "6% increased Explicit Defence Modifier magnitudes" }, } }, - ["ArmourEnchantmentHeistDefenceEffectAttributeRequirements1"] = { affix = "Enchantment Defence Modifier Effect and Attribute Requirements", "6% increased Explicit Defence Modifier magnitudes", "25% reduced Attribute Requirements", statOrder = { 45, 1075 }, level = 20, group = "ArmourEnchantmentHeistDefenceModifierEffectAttributeRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3639275092] = { "25% reduced Attribute Requirements" }, [3300369861] = { "6% increased Explicit Defence Modifier magnitudes" }, } }, - ["ArmourEnchantmentHeistDefenceEffectSocketsAreLinked1"] = { affix = "Enchantment Defence Modifier Effect and Sockets Are Linked", "6% increased Explicit Defence Modifier magnitudes", "All Sockets Linked", statOrder = { 45, 71 }, level = 30, group = "ArmourEnchantmentHeistDefenceModifierEffectSocketsAreLinked", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2740018301] = { "All Sockets Linked" }, [3300369861] = { "6% increased Explicit Defence Modifier magnitudes" }, } }, - ["ArmourEnchantmentHeistDefenceEffectNoRedSockets1"] = { affix = "Enchantment Defence Modifier Effect and No Red Sockets", "8% increased Explicit Defence Modifier magnitudes", "Has no Red Sockets", statOrder = { 45, 66 }, level = 30, group = "ArmourEnchantmentHeistDefenceModifierEffectNoRedSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [320043039] = { "Has no Red Sockets" }, [3300369861] = { "8% increased Explicit Defence Modifier magnitudes" }, } }, - ["ArmourEnchantmentHeistDefenceEffectNoBlueSockets1"] = { affix = "Enchantment Defence Modifier Effect and No Blue Sockets", "8% increased Explicit Defence Modifier magnitudes", "Has no Green Sockets", statOrder = { 45, 65 }, level = 30, group = "ArmourEnchantmentHeistDefenceModifierEffectNoBlueSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1615727675] = { "Has no Green Sockets" }, [3300369861] = { "8% increased Explicit Defence Modifier magnitudes" }, } }, - ["ArmourEnchantmentHeistDefenceEffectNoGreenSockets1"] = { affix = "Enchantment Defence Modifier Effect and No Green Sockets", "8% increased Explicit Defence Modifier magnitudes", "Has no Blue Sockets", statOrder = { 45, 64 }, level = 30, group = "ArmourEnchantmentHeistDefenceModifierEffectNoGreenSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3837805260] = { "Has no Blue Sockets" }, [3300369861] = { "8% increased Explicit Defence Modifier magnitudes" }, } }, - ["ArmourEnchantmentHeistDefenceEffectWhiteSocket1"] = { affix = "Enchantment Defence Modifier Effect and White Socket", "8% increased Explicit Defence Modifier magnitudes", "Has 1 White Socket", statOrder = { 45, 77 }, level = 30, group = "ArmourEnchantmentHeistDefenceModifierEffectWhiteSocket", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [931294424] = { "Has 1 White Socket" }, [3300369861] = { "8% increased Explicit Defence Modifier magnitudes" }, } }, - ["ArmourEnchantmentHeistManaEffectResistanceEffect1"] = { affix = "Enchantment Mana Modifier Effect and Resistance Modifier Effect", "6% increased Explicit Mana Modifier magnitudes", "6% increased Explicit Resistance Modifier magnitudes", statOrder = { 49, 51 }, level = 70, group = "ArmourEnchantmentHeistManaModifierEffectResistanceModifierEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1972391381] = { "6% increased Explicit Resistance Modifier magnitudes" }, [3514984677] = { "6% increased Explicit Mana Modifier magnitudes" }, } }, - ["ArmourEnchantmentHeistManaEffectAttributeEffect1"] = { affix = "Enchantment Mana Modifier Effect and Attribute Modifier Effect", "6% increased Explicit Attribute Modifier magnitudes", "6% increased Explicit Mana Modifier magnitudes", statOrder = { 39, 49 }, level = 70, group = "ArmourEnchantmentHeistManaModifierEffectAttributeModifierEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3243861579] = { "6% increased Explicit Attribute Modifier magnitudes" }, [3514984677] = { "6% increased Explicit Mana Modifier magnitudes" }, } }, - ["ArmourEnchantmentHeistManaEffectAttributeRequirements1"] = { affix = "Enchantment Mana Modifier Effect and Attribute Requirements", "6% increased Explicit Mana Modifier magnitudes", "25% reduced Attribute Requirements", statOrder = { 49, 1075 }, level = 70, group = "ArmourEnchantmentHeistManaModifierEffectAttributeRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3639275092] = { "25% reduced Attribute Requirements" }, [3514984677] = { "6% increased Explicit Mana Modifier magnitudes" }, } }, - ["ArmourEnchantmentHeistManaEffectSocketsAreLinked1"] = { affix = "Enchantment Mana Modifier Effect and Sockets Are Linked", "6% increased Explicit Mana Modifier magnitudes", "All Sockets Linked", statOrder = { 49, 71 }, level = 30, group = "ArmourEnchantmentHeistManaModifierEffectSocketsAreLinked", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2740018301] = { "All Sockets Linked" }, [3514984677] = { "6% increased Explicit Mana Modifier magnitudes" }, } }, - ["ArmourEnchantmentHeistManaEffectNoRedSockets1_"] = { affix = "Enchantment Mana Modifier Effect and No Red Sockets", "8% increased Explicit Mana Modifier magnitudes", "Has no Red Sockets", statOrder = { 49, 66 }, level = 30, group = "ArmourEnchantmentHeistManaModifierEffectNoRedSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [320043039] = { "Has no Red Sockets" }, [3514984677] = { "8% increased Explicit Mana Modifier magnitudes" }, } }, - ["ArmourEnchantmentHeistManaEffectNoBlueSockets1"] = { affix = "Enchantment Mana Modifier Effect and No Blue Sockets", "8% increased Explicit Mana Modifier magnitudes", "Has no Green Sockets", statOrder = { 49, 65 }, level = 30, group = "ArmourEnchantmentHeistManaModifierEffectNoBlueSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1615727675] = { "Has no Green Sockets" }, [3514984677] = { "8% increased Explicit Mana Modifier magnitudes" }, } }, - ["ArmourEnchantmentHeistManaEffectNoGreenSockets1"] = { affix = "Enchantment Mana Modifier Effect and No Green Sockets", "8% increased Explicit Mana Modifier magnitudes", "Has no Blue Sockets", statOrder = { 49, 64 }, level = 30, group = "ArmourEnchantmentHeistManaModifierEffectNoGreenSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3837805260] = { "Has no Blue Sockets" }, [3514984677] = { "8% increased Explicit Mana Modifier magnitudes" }, } }, - ["ArmourEnchantmentHeistManaEffectWhiteSocket1_"] = { affix = "Enchantment Mana Modifier Effect and White Socket", "8% increased Explicit Mana Modifier magnitudes", "Has 1 White Socket", statOrder = { 49, 77 }, level = 30, group = "ArmourEnchantmentHeistManaModifierEffectWhiteSocket", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [931294424] = { "Has 1 White Socket" }, [3514984677] = { "8% increased Explicit Mana Modifier magnitudes" }, } }, - ["ArmourEnchantmentHeistResistanceEffectSocketsAreLinked1_"] = { affix = "Enchantment Resistance Modifier Effect and Sockets Are Linked", "6% increased Explicit Resistance Modifier magnitudes", "All Sockets Linked", statOrder = { 51, 71 }, level = 30, group = "ArmourEnchantmentHeistResistanceModifierEffectSocketsAreLinked", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1972391381] = { "6% increased Explicit Resistance Modifier magnitudes" }, [2740018301] = { "All Sockets Linked" }, } }, - ["ArmourEnchantmentHeistResistanceEffectNoRedSockets1"] = { affix = "Enchantment Resistance Modifier Effect and No Red Sockets", "8% increased Explicit Resistance Modifier magnitudes", "Has no Red Sockets", statOrder = { 51, 66 }, level = 30, group = "ArmourEnchantmentHeistResistanceModifierEffectNoRedSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1972391381] = { "8% increased Explicit Resistance Modifier magnitudes" }, [320043039] = { "Has no Red Sockets" }, } }, - ["ArmourEnchantmentHeistResistanceEffectNoBlueSockets1"] = { affix = "Enchantment Resistance Modifier Effect and No Blue Sockets", "8% increased Explicit Resistance Modifier magnitudes", "Has no Green Sockets", statOrder = { 51, 65 }, level = 30, group = "ArmourEnchantmentHeistResistanceModifierEffectNoBlueSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1972391381] = { "8% increased Explicit Resistance Modifier magnitudes" }, [1615727675] = { "Has no Green Sockets" }, } }, - ["ArmourEnchantmentHeistResistanceEffectNoGreenSockets1"] = { affix = "Enchantment Resistance Modifier Effect and No Green Sockets", "8% increased Explicit Resistance Modifier magnitudes", "Has no Blue Sockets", statOrder = { 51, 64 }, level = 30, group = "ArmourEnchantmentHeistResistanceModifierEffectNoGreenSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1972391381] = { "8% increased Explicit Resistance Modifier magnitudes" }, [3837805260] = { "Has no Blue Sockets" }, } }, - ["ArmourEnchantmentHeistResistanceEffectWhiteSocket1"] = { affix = "Enchantment Resistance Modifier Effect and White Socket", "8% increased Explicit Resistance Modifier magnitudes", "Has 1 White Socket", statOrder = { 51, 77 }, level = 30, group = "ArmourEnchantmentHeistResistanceModifierEffectWhiteSocket", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1972391381] = { "8% increased Explicit Resistance Modifier magnitudes" }, [931294424] = { "Has 1 White Socket" }, } }, - ["ArmourEnchantmentHeistAttributeEffectSocketsAreLinked1"] = { affix = "Enchantment Attribute Modifier Effect and Sockets Are Linked", "6% increased Explicit Attribute Modifier magnitudes", "All Sockets Linked", statOrder = { 39, 71 }, level = 30, group = "ArmourEnchantmentHeistAttributeModifierEffectSocketsAreLinked", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2740018301] = { "All Sockets Linked" }, [3243861579] = { "6% increased Explicit Attribute Modifier magnitudes" }, } }, - ["ArmourEnchantmentHeistAttributeEffectNoRedSockets1"] = { affix = "Enchantment Attribute Modifier Effect and No Red Sockets", "8% increased Explicit Attribute Modifier magnitudes", "Has no Red Sockets", statOrder = { 39, 66 }, level = 30, group = "ArmourEnchantmentHeistAttributeModifierEffectNoRedSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [320043039] = { "Has no Red Sockets" }, [3243861579] = { "8% increased Explicit Attribute Modifier magnitudes" }, } }, - ["ArmourEnchantmentHeistAttributeEffectNoBlueSockets1"] = { affix = "Enchantment Attribute Modifier Effect and No Blue Sockets", "8% increased Explicit Attribute Modifier magnitudes", "Has no Green Sockets", statOrder = { 39, 65 }, level = 30, group = "ArmourEnchantmentHeistAttributeModifierEffectNoBlueSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1615727675] = { "Has no Green Sockets" }, [3243861579] = { "8% increased Explicit Attribute Modifier magnitudes" }, } }, - ["ArmourEnchantmentHeistAttributeEffectNoGreenSockets1"] = { affix = "Enchantment Attribute Modifier Effect and No Green Sockets", "8% increased Explicit Attribute Modifier magnitudes", "Has no Blue Sockets", statOrder = { 39, 64 }, level = 30, group = "ArmourEnchantmentHeistAttributeModifierEffectNoGreenSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3837805260] = { "Has no Blue Sockets" }, [3243861579] = { "8% increased Explicit Attribute Modifier magnitudes" }, } }, - ["ArmourEnchantmentHeistAttributeEffectWhiteSocket1_"] = { affix = "Enchantment Attribute Modifier Effect and White Socket", "8% increased Explicit Attribute Modifier magnitudes", "Has 1 White Socket", statOrder = { 39, 77 }, level = 30, group = "ArmourEnchantmentHeistAttributeModifierEffectWhiteSocket", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [931294424] = { "Has 1 White Socket" }, [3243861579] = { "8% increased Explicit Attribute Modifier magnitudes" }, } }, - ["ArmourEnchantmentHeistLifeEffectResistanceEffectPenalty1"] = { affix = "Enchantment Life Modifier Effect and Resistance Modifier Effect Penalty", "12% increased Explicit Life Modifier magnitudes", "50% reduced Explicit Resistance Modifier magnitudes", statOrder = { 47, 51 }, level = 69, group = "ArmourEnchantmentHeistLifeModifierEffectResistanceModifierEffectPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1308141466] = { "12% increased Explicit Life Modifier magnitudes" }, [1972391381] = { "50% reduced Explicit Resistance Modifier magnitudes" }, } }, - ["ArmourEnchantmentHeistLifeEffectSocketPenalty1"] = { affix = "Enchantment Life Modifier Effect and Socket Penalty", "15% increased Explicit Life Modifier magnitudes", "-3 to maximum Sockets", statOrder = { 47, 78 }, level = 69, group = "ArmourEnchantmentHeistLifeModifierEffectSocketPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1308141466] = { "15% increased Explicit Life Modifier magnitudes" }, [4099204231] = { "-3 to maximum Sockets" }, } }, - ["ArmourEnchantmentHeistLifeEffectAttributeRequirementsPenalty1_"] = { affix = "Enchantment Life Modifier Effect and Attribute Requirements Penalty", "15% increased Explicit Life Modifier magnitudes", "200% increased Attribute Requirements", statOrder = { 47, 1075 }, level = 69, group = "ArmourEnchantmentHeistLifeModifierEffectAttributeRequirementsPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1308141466] = { "15% increased Explicit Life Modifier magnitudes" }, [3639275092] = { "200% increased Attribute Requirements" }, } }, - ["ArmourEnchantmentHeistLifeEffectOnlyRedSockets1"] = { affix = "Enchantment Life Modifier Effect and Only Red Sockets", "10% increased Explicit Life Modifier magnitudes", "All Sockets are Red", statOrder = { 47, 75 }, level = 69, group = "ArmourEnchantmentHeistLifeModifierEffectOnlyRedSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1308141466] = { "10% increased Explicit Life Modifier magnitudes" }, [1918718830] = { "All Sockets are Red" }, } }, - ["ArmourEnchantmentHeistLifeEffectOnlyBlueSockets1"] = { affix = "Enchantment Life Modifier Effect and Only Blue Sockets", "10% increased Explicit Life Modifier magnitudes", "All Sockets are Blue", statOrder = { 47, 73 }, level = 69, group = "ArmourEnchantmentHeistLifeModifierEffectOnlyBlueSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1308141466] = { "10% increased Explicit Life Modifier magnitudes" }, [2803653753] = { "All Sockets are Blue" }, } }, - ["ArmourEnchantmentHeistLifeEffectOnlyGreenSockets1"] = { affix = "Enchantment Life Modifier Effect and Only Green Sockets", "10% increased Explicit Life Modifier magnitudes", "All Sockets are Green", statOrder = { 47, 74 }, level = 69, group = "ArmourEnchantmentHeistLifeModifierEffectOnlyGreenSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1308141466] = { "10% increased Explicit Life Modifier magnitudes" }, [2849380136] = { "All Sockets are Green" }, } }, - ["ArmourEnchantmentHeistDefenceEffectResistanceEffectPenalty1"] = { affix = "Enchantment Defence Modifier Effect and Resistance Modifier Effect Penalty", "12% increased Explicit Defence Modifier magnitudes", "50% reduced Explicit Resistance Modifier magnitudes", statOrder = { 45, 51 }, level = 69, group = "ArmourEnchantmentHeistDefenceModifierEffectResistanceModifierEffectPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1972391381] = { "50% reduced Explicit Resistance Modifier magnitudes" }, [3300369861] = { "12% increased Explicit Defence Modifier magnitudes" }, } }, - ["ArmourEnchantmentHeistDefenceEffectSocketPenalty1"] = { affix = "Enchantment Defence Modifier Effect and Socket Penalty", "15% increased Explicit Defence Modifier magnitudes", "-3 to maximum Sockets", statOrder = { 45, 78 }, level = 69, group = "ArmourEnchantmentHeistDefenceModifierEffectSocketPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4099204231] = { "-3 to maximum Sockets" }, [3300369861] = { "15% increased Explicit Defence Modifier magnitudes" }, } }, - ["ArmourEnchantmentHeistDefenceEffectAttributeRequirementsPenalty1_"] = { affix = "Enchantment Defence Modifier Effect and Attribute Requirements Penalty", "15% increased Explicit Defence Modifier magnitudes", "200% increased Attribute Requirements", statOrder = { 45, 1075 }, level = 69, group = "ArmourEnchantmentHeistDefenceModifierEffectAttributeRequirementsPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3639275092] = { "200% increased Attribute Requirements" }, [3300369861] = { "15% increased Explicit Defence Modifier magnitudes" }, } }, - ["ArmourEnchantmentHeistDefenceEffectOnlyRedSockets1___"] = { affix = "Enchantment Defence Modifier Effect and Only Red Sockets", "10% increased Explicit Defence Modifier magnitudes", "All Sockets are Red", statOrder = { 45, 75 }, level = 69, group = "ArmourEnchantmentHeistDefenceModifierEffectOnlyRedSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1918718830] = { "All Sockets are Red" }, [3300369861] = { "10% increased Explicit Defence Modifier magnitudes" }, } }, - ["ArmourEnchantmentHeistDefenceEffectOnlyBlueSockets1"] = { affix = "Enchantment Defence Modifier Effect and Only Blue Sockets", "10% increased Explicit Defence Modifier magnitudes", "All Sockets are Blue", statOrder = { 45, 73 }, level = 69, group = "ArmourEnchantmentHeistDefenceModifierEffectOnlyBlueSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2803653753] = { "All Sockets are Blue" }, [3300369861] = { "10% increased Explicit Defence Modifier magnitudes" }, } }, - ["ArmourEnchantmentHeistDefenceEffectOnlyGreenSockets1"] = { affix = "Enchantment Defence Modifier Effect and Only Green Sockets", "10% increased Explicit Defence Modifier magnitudes", "All Sockets are Green", statOrder = { 45, 74 }, level = 69, group = "ArmourEnchantmentHeistDefenceModifierEffectOnlyGreenSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2849380136] = { "All Sockets are Green" }, [3300369861] = { "10% increased Explicit Defence Modifier magnitudes" }, } }, - ["ArmourEnchantmentHeistManaEffectResistanceEffectPenalty1"] = { affix = "Enchantment Mana Modifier Effect and Resistance Modifier Effect Penalty", "12% increased Explicit Mana Modifier magnitudes", "50% reduced Explicit Resistance Modifier magnitudes", statOrder = { 49, 51 }, level = 69, group = "ArmourEnchantmentHeistManaModifierEffectResistanceModifierEffectPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1972391381] = { "50% reduced Explicit Resistance Modifier magnitudes" }, [3514984677] = { "12% increased Explicit Mana Modifier magnitudes" }, } }, - ["ArmourEnchantmentHeistManaEffectSocketPenalty1"] = { affix = "Enchantment Mana Modifier Effect and Socket Penalty", "15% increased Explicit Mana Modifier magnitudes", "-3 to maximum Sockets", statOrder = { 49, 78 }, level = 69, group = "ArmourEnchantmentHeistManaModifierEffectSocketPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4099204231] = { "-3 to maximum Sockets" }, [3514984677] = { "15% increased Explicit Mana Modifier magnitudes" }, } }, - ["ArmourEnchantmentHeistManaEffectAttributeRequirementsPenalty1"] = { affix = "Enchantment Mana Modifier Effect and Attribute Requirements Penalty", "15% increased Explicit Mana Modifier magnitudes", "200% increased Attribute Requirements", statOrder = { 49, 1075 }, level = 69, group = "ArmourEnchantmentHeistManaModifierEffectAttributeRequirementsPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3639275092] = { "200% increased Attribute Requirements" }, [3514984677] = { "15% increased Explicit Mana Modifier magnitudes" }, } }, - ["ArmourEnchantmentHeistManaEffectOnlyRedSockets1"] = { affix = "Enchantment Mana Modifier Effect and Only Red Sockets", "10% increased Explicit Mana Modifier magnitudes", "All Sockets are Red", statOrder = { 49, 75 }, level = 69, group = "ArmourEnchantmentHeistManaModifierEffectOnlyRedSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1918718830] = { "All Sockets are Red" }, [3514984677] = { "10% increased Explicit Mana Modifier magnitudes" }, } }, - ["ArmourEnchantmentHeistManaEffectOnlyBlueSockets1"] = { affix = "Enchantment Mana Modifier Effect and Only Blue Sockets", "10% increased Explicit Mana Modifier magnitudes", "All Sockets are Blue", statOrder = { 49, 73 }, level = 69, group = "ArmourEnchantmentHeistManaModifierEffectOnlyBlueSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2803653753] = { "All Sockets are Blue" }, [3514984677] = { "10% increased Explicit Mana Modifier magnitudes" }, } }, - ["ArmourEnchantmentHeistManaEffectOnlyGreenSockets1"] = { affix = "Enchantment Mana Modifier Effect and Only Green Sockets", "10% increased Explicit Mana Modifier magnitudes", "All Sockets are Green", statOrder = { 49, 74 }, level = 69, group = "ArmourEnchantmentHeistManaModifierEffectOnlyGreenSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2849380136] = { "All Sockets are Green" }, [3514984677] = { "10% increased Explicit Mana Modifier magnitudes" }, } }, - ["ArmourEnchantmentHeistResistanceEffectLifeEffectPenalty1"] = { affix = "Enchantment Resistance Modifier Effect and Life Modifier Effect Penalty", "50% reduced Explicit Life Modifier magnitudes", "12% increased Explicit Resistance Modifier magnitudes", statOrder = { 47, 51 }, level = 69, group = "ArmourEnchantmentHeistResistanceModifierEffectLifeModifierEffectPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1972391381] = { "12% increased Explicit Resistance Modifier magnitudes" }, [1308141466] = { "50% reduced Explicit Life Modifier magnitudes" }, } }, - ["ArmourEnchantmentHeistResistanceEffectDefenceEffectPenalty1__"] = { affix = "Enchantment Resistance Modifier Effect and Defence Modifier Effect Penalty", "50% reduced Explicit Defence Modifier magnitudes", "12% increased Explicit Resistance Modifier magnitudes", statOrder = { 45, 51 }, level = 69, group = "ArmourEnchantmentHeistResistanceModifierEffectDefenceModifierEffectPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1972391381] = { "12% increased Explicit Resistance Modifier magnitudes" }, [3300369861] = { "50% reduced Explicit Defence Modifier magnitudes" }, } }, - ["ArmourEnchantmentHeistResistanceEffectSocketPenalty1"] = { affix = "Enchantment Resistance Modifier Effect and Socket Penalty", "15% increased Explicit Resistance Modifier magnitudes", "-3 to maximum Sockets", statOrder = { 51, 78 }, level = 69, group = "ArmourEnchantmentHeistResistanceModifierEffectSocketPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1972391381] = { "15% increased Explicit Resistance Modifier magnitudes" }, [4099204231] = { "-3 to maximum Sockets" }, } }, - ["ArmourEnchantmentHeistResistanceEffectAttributeRequirementsPenalty1"] = { affix = "Enchantment Resistance Modifier Effect and Attribute Requirements Penalty", "15% increased Explicit Resistance Modifier magnitudes", "200% increased Attribute Requirements", statOrder = { 51, 1075 }, level = 69, group = "ArmourEnchantmentHeistResistanceModifierEffectAttributeRequirementsPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1972391381] = { "15% increased Explicit Resistance Modifier magnitudes" }, [3639275092] = { "200% increased Attribute Requirements" }, } }, - ["ArmourEnchantmentHeistResistanceEffectOnlyRedSockets1"] = { affix = "Enchantment Resistance Modifier Effect and Only Red Sockets", "10% increased Explicit Resistance Modifier magnitudes", "All Sockets are Red", statOrder = { 51, 75 }, level = 69, group = "ArmourEnchantmentHeistResistanceModifierEffectOnlyRedSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1972391381] = { "10% increased Explicit Resistance Modifier magnitudes" }, [1918718830] = { "All Sockets are Red" }, } }, - ["ArmourEnchantmentHeistResistanceEffectOnlyBlueSockets1"] = { affix = "Enchantment Resistance Modifier Effect and Only Blue Sockets", "10% increased Explicit Resistance Modifier magnitudes", "All Sockets are Blue", statOrder = { 51, 73 }, level = 69, group = "ArmourEnchantmentHeistResistanceModifierEffectOnlyBlueSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1972391381] = { "10% increased Explicit Resistance Modifier magnitudes" }, [2803653753] = { "All Sockets are Blue" }, } }, - ["ArmourEnchantmentHeistResistanceEffectOnlyGreenSockets1"] = { affix = "Enchantment Resistance Modifier Effect and Only Green Sockets", "10% increased Explicit Resistance Modifier magnitudes", "All Sockets are Green", statOrder = { 51, 74 }, level = 69, group = "ArmourEnchantmentHeistResistanceModifierEffectOnlyGreenSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1972391381] = { "10% increased Explicit Resistance Modifier magnitudes" }, [2849380136] = { "All Sockets are Green" }, } }, - ["ArmourEnchantmentHeistAttributeEffectLifeEffectPenalty1_"] = { affix = "Enchantment Attribute Modifier Effect and Life Modifier Effect Penalty", "12% increased Explicit Attribute Modifier magnitudes", "50% reduced Explicit Life Modifier magnitudes", statOrder = { 39, 47 }, level = 69, group = "ArmourEnchantmentHeistAttributeModifierEffectLifeModifierEffectPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1308141466] = { "50% reduced Explicit Life Modifier magnitudes" }, [3243861579] = { "12% increased Explicit Attribute Modifier magnitudes" }, } }, - ["ArmourEnchantmentHeistAttributeEffectDefenceEffectPenalty1"] = { affix = "Enchantment Attribute Modifier Effect and Defence Modifier Effect Penalty", "12% increased Explicit Attribute Modifier magnitudes", "50% reduced Explicit Defence Modifier magnitudes", statOrder = { 39, 45 }, level = 69, group = "ArmourEnchantmentHeistAttributeModifierEffectDefenceModifierEffectPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3300369861] = { "50% reduced Explicit Defence Modifier magnitudes" }, [3243861579] = { "12% increased Explicit Attribute Modifier magnitudes" }, } }, - ["ArmourEnchantmentHeistAttributeEffectSocketPenalty1"] = { affix = "Enchantment Attribute Modifier Effect and Socket Penalty", "15% increased Explicit Attribute Modifier magnitudes", "-3 to maximum Sockets", statOrder = { 39, 78 }, level = 69, group = "ArmourEnchantmentHeistAttributeModifierEffectSocketPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4099204231] = { "-3 to maximum Sockets" }, [3243861579] = { "15% increased Explicit Attribute Modifier magnitudes" }, } }, - ["ArmourEnchantmentHeistAttributeEffectAttributeRequirementsPenalty1"] = { affix = "Enchantment Attribute Modifier Effect and Attribute Requirements Penalty", "15% increased Explicit Attribute Modifier magnitudes", "200% increased Attribute Requirements", statOrder = { 39, 1075 }, level = 69, group = "ArmourEnchantmentHeistAttributeModifierEffectAttributeRequirementsPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3639275092] = { "200% increased Attribute Requirements" }, [3243861579] = { "15% increased Explicit Attribute Modifier magnitudes" }, } }, - ["ArmourEnchantmentHeistAttributeEffectOnlyRedSockets1"] = { affix = "Enchantment Attribute Modifier Effect and Only Red Sockets", "10% increased Explicit Attribute Modifier magnitudes", "All Sockets are Red", statOrder = { 39, 75 }, level = 69, group = "ArmourEnchantmentHeistAttributeModifierEffectOnlyRedSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1918718830] = { "All Sockets are Red" }, [3243861579] = { "10% increased Explicit Attribute Modifier magnitudes" }, } }, - ["ArmourEnchantmentHeistAttributeEffectOnlyBlueSockets1_"] = { affix = "Enchantment Attribute Modifier Effect and Only Blue Sockets", "10% increased Explicit Attribute Modifier magnitudes", "All Sockets are Blue", statOrder = { 39, 73 }, level = 69, group = "ArmourEnchantmentHeistAttributeModifierEffectOnlyBlueSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2803653753] = { "All Sockets are Blue" }, [3243861579] = { "10% increased Explicit Attribute Modifier magnitudes" }, } }, - ["ArmourEnchantmentHeistAttributeEffectOnlyGreenSockets1"] = { affix = "Enchantment Attribute Modifier Effect and Only Green Sockets", "10% increased Explicit Attribute Modifier magnitudes", "All Sockets are Green", statOrder = { 39, 74 }, level = 69, group = "ArmourEnchantmentHeistAttributeModifierEffectOnlyGreenSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2849380136] = { "All Sockets are Green" }, [3243861579] = { "10% increased Explicit Attribute Modifier magnitudes" }, } }, - ["ArmourEnchantmentHeistAdditionalCraftingModifier1"] = { affix = "Enchantment Additional Crafting Modifier", "Can have 1 additional Crafted Modifier", statOrder = { 27 }, level = 80, group = "ArmourEnchantmentHeistAdditionalCraftingModifier", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1963398329] = { "Can have 1 additional Crafted Modifier" }, } }, - ["WarcriesExertAnAdditionalAttackImplicitE1_"] = { affix = "", "Warcries Exert 1 additional Attack", statOrder = { 10571 }, level = 1, group = "WarcriesExertAnAdditionalAttack", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1434716233] = { "Warcries Exert 1 additional Attack" }, } }, - ["WarcriesExertAnAdditionalAttackImplicitE2"] = { affix = "", "Warcries Exert 2 additional Attacks", statOrder = { 10571 }, level = 1, group = "WarcriesExertAnAdditionalAttack", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1434716233] = { "Warcries Exert 2 additional Attacks" }, } }, - ["UniqueSecretBladeGrantHiddenBlade"] = { affix = "", "Trigger Level 20 Unseen Strike every 0.5 seconds while Phasing", statOrder = { 780 }, level = 1, group = "GrantHiddenBladeSkillUnique", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [3165215973] = { "Trigger Level 20 Unseen Strike every 0.5 seconds while Phasing" }, } }, - ["LifeRecoveryRateUnique__1"] = { affix = "", "(20-25)% increased Life Regeneration rate", statOrder = { 1577 }, level = 1, group = "LifeRegenerationRate", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [44972811] = { "(20-25)% increased Life Regeneration rate" }, } }, - ["EnergyShieldRegenerationWhileShockedUnique__1"] = { affix = "", "Regenerate 5% of Energy Shield per second while Shocked", statOrder = { 3025 }, level = 1, group = "EnergyShieldRegenerationWhileShocked", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1700808530] = { "Regenerate 5% of Energy Shield per second while Shocked" }, } }, - ["StrUniqueShieldTriggerShieldShatterOnBlock"] = { affix = "", "Trigger Level 20 Shield Shatter when you Block", statOrder = { 804 }, level = 1, group = "UniqueTriggerShieldShatter", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [401685616] = { "Trigger Level 20 Shield Shatter when you Block" }, } }, - ["UniqueStaffTriggerAtziriStormCall__1____"] = { affix = "", "Queen's Demand can Trigger Level 20 Storm of Judgement", statOrder = { 800 }, level = 1, group = "UniqueTriggerAtziriStormCall", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [758006884] = { "Queen's Demand can Trigger Level 20 Storm of Judgement" }, } }, - ["UniqueStaffTriggerAtziriStormFlameblast__1"] = { affix = "", "Queen's Demand can Trigger Level 20 Flames of Judgement", statOrder = { 799 }, level = 1, group = "UniqueTriggerAtziriFlameBlast", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [2766423342] = { "Queen's Demand can Trigger Level 20 Flames of Judgement" }, } }, - ["UniqueStaffGrantQueensDemand___"] = { affix = "", "Grants Level 20 Queen's Demand Skill", statOrder = { 750 }, level = 1, group = "UniqueStaffGrantQueensDemand", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [509572644] = { "Grants Level 20 Queen's Demand Skill" }, } }, - ["UniqueWandGrantsBloodSacrament__1"] = { affix = "", "Grants Level 1 Blood Sacrament Skill", statOrder = { 642 }, level = 1, group = "UniqueGrantBloodSacrament", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [738386056] = { "Grants Level 1 Blood Sacrament Skill" }, } }, - ["ImmuneToChillUnique__1"] = { affix = "", "Immune to Chill", statOrder = { 2894 }, level = 1, group = "ImmuneToChill", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3510243006] = { "Immune to Chill" }, } }, - ["ImmuneToChillUnique__2__"] = { affix = "", "Immune to Chill", statOrder = { 2894 }, level = 1, group = "ImmuneToChill", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3510243006] = { "Immune to Chill" }, } }, - ["ColdDamageCannotFreeze"] = { affix = "", "Your Cold Damage cannot Freeze", statOrder = { 2885 }, level = 1, group = "ColdDamageCannotFreeze", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [220932154] = { "Your Cold Damage cannot Freeze" }, } }, - ["FasterIgniteDamageUnique__1"] = { affix = "", "Ignites you inflict deal Damage (35-45)% faster", statOrder = { 2564 }, level = 20, group = "FasterIgniteDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, tradeHashes = { [2443492284] = { "Ignites you inflict deal Damage (35-45)% faster" }, } }, - ["MaximumLifeLeechRateUnique__1"] = { affix = "", "40% increased Maximum total Life Recovery per second from Leech", statOrder = { 1731 }, level = 80, group = "MaximumLifeLeechRate", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [4118987751] = { "40% increased Maximum total Life Recovery per second from Leech" }, } }, - ["FleshAndStoneManaReservationUnique__1_"] = { affix = "", "Flesh and Stone has no Reservation", statOrder = { 6652 }, level = 1, group = "FleshAndStoneNoReservation", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2060601355] = { "Flesh and Stone has no Reservation" }, } }, - ["KeystoneHollowPalmTechniqueUnique__1"] = { affix = "", "Hollow Palm Technique", statOrder = { 10792 }, level = 1, group = "KeystoneHollowPalmTechnique", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack", "speed" }, tradeHashes = { [3959337123] = { "Hollow Palm Technique" }, } }, - ["ElusiveEffectUnique__1"] = { affix = "", "(10-30)% increased Elusive Effect", statOrder = { 6350 }, level = 1, group = "ElusiveEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [240857668] = { "(10-30)% increased Elusive Effect" }, } }, - ["MovementSpeedIfHitRecentlyUnique__1_"] = { affix = "", "10% increased Movement Speed if you've Hit an Enemy Recently", statOrder = { 9419 }, level = 1, group = "MovementSpeedIfHitRecently", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [3178542354] = { "10% increased Movement Speed if you've Hit an Enemy Recently" }, } }, - ["GrantsWintertideBrandUnique__1"] = { affix = "", "Grants Level 25 Wintertide Brand Skill", statOrder = { 683 }, level = 1, group = "GrantsWintertideBrand", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [1826753218] = { "Grants Level 25 Wintertide Brand Skill" }, } }, - ["WintertideBrandChillEffectUnique__1_"] = { affix = "", "Wintertide Brand has (20-30)% increased Chill Effect", statOrder = { 10619 }, level = 1, group = "WintertideBrandChillEffect", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1831757355] = { "Wintertide Brand has (20-30)% increased Chill Effect" }, } }, - ["ChanceToAvoidPoisonUnique__1"] = { affix = "", "25% chance to Avoid being Poisoned", statOrder = { 1849 }, level = 1, group = "ChanceToAvoidPoison", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [4053951709] = { "25% chance to Avoid being Poisoned" }, } }, - ["PhysicalDamageCanFreezeUnique__1_"] = { affix = "", "Your Physical Damage can Freeze", statOrder = { 2880 }, level = 1, group = "PhysicalDamageCanFreeze", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "elemental", "cold", "ailment" }, tradeHashes = { [1526975429] = { "Your Physical Damage can Freeze" }, } }, - ["ElusiveOnCriticalStrikeUnique__1"] = { affix = "", "Gain Elusive on Critical Strike", statOrder = { 4281 }, level = 1, group = "ElusiveOnCriticalStrike", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [2896192589] = { "Gain Elusive on Critical Strike" }, } }, - ["SupportedByArrowNovaUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 1 Arrow Nova", statOrder = { 361 }, level = 1, group = "SupportedByArrowNova", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [1331336999] = { "Socketed Gems are Supported by Level 1 Arrow Nova" }, } }, - ["CriticalStrikeChanceAgainstBleedingEnemiesUnique__1"] = { affix = "", "(100-150)% increased Critical Strike Chance against Bleeding Enemies", statOrder = { 3190 }, level = 1, group = "CriticalStrikeChanceAgainstBleedingEnemies", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [2282705842] = { "(100-150)% increased Critical Strike Chance against Bleeding Enemies" }, } }, - ["DealNoColdDamageUnique__1"] = { affix = "", "Deal no Cold Damage", statOrder = { 2792 }, level = 1, group = "DealNoColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [743677006] = { "Deal no Cold Damage" }, } }, - ["OneHandedMeleeCriticalStrikeMultiplierUnique__1"] = { affix = "", "+(60-100)% to Critical Strike Multiplier with One Handed Melee Weapons", statOrder = { 1501 }, level = 1, group = "OneHandedMeleeCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [670153687] = { "+(60-100)% to Critical Strike Multiplier with One Handed Melee Weapons" }, } }, - ["PhysicalDamageTakenAsChaosUnique__1"] = { affix = "", "10% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2451 }, level = 1, group = "PhysicalDamageTakenAsChaosUber", weightKey = { }, weightVal = { }, modTags = { "physical", "chaos" }, tradeHashes = { [4129825612] = { "10% of Physical Damage from Hits taken as Chaos Damage" }, } }, - ["ChanceToBeFrozenShockedIgnitedUnique__1"] = { affix = "", "+10% chance to be Frozen, Shocked and Ignited", statOrder = { 2950 }, level = 1, group = "ChanceToBeFrozenShockedIgnited", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [4245896836] = { "+10% chance to be Frozen, Shocked and Ignited" }, } }, - ["CallOfSteelAreaOfEffectUnique__1"] = { affix = "", "Call of Steel deals Reflected Damage with (40-50)% increased Area of Effect", statOrder = { 10230 }, level = 1, group = "CallOfSteelAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2067717830] = { "Call of Steel deals Reflected Damage with (40-50)% increased Area of Effect" }, } }, - ["CallOfSteelAreaOfEffectUnique__2___"] = { affix = "", "Call of Steel deals Reflected Damage with (40-50)% increased Area of Effect", statOrder = { 10230 }, level = 1, group = "CallOfSteelAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2067717830] = { "Call of Steel deals Reflected Damage with (40-50)% increased Area of Effect" }, } }, - ["CallOfSteelReflectDamageUnique__1"] = { affix = "", "Call of Steel causes (20-25)% increased Reflected Damage", statOrder = { 10232 }, level = 1, group = "CallOfSteelReflectDamage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2879593163] = { "Call of Steel causes (20-25)% increased Reflected Damage" }, } }, - ["CallOfSteelReflectDamageUnique__2"] = { affix = "", "Call of Steel causes (20-25)% increased Reflected Damage", statOrder = { 10232 }, level = 1, group = "CallOfSteelReflectDamage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2879593163] = { "Call of Steel causes (20-25)% increased Reflected Damage" }, } }, - ["CallOfSteelUseSpeedUnique__1"] = { affix = "", "Call of Steel has (80-100)% increased Use Speed", statOrder = { 10231 }, level = 1, group = "CallOfSteelUseSpeed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [109671187] = { "Call of Steel has (80-100)% increased Use Speed" }, } }, - ["CallOfSteelUseSpeedUnique__2"] = { affix = "", "Call of Steel has (80-100)% increased Use Speed", statOrder = { 10231 }, level = 1, group = "CallOfSteelUseSpeed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [109671187] = { "Call of Steel has (80-100)% increased Use Speed" }, } }, - ["SecretsOfSufferingKeystoneSceptreImplicit1"] = { affix = "", "Secrets of Suffering", statOrder = { 10812 }, level = 1, group = "SecretsOfSufferingKeystone", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [261342933] = { "Secrets of Suffering" }, } }, - ["ManaCostTotalNonChannelledUnique__1__"] = { affix = "", "Non-Channelling Skills have -9 to Total Mana Cost", statOrder = { 10063 }, level = 1, group = "ManaCostTotalNonChannelled", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [677564538] = { "Non-Channelling Skills have -9 to Total Mana Cost" }, } }, - ["TriggerFlameDashOnSocketedSkillUseImplicitE1"] = { affix = "", "Trigger Level 10 Flame Dash when you use a Socketed Skill", statOrder = { 809 }, level = 1, group = "TriggerFlameDashOnSocketedSkillUse", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2308278768] = { "" }, [1571803312] = { "" }, [1633778432] = { "Trigger Level 10 Flame Dash when you use a Socketed Skill" }, } }, - ["TriggerFlameDashOnSocketedSkillUseImplicitE2"] = { affix = "", "Trigger Level 20 Flame Dash when you use a Socketed Skill", "20% increased Cooldown Recovery Rate of Travel Skills", statOrder = { 809, 4381 }, level = 1, group = "TriggerFlameDashOnSocketedSkillUse", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2308278768] = { "20% increased Cooldown Recovery Rate of Travel Skills" }, [1571803312] = { "" }, [1633778432] = { "Trigger Level 20 Flame Dash when you use a Socketed Skill" }, } }, - ["TriggerFlameDashOnSocketedSkillUseImplicitE3_"] = { affix = "", "Trigger Level 30 Flame Dash when you use a Socketed Skill", "40% increased Cooldown Recovery Rate of Travel Skills", statOrder = { 809, 4381 }, level = 1, group = "TriggerFlameDashOnSocketedSkillUse", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2308278768] = { "40% increased Cooldown Recovery Rate of Travel Skills" }, [1571803312] = { "" }, [1633778432] = { "Trigger Level 30 Flame Dash when you use a Socketed Skill" }, } }, - ["GainRandomChargeEvery6SecondsImplicitE1"] = { affix = "", "Gain an Endurance, Frenzy or Power Charge every 6 seconds", statOrder = { 6707 }, level = 1, group = "GainRandomChargesEvery6Seconds", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4282426229] = { "Gain an Endurance, Frenzy or Power Charge every 6 seconds" }, } }, - ["GainRandomChargeEvery6SecondsImplicitE2"] = { affix = "", "Gain 2 Endurance, Frenzy or Power Charges every 6 seconds", statOrder = { 6707 }, level = 1, group = "GainRandomChargesEvery6Seconds", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4282426229] = { "Gain 2 Endurance, Frenzy or Power Charges every 6 seconds" }, } }, - ["EnergyShieldLocalDisplaySpendEnergyShieldForCostsBeforeManaForSocketedSkillsImplicitE1"] = { affix = "", "Spend Energy Shield before Mana for Costs of Socketed Skills", "+(66-80) to maximum Energy Shield", statOrder = { 584, 1558 }, level = 1, group = "EnergyShieldLocalDisplaySpendEnergyShieldForCostsBeforeManaForSocketedSkills", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [563547620] = { "Spend Energy Shield before Mana for Costs of Socketed Skills" }, [3489782002] = { "+(66-80) to maximum Energy Shield" }, } }, - ["EnergyShieldLocalDisplaySpendEnergyShieldForCostsBeforeManaForSocketedSkillsImplicitE2"] = { affix = "", "Spend Energy Shield before Mana for Costs of Socketed Skills", "+(100-120) to maximum Energy Shield", statOrder = { 584, 1558 }, level = 1, group = "EnergyShieldLocalDisplaySpendEnergyShieldForCostsBeforeManaForSocketedSkills", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [563547620] = { "Spend Energy Shield before Mana for Costs of Socketed Skills" }, [3489782002] = { "+(100-120) to maximum Energy Shield" }, } }, - ["EnergyShieldLocalDisplaySpendEnergyShieldForCostsBeforeManaForSocketedSkillsImplicitE3"] = { affix = "", "Spend Energy Shield before Mana for Costs of Socketed Skills", "+(140-165) to maximum Energy Shield", statOrder = { 584, 1558 }, level = 1, group = "EnergyShieldLocalDisplaySpendEnergyShieldForCostsBeforeManaForSocketedSkills", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [563547620] = { "Spend Energy Shield before Mana for Costs of Socketed Skills" }, [3489782002] = { "+(140-165) to maximum Energy Shield" }, } }, - ["AttackCriticalStrikesIgnoreElementalResistancesImplicitE1"] = { affix = "", "Attack Critical Strikes ignore Enemy Monster Elemental Resistances", statOrder = { 4846 }, level = 1, group = "AttackCriticalStrikesIgnoreElementalResistances", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2170876738] = { "Attack Critical Strikes ignore Enemy Monster Elemental Resistances" }, } }, - ["LocalMaximumQualityImplicitE1"] = { affix = "", "+25% to Maximum Quality", statOrder = { 7997 }, level = 1, group = "LocalMaximumQuality", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2039822488] = { "+25% to Maximum Quality" }, } }, - ["LocalMaximumQualityImplicitE2"] = { affix = "", "+25% to Maximum Quality", statOrder = { 7997 }, level = 1, group = "LocalMaximumQuality", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2039822488] = { "+25% to Maximum Quality" }, } }, - ["LocalMaximumQualityImplicitE3"] = { affix = "", "+25% to Maximum Quality", statOrder = { 7997 }, level = 1, group = "LocalMaximumQuality", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2039822488] = { "+25% to Maximum Quality" }, } }, - ["LocalIgnorePhysReductionImplicitE1"] = { affix = "", "Hits with this Weapon have 30% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7940 }, level = 1, group = "LocalArmourPenetration", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1907260000] = { "Hits with this Weapon have 30% chance to ignore Enemy Physical Damage Reduction" }, } }, - ["LocalIgnorePhysReductionImplicitE2"] = { affix = "", "Hits with this Weapon have 50% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7940 }, level = 1, group = "LocalArmourPenetration", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1907260000] = { "Hits with this Weapon have 50% chance to ignore Enemy Physical Damage Reduction" }, } }, - ["LocalIgnorePhysReductionImplicitE3"] = { affix = "", "Hits with this Weapon ignore Enemy Physical Damage Reduction", statOrder = { 7940 }, level = 1, group = "LocalArmourPenetration", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1907260000] = { "Hits with this Weapon ignore Enemy Physical Damage Reduction" }, } }, - ["LocalAugmentedQualityE1"] = { affix = "", "1% increased Attack Speed per 8% Quality", "1% increased Critical Strike Chance per 4% Quality", statOrder = { 7859, 7882 }, level = 1, group = "LocalAugmentedQuality", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3103053611] = { "1% increased Critical Strike Chance per 4% Quality" }, [3331111689] = { "1% increased Attack Speed per 8% Quality" }, } }, - ["LocalAugmentedQualityE2"] = { affix = "", "2% increased Attack Speed per 8% Quality", "1% increased Critical Strike Chance per 4% Quality", statOrder = { 7859, 7882 }, level = 1, group = "LocalAugmentedQuality", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3103053611] = { "1% increased Critical Strike Chance per 4% Quality" }, [3331111689] = { "2% increased Attack Speed per 8% Quality" }, } }, - ["LocalAugmentedQualityE3"] = { affix = "", "2% increased Attack Speed per 8% Quality", "2% increased Critical Strike Chance per 4% Quality", statOrder = { 7859, 7882 }, level = 1, group = "LocalAugmentedQuality", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3103053611] = { "2% increased Critical Strike Chance per 4% Quality" }, [3331111689] = { "2% increased Attack Speed per 8% Quality" }, } }, - ["CannotUseFlaskInFifthSlotImplicitE1_"] = { affix = "", "Flasks applied to you have 30% increased Effect", "Can't use Flask in Fifth Slot", statOrder = { 2742, 5449 }, level = 30, group = "CannotUseFlaskInFifthSlotFlaskEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [589489789] = { "Can't use Flask in Fifth Slot" }, [114734841] = { "Flasks applied to you have 30% increased Effect" }, } }, - ["MaximumPowerandEnduranceChargesImplicitE1"] = { affix = "", "+1 to Maximum Power Charges and Maximum Endurance Charges", statOrder = { 9178 }, level = 1, group = "MaximumPowerandEnduranceCharges", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4138979329] = { "+1 to Maximum Power Charges and Maximum Endurance Charges" }, } }, - ["SummonTauntingContraptionOnFlaskUseImplicitE1"] = { affix = "", "Trigger Level 20 Summon Taunting Contraption when you use a Flask", statOrder = { 820 }, level = 70, group = "SummonTauntingContraptionOnFlaskUse", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1774370437] = { "Trigger Level 20 Summon Taunting Contraption when you use a Flask" }, } }, - ["MinionChanceToMaimOnHitUnique__1_"] = { affix = "", "Minions have 5% chance to Maim Enemies on Hit with Attacks", statOrder = { 9316 }, level = 1, group = "MinionChanceToMaimOnHit", weightKey = { }, weightVal = { }, modTags = { "attack", "minion" }, tradeHashes = { [2138548436] = { "Minions have 5% chance to Maim Enemies on Hit with Attacks" }, } }, - ["PhysicalDamagePercentAddedAsChaosPerElderItemUnique__1"] = { affix = "", "Gain (3-5)% of Physical Damage as Extra Chaos Damage per Elder Item Equipped", statOrder = { 6794 }, level = 1, group = "PhysicalDamagePercentAddedAsChaosPerElderItem", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, tradeHashes = { [1423002070] = { "Gain (3-5)% of Physical Damage as Extra Chaos Damage per Elder Item Equipped" }, } }, - ["AddedChaosDamageToAttacksPer50StrengthUnique__1"] = { affix = "", "Adds 1 to 80 Chaos Damage to Attacks per 80 Strength", statOrder = { 9229 }, level = 1, group = "AddedChaosDamageToAttacksPer50Strength", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [117885424] = { "Adds 1 to 80 Chaos Damage to Attacks per 80 Strength" }, } }, - ["CannotDealNonChaosDamageUnique__1_"] = { affix = "", "Cannot deal non-Chaos Damage", statOrder = { 6144 }, level = 1, group = "CannotDealNonChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [3180152291] = { "Cannot deal non-Chaos Damage" }, } }, - ["TravelSkillMoreDamageUnique__1"] = { affix = "", "Socketed Travel Skills deal 80% more Damage", statOrder = { 569 }, level = 1, group = "TravelSkillMoreDamage", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [1020412108] = { "Socketed Travel Skills deal 80% more Damage" }, } }, - ["DamageTakenWhilePhasingUnique__1"] = { affix = "", "10% increased Damage taken while Phasing", statOrder = { 6122 }, level = 1, group = "DamageTakenWhilePhasing", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [146268648] = { "10% increased Damage taken while Phasing" }, } }, - ["ProjectilesChainWhilePhasingUnique__1_"] = { affix = "", "Projectiles Chain +1 times while you have Phasing", statOrder = { 9518 }, level = 1, group = "ProjectilesChainWhilePhasing", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [383509486] = { "Projectiles Chain +1 times while you have Phasing" }, } }, - ["MinionPhysicalDamageAddedAsFireUnique__1"] = { affix = "", "Minions gain 20% of Physical Damage as Extra Fire Damage", statOrder = { 9326 }, level = 1, group = "MinionPhysicalDamageAddedAsFire", weightKey = { }, weightVal = { }, modTags = { "physical", "elemental", "fire", "minion" }, tradeHashes = { [3217428772] = { "Minions gain 20% of Physical Damage as Extra Fire Damage" }, } }, - ["ChaosDamageCanIgniteUnique__1"] = { affix = "", "Your Chaos Damage can Ignite", statOrder = { 5001 }, level = 1, group = "ChaosDamageCanIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "chaos_damage", "poison", "damage", "elemental", "fire", "chaos", "ailment" }, tradeHashes = { [1139878780] = { "Your Chaos Damage can Ignite" }, } }, - ["ChanceToIgniteWithChaosSkillsUnique__1"] = { affix = "", "Chaos Skills have 20% chance to Ignite", statOrder = { 5755 }, level = 1, group = "ChanceToIgniteWithChaosSkills", weightKey = { }, weightVal = { }, modTags = { "poison", "elemental", "fire", "chaos", "ailment" }, tradeHashes = { [3573128085] = { "Chaos Skills have 20% chance to Ignite" }, } }, - ["UniqueVolkuursGuidanceIgniteDurationFinal"] = { affix = "", "50% less Ignite Duration", statOrder = { 10508 }, level = 1, group = "UniqueVolkuursGuidanceIgniteDurationFinal", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [2614885550] = { "50% less Ignite Duration" }, } }, - ["ManaRegenerationAuraUnique__1"] = { affix = "", "You and nearby Allies have 30% increased Mana Regeneration Rate", statOrder = { 7900 }, level = 1, group = "ManaRegenerationAura", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "30% increased Mana Regeneration Rate" }, [2936084533] = { "You and nearby Allies have 30% increased Mana Regeneration Rate" }, } }, - ["AvoidPhysicalDamageWhilePhasingUnique__1"] = { affix = "", "+(8-15)% chance to Avoid Physical Damage from Hits while Phasing", statOrder = { 4949 }, level = 1, group = "AvoidPhysicalDamageWhilePhasing", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHashes = { [2490633856] = { "+(8-15)% chance to Avoid Physical Damage from Hits while Phasing" }, } }, - ["GrantsAlliesFrenzyChargeOnKillUnique__1_"] = { affix = "", "10% chance to grant a Frenzy Charge to nearby Allies on Kill", statOrder = { 5703 }, level = 1, group = "GrantsAlliesFrenzyChargeOnKill", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [1243641369] = { "10% chance to grant a Frenzy Charge to nearby Allies on Kill" }, } }, - ["GrantsAlliesEnduranceChargeOnHitUnique__1"] = { affix = "", "5% chance to grant an Endurance Charge to nearby Allies on Hit", statOrder = { 5702 }, level = 1, group = "GrantsAlliesEnduranceChargeOnHit", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHashes = { [3174788165] = { "5% chance to grant an Endurance Charge to nearby Allies on Hit" }, } }, - ["ChanceToImpaleWithSpellsUnique__1"] = { affix = "", "20% chance to Impale on Spell Hit", statOrder = { 10193 }, level = 1, group = "ChanceToImpaleWithSpells", weightKey = { }, weightVal = { }, modTags = { "physical", "caster" }, tradeHashes = { [3094222195] = { "20% chance to Impale on Spell Hit" }, } }, - ["ImpaleEffectUnique__1"] = { affix = "", "20% increased Impale Effect", statOrder = { 7243 }, level = 1, group = "ImpaleEffect", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHashes = { [298173317] = { "20% increased Impale Effect" }, } }, - ["ImpaleEffectUnique__2"] = { affix = "", "5% increased Impale Effect", statOrder = { 7243 }, level = 1, group = "ImpaleEffect", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHashes = { [298173317] = { "5% increased Impale Effect" }, } }, - ["AttackDamagePer450ArmourUnique__1__"] = { affix = "", "1% increased Attack Damage per 450 Armour", statOrder = { 4857 }, level = 1, group = "AttackDamagePer450Armour", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [192842973] = { "1% increased Attack Damage per 450 Armour" }, } }, - ["ZombiesTakeFireDamagePerSecondUnique__1_"] = { affix = "", "Raised Zombies take (15-30)% of their Maximum Life per second as Fire Damage", statOrder = { 9821 }, level = 1, group = "ZombiesTakeFireDamagePerSecond", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "minion" }, tradeHashes = { [3733496041] = { "Raised Zombies take (15-30)% of their Maximum Life per second as Fire Damage" }, } }, - ["ZombiesHaveAvatarOfFireUnique__1"] = { affix = "", "Raised Zombies have Avatar of Fire", statOrder = { 9822 }, level = 1, group = "ZombiesHaveAvatarOfFire", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "minion" }, tradeHashes = { [1474437010] = { "Raised Zombies have Avatar of Fire" }, } }, - ["ZombiesCoverInAshOnHitUnique__1"] = { affix = "", "Raised Zombies Cover Enemies in Ash on Hit", statOrder = { 9820 }, level = 1, group = "ZombiesCoverInAshOnHit", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [613525808] = { "Raised Zombies Cover Enemies in Ash on Hit" }, } }, - ["LifeLeechPermyriadOnFrozenEnemiesUnique__1"] = { affix = "", "1% of Damage against Frozen Enemies Leeched as Life", statOrder = { 1691 }, level = 1, group = "LifeLeechPermyriadOnFrozenEnemies", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [593279674] = { "1% of Damage against Frozen Enemies Leeched as Life" }, } }, - ["EnduranceChargeIfAttackFreezesUnique__1"] = { affix = "", "Gain an Endurance Charge if an Attack Freezes an Enemy", statOrder = { 6746 }, level = 1, group = "EnduranceChargeIfAttackFreezes", weightKey = { }, weightVal = { }, modTags = { "endurance_charge", "elemental", "cold", "attack", "ailment" }, tradeHashes = { [407576170] = { "Gain an Endurance Charge if an Attack Freezes an Enemy" }, } }, - ["PowerChargeOnHittingFrozenEnemyUnique__1"] = { affix = "", "50% chance to gain a Power Charge when you Hit a Frozen Enemy", statOrder = { 6806 }, level = 1, group = "PowerChargeOnHittingFrozenEnemy", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [3973790753] = { "50% chance to gain a Power Charge when you Hit a Frozen Enemy" }, } }, - ["TakeColdDamageOnMaximumPowerChargesUnique__1____"] = { affix = "", "Take 500 Cold Damage on reaching Maximum Power Charges", statOrder = { 9971 }, level = 1, group = "TakeColdDamageOnMaximumPowerCharges", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3664778308] = { "Take 500 Cold Damage on reaching Maximum Power Charges" }, } }, - ["MovementVelocityWhileChilledUnique__1_"] = { affix = "", "(10-20)% increased Movement Speed while Chilled", statOrder = { 9446 }, level = 1, group = "MovementVelocityWhileChilled", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2203777380] = { "(10-20)% increased Movement Speed while Chilled" }, } }, - ["AttackSpeedWhileChilledUnique__1"] = { affix = "", "(10-20)% increased Attack Speed while Chilled", statOrder = { 4905 }, level = 1, group = "AttackSpeedWhileChilled", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [3935294261] = { "(10-20)% increased Attack Speed while Chilled" }, } }, - ["CastSpeedWhileChilledUnique__1"] = { affix = "", "(10-20)% increased Cast Speed while Chilled", statOrder = { 5472 }, level = 1, group = "CastSpeedWhileChilled", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [778552242] = { "(10-20)% increased Cast Speed while Chilled" }, } }, - ["ReflectFireDamageOnBlockUnique__1___"] = { affix = "", "Reflects (22-44) Fire Damage to Attackers on Block", statOrder = { 6576 }, level = 1, group = "ReflectFireDamageOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3815724042] = { "Reflects (22-44) Fire Damage to Attackers on Block" }, } }, - ["DealNoDamageWhenNotOnLowLifeUnique__1"] = { affix = "", "Deal no Damage when not on Low Life", statOrder = { 6141 }, level = 1, group = "DealNoDamageWhenNotOnLowLife", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [3716472556] = { "Deal no Damage when not on Low Life" }, } }, - ["TriggeredFieryImpactOnHitWithWeaponImplicitE1"] = { affix = "", "Trigger Level 10 Fiery Impact on Melee Hit with this Weapon", statOrder = { 808 }, level = 1, group = "TriggeredFieryImpactOnHitWithWeapon", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1523888729] = { "Trigger Level 10 Fiery Impact on Melee Hit with this Weapon" }, [4037081939] = { "" }, } }, - ["TriggeredFieryImpactOnHitWithWeaponImplicitE2_"] = { affix = "", "Trigger Level 15 Fiery Impact on Melee Hit with this Weapon", statOrder = { 808 }, level = 1, group = "TriggeredFieryImpactOnHitWithWeapon", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1523888729] = { "Trigger Level 15 Fiery Impact on Melee Hit with this Weapon" }, [4037081939] = { "" }, } }, - ["TriggeredFieryImpactOnHitWithWeaponImplicitE3"] = { affix = "", "Trigger Level 20 Fiery Impact on Melee Hit with this Weapon", statOrder = { 808 }, level = 1, group = "TriggeredFieryImpactOnHitWithWeapon", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1523888729] = { "Trigger Level 20 Fiery Impact on Melee Hit with this Weapon" }, [4037081939] = { "" }, } }, - ["MaxPrefixMaxSuffixImplicitE1__"] = { affix = "", "-1 Prefix Modifier allowed", "+1 Suffix Modifier allowed", "Implicit Modifiers Cannot Be Changed", "25% increased Suffix Modifier magnitudes", statOrder = { 15, 16, 21, 8031 }, level = 30, group = "MaxPrefixMaxSuffixImplicit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [718638445] = { "+1 Suffix Modifier allowed" }, [1033086302] = { "25% increased Suffix Modifier magnitudes" }, [532463031] = { "Implicit Modifiers Cannot Be Changed" }, [1794120699] = { "" }, [3182714256] = { "-1 Prefix Modifier allowed" }, } }, - ["MaxPrefixMaxSuffixImplicitE2_"] = { affix = "", "+1 Prefix Modifier allowed", "-1 Suffix Modifier allowed", "Implicit Modifiers Cannot Be Changed", "25% increased Prefix Modifier magnitudes", statOrder = { 15, 16, 21, 8004 }, level = 30, group = "MaxPrefixMaxSuffixImplicit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [718638445] = { "-1 Suffix Modifier allowed" }, [1033086302] = { "" }, [532463031] = { "Implicit Modifiers Cannot Be Changed" }, [1794120699] = { "25% increased Prefix Modifier magnitudes" }, [3182714256] = { "+1 Prefix Modifier allowed" }, } }, - ["MaxPrefixMaxSuffixImplicitE3"] = { affix = "", "+3 Prefix Modifiers allowed", "-3 Suffix Modifiers allowed", "Implicit Modifiers Cannot Be Changed", statOrder = { 15, 16, 21 }, level = 30, group = "MaxPrefixMaxSuffixImplicit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [718638445] = { "-3 Suffix Modifiers allowed" }, [1033086302] = { "" }, [532463031] = { "Implicit Modifiers Cannot Be Changed" }, [1794120699] = { "" }, [3182714256] = { "+3 Prefix Modifiers allowed" }, } }, - ["MaxPrefixMaxSuffixImplicitE4"] = { affix = "", "+1 Prefix Modifier allowed", "-2 Suffix Modifiers allowed", "Implicit Modifiers Cannot Be Changed", "50% increased Prefix Modifier magnitudes", statOrder = { 15, 16, 21, 8004 }, level = 30, group = "MaxPrefixMaxSuffixImplicit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [718638445] = { "-2 Suffix Modifiers allowed" }, [1033086302] = { "" }, [532463031] = { "Implicit Modifiers Cannot Be Changed" }, [1794120699] = { "50% increased Prefix Modifier magnitudes" }, [3182714256] = { "+1 Prefix Modifier allowed" }, } }, - ["MaxPrefixMaxSuffixImplicitE5"] = { affix = "", "-3 Prefix Modifiers allowed", "+3 Suffix Modifiers allowed", "Implicit Modifiers Cannot Be Changed", statOrder = { 15, 16, 21 }, level = 30, group = "MaxPrefixMaxSuffixImplicit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [718638445] = { "+3 Suffix Modifiers allowed" }, [1033086302] = { "" }, [532463031] = { "Implicit Modifiers Cannot Be Changed" }, [1794120699] = { "" }, [3182714256] = { "-3 Prefix Modifiers allowed" }, } }, - ["MaxPrefixMaxSuffixImplicitE6"] = { affix = "", "-2 Prefix Modifiers allowed", "+1 Suffix Modifier allowed", "Implicit Modifiers Cannot Be Changed", "50% increased Suffix Modifier magnitudes", statOrder = { 15, 16, 21, 8031 }, level = 30, group = "MaxPrefixMaxSuffixImplicit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [718638445] = { "+1 Suffix Modifier allowed" }, [1033086302] = { "50% increased Suffix Modifier magnitudes" }, [532463031] = { "Implicit Modifiers Cannot Be Changed" }, [1794120699] = { "" }, [3182714256] = { "-2 Prefix Modifiers allowed" }, } }, - ["ReflectedDurationRingImplicitK1"] = { affix = "", "Left ring slot: 15% reduced Skill Effect Duration", "Right ring slot: 15% increased Skill Effect Duration", statOrder = { 2662, 2669 }, level = 30, group = "ReflectedDurationRingImplicit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3320868777] = { "Left ring slot: 15% reduced Skill Effect Duration" }, [2239667237] = { "Right ring slot: 15% increased Skill Effect Duration" }, } }, - ["ReflectedFireColdDamageTakenConversionImplicitK5a"] = { affix = "", "Left ring slot: 25% of Cold Damage from Hits taken as Fire Damage", "Right ring slot: 25% of Fire Damage from Hits taken as Cold Damage", statOrder = { 2655, 2666 }, level = 30, group = "ReflectedFireColdDamageTakenConversion", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold" }, tradeHashes = { [1323927995] = { "Left ring slot: 25% of Cold Damage from Hits taken as Fire Damage" }, [2478238773] = { "Right ring slot: 25% of Fire Damage from Hits taken as Cold Damage" }, } }, - ["ReflectedFireLightningDamageTakenConversionImplicitK5b"] = { affix = "", "Left ring slot: 25% of Fire Damage from Hits taken as Lightning Damage", "Right ring slot: 25% of Lightning Damage from Hits taken as Fire Damage", statOrder = { 2657, 2667 }, level = 30, group = "ReflectedFireLightningDamageTakenConversion", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "lightning" }, tradeHashes = { [17730902] = { "Left ring slot: 25% of Fire Damage from Hits taken as Lightning Damage" }, [1905512385] = { "Right ring slot: 25% of Lightning Damage from Hits taken as Fire Damage" }, } }, - ["ReflectedColdLightningDamageTakenConversionImplicitK5c"] = { affix = "", "Left ring slot: 25% of Lightning Damage from Hits taken as Cold Damage", "Right ring slot: 25% of Cold Damage from Hits taken as Lightning Damage", statOrder = { 2658, 2664 }, level = 30, group = "ReflectedColdLightningDamageTakenConversion", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "lightning" }, tradeHashes = { [744858137] = { "Right ring slot: 25% of Cold Damage from Hits taken as Lightning Damage" }, [450178102] = { "Left ring slot: 25% of Lightning Damage from Hits taken as Cold Damage" }, } }, - ["ReflectedCurseEffectOnSelfImplicitK2"] = { affix = "", "Left ring slot: 30% reduced Effect of Curses on you", "Right ring slot: 30% increased Effect of Curses on you", statOrder = { 2656, 2665 }, level = 30, group = "ReflectedCurseEffectOnSelf", weightKey = { }, weightVal = { }, modTags = { "curse" }, tradeHashes = { [4279053153] = { "Right ring slot: 30% increased Effect of Curses on you" }, [496053892] = { "Left ring slot: 30% reduced Effect of Curses on you" }, } }, - ["ReflectedMinionDamageTakenImplicitK3"] = { affix = "", "Left ring slot: Minions take 15% reduced Damage", "Right ring slot: Minions take 15% increased Damage", statOrder = { 2661, 2668 }, level = 30, group = "ReflectedMinionDamageTaken", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [1069618951] = { "Right ring slot: Minions take 15% increased Damage" }, [1916904011] = { "Left ring slot: Minions take 15% reduced Damage" }, } }, - ["ReflectedAilmentDurationOnSelfImplicitK4"] = { affix = "", "Left ring slot: 30% reduced Duration of Ailments on You", "Right ring slot: 30% increased Duration of Ailments on You", statOrder = { 2654, 2663 }, level = 30, group = "ReflectedAilmentDurationOnSelf", weightKey = { }, weightVal = { }, modTags = { "ailment" }, tradeHashes = { [221309863] = { "Left ring slot: 30% reduced Duration of Ailments on You" }, [2457848738] = { "Right ring slot: 30% increased Duration of Ailments on You" }, } }, - ["CurseEffectElementalAilmentDurationOnSelfR1"] = { affix = "", "50% increased Elemental Ailment Duration on you", "50% reduced Effect of Curses on you", statOrder = { 1867, 2170 }, level = 30, group = "CurseEffectElementalAilmentDurationOnSelf", weightKey = { }, weightVal = { }, modTags = { "elemental" }, tradeHashes = { [1745952865] = { "50% increased Elemental Ailment Duration on you" }, [3407849389] = { "50% reduced Effect of Curses on you" }, } }, - ["MaxPrefixMaxSuffixModEffectImplicitE1"] = { affix = "", "-1 Prefix Modifier allowed", "-1 Suffix Modifier allowed", "Implicit Modifiers Cannot Be Changed", "25% increased Explicit Modifier magnitudes", statOrder = { 15, 16, 21, 57 }, level = 30, group = "MaxPrefixMaxSuffixModEffectImplicit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [718638445] = { "-1 Suffix Modifier allowed" }, [1581907402] = { "25% increased Explicit Modifier magnitudes" }, [532463031] = { "Implicit Modifiers Cannot Be Changed" }, [3182714256] = { "-1 Prefix Modifier allowed" }, } }, - ["MaxPrefixMaxSuffixModEffectImplicitE2"] = { affix = "", "-2 Prefix Modifiers allowed", "-1 Suffix Modifier allowed", "Implicit Modifiers Cannot Be Changed", "100% increased Explicit Modifier magnitudes", statOrder = { 15, 16, 21, 57 }, level = 30, group = "MaxPrefixMaxSuffixModEffectImplicit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [718638445] = { "-1 Suffix Modifier allowed" }, [1581907402] = { "100% increased Explicit Modifier magnitudes" }, [532463031] = { "Implicit Modifiers Cannot Be Changed" }, [3182714256] = { "-2 Prefix Modifiers allowed" }, } }, - ["MaxPrefixMaxSuffixModEffectImplicitE3"] = { affix = "", "-1 Prefix Modifier allowed", "-2 Suffix Modifiers allowed", "Implicit Modifiers Cannot Be Changed", "100% increased Explicit Modifier magnitudes", statOrder = { 15, 16, 21, 57 }, level = 30, group = "MaxPrefixMaxSuffixModEffectImplicit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [718638445] = { "-2 Suffix Modifiers allowed" }, [1581907402] = { "100% increased Explicit Modifier magnitudes" }, [532463031] = { "Implicit Modifiers Cannot Be Changed" }, [3182714256] = { "-1 Prefix Modifier allowed" }, } }, - ["LocalAllDamageCanPoisonImplicitE1_"] = { affix = "", "All Damage from Hits with This Weapon can Poison", statOrder = { 2470 }, level = 1, group = "LocalAllDamageCanPoison", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [264042990] = { "All Damage from Hits with This Weapon can Poison" }, } }, - ["ChanceToInflictScorchOnEnemyOnBlockImplicitE1"] = { affix = "", "Scorch Enemies when you Block their Damage", statOrder = { 5713 }, level = 1, group = "ChanceToInflictScorchOnEnemyOnBlockCopy", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [779391868] = { "Scorch Enemies when you Block their Damage" }, } }, - ["ChanceToInflictBrittleOnEnemyOnBlockImplicitE1"] = { affix = "", "Inflict Brittle on Enemies when you Block their Damage", statOrder = { 5708 }, level = 1, group = "ChanceToInflictBrittleOnEnemyOnBlockCopy", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1749278976] = { "Inflict Brittle on Enemies when you Block their Damage" }, } }, - ["ChanceToInflictSapOnEnemyOnBlockImplicitE1"] = { affix = "", "Sap Enemies when you Block their Damage", statOrder = { 5712 }, level = 1, group = "ChanceToInflictSapOnEnemyOnBlock", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2113677718] = { "Sap Enemies when you Block their Damage" }, } }, - ["ItemNecroticFootprintsUnique__1s"] = { affix = "", "Necrotic Footprints", statOrder = { 9478 }, level = 1, group = "ItemNecroticFootprints", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [214242256] = { "Necrotic Footprints" }, } }, - ["ChaosResistanceWhileStationaryUnique__1"] = { affix = "", "+30% to Chaos Resistance while stationary", statOrder = { 5742 }, level = 1, group = "ChaosResistanceWhileStationary", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [779829642] = { "+30% to Chaos Resistance while stationary" }, } }, - ["PowerChargeOnHitWhilePoisonedUnique__1"] = { affix = "", "Gain a Power Charge on Hit while Poisoned", statOrder = { 4531 }, level = 1, group = "PowerChargeOnHitWhilePoisoned", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [800598487] = { "Gain a Power Charge on Hit while Poisoned" }, } }, - ["ChanceToBePoisonedBySpellsUnique__1_"] = { affix = "", "50% chance for Spell Hits against you to inflict Poison", statOrder = { 10161 }, level = 1, group = "ChanceToBePoisonedBySpells", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [2043747322] = { "50% chance for Spell Hits against you to inflict Poison" }, } }, - ["SpiritMinionRefreshOnUniqueHitUnique__1"] = { affix = "", "Summoned Phantasms have 10% chance to refresh their Duration when they Hit a Rare or Unique Enemy", "Summoned Raging Spirits have 10% chance to refresh their Duration when they Hit a Rare or Unique Enemy", statOrder = { 9615, 9803 }, level = 1, group = "SpiritMinionRefreshOnUniqueHit", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [4070754804] = { "Summoned Raging Spirits have 10% chance to refresh their Duration when they Hit a Rare or Unique Enemy" }, [7847395] = { "Summoned Phantasms have 10% chance to refresh their Duration when they Hit a Rare or Unique Enemy" }, } }, - ["MovementVelocityPerPowerChargeUnique__1__"] = { affix = "", "5% increased Movement Speed per Power Charge", statOrder = { 9429 }, level = 1, group = "MovementVelocityPerPowerChargeCopy", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [3774108776] = { "5% increased Movement Speed per Power Charge" }, } }, - ["LifeRegenerationPerPowerChargeUnique__1__"] = { affix = "", "Regenerate 0.5% of Life per second per Power Charge", statOrder = { 7422 }, level = 1, group = "LifeRegenerationPerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3961213398] = { "Regenerate 0.5% of Life per second per Power Charge" }, } }, - ["LocalFlaskAttackAndCastSpeedWhileHealingUnique__1"] = { affix = "", "(5-15)% increased Attack Speed during Effect", "(5-15)% increased Cast Speed during Effect", statOrder = { 944, 945 }, level = 1, group = "LocalFlaskAttackAndCastSpeedWhileHealing", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed" }, tradeHashes = { [3256116097] = { "(5-15)% increased Cast Speed during Effect" }, [968369591] = { "(5-15)% increased Attack Speed during Effect" }, } }, - ["IncreasedElementalResistancesUnique__1"] = { affix = "", "(18-22)% increased Elemental Resistances", statOrder = { 6313 }, level = 1, group = "IncreasedElementalResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [76848920] = { "(18-22)% increased Elemental Resistances" }, } }, - ["IncreasedElementalResistancesUnique__2_"] = { affix = "", "(60-70)% reduced Elemental Resistances", statOrder = { 6313 }, level = 1, group = "IncreasedElementalResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [76848920] = { "(60-70)% reduced Elemental Resistances" }, } }, - ["DefencesAreZeroUnique__1_"] = { affix = "", "Defences are Zero", statOrder = { 6154 }, level = 1, group = "DefencesAreZero", weightKey = { }, weightVal = { }, modTags = { "defences" }, tradeHashes = { [4271994824] = { "Defences are Zero" }, } }, - ["ChaosResistanceIsZeroUnique__1"] = { affix = "", "Chaos Resistance is Zero", statOrder = { 10727 }, level = 1, group = "ChaosResistanceIsZero", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2439129490] = { "Chaos Resistance is Zero" }, } }, - ["ElementalDamageDuringFlaskEffectUnique__1"] = { affix = "", "30% increased Elemental Damage during any Flask Effect", statOrder = { 4225 }, level = 1, group = "ElementalDamageDuringFlaskEffect", weightKey = { }, weightVal = { }, modTags = { "flask", "elemental_damage", "damage", "elemental" }, tradeHashes = { [3150967823] = { "30% increased Elemental Damage during any Flask Effect" }, } }, - ["SupportedByCastOnDamageTakenUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 12 Cast when Damage Taken", statOrder = { 239 }, level = 1, group = "SupportedByCastOnDamageTaken", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [3036440332] = { "Socketed Gems are Supported by Level 12 Cast when Damage Taken" }, } }, - ["ShieldArmourIncreaseUnique__1"] = { affix = "", "50% increased Defences from Equipped Shield", statOrder = { 1994 }, level = 1, group = "ShieldArmourIncrease", weightKey = { }, weightVal = { }, modTags = { "defences" }, tradeHashes = { [1215155013] = { "50% increased Defences from Equipped Shield" }, } }, - ["AddedFireDamageIfBlockedRecentlyUnique__1"] = { affix = "", "Adds 45 to 75 Fire Damage if you've Blocked Recently", statOrder = { 4275 }, level = 1, group = "AddedFireDamageIfBlockedRecently", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3623716321] = { "Adds 45 to 75 Fire Damage if you've Blocked Recently" }, } }, - ["AddedFireDamagePer100LowestOfLifeOrManaUnique__1"] = { affix = "", "(3-4) to (7-8) added Fire Damage per 100 of Maximum Life or Maximum Mana, whichever is lower", statOrder = { 9237 }, level = 1, group = "AddedFireDamagePer100LowestOfLifeOrMana", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [753801406] = { "(3-4) to (7-8) added Fire Damage per 100 of Maximum Life or Maximum Mana, whichever is lower" }, } }, - ["TauntedEnemiesTakeIncreasedDamage_"] = { affix = "", "Enemies Taunted by you take 10% increased Damage", statOrder = { 4280 }, level = 1, group = "TauntedEnemiesTakeIncreasedDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [1282219780] = { "Enemies Taunted by you take 10% increased Damage" }, } }, - ["ChaosDamageCanChill"] = { affix = "", "Your Chaos Damage can Chill", statOrder = { 2868 }, level = 1, group = "ChaosDamageCanChill", weightKey = { }, weightVal = { }, modTags = { "poison", "elemental", "cold", "chaos", "ailment" }, tradeHashes = { [3686066640] = { "Your Chaos Damage can Chill" }, } }, - ["ChaosDamageCanFreezeUnique_1"] = { affix = "", "Your Chaos Damage can Freeze", statOrder = { 2869 }, level = 1, group = "ChaosDamageCanFreeze", weightKey = { }, weightVal = { }, modTags = { "poison", "elemental", "cold", "chaos", "ailment" }, tradeHashes = { [2973498992] = { "Your Chaos Damage can Freeze" }, } }, - ["MainHandTriggerSocketedSpellOnFreezingHitUnique_1"] = { affix = "", "Trigger a Socketed Spell when a Hit from this", "Weapon Freezes a Target, with a 0.25 second Cooldown", statOrder = { 829, 829.1 }, level = 83, group = "MainHandTriggerSocketedSpellOnFreeze", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold" }, tradeHashes = { [537034483] = { "Trigger a Socketed Spell when a Hit from this", "Weapon Freezes a Target, with a 0.25 second Cooldown" }, } }, - ["ElementalDamageIfCritRecently"] = { affix = "", "(120-150)% increased Elemental Damage if you've dealt a Critical Strike Recently", statOrder = { 6303 }, level = 1, group = "ElementalDamageIfCritRecently", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [2379781920] = { "(120-150)% increased Elemental Damage if you've dealt a Critical Strike Recently" }, } }, - ["SupportedByMultiTotemUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 1 Multiple Totems", statOrder = { 340 }, level = 1, group = "SupportedByMultiTotem", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [807186595] = { "Socketed Gems are Supported by Level 1 Multiple Totems" }, } }, - ["AttackAdditionalProjectilesUnique__1"] = { affix = "", "Attacks fire an additional Projectile", statOrder = { 4196 }, level = 1, group = "AttackAdditionalProjectiles", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [1195705739] = { "Attacks fire an additional Projectile" }, } }, - ["ExtraMaximumPhantasmsUnique__1"] = { affix = "", "+3 to maximum number of Summoned Phantasms", statOrder = { 5038 }, level = 1, group = "ExtraMaximumPhantasms", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [517587669] = { "+3 to maximum number of Summoned Phantasms" }, } }, - ["ExtraRagingSpiritsUnique__1"] = { affix = "", "+6 to maximum number of Raging Spirits", statOrder = { 2163 }, level = 1, group = "ExtraRagingSpirits", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [3143579606] = { "+6 to maximum number of Raging Spirits" }, } }, - ["HungryLoopSupportedByPinpoint"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Pinpoint", statOrder = { 104, 353 }, level = 1, group = "HungryLoopSupportedByPinpoint", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [1609369521] = { "Socketed Gems are Supported by Level 20 Pinpoint" }, [1782861052] = { "" }, } }, - ["SpellBlockIfNotBlockedRecentlyUnique__1"] = { affix = "", "You are at Maximum Chance to Block Spell Damage if you have not Blocked Recently", statOrder = { 10133 }, level = 1, group = "MaximumSpellBlockIfNotBlockedRecently", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [1817677817] = { "You are at Maximum Chance to Block Spell Damage if you have not Blocked Recently" }, } }, - ["LocalEnergyShieldRegenerationIfCritRecentlyUnique__1"] = { affix = "", "Regenerate 20% of Energy Shield per second if you've dealt a Critical Strike with this weapon Recently", statOrder = { 7931 }, level = 1, group = "LocalEnergyShieldRegenerationIfCritRecently", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [298613712] = { "Regenerate 20% of Energy Shield per second if you've dealt a Critical Strike with this weapon Recently" }, } }, - ["ColdDamagePerMissingColdResistanceUnique__1"] = { affix = "", "(15-20)% increased Cold Damage per 1% Missing Cold Resistance, up to a maximum of 300%", statOrder = { 5813 }, level = 1, group = "ColdDamagePerMissingColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [2859664487] = { "(15-20)% increased Cold Damage per 1% Missing Cold Resistance, up to a maximum of 300%" }, } }, - ["FireDamagePerMissingFireResistanceUnique__1"] = { affix = "", "(15-20)% increased Fire Damage per 1% Missing Fire Resistance, up to a maximum of 300%", statOrder = { 6567 }, level = 1, group = "FireDamagePerMissingFireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [1060236362] = { "(15-20)% increased Fire Damage per 1% Missing Fire Resistance, up to a maximum of 300%" }, } }, - ["ElementalDamagePerMissingResistanceUnique_1"] = { affix = "", "(10-15)% increased Elemental Damage per 1% Missing", "Fire, Cold, or Lightning Resistance, up to a maximum of 450%", statOrder = { 6296, 6296.1 }, level = 1, group = "ElementalDamagePerMissingResistance", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [64913248] = { "(10-15)% increased Elemental Damage per 1% Missing", "Fire, Cold, or Lightning Resistance, up to a maximum of 450%" }, } }, - ["ReplicaNebulisImplicitModifierMagnitudeUnique_1"] = { affix = "", "(60-120)% increased Implicit Modifier magnitudes", statOrder = { 58 }, level = 1, group = "LocalImplicitStatMagnitude", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2304729532] = { "(60-120)% increased Implicit Modifier magnitudes" }, } }, - ["HyrrisTruthHatredManaReservationFinalUnique__1"] = { affix = "", "Hatred has 100% increased Mana Reservation Efficiency", statOrder = { 6942 }, level = 1, group = "HyrrisTruthHatredManaReservationFinal", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "aura" }, tradeHashes = { [1920370417] = { "Hatred has 100% increased Mana Reservation Efficiency" }, } }, - ["HatredManaReservationEfficiencyUnique__1__"] = { affix = "", "Hatred has 100% increased Mana Reservation Efficiency", statOrder = { 6943 }, level = 1, group = "HatredReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "aura" }, tradeHashes = { [2156140483] = { "Hatred has 100% increased Mana Reservation Efficiency" }, } }, - ["GrantsHatredUnique__1__"] = { affix = "", "Grants Level 22 Hatred Skill", statOrder = { 649 }, level = 81, group = "HatredSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [2429546158] = { "Grants Level 22 Hatred Skill" }, } }, - ["WingsOfEntropyMainHandAttackSpeedFinalUnique__1_"] = { affix = "", "(50-100)% more Main Hand attack speed", statOrder = { 8157 }, level = 1, group = "WingsOfEntropyMainHandAttackSpeedFinal", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [56401364] = { "(50-100)% more Main Hand attack speed" }, } }, - ["OffHandBaseCriticalStrikeChanceUnique__1"] = { affix = "", "+(10-20)% to Off Hand Critical Strike Chance", statOrder = { 4568 }, level = 1, group = "OffHandBaseCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1757389331] = { "+(10-20)% to Off Hand Critical Strike Chance" }, } }, - ["FlammabilityOnBlockChanceUnique__1"] = { affix = "", "Curse Enemies with Flammability on Block", statOrder = { 2986 }, level = 1, group = "FlammabilityOnBlockChance", weightKey = { }, weightVal = { }, modTags = { "block", "curse" }, tradeHashes = { [2776399916] = { "Curse Enemies with Flammability on Block" }, } }, - ["AttackProjectilesForkUnique__1"] = { affix = "", "Projectiles from Attacks Fork", statOrder = { 4881 }, level = 1, group = "AttackProjectilesFork", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [396113830] = { "Projectiles from Attacks Fork" }, } }, - ["AttackProjectilesForkExtraTimesUnique__1"] = { affix = "", "Projectiles from Attacks can Fork 1 additional time", statOrder = { 4882 }, level = 1, group = "AttackProjectilesForkExtraTimes", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [1643324992] = { "Projectiles from Attacks can Fork 1 additional time" }, } }, - ["ImpalePhysicalReductionPenaltyUnique__1"] = { affix = "", "Impale Damage dealt to Enemies Impaled by you Overwhelms 10% Physical Damage Reduction", statOrder = { 2979 }, level = 1, group = "ImpalePhysicalReductionPenalty", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHashes = { [3609854472] = { "Impale Damage dealt to Enemies Impaled by you Overwhelms 10% Physical Damage Reduction" }, } }, - ["MinionLargerAggroRadiusUnique__1"] = { affix = "", "Minions are Aggressive", statOrder = { 10761 }, level = 1, group = "MinionLargerAggroRadius", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [128585622] = { "Minions are Aggressive" }, } }, - ["HungryLoopSupportedByTrinity"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Trinity", statOrder = { 104, 392 }, level = 1, group = "HungryLoopSupportedByTrinity", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [3111091501] = { "Socketed Gems are Supported by Level 20 Trinity" }, [1782861052] = { "" }, } }, - ["LoseLifePercentOnCritUnique__1"] = { affix = "", "Lose (10-15)% of Life when you deal a Critical Strike", statOrder = { 8142 }, level = 1, group = "LoseLifePercentOnCrit", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "critical" }, tradeHashes = { [1862591837] = { "Lose (10-15)% of Life when you deal a Critical Strike" }, } }, - ["LoseEnergyShieldPercentOnCritUnique__1"] = { affix = "", "Lose (10-15)% of Energy Shield when you deal a Critical Strike", statOrder = { 8140 }, level = 1, group = "LoseEnergyShieldPercentOnCrit", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield", "critical" }, tradeHashes = { [1229725509] = { "Lose (10-15)% of Energy Shield when you deal a Critical Strike" }, } }, - ["DamageOverTimeMultiplierIfCrit8SecondsUnique__1_"] = { affix = "", "+(40-60)% to Damage over Time Multiplier if you've dealt a Critical Strike in the past 8 seconds", statOrder = { 6259 }, level = 1, group = "DamageOverTimeMultiplierIfCrit8Seconds", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [3203086927] = { "+(40-60)% to Damage over Time Multiplier if you've dealt a Critical Strike in the past 8 seconds" }, } }, - ["LifeRegenerationIfCrit8SecondsUnique__1"] = { affix = "", "(2-2.5)% of Life Regenerated per Second if you've dealt a Critical Strike in the past 8 seconds", statOrder = { 7415 }, level = 1, group = "LifeRegenerationIfCrit8Seconds", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "critical" }, tradeHashes = { [221532021] = { "(2-2.5)% of Life Regenerated per Second if you've dealt a Critical Strike in the past 8 seconds" }, } }, - ["ArmourPerStrengthUnique__1_"] = { affix = "", "10% reduced Armour per 50 Strength", statOrder = { 4769 }, level = 65, group = "ArmourPerStrength", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [3621706946] = { "10% reduced Armour per 50 Strength" }, } }, - ["EnemiesIgniteChaosDamageUnique__1"] = { affix = "", "Enemies Ignited by you take Chaos Damage instead of Fire Damage from Ignite", statOrder = { 6412 }, level = 62, group = "EnemiesIgniteChaosDamage", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [2714810050] = { "Enemies Ignited by you take Chaos Damage instead of Fire Damage from Ignite" }, [42490373] = { "" }, } }, - ["EnemiesIgniteWitherNeverExpiresUnique__1"] = { affix = "", "Withered does not expire on Enemies Ignited by you", statOrder = { 6413 }, level = 1, group = "EnemiesIgniteWitherNeverExpires", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [279110104] = { "Withered does not expire on Enemies Ignited by you" }, } }, - ["GrantsVampiricIconSkillUnique__1"] = { affix = "", "Grants Level 20 Thirst for Blood Skill", statOrder = { 727 }, level = 1, group = "GrantsVampiricIconSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [1209807941] = { "Grants Level 20 Thirst for Blood Skill" }, } }, - ["LocalBleedDamageOverTimeMultiplierUnique__1"] = { affix = "", "+(25-35)% to Damage over Time Multiplier for Bleeding from Hits with this Weapon", statOrder = { 7865 }, level = 1, group = "LocalBleedDamageOverTimeMultiplier", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [951608773] = { "+(25-35)% to Damage over Time Multiplier for Bleeding from Hits with this Weapon" }, } }, - ["SacrificialZealOnSkillUseUnique__1_"] = { affix = "", "Gain Sacrificial Zeal when you use a Skill, dealing you 150% of the Skill's Mana Cost as Physical Damage per Second", statOrder = { 6816 }, level = 1, group = "SacrificialZealOnSkillUse", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2287328323] = { "Gain Sacrificial Zeal when you use a Skill, dealing you 150% of the Skill's Mana Cost as Physical Damage per Second" }, } }, - ["ArmourPenetrationSacrificialZealUnique__1"] = { affix = "", "Hits have (35-50)% chance to ignore Enemy Physical Damage Reduction while you have Sacrificial Zeal", statOrder = { 7172 }, level = 1, group = "ArmourPenetrationSacrificialZeal", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [4243208518] = { "Hits have (35-50)% chance to ignore Enemy Physical Damage Reduction while you have Sacrificial Zeal" }, } }, - ["RightRingMagicHexproofUnique__1"] = { affix = "", "You are Hexproof if you have a Magic Ring in right slot", statOrder = { 7140 }, level = 1, group = "RightRingMagicHexproof", weightKey = { }, weightVal = { }, modTags = { "curse" }, tradeHashes = { [165884462] = { "You are Hexproof if you have a Magic Ring in right slot" }, } }, - ["LeftRingMagicNoCritDamageUnique__1"] = { affix = "", "Take no Extra Damage from Critical Strikes if you have a Magic Ring in left slot", statOrder = { 9982 }, level = 1, group = "LeftRingMagicNoCritDamage", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [611839381] = { "Take no Extra Damage from Critical Strikes if you have a Magic Ring in left slot" }, } }, - ["AnyRingMagicDamageExtraRollUnique__1"] = { affix = "", "Damage of Enemies Hitting you is Unlucky while you have a Magic Ring Equipped", statOrder = { 6419 }, level = 1, group = "AnyRingMagicDamageExtraRoll", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2510276385] = { "Damage of Enemies Hitting you is Unlucky while you have a Magic Ring Equipped" }, } }, - ["SocketedGemsApplyExposureReducedResistsImplicitR1"] = { affix = "", "Socketed Skills apply Fire, Cold and Lightning Exposure on Hit", "-10% to all Elemental Resistances", statOrder = { 554, 1619 }, level = 15, group = "SocketedGemsApplyExposureReducedResists", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "-10% to all Elemental Resistances" }, [2192875806] = { "Socketed Skills apply Fire, Cold and Lightning Exposure on Hit" }, } }, - ["SocketedGemsApplyExposureReducedResistsImplicitR2"] = { affix = "", "Socketed Skills apply Fire, Cold and Lightning Exposure on Hit", "-10% to all Elemental Resistances", statOrder = { 554, 1619 }, level = 45, group = "SocketedGemsApplyExposureReducedResists", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "-10% to all Elemental Resistances" }, [2192875806] = { "Socketed Skills apply Fire, Cold and Lightning Exposure on Hit" }, } }, - ["SocketedGemsApplyExposureReducedResistsImplicitR3___"] = { affix = "", "Socketed Skills apply Fire, Cold and Lightning Exposure on Hit", "-10% to all Elemental Resistances", statOrder = { 554, 1619 }, level = 75, group = "SocketedGemsApplyExposureReducedResists", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "-10% to all Elemental Resistances" }, [2192875806] = { "Socketed Skills apply Fire, Cold and Lightning Exposure on Hit" }, } }, - ["SocketedActiveGemLevelSupportGemPenaltyImplicitR1"] = { affix = "", "-1 to Level of Socketed Support Gems", "+1 to Level of Socketed Skill Gems", statOrder = { 189, 190 }, level = 15, group = "SocketedActiveGemLevelSupportGemPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [524797741] = { "+1 to Level of Socketed Skill Gems" }, [4154259475] = { "-1 to Level of Socketed Support Gems" }, } }, - ["SocketedActiveGemLevelSupportGemPenaltyImplicitR2"] = { affix = "", "-2 to Level of Socketed Support Gems", "+2 to Level of Socketed Skill Gems", statOrder = { 189, 190 }, level = 45, group = "SocketedActiveGemLevelSupportGemPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [524797741] = { "+2 to Level of Socketed Skill Gems" }, [4154259475] = { "-2 to Level of Socketed Support Gems" }, } }, - ["ChanceToBlockAndDamageTakenFromBlockedHitsImplicitR1"] = { affix = "", "+(4-5)% Chance to Block Attack Damage", "You take 20% of Damage from Blocked Hits", statOrder = { 2458, 4996 }, level = 20, group = "ChanceToBlockAndDamageTakenFromBlockedHits", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2905515354] = { "You take 20% of Damage from Blocked Hits" }, [1702195217] = { "+(4-5)% Chance to Block Attack Damage" }, } }, - ["ChanceToBlockAndDamageTakenFromBlockedHitsImplicitR2__"] = { affix = "", "+(4-5)% Chance to Block Attack Damage", "You take 20% of Damage from Blocked Hits", statOrder = { 2458, 4996 }, level = 50, group = "ChanceToBlockAndDamageTakenFromBlockedHits", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2905515354] = { "You take 20% of Damage from Blocked Hits" }, [1702195217] = { "+(4-5)% Chance to Block Attack Damage" }, } }, - ["ChanceToBlockAndDamageTakenFromBlockedHitsImplicitR3"] = { affix = "", "+(4-5)% Chance to Block Attack Damage", "You take 20% of Damage from Blocked Hits", statOrder = { 2458, 4996 }, level = 80, group = "ChanceToBlockAndDamageTakenFromBlockedHits", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2905515354] = { "You take 20% of Damage from Blocked Hits" }, [1702195217] = { "+(4-5)% Chance to Block Attack Damage" }, } }, - ["ChanceToBlockAndDamageTakenFromBlockedHitsImplicitR4"] = { affix = "", "+(3-4)% Chance to Block Attack Damage", "You take 10% of Damage from Blocked Hits", statOrder = { 2458, 4996 }, level = 20, group = "ChanceToBlockAndDamageTakenFromBlockedHits", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2905515354] = { "You take 10% of Damage from Blocked Hits" }, [1702195217] = { "+(3-4)% Chance to Block Attack Damage" }, } }, - ["ChanceToBlockAndDamageTakenFromBlockedHitsImplicitR5"] = { affix = "", "+(4-5)% Chance to Block Attack Damage", "You take 10% of Damage from Blocked Hits", statOrder = { 2458, 4996 }, level = 50, group = "ChanceToBlockAndDamageTakenFromBlockedHits", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2905515354] = { "You take 10% of Damage from Blocked Hits" }, [1702195217] = { "+(4-5)% Chance to Block Attack Damage" }, } }, - ["ChanceToBlockAndDamageTakenFromBlockedHitsImplicitR6"] = { affix = "", "+(5-6)% Chance to Block Attack Damage", "You take 10% of Damage from Blocked Hits", statOrder = { 2458, 4996 }, level = 80, group = "ChanceToBlockAndDamageTakenFromBlockedHits", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2905515354] = { "You take 10% of Damage from Blocked Hits" }, [1702195217] = { "+(5-6)% Chance to Block Attack Damage" }, } }, - ["IncreasedStunRecoveryReducedStunThresholdImplicitR1"] = { affix = "", "30% increased Stun and Block Recovery", "20% reduced Stun Threshold", statOrder = { 1902, 3272 }, level = 20, group = "IncreasedStunRecoveryReducedStunThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [680068163] = { "20% reduced Stun Threshold" }, [2511217560] = { "30% increased Stun and Block Recovery" }, } }, - ["IncreasedStunRecoveryReducedStunThresholdImplicitR2"] = { affix = "", "40% increased Stun and Block Recovery", "20% reduced Stun Threshold", statOrder = { 1902, 3272 }, level = 50, group = "IncreasedStunRecoveryReducedStunThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [680068163] = { "20% reduced Stun Threshold" }, [2511217560] = { "40% increased Stun and Block Recovery" }, } }, - ["IncreasedStunRecoveryReducedStunThresholdImplicitR3"] = { affix = "", "50% increased Stun and Block Recovery", "20% reduced Stun Threshold", statOrder = { 1902, 3272 }, level = 80, group = "IncreasedStunRecoveryReducedStunThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [680068163] = { "20% reduced Stun Threshold" }, [2511217560] = { "50% increased Stun and Block Recovery" }, } }, - ["MovementSkillCooldownReducedMoveSpeedImplicitR1"] = { affix = "", "10% reduced Movement Speed", "(45-50)% increased Cooldown Recovery Rate of Movement Skills", statOrder = { 1798, 9406 }, level = 20, group = "MovementSkillCooldownReducedMoveSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [1124980805] = { "(45-50)% increased Cooldown Recovery Rate of Movement Skills" }, [2250533757] = { "10% reduced Movement Speed" }, } }, - ["MovementSkillCooldownReducedMoveSpeedImplicitR2_"] = { affix = "", "10% reduced Movement Speed", "(45-50)% increased Cooldown Recovery Rate of Movement Skills", statOrder = { 1798, 9406 }, level = 50, group = "MovementSkillCooldownReducedMoveSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [1124980805] = { "(45-50)% increased Cooldown Recovery Rate of Movement Skills" }, [2250533757] = { "10% reduced Movement Speed" }, } }, - ["MovementSkillCooldownReducedMoveSpeedImplicitR3_"] = { affix = "", "10% reduced Movement Speed", "(45-50)% increased Cooldown Recovery Rate of Movement Skills", statOrder = { 1798, 9406 }, level = 80, group = "MovementSkillCooldownReducedMoveSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [1124980805] = { "(45-50)% increased Cooldown Recovery Rate of Movement Skills" }, [2250533757] = { "10% reduced Movement Speed" }, } }, - ["AddedLightningDamagePerAccuracyReducedAccuracyImplicitR1_"] = { affix = "", "1 to (5-6) Added Attack Lightning Damage per 200 Accuracy Rating", "25% less Accuracy Rating", statOrder = { 4873, 5257 }, level = 20, group = "AddedLightningDamagePerAccuracyReducedAccuracy", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [4139229725] = { "1 to (5-6) Added Attack Lightning Damage per 200 Accuracy Rating" }, [170394517] = { "25% less Accuracy Rating" }, } }, - ["AddedLightningDamagePerAccuracyReducedAccuracyImplicitR2_"] = { affix = "", "1 to (5-6) Added Attack Lightning Damage per 200 Accuracy Rating", "25% less Accuracy Rating", statOrder = { 4873, 5257 }, level = 50, group = "AddedLightningDamagePerAccuracyReducedAccuracy", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [4139229725] = { "1 to (5-6) Added Attack Lightning Damage per 200 Accuracy Rating" }, [170394517] = { "25% less Accuracy Rating" }, } }, - ["AddedLightningDamagePerAccuracyReducedAccuracyImplicitR3"] = { affix = "", "1 to (5-6) Added Attack Lightning Damage per 200 Accuracy Rating", "25% less Accuracy Rating", statOrder = { 4873, 5257 }, level = 80, group = "AddedLightningDamagePerAccuracyReducedAccuracy", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [4139229725] = { "1 to (5-6) Added Attack Lightning Damage per 200 Accuracy Rating" }, [170394517] = { "25% less Accuracy Rating" }, } }, - ["MainHandOffHandDamage1_"] = { affix = "", "25% reduced Attack Damage with Main Hand", "(40-50)% increased Attack Damage with Off Hand", statOrder = { 1282, 1283 }, level = 10, group = "MainHandOffHandDamage", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2924279089] = { "(40-50)% increased Attack Damage with Off Hand" }, [2696701853] = { "25% reduced Attack Damage with Main Hand" }, } }, - ["MainHandOffHandDamage2"] = { affix = "", "25% reduced Attack Damage with Main Hand", "(40-50)% increased Attack Damage with Off Hand", statOrder = { 1282, 1283 }, level = 40, group = "MainHandOffHandDamage", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2924279089] = { "(40-50)% increased Attack Damage with Off Hand" }, [2696701853] = { "25% reduced Attack Damage with Main Hand" }, } }, - ["MainHandOffHandDamage3_"] = { affix = "", "25% reduced Attack Damage with Main Hand", "(40-50)% increased Attack Damage with Off Hand", statOrder = { 1282, 1283 }, level = 70, group = "MainHandOffHandDamage", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2924279089] = { "(40-50)% increased Attack Damage with Off Hand" }, [2696701853] = { "25% reduced Attack Damage with Main Hand" }, } }, - ["TrapSkillEffectDurationTrapCooldownPenaltyImplicitR1"] = { affix = "", "30% reduced Cooldown Recovery Rate for throwing Traps", "Trap Skills have (10-15)% increased Skill Effect Duration", statOrder = { 3461, 10419 }, level = 10, group = "TrapSkillEffectDurationTrapCooldownPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2546859843] = { "Trap Skills have (10-15)% increased Skill Effect Duration" }, [3417757416] = { "30% reduced Cooldown Recovery Rate for throwing Traps" }, } }, - ["TrapSkillEffectDurationTrapCooldownPenaltyImplicitR2"] = { affix = "", "30% reduced Cooldown Recovery Rate for throwing Traps", "Trap Skills have (15-20)% increased Skill Effect Duration", statOrder = { 3461, 10419 }, level = 40, group = "TrapSkillEffectDurationTrapCooldownPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2546859843] = { "Trap Skills have (15-20)% increased Skill Effect Duration" }, [3417757416] = { "30% reduced Cooldown Recovery Rate for throwing Traps" }, } }, - ["TrapSkillEffectDurationTrapCooldownPenaltyImplicitR3"] = { affix = "", "30% reduced Cooldown Recovery Rate for throwing Traps", "Trap Skills have (20-25)% increased Skill Effect Duration", statOrder = { 3461, 10419 }, level = 70, group = "TrapSkillEffectDurationTrapCooldownPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2546859843] = { "Trap Skills have (20-25)% increased Skill Effect Duration" }, [3417757416] = { "30% reduced Cooldown Recovery Rate for throwing Traps" }, } }, - ["GainManaOnManaPaidManaCost1"] = { affix = "", "30% reduced maximum Mana", "(25-30)% chance when you pay a Skill's Cost to gain that much Mana", statOrder = { 1580, 5699 }, level = 10, group = "GainManaOnManaPaidManaCost", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2748665614] = { "30% reduced maximum Mana" }, [1915414884] = { "(25-30)% chance when you pay a Skill's Cost to gain that much Mana" }, } }, - ["GainManaOnManaPaidManaCost2"] = { affix = "", "30% reduced maximum Mana", "(25-30)% chance when you pay a Skill's Cost to gain that much Mana", statOrder = { 1580, 5699 }, level = 40, group = "GainManaOnManaPaidManaCost", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2748665614] = { "30% reduced maximum Mana" }, [1915414884] = { "(25-30)% chance when you pay a Skill's Cost to gain that much Mana" }, } }, - ["GainManaOnManaPaidManaCost3____"] = { affix = "", "30% reduced maximum Mana", "(25-30)% chance when you pay a Skill's Cost to gain that much Mana", statOrder = { 1580, 5699 }, level = 70, group = "GainManaOnManaPaidManaCost", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2748665614] = { "30% reduced maximum Mana" }, [1915414884] = { "(25-30)% chance when you pay a Skill's Cost to gain that much Mana" }, } }, - ["ExertedDamageWarcryCooldown1"] = { affix = "", "Exerted Attacks deal (25-30)% increased Damage", "Warcry Skills have +2 seconds to Cooldown", statOrder = { 6357, 10569 }, level = 10, group = "ExertedDamageWarcryCooldown", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [1569101201] = { "Exerted Attacks deal (25-30)% increased Damage" }, [1504905117] = { "Warcry Skills have +2 seconds to Cooldown" }, } }, - ["ExertedDamageWarcryCooldown2"] = { affix = "", "Exerted Attacks deal (30-40)% increased Damage", "Warcry Skills have +2 seconds to Cooldown", statOrder = { 6357, 10569 }, level = 40, group = "ExertedDamageWarcryCooldown", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [1569101201] = { "Exerted Attacks deal (30-40)% increased Damage" }, [1504905117] = { "Warcry Skills have +2 seconds to Cooldown" }, } }, - ["ExertedDamageWarcryCooldown3"] = { affix = "", "Exerted Attacks deal (40-50)% increased Damage", "Warcry Skills have +2 seconds to Cooldown", statOrder = { 6357, 10569 }, level = 70, group = "ExertedDamageWarcryCooldown", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [1569101201] = { "Exerted Attacks deal (40-50)% increased Damage" }, [1504905117] = { "Warcry Skills have +2 seconds to Cooldown" }, } }, - ["FortifyEffectCrushed1"] = { affix = "", "You are Crushed", "+(2-3) to maximum Fortification", statOrder = { 7920, 9118 }, level = 15, group = "FortifyEffectCrushed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [846313030] = { "You are Crushed" }, [3771516363] = { "-15% additional Physical Damage Reduction" }, [335507772] = { "+(2-3) to maximum Fortification" }, } }, - ["FortifyEffectCrushed2_"] = { affix = "", "You are Crushed", "+(2-3) to maximum Fortification", statOrder = { 7920, 9118 }, level = 45, group = "FortifyEffectCrushed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [846313030] = { "You are Crushed" }, [3771516363] = { "-15% additional Physical Damage Reduction" }, [335507772] = { "+(2-3) to maximum Fortification" }, } }, - ["FortifyEffectCrushed3_"] = { affix = "", "You are Crushed", "+(2-3) to maximum Fortification", statOrder = { 7920, 9118 }, level = 75, group = "FortifyEffectCrushed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [846313030] = { "You are Crushed" }, [3771516363] = { "-15% additional Physical Damage Reduction" }, [335507772] = { "+(2-3) to maximum Fortification" }, } }, - ["MaxChaosResistanceCrushedImplicitR1"] = { affix = "", "+2% to maximum Chaos Resistance", "You are Crushed", statOrder = { 1640, 7920 }, level = 15, group = "MaxChaosResistanceCrushed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1301765461] = { "+2% to maximum Chaos Resistance" }, [846313030] = { "You are Crushed" }, [3771516363] = { "-15% additional Physical Damage Reduction" }, } }, - ["MaxChaosResistanceCrushedImplicitR2"] = { affix = "", "+3% to maximum Chaos Resistance", "You are Crushed", statOrder = { 1640, 7920 }, level = 45, group = "MaxChaosResistanceCrushed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1301765461] = { "+3% to maximum Chaos Resistance" }, [846313030] = { "You are Crushed" }, [3771516363] = { "-15% additional Physical Damage Reduction" }, } }, - ["MaxChaosResistanceCrushedImplicitR3"] = { affix = "", "+4% to maximum Chaos Resistance", "You are Crushed", statOrder = { 1640, 7920 }, level = 75, group = "MaxChaosResistanceCrushed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1301765461] = { "+4% to maximum Chaos Resistance" }, [846313030] = { "You are Crushed" }, [3771516363] = { "-15% additional Physical Damage Reduction" }, } }, - ["AddedColdDamageColdPenetration1"] = { affix = "", "Adds (3-4) to (5-6) Cold Damage", "Your Hits treat Cold Resistance as 10% higher than actual value", statOrder = { 1368, 2983 }, level = 15, group = "AddedColdDamageColdPenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [2387423236] = { "Adds (3-4) to (5-6) Cold Damage" }, [3417711605] = { "Your Hits treat Cold Resistance as 10% higher than actual value" }, } }, - ["AddedColdDamageColdPenetration2"] = { affix = "", "Adds (15-20) to (28-35) Cold Damage", "Your Hits treat Cold Resistance as 10% higher than actual value", statOrder = { 1368, 2983 }, level = 45, group = "AddedColdDamageColdPenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [2387423236] = { "Adds (15-20) to (28-35) Cold Damage" }, [3417711605] = { "Your Hits treat Cold Resistance as 10% higher than actual value" }, } }, - ["AddedColdDamageColdPenetration3"] = { affix = "", "Adds (75-85) to (115-128) Cold Damage", "Your Hits treat Cold Resistance as 10% higher than actual value", statOrder = { 1368, 2983 }, level = 75, group = "AddedColdDamageColdPenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [2387423236] = { "Adds (75-85) to (115-128) Cold Damage" }, [3417711605] = { "Your Hits treat Cold Resistance as 10% higher than actual value" }, } }, - ["GrantsUnhingeUnique__1"] = { affix = "", "Grants Level 20 Unhinge Skill", statOrder = { 723 }, level = 1, group = "GrantsUnhingeSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [3239991868] = { "Grants Level 20 Unhinge Skill" }, } }, - ["PhysicalChaosDamageTakenNotUnhingedUnique__1_"] = { affix = "", "(30-40)% less Physical and Chaos Damage Taken while Sane", statOrder = { 9622 }, level = 1, group = "PhysicalChaosDamageTakenNotUnhinged", weightKey = { }, weightVal = { }, modTags = { "physical", "chaos" }, tradeHashes = { [388639924] = { "(30-40)% less Physical and Chaos Damage Taken while Sane" }, } }, - ["RegenerateLifeNotUnhingedUnique__1"] = { affix = "", "Regenerate 10% Life over one second when Hit while Sane", statOrder = { 9895 }, level = 1, group = "RegenerateLifeNotUnhinged", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2504632495] = { "Regenerate 10% Life over one second when Hit while Sane" }, } }, - ["CriticalStrikeChanceFinalUnhingedUnique__1"] = { affix = "", "(40-60)% more Critical Strike Chance while Insane", statOrder = { 5923 }, level = 1, group = "CriticalStrikeChanceFinalUnhinged", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [2692289207] = { "(40-60)% more Critical Strike Chance while Insane" }, } }, - ["EnemiesExplodeOnKillUnhingedUnique__1_"] = { affix = "", "Enemies Killed by your Hits are destroyed while Insane", statOrder = { 6377 }, level = 1, group = "EnemiesExplodeOnKillUnhinged", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3797538318] = { "Enemies Killed by your Hits are destroyed while Insane" }, } }, - ["CurseAurasAffectYouUnique__1"] = { affix = "", "Curse Auras from Socketed Skills also affect you", statOrder = { 551 }, level = 70, group = "CurseAurasAffectYou", weightKey = { }, weightVal = { }, modTags = { "support", "gem", "curse" }, tradeHashes = { [2965611853] = { "Curse Auras from Socketed Skills also affect you" }, } }, - ["HitAndAilmentDamageCursedEnemiesUnique__1"] = { affix = "", "(15-25)% increased Damage with Hits and Ailments against Cursed Enemies", statOrder = { 7152 }, level = 1, group = "HitAndAilmentDamageCursedEnemies", weightKey = { }, weightVal = { }, modTags = { "damage", "curse" }, tradeHashes = { [539970476] = { "(15-25)% increased Damage with Hits and Ailments against Cursed Enemies" }, } }, - ["ScorchedGroundWhileMovingUnique__1"] = { affix = "", "Drops Scorched Ground while moving, lasting 4 seconds", statOrder = { 4310 }, level = 1, group = "ScorchedGroundWhileMoving", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1558131185] = { "Drops Scorched Ground while moving, lasting 4 seconds" }, } }, - ["NearbyEnemiesAreScorchedUnique__1"] = { affix = "", "Nearby Enemies are Scorched", statOrder = { 3399 }, level = 1, group = "NearbyEnemiesAreScorched", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [3733114005] = { "Nearby Enemies are Scorched" }, } }, - ["ScorchEffectUnique__1"] = { affix = "", "(30-50)% increased Effect of Scorch", statOrder = { 9963 }, level = 1, group = "ScorchEffect", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [344570534] = { "(30-50)% increased Effect of Scorch" }, } }, - ["ScorchedEnemiesDegenExplodeUnique__1_"] = { affix = "", "(30-40)% chance when you Kill a Scorched Enemy to Burn Each surrounding", "Enemy for 4 seconds, dealing 8% of the Killed Enemy's Life as Fire Damage per second", statOrder = { 9965, 9965.1 }, level = 87, group = "ScorchedEnemiesDegenExplode", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [3717165313] = { "(30-40)% chance when you Kill a Scorched Enemy to Burn Each surrounding", "Enemy for 4 seconds, dealing 8% of the Killed Enemy's Life as Fire Damage per second" }, } }, - ["AttackSpeedFrenzyChargeNotGainedUnique__1"] = { affix = "", "(20-25)% increased Attack Speed if you haven't gained a Frenzy Charge Recently", statOrder = { 4899 }, level = 1, group = "AttackSpeedFrenzyChargeNotGained", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [749465463] = { "(20-25)% increased Attack Speed if you haven't gained a Frenzy Charge Recently" }, } }, - ["CriticalStrikeChancePowerChargeNotGainedUnique__1"] = { affix = "", "(60-80)% increased Critical Strike Chance if you haven't gained a Power Charge Recently", statOrder = { 5929 }, level = 1, group = "CriticalStrikeChancePowerChargeNotGained", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [151106430] = { "(60-80)% increased Critical Strike Chance if you haven't gained a Power Charge Recently" }, } }, - ["ExtendFrenzyPowerChargeDurationCullUnique__1"] = { affix = "", "+3 seconds to Duration of Frenzy and Power Charges on Culling Strike", statOrder = { 6672 }, level = 1, group = "ExtendFrenzyPowerChargeDurationCull", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4244234128] = { "+3 seconds to Duration of Frenzy and Power Charges on Culling Strike" }, } }, - ["LifeGainOnCullUnique__1"] = { affix = "", "Gain (120-150) Life on Culling Strike", statOrder = { 7359 }, level = 1, group = "LifeGainOnCull", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2381677442] = { "Gain (120-150) Life on Culling Strike" }, } }, - ["ManaGainOnCullUnique__1_"] = { affix = "", "Gain (10-20) Mana on Culling Strike", statOrder = { 8179 }, level = 1, group = "ManaGainOnCull", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2845511711] = { "Gain (10-20) Mana on Culling Strike" }, } }, - ["GainBrutalChargesInsteadOfEnduranceUnique__1"] = { affix = "", "Gain Brutal Charges instead of Endurance Charges", statOrder = { 6739 }, level = 85, group = "GainBrutalChargesInsteadOfEndurance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2306836071] = { "Gain Brutal Charges instead of Endurance Charges" }, } }, - ["GainAfflictionChargesInsteadOfFrenzyUnique__1"] = { affix = "", "Gain Affliction Charges instead of Frenzy Charges", statOrder = { 6720 }, level = 85, group = "GainAfflictionChargesInsteadOfFrenzy", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1602173343] = { "Gain Affliction Charges instead of Frenzy Charges" }, } }, - ["GainAbsorptionChargesInsteadOfPowerUnique__1"] = { affix = "", "Gain Absorption Charges instead of Power Charges", statOrder = { 6710 }, level = 85, group = "GainAbsorptionChargesInsteadOfPower", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1379726309] = { "Gain Absorption Charges instead of Power Charges" }, } }, - ["MaximumBrutalChargesEqualsEnduranceUnique__1__"] = { affix = "", "Maximum Brutal Charges is equal to Maximum Endurance Charges", statOrder = { 1807 }, level = 1, group = "MaximumBrutalChargesEqualsEndurance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3710150470] = { "Maximum Brutal Charges is equal to Maximum Endurance Charges" }, } }, - ["MaximumAfflictionChargesEqualsFrenzyUnique__1"] = { affix = "", "Maximum Affliction Charges is equal to Maximum Frenzy Charges", statOrder = { 1812 }, level = 1, group = "MaximumAfflictionChargesEqualsFrenzy", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2817027713] = { "Maximum Affliction Charges is equal to Maximum Frenzy Charges" }, } }, - ["MaximumAbsorptionChargesEqualsPowerUnique__1_"] = { affix = "", "Maximum Absorption Charges is equal to Maximum Power Charges", statOrder = { 1817 }, level = 1, group = "MaximumAbsorptionChargesEqualsPower", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2494027711] = { "Maximum Absorption Charges is equal to Maximum Power Charges" }, } }, - ["MinimumBrutalChargeModifiersEqualsEnduranceUnique__1"] = { affix = "", "Modifiers to Minimum Endurance Charges instead apply to Minimum Brutal Charges", statOrder = { 1806 }, level = 1, group = "MinimumBrutalChargeModifiersEqualsEndurance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2966482502] = { "Modifiers to Minimum Endurance Charges instead apply to Minimum Brutal Charges" }, } }, - ["MinimumAfflictionChargeModifiersEqualsFrenzyUnique__1"] = { affix = "", "Modifiers to Minimum Frenzy Charges instead apply to Minimum Affliction Charges", statOrder = { 1811 }, level = 1, group = "MinimumAfflictionChargeModifiersEqualsFrenzy", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1424305790] = { "Modifiers to Minimum Frenzy Charges instead apply to Minimum Affliction Charges" }, } }, - ["MinimumAbsorptionChargeModifiersEqualsPowerUnique__1"] = { affix = "", "Modifiers to Minimum Power Charges instead apply to Minimum Absorption Charges", statOrder = { 1816 }, level = 1, group = "MinimumAbsorptionChargeModifiersEqualsPower", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1752582590] = { "Modifiers to Minimum Power Charges instead apply to Minimum Absorption Charges" }, } }, - ["MinionsCrazyOnCritUnique__1__"] = { affix = "", "Minions can hear the whispers for 5 seconds after they deal a Critical Strike", statOrder = { 9355 }, level = 1, group = "MinionsCrazyOnCrit", weightKey = { }, weightVal = { }, modTags = { "minion", "critical" }, tradeHashes = { [2735021664] = { "Minions can hear the whispers for 5 seconds after they deal a Critical Strike" }, } }, - ["MinionCriticalStrikeChanceMaximumPowerChargeUnique__1"] = { affix = "", "Minions have 50% increased Critical Strike Chance per Maximum Power Charge you have", statOrder = { 9290 }, level = 1, group = "MinionCriticalStrikeChanceMaximumPowerCharge", weightKey = { }, weightVal = { }, modTags = { "minion", "critical" }, tradeHashes = { [446070669] = { "Minions have 50% increased Critical Strike Chance per Maximum Power Charge you have" }, } }, - ["PhysicalDamageTakenAsLightningDescentTwoHandSword1"] = { affix = "", "50% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2449 }, level = 1, group = "PhysicalDamageTakenAsLightningPercent", weightKey = { }, weightVal = { }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "50% of Physical Damage from Hits taken as Lightning Damage" }, } }, - ["LocalDisplayYouAndNearbyAlliesHaveIncreasedItemRarityUnique__1"] = { affix = "", "You and Nearby Allies have 30% increased Item Rarity", statOrder = { 1598 }, level = 1, group = "LocalDisplayYouAndNearbyAlliesHaveIncreasedItemRarity", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "30% increased Rarity of Items found" }, [549203380] = { "You and Nearby Allies have 30% increased Item Rarity" }, } }, - ["BattlemageKeystoneUnique__1"] = { affix = "", "Battlemage", statOrder = { 10772 }, level = 1, group = "KeystoneBattlemage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [448903047] = { "Battlemage" }, } }, - ["BattlemageKeystoneUnique__2_"] = { affix = "", "Battlemage", statOrder = { 10772 }, level = 1, group = "KeystoneBattlemage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [448903047] = { "Battlemage" }, } }, - ["BattlemageKeystoneUnique__3"] = { affix = "", "Battlemage", statOrder = { 10772 }, level = 1, group = "KeystoneBattlemage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [448903047] = { "Battlemage" }, } }, - ["BattlemageKeystoneUnique__4"] = { affix = "", "Battlemage", statOrder = { 10772 }, level = 1, group = "KeystoneBattlemage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [448903047] = { "Battlemage" }, } }, - ["BattlemageKeystoneUnique__6"] = { affix = "", "Battlemage", statOrder = { 10772 }, level = 1, group = "KeystoneBattlemage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [448903047] = { "Battlemage" }, } }, - ["ChainOffTerrainChancePerRangedAbyssJewelUnique__1__"] = { affix = "", "Projectiles have 4% chance to be able to Chain when colliding with terrain per", "Searching Eye Jewel affecting you, up to a maximum of 20%", statOrder = { 9728, 9728.1 }, level = 1, group = "ChainOffTerrainChancePerRangedAbyssJewel", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1485085047] = { "Projectiles have 4% chance to be able to Chain when colliding with terrain per", "Searching Eye Jewel affecting you, up to a maximum of 20%" }, } }, - ["MainHandCriticalStrikeChancePerMeleeAbyssJewelUnique__1"] = { affix = "", "40% increased Main Hand Critical Strike Chance per", "Murderous Eye Jewel affecting you, up to a maximum of 200%", statOrder = { 8159, 8159.1 }, level = 1, group = "MainHandCriticalStrikeChancePerMeleeAbyssJewel", weightKey = { }, weightVal = { }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [3454830051] = { "40% increased Main Hand Critical Strike Chance per", "Murderous Eye Jewel affecting you, up to a maximum of 200%" }, } }, - ["OffHandCriticalStrikeMultiplierPerMeleeAbyssJewelUnique__1__"] = { affix = "", "+20% to Off Hand Critical Strike Multiplier per", "Murderous Eye Jewel affecting you, up to a maximum of +100%", statOrder = { 9551, 9551.1 }, level = 1, group = "OffHandCriticalStrikeMultiplierPerMeleeAbyssJewel", weightKey = { }, weightVal = { }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [3699529133] = { "+20% to Off Hand Critical Strike Multiplier per", "Murderous Eye Jewel affecting you, up to a maximum of +100%" }, } }, - ["MinionDamageOverTimeMultiplierPerMinionAbyssJewelUnique__1"] = { affix = "", "Minions have +6% to Damage over Time Multiplier per", "Ghastly Eye Jewel affecting you, up to a maximum of +30%", statOrder = { 9295, 9295.1 }, level = 1, group = "MinionDamageOverTimeMultiplierPerMinionAbyssJewel", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, tradeHashes = { [613055432] = { "Minions have +6% to Damage over Time Multiplier per", "Ghastly Eye Jewel affecting you, up to a maximum of +30%" }, } }, - ["ArcaneSurgeEffectPerCasterAbyssJewelUnique__1"] = { affix = "", "8% increased Effect of Arcane Surge on you per", "Hypnotic Eye Jewel affecting you, up to a maximum of 40%", statOrder = { 3287, 3287.1 }, level = 1, group = "ArcaneSurgeEffectPerCasterAbyssJewel", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHashes = { [1012072406] = { "8% increased Effect of Arcane Surge on you per", "Hypnotic Eye Jewel affecting you, up to a maximum of 40%" }, } }, - ["MapAdditionalBlightEnchantment"] = { affix = "", "Area contains a Blight Encounter", statOrder = { 586 }, level = 1, group = "MapAdditionalBlightEnchantment", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2459443694] = { "Area contains a Blight Encounter" }, } }, - ["MapAdditionalBreachEnchantment1"] = { affix = "", "Area can contain Breaches", "Area contains an additional unstable Breach", statOrder = { 2613, 8373 }, level = 1, group = "MapAdditionalBreachEnchantment", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3629113735] = { "" }, [1385280440] = { "Area contains an additional unstable Breach" }, [2180286756] = { "Area can contain Breaches" }, } }, - ["MapAdditionalBreachEnchantment2"] = { affix = "", "Area can contain Breaches", "Area contains 2 additional unstable Breaches", statOrder = { 2613, 8373 }, level = 1, group = "MapAdditionalBreachEnchantment", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3629113735] = { "" }, [1385280440] = { "Area contains 2 additional unstable Breaches" }, [2180286756] = { "Area can contain Breaches" }, } }, - ["MapAdditionalBreachEnchantment3__"] = { affix = "", "Area can contain Breaches", "Area contains 3 additional unstable Breaches", statOrder = { 2613, 8373 }, level = 1, group = "MapAdditionalBreachEnchantment", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3629113735] = { "" }, [1385280440] = { "Area contains 3 additional unstable Breaches" }, [2180286756] = { "Area can contain Breaches" }, } }, - ["MapAdditionalBreachEnchantment5"] = { affix = "", "Area can contain Breaches", "Area contains 4 additional unstable Breaches", statOrder = { 2613, 8373 }, level = 1, group = "MapAdditionalBreachEnchantment", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3629113735] = { "" }, [1385280440] = { "Area contains 4 additional unstable Breaches" }, [2180286756] = { "Area can contain Breaches" }, } }, - ["GrantsCallOfSteelSkillUnique__1_"] = { affix = "", "Grants Call of Steel", statOrder = { 694 }, level = 1, group = "GrantsCallOfSteelSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [3637628300] = { "Grants Call of Steel" }, } }, - ["GrantsCallOfSteelSkillUnique__2"] = { affix = "", "Grants Call of Steel", statOrder = { 694 }, level = 1, group = "GrantsCallOfSteelSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [3637628300] = { "Grants Call of Steel" }, } }, - ["LocalVeiledModEffectUnique__1"] = { affix = "", "(60-90)% increased Unveiled Modifier magnitudes", statOrder = { 56 }, level = 85, group = "LocalVeiledModEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [586037801] = { "(60-90)% increased Unveiled Modifier magnitudes" }, } }, - ["LocalFreezeAsThoughDealingMoreDamageUnique__1"] = { affix = "", "Hits with this Weapon Freeze Enemies as though dealing (150-200)% more Damage", statOrder = { 7942 }, level = 1, group = "LocalFreezeAsThoughDealingMoreDamage", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "attack", "ailment" }, tradeHashes = { [2071306253] = { "Hits with this Weapon Freeze Enemies as though dealing (150-200)% more Damage" }, } }, - ["LocalShockAsThoughDealingMoreDamageUnique__1"] = { affix = "", "Hits with this Weapon Shock Enemies as though dealing (150-200)% more Damage", statOrder = { 7943 }, level = 1, group = "LocalShockAsThoughDealingMoreDamage", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "attack", "ailment" }, tradeHashes = { [1386792919] = { "Hits with this Weapon Shock Enemies as though dealing (150-200)% more Damage" }, } }, - ["LocalWeaponMoreIgniteDamageUnique__1"] = { affix = "", "Ignites inflicted with this Weapon deal (50-75)% more Damage", statOrder = { 7944 }, level = 1, group = "LocalWeaponMoreIgniteDamage", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "attack", "ailment" }, tradeHashes = { [3165905801] = { "Ignites inflicted with this Weapon deal (50-75)% more Damage" }, } }, - ["ChanceToThrowFourAdditionalTrapsUnique__1"] = { affix = "", "(4-6)% chance to throw up to 4 additional Traps", statOrder = { 5724 }, level = 1, group = "ChanceToThrowFourAdditionalTraps", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3132227798] = { "(4-6)% chance to throw up to 4 additional Traps" }, } }, - ["GainMaximumPowerChargesOnVaalSkillUseUnique__1"] = { affix = "", "Gain up to maximum Power Charges when you use a Vaal Skill", statOrder = { 6777 }, level = 1, group = "GainMaximumPowerChargesOnVaalSkillUse", weightKey = { }, weightVal = { }, modTags = { "power_charge", "vaal" }, tradeHashes = { [3558528738] = { "Gain up to maximum Power Charges when you use a Vaal Skill" }, } }, - ["GainRandomChargeOnVaalSkillUseUnique__1_"] = { affix = "", "Gain an Endurance Charge, Frenzy Charge, and Power Charge when you use a Vaal Skill", statOrder = { 6766 }, level = 1, group = "GainRandomChargeOnVaalSkillUse", weightKey = { }, weightVal = { }, modTags = { "power_charge", "frenzy_charge", "endurance_charge", "vaal" }, tradeHashes = { [1258100102] = { "Gain an Endurance Charge, Frenzy Charge, and Power Charge when you use a Vaal Skill" }, } }, - ["CountOnFullLifeWhileAffectedByVulnerabilityUnique__1"] = { affix = "", "You count as on Full Life while you are Cursed with Vulnerability", statOrder = { 3119 }, level = 1, group = "CountOnFullLifeWhileAffectedByVulnerability", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3257374551] = { "You count as on Full Life while you are Cursed with Vulnerability" }, } }, - ["VaalAttacksUseRageInsteadOfSoulsUnique__1_"] = { affix = "", "Vaal Attack Skills you Use yourself Cost Rage instead of requiring Souls", statOrder = { 2691 }, level = 90, group = "VaalAttacksUseRageInsteadOfSouls", weightKey = { }, weightVal = { }, modTags = { "vaal" }, tradeHashes = { [1103075489] = { "Vaal Attack Skills you Use yourself Cost Rage instead of requiring Souls" }, } }, - ["CannotGainRageDuringSoulGainPreventionUnique__1__"] = { affix = "", "You cannot gain Rage during Soul Gain Prevention", statOrder = { 5436 }, level = 1, group = "CannotGainRageDuringSoulGainPrevention", weightKey = { }, weightVal = { }, modTags = { "vaal" }, tradeHashes = { [683365179] = { "You cannot gain Rage during Soul Gain Prevention" }, } }, - ["SupportedByRageUnique__1__"] = { affix = "", "Socketed Gems are Supported by Level 30 Rage", statOrder = { 360 }, level = 1, group = "SupportedByRage", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [369650395] = { "Socketed Gems are Supported by Level 30 Rage" }, } }, - ["ReducedRageCostUnique__1"] = { affix = "", "(10-25)% reduced Rage Cost of Skills", statOrder = { 1884 }, level = 1, group = "RageCost", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3415234440] = { "(10-25)% reduced Rage Cost of Skills" }, } }, - ["LifeAndReducedFireResistanceUnique__1"] = { affix = "", "(30-40)% increased maximum Life and reduced Fire Resistance", statOrder = { 1587 }, level = 1, group = "LifeAndReducedFireResistance", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "elemental", "fire", "resistance" }, tradeHashes = { [3018691556] = { "(30-40)% increased maximum Life and reduced Fire Resistance" }, } }, - ["ManaAndReducedColdResistanceUnique__1"] = { affix = "", "(30-40)% increased maximum Mana and reduced Cold Resistance", statOrder = { 1588 }, level = 1, group = "ManaAndReducedColdResistance", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "elemental", "lightning", "resistance" }, tradeHashes = { [1156957589] = { "(30-40)% increased maximum Mana and reduced Cold Resistance" }, } }, - ["EnergyShieldAndReducedLightningResistanceUnique__1"] = { affix = "", "(30-40)% increased Global maximum Energy Shield and reduced Lightning Resistance", statOrder = { 1589 }, level = 1, group = "EnergyShieldAndReducedLightningResistance", weightKey = { }, weightVal = { }, modTags = { "defences", "elemental", "cold", "resistance" }, tradeHashes = { [1381972535] = { "(30-40)% increased Global maximum Energy Shield and reduced Lightning Resistance" }, } }, - ["VaalSkillDamageUnique__1"] = { affix = "", "(80-120)% increased Damage with Vaal Skills", statOrder = { 3095 }, level = 1, group = "VaalSkillDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "vaal" }, tradeHashes = { [2257141320] = { "(80-120)% increased Damage with Vaal Skills" }, } }, - ["VaalSoulGainPreventionUnique__1__"] = { affix = "", "(6-8)% reduced Soul Gain Prevention Duration", statOrder = { 3106 }, level = 1, group = "VaalSoulGainPrevention", weightKey = { }, weightVal = { }, modTags = { "vaal" }, tradeHashes = { [1980613100] = { "(6-8)% reduced Soul Gain Prevention Duration" }, } }, - ["LuckyCriticalsOnLowLifeUnique__1___"] = { affix = "", "Your Critical Strike Chance is Lucky while on Low Life", statOrder = { 6532 }, level = 1, group = "LuckyCriticalsOnLowLife", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [2706122133] = { "Your Critical Strike Chance is Lucky while on Low Life" }, } }, - ["UltimatumTrialDifficultyDamage2__"] = { affix = "", "10% increased Monster Damage", statOrder = { 2380 }, level = 1, group = "MapMonsterDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2390685262] = { "" }, [1890519597] = { "10% increased Monster Damage" }, } }, - ["UltimatumTrialDifficultyDamage3"] = { affix = "", "20% increased Monster Damage", statOrder = { 2380 }, level = 1, group = "MapMonsterDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2390685262] = { "" }, [1890519597] = { "20% increased Monster Damage" }, } }, - ["UltimatumTrialDifficultyDamage4_"] = { affix = "", "30% increased Monster Damage", statOrder = { 2380 }, level = 1, group = "MapMonsterDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2390685262] = { "" }, [1890519597] = { "30% increased Monster Damage" }, } }, - ["UltimatumTrialDifficultyDamage5_"] = { affix = "", "50% increased Monster Damage", statOrder = { 2380 }, level = 1, group = "MapMonsterDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2390685262] = { "" }, [1890519597] = { "50% increased Monster Damage" }, } }, - ["UltimatumTrialDifficultyLife2_"] = { affix = "", "30% more Monster Life", statOrder = { 2367 }, level = 1, group = "MapMonsterLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2390685262] = { "" }, [95249895] = { "30% more Monster Life" }, } }, - ["UltimatumTrialDifficultyLife3"] = { affix = "", "70% more Monster Life", statOrder = { 2367 }, level = 1, group = "MapMonsterLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2390685262] = { "" }, [95249895] = { "70% more Monster Life" }, } }, - ["UltimatumTrialDifficultyLife4_"] = { affix = "", "120% more Monster Life", statOrder = { 2367 }, level = 1, group = "MapMonsterLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2390685262] = { "" }, [95249895] = { "120% more Monster Life" }, } }, - ["UltimatumTrialDifficultyLife5"] = { affix = "", "200% more Monster Life", statOrder = { 2367 }, level = 1, group = "MapMonsterLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2390685262] = { "" }, [95249895] = { "200% more Monster Life" }, } }, - ["EnergyShieldAdditiveModifiersInsteadApplyToWardUnique__"] = { affix = "", "Increases and Reductions to Maximum Energy Shield instead apply to Ward", statOrder = { 6429 }, level = 1, group = "EnergyShieldAdditiveModifiersInsteadApplyToWard", weightKey = { }, weightVal = { }, modTags = { "defences" }, tradeHashes = { [4100175081] = { "Increases and Reductions to Maximum Energy Shield instead apply to Ward" }, } }, - ["GlobalAddedChaosDamageWardUnique__"] = { affix = "", "Gain Added Chaos Damage equal to 10% of Ward", statOrder = { 2068 }, level = 1, group = "GlobalAddedChaosDamageWard", weightKey = { }, weightVal = { }, modTags = { "chaos" }, tradeHashes = { [3535421504] = { "Gain Added Chaos Damage equal to 10% of Ward" }, } }, - ["LocalIncreasedWardPercentUnique__1_"] = { affix = "", "(33-48)% increased Ward", statOrder = { 1530 }, level = 1, group = "LocalWardPercent", weightKey = { }, weightVal = { }, modTags = { "defences" }, tradeHashes = { [830161081] = { "(33-48)% increased Ward" }, } }, - ["LocalIncreasedWardPercentUnique__2"] = { affix = "", "(25-35)% increased Ward", statOrder = { 1530 }, level = 1, group = "LocalWardPercent", weightKey = { }, weightVal = { }, modTags = { "defences" }, tradeHashes = { [830161081] = { "(25-35)% increased Ward" }, } }, - ["LocalIncreasedWardPercentUnique__3"] = { affix = "", "(30-50)% increased Ward", statOrder = { 1530 }, level = 1, group = "LocalWardPercent", weightKey = { }, weightVal = { }, modTags = { "defences" }, tradeHashes = { [830161081] = { "(30-50)% increased Ward" }, } }, - ["LocalIncreasedWardPercentUnique__4_"] = { affix = "", "(50-80)% increased Ward", statOrder = { 1530 }, level = 1, group = "LocalWardPercent", weightKey = { }, weightVal = { }, modTags = { "defences" }, tradeHashes = { [830161081] = { "(50-80)% increased Ward" }, } }, - ["DamageBypassesWardPercentUnique__1"] = { affix = "", "75% of Damage taken bypasses Ward", statOrder = { 5006 }, level = 1, group = "DamageBypassesWardPercent", weightKey = { }, weightVal = { }, modTags = { "defences" }, tradeHashes = { [3000966016] = { "75% of Damage taken bypasses Ward" }, } }, - ["LocalIncreasedWardUnique__1"] = { affix = "", "+(100-150) to Ward", statOrder = { 1528 }, level = 1, group = "LocalWard", weightKey = { }, weightVal = { }, modTags = { "defences" }, tradeHashes = { [774059442] = { "+(100-150) to Ward" }, } }, - ["WardDelayRecoveryUnique__1"] = { affix = "", "(40-60)% faster Restoration of Ward", statOrder = { 1531 }, level = 1, group = "WardDelayRecovery", weightKey = { }, weightVal = { }, modTags = { "defences" }, tradeHashes = { [1130670241] = { "(40-60)% faster Restoration of Ward" }, } }, - ["WardDelayRecoveryUnique__2"] = { affix = "", "(30-50)% slower Restoration of Ward", statOrder = { 1531 }, level = 1, group = "WardDelayRecovery", weightKey = { }, weightVal = { }, modTags = { "defences" }, tradeHashes = { [1130670241] = { "(30-50)% slower Restoration of Ward" }, } }, - ["GrantsSummonArbalistsSkillUnique__1_"] = { affix = "", "Triggers Level 20 Summon Arbalists when Equipped", statOrder = { 776 }, level = 1, group = "GrantsSummonArbalistsSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [3664803307] = { "Triggers Level 20 Summon Arbalists when Equipped" }, } }, - ["AdrenalineOnWardBreakUnique__1"] = { affix = "", "Gain Adrenaline for 3 seconds when Ward Breaks", statOrder = { 6719 }, level = 1, group = "AdrenalineOnWardBreak", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4231915769] = { "Gain Adrenaline for 3 seconds when Ward Breaks" }, } }, - ["FlaskChargesFromKillsFinalUnique__1_"] = { affix = "", "80% less Flask Charges gained from Kills", statOrder = { 6635 }, level = 1, group = "FlaskChargesFromKillsFinal", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [624257168] = { "80% less Flask Charges gained from Kills" }, } }, - ["FlaskChargePerSecondUniqueEnemyUnique__1___"] = { affix = "", "Flasks gain 1 Charge per second if you've Hit a Unique Enemy Recently", statOrder = { 6753 }, level = 1, group = "FlaskChargePerSecondUniqueEnemy", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [3599443205] = { "Flasks gain 1 Charge per second if you've Hit a Unique Enemy Recently" }, } }, - ["SummonArbalistNumberOfArbalistsAllowed"] = { affix = "", "+1 to number of Summoned Arbalists", statOrder = { 9532 }, level = 1, group = "SummonArbalistNumberOfArbalistsAllowed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1886245216] = { "+1 to number of Summoned Arbalists" }, } }, - ["SummonArbalistNumberOfAdditionalProjectiles_"] = { affix = "", "Summoned Arbalists fire (2-4) additional Projectiles", statOrder = { 10281 }, level = 1, group = "SummonArbalistNumberOfAdditionalProjectiles", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2087104263] = { "Summoned Arbalists fire (2-4) additional Projectiles" }, } }, - ["SummonArbalistAttackSpeed_"] = { affix = "", "Summoned Arbalists have (30-40)% increased Attack Speed", statOrder = { 10271 }, level = 1, group = "SummonArbalistAttackSpeed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4054463312] = { "Summoned Arbalists have (30-40)% increased Attack Speed" }, } }, - ["SummonArbalistTargetsToPierce"] = { affix = "", "Summoned Arbalists' Projectiles Pierce (2-4) additional Targets", statOrder = { 10290 }, level = 1, group = "SummonArbalistTargetsToPierce", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3741465646] = { "Summoned Arbalists' Projectiles Pierce (2-4) additional Targets" }, } }, - ["SummonArbalistProjectilesFork"] = { affix = "", "Summoned Arbalists' Projectiles Fork", statOrder = { 10289 }, level = 1, group = "SummonArbalistProjectilesFork", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2461270975] = { "Summoned Arbalists' Projectiles Fork" }, } }, - ["SummonArbalistChains_"] = { affix = "", "Summoned Arbalists' Projectiles Chain +2 times", statOrder = { 10272 }, level = 1, group = "SummonArbalistChains", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3010688059] = { "Summoned Arbalists' Projectiles Chain +2 times" }, } }, - ["SummonArbalistNumberOfSplits__"] = { affix = "", "Summoned Arbalists' Projectiles Split into 3", statOrder = { 10282 }, level = 1, group = "SummonArbalistNumberOfSplits", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1857935842] = { "Summoned Arbalists' Projectiles Split into 3" }, } }, - ["SummonArbalistChanceToDealDoubleDamage___"] = { affix = "", "Summoned Arbalists have (25-35)% chance to deal Double Damage", statOrder = { 10275 }, level = 1, group = "SummonArbalistChanceToDealDoubleDamage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3057722139] = { "Summoned Arbalists have (25-35)% chance to deal Double Damage" }, } }, - ["SummonArbalistChanceToMaimfor4secondsOnHit_"] = { affix = "", "Summoned Arbalists have (20-30)% chance to Maim for 4 seconds on Hit", statOrder = { 10278 }, level = 1, group = "SummonArbalistChanceToMaimfor4secondsOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3652224635] = { "Summoned Arbalists have (20-30)% chance to Maim for 4 seconds on Hit" }, } }, - ["SummonArbalistChanceToIntimidateFor4SecondsOnHit"] = { affix = "", "Summoned Arbalists have (20-30)% chance to Intimidate for 4 seconds on Hit", statOrder = { 10277 }, level = 1, group = "SummonArbalistChanceToIntimidateFor4SecondsOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3964074505] = { "Summoned Arbalists have (20-30)% chance to Intimidate for 4 seconds on Hit" }, } }, - ["SummonArbalistChanceToUnnerveFor4SecondsOnHit_"] = { affix = "", "Summoned Arbalists have (20-30)% chance to Unnerve for 4 seconds on Hit", statOrder = { 10280 }, level = 1, group = "SummonArbalistChanceToUnnerveFor4SecondsOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3976916585] = { "Summoned Arbalists have (20-30)% chance to Unnerve for 4 seconds on Hit" }, } }, - ["SummonArbalistChanceToInflictFireExposureOnHit_"] = { affix = "", "Summoned Arbalists have (10-20)% chance to inflict Fire Exposure on Hit", statOrder = { 10295 }, level = 1, group = "SummonArbalistChanceToInflictFireExposureOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3327243369] = { "Summoned Arbalists have (10-20)% chance to inflict Fire Exposure on Hit" }, } }, - ["SummonArbalistChanceToInflictColdExposureonHit"] = { affix = "", "Summoned Arbalists have (10-20)% chance to inflict Cold Exposure on Hit", statOrder = { 10294 }, level = 1, group = "SummonArbalistChanceToInflictColdExposureonHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [157070900] = { "Summoned Arbalists have (10-20)% chance to inflict Cold Exposure on Hit" }, } }, - ["SummonArbalistChanceToInflictLightningExposureOnHit_"] = { affix = "", "Summoned Arbalists have (10-20)% chance to inflict Lightning Exposure on Hit", statOrder = { 10296 }, level = 1, group = "SummonArbalistChanceToInflictLightningExposureOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [223656429] = { "Summoned Arbalists have (10-20)% chance to inflict Lightning Exposure on Hit" }, } }, - ["SummonArbalistChanceToCrushOnHit"] = { affix = "", "Summoned Arbalists have (10-20)% chance to Crush on Hit", statOrder = { 10274 }, level = 1, group = "SummonArbalistChanceToCrushOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1658936540] = { "Summoned Arbalists have (10-20)% chance to Crush on Hit" }, } }, - ["SummonArbalistPhysicalDamagePercentToConvertToFire"] = { affix = "", "Summoned Arbalists Convert 100% of Physical Damage to Fire Damage", "Summoned Arbalists have (10-20)% chance to Ignite", statOrder = { 10287, 10292 }, level = 1, group = "SummonArbalistPhysicalDamageToConvertToFire", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [831284309] = { "Summoned Arbalists have (10-20)% chance to Ignite" }, [2954406821] = { "Summoned Arbalists Convert 100% of Physical Damage to Fire Damage" }, } }, - ["SummonArbalistPhysicalDamagePercentToConvertToCold_"] = { affix = "", "Summoned Arbalists Convert 100% of Physical Damage to Cold Damage", "Summoned Arbalists have (10-20)% chance to Freeze", statOrder = { 10286, 10291 }, level = 1, group = "SummonArbalistPhysicalDamageToConvertToCold", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2052458107] = { "Summoned Arbalists have (10-20)% chance to Freeze" }, [1094808741] = { "Summoned Arbalists Convert 100% of Physical Damage to Cold Damage" }, } }, - ["SummonArbalistPhysicalDamagePercentToConvertToLightning"] = { affix = "", "Summoned Arbalists Convert 100% of Physical Damage to Lightning Damage", "Summoned Arbalists have (10-20)% chance to Shock", statOrder = { 10288, 10293 }, level = 1, group = "SummonArbalistPhysicalDamageToConvertToLightning", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2144847042] = { "Summoned Arbalists have (10-20)% chance to Shock" }, [2934219859] = { "Summoned Arbalists Convert 100% of Physical Damage to Lightning Damage" }, } }, - ["SummonArbalistPhysicalDamagePercentToAddAsFire"] = { affix = "", "Summoned Arbalists gain (30-40)% of Physical Damage as Extra Fire Damage", "Summoned Arbalists have 20% chance to inflict Fire Exposure on Hit", statOrder = { 10284, 10295 }, level = 1, group = "SummonArbalistPhysicalDamageToAddAsFire", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1477474340] = { "Summoned Arbalists gain (30-40)% of Physical Damage as Extra Fire Damage" }, [3327243369] = { "Summoned Arbalists have 20% chance to inflict Fire Exposure on Hit" }, } }, - ["SummonArbalistPhysicalDamagePercentToAddAsCold_"] = { affix = "", "Summoned Arbalists gain (30-40)% of Physical Damage as Extra Cold Damage", "Summoned Arbalists have 20% chance to inflict Cold Exposure on Hit", statOrder = { 10283, 10294 }, level = 1, group = "SummonArbalistPhysicalDamageToAddAsCold", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [157070900] = { "Summoned Arbalists have 20% chance to inflict Cold Exposure on Hit" }, [655918588] = { "Summoned Arbalists gain (30-40)% of Physical Damage as Extra Cold Damage" }, } }, - ["SummonArbalistPhysicalDamagePercentToAddAsLightning"] = { affix = "", "Summoned Arbalists gain (30-40)% of Physical Damage as Extra Lightning Damage", "Summoned Arbalists have 20% chance to inflict Lightning Exposure on Hit", statOrder = { 10285, 10296 }, level = 1, group = "SummonArbalistPhysicalDamageToAddAsLightning", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [223656429] = { "Summoned Arbalists have 20% chance to inflict Lightning Exposure on Hit" }, [2631827343] = { "Summoned Arbalists gain (30-40)% of Physical Damage as Extra Lightning Damage" }, } }, - ["SummonArbalistChanceToBleedPercent_"] = { affix = "", "Summoned Arbalists' Attacks have (40-60)% chance to inflict Bleeding", statOrder = { 10273 }, level = 1, group = "SummonArbalistChanceToBleed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1841503755] = { "Summoned Arbalists' Attacks have (40-60)% chance to inflict Bleeding" }, } }, - ["SummonArbalistChanceToPoisonPercent"] = { affix = "", "Summoned Arbalists have (40-60)% chance to Poison", statOrder = { 10279 }, level = 1, group = "SummonArbalistChanceToPoison", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2894626576] = { "Summoned Arbalists have (40-60)% chance to Poison" }, } }, - ["SummonArbalistChanceToIgniteFreezeShockPercent"] = { affix = "", "Summoned Arbalists have (15-25)% chance to Freeze, Shock, and Ignite", statOrder = { 10276 }, level = 1, group = "SummonArbalistChanceToIgniteFreezeShock", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [357325557] = { "Summoned Arbalists have (15-25)% chance to Freeze, Shock, and Ignite" }, } }, - ["FlaskMoreWardUnique1"] = { affix = "", "85% less Ward during Effect", statOrder = { 1010 }, level = 1, group = "FlaskMoreWardUnique1", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3615541554] = { "85% less Ward during Effect" }, } }, - ["FlaskFireColdLightningExposureOnNearbyEnemiesUnique1"] = { affix = "", "Inflict Fire, Cold and Lightning Exposure on nearby Enemies when used", statOrder = { 891 }, level = 1, group = "FlaskFireColdLightningExposureOnNearbyEnemies", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3933226405] = { "Inflict Fire, Cold and Lightning Exposure on nearby Enemies when used" }, } }, - ["FlaskNonDamagingAilmentIncreasedEffectUnique__1"] = { affix = "", "(20-30)% increased Effect of Non-Damaging Ailments you inflict during Effect", statOrder = { 995 }, level = 1, group = "FlaskNonDamagingAilmentIncreasedEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1122693835] = { "(20-30)% increased Effect of Non-Damaging Ailments you inflict during Effect" }, } }, - ["FlaskEnduranceChargePerSecondUnique1"] = { affix = "", "Gain 1 Endurance Charge per Second during Effect", statOrder = { 980 }, level = 1, group = "FlaskEnduranceChargePerSecond", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3916499001] = { "Gain 1 Endurance Charge per Second during Effect" }, } }, - ["FlaskLoseAllEnduranceChargesGainLifePerLostChargeUnique1"] = { affix = "", "Recover 4% of Life per Endurance Charge on use", "Lose all Endurance Charges on use", statOrder = { 892, 892.1 }, level = 1, group = "FlaskLoseAllEnduranceChargesGainLifePerLostCharge", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [521653232] = { "Recover 4% of Life per Endurance Charge on use", "Lose all Endurance Charges on use" }, } }, - ["FlaskCullingStrikeUnique1"] = { affix = "", "Culling Strike during Effect", statOrder = { 977 }, level = 1, group = "FlaskCullingStrike", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2175889777] = { "Culling Strike during Effect" }, } }, - ["FlaskRemoveEffectWhenWardBreaksUnique1"] = { affix = "", "Effect is removed when Ward Breaks", statOrder = { 867 }, level = 1, group = "FlaskRemoveEffectWhenWardBreaks", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3617672145] = { "Effect is removed when Ward Breaks" }, } }, - ["FlaskDebilitateNearbyEnemiesWhenEffectEndsUnique_1"] = { affix = "", "Debilitate nearby Enemies for 2 Seconds when Effect ends", statOrder = { 862 }, level = 1, group = "FlaskDebilitateNearbyEnemiesWhenEffectEnds", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [545593248] = { "Debilitate nearby Enemies for 2 Seconds when Effect ends" }, } }, - ["EnemiesKilledCountAsYoursUnique__1"] = { affix = "", "Nearby Enemies Killed by anyone count as being Killed by you instead", statOrder = { 7891 }, level = 1, group = "EnemiesKilledCountAsYours", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2307982579] = { "Nearby Enemies Killed by anyone count as being Killed by you instead" }, } }, - ["MagicUtilityFlasksAlwaysApplyUnique__1"] = { affix = "", "Leftmost (2-4) Magic Utility Flasks constantly apply their Flask Effects to you", statOrder = { 4421 }, level = 56, group = "MagicUtilityFlasksAlwaysApply", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2388347909] = { "Leftmost (2-4) Magic Utility Flasks constantly apply their Flask Effects to you" }, } }, - ["MagicUtilityFlasksCannotUseUnique__1____"] = { affix = "", "Magic Utility Flasks cannot be Used", statOrder = { 4420 }, level = 1, group = "MagicUtilityFlasksCannotUse", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3986704288] = { "Magic Utility Flasks cannot be Used" }, } }, - ["MagicUtilityFlasksCannotRemoveUnique__1"] = { affix = "", "Magic Utility Flask Effects cannot be removed", statOrder = { 4423 }, level = 1, group = "MagicUtilityFlasksCannotRemove", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [344389721] = { "Magic Utility Flask Effects cannot be removed" }, } }, - ["MaximumElementalResistanceUnique__1__"] = { affix = "", "+(1-5)% to all maximum Elemental Resistances", statOrder = { 1643 }, level = 1, group = "MaximumElementalResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [1978899297] = { "+(1-5)% to all maximum Elemental Resistances" }, } }, - ["MaximumElementalResistanceUnique__2"] = { affix = "", "-(6-4)% to all maximum Elemental Resistances", statOrder = { 1643 }, level = 1, group = "MaximumElementalResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [1978899297] = { "-(6-4)% to all maximum Elemental Resistances" }, } }, - ["MaximumElementalResistanceUnique__3"] = { affix = "", "+1% to all maximum Elemental Resistances", statOrder = { 1643 }, level = 1, group = "MaximumElementalResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [1978899297] = { "+1% to all maximum Elemental Resistances" }, } }, - ["MaximumElementalResistanceUnique__4"] = { affix = "", "+(0-5)% to all maximum Elemental Resistances", statOrder = { 1643 }, level = 1, group = "MaximumElementalResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [1978899297] = { "+(0-5)% to all maximum Elemental Resistances" }, } }, - ["BaseBlockDamageTakenUnique__1___"] = { affix = "", "You take 20% of Damage from Blocked Hits", statOrder = { 4996 }, level = 1, group = "BaseBlockDamageTaken", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2905515354] = { "You take 20% of Damage from Blocked Hits" }, } }, - ["DoedresSkinLessCurseEffectUnique__1"] = { affix = "", "20% less Effect of your Curses", statOrder = { 2597 }, level = 1, group = "DoedresSkinLessCurseEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4106109768] = { "20% less Effect of your Curses" }, } }, - ["ChronomanceReservesNoMana"] = { affix = "", "Temporal Rift has no Reservation", statOrder = { 5780 }, level = 1, group = "ChronomanceReservesNoMana", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2139238642] = { "Temporal Rift has no Reservation" }, } }, - ["SupportGemsSocketedInOffHandAlsoSupportMainHandSkills"] = { affix = "", "Socketed Support Gems can also Support Skills from your Main Hand", statOrder = { 223 }, level = 1, group = "SupportGemsSocketedInOffHandAlsoSupportMainHandSkills", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [806627038] = { "Socketed Support Gems can also Support Skills from your Main Hand" }, } }, - ["SupportGemsSocketedInAmuletAlsoSupportBodySkills"] = { affix = "", "Socketed Support Gems can also Support Skills from Equipped Body Armour", statOrder = { 222 }, level = 90, group = "SupportGemsSocketedInAmuletAlsoSupportBodySkills", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [591645420] = { "Socketed Support Gems can also Support Skills from Equipped Body Armour" }, } }, - ["ElementalResistanceHighestMaxResistanceUnique__1_"] = { affix = "", "Elemental Resistances are capped by your highest Maximum Elemental Resistance instead", statOrder = { 6341 }, level = 1, group = "ElementalResistanceHighestMaxResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [3082079953] = { "Elemental Resistances are capped by your highest Maximum Elemental Resistance instead" }, } }, - ["EnergyShieldRechargeOnKillUnique__1__"] = { affix = "", "(10-20)% chance for Energy Shield Recharge to start when you Kill an Enemy", statOrder = { 6449 }, level = 1, group = "EnergyShieldRechargeOnKill", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1618482990] = { "(10-20)% chance for Energy Shield Recharge to start when you Kill an Enemy" }, } }, - ["LessRechargeRateSoullessEleganceUnique__1"] = { affix = "", "(30-40)% less Energy Shield Recharge Rate", statOrder = { 10509 }, level = 1, group = "LessRechargeRateSoullessElegance", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3432301333] = { "(30-40)% less Energy Shield Recharge Rate" }, } }, - ["GlobalSkillGemLevelUnique__1"] = { affix = "", "+1 to Level of all Skill Gems", statOrder = { 4634 }, level = 75, group = "GlobalSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [4283407333] = { "+1 to Level of all Skill Gems" }, } }, - ["GlobalSkillGemQualityUnique__1"] = { affix = "", "+(20-30)% to Quality of all Skill Gems", statOrder = { 4635 }, level = 1, group = "GlobalSkillGemQuality", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [3655769732] = { "+(20-30)% to Quality of all Skill Gems" }, } }, - ["GlobalGemExperienceGainUnique__1"] = { affix = "", "(5-10)% increased Experience Gain of Gems", statOrder = { 1879 }, level = 1, group = "GlobalGemExperienceGain", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [3808869043] = { "(5-10)% increased Experience Gain of Gems" }, } }, - ["ElementalSkillsTripleDamageUnique__1"] = { affix = "", "Deal Triple Damage with Elemental Skills", statOrder = { 6343 }, level = 85, group = "ElementalSkillsTripleDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [115695112] = { "Deal Triple Damage with Elemental Skills" }, } }, - ["SocketedGemsMoreDamageForSpellsCastUnique__1"] = { affix = "", "Socketed Projectile Spells deal 150% more Damage with Hits", statOrder = { 558 }, level = 1, group = "SocketedGemsMoreDamageForSpellsCast", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2443457281] = { "Socketed Projectile Spells deal 150% more Damage with Hits" }, } }, - ["SocketedGemsAddedCooldownUnique__1__"] = { affix = "", "Socketed Projectile Spells have +4 seconds to Cooldown", statOrder = { 559 }, level = 1, group = "SocketedGemsAddedCooldown", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [470459031] = { "Socketed Projectile Spells have +4 seconds to Cooldown" }, } }, - ["SocketedGemsLessDurationUnique__1"] = { affix = "", "Socketed Projectile Spells have 80% less Skill Effect Duration", statOrder = { 612 }, level = 1, group = "SocketedGemsLessDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3104895675] = { "Socketed Projectile Spells have 80% less Skill Effect Duration" }, } }, - ["AttributeModifiersAscendanceUnique__1_"] = { affix = "", "Modifiers to Attributes instead apply to Omniscience", statOrder = { 1187 }, level = 77, group = "AttributeModifiersAscendance", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1411347992] = { "Modifiers to Attributes instead apply to Omniscience" }, } }, - ["ElementalResistPerAscendanceUnique__1__"] = { affix = "", "+1% to all Elemental Resistances per 15 Omniscience", statOrder = { 1188 }, level = 1, group = "ElementalResistPerAscendance", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2569472704] = { "+1% to all Elemental Resistances per 15 Omniscience" }, } }, - ["ElementalPenPerAscendanceUnique__1"] = { affix = "", "Penetrate 1% Elemental Resistances per 15 Omniscience", statOrder = { 1189 }, level = 1, group = "ElementalPenPerAscendance", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [2757041809] = { "Penetrate 1% Elemental Resistances per 15 Omniscience" }, } }, - ["AttributeRequirementsAscendanceUnique__1"] = { affix = "", "Attribute Requirements can be satisfied by (15-25)% of Omniscience", statOrder = { 1190 }, level = 1, group = "AttributeRequirementsAscendance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3024338155] = { "Attribute Requirements can be satisfied by (15-25)% of Omniscience" }, } }, - ["LeftRingCoveredInAshUnique__1_"] = { affix = "", "Left Ring slot: Cover Enemies in Ash for 5 seconds when you Ignite them", statOrder = { 7980 }, level = 100, group = "LeftRingCoveredInAsh", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2533512212] = { "Left Ring slot: Cover Enemies in Ash for 5 seconds when you Ignite them" }, } }, - ["RightRingCoveredInFrostUnique__1"] = { affix = "", "Right Ring slot: Cover Enemies in Frost for 5 seconds when you Freeze them", statOrder = { 8007 }, level = 1, group = "RightRingCoveredInFrost", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3536082205] = { "Right Ring slot: Cover Enemies in Frost for 5 seconds when you Freeze them" }, } }, - ["LifeLossReservesLifeUnique__1"] = { affix = "", "Life that would be lost by taking Damage is instead Reserved", "until you take no Damage to Life for 2 seconds", statOrder = { 9922, 9922.1 }, level = 1, group = "LifeLossReservesLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1777740627] = { "Life that would be lost by taking Damage is instead Reserved", "until you take no Damage to Life for 2 seconds" }, } }, - ["AttackCorrosionOnHitChanceUnique__1"] = { affix = "", "(20-30)% chance to inflict Corrosion on Hit with Attacks", statOrder = { 4917 }, level = 1, group = "AttackCorrosionOnHitChance", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2523122963] = { "(20-30)% chance to inflict Corrosion on Hit with Attacks" }, } }, - ["EnduranceChargeNoArmourUnique__1_"] = { affix = "", "(20-30)% chance to gain an Endurance Charge on Hitting an Enemy with no Armour", statOrder = { 6361 }, level = 1, group = "EnduranceChargeNoArmour", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHashes = { [3488208924] = { "(20-30)% chance to gain an Endurance Charge on Hitting an Enemy with no Armour" }, } }, - ["FrenzyChargeNoEvasionRatingUnique__1"] = { affix = "", "(20-30)% chance to gain a Frenzy Charge on Hitting an Enemy with no Evasion Rating", statOrder = { 6673 }, level = 1, group = "FrenzyChargeNoEvasionRating", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [471924383] = { "(20-30)% chance to gain a Frenzy Charge on Hitting an Enemy with no Evasion Rating" }, } }, - ["BowAttacksFrenzyChargesArrowsUnique__1"] = { affix = "", "Lose all Frenzy Charges on reaching Maximum Frenzy Charges to make the next Bow Attack you perform fire that many additional Arrows", statOrder = { 1793 }, level = 1, group = "BowAttacksFrenzyChargesArrows", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [2522975315] = { "Lose all Frenzy Charges on reaching Maximum Frenzy Charges to make the next Bow Attack you perform fire that many additional Arrows" }, } }, - ["CriticalStrikeMultiplierFrenzyChargesUnique__1"] = { affix = "", "+(30-50)% Global Critical Strike Multiplier while you have a Frenzy Charge", statOrder = { 2054 }, level = 1, group = "CriticalStrikeMultiplierFrenzyCharges", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [3375516056] = { "+(30-50)% Global Critical Strike Multiplier while you have a Frenzy Charge" }, } }, - ["FrenzyChargePerEnemyCritUnique__1"] = { affix = "", "(20-40)% chance to gain a Frenzy Charge for each Enemy you hit with a Critical Strike", statOrder = { 6764 }, level = 1, group = "FrenzyChargePerEnemyCrit", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [1302845655] = { "(20-40)% chance to gain a Frenzy Charge for each Enemy you hit with a Critical Strike" }, } }, - ["MoreMaximumReservedLifeUnique__1"] = { affix = "", "(20-30)% more Maximum Life", statOrder = { 10502 }, level = 1, group = "MoreMaximumReservedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2783958145] = { "(20-30)% more Maximum Life" }, } }, - ["PuzzlePieceCleansingFireUnique__1"] = { affix = "", "Allocates 1 if you have the matching modifier on Forbidden Flesh", statOrder = { 10500 }, level = 1, group = "PuzzlePieceCleansingFire", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1190333629] = { "Allocates 1 if you have the matching modifier on Forbidden Flesh" }, } }, - ["PuzzlePieceGreatTangleUnique__1"] = { affix = "", "Allocates 1 if you have the matching modifier on Forbidden Flame", statOrder = { 10501 }, level = 1, group = "PuzzlePieceGreatTangle", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2460506030] = { "Allocates 1 if you have the matching modifier on Forbidden Flame" }, } }, - ["GlobalNoEnergyShieldUnique__1"] = { affix = "", "Removes all Energy Shield", statOrder = { 2166 }, level = 1, group = "NoEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1482608021] = { "Removes all Energy Shield" }, } }, - ["NearbyStationaryEnemiesGainVinesUnique__1"] = { affix = "", "Nearby stationary Enemies gain a Grasping Vine every 0.5 seconds", statOrder = { 4425 }, level = 1, group = "NearbyStationaryEnemiesGainVines", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3469279727] = { "Nearby stationary Enemies gain a Grasping Vine every 0.5 seconds" }, } }, - ["GainVinesOnCriticalStrikeUnique__1"] = { affix = "", "You gain 3 Grasping Vines when you take a Critical Strike", statOrder = { 4424 }, level = 1, group = "GainVinesOnCriticalStrike", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [375932027] = { "You gain 3 Grasping Vines when you take a Critical Strike" }, } }, - ["AllDamagePoisonsGraspingVinesUnique__1"] = { affix = "", "All Damage inflicts Poison against Enemies affected by at least 3 Grasping Vines", statOrder = { 4426 }, level = 1, group = "AllDamagePoisonsGraspingVines", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3190526553] = { "All Damage inflicts Poison against Enemies affected by at least 3 Grasping Vines" }, } }, - ["ReducedCriticalDamageTakenPoisonUnique__1"] = { affix = "", "You take (30-50)% reduced Extra Damage from Critical Strikes by Poisoned Enemies", statOrder = { 4428 }, level = 1, group = "ReducedCriticalDamageTakenPoison", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2070361501] = { "You take (30-50)% reduced Extra Damage from Critical Strikes by Poisoned Enemies" }, } }, - ["PhysicalHitAndDoTDamageTakenAsFireUnique__1"] = { affix = "", "(10-20)% of Physical Damage taken as Fire Damage", statOrder = { 9670 }, level = 1, group = "PhysicalHitAndDoTDamageTakenAsFire", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1004468512] = { "(10-20)% of Physical Damage taken as Fire Damage" }, } }, - ["PhysicalHitAndDoTDamageTakenAsFireUnique__2"] = { affix = "", "40% of Physical Damage taken as Fire Damage", statOrder = { 9670 }, level = 1, group = "PhysicalHitAndDoTDamageTakenAsFire", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1004468512] = { "40% of Physical Damage taken as Fire Damage" }, } }, - ["ColdHitAndDoTDamageTakenAsFireUnique__1"] = { affix = "", "(10-20)% of Cold Damage taken as Fire Damage", statOrder = { 5825 }, level = 1, group = "ColdHitAndDoTDamageTakenAsFire", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1642347505] = { "(10-20)% of Cold Damage taken as Fire Damage" }, } }, - ["LightningHitAndDoTDamageTakenAsFireUnique__1"] = { affix = "", "(10-20)% of Lightning Damage taken as Fire Damage", statOrder = { 7460 }, level = 1, group = "LightningHitAndDoTDamageTakenAsFire", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1244494473] = { "(10-20)% of Lightning Damage taken as Fire Damage" }, } }, - ["ScorchOnEnemiesOnBlockUnique__1"] = { affix = "", "Scorch Enemies in Close Range when you Block", statOrder = { 9964 }, level = 1, group = "ScorchOnEnemiesOnBlock", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [41178696] = { "Scorch Enemies in Close Range when you Block" }, } }, - ["AttackBlockPerFireDamageTakenUnique__1"] = { affix = "", "-1% Chance to Block Attack Damage for every 200 Fire Damage taken from Hits Recently", statOrder = { 4836 }, level = 1, group = "AttackBlockPerFireDamageTaken", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [8517868] = { "-1% Chance to Block Attack Damage for every 200 Fire Damage taken from Hits Recently" }, } }, - ["ChaosDamageDoesNotBypassEnergyShieldPercentUnique__1"] = { affix = "", "33% of Chaos Damage taken does not bypass Energy Shield", statOrder = { 5002 }, level = 99, group = "ChaosDamageDoesNotBypassEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1865744989] = { "33% of Chaos Damage taken does not bypass Energy Shield" }, } }, - ["NonChaosDamageBypassEnergyShieldPercentUnique__1"] = { affix = "", "33% of Non-Chaos Damage taken bypasses Energy Shield", statOrder = { 644 }, level = 1, group = "NonChaosDamageBypassEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3379724776] = { "33% of Non-Chaos Damage taken bypasses Energy Shield" }, } }, - ["KillEnemyInstantlyExarchDominantUnique__1"] = { affix = "", "Kill Enemies that have 15% or lower Life on Hit if The Searing Exarch is dominant", statOrder = { 7978 }, level = 77, group = "KillEnemyInstantlyExarchDominant", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3768948090] = { "Kill Enemies that have 15% or lower Life on Hit if The Searing Exarch is dominant" }, } }, - ["MalignantMadnessCritEaterDominantUnique__1"] = { affix = "", "Critical Strikes inflict Malignant Madness if The Eater of Worlds is dominant", statOrder = { 7948 }, level = 77, group = "MalignantMadnessCritEaterDominant", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1109900829] = { "Critical Strikes inflict Malignant Madness if The Eater of Worlds is dominant" }, } }, - ["SocketedWarcryCooldownCountUnique__1"] = { affix = "", "Socketed Warcry Skills have +1 Cooldown Use", statOrder = { 583 }, level = 1, group = "SocketedWarcryCooldownCount", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3784504781] = { "Socketed Warcry Skills have +1 Cooldown Use" }, } }, - ["TakePhysicalDamagePerWarcryExertingUnique__1"] = { affix = "", "When you Attack, take (15-20)% of Life as Physical Damage for", "each Warcry Exerting the Attack", statOrder = { 9978, 9978.1 }, level = 1, group = "TakePhysicalDamagePerWarcryExerting", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1615324731] = { "When you Attack, take (15-20)% of Life as Physical Damage for", "each Warcry Exerting the Attack" }, } }, - ["MoreDamagePerWarcryExertingUnique__1"] = { affix = "", "Skills deal (10-15)% more Damage for each Warcry Exerting them", statOrder = { 10495 }, level = 1, group = "MoreDamagePerWarcryExerting", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2023285759] = { "Skills deal (10-15)% more Damage for each Warcry Exerting them" }, } }, - ["AllDamageCanChillUnique__1"] = { affix = "", "All Damage with Hits can Chill", statOrder = { 2860 }, level = 21, group = "AllDamageCanChill", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3833160777] = { "All Damage with Hits can Chill" }, } }, - ["AllDamageTakenCanChillUnique__1"] = { affix = "", "All Damage Taken from Hits can Chill you", statOrder = { 2863 }, level = 1, group = "AllDamageTakenCanChill", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [244239777] = { "All Damage Taken from Hits can Chill you" }, } }, - ["AllDamageTakenCanIgniteUnique__1"] = { affix = "", "All Damage Taken from Hits can Ignite you", statOrder = { 4630 }, level = 20, group = "AllDamageTakenCanIgnite", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1405089557] = { "All Damage Taken from Hits can Ignite you" }, } }, - ["ChillHitsCauseShatteringUnique__1"] = { affix = "", "Enemies Chilled by your Hits can be Shattered as though Frozen", statOrder = { 5779 }, level = 1, group = "ChillHitsCauseShattering", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3119292058] = { "Enemies Chilled by your Hits can be Shattered as though Frozen" }, } }, - ["EnemiesChilledIncreasedDamageTakenUnique__1"] = { affix = "", "Enemies Chilled by your Hits have Damage taken increased by Chill Effect", statOrder = { 6370 }, level = 1, group = "EnemiesChilledIncreasedDamageTaken", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1816894864] = { "Enemies Chilled by your Hits have Damage taken increased by Chill Effect" }, } }, - ["EnemiesChilledLessDamageDealtUnique__1"] = { affix = "", "Enemies Chilled by your Hits lessen their Damage dealt by half of Chill Effect", statOrder = { 6369 }, level = 1, group = "EnemiesChilledLessDamageDealt", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3594661200] = { "Enemies Chilled by your Hits lessen their Damage dealt by half of Chill Effect" }, } }, - ["GainSoulEaterStackOnHitUnique__1"] = { affix = "", "Eat a Soul when you Hit a Rare or Unique Enemy, no more than once every 0.5 seconds", statOrder = { 6824 }, level = 1, group = "GainSoulEaterStackOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2103621252] = { "Eat a Soul when you Hit a Rare or Unique Enemy, no more than once every 0.5 seconds" }, } }, - ["GainSoulEaterStackOnRareOrUniqueKillWithWeaponUnique__1"] = { affix = "", "Eat (2-4) Souls when you Kill a Rare or Unique Enemy with this Weapon", statOrder = { 7937 }, level = 1, group = "GainSoulEaterStackOnRareOrUniqueKillWithWeapon", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2859483755] = { "Eat (2-4) Souls when you Kill a Rare or Unique Enemy with this Weapon" }, } }, - ["SoulEaterStackCountUnique__1"] = { affix = "", "+(-10-10) to maximum number of Eaten Souls", statOrder = { 7265 }, level = 1, group = "SoulEaterStackCount", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1915836277] = { "+(-10-10) to maximum number of Eaten Souls" }, } }, - ["LifeRegenerationNotAppliedUnique__1"] = { affix = "", "Life Recovery from Regeneration is not applied", statOrder = { 7391 }, level = 1, group = "LifeRegenerationNotApplied", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3947672598] = { "Life Recovery from Regeneration is not applied" }, } }, - ["RageRegenerationPerLifeRegenerationUnique__1"] = { affix = "", "Regenerate 1 Rage per second for every 200 Life Recovery per second from Regeneration", "Does not delay Inherent Loss of Rage", statOrder = { 9892, 9892.1 }, level = 1, group = "RageRegenerationPerLifeRegeneration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4103111421] = { "Regenerate 1 Rage per second for every 200 Life Recovery per second from Regeneration", "Does not delay Inherent Loss of Rage" }, } }, - ["EnduringCrySkillUnique__1"] = { affix = "", "Grants Level 10 Enduring Cry Skill", statOrder = { 702 }, level = 1, group = "EnduringCrySkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [1031644844] = { "Grants Level 10 Enduring Cry Skill" }, } }, - ["NearbyEnemiesAreBlindedUnique__1"] = { affix = "", "Nearby Enemies are Blinded", statOrder = { 3396 }, level = 10, group = "NearbyEnemiesAreBlinded", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [223497523] = { "" }, [2826979740] = { "Nearby Enemies are Blinded" }, } }, - ["SpellsDoubleDamageChanceUnique__1"] = { affix = "", "Spells have a 20% chance to deal Double Damage", statOrder = { 10137 }, level = 1, group = "SpellsDoubleDamageChance", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2813626504] = { "Spells have a 20% chance to deal Double Damage" }, } }, - ["CoverInAshOnHitUnique__1"] = { affix = "", "10% chance to Cover Enemies in Ash on Hit", statOrder = { 5893 }, level = 1, group = "CoverInAshOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [324460247] = { "10% chance to Cover Enemies in Ash on Hit" }, } }, - ["GrantsTouchOfFireUnique__1"] = { affix = "", "Grants Level 20 Approaching Flames Skill", statOrder = { 722 }, level = 1, group = "GrantsTouchOfFireSkill", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1943415243] = { "Grants Level 20 Approaching Flames Skill" }, } }, - ["GainAdrenalineFireTouchedGainUnique__1"] = { affix = "", "Gain Adrenaline when you become Flame-Touched", statOrder = { 6718 }, level = 1, group = "GainAdrenalineFireTouchedGain", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [349619704] = { "Gain Adrenaline when you become Flame-Touched" }, } }, - ["LoseAdrenalineFireTouchedLossUnique__1"] = { affix = "", "Lose Adrenaline when you cease to be Flame-Touched", statOrder = { 8134 }, level = 1, group = "LoseAdrenalineFireTouchedLoss", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [138579627] = { "Lose Adrenaline when you cease to be Flame-Touched" }, } }, - ["FireDamageTakenFireTouchedUnique__1"] = { affix = "", "Take 6000 Fire Damage per Second while Flame-Touched", statOrder = { 6573 }, level = 1, group = "FireDamageTakenFireTouched", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3511992942] = { "Take 6000 Fire Damage per Second while Flame-Touched" }, } }, - ["HasOnslaughtUnique__1"] = { affix = "", "Onslaught", statOrder = { 3597 }, level = 1, group = "HasOnslaught", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1520059289] = { "Onslaught" }, } }, - ["MinionPhysicalConvertToColdUnique__1"] = { affix = "", "Minions convert 50% of Physical Damage to Cold Damage", statOrder = { 1958 }, level = 1, group = "MinionPhysicalConvertToCold", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [264042266] = { "Minions convert 50% of Physical Damage to Cold Damage" }, } }, - ["MinionOnlyDealColdDamageUnique__1"] = { affix = "", "Minions deal no Non-Cold Damage", statOrder = { 9300 }, level = 1, group = "MinionOnlyDealColdDamage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [935592011] = { "Minions deal no Non-Cold Damage" }, } }, - ["LifeRegenerationFlatOnLowLifeUnique__1"] = { affix = "", "Regenerate 100 Life per Second while on Low Life", statOrder = { 7429 }, level = 1, group = "LifeRegenerationFlatOnLowLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2161482953] = { "Regenerate 100 Life per Second while on Low Life" }, } }, - ["TouchedByTormentedSpiritsUnique__1"] = { affix = "", "You can be Touched by Tormented Spirits", statOrder = { 9678 }, level = 1, group = "TouchedByTormentedSpirits", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4197792189] = { "You can be Touched by Tormented Spirits" }, } }, - ["QuicksilverFlaskAppliesToAlliesUnique__1"] = { affix = "", "Quicksilver Flasks you Use also apply to nearby Allies", statOrder = { 9781 }, level = 1, group = "QuicksilverFlaskAppliesToAllies", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [699756626] = { "Quicksilver Flasks you Use also apply to nearby Allies" }, } }, - ["ColdAddedAsFireChilledEnemyUnique__1"] = { affix = "", "Gain 1% of Cold Damage as Extra Fire Damage per 1% Chill Effect on Enemy", statOrder = { 5802 }, level = 1, group = "ColdAddedAsFireChilledEnemy", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3086896309] = { "Gain 1% of Cold Damage as Extra Fire Damage per 1% Chill Effect on Enemy" }, } }, - ["ColdAddedAsFireFrozenEnemyUnique__1"] = { affix = "", "Gain 30% of Cold Damage as Extra Fire Damage against Frozen Enemies", statOrder = { 5803 }, level = 1, group = "ColdAddedAsFireFrozenEnemy", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1383929411] = { "Gain 30% of Cold Damage as Extra Fire Damage against Frozen Enemies" }, } }, - ["LightningAddedAsColdShockedEnemyUnique__1"] = { affix = "", "Gain 1% of Lightning Damage as Extra Cold Damage per 2% Shock Effect on Enemy", statOrder = { 7447 }, level = 1, group = "LightningAddedAsColdShockedEnemy", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [13172430] = { "Gain 1% of Lightning Damage as Extra Cold Damage per 2% Shock Effect on Enemy" }, } }, - ["DoubleDamageWith200StrengthUnique__1"] = { affix = "", "10% chance to deal Double Damage while you have at least 200 Strength", statOrder = { 5657 }, level = 1, group = "DoubleDamageWith200Strength", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1535606605] = { "10% chance to deal Double Damage while you have at least 200 Strength" }, } }, - ["TripleDamageWith400StrengthUnique__1"] = { affix = "", "5% chance to deal Triple Damage while you have at least 400 Strength", statOrder = { 5669 }, level = 1, group = "TripleDamageWith400Strength", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [147155654] = { "5% chance to deal Triple Damage while you have at least 400 Strength" }, } }, - ["BlockChanceVersusCursedEnemiesUnique__1"] = { affix = "", "+20% Chance to Block Attack Damage from Cursed Enemies", statOrder = { 5226 }, level = 1, group = "BlockChanceVersusCursedEnemies", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3304203764] = { "+20% Chance to Block Attack Damage from Cursed Enemies" }, } }, - ["ApplyDecayOnCurseUnique__1"] = { affix = "", "Inflict Decay on Enemies you Curse with Hex Skills, dealing 700 Chaos Damage per Second for 8 Seconds", statOrder = { 6139 }, level = 1, group = "ApplyDecayOnCurse", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [773846741] = { "Inflict Decay on Enemies you Curse with Hex Skills, dealing 700 Chaos Damage per Second for 8 Seconds" }, } }, - ["FrenzyChargeOnHitBlindedUnique__1"] = { affix = "", "(10-20)% chance to gain a Frenzy Charge on Hit while Blinded", statOrder = { 6758 }, level = 1, group = "FrenzyChargeOnHitBlinded", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2478268100] = { "(10-20)% chance to gain a Frenzy Charge on Hit while Blinded" }, } }, - ["RecoverLifeOnSuppressUnique__1"] = { affix = "", "Recover (100-200) Life when you Suppress Spell Damage", statOrder = { 9850 }, level = 1, group = "RecoverLifeOnSuppress", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1807705940] = { "Recover (100-200) Life when you Suppress Spell Damage" }, } }, - ["PhasingOnLowLifeUnique__1"] = { affix = "", "You have Phasing while on Low Life", statOrder = { 6801 }, level = 1, group = "PhasingOnLowLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [23466649] = { "You have Phasing while on Low Life" }, } }, - ["ElusiveOnLowLifeUnique__1"] = { affix = "", "Gain Elusive on reaching Low Life", statOrder = { 6745 }, level = 1, group = "ElusiveOnLowLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2868692131] = { "Gain Elusive on reaching Low Life" }, } }, - ["KnockbackDistanceUnique__1"] = { affix = "", "100% increased Knockback Distance", statOrder = { 2002 }, level = 1, group = "KnockbackDistance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [565784293] = { "100% increased Knockback Distance" }, } }, - ["StrikeSkillKnockbackUnique__1"] = { affix = "", "Melee Hits with Strike Skills always Knockback", statOrder = { 10260 }, level = 1, group = "StrikeSkillKnockback", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1737583880] = { "Melee Hits with Strike Skills always Knockback" }, } }, - ["MeleeSplashUnique__1"] = { affix = "", "Melee Strike Skills deal Splash Damage to surrounding targets", statOrder = { 1168 }, level = 1, group = "MeleeSplash", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [3675300253] = { "Melee Strike Skills deal Splash Damage to surrounding targets" }, } }, - ["AdrenalineOnKillUnique__1"] = { affix = "", "Gain Adrenaline for (1-3) second on Kill", statOrder = { 6715 }, level = 38, group = "AdrenalineOnKill", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4145689649] = { "Gain Adrenaline for (1-3) second on Kill" }, } }, - ["LifeCostAsManaCostUnique__1"] = { affix = "", "Skills gain a Base Life Cost equal to 100% of Base Mana Cost", statOrder = { 5048 }, level = 1, group = "LifeCostAsManaCost", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3605834869] = { "Skills gain a Base Life Cost equal to 100% of Base Mana Cost" }, } }, - ["EnergyShieldCostAsManaCostUnique__1"] = { affix = "", "Skills gain a Base Energy Shield Cost equal to 200% of Base Mana Cost", statOrder = { 5047 }, level = 1, group = "EnergyShieldCostAsManaCost", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4013794060] = { "Skills gain a Base Energy Shield Cost equal to 200% of Base Mana Cost" }, } }, - ["BowAttacksCullingStrikeUnique__1"] = { affix = "", "Bow Attacks have Culling Strike", statOrder = { 5263 }, level = 1, group = "BowAttacksCullingStrike", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4217693429] = { "Bow Attacks have Culling Strike" }, } }, - ["MovementVelocityPerNearbyCorpseUnique__1"] = { affix = "", "For each nearby corpse, 1% increased Movement Speed", statOrder = { 9411 }, level = 1, group = "MovementVelocityPerNearbyCorpse", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [504462346] = { "For each nearby corpse, 1% increased Movement Speed" }, } }, - ["FlatLifeRegenerationPerNearbyCorpseUnique__1"] = { affix = "", "For each nearby corpse, Regenerate 8 Life per second", statOrder = { 7399 }, level = 1, group = "FlatLifeRegenerationPerNearbyCorpse", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2500585555] = { "For each nearby corpse, Regenerate 8 Life per second" }, } }, - ["WeaponAddedLightningDamagePerEnergyShieldUnique__1"] = { affix = "", "Attacks with this Weapon have Added Maximum Lightning Damage equal to (10-15)% of Player's Maximum Energy Shield", statOrder = { 6468 }, level = 1, group = "WeaponAddedLightningDamagePerEnergyShield", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [973269941] = { "Attacks with this Weapon have Added Maximum Lightning Damage equal to (10-15)% of Player's Maximum Energy Shield" }, } }, - ["SkillsExertAttacksDoNotCountChanceUnique__1"] = { affix = "", "Skills which Exert an Attack have (20-40)% chance to not count that Attack", statOrder = { 5541 }, level = 1, group = "SkillsExertAttacksDoNotCountChance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2538411280] = { "Skills which Exert an Attack have (20-40)% chance to not count that Attack" }, } }, - ["CannotHaveNonSpectreMinionsUnique__1"] = { affix = "", "You cannot have Non-Spectre Minions", statOrder = { 10659 }, level = 1, group = "CannotHaveNonSpectreMinions", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2836980154] = { "You cannot have Non-Spectre Minions" }, } }, - ["MinimumChargesEqualToMaximumWhileStationaryUnique__1"] = { affix = "", "Count as having maximum number of Endurance Charges", "Count as having maximum number of Frenzy Charges", "Count as having maximum number of Power Charges", statOrder = { 5886, 5886.1, 5886.2 }, level = 1, group = "MinimumChargesEqualToMaximumWhileStationary", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3584443917] = { "Count as having maximum number of Endurance Charges", "Count as having maximum number of Frenzy Charges", "Count as having maximum number of Power Charges" }, } }, - ["ThrowTrapsInCircleUnique__1"] = { affix = "", "Traps from Skills are thrown randomly around targeted location", statOrder = { 10510 }, level = 1, group = "ThrowTrapsInCircleSunblast", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2727188901] = { "Traps from Skills are thrown randomly around targeted location" }, } }, - ["TrapsCannotBeTriggeredByEnemiesUnique__1"] = { affix = "", "Traps cannot be triggered by Enemies", statOrder = { 10422 }, level = 1, group = "TrapsCannotBeTriggeredByEnemies", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1861759600] = { "Traps cannot be triggered by Enemies" }, } }, - ["AdditionalTrapsThrownUnique__1"] = { affix = "", "Skills which Throw Traps throw up to 2 additional Traps", statOrder = { 9529 }, level = 1, group = "AdditionalTrapsThrown", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1220800126] = { "Skills which Throw Traps throw up to 2 additional Traps" }, } }, - ["FreezeEnemiesWhenHitChanceUnique__1"] = { affix = "", "20% chance to Freeze Enemies for 1 second when they Hit you", statOrder = { 5679 }, level = 1, group = "FreezeEnemiesWhenHitChance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2168861013] = { "20% chance to Freeze Enemies for 1 second when they Hit you" }, } }, - ["AddedChaosDamagePerCurseUnique__1"] = { affix = "", "Adds 37 to 71 Chaos Damage for each Curse on the Enemy", statOrder = { 9226 }, level = 1, group = "AddedChaosDamagePerCurse", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4294344579] = { "Adds 37 to 71 Chaos Damage for each Curse on the Enemy" }, } }, - ["GolemsAddedPhysicalDamageUnique__1"] = { affix = "", "Golems have (96-120) to (132-160) Added Attack Physical Damage", statOrder = { 6893 }, level = 1, group = "GolemsAddedPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1417394145] = { "Golems have (96-120) to (132-160) Added Attack Physical Damage" }, } }, - ["GainMaximumEnduranceChargesWhenCritUnique__1"] = { affix = "", "Gain up to maximum Endurance Charges when you take a Critical Strike", statOrder = { 6771 }, level = 1, group = "GainMaximumEnduranceChargesWhenCrit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4080206249] = { "Gain up to maximum Endurance Charges when you take a Critical Strike" }, } }, - ["ShareMaximumEnduranceChargesPartyUnique__1"] = { affix = "", "Your nearby party members maximum Endurance Charges is equal to yours", statOrder = { 9466 }, level = 1, group = "ShareMaximumEnduranceChargesParty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [598215770] = { "Your nearby party members maximum Endurance Charges is equal to yours" }, } }, - ["SkeletonWarriorsPermanentMinionUnique__1"] = { affix = "", "Summoned Skeleton Warriors are Permanent and Follow you", "Summon Skeletons cannot Summon more than 1 Skeleton Warrior", statOrder = { 10052, 10052.1 }, level = 1, group = "SkeletonWarriorsPermanentMinion", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1021552211] = { "Summoned Skeleton Warriors are Permanent and Follow you", "Summon Skeletons cannot Summon more than 1 Skeleton Warrior" }, } }, - ["ConsecratedGroundStationarySTRHighestUnique__1"] = { affix = "", "You have Consecrated Ground around you while", "stationary if Strength is your highest Attribute", statOrder = { 5857, 5857.1 }, level = 1, group = "ConsecratedGroundStationarySTRHighest", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1196333117] = { "You have Consecrated Ground around you while", "stationary if Strength is your highest Attribute" }, } }, - ["ProfaneGroundCriticalStrikeINTHighestUnique__1"] = { affix = "", "25% chance to create Profane Ground on Critical", "Strike if Intelligence is your highest Attribute", statOrder = { 9726, 9726.1 }, level = 1, group = "ProfaneGroundCriticalStrikeINTHighest", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2047846165] = { "25% chance to create Profane Ground on Critical", "Strike if Intelligence is your highest Attribute" }, } }, - ["ConsecratedGroundLingersUnique__1"] = { affix = "", "Effects of Consecrated Ground you create Linger for 4 seconds", statOrder = { 10690 }, level = 1, group = "ConsecratedGroundLingers", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4113372195] = { "Effects of Consecrated Ground you create Linger for 4 seconds" }, } }, - ["ProfaneGroundLingersUnique__1"] = { affix = "", "Effects of Profane Ground you create Linger for 4 seconds", statOrder = { 10695 }, level = 1, group = "ProfaneGroundLingers", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3636871122] = { "Effects of Profane Ground you create Linger for 4 seconds" }, } }, - ["RandomProjectileDirectionUnique__1"] = { affix = "", "Projectiles are fired in random directions", statOrder = { 9828 }, level = 60, group = "RandomProjectileDirection", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4159765624] = { "Projectiles are fired in random directions" }, } }, - ["ReturningProjectilesUnique__1"] = { affix = "", "Projectiles Return to you", statOrder = { 2823 }, level = 1, group = "ReturningProjectilesNoHitObject", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4015038379] = { "Projectiles Return to you" }, } }, - ["CastSpeedAppliesToAttackSpeedUnique__1"] = { affix = "", "Increases and Reductions to Cast Speed apply to Attack Speed", statOrder = { 10494 }, level = 1, group = "CastSpeedAppliesToAttackSpeed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4126447694] = { "Increases and Reductions to Cast Speed apply to Attack Speed" }, } }, - ["SpellImpaleOnCritChanceUnique__1"] = { affix = "", "Critical Strikes with Spells inflict Impale", statOrder = { 10162 }, level = 1, group = "SpellImpaleOnCritChance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4084476257] = { "Critical Strikes with Spells inflict Impale" }, } }, - ["SpellImpaleEffectUnique__1"] = { affix = "", "(30-50)% increased Effect of Impales inflicted with Spells", statOrder = { 7246 }, level = 1, group = "SpellImpaleEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1480595847] = { "(30-50)% increased Effect of Impales inflicted with Spells" }, } }, - ["YouCannotImpaleTheImpaledUnique_1UNUSED"] = { affix = "", "[DNT] Impaled Enemies Cannot be Impaled", statOrder = { 10660 }, level = 1, group = "ImpaledEnemiesCannotBeImpaled", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4294017425] = { "[DNT] Impaled Enemies Cannot be Impaled" }, } }, - ["HitsCannotInflictMoreThanOneImpale_1UNUSED"] = { affix = "", "Your Hits cannot inflict more than 1 Impale", statOrder = { 7161 }, level = 100, group = "CannotInflictMoreThanOneImpale", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [452960025] = { "Your Hits cannot inflict more than 1 Impale" }, } }, - ["ImpalesInflictedLastAdditionalHitsUnique_1UNUSED"] = { affix = "", "Impales you inflict last (3-6) additional Hits", statOrder = { 7256 }, level = 1, group = "ImpaleLastsForExtraHits", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3425951133] = { "Impales you inflict last (3-6) additional Hits" }, } }, - ["ChanceMeleeHitsDontRemoveSTRONGESTImpaleUnique_1"] = { affix = "", "(20-30)% chance on Melee Hit for the Strongest Impale on target to last for 1 additional Hit", statOrder = { 7259 }, level = 100, group = "ChanceMeleeHitsDontConsumeStrongestImpale", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2136537914] = { "(20-30)% chance on Melee Hit for the Strongest Impale on target to last for 1 additional Hit" }, } }, - ["ImpaleDurationUnique_1"] = { affix = "", "(40-50)% less Impale Duration", statOrder = { 8014 }, level = 1, group = "ImpaledDebuffDurationFromWoeSpike", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1961864874] = { "(40-50)% less Impale Duration" }, } }, - ["ChanceMeleeHitsDontConsumeImpalesUnique_1UNUSED"] = { affix = "", "(45-60)% chance on Melee Hit for all Impales on the Enemy to last for an additional Hit", statOrder = { 7258 }, level = 1, group = "ChanceMeleeHitsDontConsumeImpale", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2314992402] = { "(45-60)% chance on Melee Hit for all Impales on the Enemy to last for an additional Hit" }, } }, - ["AncestorTotemBuffLingersUnique__1"] = { affix = "", "Ancestral Bond", statOrder = { 10770 }, level = 1, group = "AncestralBond", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2648570028] = { "Ancestral Bond" }, } }, - ["OneAncestorTotemBuffUnique__1"] = { affix = "", "Socketed Slam Gems are Supported by Level 25 Earthbreaker", statOrder = { 262 }, level = 1, group = "OneAncestorTotemBuff", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [940684417] = { "Socketed Slam Gems are Supported by Level 25 Earthbreaker" }, } }, - ["DamageTakenFromTotemLifeBeforePlayerUnique__1"] = { affix = "", "(3-5)% of Damage from Hits is taken from your nearest Totem's Life before you", statOrder = { 6094 }, level = 1, group = "DamageTakenFromTotemLifeBeforePlayer", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2762445213] = { "(3-5)% of Damage from Hits is taken from your nearest Totem's Life before you" }, } }, - ["ElementalDamageReductionChaosResistUnique__1"] = { affix = "", "Gain additional Elemental Damage Reduction equal to half your Chaos Resistance", statOrder = { 4065 }, level = 65, group = "ElementalDamageReductionChaosResist", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3990082744] = { "Gain additional Elemental Damage Reduction equal to half your Chaos Resistance" }, } }, - ["CurseLimitMaximumPowerChargesUnique__1"] = { affix = "", "Your Curse Limit is equal to your maximum Power Charges", statOrder = { 6932 }, level = 1, group = "CurseLimitMaximumPowerCharges", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [973000407] = { "Your Curse Limit is equal to your maximum Power Charges" }, } }, - ["PowerChargeOnCurseUnique__1"] = { affix = "", "(10-20)% chance to gain a Power Charge when you Cast a Curse Spell", statOrder = { 6805 }, level = 1, group = "PowerChargeOnCurse", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [322835727] = { "(10-20)% chance to gain a Power Charge when you Cast a Curse Spell" }, } }, - ["SpellCritChanceEqualsWeaponCritChanceUnique__1"] = { affix = "", "Base Spell Critical Strike Chance of Spells is equal to that of Main Hand Weapon", statOrder = { 5050 }, level = 1, group = "SpellCritChanceEqualsWeaponCritChance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2560911401] = { "Base Spell Critical Strike Chance of Spells is equal to that of Main Hand Weapon" }, } }, - ["AttacksCannotCritUnique__1"] = { affix = "", "Cannot deal Critical Strikes with Attacks", statOrder = { 5430 }, level = 1, group = "AttacksCannotCrit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3223376951] = { "Cannot deal Critical Strikes with Attacks" }, } }, - ["CursedEnemiesCannotInflictElementalAilmentsUnique__1"] = { affix = "", "Cursed Enemies cannot inflict Elemental Ailments on You", statOrder = { 5442 }, level = 30, group = "CursedEnemiesCannotInflictElementalAilments", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2643613764] = { "Cursed Enemies cannot inflict Elemental Ailments on You" }, } }, - ["AvoidInterruptionWhileCastingUnique__1"] = { affix = "", "Ignore Stuns while Casting", statOrder = { 1898 }, level = 1, group = "AvoidInterruptionWhileCasting", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1916706958] = { "Ignore Stuns while Casting" }, } }, - ["MaximumCritChanceIs50Unique__1"] = { affix = "", "Maximum Critical Strike Chance is 50%", statOrder = { 9130 }, level = 1, group = "MaximumCritChanceIs50", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1463929958] = { "Maximum Critical Strike Chance is 50%" }, } }, - ["DealNoElementalPhysicalDamageUnique__1"] = { affix = "", "Deal no Physical or Elemental Damage", statOrder = { 6143 }, level = 1, group = "DealNoElementalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4157542794] = { "Deal no Physical or Elemental Damage" }, } }, - ["TemporalChainsCooldownRecoveryUnique__1"] = { affix = "", "(20-25)% increased Cooldown Recovery Rate if you've cast Temporal Chains in the past 10 seconds", statOrder = { 5869 }, level = 1, group = "TemporalChainsCooldownRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2954796309] = { "(20-25)% increased Cooldown Recovery Rate if you've cast Temporal Chains in the past 10 seconds" }, } }, - ["TemporalChainsCannotBeSlowedUnique__1"] = { affix = "", "Action Speed cannot be modified to below Base Value if you've cast Temporal Chains in the past 10 seconds", statOrder = { 4526 }, level = 1, group = "TemporalChainsCannotBeSlowed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3616500790] = { "Action Speed cannot be modified to below Base Value if you've cast Temporal Chains in the past 10 seconds" }, } }, - ["DespairWitherOnHitUnique__1"] = { affix = "", "Inflict Withered for 2 seconds on Hit if you've cast Despair in the past 10 seconds", statOrder = { 7283 }, level = 1, group = "DespairWitherOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1904031052] = { "Inflict Withered for 2 seconds on Hit if you've cast Despair in the past 10 seconds" }, } }, - ["DespairImmuneToCursesUnique__1"] = { affix = "", "Immune to Curses if you've cast Despair in the past 10 seconds", statOrder = { 7220 }, level = 1, group = "DespairImmuneToCurses", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2773026887] = { "Immune to Curses if you've cast Despair in the past 10 seconds" }, } }, - ["ElementalWeaknessPhysicalAsRandomElementUnique__1"] = { affix = "", "Gain (30-40)% of Physical Damage as a Random Element if you've cast Elemental Weakness in the past 10 seconds", statOrder = { 6802 }, level = 1, group = "ElementalWeaknessPhysicalAsRandomElement", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4281949537] = { "Gain (30-40)% of Physical Damage as a Random Element if you've cast Elemental Weakness in the past 10 seconds" }, } }, - ["ElementalWeaknessImmuneToExposureUnique__1"] = { affix = "", "Immune to Exposure if you've cast Elemental Weakness in the past 10 seconds", statOrder = { 7229 }, level = 1, group = "ElementalWeaknessImmuneToExposure", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2921954092] = { "Immune to Exposure if you've cast Elemental Weakness in the past 10 seconds" }, } }, - ["EnfeebleCriticalStrikeMultiplierUnique__1"] = { affix = "", "+(30-40)% to Critical Strike Multiplier if you've cast Enfeeble in the past 10 seconds", statOrder = { 5975 }, level = 1, group = "EnfeebleCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2379274646] = { "+(30-40)% to Critical Strike Multiplier if you've cast Enfeeble in the past 10 seconds" }, } }, - ["EnfeebleNoExtraCritDamageUnique__1"] = { affix = "", "Take no Extra Damage from Critical Strikes if you've cast Enfeeble in the past 10 seconds", statOrder = { 10353 }, level = 1, group = "EnfeebleNoExtraCritDamage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4077357269] = { "Take no Extra Damage from Critical Strikes if you've cast Enfeeble in the past 10 seconds" }, } }, - ["ConductivityUnaffectedByShockUnique__1"] = { affix = "", "You are Unaffected by Shock if you've cast Conductivity in the past 10 seconds", statOrder = { 10479 }, level = 1, group = "ConductivityUnaffectedByShock", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2517037025] = { "You are Unaffected by Shock if you've cast Conductivity in the past 10 seconds" }, } }, - ["ConductivityLightningExposureOnHitUnique__1"] = { affix = "", "Inflict Lightning Exposure on Hit if you've cast Conductivity in the past 10 seconds", statOrder = { 7280 }, level = 1, group = "ConductivityLightningExposureOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3339663313] = { "Inflict Lightning Exposure on Hit if you've cast Conductivity in the past 10 seconds" }, } }, - ["FlammabilityUnaffectedByIgniteUnique__1"] = { affix = "", "You are Unaffected by Ignite if you've cast Flammability in the past 10 seconds", statOrder = { 10476 }, level = 1, group = "FlammabilityUnaffectedByIgnite", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [40907696] = { "You are Unaffected by Ignite if you've cast Flammability in the past 10 seconds" }, } }, - ["FlammabilityFireExposureOnHitUnique__1"] = { affix = "", "Inflict Fire Exposure on Hit if you've cast Flammability in the past 10 seconds", statOrder = { 7275 }, level = 1, group = "FlammabilityFireExposureOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3259812992] = { "Inflict Fire Exposure on Hit if you've cast Flammability in the past 10 seconds" }, } }, - ["FrostbiteUnaffectedByFreezeUnique__1"] = { affix = "", "You are Unaffected by Freeze if you've cast Frostbite in the past 10 seconds", statOrder = { 10472 }, level = 1, group = "FrostbiteUnaffectedByFreeze", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4194606073] = { "You are Unaffected by Freeze if you've cast Frostbite in the past 10 seconds" }, } }, - ["FrostbiteColdExposureOnHitUnique__1"] = { affix = "", "Cold Exposure on Hit if you've cast Frostbite in the past 10 seconds", statOrder = { 7273 }, level = 1, group = "FrostbiteColdExposureOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1168138239] = { "Cold Exposure on Hit if you've cast Frostbite in the past 10 seconds" }, } }, - ["PunishmentImmuneToReflectedDamageUnique__1"] = { affix = "", "Immune to Reflected Damage if you've cast Punishment in the past 10 seconds", statOrder = { 7237 }, level = 1, group = "PunishmentImmuneToReflectedDamage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2713909980] = { "Immune to Reflected Damage if you've cast Punishment in the past 10 seconds" }, } }, - ["PunishmentIntimidateOnHitUnique__1"] = { affix = "", "Intimidate Enemies on Hit if you've cast Punishment in the past 10 seconds", statOrder = { 7296 }, level = 1, group = "PunishmentIntimidateOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [91505809] = { "Intimidate Enemies on Hit if you've cast Punishment in the past 10 seconds" }, } }, - ["VulnerabilityUnaffectedByBleedUnique__1"] = { affix = "", "You are Unaffected by Bleeding if you've cast Vulnerability in the past 10 seconds", statOrder = { 10453 }, level = 1, group = "VulnerabilityUnaffectedByBleed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [971937289] = { "You are Unaffected by Bleeding if you've cast Vulnerability in the past 10 seconds" }, } }, - ["VulnerabilityDoubleDamageUnique__1"] = { affix = "", "(6-10)% chance to deal Double Damage if you've cast Vulnerability in the past 10 seconds", statOrder = { 5667 }, level = 1, group = "VulnerabilityDoubleDamage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2304988974] = { "(6-10)% chance to deal Double Damage if you've cast Vulnerability in the past 10 seconds" }, } }, - ["NearbyEnemyZeroChaosDamageResistanceUnique__1"] = { affix = "", "Nearby Enemies' Chaos Resistance is 0", statOrder = { 7918 }, level = 65, group = "NearbyEnemyZeroChaosDamageResistance", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "resistance" }, tradeHashes = { [2439129490] = { "Chaos Resistance is Zero" }, [663080464] = { "Nearby Enemies' Chaos Resistance is 0" }, } }, - ["AllElementalDamageConvertedToChaosUnique__1"] = { affix = "", "All Elemental Damage Converted to Chaos Damage", statOrder = { 5868 }, level = 65, group = "ConvertAllElementalToChaos", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "chaos" }, tradeHashes = { [2423544033] = { "All Elemental Damage Converted to Chaos Damage" }, } }, - ["NearbyEnemyReservesLifeUnique__1"] = { affix = "", "Nearby Enemy Monsters have at least 8% of Life Reserved", statOrder = { 7916 }, level = 1, group = "NearbyEnemyReservesLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2492660287] = { "Reserves 8% of Life" }, [1063263585] = { "Nearby Enemy Monsters have at least 8% of Life Reserved" }, } }, - ["ChaosDamageOverTimeHealsLeechLifeUnique__1"] = { affix = "", "Taking Chaos Damage over Time heals you instead while Leeching Life", statOrder = { 5732 }, level = 53, group = "ChaosDamageOverTimeHealsLeechLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1971757986] = { "Taking Chaos Damage over Time heals you instead while Leeching Life" }, } }, - ["ModifiersToSuppressionApplyToAilmentAvoidUnique__1"] = { affix = "", "Modifiers to Chance to Suppress Spell Damage also apply to Chance to Avoid Elemental Ailments at 50% of their Value", statOrder = { 10183 }, level = 1, group = "ModifiersToSuppressionApplyToAilmentAvoid", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2401345409] = { "Modifiers to Chance to Suppress Spell Damage also apply to Chance to Avoid Elemental Ailments at 50% of their Value" }, } }, - ["ShockEffectLeechingESUnique__1"] = { affix = "", "(60-100)% increased Effect of Shocks you inflict while Leeching Energy Shield", statOrder = { 10007 }, level = 1, group = "ShockEffectLeechingES", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3578946428] = { "(60-100)% increased Effect of Shocks you inflict while Leeching Energy Shield" }, } }, - ["ChillEffectLeechingManaUnique__1"] = { affix = "", "(60-100)% increased Effect of Chills you inflict while Leeching Mana", statOrder = { 5767 }, level = 1, group = "ChillEffectLeechingMana", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [898270877] = { "(60-100)% increased Effect of Chills you inflict while Leeching Mana" }, } }, - ["UnaffectedByShockLeechingESUnique__1"] = { affix = "", "Unaffected by Shock while Leeching Energy Shield", statOrder = { 10481 }, level = 1, group = "UnaffectedByShockLeechingES", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4102393882] = { "Unaffected by Shock while Leeching Energy Shield" }, } }, - ["UnaffectedByChillLeechingManaUnique__1"] = { affix = "", "Unaffected by Chill while Leeching Mana", statOrder = { 10461 }, level = 1, group = "UnaffectedByChillLeechingMana", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4014328139] = { "Unaffected by Chill while Leeching Mana" }, } }, - ["QuiverModifierEffectUnique__1"] = { affix = "", "(150-250)% increased bonuses gained from Equipped Quiver", statOrder = { 9782 }, level = 1, group = "QuiverModifierEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1200678966] = { "(150-250)% increased bonuses gained from Equipped Quiver" }, } }, - ["LifeRegenerationPercentPerAilmentUnique__1"] = { affix = "", "Regenerate 2% of Life per second for each different Ailment affecting you", statOrder = { 7400 }, level = 18, group = "LifeRegenerationPercentPerAilment", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3491639130] = { "Regenerate 2% of Life per second for each different Ailment affecting you" }, } }, - ["AdrenalineOnFillingLifeLeechUnique__1"] = { affix = "", "10% chance to gain Adrenaline for 2 Seconds when Leech is", "removed by Filling Unreserved Life", statOrder = { 5683, 5683.1 }, level = 1, group = "AdrenalineOnFillingLifeLeech", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [414749123] = { "10% chance to gain Adrenaline for 2 Seconds when Leech is", "removed by Filling Unreserved Life" }, } }, - ["OnslaughtOnFillingLifeLeechUnique__1"] = { affix = "", "10% chance to gain Onslaught for 4 Seconds when Leech is", "removed by Filling Unreserved Life", statOrder = { 5692, 5692.1 }, level = 1, group = "OnslaughtOnFillingLifeLeech", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3106724907] = { "10% chance to gain Onslaught for 4 Seconds when Leech is", "removed by Filling Unreserved Life" }, } }, - ["CannotBeStunnedSuppressedDamageUnique__1"] = { affix = "", "Cannot be Stunned by Suppressed Spell Damage", statOrder = { 5418 }, level = 1, group = "CannotBeStunnedSuppressedDamage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2916280114] = { "Cannot be Stunned by Suppressed Spell Damage" }, } }, - ["DebilitateEnemiesSuppressedDamageUnique__1"] = { affix = "", "Debilitate Enemies for 4 Seconds when you Suppress their Spell Damage", statOrder = { 6148 }, level = 1, group = "DebilitateEnemiesSuppressedDamage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3019649166] = { "Debilitate Enemies for 4 Seconds when you Suppress their Spell Damage" }, } }, - ["StunningHitsRecoverLifeUnique__1"] = { affix = "", "(20-30)% of Damage taken from Stunning Hits is Recovered as Life", statOrder = { 6113 }, level = 1, group = "StunningHitsRecoverLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3913936991] = { "(20-30)% of Damage taken from Stunning Hits is Recovered as Life" }, } }, - ["StunningHitsRecoverEnergyShieldUnique__1"] = { affix = "", "50% of Damage taken from Stunning Hits is Recovered as Energy Shield", statOrder = { 6112 }, level = 1, group = "StunningHitsRecoverEnergyShield", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [763940918] = { "50% of Damage taken from Stunning Hits is Recovered as Energy Shield" }, } }, - ["ArmourAppliesToChaosDamageUnique__1"] = { affix = "", "Armour also applies to Chaos Damage taken from Hits", statOrder = { 4988 }, level = 1, group = "ArmourAppliesToChaosDamage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4186532642] = { "Armour also applies to Chaos Damage taken from Hits" }, } }, - ["PhysicalDamageBypassesEnergyShieldUnique__1"] = { affix = "", "Physical Damage taken bypasses Energy Shield", statOrder = { 9608 }, level = 1, group = "PhysicalDamageBypassesEnergyShield", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2649513539] = { "Physical Damage taken bypasses Energy Shield" }, } }, - ["SuppressedDamageBypassEnergyShieldUnique_1"] = { affix = "", "(50-100)% of Suppressed Spell Damage taken bypasses Energy Shield", statOrder = { 1147 }, level = 80, group = "SuppressedDamageBypassesEnergyShield", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [247456045] = { "(50-100)% of Suppressed Spell Damage taken bypasses Energy Shield" }, } }, - ["SuppressedDamageRecoupedAsEnergyShield_1"] = { affix = "", "(50-100)% of Suppressed Spell Damage taken Recouped as Energy Shield", statOrder = { 1148 }, level = 1, group = "SuppressedSpellDamageRecoupedAsEnergyShield", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1993646143] = { "(50-100)% of Suppressed Spell Damage taken Recouped as Energy Shield" }, } }, - ["RecoverLifeAlteratingUnique__1"] = { affix = "", "Every 10 seconds:", "Gain 2% of Life per Enemy Hit with Attacks for 5 seconds", "Gain 5% of Life per Enemy Killed for 5 seconds", statOrder = { 10507, 10507.1, 10507.2 }, level = 62, group = "RecoverLifeAlterating", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3938394827] = { "Every 10 seconds:", "Gain 2% of Life per Enemy Hit with Attacks for 5 seconds", "Gain 5% of Life per Enemy Killed for 5 seconds" }, } }, - ["LinkLoseNoExperienceUnique__1"] = { affix = "", "Lose no Experience when you die because a Linked target died", statOrder = { 7493 }, level = 55, group = "LinkLoseNoExperience", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [738821856] = { "Lose no Experience when you die because a Linked target died" }, } }, - ["LinkTargetCannotDieUnique__1"] = { affix = "", "Linked Targets Cannot Die for 2 seconds after you Die", statOrder = { 7492 }, level = 1, group = "LinkTargetCannotDie", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3251211004] = { "Linked Targets Cannot Die for 2 seconds after you Die" }, } }, - ["LinkSkillCastSpeedUnique__1"] = { affix = "", "Link Skills have (10-15)% increased Cast Speed", statOrder = { 7488 }, level = 1, group = "LinkSkillCastSpeed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2597985144] = { "Link Skills have (10-15)% increased Cast Speed" }, } }, - ["LinkSkillEffectDurationUnique__1"] = { affix = "", "Link Skills have (10-15)% increased Skill Effect Duration", statOrder = { 7490 }, level = 1, group = "LinkSkillEffectDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1214762172] = { "Link Skills have (10-15)% increased Skill Effect Duration" }, } }, - ["LinkSkillFlaskEffectsUnique__1"] = { affix = "", "Non-Unique Utility Flasks you Use apply to Linked Targets", statOrder = { 6646 }, level = 50, group = "LinkSkillFlaskEffects", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [865273657] = { "Non-Unique Utility Flasks you Use apply to Linked Targets" }, } }, - ["MinionWitherOnHitUnique__1"] = { affix = "", "Minions have 60% chance to inflict Withered on Hit", statOrder = { 9360 }, level = 1, group = "MinionWitherOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1387367793] = { "Minions have 60% chance to inflict Withered on Hit" }, } }, - ["MinionCriticalStrikeMultiplierAgainstWitheredUnique__1"] = { affix = "", "Minions have +5% to Critical Strike Multiplier per Withered Debuff on Enemy", statOrder = { 9361 }, level = 1, group = "MinionCriticalStrikeMultiplierAgainstWithered", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1494965559] = { "Minions have +5% to Critical Strike Multiplier per Withered Debuff on Enemy" }, } }, - ["BleedingExpiresSlowerWhileMovingUnique__1"] = { affix = "", "Bleeding on you expires 75% slower while Moving", statOrder = { 5109 }, level = 1, group = "BleedingExpiresSlowerWhileMoving", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [391460978] = { "Bleeding on you expires 75% slower while Moving" }, } }, - ["CannotBeStunnedWhileBleedingUnique__1"] = { affix = "", "Cannot be Stunned while Bleeding", statOrder = { 5424 }, level = 1, group = "CannotBeStunnedWhileBleeding", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2638865425] = { "Cannot be Stunned while Bleeding" }, } }, - ["CannotBePoisonedWhileBleedingUnique__1"] = { affix = "", "Cannot be Poisoned while Bleeding", statOrder = { 5410 }, level = 1, group = "CannotBePoisonedWhileBleeding", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2784102684] = { "Cannot be Poisoned while Bleeding" }, } }, - ["ExertedAttackDamageUnique__1"] = { affix = "", "Exerted Attacks deal 200% increased Damage", statOrder = { 6357 }, level = 1, group = "ExertedAttackDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [1569101201] = { "Exerted Attacks deal 200% increased Damage" }, } }, - ["ExertedAttackKnockbackChanceUnique__1"] = { affix = "", "Exerted Attacks Knock Enemies Back on Hit", statOrder = { 6507 }, level = 1, group = "ExertedAttackKnockbackChance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1634061592] = { "Exerted Attacks Knock Enemies Back on Hit" }, } }, - ["LocalChanceToBleedUnique__1"] = { affix = "", "25% chance to cause Bleeding on Hit", statOrder = { 2483 }, level = 1, group = "LocalChanceToBleed", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1519615863] = { "25% chance to cause Bleeding on Hit" }, } }, - ["AlwaysPierceBurningEnemiesUnique__1"] = { affix = "", "Projectiles Pierce all Burning Enemies", statOrder = { 4655 }, level = 1, group = "AlwaysPierceBurningEnemies", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2214228141] = { "Projectiles Pierce all Burning Enemies" }, } }, - ["ArrowAddedFireDamagePerEnemyPiercedUnique__1"] = { affix = "", "Arrows deal 30 to 50 Added Fire Damage for each time they've Pierced", statOrder = { 4779 }, level = 1, group = "ArrowAddedFireDamagePerEnemyPierced", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3726936056] = { "Arrows deal 30 to 50 Added Fire Damage for each time they've Pierced" }, } }, - ["MinionLifeIncreasedByOvercappedFireResistanceUnique__1"] = { affix = "", "Minion Life is increased by their Overcapped Fire Resistance", statOrder = { 9312 }, level = 1, group = "MinionLifeIncreasedByOvercappedFireResistance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1586164348] = { "Minion Life is increased by their Overcapped Fire Resistance" }, } }, - ["SupportedByInfernalLegionUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 30 Infernal Legion", statOrder = { 315 }, level = 1, group = "SupportedByInfernalLegion", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2201102274] = { "Socketed Gems are Supported by Level 30 Infernal Legion" }, } }, - ["NearbyEnemiesCoveredInAshUnique__1"] = { affix = "", "Nearby Enemies are Covered in Ash", statOrder = { 7907 }, level = 1, group = "NearbyEnemiesCoveredInAsh", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [746994389] = { "Nearby Enemies are Covered in Ash" }, } }, - ["ColdExposureAdditionalResistanceUnique__1"] = { affix = "", "Cold Exposure you inflict applies an extra -12% to Cold Resistance", statOrder = { 5824 }, level = 1, group = "ColdExposureAdditionalResistance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [600221736] = { "Cold Exposure you inflict applies an extra -12% to Cold Resistance" }, } }, - ["FreezeProliferationUnique__1"] = { affix = "", "Freezes you inflict spread to other Enemies within 1.5 metres", statOrder = { 2220 }, level = 1, group = "FreezeProliferationAmulet", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3865389316] = { "Freezes you inflict spread to other Enemies within 1.5 metres" }, } }, - ["ShockProliferationUnique__2"] = { affix = "", "Shocks you inflict spread to other Enemies within 1.5 metres", statOrder = { 2223 }, level = 1, group = "ShockProliferationShield", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1640259660] = { "Shocks you inflict spread to other Enemies within 1.5 metres" }, } }, - ["AddedLightningDamagePerDexterityUnique__1"] = { affix = "", "Adds 1 to 12 Lightning Damage to Attacks with this Weapon per 10 Dexterity", statOrder = { 4871 }, level = 1, group = "AddedLightningDamagePerDexterity", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [817611267] = { "Adds 1 to 12 Lightning Damage to Attacks with this Weapon per 10 Dexterity" }, } }, - ["CriticalStrikeChancePerIntelligenceUnique__1"] = { affix = "", "5% increased Critical Strike Chance per 25 Intelligence", statOrder = { 5931 }, level = 1, group = "CriticalStrikeChancePerIntelligence", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1861913998] = { "5% increased Critical Strike Chance per 25 Intelligence" }, } }, - ["LifeLeechFromAttacksPermyriadUnique__1"] = { affix = "", "1% of Attack Damage Leeched as Life", statOrder = { 1664 }, level = 1, group = "LifeLeechFromAttacksPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHashes = { [141810208] = { "1% of Attack Damage Leeched as Life" }, } }, - ["LightningNonCriticalStrikesLuckyUnique__1"] = { affix = "", "Lightning Damage with Non-Critical Strikes is Lucky", statOrder = { 6536 }, level = 1, group = "LightningNonCriticalStrikesLucky", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1430928642] = { "Lightning Damage with Non-Critical Strikes is Lucky" }, } }, - ["AddedFireDamageSpellsAndAttacksImplicit1"] = { affix = "", "Adds (1-2) to (3-4) Fire Damage to Spells and Attacks", statOrder = { 1373 }, level = 1, group = "AddedFireDamageSpellsAndAttacksImplicit", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "attack", "caster" }, tradeHashes = { [3964634628] = { "Adds (1-2) to (3-4) Fire Damage to Spells and Attacks" }, } }, - ["AddedFireDamageSpellsAndAttacksImplicit2"] = { affix = "", "Adds (5-10) to (11-13) Fire Damage to Spells and Attacks", statOrder = { 1373 }, level = 1, group = "AddedFireDamageSpellsAndAttacksImplicit", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "attack", "caster" }, tradeHashes = { [3964634628] = { "Adds (5-10) to (11-13) Fire Damage to Spells and Attacks" }, } }, - ["AddedFireDamageSpellsAndAttacksImplicit3"] = { affix = "", "Adds (18-36) to (53-59) Fire Damage to Spells and Attacks", statOrder = { 1373 }, level = 1, group = "AddedFireDamageSpellsAndAttacksImplicit", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "attack", "caster" }, tradeHashes = { [3964634628] = { "Adds (18-36) to (53-59) Fire Damage to Spells and Attacks" }, } }, - ["AddedColdDamageSpellsAndAttacksImplicit1"] = { affix = "", "Adds (2-3) to (4-7) Cold Damage to Spells and Attacks", statOrder = { 1374 }, level = 1, group = "AddedColdDamageSpellsAndAttacksImplicit", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "attack", "caster" }, tradeHashes = { [1662717006] = { "Adds (2-3) to (4-7) Cold Damage to Spells and Attacks" }, } }, - ["AddedColdDamageSpellsAndAttacksImplicit2"] = { affix = "", "Adds (4-8) to (10-12) Cold Damage to Spells and Attacks", statOrder = { 1374 }, level = 1, group = "AddedColdDamageSpellsAndAttacksImplicit", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "attack", "caster" }, tradeHashes = { [1662717006] = { "Adds (4-8) to (10-12) Cold Damage to Spells and Attacks" }, } }, - ["AddedColdDamageSpellsAndAttacksImplicit3"] = { affix = "", "Adds (14-29) to (42-47) Cold Damage to Spells and Attacks", statOrder = { 1374 }, level = 1, group = "AddedColdDamageSpellsAndAttacksImplicit", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "attack", "caster" }, tradeHashes = { [1662717006] = { "Adds (14-29) to (42-47) Cold Damage to Spells and Attacks" }, } }, - ["AddedLightningDamageSpellsAndAttacksImplicit1"] = { affix = "", "Adds (1-2) to (9-11) Lightning Damage to Spells and Attacks", statOrder = { 1409 }, level = 1, group = "AddedLightningDamageSpellsAndAttacksImplicit", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "attack", "caster" }, tradeHashes = { [2885144362] = { "Adds (1-2) to (9-11) Lightning Damage to Spells and Attacks" }, } }, - ["AddedLightningDamageSpellsAndAttacksImplicit2"] = { affix = "", "Adds (1-2) to (22-24) Lightning Damage to Spells and Attacks", statOrder = { 1409 }, level = 1, group = "AddedLightningDamageSpellsAndAttacksImplicit", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "attack", "caster" }, tradeHashes = { [2885144362] = { "Adds (1-2) to (22-24) Lightning Damage to Spells and Attacks" }, } }, - ["AddedLightningDamageSpellsAndAttacksImplicit3"] = { affix = "", "Adds (3-5) to (70-82) Lightning Damage to Spells and Attacks", statOrder = { 1409 }, level = 1, group = "AddedLightningDamageSpellsAndAttacksImplicit", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "attack", "caster" }, tradeHashes = { [2885144362] = { "Adds (3-5) to (70-82) Lightning Damage to Spells and Attacks" }, } }, - ["ItemCanHaveShieldWeaponTreeUnique1"] = { affix = "", "Has a Crucible Passive Skill Tree", "Crucible Passive Skill Tree is removed if this Modifier is removed", statOrder = { 8034, 8034.1 }, level = 1, group = "ItemCanHaveShieldWeaponTree", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1827605890] = { "Has a Crucible Passive Skill Tree", "Crucible Passive Skill Tree is removed if this Modifier is removed" }, } }, - ["ItemCanHaveTwoHandedSwordWeaponTreeUnique1"] = { affix = "", "Has a Two Handed Sword Crucible Passive Skill Tree", "Crucible Passive Skill Tree is removed if this Modifier is removed", statOrder = { 8035, 8035.1 }, level = 1, group = "ItemCanHaveTwoHandedSwordWeaponTree", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2141582975] = { "Has a Two Handed Sword Crucible Passive Skill Tree", "Crucible Passive Skill Tree is removed if this Modifier is removed" }, } }, - ["ItemCanHaveSupportGemsOnlyTreeUnique1"] = { affix = "", "Has a Crucible Passive Skill Tree with only Support Passive Skills", "Crucible Passive Skill Tree is removed if this Modifier is removed", statOrder = { 8033, 8033.1 }, level = 1, group = "ItemCanHaveSupportGemsOnlyTree", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3031897787] = { "Has a Crucible Passive Skill Tree with only Support Passive Skills", "Crucible Passive Skill Tree is removed if this Modifier is removed" }, } }, - ["LowLifeInstantLifeRecoveryUnique__1"] = { affix = "", "Life Flasks used while on Low Life apply Recovery Instantly", statOrder = { 7351 }, level = 38, group = "LowLifeInstantLifeRecovery", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, tradeHashes = { [1200347828] = { "Life Flasks used while on Low Life apply Recovery Instantly" }, } }, - ["LowManaInstantManaRecoveryUnique__1"] = { affix = "", "Mana Flasks used while on Low Mana apply Recovery Instantly", statOrder = { 8175 }, level = 1, group = "LowManaInstantManaRecovery", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "mana" }, tradeHashes = { [1839832419] = { "Mana Flasks used while on Low Mana apply Recovery Instantly" }, } }, - ["IncreasedLifeNoLifeModifiersUnique__1"] = { affix = "", "+(700-1000) to maximum Life if there are no Life Modifiers on other Equipped Items", statOrder = { 9150 }, level = 1, group = "IncreasedLifeNoLifeModifiers", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2927667525] = { "+(700-1000) to maximum Life if there are no Life Modifiers on other Equipped Items" }, } }, - ["HinekoraButterflyEffectUnique__1"] = { affix = "", "Every 5 seconds, gain one of the following for 5 seconds:", "Your Hits are always Critical Strikes", "Hits against you are always Critical Strikes", "Attacks cannot Hit you", "Attacks against you always Hit", "Your Damage with Hits is Lucky", "Damage of Hits against you is Lucky", statOrder = { 7148, 7148.1, 7148.2, 7148.3, 7148.4, 7148.5, 7148.6 }, level = 62, group = "HinekoraButterflyEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2501671832] = { "Every 5 seconds, gain one of the following for 5 seconds:", "Your Hits are always Critical Strikes", "Hits against you are always Critical Strikes", "Attacks cannot Hit you", "Attacks against you always Hit", "Your Damage with Hits is Lucky", "Damage of Hits against you is Lucky" }, } }, - ["SoulTattooEffectUnique__1"] = { affix = "", "100% increased effect of Tattoos in Radius", statOrder = { 8125 }, level = 1, group = "SoulTattooEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3802517517] = { "" }, [4149388787] = { "100% increased effect of Tattoos in Radius" }, } }, - ["GainSpellCostAsESUnique__1"] = { affix = "", "Spells cause you to gain Energy Shield equal to their Upfront", "Cost every fifth time you Pay it", statOrder = { 6825, 6825.1 }, level = 55, group = "GainSpellCostAsES", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield", "caster" }, tradeHashes = { [1357409216] = { "Spells cause you to gain Energy Shield equal to their Upfront", "Cost every fifth time you Pay it" }, } }, - ["WarcrySpeedUnique__1"] = { affix = "", "(20-25)% increased Warcry Speed", statOrder = { 3277 }, level = 1, group = "WarcrySpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [1316278494] = { "(20-25)% increased Warcry Speed" }, } }, - ["WarcrySpeedUnique__2"] = { affix = "", "(25-35)% increased Warcry Speed", statOrder = { 3277 }, level = 1, group = "WarcrySpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [1316278494] = { "(25-35)% increased Warcry Speed" }, } }, - ["LocalTreatElementalResistanceAsInvertedUnique__1"] = { affix = "", "Treats Enemy Monster Elemental Resistance values as inverted", statOrder = { 8032 }, level = 1, group = "LocalTreatElementalResistanceAsInverted", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [2750800428] = { "Treats Enemy Monster Elemental Resistance values as inverted" }, } }, - ["LocalTreatChaosResistanceAsInvertedUnique__1"] = { affix = "", "Treats Enemy Monster Chaos Resistance values as inverted", statOrder = { 2816 }, level = 1, group = "LocalTreatChaoslResistanceAsInverted", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [3897054103] = { "Treats Enemy Monster Chaos Resistance values as inverted" }, } }, - ["MinionsUseMainHandBaseCritUnique__1"] = { affix = "", "Minions' Base Attack Critical Strike Chance is equal to the Critical", "Strike Chance of your Main Hand Weapon", statOrder = { 9370, 9370.1 }, level = 1, group = "MinionsUseMainHandBaseCrit", weightKey = { }, weightVal = { }, modTags = { "minion", "critical" }, tradeHashes = { [3700085184] = { "Minions' Base Attack Critical Strike Chance is equal to the Critical", "Strike Chance of your Main Hand Weapon" }, } }, - ["TreatResistancesAsMaxChanceUnique__1"] = { affix = "", "(30-40)% chance for Elemental Resistances to count as being 90% against Enemy Hits", statOrder = { 6421 }, level = 1, group = "TreatResistancesAsMaxChance", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [204458505] = { "(30-40)% chance for Elemental Resistances to count as being 90% against Enemy Hits" }, } }, - ["TakeNoBurningDamageIfStopBurningUnique__1"] = { affix = "", "Take no Burning Damage if you've stopped taking Burning Damage Recently", statOrder = { 10354 }, level = 1, group = "TakeNoBurningDamageIfStopBurning", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire" }, tradeHashes = { [2738190959] = { "Take no Burning Damage if you've stopped taking Burning Damage Recently" }, } }, - ["GainMissingLifeOnHitUnique__1"] = { affix = "", "Gain (10-20)% of Missing Unreserved Life before being Hit by an Enemy", statOrder = { 9378 }, level = 62, group = "GainMissingLifeOnHit", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [1383676476] = { "Gain (10-20)% of Missing Unreserved Life before being Hit by an Enemy" }, } }, - ["UnaffectedByDamagingAilmentsUnique__1"] = { affix = "", "Unaffected by Damaging Ailments", statOrder = { 10467 }, level = 1, group = "UnaffectedByDamagingAilments", weightKey = { }, weightVal = { }, modTags = { "ailment" }, tradeHashes = { [1575046591] = { "Unaffected by Damaging Ailments" }, } }, - ["NonExertedAttacksNoDamageUnique__1"] = { affix = "", "Non-Exerted Attacks deal no Damage", statOrder = { 9509 }, level = 1, group = "NonExertedAttacksNoDamage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3303984198] = { "Non-Exerted Attacks deal no Damage" }, } }, - ["LifeLeechInstantExertedAttacksUnique__1"] = { affix = "", "Life Leech from Exerted Attacks is instant", statOrder = { 7373 }, level = 1, group = "LifeLeechInstantExertedAttacks", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [272906215] = { "Life Leech from Exerted Attacks is instant" }, } }, - ["QuiverChillAsThoughtDealingMoreDamageUnique__1"] = { affix = "", "Chill Enemies as though dealing (60-100)% more Damage", statOrder = { 10506 }, level = 1, group = "QuiverChillAsThoughtDealingMoreDamage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2223307291] = { "Chill Enemies as though dealing (60-100)% more Damage" }, } }, - ["NgamahusEmbraceOnKillUnique__1"] = { affix = "", "10% chance to Trigger Summon Spirit of Kaom on Kill", statOrder = { 667 }, level = 62, group = "NgamahusEmbraceOnKill", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [817287945] = { "10% chance to Trigger Summon Spirit of Kaom on Kill" }, } }, - ["KitavasEmbraceOnKillUnique__1"] = { affix = "", "10% chance to Trigger Summon Spirit of Utula on Kill", statOrder = { 666 }, level = 62, group = "KitavasEmbraceOnKill", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [272515409] = { "10% chance to Trigger Summon Spirit of Utula on Kill" }, } }, - ["TukohamasEmbraceOnKillUnique__1"] = { affix = "", "10% chance to Trigger Summon Spirit of Akoya on Kill", statOrder = { 672 }, level = 62, group = "TukohamasEmbraceOnKill", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3888707953] = { "10% chance to Trigger Summon Spirit of Akoya on Kill" }, } }, - ["RongokuraisEmbraceOnKillUnique__1"] = { affix = "", "10% chance to Trigger Summon Spirit of Kahuturoa on Kill", statOrder = { 669 }, level = 62, group = "RongokuraisEmbraceOnKill", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [264841388] = { "10% chance to Trigger Summon Spirit of Kahuturoa on Kill" }, } }, - ["TasaliosEmbraceOnKillUnique__1"] = { affix = "", "10% chance to Trigger Summon Spirit of Rakiata on Kill", statOrder = { 670 }, level = 62, group = "TasaliosEmbraceOnKill", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1630969195] = { "10% chance to Trigger Summon Spirit of Rakiata on Kill" }, } }, - ["ArohonguisEmbraceOnKillUnique__1"] = { affix = "", "10% chance to Trigger Summon Spirit of Ikiaho on Kill", statOrder = { 664 }, level = 62, group = "ArohonguisEmbraceOnKill", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1163205473] = { "10% chance to Trigger Summon Spirit of Ikiaho on Kill" }, } }, - ["RamakosEmbraceOnKillUnique__1"] = { affix = "", "10% chance to Trigger Summon Spirit of Ahuana on Kill", statOrder = { 668 }, level = 62, group = "RamakosEmbraceOnKill", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [31336590] = { "10% chance to Trigger Summon Spirit of Ahuana on Kill" }, } }, - ["HinekorasEmbraceOnKillUnique__1"] = { affix = "", "10% chance to Trigger Summon Spirit of Tawhanuku on Kill", statOrder = { 665 }, level = 62, group = "HinekorasEmbraceOnKill", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4217417523] = { "10% chance to Trigger Summon Spirit of Tawhanuku on Kill" }, } }, - ["TawhoasEmbraceOnKillUnique__1"] = { affix = "", "10% chance to Trigger Summon Spirit of Maata on Kill", statOrder = { 671 }, level = 62, group = "TawhoasEmbraceOnKill", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3572665414] = { "10% chance to Trigger Summon Spirit of Maata on Kill" }, } }, - ["ValakosEmbraceOnKillUnique__1"] = { affix = "", "10% chance to Trigger Summon Spirit of Kiloava on Kill", statOrder = { 673 }, level = 62, group = "ValakosEmbraceOnKill", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [999837849] = { "10% chance to Trigger Summon Spirit of Kiloava on Kill" }, } }, - ["NearbyEnemyPhysicalDamageConvertedToFire__1"] = { affix = "", "Nearby Enemies Convert 25% of their Physical Damage to Fire", statOrder = { 10728 }, level = 1, group = "NearbyEnemyPhysicalDamageConvertedToFire", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3729324251] = { "Nearby Enemies Convert 25% of their Physical Damage to Fire" }, } }, - ["IncreasedLifeEmptyRedSocketUnique__1"] = { affix = "", "+40 to maximum Life for each Empty Red Socket on any Equipped Item", statOrder = { 4433 }, level = 60, group = "IncreasedLifeEmptyRedSocket", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [726359715] = { "+40 to maximum Life for each Empty Red Socket on any Equipped Item" }, } }, - ["IncreasedAccuracyEmptyGreenSocketUnique__1"] = { affix = "", "+225 to Accuracy Rating for each Empty Green Socket on any Equipped Item", statOrder = { 4434 }, level = 1, group = "IncreasedAccuracyEmptyGreenSocket", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [4280703528] = { "+225 to Accuracy Rating for each Empty Green Socket on any Equipped Item" }, } }, - ["IncreasedManaEmptyBlueSocketUnique__1"] = { affix = "", "+40 to maximum Mana for each Empty Blue Socket on any Equipped Item", statOrder = { 4435 }, level = 1, group = "IncreasedManaEmptyBlueSocket", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2962020005] = { "+40 to maximum Mana for each Empty Blue Socket on any Equipped Item" }, } }, - ["AllResistEmptyWhiteSocketUnique__1"] = { affix = "", "+18% to all Elemental Resistances for each Empty White Socket on any Equipped Item", statOrder = { 4436 }, level = 1, group = "AllResistEmptyWhiteSocket", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [597739519] = { "+18% to all Elemental Resistances for each Empty White Socket on any Equipped Item" }, } }, - ["LocalIncreaseSocketedGemLevelPerFilledSocketUnique__1"] = { affix = "", "-2 to level of Socketed Skill Gems per Socketed Gem", statOrder = { 8019 }, level = 1, group = "LocalIncreaseSocketedGemLevelPerFilledSocket", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2503682584] = { "-2 to level of Socketed Skill Gems per Socketed Gem" }, } }, - ["CorruptedMagicJewelModEffectUnique__1"] = { affix = "", "(0-100)% increased Effect of Jewel Socket Passive Skills containing Corrupted Magic Jewels", statOrder = { 8102 }, level = 1, group = "CorruptedMagicJewelModEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [461663422] = { "(0-100)% increased Effect of Jewel Socket Passive Skills containing Corrupted Magic Jewels" }, } }, - ["MaximumQualityOverrideUnique__1"] = { affix = "", "Maximum Quality is 200%", statOrder = { 7996 }, level = 1, group = "MaximumQualityOverride", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [275498888] = { "Maximum Quality is 200%" }, } }, - ["RandomMovementVelocityWhenHitUnique__1"] = { affix = "", "When Hit, gain a random Movement Speed modifier from 40% reduced to 100% increased, until Hit again", statOrder = { 9263 }, level = 1, group = "RandomMovementVelocityWhenHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3281809492] = { "When Hit, gain a random Movement Speed modifier from 40% reduced to 100% increased, until Hit again" }, } }, - ["EnemyElementalResistanceZeroWhenHitUnique__1"] = { affix = "", "When an Enemy Hit deals Elemental Damage to you, their Resistance to those Elements becomes zero for 4 seconds", statOrder = { 6423 }, level = 1, group = "EnemyElementalResistanceZeroWhenHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3714446071] = { "When an Enemy Hit deals Elemental Damage to you, their Resistance to those Elements becomes zero for 4 seconds" }, } }, - ["AvoidMaimChanceUnique__1"] = { affix = "", "You cannot be Maimed", statOrder = { 4947 }, level = 56, group = "AvoidMaimChance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1126826428] = { "You cannot be Maimed" }, } }, - ["SkeletonAddedChaosDamageShieldUnique__1"] = { affix = "", "Skeletons gain Added Chaos Damage equal to (20-30)% of Maximum Energy Shield on your Equipped Shield", statOrder = { 10696 }, level = 1, group = "SkeletonAddedChaosDamageShield", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1475598909] = { "Skeletons gain Added Chaos Damage equal to (20-30)% of Maximum Energy Shield on your Equipped Shield" }, } }, - ["ElementalDamageTakenAsPhysicalUnique__1"] = { affix = "", "40% of Elemental Damage from Hits taken as Physical Damage", statOrder = { 6329 }, level = 1, group = "ElementalDamageTakenAsPhysical", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2340750293] = { "40% of Elemental Damage from Hits taken as Physical Damage" }, } }, - ["ElementalDamageTakenAsPhysicalUnique__2"] = { affix = "", "(15-30)% of Elemental Damage from Hits taken as Physical Damage", statOrder = { 6329 }, level = 1, group = "ElementalDamageTakenAsPhysical", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2340750293] = { "(15-30)% of Elemental Damage from Hits taken as Physical Damage" }, } }, - ["ElementalDamageFromBlockedHitsUnique__1"] = { affix = "", "You take 100% of Elemental Damage from Blocked Hits", statOrder = { 5229 }, level = 1, group = "ElementalDamageFromBlockedHits", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2393355605] = { "You take 100% of Elemental Damage from Blocked Hits" }, } }, - ["SpellAddedChaosDamageMaximumLifeUnique__1"] = { affix = "", "Spells deal added Chaos Damage equal to (15-20)% of your maximum Life", statOrder = { 4547 }, level = 1, group = "SpellAddedChaosDamageMaximumLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3175648755] = { "Spells deal added Chaos Damage equal to (15-20)% of your maximum Life" }, } }, - ["LifeDegenerationGracePeriodUnique__1"] = { affix = "", "Lose 500 Life per second", statOrder = { 1575 }, level = 1, group = "LifeDegenerationGracePeriod", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [771127912] = { "Lose 500 Life per second" }, } }, - ["SocketedGemsSupportedByLifetapUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 1 Lifetap", statOrder = { 325 }, level = 1, group = "SocketedGemsSupportedByLifetap", weightKey = { }, weightVal = { }, modTags = { "skill", "gem" }, tradeHashes = { [1079239905] = { "Socketed Gems are Supported by Level 1 Lifetap" }, } }, - ["CriticalStrikeMultiplierMonsterPowerUnique__1"] = { affix = "", "Hits with this Weapon have +10% to Critical Strike Multiplier per Enemy Power", statOrder = { 7163 }, level = 1, group = "CriticalStrikeMultiplierMonsterPower", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1872107885] = { "Hits with this Weapon have +10% to Critical Strike Multiplier per Enemy Power" }, } }, - ["LeechInstantMonsterPowerUnique__1"] = { affix = "", "5% of Leech from Hits with this Weapon is Instant per Enemy Power", statOrder = { 7164 }, level = 1, group = "LeechInstantMonsterPower", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2583648686] = { "5% of Leech from Hits with this Weapon is Instant per Enemy Power" }, } }, - ["GainEnduranceChargeEverySecondUnique__1"] = { affix = "", "Lose an Endurance Charge each second", statOrder = { 6700 }, level = 1, group = "GainEnduranceChargeEverySecond", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3778599971] = { "Lose an Endurance Charge each second" }, } }, - ["GainFrenzyChargeEverySecondUnique__1"] = { affix = "", "Lose a Frenzy Charge each second", statOrder = { 6703 }, level = 1, group = "GainFrenzyChargeEverySecond", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [651232125] = { "Lose a Frenzy Charge each second" }, } }, - ["GainPowerChargeEverySecondUnique__1"] = { affix = "", "Lose a Power Charge each second", statOrder = { 6706 }, level = 1, group = "GainPowerChargeEverySecond", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [521054609] = { "Lose a Power Charge each second" }, } }, - ["CountAsHavingMaxEnduranceFrenzyPowerCharges1"] = { affix = "", "Count as having maximum number of Endurance Charges", "Count as having maximum number of Frenzy Charges", "Count as having maximum number of Power Charges", statOrder = { 5886, 5886.1, 5886.2 }, level = 1, group = "CountAsHavingMaxEnduranceFrenzyPowerCharges", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3584443917] = { "Count as having maximum number of Endurance Charges", "Count as having maximum number of Frenzy Charges", "Count as having maximum number of Power Charges" }, } }, - ["MaximumFortificationUnique__1"] = { affix = "", "+(1-10) to maximum Fortification", statOrder = { 5031 }, level = 1, group = "MaximumFortification", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2094299742] = { "+(1-10) to maximum Fortification" }, } }, - ["StrikeSkillsFortifyOnHitUnique__1"] = { affix = "", "Melee Hits from Strike Skills Fortify", statOrder = { 10259 }, level = 1, group = "StrikeSkillsFortify", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3049891689] = { "Melee Hits from Strike Skills Fortify" }, } }, - ["AttackSpeedPerFortificationUnique__1"] = { affix = "", "1% increased Attack Speed per Fortification", statOrder = { 4888 }, level = 1, group = "AttackSpeedPerFortification", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1039149869] = { "1% increased Attack Speed per Fortification" }, } }, - ["RageCasterStatsUnique__1"] = { affix = "", "Rage grants Spell Damage instead of Attack Damage", statOrder = { 9797 }, level = 1, group = "RageCasterStats", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2933909365] = { "Rage grants Spell Damage instead of Attack Damage" }, [223497523] = { "" }, } }, - ["GainRageOnManaSpentUnique__1"] = { affix = "", "Gain (7-10) Rage after Spending a total of 200 Mana", statOrder = { 6846 }, level = 1, group = "GainRageOnManaSpent", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3199910734] = { "Gain (7-10) Rage after Spending a total of 200 Mana" }, } }, - ["LifeFromEnergyShieldArmourUnique__1"] = { affix = "", "Gain Maximum Life instead of Maximum Energy Shield from Equipped Armour Items", statOrder = { 6775 }, level = 1, group = "LifeFromEnergyShieldArmour", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3734229311] = { "Gain Maximum Life instead of Maximum Energy Shield from Equipped Armour Items" }, } }, - ["FlaskDurationPerLevelUnique__1"] = { affix = "", "2% reduced Flask Effect Duration per Level", statOrder = { 6638 }, level = 1, group = "FlaskDurationPerLevel", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [981878473] = { "2% reduced Flask Effect Duration per Level" }, } }, - ["FlaskEffectPerLevelUnique__1"] = { affix = "", "Flasks applied to you have 1% increased Effect per Level", statOrder = { 6639 }, level = 1, group = "FlaskEffectPerLevel", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3867344930] = { "Flasks applied to you have 1% increased Effect per Level" }, } }, - ["GrantsRavenousSkillUnique__1"] = { affix = "", "Grants Level 20 Ravenous Skill", "Enemies display their Monster Category", statOrder = { 696, 744 }, level = 1, group = "GrantsRavenousSkill", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [636370122] = { "Grants Level 20 Ravenous Skill" }, [4164361381] = { "Enemies display their Monster Category" }, } }, - ["AdditionalSacredWispUnique__1"] = { affix = "", "+1 to maximum number of Sacred Wisps", "+1 to number of Sacred Wisps Summoned", statOrder = { 5036, 5036.1 }, level = 1, group = "AdditionalSacredWisp", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [13590525] = { "+1 to maximum number of Sacred Wisps", "+1 to number of Sacred Wisps Summoned" }, } }, - ["AttackCriticalStrikesUnnerveUnique__1"] = { affix = "", "Attacks inflict Unnerve on Critical Strike for 4 seconds", statOrder = { 4919 }, level = 1, group = "AttackCriticalStrikesUnnerve", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3362271649] = { "Attacks inflict Unnerve on Critical Strike for 4 seconds" }, } }, - ["SpellCriticalStrikesIntimidateUnique__1"] = { affix = "", "Spells inflict Intimidate on Critical Strike for 4 seconds", statOrder = { 10194 }, level = 1, group = "SpellCriticalStrikesIntimidate", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [181229988] = { "Spells inflict Intimidate on Critical Strike for 4 seconds" }, } }, - ["EnemiesCountAsMovingElementalAilmentsUnique__1"] = { affix = "", "You and Enemies in your Presence count as moving while affected by Elemental Ailments", statOrder = { 6385 }, level = 1, group = "EnemiesCountAsMovingElementalAilments", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [113536037] = { "You and Enemies in your Presence count as moving while affected by Elemental Ailments" }, } }, - ["MinionsHaveChargesYouHaveUnique__1"] = { affix = "", "Minions have the same maximum number of Endurance, Frenzy and Power Charges as you", "Minions count as having the same number of", "Endurance, Frenzy and Power Charges as you", statOrder = { 9362, 9363, 9363.1 }, level = 1, group = "MinionsHaveChargesYouHave", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3879726065] = { "Minions have the same maximum number of Endurance, Frenzy and Power Charges as you" }, [2797097751] = { "Minions count as having the same number of", "Endurance, Frenzy and Power Charges as you" }, } }, - ["AurasOnlyApplyToLinkedTargetUnique__1"] = { affix = "", "Linked Targets always count as in range of Non-Curse Auras from your Skills", "Non-Curse Auras from your Skills only apply to you and Linked Targets", statOrder = { 9496, 9496.1 }, level = 1, group = "AurasOnlyApplyToLinkedTarget", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3678739763] = { "Linked Targets always count as in range of Non-Curse Auras from your Skills", "Non-Curse Auras from your Skills only apply to you and Linked Targets" }, } }, - ["AuraEffectWhileLinkedUnique__1"] = { affix = "", "(20-40)% increased Effect of Non-Curse Auras from your Skills while you have a Linked Target", statOrder = { 9495 }, level = 1, group = "AuraEffectWhileLinked", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3995650818] = { "(20-40)% increased Effect of Non-Curse Auras from your Skills while you have a Linked Target" }, } }, - ["MaximumSpectrePerGhastlyEyeUnique__1"] = { affix = "", "+1 to maximum number of Raised Spectres per Socketed Ghastly Eye Jewel", statOrder = { 4587 }, level = 1, group = "MaximumSpectrePerGhastlyEye", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1664904679] = { "+1 to maximum number of Raised Spectres per Socketed Ghastly Eye Jewel" }, } }, - ["HeraldReservationEfficiencyUnique__1"] = { affix = "", "10% increased Mana Reservation Efficiency of Herald Skills", statOrder = { 7132 }, level = 80, group = "HeraldReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3078295401] = { "10% increased Mana Reservation Efficiency of Herald Skills" }, } }, - ["UniqueJewelNodeIncreasedLifeUnique__1"] = { affix = "", "Passive Skills in Radius also grant +5 to maximum Life", statOrder = { 8105 }, level = 1, group = "UniqueJewelNodeIncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [1223932609] = { "Passive Skills in Radius also grant +5 to maximum Life" }, } }, - ["UniqueJewelNodeIncreasedManaUnique__1"] = { affix = "", "Passive Skills in Radius also grant +5 to maximum Mana", statOrder = { 8106 }, level = 1, group = "UniqueJewelNodeIncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [3382199855] = { "Passive Skills in Radius also grant +5 to maximum Mana" }, } }, - ["UniqueJewelNodeCriticalStrikeChanceUnique__1"] = { affix = "", "Passive Skills in Radius also grant 5% increased Global Critical Strike Chance", statOrder = { 8109 }, level = 1, group = "UniqueJewelNodeCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [3901726941] = { "Passive Skills in Radius also grant 5% increased Global Critical Strike Chance" }, } }, - ["UniqueJewelNodeAllAttributesUnique__1"] = { affix = "", "Passive Skills in Radius also grant +2 to all Attributes", statOrder = { 8103 }, level = 1, group = "UniqueJewelNodeAllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3587101704] = { "Passive Skills in Radius also grant +2 to all Attributes" }, } }, - ["UniqueJewelNodeChaosResistUnique__1"] = { affix = "", "Passive Skills in Radius also grant +4% to Chaos Resistance", statOrder = { 8104 }, level = 1, group = "UniqueJewelNodeChaosResist", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [1812306107] = { "Passive Skills in Radius also grant +4% to Chaos Resistance" }, } }, - ["UniqueJewelNodePhysicalDamageUnique__1"] = { affix = "", "Passive Skills in Radius also grant 6% increased Physical Damage", statOrder = { 8114 }, level = 1, group = "UniqueJewelNodePhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3252387974] = { "Passive Skills in Radius also grant 6% increased Physical Damage" }, } }, - ["UniqueJewelNodeFireDamageUnique__1"] = { affix = "", "Passive Skills in Radius also grant 6% increased Fire Damage", statOrder = { 8111 }, level = 1, group = "UniqueJewelNodeFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [719810173] = { "Passive Skills in Radius also grant 6% increased Fire Damage" }, } }, - ["UniqueJewelNodeColdDamageUnique__1"] = { affix = "", "Passive Skills in Radius also grant 6% increased Cold Damage", statOrder = { 8108 }, level = 1, group = "UniqueJewelNodeColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [2999571636] = { "Passive Skills in Radius also grant 6% increased Cold Damage" }, } }, - ["UniqueJewelNodeLightningDamageUnique__1"] = { affix = "", "Passive Skills in Radius also grant 6% increased Lightning Damage", statOrder = { 8112 }, level = 1, group = "UniqueJewelNodeLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [3556460433] = { "Passive Skills in Radius also grant 6% increased Lightning Damage" }, } }, - ["UniqueJewelNodeChaosDamageUnique__1"] = { affix = "", "Passive Skills in Radius also grant 6% increased Chaos Damage", statOrder = { 8107 }, level = 1, group = "UniqueJewelNodeChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [1313763128] = { "Passive Skills in Radius also grant 6% increased Chaos Damage" }, } }, - ["UniqueJewelNodeArmourUnique__1"] = { affix = "", "Passive Skills in Radius also grant 7% increased Armour", statOrder = { 8115 }, level = 1, group = "UniqueJewelNodeArmour", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1647724040] = { "Passive Skills in Radius also grant 7% increased Armour" }, } }, - ["UniqueJewelNodeEvasionUnique__1"] = { affix = "", "Passive Skills in Radius also grant 7% increased Evasion Rating", statOrder = { 8110 }, level = 1, group = "UniqueJewelNodeEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [3761482453] = { "Passive Skills in Radius also grant 7% increased Evasion Rating" }, } }, - ["UniqueJewelNodeEnergyShieldUnique__1"] = { affix = "", "Passive Skills in Radius also grant 3% increased Energy Shield", statOrder = { 8113 }, level = 1, group = "UniqueJewelNodeEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4215928287] = { "Passive Skills in Radius also grant 3% increased Energy Shield" }, } }, - ["RunecraftingFireDamage"] = { affix = "", "(10-20)% increased Fire Damage", statOrder = { 1357 }, level = 1, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(10-20)% increased Fire Damage" }, } }, - ["RunecraftingColdDamage"] = { affix = "", "(10-20)% increased Cold Damage", statOrder = { 1366 }, level = 1, group = "ColdDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(10-20)% increased Cold Damage" }, } }, - ["RunecraftingLightningDamage"] = { affix = "", "(10-20)% increased Lightning Damage", statOrder = { 1377 }, level = 1, group = "LightningDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(10-20)% increased Lightning Damage" }, } }, - ["RitualRingPenanceMark"] = { affix = "", "Grants level 20 Penance Mark", statOrder = { 62 }, level = 63, group = "RitualRingPenanceMark", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [88120117] = { "Grants level 20 Penance Mark" }, } }, - ["RitualRingAffliction"] = { affix = "", "Grants level 20 Affliction", statOrder = { 60 }, level = 63, group = "RitualRingAffliction", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3486646279] = { "Grants level 20 Affliction" }, } }, - ["RitualRingPacify"] = { affix = "", "Grants level 20 Pacify", statOrder = { 61 }, level = 63, group = "RitualRingPacify", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [913306901] = { "Grants level 20 Pacify" }, } }, - ["RitualRingCastSpeed"] = { affix = "", "(6-12)% increased Cast Speed", statOrder = { 1446 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(6-12)% increased Cast Speed" }, } }, - ["RitualRingLife"] = { affix = "", "+(30-60) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(30-60) to maximum Life" }, } }, - ["RitualRingMana"] = { affix = "", "+(30-60) to maximum Mana", statOrder = { 1579 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(30-60) to maximum Mana" }, } }, - ["RitualRingEnergyShield"] = { affix = "", "+(30-60) to maximum Energy Shield", statOrder = { 1558 }, level = 1, group = "EnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+(30-60) to maximum Energy Shield" }, } }, - ["KeyStoneRetaliationHitsUnique_1"] = { affix = "", "Arsenal of Vengeance", statOrder = { 10808 }, level = 1, group = "RetaliationHits", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [971749694] = { "Arsenal of Vengeance" }, } }, - ["ConvertBodyArmourEvasionToWardUnique__1"] = { affix = "", "Gain Ward instead of 50% of Armour and Evasion Rating from Equipped Body Armour", statOrder = { 10582 }, level = 66, group = "ConvertBodyArmourEvasionToWard", weightKey = { }, weightVal = { }, modTags = { "defences" }, tradeHashes = { [767698281] = { "Gain Ward instead of 50% of Armour and Evasion Rating from Equipped Body Armour" }, } }, - ["BlockIsLuckyUnique__1"] = { affix = "", "Chance to Block is Lucky", statOrder = { 4995 }, level = 1, group = "BlockIsLucky", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [984774803] = { "Chance to Block is Lucky" }, } }, - ["BlockIsUnluckyUnique__1"] = { affix = "", "Chance to Block is Unlucky", statOrder = { 4995 }, level = 1, group = "BlockIsLucky", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [984774803] = { "Chance to Block is Unlucky" }, } }, - ["GrantsTawhoasChosenUnique__1"] = { affix = "", "Trigger Level 20 Tawhoa's Chosen when you Attack with", "a Non-Vaal Slam or Strike Skill near an Enemy", statOrder = { 714, 714.1 }, level = 1, group = "GrantsTawhoasChosen", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3131535174] = { "Trigger Level 20 Tawhoa's Chosen when you Attack with", "a Non-Vaal Slam or Strike Skill near an Enemy" }, } }, - ["WarcryAreaOfEffectUnique__1"] = { affix = "", "Warcry Skills have (25-35)% increased Area of Effect", statOrder = { 10575 }, level = 1, group = "WarcryAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2567751411] = { "Warcry Skills have (25-35)% increased Area of Effect" }, } }, - ["WarcryAreaOfEffectUnique__2"] = { affix = "", "Warcry Skills have (15-25)% increased Area of Effect", statOrder = { 10575 }, level = 75, group = "WarcryAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2567751411] = { "Warcry Skills have (15-25)% increased Area of Effect" }, } }, - ["WarcryCorpseExplosionUnique__1"] = { affix = "", "Nearby corpses Explode when you Warcry, dealing (5-10)% of their Life as Physical Damage", statOrder = { 9448 }, level = 1, group = "WarcryCorpseExplosion", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [293071889] = { "Nearby corpses Explode when you Warcry, dealing (5-10)% of their Life as Physical Damage" }, } }, - ["TinctureRemoveToxicityOnKillUnique__1"] = { affix = "", "10% chance to remove 1 Mana Burn on Kill", statOrder = { 5719 }, level = 1, group = "TinctureRemoveToxicityOnKill", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [545355339] = { "10% chance to remove 1 Mana Burn on Kill" }, } }, - ["AdditionalTinctureUnique__1"] = { affix = "", "You can have an additional Tincture active", statOrder = { 5384 }, level = 1, group = "AdditionalTincture", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3806798486] = { "You can have an additional Tincture active" }, } }, - ["ChanceToGainMaximumRageUnique__1"] = { affix = "", "(10-20)% chance that if you would gain Rage on Hit, you instead gain up to your maximum Rage", statOrder = { 6770 }, level = 1, group = "ChanceToGainMaximumRage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2710292678] = { "(10-20)% chance that if you would gain Rage on Hit, you instead gain up to your maximum Rage" }, } }, - ["VillageLocalPhysicalDamagePercent1"] = { affix = "", "(11-15)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "village_runesmithing_enchant", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(11-15)% increased Physical Damage" }, } }, - ["VillageLocalPhysicalDamagePercent2"] = { affix = "", "(16-20)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "village_runesmithing_enchant", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(16-20)% increased Physical Damage" }, } }, - ["VillageLocalPhysicalDamagePercent3"] = { affix = "", "(21-25)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "village_runesmithing_enchant", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(21-25)% increased Physical Damage" }, } }, - ["VillageLocalFireDamage1"] = { affix = "", "Adds (8-10) to (15-18) Fire Damage", statOrder = { 1362 }, level = 1, group = "LocalFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "village_runesmithing_enchant", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (8-10) to (15-18) Fire Damage" }, } }, - ["VillageLocalFireDamage2"] = { affix = "", "Adds (12-17) to (25-29) Fire Damage", statOrder = { 1362 }, level = 1, group = "LocalFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "village_runesmithing_enchant", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (12-17) to (25-29) Fire Damage" }, } }, - ["VillageLocalFireDamage3"] = { affix = "", "Adds (17-24) to (35-41) Fire Damage", statOrder = { 1362 }, level = 1, group = "LocalFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "village_runesmithing_enchant", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (17-24) to (35-41) Fire Damage" }, } }, - ["VillageLocalFireDamageTwoHand1"] = { affix = "", "Adds (14-20) to (29-33) Fire Damage", statOrder = { 1362 }, level = 1, group = "LocalFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "village_runesmithing_enchant", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (14-20) to (29-33) Fire Damage" }, } }, - ["VillageLocalFireDamageTwoHand2"] = { affix = "", "Adds (23-31) to (47-54) Fire Damage", statOrder = { 1362 }, level = 1, group = "LocalFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "village_runesmithing_enchant", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (23-31) to (47-54) Fire Damage" }, } }, - ["VillageLocalFireDamageTwoHand3"] = { affix = "", "Adds (32-44) to (65-76) Fire Damage", statOrder = { 1362 }, level = 1, group = "LocalFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "village_runesmithing_enchant", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (32-44) to (65-76) Fire Damage" }, } }, - ["VillageLocalColdDamage1"] = { affix = "", "Adds (7-9) to (14-16) Cold Damage", statOrder = { 1371 }, level = 1, group = "LocalColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "village_runesmithing_enchant", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (7-9) to (14-16) Cold Damage" }, } }, - ["VillageLocalColdDamage2"] = { affix = "", "Adds (11-15) to (23-26) Cold Damage", statOrder = { 1371 }, level = 1, group = "LocalColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "village_runesmithing_enchant", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (11-15) to (23-26) Cold Damage" }, } }, - ["VillageLocalColdDamage3"] = { affix = "", "Adds (16-21) to (31-37) Cold Damage", statOrder = { 1371 }, level = 1, group = "LocalColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "village_runesmithing_enchant", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (16-21) to (31-37) Cold Damage" }, } }, - ["VillageLocalColdDamageTwoHand1"] = { affix = "", "Adds (12-17) to (26-30) Cold Damage", statOrder = { 1371 }, level = 1, group = "LocalColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "village_runesmithing_enchant", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (12-17) to (26-30) Cold Damage" }, } }, - ["VillageLocalColdDamageTwoHand2"] = { affix = "", "Adds (21-28) to (42-48) Cold Damage", statOrder = { 1371 }, level = 1, group = "LocalColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "village_runesmithing_enchant", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (21-28) to (42-48) Cold Damage" }, } }, - ["VillageLocalColdDamageTwoHand3"] = { affix = "", "Adds (29-40) to (58-68) Cold Damage", statOrder = { 1371 }, level = 1, group = "LocalColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "village_runesmithing_enchant", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (29-40) to (58-68) Cold Damage" }, } }, - ["VillageLocalLightningDamage1"] = { affix = "", "Adds 2 to (25-29) Lightning Damage", statOrder = { 1382 }, level = 1, group = "LocalLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "village_runesmithing_enchant", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds 2 to (25-29) Lightning Damage" }, } }, - ["VillageLocalLightningDamage2"] = { affix = "", "Adds 2 to (41-48) Lightning Damage", statOrder = { 1382 }, level = 1, group = "LocalLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "village_runesmithing_enchant", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds 2 to (41-48) Lightning Damage" }, } }, - ["VillageLocalLightningDamage3"] = { affix = "", "Adds 3 to (57-67) Lightning Damage", statOrder = { 1382 }, level = 1, group = "LocalLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "village_runesmithing_enchant", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds 3 to (57-67) Lightning Damage" }, } }, - ["VillageLocalLightningDamageTwoHand1"] = { affix = "", "Adds 3 to (46-53) Lightning Damage", statOrder = { 1382 }, level = 1, group = "LocalLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "village_runesmithing_enchant", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds 3 to (46-53) Lightning Damage" }, } }, - ["VillageLocalLightningDamageTwoHand2"] = { affix = "", "Adds (4-5) to (76-88) Lightning Damage", statOrder = { 1382 }, level = 1, group = "LocalLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "village_runesmithing_enchant", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (4-5) to (76-88) Lightning Damage" }, } }, - ["VillageLocalLightningDamageTwoHand3"] = { affix = "", "Adds (5-8) to (106-123) Lightning Damage", statOrder = { 1382 }, level = 1, group = "LocalLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "village_runesmithing_enchant", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (5-8) to (106-123) Lightning Damage" }, } }, - ["VillageLocalChaosDamage1"] = { affix = "", "Adds (7-9) to (14-16) Chaos Damage", statOrder = { 1390 }, level = 1, group = "LocalChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "village_runesmithing_enchant", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (7-9) to (14-16) Chaos Damage" }, } }, - ["VillageLocalChaosDamage2"] = { affix = "", "Adds (11-15) to (23-26) Chaos Damage", statOrder = { 1390 }, level = 1, group = "LocalChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "village_runesmithing_enchant", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (11-15) to (23-26) Chaos Damage" }, } }, - ["VillageLocalChaosDamage3"] = { affix = "", "Adds (16-21) to (31-37) Chaos Damage", statOrder = { 1390 }, level = 1, group = "LocalChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "village_runesmithing_enchant", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (16-21) to (31-37) Chaos Damage" }, } }, - ["VillageLocalChaosDamageTwoHand1"] = { affix = "", "Adds (12-17) to (26-30) Chaos Damage", statOrder = { 1390 }, level = 1, group = "LocalChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "village_runesmithing_enchant", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (12-17) to (26-30) Chaos Damage" }, } }, - ["VillageLocalChaosDamageTwoHand2"] = { affix = "", "Adds (21-28) to (42-48) Chaos Damage", statOrder = { 1390 }, level = 1, group = "LocalChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "village_runesmithing_enchant", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (21-28) to (42-48) Chaos Damage" }, } }, - ["VillageLocalChaosDamageTwoHand3"] = { affix = "", "Adds (29-40) to (58-68) Chaos Damage", statOrder = { 1390 }, level = 1, group = "LocalChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "village_runesmithing_enchant", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (29-40) to (58-68) Chaos Damage" }, } }, - ["VillageChanceToIgnite"] = { affix = "", "(10-15)% chance to Ignite", statOrder = { 2026 }, level = 1, group = "ChanceToIgnite", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "(10-15)% chance to Ignite" }, } }, - ["VillageChanceToIgniteTwoHand"] = { affix = "", "(20-25)% chance to Ignite", statOrder = { 2026 }, level = 1, group = "ChanceToIgnite", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "(20-25)% chance to Ignite" }, } }, - ["VillageChanceToFreeze"] = { affix = "", "(10-15)% chance to Freeze", statOrder = { 2029 }, level = 1, group = "ChanceToFreeze", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "elemental", "cold", "ailment" }, tradeHashes = { [44571480] = { "(10-15)% chance to Freeze" }, } }, - ["VillageChanceToFreezeTwoHand"] = { affix = "", "(20-25)% chance to Freeze", statOrder = { 2029 }, level = 1, group = "ChanceToFreeze", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "elemental", "cold", "ailment" }, tradeHashes = { [44571480] = { "(20-25)% chance to Freeze" }, } }, - ["VillageChanceToShock"] = { affix = "", "(10-15)% chance to Shock", statOrder = { 2033 }, level = 1, group = "ChanceToShock", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "elemental", "lightning", "ailment" }, tradeHashes = { [1538773178] = { "(10-15)% chance to Shock" }, } }, - ["VillageChanceToShockTwoHand"] = { affix = "", "(20-25)% chance to Shock", statOrder = { 2033 }, level = 1, group = "ChanceToShock", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "elemental", "lightning", "ailment" }, tradeHashes = { [1538773178] = { "(20-25)% chance to Shock" }, } }, - ["VillageLifeLeechLocalPermyriad"] = { affix = "", "(0.2-0.3)% of Physical Attack Damage Leeched as Life", statOrder = { 1651 }, level = 1, group = "LifeLeechLocalPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "village_runesmithing_enchant", "life", "physical", "attack" }, tradeHashes = { [55876295] = { "(0.2-0.3)% of Physical Attack Damage Leeched as Life" }, } }, - ["VillageManaLeechLocalPermyriad"] = { affix = "", "(0.2-0.3)% of Physical Attack Damage Leeched as Mana", statOrder = { 1701 }, level = 1, group = "ManaLeechLocalPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "village_runesmithing_enchant", "mana", "physical", "attack" }, tradeHashes = { [669069897] = { "(0.2-0.3)% of Physical Attack Damage Leeched as Mana" }, } }, - ["VillageLocalIncreasedAttackSpeed"] = { affix = "", "(3-6)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "attack", "speed" }, tradeHashes = { [210067635] = { "(3-6)% increased Attack Speed" }, } }, - ["VillageLocalCriticalStrikeChance"] = { affix = "", "(5-7)% increased Critical Strike Chance", statOrder = { 1464 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "attack", "critical" }, tradeHashes = { [2375316951] = { "(5-7)% increased Critical Strike Chance" }, } }, - ["VillageIncreasedCastSpeed"] = { affix = "", "(6-10)% increased Cast Speed", statOrder = { 1446 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "caster", "speed" }, tradeHashes = { [2891184298] = { "(6-10)% increased Cast Speed" }, } }, - ["VillageIncreasedCastSpeedTwoHand"] = { affix = "", "(13-18)% increased Cast Speed", statOrder = { 1446 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "caster", "speed" }, tradeHashes = { [2891184298] = { "(13-18)% increased Cast Speed" }, } }, - ["VillageSpellCriticalStrikeChance"] = { affix = "", "(20-25)% increased Spell Critical Strike Chance", statOrder = { 1458 }, level = 1, group = "SpellCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "caster", "critical" }, tradeHashes = { [737908626] = { "(20-25)% increased Spell Critical Strike Chance" }, } }, - ["VillageSpellCriticalStrikeChanceTwoHand"] = { affix = "", "(30-35)% increased Spell Critical Strike Chance", statOrder = { 1458 }, level = 1, group = "SpellCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "caster", "critical" }, tradeHashes = { [737908626] = { "(30-35)% increased Spell Critical Strike Chance" }, } }, - ["VillageWeaponSpellDamage1"] = { affix = "", "(10-19)% increased Spell Damage", statOrder = { 1223 }, level = 1, group = "WeaponSpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "village_runesmithing_enchant", "damage", "caster" }, tradeHashes = { [2974417149] = { "(10-19)% increased Spell Damage" }, } }, - ["VillageWeaponSpellDamage2"] = { affix = "", "(20-29)% increased Spell Damage", statOrder = { 1223 }, level = 1, group = "WeaponSpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "village_runesmithing_enchant", "damage", "caster" }, tradeHashes = { [2974417149] = { "(20-29)% increased Spell Damage" }, } }, - ["VillageWeaponSpellDamage3"] = { affix = "", "(30-39)% increased Spell Damage", statOrder = { 1223 }, level = 1, group = "WeaponSpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "village_runesmithing_enchant", "damage", "caster" }, tradeHashes = { [2974417149] = { "(30-39)% increased Spell Damage" }, } }, - ["VillageWeaponSpellDamageTwoHand1"] = { affix = "", "(15-29)% increased Spell Damage", statOrder = { 1223 }, level = 1, group = "WeaponSpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "village_runesmithing_enchant", "damage", "caster" }, tradeHashes = { [2974417149] = { "(15-29)% increased Spell Damage" }, } }, - ["VillageWeaponSpellDamageTwoHand2"] = { affix = "", "(30-44)% increased Spell Damage", statOrder = { 1223 }, level = 1, group = "WeaponSpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "village_runesmithing_enchant", "damage", "caster" }, tradeHashes = { [2974417149] = { "(30-44)% increased Spell Damage" }, } }, - ["VillageWeaponSpellDamageTwoHand3"] = { affix = "", "(45-59)% increased Spell Damage", statOrder = { 1223 }, level = 1, group = "WeaponSpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "village_runesmithing_enchant", "damage", "caster" }, tradeHashes = { [2974417149] = { "(45-59)% increased Spell Damage" }, } }, - ["VillageMinionDamageOnWeapon1"] = { affix = "", "Minions deal (10-19)% increased Damage", statOrder = { 1973 }, level = 1, group = "MinionDamageOnWeapon", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (10-19)% increased Damage" }, } }, - ["VillageMinionDamageOnWeapon2"] = { affix = "", "Minions deal (20-29)% increased Damage", statOrder = { 1973 }, level = 1, group = "MinionDamageOnWeapon", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (20-29)% increased Damage" }, } }, - ["VillageMinionDamageOnWeapon3"] = { affix = "", "Minions deal (30-39)% increased Damage", statOrder = { 1973 }, level = 1, group = "MinionDamageOnWeapon", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (30-39)% increased Damage" }, } }, - ["VillageMinionDamageOnTwoHandWeapon1"] = { affix = "", "Minions deal (15-29)% increased Damage", statOrder = { 1973 }, level = 1, group = "MinionDamageOnWeapon", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (15-29)% increased Damage" }, } }, - ["VillageMinionDamageOnTwoHandWeapon2"] = { affix = "", "Minions deal (30-44)% increased Damage", statOrder = { 1973 }, level = 1, group = "MinionDamageOnWeapon", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (30-44)% increased Damage" }, } }, - ["VillageMinionDamageOnTwoHandWeapon3"] = { affix = "", "Minions deal (45-59)% increased Damage", statOrder = { 1973 }, level = 1, group = "MinionDamageOnWeapon", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (45-59)% increased Damage" }, } }, - ["VillageGlobalIncreaseFireSpellSkillGemLevel"] = { affix = "", "+1 to Level of all Fire Spell Skill Gems", statOrder = { 1610 }, level = 1, group = "GlobalIncreaseFireSpellSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "elemental", "fire", "caster", "gem" }, tradeHashes = { [591105508] = { "+1 to Level of all Fire Spell Skill Gems" }, } }, - ["VillageGlobalIncreaseColdSpellSkillGemLevel"] = { affix = "", "+1 to Level of all Cold Spell Skill Gems", statOrder = { 1611 }, level = 1, group = "GlobalIncreaseColdSpellSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "elemental", "cold", "caster", "gem" }, tradeHashes = { [2254480358] = { "+1 to Level of all Cold Spell Skill Gems" }, } }, - ["VillageGlobalIncreaseLightningSpellSkillGemLevel"] = { affix = "", "+1 to Level of all Lightning Spell Skill Gems", statOrder = { 1612 }, level = 1, group = "GlobalIncreaseLightningSpellSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "elemental", "lightning", "caster", "gem" }, tradeHashes = { [1545858329] = { "+1 to Level of all Lightning Spell Skill Gems" }, } }, - ["VillageGlobalIncreaseChaosSpellSkillGemLevel"] = { affix = "", "+1 to Level of all Chaos Spell Skill Gems", statOrder = { 1613 }, level = 1, group = "GlobalIncreaseChaosSpellSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "chaos", "caster", "gem" }, tradeHashes = { [4226189338] = { "+1 to Level of all Chaos Spell Skill Gems" }, } }, - ["VillageGlobalIncreasePhysicalSpellSkillGemLevel"] = { affix = "", "+1 to Level of all Physical Spell Skill Gems", statOrder = { 1609 }, level = 1, group = "GlobalIncreasePhysicalSpellSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "physical", "caster", "gem" }, tradeHashes = { [1600707273] = { "+1 to Level of all Physical Spell Skill Gems" }, } }, - ["VillageGlobalIncreaseMinionSpellSkillGemLevel"] = { affix = "", "+1 to Level of all Minion Skill Gems", statOrder = { 1614 }, level = 1, group = "GlobalIncreaseMinionSpellSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "minion", "gem" }, tradeHashes = { [2162097452] = { "+1 to Level of all Minion Skill Gems" }, } }, - ["VillageLocalStunThresholdReduction"] = { affix = "", "(21-25)% reduced Enemy Stun Threshold with this Weapon", statOrder = { 2497 }, level = 1, group = "LocalStunThresholdReduction", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "attack" }, tradeHashes = { [832404842] = { "(21-25)% reduced Enemy Stun Threshold with this Weapon" }, } }, - ["VillageAdditionalProjectiles"] = { affix = "", "Skills fire an additional Projectile", statOrder = { 1792 }, level = 1, group = "AdditionalProjectiles", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant" }, tradeHashes = { [74338099] = { "Skills fire an additional Projectile" }, } }, - ["VillageLocalIncreaseSocketedMeleeGemLevel"] = { affix = "", "+2 to Level of Socketed Melee Gems", statOrder = { 179 }, level = 1, group = "LocalIncreaseSocketedMeleeGemLevel", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "attack", "gem" }, tradeHashes = { [829382474] = { "+2 to Level of Socketed Melee Gems" }, } }, - ["VillageAdditionalVaalSoulOnKill"] = { affix = "", "100% chance to gain an additional Vaal Soul on Kill", statOrder = { 3104 }, level = 1, group = "AdditionalVaalSoulOnKill", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "vaal" }, tradeHashes = { [1962922582] = { "100% chance to gain an additional Vaal Soul on Kill" }, } }, - ["VillageLocalChanceToPoisonOnHit"] = { affix = "", "10% chance to Poison on Hit", statOrder = { 8003 }, level = 1, group = "LocalChanceToPoisonOnHit", weightKey = { }, weightVal = { }, modTags = { "poison", "village_runesmithing_enchant", "chaos", "attack", "ailment" }, tradeHashes = { [3885634897] = { "10% chance to Poison on Hit" }, } }, - ["VillageLocalChanceToBleed"] = { affix = "", "10% chance to cause Bleeding on Hit", statOrder = { 2483 }, level = 1, group = "LocalChanceToBleed", weightKey = { }, weightVal = { }, modTags = { "bleed", "village_runesmithing_enchant", "physical", "attack", "ailment" }, tradeHashes = { [1519615863] = { "10% chance to cause Bleeding on Hit" }, } }, - ["VillageMaximumLifeOnKillPercent"] = { affix = "", "Recover (1-3)% of Life on Kill", statOrder = { 1749 }, level = 1, group = "MaximumLifeOnKillPercent", weightKey = { }, weightVal = { }, modTags = { "resource", "village_runesmithing_enchant", "life" }, tradeHashes = { [2023107756] = { "Recover (1-3)% of Life on Kill" }, } }, - ["VillageMaximumManaOnKillPercent"] = { affix = "", "Recover (1-3)% of Mana on Kill", statOrder = { 1751 }, level = 1, group = "MaximumManaOnKillPercent", weightKey = { }, weightVal = { }, modTags = { "resource", "village_runesmithing_enchant", "mana" }, tradeHashes = { [1030153674] = { "Recover (1-3)% of Mana on Kill" }, } }, - ["VillageCoverInAshOnHit"] = { affix = "", "(10-15)% chance to Cover Enemies in Ash on Hit", statOrder = { 5893 }, level = 1, group = "CoverInAshOnHit", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant" }, tradeHashes = { [324460247] = { "(10-15)% chance to Cover Enemies in Ash on Hit" }, } }, - ["VillageCoverInFrostOnHit"] = { affix = "", "(10-15)% chance to Cover Enemies in Frost on Hit", statOrder = { 5897 }, level = 1, group = "CoverInFrostOnHit", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant" }, tradeHashes = { [3235270673] = { "(10-15)% chance to Cover Enemies in Frost on Hit" }, } }, - ["VillageElusiveOnCriticalStrike"] = { affix = "", "Gain Elusive on Critical Strike", statOrder = { 4281 }, level = 1, group = "ElusiveOnCriticalStrike", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "critical" }, tradeHashes = { [2896192589] = { "Gain Elusive on Critical Strike" }, } }, - ["VillageFortifyOnMeleeHit"] = { affix = "", "Melee Hits Fortify", statOrder = { 2264 }, level = 1, group = "FortifyOnMeleeHit", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "attack" }, tradeHashes = { [1166417447] = { "Melee Hits Fortify" }, } }, - ["VillageLocalNoVaalSoulGainPrevention"] = { affix = "", "Socketed Vaal Skills do not apply Soul Gain Prevention", statOrder = { 578 }, level = 1, group = "LocalVaalSoulGainPreventionVillage", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "vaal" }, tradeHashes = { [1292359483] = { "Socketed Vaal Skills do not apply Soul Gain Prevention" }, } }, - ["VillageTriggerSocketedFireSpellOnHit"] = { affix = "", "Trigger a Socketed Fire Spell on Hit, with a 0.25 second Cooldown", statOrder = { 8132 }, level = 1, group = "TriggerSocketedSpellOnHit", weightKey = { }, weightVal = { }, modTags = { "skill", "village_runesmithing_enchant", "caster", "gem" }, tradeHashes = { [3676763995] = { "Trigger a Socketed Fire Spell on Hit, with a 0.25 second Cooldown" }, } }, - ["VillageLocalElementalDamageNoPhysical"] = { affix = "", "No Physical Damage", "Has (50-100)% increased Elemental Damage", statOrder = { 1232, 7928 }, level = 1, group = "LocalElementalDamageNoPhysical", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "elemental" }, tradeHashes = { [385756972] = { "No Physical Damage" }, [692420067] = { "Has (50-100)% increased Elemental Damage" }, } }, - ["VillageLocalPhysicalDamageAddedAsEachElement"] = { affix = "", "Gain (30-50)% of Weapon Physical Damage as Extra Damage of each Element", statOrder = { 4262 }, level = 1, group = "LocalPhysicalDamageAddedAsEachElement", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "village_runesmithing_enchant", "damage", "physical", "elemental", "attack" }, tradeHashes = { [1038949719] = { "" }, [3913265126] = { "Gain (30-50)% of Weapon Physical Damage as Extra Damage of each Element" }, } }, - ["VillageTormentHauntedItem"] = { affix = "", "Haunted by Tormented Spirits", statOrder = { 7307 }, level = 1, group = "TormentHauntedItem", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant" }, tradeHashes = { [1076392774] = { "Haunted by Tormented Spirits" }, } }, - ["VillageSpellCorrosionOnHitChance"] = { affix = "", "(10-20)% chance to inflict Corrosion on Hit with Spells", statOrder = { 10192 }, level = 1, group = "SpellCorrosionOnHitChance", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "caster" }, tradeHashes = { [1960314688] = { "(10-20)% chance to inflict Corrosion on Hit with Spells" }, } }, - ["VillageAttackFireDamageMaximumMana"] = { affix = "", "Adds 5% of your Maximum Mana as Fire Damage to Attacks with this Weapon", statOrder = { 4922 }, level = 1, group = "AttackFireDamageMaximumMana", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "village_runesmithing_enchant", "damage", "elemental", "fire", "attack" }, tradeHashes = { [4107994326] = { "Adds 5% of your Maximum Mana as Fire Damage to Attacks with this Weapon" }, } }, - ["VillageAttackColdDamageEnergyShield"] = { affix = "", "Adds 5% of your Maximum Energy Shield as Cold Damage to Attacks with this Weapon", statOrder = { 4921 }, level = 1, group = "AttackColdDamageEnergyShield", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "village_runesmithing_enchant", "damage", "elemental", "cold", "attack" }, tradeHashes = { [2566313732] = { "Adds 5% of your Maximum Energy Shield as Cold Damage to Attacks with this Weapon" }, } }, - ["VillageTemporalChainsOnHit"] = { affix = "", "Curse Enemies with Temporal Chains on Hit", statOrder = { 2519 }, level = 1, group = "TemporalChainsOnHit", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "caster", "curse" }, tradeHashes = { [4139135963] = { "Curse Enemies with Temporal Chains on Hit" }, } }, - ["VillagePunishmentOnHit"] = { affix = "", "Curse Enemies with Punishment on Hit", statOrder = { 6002 }, level = 1, group = "PunishmentOnHit", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "caster", "curse" }, tradeHashes = { [2950697759] = { "Curse Enemies with Punishment on Hit" }, } }, - ["VillageEnfeebleOnHit"] = { affix = "", "Curse Enemies with Enfeeble on Hit", statOrder = { 2513 }, level = 1, group = "EnfeebleOnHit", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "caster", "curse" }, tradeHashes = { [1516661546] = { "Curse Enemies with Enfeeble on Hit" }, } }, - ["VillageAttackConvertToFire"] = { affix = "", "(20-30)% of Attack Physical Damage Converted to Fire Damage", statOrder = { 4879 }, level = 1, group = "AttackConvertToFire", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant" }, tradeHashes = { [796222013] = { "(20-30)% of Attack Physical Damage Converted to Fire Damage" }, } }, - ["VillageAttackConvertToCold"] = { affix = "", "(20-30)% of Attack Physical Damage Converted to Cold Damage", statOrder = { 4878 }, level = 1, group = "AttackConvertToCold", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant" }, tradeHashes = { [2186742030] = { "(20-30)% of Attack Physical Damage Converted to Cold Damage" }, } }, - ["VillageAttackConvertToLightning"] = { affix = "", "(20-30)% of Attack Physical Damage Converted to Lightning Damage", statOrder = { 4880 }, level = 1, group = "AttackConvertToLightning", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant" }, tradeHashes = { [1188616832] = { "(20-30)% of Attack Physical Damage Converted to Lightning Damage" }, } }, - ["VillageMaximumShock"] = { affix = "", "+10% to Maximum Effect of Shock", statOrder = { 10012 }, level = 1, group = "MaximumShock", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant" }, tradeHashes = { [4264358613] = { "+10% to Maximum Effect of Shock" }, } }, - ["VillageSpellAddedChaosDamageMaximumLife"] = { affix = "", "Spells deal added Chaos Damage equal to 4% of your maximum Life", statOrder = { 4547 }, level = 1, group = "SpellAddedChaosDamageMaximumLife", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant" }, tradeHashes = { [3175648755] = { "Spells deal added Chaos Damage equal to 4% of your maximum Life" }, } }, - ["VillageRageOnMeleeHit"] = { affix = "", "Gain (2-4) Rage on Melee Hit", statOrder = { 6845 }, level = 1, group = "RageOnMeleeHit", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant" }, tradeHashes = { [2709367754] = { "Gain (2-4) Rage on Melee Hit" }, } }, - ["VillageRageEffect"] = { affix = "", "(7-10)% increased Rage Effect", statOrder = { 9795 }, level = 1, group = "RageEffect", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant" }, tradeHashes = { [2194261591] = { "(7-10)% increased Rage Effect" }, } }, - ["VillageAttacksCostLife"] = { affix = "", "Attacks Cost Life instead of Mana", statOrder = { 10832 }, level = 1, group = "AttacksHaveBloodMagic", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "attack" }, tradeHashes = { [3358745905] = { "Attacks Cost Life instead of Mana" }, } }, - ["VillageAdditionalProjectilesRandomDirection"] = { affix = "", "Skills fire 2 additional Projectiles", "Projectiles are fired in random directions", statOrder = { 1792, 9828 }, level = 1, group = "AdditionalProjectilesRandomDirection", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant" }, tradeHashes = { [4159765624] = { "Projectiles are fired in random directions" }, [74338099] = { "Skills fire 2 additional Projectiles" }, } }, - ["VillageAdditionalCurseOnEnemies"] = { affix = "", "You can apply an additional Curse", statOrder = { 2168 }, level = 1, group = "AdditionalCurseOnEnemies", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "caster", "curse" }, tradeHashes = { [30642521] = { "You can apply an additional Curse" }, } }, - ["VillagePointBlank"] = { affix = "", "Point Blank", statOrder = { 10802 }, level = 1, group = "PointBlank", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "damage", "attack" }, tradeHashes = { [2896346114] = { "Point Blank" }, } }, - ["VillagePlayerFarShot"] = { affix = "", "Far Shot", statOrder = { 10828 }, level = 1, group = "PlayerFarShot", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant" }, tradeHashes = { [2483362276] = { "Far Shot" }, } }, - ["VillageIronGrip"] = { affix = "", "Iron Grip", statOrder = { 10817 }, level = 1, group = "IronGrip", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "damage", "attack" }, tradeHashes = { [573347393] = { "Iron Grip" }, } }, - ["VillageIronWill"] = { affix = "", "Iron Will", statOrder = { 10830 }, level = 1, group = "IronWill", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "caster" }, tradeHashes = { [4092697134] = { "Iron Will" }, } }, - ["VillageGainMagicMonsterModsOnKill"] = { affix = "", "(20-25)% chance when you Kill a Magic Monster to gain its Modifiers for 60 seconds", statOrder = { 6768 }, level = 1, group = "GainMagicMonsterModsOnKill", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant" }, tradeHashes = { [3976991498] = { "(20-25)% chance when you Kill a Magic Monster to gain its Modifiers for 60 seconds" }, } }, - ["VillageLocalLifeLeechIsInstant"] = { affix = "", "Life Leech from Hits with this Weapon is instant", statOrder = { 2537 }, level = 1, group = "LocalLifeLeechIsInstant", weightKey = { }, weightVal = { }, modTags = { "resource", "village_runesmithing_enchant", "life" }, tradeHashes = { [1765389199] = { "Life Leech from Hits with this Weapon is instant" }, } }, - ["VillageLocalManaLeechIsInstant"] = { affix = "", "Mana Leech from Hits with this Weapon is Instant", statOrder = { 7991 }, level = 1, group = "LocalManaLeechIsInstant", weightKey = { }, weightVal = { }, modTags = { "resource", "village_runesmithing_enchant", "mana" }, tradeHashes = { [3287200156] = { "Mana Leech from Hits with this Weapon is Instant" }, } }, - ["VillageESLeechFromAttacksNotRemovedOnFullES"] = { affix = "", "Energy Shield Leech Effects from Attacks are not removed at Full Energy Shield", statOrder = { 6437 }, level = 1, group = "ESLeechFromAttacksNotRemovedOnFullES", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "defences", "energy_shield" }, tradeHashes = { [1004885987] = { "Energy Shield Leech Effects from Attacks are not removed at Full Energy Shield" }, } }, - ["VillageReturningProjectiles"] = { affix = "", "Attack Projectiles Return to you", statOrder = { 2824 }, level = 1, group = "ReturningAttackProjectiles", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "attack" }, tradeHashes = { [1658124062] = { "Attack Projectiles Return to you" }, } }, - ["VillageLocalChanceForPoisonDamage"] = { affix = "", "(10-20)% chance for Poisons inflicted with this Weapon to deal 100% more Damage", statOrder = { 7872 }, level = 1, group = "LocalChanceForPoisonDamage100FinalInflictedWithThisWeapon", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "poison", "village_runesmithing_enchant", "damage", "chaos", "attack", "ailment" }, tradeHashes = { [2523146878] = { "(10-20)% chance for Poisons inflicted with this Weapon to deal 100% more Damage" }, } }, - ["VillageLocalChanceForBleedingDamage"] = { affix = "", "(10-20)% chance for Bleeding inflicted with this Weapon to deal 100% more Damage", statOrder = { 7871 }, level = 1, group = "LocalChanceForBleedingDamage100FinalInflictedWithThisWeapon", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "bleed", "village_runesmithing_enchant", "damage", "physical", "attack", "ailment" }, tradeHashes = { [1560880986] = { "(10-20)% chance for Bleeding inflicted with this Weapon to deal 100% more Damage" }, } }, - ["VillageFireExposureOnHit"] = { affix = "", "(15-25)% chance to inflict Fire Exposure on Hit", statOrder = { 5027 }, level = 1, group = "FireExposureOnHit", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant" }, tradeHashes = { [3602667353] = { "(15-25)% chance to inflict Fire Exposure on Hit" }, } }, - ["VillageColdExposureOnHit"] = { affix = "", "(15-25)% chance to inflict Cold Exposure on Hit", statOrder = { 5026 }, level = 1, group = "ColdExposureOnHit", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant" }, tradeHashes = { [2630708439] = { "(15-25)% chance to inflict Cold Exposure on Hit" }, } }, - ["VillageLightningExposureOnHit"] = { affix = "", "(15-25)% chance to inflict Lightning Exposure on Hit", statOrder = { 5028 }, level = 1, group = "LightningExposureOnHit", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant" }, tradeHashes = { [4265906483] = { "(15-25)% chance to inflict Lightning Exposure on Hit" }, } }, - ["VillageExertedAttackDamage"] = { affix = "", "Exerted Attacks deal (80-100)% increased Damage", statOrder = { 6357 }, level = 1, group = "ExertedAttackDamage", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "damage", "attack" }, tradeHashes = { [1569101201] = { "Exerted Attacks deal (80-100)% increased Damage" }, } }, - ["VillageEnemiesDestroyedOnKill"] = { affix = "", "Enemies Killed by your Hits are destroyed", statOrder = { 6376 }, level = 1, group = "EnemiesDestroyedOnKill", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant" }, tradeHashes = { [2970902024] = { "Enemies Killed by your Hits are destroyed" }, } }, - ["VillageChanceToImpaleWithSpells"] = { affix = "", "(10-15)% chance to Impale on Spell Hit", statOrder = { 10193 }, level = 1, group = "ChanceToImpaleWithSpells", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "physical", "caster" }, tradeHashes = { [3094222195] = { "(10-15)% chance to Impale on Spell Hit" }, } }, - ["VillageBlockWhileDualWielding"] = { affix = "", "+(6-8)% Chance to Block Attack Damage while Dual Wielding", statOrder = { 1162 }, level = 1, group = "BlockWhileDualWielding", weightKey = { }, weightVal = { }, modTags = { "block", "village_runesmithing_enchant" }, tradeHashes = { [2166444903] = { "+(6-8)% Chance to Block Attack Damage while Dual Wielding" }, } }, - ["VillageAggravateBleedOnAttack"] = { affix = "", "(10-20)% chance to Aggravate Bleeding on targets you Hit with Attacks", statOrder = { 4608 }, level = 1, group = "AggravateBleedOnAttack", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant" }, tradeHashes = { [2705185939] = { "(10-20)% chance to Aggravate Bleeding on targets you Hit with Attacks" }, } }, - ["VillagePoisonDuration"] = { affix = "", "(15-25)% increased Poison Duration", statOrder = { 3170 }, level = 1, group = "PoisonDuration", weightKey = { }, weightVal = { }, modTags = { "poison", "village_runesmithing_enchant", "chaos", "ailment" }, tradeHashes = { [2011656677] = { "(15-25)% increased Poison Duration" }, } }, - ["VillageSpellChanceToBlind"] = { affix = "", "(10-20)% chance to Blind Enemies on Hit with Spells", statOrder = { 10188 }, level = 1, group = "SpellChanceToBlind", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant" }, tradeHashes = { [1012291104] = { "(10-20)% chance to Blind Enemies on Hit with Spells" }, } }, - ["VillageWardRestoreChance"] = { affix = "", "(5-10)% chance to Restore your Ward on Hit", statOrder = { 9927 }, level = 1, group = "WardRestoreChance", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant" }, tradeHashes = { [1925110785] = { "(5-10)% chance to Restore your Ward on Hit" }, } }, - ["VillageMarkedEnemyNoBlockSuppress"] = { affix = "", "Your Hits against Marked Enemy cannot be Blocked or Suppressed", statOrder = { 7158 }, level = 1, group = "MarkedEnemyNoBlockSuppress", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant" }, tradeHashes = { [3548778396] = { "Your Hits against Marked Enemy cannot be Blocked or Suppressed" }, } }, - ["VillageArcaneSurgeOnLifeSpent"] = { affix = "", "Gain Arcane Surge after Spending a total of 200 Life", statOrder = { 6725 }, level = 1, group = "ArcaneSurgeOnLifeSpent", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant" }, tradeHashes = { [3204560615] = { "Gain Arcane Surge after Spending a total of 200 Life" }, } }, - ["VillageOnslaughtOnManaSpent"] = { affix = "", "Gain Onslaught after Spending a total of 200 Mana", statOrder = { 6785 }, level = 1, group = "OnslaughtOnManaSpent", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant" }, tradeHashes = { [351890141] = { "Gain Onslaught after Spending a total of 200 Mana" }, } }, - ["VillageCriticalAilmentDamageOverTimeMultiplier"] = { affix = "", "+(15-25)% to Damage over Time Multiplier for Ailments from Critical Strikes", statOrder = { 1244 }, level = 1, group = "CriticalAilmentDamageOverTimeMultiplier", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant" }, tradeHashes = { [1781630546] = { "+(15-25)% to Damage over Time Multiplier for Ailments from Critical Strikes" }, } }, - ["VillageWeaponIgnoreElementalResistance"] = { affix = "", "Attack Critical Strikes ignore Enemy Monster Elemental Resistances", statOrder = { 4846 }, level = 1, group = "AttackCriticalStrikesIgnoreElementalResistances", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant" }, tradeHashes = { [2170876738] = { "Attack Critical Strikes ignore Enemy Monster Elemental Resistances" }, } }, - ["VillageLocalMeleeWeaponRange"] = { affix = "", "+2 metres to Weapon Range", statOrder = { 2745 }, level = 1, group = "LocalMeleeWeaponRange", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "attack" }, tradeHashes = { [350598685] = { "+2 metres to Weapon Range" }, } }, - ["VillageChaosDamageLuck"] = { affix = "", "Chaos Damage with Hits is Lucky", statOrder = { 5731 }, level = 1, group = "ChaosDamageLuck", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant" }, tradeHashes = { [2678511347] = { "Chaos Damage with Hits is Lucky" }, } }, - ["VillageGlobalIncreaseSpellSkillGemLevel"] = { affix = "", "+2 to Level of all Spell Skill Gems", statOrder = { 1608 }, level = 1, group = "GlobalIncreaseSpellSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "caster", "gem" }, tradeHashes = { [124131830] = { "+2 to Level of all Spell Skill Gems" }, } }, - ["VillageExplosionConflux"] = { affix = "", "Gain Flaming, Icy or Crackling Runesurge at random for 4 seconds every 10 seconds", statOrder = { 6743 }, level = 1, group = "ExplosionConflux", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant" }, tradeHashes = { [3581844317] = { "Gain Flaming, Icy or Crackling Runesurge at random for 4 seconds every 10 seconds" }, } }, - ["VillageKeystoneBattlemage"] = { affix = "", "Battlemage", statOrder = { 10772 }, level = 1, group = "KeystoneBattlemage", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant" }, tradeHashes = { [448903047] = { "Battlemage" }, } }, - ["VillageElementalDamagePercentAddedAsChaos"] = { affix = "", "Gain (7-10)% of Elemental Damage as Extra Chaos Damage", statOrder = { 1942 }, level = 1, group = "ElementalDamagePercentAddedAsChaos", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "chaos_damage", "village_runesmithing_enchant", "damage", "elemental", "chaos" }, tradeHashes = { [3495544060] = { "Gain (7-10)% of Elemental Damage as Extra Chaos Damage" }, } }, - ["VillageMeleeAttacksUsableWithoutLife"] = { affix = "", "Insufficient Life doesn't prevent your Melee Attacks", statOrder = { 9186 }, level = 1, group = "MeleeAttacksUsableWithoutLife", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant" }, tradeHashes = { [2461005744] = { "Insufficient Life doesn't prevent your Melee Attacks" }, } }, - ["VillageEnduranceChargeOnKillChance"] = { affix = "", "(5-10)% chance to gain an Endurance Charge on Kill", statOrder = { 2629 }, level = 1, group = "EnduranceChargeOnKillChance", weightKey = { }, weightVal = { }, modTags = { "endurance_charge", "village_runesmithing_enchant" }, tradeHashes = { [1054322244] = { "(5-10)% chance to gain an Endurance Charge on Kill" }, } }, - ["VillageFrenzyChargeOnKillChance"] = { affix = "", "(5-10)% chance to gain a Frenzy Charge on Kill", statOrder = { 2631 }, level = 1, group = "FrenzyChargeOnKillChance", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge", "village_runesmithing_enchant" }, tradeHashes = { [1826802197] = { "(5-10)% chance to gain a Frenzy Charge on Kill" }, } }, - ["VillagePowerChargeOnKillChance"] = { affix = "", "(5-10)% chance to gain a Power Charge on Kill", statOrder = { 2633 }, level = 1, group = "PowerChargeOnKillChance", weightKey = { }, weightVal = { }, modTags = { "power_charge", "village_runesmithing_enchant" }, tradeHashes = { [2483795307] = { "(5-10)% chance to gain a Power Charge on Kill" }, } }, - ["VillageUnholyMightOnCrit"] = { affix = "", "Gain Unholy Might for 4 seconds on Critical Strike", statOrder = { 2917 }, level = 1, group = "UnholyMightOnCrit", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "critical" }, tradeHashes = { [2959020308] = { "Gain Unholy Might for 4 seconds on Critical Strike" }, } }, - ["VillageMaximumGolems"] = { affix = "", "+1 to maximum number of Summoned Golems", statOrder = { 3690 }, level = 1, group = "MaximumGolems", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "minion" }, tradeHashes = { [2821079699] = { "+1 to maximum number of Summoned Golems" }, } }, - ["VillageIncreasedGold"] = { affix = "", "5% increased Quantity of Gold Dropped by Slain Enemies", statOrder = { 7304 }, level = 1, group = "IncreasedGold", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant" }, tradeHashes = { [253956903] = { "5% increased Quantity of Gold Dropped by Slain Enemies" }, } }, - ["VillageMeleeSplash"] = { affix = "", "Melee Strike Skills deal Splash Damage to surrounding targets", statOrder = { 1168 }, level = 1, group = "MeleeSplash", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "attack" }, tradeHashes = { [3675300253] = { "Melee Strike Skills deal Splash Damage to surrounding targets" }, } }, - ["VillageDamageCannotBeReflected"] = { affix = "", "Damage cannot be Reflected", statOrder = { 6021 }, level = 1, group = "DamageCannotBeReflected", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant" }, tradeHashes = { [2670993553] = { "Damage cannot be Reflected" }, } }, - ["VillageConvertColdToChaos"] = { affix = "", "(20-25)% of Cold Damage Converted to Chaos Damage", statOrder = { 1969 }, level = 1, group = "ConvertColdToChaos", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "chaos_damage", "village_runesmithing_enchant", "damage", "elemental", "cold", "chaos" }, tradeHashes = { [2379258771] = { "(20-25)% of Cold Damage Converted to Chaos Damage" }, } }, - ["VillageAlternatingShrineBuff"] = { affix = "", "Gain a random shrine buff every 10 seconds", statOrder = { 6819 }, level = 1, group = "AlternatingShrineBuff", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant" }, tradeHashes = { [2284520710] = { "Gain a random shrine buff every 10 seconds" }, } }, - ["VillageSummonPhantasmOnCorpseConsume"] = { affix = "", "Trigger Level 20 Summon Phantasm Skill when you Consume a corpse", statOrder = { 818 }, level = 1, group = "TriggerSummonPhantasmOnCorpseConsume", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant" }, tradeHashes = { [3252082366] = { "Trigger Level 20 Summon Phantasm Skill when you Consume a corpse" }, } }, - ["VillageMinionDamageAlsoAffectsYou"] = { affix = "", "Increases and Reductions to Minion Damage also affect you at 150% of their value", statOrder = { 3751 }, level = 1, group = "MinionDamageAlsoAffectsYouAt150%", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "damage", "minion" }, tradeHashes = { [1433144735] = { "Increases and Reductions to Minion Damage also affect you at 150% of their value" }, } }, - ["VillageFireDamagePerResistanceAbove75"] = { affix = "", "(7-10)% increased Fire Damage per 1% Fire Resistance above 75%", statOrder = { 6566 }, level = 1, group = "FireDamagePerResistanceAbove75", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "village_runesmithing_enchant", "damage", "elemental", "fire" }, tradeHashes = { [3013187834] = { "(7-10)% increased Fire Damage per 1% Fire Resistance above 75%" }, } }, - ["VillageSuppressChanceEmptyOffhand"] = { affix = "", "+(50-75)% chance to Suppress Spell Damage while your Off Hand is empty", statOrder = { 10180 }, level = 1, group = "ChanceToDodgeWhileOffhandIsEmpty", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant" }, tradeHashes = { [2076926581] = { "+(50-75)% chance to Suppress Spell Damage while your Off Hand is empty" }, } }, - ["VillageShepherdOfSouls"] = { affix = "", "Shepherd of Souls", statOrder = { 10814 }, level = 1, group = "ShepherdOfSouls", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "damage", "vaal" }, tradeHashes = { [2038577923] = { "Shepherd of Souls" }, } }, - ["VillageFireBurstOnHit"] = { affix = "", "Cast Level 10 Fire Burst on Hit", statOrder = { 7889 }, level = 1, group = "FireBurstOnHitLevel", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant" }, tradeHashes = { [1606553462] = { "Cast Level 10 Fire Burst on Hit" }, } }, - ["VillageBurningEnemiesExplode"] = { affix = "", "Burning Enemies you kill have a 10% chance to Explode, dealing a tenth of their maximum Life as Fire Damage", statOrder = { 6513 }, level = 1, group = "BurningEnemiesExplode", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant" }, tradeHashes = { [1617268696] = { "Burning Enemies you kill have a 10% chance to Explode, dealing a tenth of their maximum Life as Fire Damage" }, } }, - ["VillageLightningStrikesOnCrit"] = { affix = "", "Trigger Level 5 Lightning Bolt when you deal a Critical Strike", statOrder = { 772 }, level = 1, group = "LightningStrikesOnCrit", weightKey = { }, weightVal = { }, modTags = { "skill", "village_runesmithing_enchant", "critical" }, tradeHashes = { [3241494164] = { "Trigger Level 5 Lightning Bolt when you deal a Critical Strike" }, } }, - ["VillageShockedGroundOnHit"] = { affix = "", "Trigger Level 10 Shock Ground on Hit", statOrder = { 770 }, level = 1, group = "ShockedGroundOnHitSkill", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant" }, tradeHashes = { [2845525306] = { "Trigger Level 10 Shock Ground on Hit" }, } }, - ["VillageShockNearbyEnemyOnShockedKill"] = { affix = "", "When you Kill a Shocked Enemy, inflict an equivalent Shock on each nearby Enemy", statOrder = { 2814 }, level = 1, group = "ShockNearbyEnemyOnShockedKill", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "elemental", "lightning", "ailment" }, tradeHashes = { [3462132936] = { "When you Kill a Shocked Enemy, inflict an equivalent Shock on each nearby Enemy" }, } }, - ["VillageIgniteNearbyEnemyOnIgnitedKill"] = { affix = "", "When you Kill an Ignited Enemy, inflict an equivalent Ignite on each nearby Enemy", statOrder = { 2815 }, level = 1, group = "IgniteNearbyEnemyOnIgnitedKill", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "elemental", "fire", "ailment" }, tradeHashes = { [2638352064] = { "When you Kill an Ignited Enemy, inflict an equivalent Ignite on each nearby Enemy" }, } }, - ["VillageSummonWolfOnKillOld"] = { affix = "", "Trigger Level 10 Summon Spectral Wolf on Kill", statOrder = { 791 }, level = 1, group = "SummonWolfOnKillOld", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "minion" }, tradeHashes = { [1468606528] = { "Trigger Level 10 Summon Spectral Wolf on Kill" }, } }, - ["VillageCullingStrike"] = { affix = "", "Culling Strike", statOrder = { 2039 }, level = 1, group = "CullingStrike", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant" }, tradeHashes = { [2524254339] = { "Culling Strike" }, } }, - ["VillageConsumeCorpseLifeRecovery"] = { affix = "", "Every 3 seconds, Consume a nearby Corpse to Recover (7-10)% of Life", statOrder = { 5863 }, level = 1, group = "ConsumeCorpseLifeRecovery", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant" }, tradeHashes = { [3764198549] = { "Every 3 seconds, Consume a nearby Corpse to Recover (7-10)% of Life" }, } }, - ["VillageSummonRagingSpiritOnKill"] = { affix = "", "25% chance to Trigger Level 10 Summon Raging Spirit on Kill", statOrder = { 784 }, level = 1, group = "SummonRagingSpiritOnKill", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "minion" }, tradeHashes = { [3751996449] = { "25% chance to Trigger Level 10 Summon Raging Spirit on Kill" }, } }, - ["VillageMinionBurningCloudOnDeath"] = { affix = "", "Your Minions spread Burning Ground on Death, dealing 10% of their maximum Life as Fire Damage per second", statOrder = { 9305 }, level = 1, group = "MinionBurningCloudOnDeath", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "village_runesmithing_enchant", "damage", "elemental", "fire", "minion" }, tradeHashes = { [4099989681] = { "Your Minions spread Burning Ground on Death, dealing 10% of their maximum Life as Fire Damage per second" }, } }, - ["VillageAuraAddedLightningDamagePerBlueSocket"] = { affix = "", "You and Nearby Allies have 1 to (8-12) added Lightning Damage per Blue Socket", statOrder = { 3008 }, level = 1, group = "AuraAddedLightningDamagePerBlueSocket", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "village_runesmithing_enchant", "damage", "elemental", "lightning" }, tradeHashes = { [3726585224] = { "You and Nearby Allies have 1 to (8-12) added Lightning Damage per Blue Socket" }, } }, - ["VillageStalkingPustuleOnKill"] = { affix = "", "Trigger Level 1 Stalking Pustule on Kill", statOrder = { 817 }, level = 1, group = "StalkingPustuleOnKill", weightKey = { }, weightVal = { }, modTags = { "skill", "village_runesmithing_enchant" }, tradeHashes = { [1662669872] = { "Trigger Level 1 Stalking Pustule on Kill" }, } }, - ["VillageGrantsEnvy"] = { affix = "", "Grants Level 1 Envy Skill", statOrder = { 655 }, level = 1, group = "GrantsEnvy", weightKey = { }, weightVal = { }, modTags = { "skill", "village_runesmithing_enchant" }, tradeHashes = { [52953650] = { "Grants Level 1 Envy Skill" }, } }, - ["VillageGrantsIcicleNovaTrigger"] = { affix = "", "Trigger Level 10 Icicle Burst when you Hit a Frozen Enemy", statOrder = { 811 }, level = 1, group = "GrantsLevel20IcicleNovaTrigger", weightKey = { }, weightVal = { }, modTags = { "skill", "village_runesmithing_enchant", "attack" }, tradeHashes = { [1357672429] = { "Trigger Level 10 Icicle Burst when you Hit a Frozen Enemy" }, } }, - ["VillageSpreadChilledGroundOnFreeze"] = { affix = "", "(10-15)% chance to create Chilled Ground when you Freeze an Enemy", statOrder = { 3407 }, level = 1, group = "SpreadChilledGroundOnFreeze", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "elemental", "cold", "ailment" }, tradeHashes = { [2901262227] = { "(10-15)% chance to create Chilled Ground when you Freeze an Enemy" }, } }, - ["VillageSpreadConsecratedGroundOnShatter"] = { affix = "", "(20-25)% chance to create Consecrated Ground when you Shatter an Enemy", statOrder = { 4127 }, level = 1, group = "SpreadConsecratedGroundOnShatter", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant" }, tradeHashes = { [4148932984] = { "(20-25)% chance to create Consecrated Ground when you Shatter an Enemy" }, } }, - ["VillageColdAddedAsFireFrozenEnemy"] = { affix = "", "Gain (10-15)% of Cold Damage as Extra Fire Damage against Frozen Enemies", statOrder = { 5803 }, level = 1, group = "ColdAddedAsFireFrozenEnemy", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant" }, tradeHashes = { [1383929411] = { "Gain (10-15)% of Cold Damage as Extra Fire Damage against Frozen Enemies" }, } }, - ["VillageCurseOnHitElementalWeakness"] = { affix = "", "(20-30)% chance to Curse Enemies with Elemental Weakness on Hit", statOrder = { 2516 }, level = 1, group = "CurseOnHitLevelElementalWeaknessChance", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "caster", "curse" }, tradeHashes = { [636057969] = { "(20-30)% chance to Curse Enemies with Elemental Weakness on Hit" }, } }, - ["VillageChaoticMightOnKill"] = { affix = "", "(7-13)% chance to gain Chaotic Might for 10 seconds on Kill", statOrder = { 5701 }, level = 1, group = "UnholyMightOnKill10SecondsPercentChance", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant" }, tradeHashes = { [562371749] = { "(7-13)% chance to gain Chaotic Might for 10 seconds on Kill" }, } }, - ["VillageIncreasedMinionDamageIfYouHitEnemy"] = { affix = "", "Minions deal (20-30)% increased Damage if you've Hit Recently", statOrder = { 9296 }, level = 1, group = "IncreasedMinionDamageIfYouHitEnemy", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "damage", "minion" }, tradeHashes = { [2337295272] = { "Minions deal (20-30)% increased Damage if you've Hit Recently" }, } }, - ["TriggerSocketedElementalSpellOnBlockUnique__1"] = { affix = "", "Trigger a Socketed Elemental Spell on Block, with a 0.25 second Cooldown", statOrder = { 8017 }, level = 60, group = "TriggerSocketedElementalSpellOnBlock", weightKey = { }, weightVal = { }, modTags = { "skill", "caster", "gem" }, tradeHashes = { [2036151955] = { "" }, [3591112611] = { "Trigger a Socketed Elemental Spell on Block, with a 0.25 second Cooldown" }, } }, - ["BannerResourceGainedUnique__1"] = { affix = "", "(25-50)% increased Valour gained", statOrder = { 4976 }, level = 1, group = "BannerResourceGained", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1050359418] = { "(25-50)% increased Valour gained" }, } }, - ["CannotGainPowerChargesUnique__1"] = { affix = "", "Cannot gain Power Charges", statOrder = { 5435 }, level = 1, group = "CannotGainPowerCharges", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [2503253050] = { "Cannot gain Power Charges" }, } }, - ["CannotGainEnduranceChargesUnique__2"] = { affix = "", "Cannot gain Endurance Charges", statOrder = { 4998 }, level = 1, group = "CannotGainEnduranceCharges", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHashes = { [3037185464] = { "Cannot gain Endurance Charges" }, } }, - ["KeystoneBloodsoakedBladeUnique__1"] = { affix = "", "Bloodsoaked Blade", statOrder = { 10819 }, level = 1, group = "BloodsoakedBlade", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2363616962] = { "Bloodsoaked Blade" }, } }, - ["MaximumEnduranceFrenzyPowerChargesIs0Unique__1"] = { affix = "", "Maximum Endurance, Frenzy and Power Charges is 0", statOrder = { 9132 }, level = 1, group = "MaximumEnduranceFrenzyPowerChargesIs0", weightKey = { }, weightVal = { }, modTags = { "power_charge", "frenzy_charge", "endurance_charge" }, tradeHashes = { [2957871460] = { "Maximum Endurance, Frenzy and Power Charges is 0" }, } }, - ["VillageTripleEnchant1H"] = { affix = "", "Can be Enchanted by a Kalguuran Runesmith", "Can have 2 additional Runesmithing Enchantments", "Can be Runesmithed as though it were all One Handed Melee Weapon Types", statOrder = { 4438, 7868, 7869 }, level = 1, group = "VillageTripleEnchant1H", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1045438865] = { "Can have 2 additional Runesmithing Enchantments" }, [4005027470] = { "Can be Enchanted by a Kalguuran Runesmith" }, [3221277412] = { "Can be Runesmithed as though it were all One Handed Melee Weapon Types" }, } }, - ["ExcommunicateOnMeleeHitUnique"] = { affix = "", "Excommunicate Enemies on Melee Hit for 3 seconds", statOrder = { 6506 }, level = 97, group = "ExcommunicateOnMeleeHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2765129230] = { "Excommunicate Enemies on Melee Hit for 3 seconds" }, } }, - ["MeleeCritChanceAgainstExcommunicatedUnique__1"] = { affix = "", "Melee Attacks have +(0.8-1.6)% to Critical Strike Chance against Excommunicated Enemies", statOrder = { 9184 }, level = 1, group = "MeleeCritChanceAgainstExcommunicated", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [4154636328] = { "Melee Attacks have +(0.8-1.6)% to Critical Strike Chance against Excommunicated Enemies" }, } }, - ["AttackDamageIfHitRecentlyUnique"] = { affix = "", "(20-40)% increased Attack Damage if you've been Hit Recently", statOrder = { 3533 }, level = 98, group = "AttackDamageIfHitRecently", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [871414818] = { "(20-40)% increased Attack Damage if you've been Hit Recently" }, } }, - ["AttackCritAfterBeingCritUnique"] = { affix = "", "All Hits with your next Non-Channelling Attack within 4 seconds of taking a Critical Strike will be Critical Strikes", statOrder = { 4650 }, level = 98, group = "AttackCritAfterBeingCrit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [276813598] = { "All Hits with your next Non-Channelling Attack within 4 seconds of taking a Critical Strike will be Critical Strikes" }, } }, - ["WarcryLifeCostUnique"] = { affix = "", "Warcries Cost +15% of Life", statOrder = { 10561 }, level = 75, group = "WarcryLifeCost", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [1427553227] = { "Warcries Cost +15% of Life" }, } }, - ["NoCooldownWarcriesUnique"] = { affix = "", "Non-Instant Warcries ignore their Cooldown when Used", statOrder = { 9510 }, level = 75, group = "NoCooldownWarcries", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1863128284] = { "Non-Instant Warcries ignore their Cooldown when Used" }, } }, - ["ExtremelyLuckyUnique"] = { affix = "", "Your Lucky or Unlucky effects use the best or", "worst from three rolls instead of two", statOrder = { 6540, 6540.1 }, level = 1, group = "ExtremeLuck", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [675784826] = { "Your Lucky or Unlucky effects use the best or", "worst from three rolls instead of two" }, } }, - ["ProjectileAvoidUnique"] = { affix = "", "(1-10)% chance to avoid Projectiles", statOrder = { 4993 }, level = 68, group = "ChanceToAvoidProjectiles", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3452269808] = { "(1-10)% chance to avoid Projectiles" }, } }, - ["MistyFootprintsUnique"] = { affix = "", "Misty Footprints", statOrder = { 10859 }, level = 1, group = "MistyFootprints", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2519043677] = { "Misty Footprints" }, } }, - ["ArcaneSurgeMovementSpeedUnique"] = { affix = "", "Increases to Cast Speed from Arcane Surge also applies to Movement Speed", statOrder = { 4441 }, level = 68, group = "ArcaneSurgeMovementSpeed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [103999915] = { "Increases to Cast Speed from Arcane Surge also applies to Movement Speed" }, } }, - ["ArcaneSurgeOnMovementSkillUnique"] = { affix = "", "Gain Arcane Surge when you use a Movement Skill", statOrder = { 4439 }, level = 68, group = "ArcaneSurgeOnMovementSkill", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3221795893] = { "Gain Arcane Surge when you use a Movement Skill" }, } }, - ["ArcaneSurgeEffectUnique__1"] = { affix = "", "(30-50)% increased Effect of Arcane Surge on you", statOrder = { 3288 }, level = 1, group = "ArcaneSurgeEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3015437071] = { "(30-50)% increased Effect of Arcane Surge on you" }, } }, - ["StarfellOnMeleeCriticalHitUnique__1"] = { affix = "", "Trigger Level 20 Starfall on Melee Critical Strike", statOrder = { 783 }, level = 85, group = "StarfellOnMeleeCriticalHit", weightKey = { }, weightVal = { }, modTags = { "skill", "attack" }, tradeHashes = { [1505174316] = { "Trigger Level 20 Starfall on Melee Critical Strike" }, } }, - ["InfluenceElementalConfluxUnique__1"] = { affix = "", "You have Elemental Conflux if the stars are aligned", statOrder = { 4059 }, level = 86, group = "InfluenceElementalConflux", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2741732114] = { "You have Elemental Conflux if the stars are aligned" }, } }, - ["InfluenceElementalSkillGemLevelUnique__1"] = { affix = "", "+(1-3) to Level of all Elemental Skill Gems if the stars are aligned", statOrder = { 5010 }, level = 86, group = "InfluenceElementalSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [547920428] = { "+(1-3) to Level of all Elemental Skill Gems if the stars are aligned" }, } }, - ["InfluenceElementalSupportGemLevelUnique__1"] = { affix = "", "+(1-3) to Level of all Elemental Support Gems if the stars are aligned", statOrder = { 5011 }, level = 86, group = "InfluenceElementalSupportGemLevel", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1640163302] = { "+(1-3) to Level of all Elemental Support Gems if the stars are aligned" }, } }, - ["GrantsSummonVoidSpawnUnique__1"] = { affix = "", "Trigger Level 20 Summon Void Spawn every 4 seconds", statOrder = { 731 }, level = 97, group = "GrantSummonVoidSpawnEvery4Seconds", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [1560737213] = { "" }, [658873122] = { "Trigger Level 20 Summon Void Spawn every 4 seconds" }, } }, - ["ExtraChaosDamagePerVoidSpawnUnique__1"] = { affix = "", "Gain (4-6)% of Non-Chaos Damage as Extra Chaos Damage per Summoned Void Spawn", statOrder = { 9488 }, level = 97, group = "ExtraChaosDamagePerVoidSpawn", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1621629493] = { "Gain (4-6)% of Non-Chaos Damage as Extra Chaos Damage per Summoned Void Spawn" }, } }, - ["DamageRemovedFromVoidSpawnsUnique__1"] = { affix = "", "(4-6)% of Damage from Hits is taken from Void Spawns' Life before you per Void Spawn", statOrder = { 6093 }, level = 97, group = "DamageRemovedFromVoidSpawns", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [3269077876] = { "(4-6)% of Damage from Hits is taken from Void Spawns' Life before you per Void Spawn" }, } }, - ["UnarmedStrikeSkillsAdditionalTargetUnique__1"] = { affix = "", "[DNT] Unarmed Non-Vaal Strike Skills target (1-7) additional nearby Enemy", statOrder = { 10488 }, level = 1, group = "UnarmedStrikeSkillsAdditionalTarget", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [3383195220] = { "[DNT] Unarmed Non-Vaal Strike Skills target (1-7) additional nearby Enemy" }, } }, - ["UnarmedMeleeAttackCriticalStrikeMultiplierUnique__1"] = { affix = "", "+(10-77)% to Critical Strike Multiplier with Unarmed Melee Attacks", statOrder = { 10489 }, level = 97, group = "UnarmedMeleeAttackCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [468580269] = { "+(10-77)% to Critical Strike Multiplier with Unarmed Melee Attacks" }, } }, - ["MovementVelocityUnique__55"] = { affix = "", "(1-7)% increased Movement Speed", statOrder = { 1798 }, level = 97, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "(1-7)% increased Movement Speed" }, } }, - ["LocalIncreasedEvasionAndEnergyShieldUnique__38"] = { affix = "", "(100-777)% increased Evasion and Energy Shield", statOrder = { 1554 }, level = 97, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(100-777)% increased Evasion and Energy Shield" }, } }, - ["BaseUnarmedCriticalStrikeChanceUnique__2"] = { affix = "", "+(1-7)% to Unarmed Melee Attack Critical Strike Chance", statOrder = { 3571 }, level = 97, group = "BaseUnarmedCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [3613173483] = { "+(1-7)% to Unarmed Melee Attack Critical Strike Chance" }, } }, - ["UnarmedMoreMeleeAttackSpeedUnique__1"] = { affix = "", "(1-7)% more Attack Speed with Unarmed Melee Attacks", statOrder = { 1430 }, level = 97, group = "UnarmedMoreMeleeAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [906039557] = { "(1-7)% more Attack Speed with Unarmed Melee Attacks" }, } }, - ["DoubleMinionLimitsUnique_1"] = { affix = "", "Maximum number of Animated Weapons is Doubled", "Cannot have Minions other than Animated Weapons", statOrder = { 9174, 9174.1 }, level = 100, group = "DoubleMinionLimitsUnique", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [56473917] = { "Maximum number of Animated Weapons is Doubled", "Cannot have Minions other than Animated Weapons" }, } }, - ["TargetsUnaffectedByYourHexesUnique__1"] = { affix = "", "Targets are Unaffected by your Hexes", statOrder = { 2599 }, level = 40, group = "TargetsUnaffectedByYourHexes", weightKey = { }, weightVal = { }, modTags = { "curse" }, tradeHashes = { [2325471503] = { "Targets are Unaffected by your Hexes" }, } }, - ["EatSoulAfterHexPercentCurseExpireUnique__1"] = { affix = "", "When 90% of your Hex's Duration Expires on an Enemy, Eat 1 Soul per Enemy Power", statOrder = { 6289 }, level = 40, group = "EatSoulAfterHexPercentCurseExpire", weightKey = { }, weightVal = { }, modTags = { "curse" }, tradeHashes = { [224931623] = { "When 90% of your Hex's Duration Expires on an Enemy, Eat 1 Soul per Enemy Power" }, } }, - ["RecoverLifePercentOnBlockUnique__1"] = { affix = "", "Lose (3-5)% of Life when you Block", statOrder = { 3060 }, level = 1, group = "RecoverLifePercentOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "resource", "life" }, tradeHashes = { [2442647190] = { "Lose (3-5)% of Life when you Block" }, } }, - ["BlockChancePerLifeSpentRecentlyUnique__1"] = { affix = "", "[DNT] (5-10)% increased Chance to Block Attack and Spell Damage for every 100 Life Spent Recently", statOrder = { 5227 }, level = 1, group = "BlockChancePerLifeSpentRecently", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2171886867] = { "[DNT] (5-10)% increased Chance to Block Attack and Spell Damage for every 100 Life Spent Recently" }, } }, - ["CanOnlyInflictWitherAgainstFullLifeEnemies__1"] = { affix = "", "Cannot Inflict Wither on targets that are not on Full Life", statOrder = { 5388 }, level = 1, group = "CanOnlyInflictWitherAgainstFullLifeEnemies", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [340591537] = { "Cannot Inflict Wither on targets that are not on Full Life" }, } }, - ["ApplyMaximumWitherOnChaosSkillHitUnique__1"] = { affix = "", "Chaos Skills inflict up to 15 Withered Debuffs on Hit for (5-7) seconds", statOrder = { 4696 }, level = 38, group = "ApplyMaximumWitherOnChaosSkillHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2676773112] = { "Chaos Skills inflict up to 15 Withered Debuffs on Hit for (5-7) seconds" }, } }, - ["UnarmedAddedChaosDamageForEachPoisonOnTargetUnique__1"] = { affix = "", "[DNT] Unarmed Attacks deal (7-11) to (13-17) added Chaos Damage for each Poison on the target, up to 100", statOrder = { 10487 }, level = 1, group = "UnarmedAddedChaosDamageForEachPoisonOnTarget", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [3382196041] = { "[DNT] Unarmed Attacks deal (7-11) to (13-17) added Chaos Damage for each Poison on the target, up to 100" }, } }, - ["LessPoisonDurationUnique_1"] = { affix = "", "(50-60)% less Poison Duration", statOrder = { 3171 }, level = 1, group = "VolkuurLessPoisonDuration", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [1237693206] = { "(50-60)% less Poison Duration" }, } }, - ["ChanceToPoisonWithAttacksUnique___2"] = { affix = "", "(40-50)% chance to Poison on Hit with Attacks", statOrder = { 3175 }, level = 1, group = "ChanceToPoisonWithAttacks", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "attack", "ailment" }, tradeHashes = { [3954735777] = { "(40-50)% chance to Poison on Hit with Attacks" }, } }, - ["IncreasedAttackSpeedUniqueGlovesDexInt_1"] = { affix = "", "(8-12)% increased Attack Speed", statOrder = { 1410 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(8-12)% increased Attack Speed" }, } }, - ["GainOnslaughtDuringLifeFlaskUnique__1"] = { affix = "", "[DNT] You have Onslaught during Effect of any Life Flask", statOrder = { 6780 }, level = 1, group = "GainOnslaughtDuringLifeFlask", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [629617314] = { "[DNT] You have Onslaught during Effect of any Life Flask" }, } }, - ["OvercappedFireResistanceAsFirePrenetrationUnique__1"] = { affix = "", "Damage Penetrates Fire Resistance equal to your Overcapped Fire Resistance, up to a maximum of 200%", statOrder = { 2982 }, level = 100, group = "OvercappedFireResistanceAsFirePrenetration", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire" }, tradeHashes = { [133804429] = { "Damage Penetrates Fire Resistance equal to your Overcapped Fire Resistance, up to a maximum of 200%" }, } }, - ["FireDamageOnSkillUseUnique__1"] = { affix = "", "Take (300-500) Fire Damage when you Use a Skill", statOrder = { 2212 }, level = 100, group = "FireDamageOnSkillUse", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [4076381228] = { "Take (300-500) Fire Damage when you Use a Skill" }, } }, - ["MinionHaveNoAmourOrEnergyShieldUnique__1"] = { affix = "", "[DNT] Your minions have no Armour or Maximum Energy Shield", statOrder = { 9359 }, level = 1, group = "MinionHaveNoAmourOrEnergyShield", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [4060457653] = { "[DNT] Your minions have no Armour or Maximum Energy Shield" }, } }, - ["MinionGainYourSpellSuppressUnique__1"] = { affix = "", "[DNT] Your minions gain your chance to Suppress Spell Damage", statOrder = { 9353 }, level = 1, group = "MinionGainYourSpellSuppress", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [3888619765] = { "[DNT] Your minions gain your chance to Suppress Spell Damage" }, } }, - ["AllResistancesReducedPerActiveMinionUnique_1UNUSED"] = { affix = "", "[DNT] -2% to All Resistances per Minion", statOrder = { 4633 }, level = 1, group = "MinionCountAffectsResistances", weightKey = { }, weightVal = { }, modTags = { "resistance", "minion" }, tradeHashes = { [1456627145] = { "[DNT] -2% to All Resistances per Minion" }, } }, - ["GlobalDefensesIncreasedPerActiveMinionUnique_1UNUSED"] = { affix = "", "[DNT] +(3-5)% to Global Defenses per Minion", statOrder = { 6876 }, level = 1, group = "MinionCountAffectsGlobalDefenses", weightKey = { }, weightVal = { }, modTags = { "defences", "minion" }, tradeHashes = { [2408967970] = { "[DNT] +(3-5)% to Global Defenses per Minion" }, } }, - ["AllResistancesReducedPerActiveNonVaalSkillMinionUnique_1"] = { affix = "", "-2% to all Resistances per Minion from your Non-Vaal Skills", statOrder = { 1637 }, level = 1, group = "NonVaalMinionSkillCountAffectsResistances", weightKey = { }, weightVal = { }, modTags = { "resistance", "minion" }, tradeHashes = { [2894273152] = { "-2% to all Resistances per Minion from your Non-Vaal Skills" }, } }, - ["GlobalDefensesIncreasedPerActiveNonVaalSkillMinionUnique_1"] = { affix = "", "(3-4)% increased Defences per Minion from your Non-Vaal Skills", statOrder = { 2834 }, level = 1, group = "NonVaalMinionSkillCountAffectsGlobalDefenses", weightKey = { }, weightVal = { }, modTags = { "defences", "minion" }, tradeHashes = { [3169460653] = { "(3-4)% increased Defences per Minion from your Non-Vaal Skills" }, } }, - ["MinionsGainPercentOfYourResistancesUnique_1"] = { affix = "", "Minions gain added Resistances equal to 50% of your Resistances", statOrder = { 9352 }, level = 93, group = "MinionsGainYourResistancesPercent", weightKey = { }, weightVal = { }, modTags = { "resistance", "minion" }, tradeHashes = { [2370748292] = { "Minions gain added Resistances equal to 50% of your Resistances" }, } }, - ["SacrificeLifeToGainArrowUnique__1"] = { affix = "", "[DNT] Bow Attacks Sacrifice (5-7)% of your Life to fire an additional Arrow for every 100 Life Sacrificed", statOrder = { 9954 }, level = 1, group = "SacrificeLifeToGainArrow", weightKey = { }, weightVal = { }, modTags = { "bow", "attack" }, tradeHashes = { [2868019709] = { "[DNT] Bow Attacks Sacrifice (5-7)% of your Life to fire an additional Arrow for every 100 Life Sacrificed" }, } }, - ["ArmourFromShieldDoubledUnique__1"] = { affix = "", "Armour from Equipped Shield is doubled", statOrder = { 1993 }, level = 40, group = "ArmourFromShieldDoubled", weightKey = { }, weightVal = { }, modTags = { "shield", "defences", "armour" }, tradeHashes = { [651387761] = { "Armour from Equipped Shield is doubled" }, } }, - ["GainNoArmourFromBodyArmourUnique__1"] = { affix = "", "Gain no Armour from Equipped Body Armour", statOrder = { 3338 }, level = 40, group = "GainNoArmourFromBodyArmour", weightKey = { }, weightVal = { }, modTags = { "body_armour", "defences", "armour" }, tradeHashes = { [2150125858] = { "Gain no Armour from Equipped Body Armour" }, } }, - ["EnergyShieldRechargeApplyToManaUnique__1"] = { affix = "", "[DNT] Energy Shield Recharge instead applies to Mana", statOrder = { 6446 }, level = 1, group = "EnergyShieldRechargeApplyToMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1572347373] = { "[DNT] Energy Shield Recharge instead applies to Mana" }, } }, - ["GrantShaperSkill_1"] = { affix = "", "Grants Level 20 Summon Shaper Memory", "Grants Level 20 Shaper's Devastation, which will be used by Shaper Memory", statOrder = { 743, 743.1 }, level = 85, group = "GrantShaperSkill", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [367775264] = { "Grants Level 20 Summon Shaper Memory", "Grants Level 20 Shaper's Devastation, which will be used by Shaper Memory" }, } }, - ["MaximumRemembranceUnique_1"] = { affix = "", "Maximum 10 Remembrance", statOrder = { 9127 }, level = 85, group = "MaximumRemembrance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3469876297] = { "Maximum 10 Remembrance" }, } }, - ["RemembranceGainedPerEnergyShieldUnique_1"] = { affix = "", "Gain 1 Remembrance when you spend a total of 200 Energy", "Shield with no Shaper Memory Summoned", statOrder = { 6740, 6740.1 }, level = 85, group = "RemembrancePerEnergyShieldSpent", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [410922651] = { "Gain 1 Remembrance when you spend a total of 200 Energy", "Shield with no Shaper Memory Summoned" }, } }, - ["Maximum2OfSameTotemUnique__1"] = { affix = "", "You cannot have more than 2 Summoned Totems of the same type", statOrder = { 2257 }, level = 78, group = "Maximum2OfSameTotem", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1121911611] = { "You cannot have more than 2 Summoned Totems of the same type" }, } }, - ["ManaFlaskEffectsAreNotRemovedAtFullManaUnique__1"] = { affix = "", "Mana Flask Effects are not removed when Unreserved Mana is Filled", "Mana Flask Effects do not Queue", statOrder = { 8174, 8174.1 }, level = 70, group = "ManaFlaskEffectsAreNotRemovedAtFullMana", weightKey = { }, weightVal = { }, modTags = { "mana_flask", "flask", "resource", "mana" }, tradeHashes = { [1548467016] = { "Mana Flask Effects are not removed when Unreserved Mana is Filled", "Mana Flask Effects do not Queue" }, } }, - ["CannotUseLifeFlaskUnique__1"] = { affix = "", "Can't use Life Flasks", statOrder = { 72 }, level = 70, group = "CannotUseLifeFlask", weightKey = { }, weightVal = { }, modTags = { "life_flask", "flask" }, tradeHashes = { [3283268320] = { "Can't use Life Flasks" }, } }, - ["FlaskEffectAlsoAffectsArcaneSurgeUnique__1"] = { affix = "", "Increases and Reductions to Effect of Flasks applied to you", "also applies to Effect of Arcane Surge on you at (200-250)% of their value", statOrder = { 4600, 4600.1 }, level = 70, group = "FlaskEffectAlsoAffectsArcaneSurge", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1213832501] = { "Increases and Reductions to Effect of Flasks applied to you", "also applies to Effect of Arcane Surge on you at (200-250)% of their value" }, } }, - ["ArcaneSurgeDuringManaFlaskEffectUnique__1"] = { affix = "", "You have Arcane Surge during Effect of any Mana Flask", statOrder = { 4704 }, level = 70, group = "ArcaneSurgeDuringManaFlaskEffect", weightKey = { }, weightVal = { }, modTags = { "mana_flask" }, tradeHashes = { [1243471794] = { "You have Arcane Surge during Effect of any Mana Flask" }, } }, - ["NearbyAlliesShockedGrantYouChargesOnDeathUnique__1"] = { affix = "", "[DNT] Nearby Non-Player Allies are Shocked, taking 30% increased damage", "Gain a Power, Frenzy and Endurance Charge when a nearby Non-Player Ally dies", statOrder = { 9465, 9465.1 }, level = 1, group = "NearbyAlliesShockedGrantYouChargesOnDeath", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3144427110] = { "[DNT] Nearby Non-Player Allies are Shocked, taking 30% increased damage", "Gain a Power, Frenzy and Endurance Charge when a nearby Non-Player Ally dies" }, } }, - ["LocalIncreasedPhysicalDamagePercentUniqueTwoHandAxe10"] = { affix = "", "(120-180)% increased Physical Damage", statOrder = { 1232 }, level = 85, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(120-180)% increased Physical Damage" }, } }, - ["WeaponPhysicalDamageAddedAsRandomElementUnique__2"] = { affix = "", "Gain (40-60)% of Weapon Physical Damage as Extra Damage of a random Element", statOrder = { 2935 }, level = 85, group = "WeaponPhysicalDamageAddedAsRandomElement", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "attack" }, tradeHashes = { [1038949719] = { "Gain (40-60)% of Weapon Physical Damage as Extra Damage of a random Element" }, } }, - ["LocalCriticalStrikeChanceUniqueTwoHandAxe_1"] = { affix = "", "(20-30)% increased Critical Strike Chance", statOrder = { 1464 }, level = 85, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "(20-30)% increased Critical Strike Chance" }, } }, - ["SupportedByArrowNovaUnique__2"] = { affix = "", "Socketed Gems are Supported by Level 20 Arrow Nova", statOrder = { 361 }, level = 1, group = "SupportedByArrowNova", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [1331336999] = { "Socketed Gems are Supported by Level 20 Arrow Nova" }, } }, - ["PhysicalAddedAsFireIfUsedRubyFlaskRecentlyUnique__1"] = { affix = "", "Gain (20-40)% of Physical Damage as Extra Fire Damage if you've", "used a Ruby Flask Recently", statOrder = { 9626, 9626.1 }, level = 1, group = "PhysicalAddedAsFireIfUsedRubyFlaskRecently", weightKey = { }, weightVal = { }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [128992179] = { "Gain (20-40)% of Physical Damage as Extra Fire Damage if you've", "used a Ruby Flask Recently" }, } }, - ["PhysicalAddedAsColdIfUsedSapphireFlaskRecentlyUnique__1"] = { affix = "", "Gain (20-40)% of Physical Damage as Extra Cold Damage if you've", "used a Sapphire Flask Recently", statOrder = { 9624, 9624.1 }, level = 1, group = "PhysicalAddedAsColdIfUsedSapphireFlaskRecently", weightKey = { }, weightVal = { }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [4015395070] = { "Gain (20-40)% of Physical Damage as Extra Cold Damage if you've", "used a Sapphire Flask Recently" }, } }, - ["PhysicalAddedAsLightningIfUsedTopazFlaskRecentlyUnique__1"] = { affix = "", "Gain (20-40)% of Physical Damage as Extra Lightning Damage if you've", "used a Topaz Flask Recently", statOrder = { 9628, 9628.1 }, level = 1, group = "PhysicalAddedAsLightningIfUsedTopazFlaskRecently", weightKey = { }, weightVal = { }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [270706555] = { "Gain (20-40)% of Physical Damage as Extra Lightning Damage if you've", "used a Topaz Flask Recently" }, } }, - ["PhysicalAddedAsChaosIfUsedAmethystFlaskRecentlyUnique__1"] = { affix = "", "Gain (40-75)% of Physical Damage as Extra Chaos Damage if you've", "used an Amethyst Flask Recently", statOrder = { 9623, 9623.1 }, level = 1, group = "PhysicalAddedAsChaosIfUsedAmethystFlaskRecently", weightKey = { }, weightVal = { }, modTags = { "physical", "chaos" }, tradeHashes = { [2417314413] = { "Gain (40-75)% of Physical Damage as Extra Chaos Damage if you've", "used an Amethyst Flask Recently" }, } }, - ["TripleDamageIfSpentTimeOnAttackRecentlyUnique__1"] = { affix = "", "[DNT] Hits with this Weapon deal Triple Damage if you have spent at least 2 seconds on a single attack recently", statOrder = { 6146 }, level = 1, group = "TripleDamageIfSpentTimeOnAttackRecently", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [3652223421] = { "[DNT] Hits with this Weapon deal Triple Damage if you have spent at least 2 seconds on a single attack recently" }, } }, - ["AreaOfEffectUnique_9"] = { affix = "", "(10-20)% increased Area of Effect", statOrder = { 1880 }, level = 85, group = "AreaOfEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [280731498] = { "(10-20)% increased Area of Effect" }, } }, - ["SkillsCostEnergyShieldInsteadOfManaLifeUnique__1"] = { affix = "", "Skills Cost Energy Shield instead of Mana or Life", statOrder = { 5049 }, level = 93, group = "SkillsCostEnergyShieldInsteadOfManaLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana", "defences", "energy_shield" }, tradeHashes = { [89922905] = { "Skills Cost Energy Shield instead of Mana or Life" }, } }, - ["AttacksGainMinMaxAddedChaosDamageBasedOnManaUnique__1"] = { affix = "", "(5-10) to (20-25) Added Attack Chaos Damage per 100 Maximum Mana", statOrder = { 1389 }, level = 93, group = "AttacksGainMinMaxAddedChaosDamageBasedOnMana", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "resource", "mana", "damage", "chaos", "attack" }, tradeHashes = { [3795467298] = { "0 to (20-25) Added Attack Chaos Damage per 100 Maximum Mana" }, [3795240942] = { "(5-10) to 0 Added Attack Chaos Damage per 100 Maximum Mana" }, } }, - ["AddedEnergyShieldFlatUnique_1"] = { affix = "", "+(50-100) to maximum Energy Shield", statOrder = { 1558 }, level = 93, group = "EnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+(50-100) to maximum Energy Shield" }, } }, - ["PercentReducedMaximumManaUnique_1"] = { affix = "", "(40-60)% reduced maximum Mana", statOrder = { 1580 }, level = 93, group = "MaximumManaIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2748665614] = { "(40-60)% reduced maximum Mana" }, } }, - ["LocalIncreasedEnergyShieldUniqueHelmetInt_1"] = { affix = "", "+(50-100) to maximum Energy Shield", statOrder = { 1559 }, level = 100, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(50-100) to maximum Energy Shield" }, } }, - ["ChaosResistUniqueHelmetInt__1"] = { affix = "", "+(27-37)% to Chaos Resistance", statOrder = { 1641 }, level = 100, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(27-37)% to Chaos Resistance" }, } }, - ["LifeDegenPerActiveMinionUniqueHelmetInt_1UNUSED"] = { affix = "", "Lose 0.3% Life per Second per Minion", statOrder = { 7347 }, level = 1, group = "LifeDegenPermyriadPerMinutePerMinion", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, tradeHashes = { [3458251673] = { "Lose 0.3% Life per Second per Minion" }, } }, - ["IgniteDealNoDamageUnique__1"] = { affix = "", "Ignites you inflict deal no Damage", statOrder = { 7206 }, level = 1, group = "IgniteDealNoDamage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2046217536] = { "Ignites you inflict deal no Damage" }, } }, - ["TriggerIgnitionBlastOnIgnitedEnemyDeathUnique__1"] = { affix = "", "Trigger Level 5 Ignition Blast when an enemy dies while Ignited by you", statOrder = { 790 }, level = 1, group = "TriggerIgnitionBlastOnIgnitedEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [748455470] = { "" }, [2637583625] = { "Trigger Level 5 Ignition Blast when an enemy dies while Ignited by you" }, } }, - ["KeystoneEldritchBatteryUnique__3"] = { affix = "", "Eldritch Battery", statOrder = { 10781 }, level = 85, group = "EldritchBattery", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2262736444] = { "Eldritch Battery" }, } }, - ["GlobalSpellGemsLevelUniqueStaff_1"] = { affix = "", "+(3-5) to Level of all Spell Skill Gems", statOrder = { 1608 }, level = 85, group = "GlobalIncreaseSpellSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "caster", "gem" }, tradeHashes = { [124131830] = { "+(3-5) to Level of all Spell Skill Gems" }, } }, - ["GlobalSpellGemsLevelUniqueStaff_2"] = { affix = "", "+(-1-1) to Level of all Spell Skill Gems", statOrder = { 1608 }, level = 1, group = "GlobalIncreaseSpellSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "caster", "gem" }, tradeHashes = { [124131830] = { "+(-1-1) to Level of all Spell Skill Gems" }, } }, - ["IncreasedCastSpeedUniqueStaff_1"] = { affix = "", "(25-40)% increased Cast Speed", statOrder = { 1446 }, level = 85, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(25-40)% increased Cast Speed" }, } }, - ["LocalIncreasedEnergyShieldPercentUniqueBody_1"] = { affix = "", "(150-200)% increased Energy Shield", statOrder = { 1560 }, level = 97, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(150-200)% increased Energy Shield" }, } }, - ["ChaosResistUniqueBody_1"] = { affix = "", "+(23-37)% to Chaos Resistance", statOrder = { 1641 }, level = 97, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(23-37)% to Chaos Resistance" }, } }, - ["SpellBlockChancePerMinionUnique__1"] = { affix = "", "[DNT] +2% Chance to Block Spell Damage per Minion", statOrder = { 10131 }, level = 1, group = "SpellBlockChancePerMinion", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2787823479] = { "[DNT] +2% Chance to Block Spell Damage per Minion" }, } }, - ["AggressiveMinionIfBlockedRecentlyUnique__1"] = { affix = "", "[DNT] Minions are Aggressive if you've Blocked Recently", statOrder = { 9268 }, level = 1, group = "AggressiveMinionIfBlockedRecently", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1521135197] = { "[DNT] Minions are Aggressive if you've Blocked Recently" }, } }, - ["FeedingFrenzyIfBlockedRecentlyUnique__1"] = { affix = "", "[DNT] You have Feeding Frenzy if you've Blocked Recently", statOrder = { 10663 }, level = 1, group = "FeedingFrenzyIfBlockedRecently", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2925106620] = { "[DNT] You have Feeding Frenzy if you've Blocked Recently" }, } }, - ["AdditionalTotemsUniqueScepter_1"] = { affix = "", "+(3-5) to maximum number of Summoned Totems", statOrder = { 2254 }, level = 78, group = "AdditionalTotems", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [429867172] = { "+(3-5) to maximum number of Summoned Totems" }, } }, - ["BattlemageKeystoneUnique__5"] = { affix = "", "Battlemage", statOrder = { 10772 }, level = 78, group = "KeystoneBattlemage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [448903047] = { "Battlemage" }, } }, - ["SummonTotemCastSpeedUnique__3"] = { affix = "", "(40-70)% increased Totem Placement speed", statOrder = { 2578 }, level = 78, group = "SummonTotemCastSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [3374165039] = { "(40-70)% increased Totem Placement speed" }, } }, - ["LocalAddedPhysicalDamageUnique__38"] = { affix = "", "Adds (60-85) to (100-133) Physical Damage", statOrder = { 1276 }, level = 78, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (60-85) to (100-133) Physical Damage" }, } }, - ["LocalIncreasedArmourAndEnergyShieldUniqueHelmetStrInt_1"] = { affix = "", "(150-200)% increased Armour and Energy Shield", statOrder = { 1552 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(150-200)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedArmourUniqueHelmetStrInt_2"] = { affix = "", "(350-650)% increased Armour", statOrder = { 1542 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(350-650)% increased Armour" }, } }, - ["IncreasedManaUniqueHelmetStrInt_1"] = { affix = "", "+(30-70) to maximum Mana", statOrder = { 1579 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(30-70) to maximum Mana" }, } }, - ["ManaRegenerationUniqueHelmetStrInt_1"] = { affix = "", "(30-50)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(30-50)% increased Mana Regeneration Rate" }, } }, - ["AdditionalProjectilesUniqueWand_1"] = { affix = "", "Skills fire (2-3) additional Projectiles", statOrder = { 1792 }, level = 42, group = "AdditionalProjectiles", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [74338099] = { "Skills fire (2-3) additional Projectiles" }, } }, - ["ProjectilesExpireOnHitUniqueWand_1"] = { affix = "", "Projectiles cannot continue after colliding with targets", statOrder = { 9742 }, level = 42, group = "ProjectilesExpireOnHitv2", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1732165753] = { "Projectiles cannot continue after colliding with targets" }, } }, - ["IncreasedProjectileDamageUnique___12"] = { affix = "", "(30-50)% increased Projectile Damage", statOrder = { 1996 }, level = 42, group = "ProjectileDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [1839076647] = { "(30-50)% increased Projectile Damage" }, } }, - ["ProjectileSpeedUnique__9"] = { affix = "", "(10-20)% increased Projectile Speed", statOrder = { 1796 }, level = 42, group = "ProjectileSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [3759663284] = { "(10-20)% increased Projectile Speed" }, } }, - ["GlobalChaosSpellGemsLevelUniqueWand_1"] = { affix = "", "+1 to Level of all Chaos Spell Skill Gems", statOrder = { 1613 }, level = 1, group = "GlobalIncreaseChaosSpellSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "chaos", "caster", "gem" }, tradeHashes = { [4226189338] = { "+1 to Level of all Chaos Spell Skill Gems" }, } }, - ["IncreasedChaosDamageUniqueWand_1"] = { affix = "", "(31-43)% increased Chaos Damage", statOrder = { 1385 }, level = 1, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(31-43)% increased Chaos Damage" }, } }, - ["NoManaRegenerationUniqueHelmetInt_1"] = { affix = "", "You have no Mana Regeneration", statOrder = { 2272 }, level = 1, group = "NoManaRegeneration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1052246654] = { "You have no Mana Regeneration" }, } }, - ["GlobalNoEnergyShieldUnique__2"] = { affix = "", "Removes all Energy Shield", statOrder = { 2166 }, level = 1, group = "NoEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1482608021] = { "Removes all Energy Shield" }, } }, - ["MaximumManaUnique__9"] = { affix = "", "(20-40)% increased maximum Mana", statOrder = { 1580 }, level = 1, group = "MaximumManaIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2748665614] = { "(20-40)% increased maximum Mana" }, } }, - ["DamageTakenFromManaUniqueHelmet_1"] = { affix = "", "(20-30)% of Damage is taken from Mana before Life", statOrder = { 2699 }, level = 1, group = "DamageRemovedFromManaBeforeLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana" }, tradeHashes = { [458438597] = { "(20-30)% of Damage is taken from Mana before Life" }, } }, - ["ChanceToIgniteUnique__7"] = { affix = "", "(10-20)% chance to Ignite", statOrder = { 2026 }, level = 1, group = "ChanceToIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "(10-20)% chance to Ignite" }, } }, - ["GlobalAddedFireDamageUnique__5"] = { affix = "", "Adds (1-5) to (10-15) Fire Damage", statOrder = { 1359 }, level = 1, group = "GlobalAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [321077055] = { "Adds (1-5) to (10-15) Fire Damage" }, } }, - ["FireResistanceUniqueGlovesInt_1"] = { affix = "", "+(10-15)% to Fire Resistance", statOrder = { 1625 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(10-15)% to Fire Resistance" }, } }, - ["FlaskDurationUniqueGlovesDex_1"] = { affix = "", "(10-20)% increased Flask Effect Duration", statOrder = { 2187 }, level = 1, group = "BeltIncreasedFlaskDuration", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [3741323227] = { "(10-20)% increased Flask Effect Duration" }, } }, - ["FlaskLifeRecoveryUniqueGlovesDex_1"] = { affix = "", "(-100-50)% reduced Life Recovery from Flasks", statOrder = { 2059 }, level = 1, group = "BeltFlaskLifeRecovery", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, tradeHashes = { [821241191] = { "(-100-50)% reduced Life Recovery from Flasks" }, } }, - ["LocalIncreasedEvasionRatingUniqueGlovesDex_1"] = { affix = "", "+(20-45) to Evasion Rating", statOrder = { 1548 }, level = 1, group = "LocalEvasionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(20-45) to Evasion Rating" }, } }, - ["DexterityUniqueGlovesDex_1"] = { affix = "", "+(10-15) to Dexterity", statOrder = { 1178 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(10-15) to Dexterity" }, } }, - ["IgnitesReflectedToSelfUnique__1"] = { affix = "", "Ignites you cause are reflected back to you", statOrder = { 3039 }, level = 1, group = "IgnitesReflectedToSelf", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1049974046] = { "Ignites you cause are reflected back to you" }, } }, - ["UnaffectedByIgniteUnique__1"] = { affix = "", "Unaffected by Ignite", statOrder = { 10474 }, level = 1, group = "UnaffectedByIgnite", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2635869389] = { "Unaffected by Ignite" }, } }, - ["CannotPoisonEnemiesWithNumPoisonsUnique__1"] = { affix = "", "Cannot Poison Enemies with at least 12 Poisons on them", statOrder = { 5441 }, level = 1, group = "CannotPoisonEnemiesWithNumPoisons", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos" }, tradeHashes = { [1833990055] = { "Cannot Poison Enemies with at least 12 Poisons on them" }, } }, - ["WitherOnHitEnemiesWithNumPoisonsUnique__1"] = { affix = "", "Wither on Hit with this weapon against Enemies with at least 12 Poisons on them", statOrder = { 8133 }, level = 1, group = "WitherOnHitEnemiesWithNumPoisons", weightKey = { }, weightVal = { }, modTags = { "chaos" }, tradeHashes = { [4202723071] = { "Wither on Hit with this weapon against Enemies with at least 12 Poisons on them" }, } }, - ["ApplyAdditionalPoisonUnique__1"] = { affix = "", "100% chance to inflict an additional Poison on the same Target when you inflict Poison", statOrder = { 4585 }, level = 1, group = "ApplyAdditionalPoison", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [514698677] = { "100% chance to inflict an additional Poison on the same Target when you inflict Poison" }, } }, - ["LocalApplyAdditionalPoisonUnique__1"] = { affix = "", "Inflict (2-3) additional Poisons on the same Target", "when you inflict Poison with this weapon", statOrder = { 8001, 8001.1 }, level = 1, group = "LocalApplyAdditionalPoison", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos_damage", "damage", "chaos" }, tradeHashes = { [2087599022] = { "Inflict (2-3) additional Poisons on the same Target", "when you inflict Poison with this weapon" }, } }, - ["SacrificeMinionToFireAdditionalArrowsUnique__1"] = { affix = "", "Bow Attacks Sacrifice a random Damageable Minion to fire (1-3) additional Arrow", statOrder = { 9955 }, level = 69, group = "SacrificeMinionToFireAdditionalArrows", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [151300265] = { "Bow Attacks Sacrifice a random Damageable Minion to fire (1-3) additional Arrow" }, } }, - ["AdditionalPoisonChanceUnique__1"] = { affix = "", "(25-40)% chance to inflict an additional Poison on the same Target when you inflict Poison", statOrder = { 4585 }, level = 100, group = "AdditionalPoisonChance", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos_damage", "damage", "chaos" }, tradeHashes = { [514698677] = { "(25-40)% chance to inflict an additional Poison on the same Target when you inflict Poison" }, } }, - ["ImpaleEffectPerImpaleOnYouUnique__1"] = { affix = "", "[DNT] Impales you inflict have (10-15)% increased Effect per Impale on you", statOrder = { 7245 }, level = 1, group = "ImpaleEffectPerImpaleOnYou", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3824925104] = { "[DNT] Impales you inflict have (10-15)% increased Effect per Impale on you" }, } }, - ["SpellLightningDamagePerIntelligenceUnique__1"] = { affix = "", "1 to (31-53) Spell Lightning Damage per 10 Intelligence", statOrder = { 10125 }, level = 83, group = "SpellLightningDamagePerIntelligence", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning" }, tradeHashes = { [254155233] = { "1 to (31-53) Spell Lightning Damage per 10 Intelligence" }, } }, - ["IncreasedSkillCostUnique_1"] = { affix = "", "31% increased Cost of Skills", statOrder = { 1881 }, level = 1, group = "SkillCostReduction", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2904711338] = { "31% increased Cost of Skills" }, } }, - ["ViolentPaceUnique__1"] = { affix = "", "[DNT] Triggers Level 20 Violent Path when Equipped", statOrder = { 6253 }, level = 1, group = "ViolentPace", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [3000633332] = { "[DNT] Triggers Level 20 Violent Path when Equipped" }, } }, - ["AreaOfEffectPerRageUnique__1"] = { affix = "", "[DNT] (5-10)% increased Area of Effect per 10 Rage", statOrder = { 4722 }, level = 1, group = "AreaOfEffectPerRage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [878076855] = { "[DNT] (5-10)% increased Area of Effect per 10 Rage" }, } }, - ["MinionMovementSpeedUnique_1"] = { affix = "", "Minions have (20-30)% increased Movement Speed", statOrder = { 1769 }, level = 1, group = "MinionRunSpeed", weightKey = { }, weightVal = { }, modTags = { "speed", "minion" }, tradeHashes = { [174664100] = { "Minions have (20-30)% increased Movement Speed" }, } }, - ["MinionAttackSpeedUnique_1"] = { affix = "", "Minions have (6-12)% increased Attack Speed", statOrder = { 2907 }, level = 1, group = "MinionAttackAndCastSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed", "minion" }, tradeHashes = { [3375935924] = { "Minions have (6-12)% increased Attack Speed" }, [4000101551] = { "" }, } }, - ["MinionDoubleDamageChancePerFortificationUnique__1"] = { affix = "", "Minions have 1% chance to deal Double Damage per Fortification on you", statOrder = { 1976 }, level = 1, group = "MinionDoubleDamageChancePerFortification", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, tradeHashes = { [1793564431] = { "Minions have 1% chance to deal Double Damage per Fortification on you" }, } }, - ["MinionLifeAlsoAffectsYouUnique__1"] = { affix = "", "Increases and Reductions to Minion Maximum Life also apply to you at 15% of their value", statOrder = { 3754 }, level = 83, group = "MinionMaximumAlsoAffectsYou", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, tradeHashes = { [3942379359] = { "Increases and Reductions to Minion Maximum Life also apply to you at 15% of their value" }, } }, - ["FortifyDurationUnique_1"] = { affix = "", "(30-40)% increased Fortification Duration", statOrder = { 2265 }, level = 1, group = "FortifyDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2966206079] = { "(30-40)% increased Fortification Duration" }, } }, - ["TriggerSocketedSpellOnUnarmedMeleeCriticalHitUnique__1"] = { affix = "", "Trigger a Socketed Spell on Unarmed Melee Critical Strike, with a 0.25 second Cooldown", statOrder = { 752 }, level = 97, group = "TriggerSocketedSpellOnUnarmedMeleeCriticalHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1181232657] = { "Trigger a Socketed Spell on Unarmed Melee Critical Strike, with a 0.25 second Cooldown" }, } }, - ["LinkSkillsCostLifeUnique__1"] = { affix = "", "[DNT] Link Skills Cost Life instead of Mana", statOrder = { 7489 }, level = 1, group = "LinkSkillsCostLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2332188930] = { "[DNT] Link Skills Cost Life instead of Mana" }, } }, - ["GuardSkillForLinkTargetUnique__1"] = { affix = "", "[DNT] Your Guard Skill Buffs take Damage for Linked Targets as well as you", statOrder = { 6919 }, level = 1, group = "GuardSkillForLinkTarget", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3674946347] = { "[DNT] Your Guard Skill Buffs take Damage for Linked Targets as well as you" }, } }, - ["LinksTargetDamageableMinionsUnique_1"] = { affix = "", "Link Skills can target Damageable Minions", statOrder = { 7499 }, level = 1, group = "LinksTargetDamageableMinions", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1323344255] = { "Link Skills can target Damageable Minions" }, } }, - ["LinksGrantMinionsLessDamageTakenUnique_1"] = { affix = "", "Your Linked Minions take (65-75)% less Damage", statOrder = { 7504 }, level = 1, group = "LinksGrantMinionsLessDamageTaken", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [3132594008] = { "Your Linked Minions take (65-75)% less Damage" }, } }, - ["LinkedMinionsStealRareModsUnique_1"] = { affix = "", "On Killing a Rare monster, a random Linked Minion gains its Modifiers for 60 seconds", statOrder = { 7505 }, level = 1, group = "LinkedMinionsStealRareMods", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [517280174] = { "On Killing a Rare monster, a random Linked Minion gains its Modifiers for 60 seconds" }, } }, - ["LocalIncreasedPhysicalDamagePercentUnique__51"] = { affix = "", "(200-300)% increased Physical Damage", statOrder = { 1232 }, level = 85, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(200-300)% increased Physical Damage" }, } }, - ["AddedPhysicalDamageUniqueQuiver10"] = { affix = "", "(5-10) to (12-24) Added Physical Damage with Bow Attacks", statOrder = { 2070 }, level = 69, group = "PhysicalDamageWithBows", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1760576992] = { "(5-10) to (12-24) Added Physical Damage with Bow Attacks" }, } }, - ["MinionDamageUniqueQuiver_1"] = { affix = "", "Minions deal (30-50)% increased Damage", statOrder = { 1973 }, level = 69, group = "MinionDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (30-50)% increased Damage" }, } }, - ["DexterityAndIntelligenceUniqueQuiver_1"] = { affix = "", "+(10-20) to Dexterity and Intelligence", statOrder = { 1182 }, level = 69, group = "DexterityAndIntelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [2300185227] = { "+(10-20) to Dexterity and Intelligence" }, } }, - ["DexterityAndIntelligenceUnique_2"] = { affix = "", "+(20-30) to Dexterity and Intelligence", statOrder = { 1182 }, level = 20, group = "DexterityAndIntelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [2300185227] = { "+(20-30) to Dexterity and Intelligence" }, } }, - ["DexterityAndIntelligenceUnique_3"] = { affix = "", "+(20-30) to Dexterity and Intelligence", statOrder = { 1182 }, level = 1, group = "DexterityAndIntelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [2300185227] = { "+(20-30) to Dexterity and Intelligence" }, } }, - ["IncreasedAttackSpeedUniqueQuiver10"] = { affix = "", "(7-14)% increased Attack Speed", statOrder = { 1410 }, level = 69, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(7-14)% increased Attack Speed" }, } }, - ["IncreasedLifeUniqueQuiver21"] = { affix = "", "+(75-200) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(75-200) to maximum Life" }, } }, - ["ProjectileSpeedUnique__10"] = { affix = "", "(20-30)% increased Projectile Speed", statOrder = { 1796 }, level = 1, group = "ProjectileSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [3759663284] = { "(20-30)% increased Projectile Speed" }, } }, - ["LifeGainPerTargetUniqueQuiver21"] = { affix = "", "Gain (5-10) Life per Enemy Hit with Attacks", statOrder = { 1740 }, level = 1, group = "LifeGainPerTarget", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHashes = { [2797971005] = { "Gain (5-10) Life per Enemy Hit with Attacks" }, } }, - ["LocalIncreasedEnergyShieldUnique__13"] = { affix = "", "+(30-50) to maximum Energy Shield", statOrder = { 1559 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(30-50) to maximum Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldPercentUnique__34"] = { affix = "", "(60-100)% increased Energy Shield", statOrder = { 1560 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(60-100)% increased Energy Shield" }, } }, - ["DexterityUnique__33"] = { affix = "", "+(20-35) to Dexterity", statOrder = { 1178 }, level = 100, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(20-35) to Dexterity" }, } }, - ["ChaosResistUnique__32"] = { affix = "", "+(20-30)% to Chaos Resistance", statOrder = { 1641 }, level = 100, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(20-30)% to Chaos Resistance" }, } }, - ["AllResistancesUnique_1"] = { affix = "", "-(30-20)% to all Elemental Resistances", statOrder = { 1619 }, level = 100, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "-(30-20)% to all Elemental Resistances" }, } }, - ["ReducedFireResistanceUnique__2"] = { affix = "", "(65-75)% reduced Fire Resistance", statOrder = { 1628 }, level = 100, group = "IncreasedFireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [1680060098] = { "(65-75)% reduced Fire Resistance" }, } }, - ["FireDamagePercentUnique__13"] = { affix = "", "(10-20)% increased Fire Damage", statOrder = { 1357 }, level = 100, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(10-20)% increased Fire Damage" }, } }, - ["FireDamagePercentUnique__14"] = { affix = "", "(30-50)% increased Fire Damage", statOrder = { 1357 }, level = 41, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(30-50)% increased Fire Damage" }, } }, - ["FireDamagePercentUnique__15"] = { affix = "", "(90-110)% increased Fire Damage", statOrder = { 1357 }, level = 1, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(90-110)% increased Fire Damage" }, } }, - ["InflictFireExposureNearbyOnMaxRageUnique_1"] = { affix = "", "[DNT] Inflict Fire Exposure on Nearby Enemies when you reach Maximum Rage", statOrder = { 7276 }, level = 1, group = "InflictFireExposureNearbyOnMaxRage", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire" }, tradeHashes = { [4244612288] = { "[DNT] Inflict Fire Exposure on Nearby Enemies when you reach Maximum Rage" }, } }, - ["NearbyEnemiesHaveFireExposureWhileAtMaxRageUnique_1"] = { affix = "", "Nearby Enemies have Fire Exposure while at maximum Rage", statOrder = { 9460 }, level = 1, group = "NearbyEnemiesFireExposureWhileMaxRage", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire" }, tradeHashes = { [3952509108] = { "Nearby Enemies have Fire Exposure while at maximum Rage" }, } }, - ["FireDoTMultiPerRageUnique_1"] = { affix = "", "Each Rage also grants +2% to Fire Damage Over Time Multiplier", statOrder = { 6579 }, level = 1, group = "FireDoTMultiPerRage", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire" }, tradeHashes = { [3947934765] = { "Each Rage also grants +2% to Fire Damage Over Time Multiplier" }, } }, - ["LocalFireDamageFromLifePercentUnique_1"] = { affix = "", "Attacks with this Weapon have Added Fire Damage equal to (8-12)% of Player's Maximum Life", statOrder = { 2945 }, level = 1, group = "WeaponAddedFireDamagePerMaximumLife", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire" }, tradeHashes = { [3228133944] = { "Attacks with this Weapon have Added Fire Damage equal to (8-12)% of Player's Maximum Life" }, } }, - ["GrantUnleashPowerUnique__1"] = { affix = "", "[DNT] Grants Level 10 Unleash Power", statOrder = { 732 }, level = 1, group = "GrantUnleashPower", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3174866731] = { "[DNT] Grants Level 10 Unleash Power" }, } }, - ["TriggerSocketedSpellOnKillUnique__1"] = { affix = "", "20% chance to Trigger Socketed Spell on Kill, with a 0.5 second Cooldown", statOrder = { 778 }, level = 40, group = "TriggerSocketedSpellOnKill", weightKey = { }, weightVal = { }, modTags = { "skill", "caster", "gem" }, tradeHashes = { [3414107447] = { "20% chance to Trigger Socketed Spell on Kill, with a 0.5 second Cooldown" }, } }, - ["SummonWrithingWormEveryXMsUnique__1"] = { affix = "", "An Enemy Writhing Worm spawns every 2 seconds", statOrder = { 620 }, level = 40, group = "SummonWrithingWormEveryXMs", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [933024928] = { "An Enemy Writhing Worm spawns every 2 seconds" }, } }, - ["AddedDamagePerStrengthUnique__2"] = { affix = "", "Adds 8 to 24 Physical Damage to Attacks per 25 Strength", statOrder = { 4875 }, level = 1, group = "AddedDamagePerStrength", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [787185456] = { "Adds 8 to 24 Physical Damage to Attacks per 25 Strength" }, } }, - ["LocalIncreasedAttackSpeedUnique__41"] = { affix = "", "(20-30)% reduced Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(20-30)% reduced Attack Speed" }, } }, - ["IncreasedAttackAreaOfEffectUnique__4"] = { affix = "", "(20-30)% increased Area of Effect for Attacks", statOrder = { 4835 }, level = 1, group = "IncreasedAttackAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [1840985759] = { "(20-30)% increased Area of Effect for Attacks" }, } }, - ["MaximumLifeOnKillPercentUnique__7"] = { affix = "", "Recover (4-6)% of Life on Kill", statOrder = { 1749 }, level = 1, group = "MaximumLifeOnKillPercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2023107756] = { "Recover (4-6)% of Life on Kill" }, } }, - ["SummonFireSkitterbotUnique__1"] = { affix = "", "Summon Skitterbots also summons a Scorching Skitterbot", statOrder = { 10297 }, level = 20, group = "SummonFireSkitterbot", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3402861859] = { "Summon Skitterbots also summons a Scorching Skitterbot" }, } }, - ["SkitterbotAurasAlsoAffectYouUnique__1"] = { affix = "", "Summoned Skitterbots' Auras affect you as well as Enemies", statOrder = { 10315 }, level = 20, group = "SkitterbotAurasAlsoAffectYou", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2483115633] = { "Summoned Skitterbots' Auras affect you as well as Enemies" }, } }, - ["SkitterbotIncreasedAilmentEffectUnique__1"] = { affix = "", "(50-75)% increased Effect of Non-Damaging Ailments inflicted by Summoned Skitterbots", statOrder = { 10317 }, level = 20, group = "SkitterbotIncreasedAilmentEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1268010771] = { "(50-75)% increased Effect of Non-Damaging Ailments inflicted by Summoned Skitterbots" }, } }, - ["MaximumLifeIncreasePercent2ElderItemsUnique__1"] = { type = "2Elder", affix = "", "(10-15)% increased maximum Life if 2 Elder Items are Equipped", statOrder = { 4453 }, level = 1, group = "MaximumLifeIncreasePercent2ElderItems", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [370215510] = { "(10-15)% increased maximum Life if 2 Elder Items are Equipped" }, } }, - ["NearbyEnemiesAreUnnerved2ElderItemsUnique__1"] = { type = "2Elder", affix = "", "Nearby Enemies are Unnerved if 2 Elder Items are Equipped", statOrder = { 4457 }, level = 1, group = "NearbyEnemiesAreUnnerved2ElderItems", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [282325999] = { "Nearby Enemies are Unnerved if 2 Elder Items are Equipped" }, } }, - ["PhysicalEnergyShieldLeechPermyriad2ElderItemsUnique__1"] = { type = "2Elder", affix = "", "(1-3)% of Physical Damage Leeched as Energy Shield if 2 Elder Items are Equipped", statOrder = { 4447 }, level = 1, group = "PhysicalEnergyShieldLeechPermyriad2ElderItems", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2589667827] = { "(1-3)% of Physical Damage Leeched as Energy Shield if 2 Elder Items are Equipped" }, } }, - ["MaximumManaIncreasePercent2ShaperItemsUnique__1"] = { type = "2Shaper", affix = "", "(10-15)% increased maximum Mana if 2 Shaper Items are Equipped", statOrder = { 4454 }, level = 1, group = "MaximumManaIncreasePercent2ShaperItems", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2440345251] = { "(10-15)% increased maximum Mana if 2 Shaper Items are Equipped" }, } }, - ["GlobalCooldownRecovery2ShaperItemsUnique__1"] = { type = "2Shaper", affix = "", "(10-20)% increased Cooldown Recovery Rate if 2 Shaper Items are Equipped", statOrder = { 4445 }, level = 1, group = "GlobalCooldownRecovery2ShaperItems", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [430973012] = { "(10-20)% increased Cooldown Recovery Rate if 2 Shaper Items are Equipped" }, } }, - ["ElementalEnergyShieldLeechPermyriad2ShaperItemsUnique__1"] = { type = "2Shaper", affix = "", "(1-3)% of Elemental Damage Leeched as Energy Shield if 2 Shaper Items are Equipped", statOrder = { 4446 }, level = 1, group = "ElementalEnergyShieldLeechPermyriad2ShaperItems", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1250221293] = { "(1-3)% of Elemental Damage Leeched as Energy Shield if 2 Shaper Items are Equipped" }, } }, - ["UnaffectedByPoison2HunterItemsUnique__1"] = { type = "2Hunter", affix = "", "Unaffected by Poison if 2 Hunter Items are Equipped", statOrder = { 4448 }, level = 1, group = "UnaffectedByPoison2HunterItems", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [3525542360] = { "Unaffected by Poison if 2 Hunter Items are Equipped" }, } }, - ["RegenerateLifeOver1Second2HunterItemsUnique__1"] = { type = "2Hunter", affix = "", "Every 4 seconds, Regenerate 35% of Life over one second if 2 Hunter Items are Equipped", statOrder = { 4451 }, level = 1, group = "RegenerateLifeOver1Second2HunterItems", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3417925939] = { "Every 4 seconds, Regenerate 35% of Life over one second if 2 Hunter Items are Equipped" }, } }, - ["AdditionalPierce2HunterItemsUnique__1"] = { type = "2Hunter", affix = "", "Projectiles Pierce 2 additional Targets if 2 Hunter Items are Equipped", statOrder = { 4458 }, level = 1, group = "AdditionalPierce2HunterItems", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2813428845] = { "Projectiles Pierce 2 additional Targets if 2 Hunter Items are Equipped" }, } }, - ["UnaffectedByIgnite2WarlordItemsUnique__1"] = { type = "2Warlord", affix = "", "Unaffected by Ignite if 2 Warlord Items are Equipped", statOrder = { 4461 }, level = 1, group = "UnaffectedByIgnite2WarlordItems", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [621302497] = { "Unaffected by Ignite if 2 Warlord Items are Equipped" }, } }, - ["NearbyEnemiesAreIntimidated2WarlordItemsUnique__1"] = { type = "2Warlord", affix = "", "Nearby Enemies are Intimidated if 2 Warlord Items are Equipped", statOrder = { 4456 }, level = 1, group = "NearbyEnemiesAreIntimidated2WarlordItems", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1142276332] = { "Nearby Enemies are Intimidated if 2 Warlord Items are Equipped" }, } }, - ["PercentageStrength2WarlordItemsUnique__1"] = { type = "2Warlord", affix = "", "(10-15)% increased Strength if 2 Warlord Items are Equipped", statOrder = { 4459 }, level = 1, group = "PercentageStrength2WarlordItems", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [2003094183] = { "(10-15)% increased Strength if 2 Warlord Items are Equipped" }, } }, - ["UnaffectedByChill2RedeemerItemsUnique__1"] = { type = "2Redeemer", affix = "", "Unaffected by Chill if 2 Redeemer Items are Equipped", statOrder = { 4460 }, level = 1, group = "UnaffectedByChill2RedeemerItems", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3910756536] = { "Unaffected by Chill if 2 Redeemer Items are Equipped" }, } }, - ["NearbyEnemiesAreBlinded2RedeemerItemsUnique__1"] = { type = "2Redeemer", affix = "", "Nearby Enemies are Blinded if 2 Redeemer Items are Equipped", statOrder = { 4455 }, level = 1, group = "NearbyEnemiesAreBlinded2RedeemerItems", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3844045281] = { "Nearby Enemies are Blinded if 2 Redeemer Items are Equipped" }, } }, - ["PercentageDexterity2RedeemerItemsUnique__1"] = { type = "2Redeemer", affix = "", "(10-15)% increased Dexterity if 2 Redeemer Items are Equipped", statOrder = { 4450 }, level = 1, group = "PercentageDexterity2RedeemerItems", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [2543696990] = { "(10-15)% increased Dexterity if 2 Redeemer Items are Equipped" }, } }, - ["UnaffectedByShock2CrusaderItemsUnique__1"] = { type = "2Crusader", affix = "", "Unaffected by Shock if 2 Crusader Items are Equipped", statOrder = { 4462 }, level = 1, group = "UnaffectedByShock2CrusaderItems", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1060931694] = { "Unaffected by Shock if 2 Crusader Items are Equipped" }, } }, - ["ConsecratedGroundStationary2CrusaderItemsUnique__1"] = { type = "2Crusader", affix = "", "Consecrated Ground around you while stationary if 2 Crusader Items are Equipped", statOrder = { 4449 }, level = 1, group = "ConsecratedGroundStationary2CrusaderItems", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4172727064] = { "Consecrated Ground around you while stationary if 2 Crusader Items are Equipped" }, } }, - ["PercentageIntelligence2CrusaderItemsUnique__1"] = { type = "2Crusader", affix = "", "(10-15)% increased Intelligence if 2 Crusader Items are Equipped", statOrder = { 4452 }, level = 1, group = "PercentageIntelligence2CrusaderItems", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [2531873276] = { "(10-15)% increased Intelligence if 2 Crusader Items are Equipped" }, } }, - ["MaximumBlockChance4ElderItemsUnique__1"] = { type = "4Elder", affix = "", "+3% to maximum Chance to Block Attack Damage if 4 Elder Items are Equipped", statOrder = { 4476 }, level = 1, group = "MaximumBlockChance4ElderItems", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2662252183] = { "+3% to maximum Chance to Block Attack Damage if 4 Elder Items are Equipped" }, } }, - ["PhysicalReflectImmune4ElderItemsUnique__1"] = { type = "4Elder", affix = "", "Cannot take Reflected Physical Damage if 4 Elder Items are Equipped", statOrder = { 4473 }, level = 1, group = "PhysicalReflectImmune4ElderItems", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [609019022] = { "Cannot take Reflected Physical Damage if 4 Elder Items are Equipped" }, } }, - ["AdditionalCriticalStrikeChanceWithAttacks4ElderItemsUnique__1"] = { type = "4Elder", affix = "", "Attacks have +(1-1.5)% to Critical Strike Chance if 4 Elder Items are Equipped", statOrder = { 4465 }, level = 1, group = "AdditionalCriticalStrikeChanceWithAttacks4ElderItems", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [1481800004] = { "Attacks have +(1-1.5)% to Critical Strike Chance if 4 Elder Items are Equipped" }, } }, - ["MaximumSpellBlockChance4ShaperItemsUnique__1"] = { type = "4Shaper", affix = "", "+3% to maximum Chance to Block Spell Damage if 4 Shaper Items are Equipped", statOrder = { 4470 }, level = 1, group = "MaximumSpellBlockChance4ShaperItems", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [1737470038] = { "+3% to maximum Chance to Block Spell Damage if 4 Shaper Items are Equipped" }, } }, - ["ElementalReflectImmune4ShaperItemsUnique__1"] = { type = "4Shaper", affix = "", "Cannot take Reflected Elemental Damage if 4 Shaper Items are Equipped", statOrder = { 4472 }, level = 1, group = "ElementalReflectImmune4ShaperItems", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3797685329] = { "Cannot take Reflected Elemental Damage if 4 Shaper Items are Equipped" }, } }, - ["AdditionalCriticalStrikeChanceWithSpells4ShaperItemsUnique__1"] = { type = "4Shaper", affix = "", "+(1-1.5)% to Spell Critical Strike Chance if 4 Shaper Items are Equipped", statOrder = { 4480 }, level = 1, group = "AdditionalCriticalStrikeChanceWithSpells4ShaperItems", weightKey = { }, weightVal = { }, modTags = { "caster", "critical" }, tradeHashes = { [4216579611] = { "+(1-1.5)% to Spell Critical Strike Chance if 4 Shaper Items are Equipped" }, } }, - ["ElementalDamageTakenAsChaos4HunterItemsUnique__1"] = { type = "4Hunter", affix = "", "(5-10)% of Elemental Damage taken as Chaos Damage if 4 Hunter Items are Equipped", statOrder = { 4474 }, level = 1, group = "ElementalDamageTakenAsChaos4HunterItems", weightKey = { }, weightVal = { }, modTags = { "elemental", "chaos" }, tradeHashes = { [2251969898] = { "(5-10)% of Elemental Damage taken as Chaos Damage if 4 Hunter Items are Equipped" }, } }, - ["MovementVelocity4HunterItemsUnique__1"] = { type = "4Hunter", affix = "", "(10-15)% increased Movement Speed if 4 Hunter Items are Equipped", statOrder = { 4471 }, level = 1, group = "MovementVelocity4HunterItems", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [502694677] = { "(10-15)% increased Movement Speed if 4 Hunter Items are Equipped" }, } }, - ["MaximumChaosResistance4HunterItemsUnique__1"] = { type = "4Hunter", affix = "", "+(2-3)% to maximum Chaos Resistance if 4 Hunter Items are Equipped", statOrder = { 4466 }, level = 1, group = "MaximumChaosResistance4HunterItems", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [1065101352] = { "+(2-3)% to maximum Chaos Resistance if 4 Hunter Items are Equipped" }, } }, - ["PhysicalDamageTakenAsFirePercent4WarlordItemsUnique__1"] = { type = "4Warlord", affix = "", "(5-10)% of Physical Damage taken as Fire Damage if 4 Warlord Items are Equipped", statOrder = { 4478 }, level = 1, group = "PhysicalDamageTakenAsFirePercent4WarlordItems", weightKey = { }, weightVal = { }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3003230483] = { "(5-10)% of Physical Damage taken as Fire Damage if 4 Warlord Items are Equipped" }, } }, - ["EnduranceChargeIfHitRecently4WarlordItemsUnique__1"] = { type = "4Warlord", affix = "", "Gain 1 Endurance Charge every second if you've been Hit Recently and", "4 Warlord Items are Equipped", statOrder = { 4475, 4475.1 }, level = 1, group = "EnduranceChargeIfHitRecently4WarlordItems", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHashes = { [4160015669] = { "Gain 1 Endurance Charge every second if you've been Hit Recently and", "4 Warlord Items are Equipped" }, } }, - ["MaximumFireResist4WarlordItemsUnique__1"] = { type = "4Warlord", affix = "", "+(2-3)% to maximum Fire Resistance if 4 Warlord Items are Equipped", statOrder = { 4468 }, level = 1, group = "MaximumFireResist4WarlordItems", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [1417125941] = { "+(2-3)% to maximum Fire Resistance if 4 Warlord Items are Equipped" }, } }, - ["PhysicalDamageTakenAsCold4RedeemerItemsUnique__1"] = { type = "4Redeemer", affix = "", "(5-10)% of Physical Damage taken as Cold Damage if 4 Redeemer Items are Equipped", statOrder = { 4477 }, level = 1, group = "PhysicalDamageTakenAsCold4RedeemerItems", weightKey = { }, weightVal = { }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [2351364973] = { "(5-10)% of Physical Damage taken as Cold Damage if 4 Redeemer Items are Equipped" }, } }, - ["FrenzyChargeOnHitChance4RedeemerItemsUnique__1"] = { type = "4Redeemer", affix = "", "(10-15)% chance to gain a Frenzy Charge on Hit if 4 Redeemer Items are Equipped", statOrder = { 4463 }, level = 1, group = "FrenzyChargeOnHitChance4RedeemerItems", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [1571123250] = { "(10-15)% chance to gain a Frenzy Charge on Hit if 4 Redeemer Items are Equipped" }, } }, - ["MaximumColdResist4RedeemerItemsUnique__1"] = { type = "4Redeemer", affix = "", "+(2-3)% to maximum Cold Resistance if 4 Redeemer Items are Equipped", statOrder = { 4467 }, level = 1, group = "MaximumColdResist4RedeemerItems", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4123011890] = { "+(2-3)% to maximum Cold Resistance if 4 Redeemer Items are Equipped" }, } }, - ["PhysicalDamageTakenAsLightningPercent4CrusaderItemsUnique__1"] = { type = "4Crusader", affix = "", "(5-10)% of Physical Damage taken as Lightning Damage if 4 Crusader Items are Equipped", statOrder = { 4479 }, level = 1, group = "PhysicalDamageTakenAsLightningPercent4CrusaderItems", weightKey = { }, weightVal = { }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [2006105838] = { "(5-10)% of Physical Damage taken as Lightning Damage if 4 Crusader Items are Equipped" }, } }, - ["PowerChargeOnHit4CrusaderItemsUnique__1"] = { type = "4Crusader", affix = "", "(10-15)% chance to gain a Power Charge on Hit if 4 Crusader Items are Equipped", statOrder = { 4464 }, level = 1, group = "PowerChargeOnHit4CrusaderItems", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [4060882278] = { "(10-15)% chance to gain a Power Charge on Hit if 4 Crusader Items are Equipped" }, } }, - ["MaximumLightningResistance4CrusaderItemsUnique__1"] = { type = "4Crusader", affix = "", "+(2-3)% to maximum Lightning Resistance if 4 Crusader Items are Equipped", statOrder = { 4469 }, level = 1, group = "MaximumLightningResistance4CrusaderItems", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [901386819] = { "+(2-3)% to maximum Lightning Resistance if 4 Crusader Items are Equipped" }, } }, - ["CannotBeStunned6ElderItemsUnique__1"] = { type = "6Elder", affix = "", "Cannot be Stunned if 6 Elder Items are Equipped", statOrder = { 4485 }, level = 1, group = "CannotBeStunned6ElderItems", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3183988184] = { "Cannot be Stunned if 6 Elder Items are Equipped" }, } }, - ["GlobalPhysicalGemLevel6ElderItemsUnique__1"] = { type = "6Elder", affix = "", "+1 to Level of all Physical Skill Gems if 6 Elder Items are Equipped", statOrder = { 4497 }, level = 1, group = "GlobalPhysicalGemLevel6ElderItems", weightKey = { }, weightVal = { }, modTags = { "physical", "gem" }, tradeHashes = { [3564190077] = { "+1 to Level of all Physical Skill Gems if 6 Elder Items are Equipped" }, } }, - ["PercentageAllAttributes6ElderItemsUnique__1"] = { type = "6Elder", affix = "", "(10-15)% increased Attributes if 6 Elder Items are Equipped", statOrder = { 4483 }, level = 1, group = "PercentageAllAttributes6ElderItems", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3237046450] = { "(10-15)% increased Attributes if 6 Elder Items are Equipped" }, } }, - ["PhysAddedAsEachElement6ShaperItemsUnique__1"] = { type = "6Shaper", affix = "", "Gain (10-15)% of Physical Damage as Extra Damage of each Element if", "6 Shaper Items are Equipped", statOrder = { 4496, 4496.1 }, level = 1, group = "PhysAddedAsEachElement6ShaperItems", weightKey = { }, weightVal = { }, modTags = { "earth_elemental", "physical" }, tradeHashes = { [725571864] = { "Gain (10-15)% of Physical Damage as Extra Damage of each Element if", "6 Shaper Items are Equipped" }, } }, - ["MaximumElementalResistance6ShaperItemsUnique__1"] = { type = "6Shaper", affix = "", "+(1-2)% to all maximum Elemental Resistances if 6 Shaper Items are Equipped", statOrder = { 4481 }, level = 1, group = "MaximumElementalResistance6ShaperItems", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [15754647] = { "+(1-2)% to all maximum Elemental Resistances if 6 Shaper Items are Equipped" }, } }, - ["GlobalSupportGemLevel6ShaperItemsUnique__1"] = { type = "6Shaper", affix = "", "+1 to Level of all non-Exceptional Support Gems if 6 Shaper Items are Equipped", statOrder = { 4498 }, level = 1, group = "GlobalSupportGemLevel6ShaperItems", weightKey = { }, weightVal = { }, modTags = { "physical", "gem" }, tradeHashes = { [1592303791] = { "+1 to Level of all non-Exceptional Support Gems if 6 Shaper Items are Equipped" }, } }, - ["AdditionalCurseOnEnemies6HunterItemsUnique__1"] = { type = "6Hunter", affix = "", "You can apply an additional Curse if 6 Hunter Items are Equipped", statOrder = { 4495 }, level = 1, group = "AdditionalCurseOnEnemies6HunterItems", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [1397871191] = { "You can apply an additional Curse if 6 Hunter Items are Equipped" }, } }, - ["GlobalChaosGemLevel6HunterItemsUnique__1"] = { type = "6Hunter", affix = "", "+1 to Level of all Chaos Skill Gems if 6 Hunter Items are Equipped", statOrder = { 4487 }, level = 1, group = "GlobalChaosGemLevel6HunterItems", weightKey = { }, weightVal = { }, modTags = { "chaos", "gem" }, tradeHashes = { [436225640] = { "+1 to Level of all Chaos Skill Gems if 6 Hunter Items are Equipped" }, } }, - ["AdditionalProjectile6HunterItemsUnique__1"] = { type = "6Hunter", affix = "", "Skills fire an additional Projectile if 6 Hunter Items are Equipped", statOrder = { 4482 }, level = 1, group = "AdditionalProjectile6HunterItems", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3778002979] = { "Skills fire an additional Projectile if 6 Hunter Items are Equipped" }, } }, - ["FortifyOnMeleeHit6WarlordItemsUnique__1"] = { type = "6Warlord", affix = "", "Melee Hits Fortify if 6 Warlord Items are Equipped", statOrder = { 4486 }, level = 1, group = "FortifyOnMeleeHit6WarlordItems", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2239810203] = { "Melee Hits Fortify if 6 Warlord Items are Equipped" }, } }, - ["GlobalFireGemLevel6WarlordItemsUnique__1"] = { type = "6Warlord", affix = "", "+1 to Level of all Fire Skill Gems if 6 Warlord Items are Equipped", statOrder = { 4489 }, level = 1, group = "GlobalFireGemLevel6WarlordItems", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "gem" }, tradeHashes = { [355220397] = { "+1 to Level of all Fire Skill Gems if 6 Warlord Items are Equipped" }, } }, - ["MaximumEnduranceCharges6WarlordItemsUnique__1"] = { type = "6Warlord", affix = "", "+1 to Maximum Endurance Charges if 6 Warlord Items are Equipped", statOrder = { 4492 }, level = 1, group = "MaximumEnduranceCharges6WarlordItems", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHashes = { [2657325376] = { "+1 to Maximum Endurance Charges if 6 Warlord Items are Equipped" }, } }, - ["CannotBeFrozen6RedeemerItemsUnique__1"] = { type = "6Redeemer", affix = "", "Cannot be Frozen if 6 Redeemer Items are Equipped", statOrder = { 4484 }, level = 1, group = "CannotBeFrozen6RedeemerItems", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3423343084] = { "Cannot be Frozen if 6 Redeemer Items are Equipped" }, } }, - ["GlobalColdGemLevel6RedeemerItemsUnique__1"] = { type = "6Redeemer", affix = "", "+1 to Level of all Cold Skill Gems if 6 Redeemer Items are Equipped", statOrder = { 4488 }, level = 1, group = "GlobalColdGemLevel6RedeemerItems", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "gem" }, tradeHashes = { [3496906750] = { "+1 to Level of all Cold Skill Gems if 6 Redeemer Items are Equipped" }, } }, - ["MaximumFrenzyCharges6RedeemerItemsUnique__1"] = { type = "6Redeemer", affix = "", "+1 to Maximum Frenzy Charges if 6 Redeemer Items are Equipped", statOrder = { 4493 }, level = 1, group = "MaximumFrenzyCharges6RedeemerItems", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [1138578442] = { "+1 to Maximum Frenzy Charges if 6 Redeemer Items are Equipped" }, } }, - ["PhysicalDamagePreventedAsEnergyShieldRegen6CrusaderItemsUnique__1"] = { type = "6Crusader", affix = "", "(1-3)% of Physical Damage Prevented Recently is Regenerated as Energy Shield Per Second if 6 Crusader Items are Equipped", statOrder = { 4490 }, level = 1, group = "PhysicalDamagePreventedAsEnergyShieldRegen6CrusaderItems", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [2588231083] = { "(1-3)% of Physical Damage Prevented Recently is Regenerated as Energy Shield Per Second if 6 Crusader Items are Equipped" }, } }, - ["GlobalLightningGemLevel6CrusaderItemsUnique__1"] = { type = "6Crusader", affix = "", "+1 to Level of all Lightning Skill Gems if 6 Crusader Items are Equipped", statOrder = { 4491 }, level = 1, group = "GlobalLightningGemLevel6CrusaderItems", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "gem" }, tradeHashes = { [1038851119] = { "+1 to Level of all Lightning Skill Gems if 6 Crusader Items are Equipped" }, } }, - ["IncreasedMaximumPowerCharges6CrusaderItemsUnique__1"] = { type = "6Crusader", affix = "", "+1 to Maximum Power Charges if 6 Crusader Items are Equipped", statOrder = { 4494 }, level = 1, group = "IncreasedMaximumPowerCharges6CrusaderItems", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [1460122571] = { "+1 to Maximum Power Charges if 6 Crusader Items are Equipped" }, } }, - ["MovementSpeedPer5RageUnique_1"] = { affix = "", "(2-3)% increased Movement Speed per 5 Rage", statOrder = { 9424 }, level = 1, group = "MovementSpeedPer5Rage", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2876770866] = { "(2-3)% increased Movement Speed per 5 Rage" }, } }, - ["MaximumRageHalvedUnique_1"] = { affix = "", "Maximum Rage is Halved", statOrder = { 9180 }, level = 80, group = "MaximumRageHalved", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [73569783] = { "Maximum Rage is Halved" }, } }, - ["DamageTakenPer5RageCappedAt50PercentUnique_1"] = { affix = "", "5% less Damage taken per 5 Rage, up to a maximum of 30%", statOrder = { 6096 }, level = 1, group = "DamageTakenLessPercentPer5RageCapped", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2733459550] = { "5% less Damage taken per 5 Rage, up to a maximum of 30%" }, } }, - ["AdditionalRageLossPerMinute"] = { affix = "", "Lose (1-3) Rage per second", statOrder = { 4586 }, level = 1, group = "AdditionalRageLossPerMinute", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1124360291] = { "Lose (1-3) Rage per second" }, } }, - ["TrapAndMineThrowSpeedUnique_1"] = { affix = "", "(15-25)% increased Trap and Mine Throwing Speed", statOrder = { 10415 }, level = 20, group = "TrapAndMineThrowSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [464535071] = { "(15-25)% increased Trap and Mine Throwing Speed" }, } }, - ["CountAsHavingMaxEnduranceChargesUnique__1"] = { affix = "", "Count as having maximum number of Endurance Charges", statOrder = { 5885 }, level = 1, group = "CountAsHavingMaxEnduranceCharges", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1090017486] = { "Count as having maximum number of Endurance Charges" }, } }, - ["CountAsHavingMaxFrenzyChargesUnique__1"] = { affix = "", "Count as having maximum number of Frenzy Charges", statOrder = { 5887 }, level = 1, group = "CountAsHavingMaxFrenzyCharges", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2046300872] = { "Count as having maximum number of Frenzy Charges" }, } }, - ["CountAsHavingMaxPowerChargesUnique__1"] = { affix = "", "Count as having maximum number of Power Charges", statOrder = { 5888 }, level = 1, group = "CountAsHavingMaxPowerCharges", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [800091665] = { "Count as having maximum number of Power Charges" }, } }, - ["CountAsBlockingAttackFromShieldAttackFirstTargetUnique__1"] = { affix = "", "Count as Blocking Attack Damage from the first target Hit with each Shield Attack", statOrder = { 5884 }, level = 40, group = "CountAsBlockingAttackFromShieldAttackFirstTarget", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2196928545] = { "Count as Blocking Attack Damage from the first target Hit with each Shield Attack" }, } }, - ["CorruptedBloodImmunityUnique_1"] = { affix = "", "Corrupted Blood cannot be inflicted on you", statOrder = { 5408 }, level = 1, group = "CorruptedBloodImmunity", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [1658498488] = { "Corrupted Blood cannot be inflicted on you" }, } }, - ["GhostTotemLimitUnique__1"] = { affix = "", "Maximum (3-5) Spectral Totems", statOrder = { 9534 }, level = 1, group = "GhostTotemLimit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4154520427] = { "Maximum (3-5) Spectral Totems" }, } }, - ["GhostTotemDurationUnique__1"] = { affix = "", "Totems which would be killed by Enemies become Spectral Totems for 8 seconds instead", statOrder = { 5021 }, level = 1, group = "GhostTotemDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4016251064] = { "Totems which would be killed by Enemies become Spectral Totems for 8 seconds instead" }, } }, - ["GhostTotemDamageUnique__1"] = { affix = "", "Skills used by Spectral Totems deal (40-50)% less Damage", statOrder = { 6862 }, level = 80, group = "GhostTotemDamage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3959546773] = { "Skills used by Spectral Totems deal (40-50)% less Damage" }, } }, - ["FoolishlyDrawnAttentionUnique_1"] = { affix = "", "The stars are aligned if you have 6 Influence types among other Equipped Items", statOrder = { 499 }, level = 86, group = "FoolishlyDrawnAttention", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1389615049] = { "The stars are aligned if you have 6 Influence types among other Equipped Items" }, } }, - ["ConsecratedGroundEffectUnique__1"] = { affix = "", "(30-50)% increased Effect of Consecrated Ground you create", statOrder = { 5847 }, level = 1, group = "ConsecratedGroundEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4058190193] = { "(30-50)% increased Effect of Consecrated Ground you create" }, } }, - ["MutatedUniqueBow4BowAttacksUsableWithoutMana"] = { affix = "", "Insufficient Mana doesn't prevent your Bow Attacks", statOrder = { 5264 }, level = 1, group = "BowAttacksUsableWithoutMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "mana", "attack" }, tradeHashes = { [2564976564] = { "Insufficient Mana doesn't prevent your Bow Attacks" }, } }, - ["MutatedUniqueBow4AreaOfEffect"] = { affix = "", "(40-60)% increased Area of Effect", statOrder = { 1880 }, level = 1, group = "AreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [280731498] = { "(40-60)% increased Area of Effect" }, } }, - ["MutatedUniqueHelmetDex3ChaosResistance"] = { affix = "", "+(50-75)% to Chaos Resistance", statOrder = { 1641 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(50-75)% to Chaos Resistance" }, } }, - ["MutatedUniqueHelmetDex5LocalIncreaseSocketedMinionGemLevel"] = { affix = "", "+2 to Level of Socketed Minion Gems", statOrder = { 180 }, level = 1, group = "LocalIncreaseSocketedMinionGemLevel", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "minion", "gem" }, tradeHashes = { [3604946673] = { "+2 to Level of Socketed Minion Gems" }, } }, - ["MutatedUniqueHelmetDex5LifeReservationEfficiency"] = { affix = "", "32% increased Life Reservation Efficiency of Skills", statOrder = { 2226 }, level = 1, group = "LifeReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "life" }, tradeHashes = { [635485889] = { "32% increased Life Reservation Efficiency of Skills" }, } }, - ["MutatedUniqueBow18FasterIgnite"] = { affix = "", "Ignites you inflict deal Damage (20-40)% faster", statOrder = { 2564 }, level = 1, group = "FasterIgniteDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "mutatedunique", "damage", "elemental", "fire", "ailment" }, tradeHashes = { [2443492284] = { "Ignites you inflict deal Damage (20-40)% faster" }, } }, - ["MutatedUniqueBow19SupportedByImmolate"] = { affix = "", "Socketed Gems are Supported by Level 30 Immolate", statOrder = { 309 }, level = 1, group = "DisplaySupportedByImmolate", weightKey = { }, weightVal = { }, modTags = { "support", "mutatedunique", "gem" }, tradeHashes = { [2420410470] = { "Socketed Gems are Supported by Level 30 Immolate" }, } }, - ["MutatedUniqueBow19AllDamageCanIgnite"] = { affix = "", "All Damage can Ignite", statOrder = { 4625 }, level = 1, group = "AllDamageCanIgnite", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "elemental", "fire", "ailment" }, tradeHashes = { [1369840970] = { "All Damage can Ignite" }, } }, - ["MutatedUniqueHelmetStr4FireDamageTakenAsPhysical"] = { affix = "", "30% of Fire Damage from Hits taken as Physical Damage", statOrder = { 2445 }, level = 1, group = "FireDamageTakenAsPhysical", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "physical", "elemental", "fire" }, tradeHashes = { [3205239847] = { "30% of Fire Damage from Hits taken as Physical Damage" }, } }, - ["MutatedUniqueHelmetStr4TotemLifeIncreasedByOvercappedFireResistance"] = { affix = "", "Totem Life is increased by their Overcapped Fire Resistance", statOrder = { 10397 }, level = 1, group = "TotemLifeIncreasedByOvercappedFireResistance", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "resistance" }, tradeHashes = { [284063465] = { "Totem Life is increased by their Overcapped Fire Resistance" }, } }, - ["MutatedUniqueHelmetStr5SupportedByMinionLife"] = { affix = "", "Socketed Gems are Supported by Level 30 Minion Life", statOrder = { 504 }, level = 1, group = "DisplaySocketedGemsSupportedByMinionLife", weightKey = { }, weightVal = { }, modTags = { "support", "mutatedunique", "gem" }, tradeHashes = { [1337327984] = { "Socketed Gems are Supported by Level 30 Minion Life" }, } }, - ["MutatedUniqueAmulet37PhysicalDamageTakenAsFire"] = { affix = "", "(5-15)% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2447 }, level = 1, group = "PhysicalDamageTakenAsFirePercent", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "(5-15)% of Physical Damage from Hits taken as Fire Damage" }, } }, - ["MutatedUniqueAmulet37NearbyEnemiesDebilitated"] = { affix = "", "Nearby Enemies are Debilitated", statOrder = { 7908 }, level = 1, group = "NearbyEnemiesDebilitated", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [2006060276] = { "Nearby Enemies are Debilitated" }, } }, - ["MutatedUniqueAmulet38KeystoneElementalOverload"] = { affix = "", "Elemental Overload", statOrder = { 10783 }, level = 1, group = "ElementalOverload", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "mutatedunique", "damage", "elemental", "critical" }, tradeHashes = { [3574189159] = { "Elemental Overload" }, } }, - ["MutatedUniqueWand15PowerChargeOnManaSpent"] = { affix = "", "Gain a Power Charge after Spending a total of 200 Mana", statOrder = { 7893 }, level = 1, group = "PowerChargeOnManaSpent", weightKey = { }, weightVal = { }, modTags = { "power_charge", "mutatedunique" }, tradeHashes = { [3269060224] = { "Gain a Power Charge after Spending a total of 200 Mana" }, } }, - ["MutatedUniqueWand15GlobalIncreaseColdSpellSkillGemLevel"] = { affix = "", "+(2-3) to Level of all Cold Spell Skill Gems", statOrder = { 1611 }, level = 1, group = "GlobalIncreaseColdSpellSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "elemental", "cold", "caster", "gem" }, tradeHashes = { [2254480358] = { "+(2-3) to Level of all Cold Spell Skill Gems" }, } }, - ["MutatedUniqueWand16ColdDamageOverTimeMultiplierPerPowerCharge"] = { affix = "", "+(15-20)% to Cold Damage over Time Multiplier per Power Charge", statOrder = { 5806 }, level = 1, group = "ColdDamageOverTimeMultiplierPerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "elemental", "cold" }, tradeHashes = { [2936849585] = { "+(15-20)% to Cold Damage over Time Multiplier per Power Charge" }, } }, - ["MutatedUniqueBodyDex10PurityOfIceNoReservation"] = { affix = "", "Purity of Ice has no Reservation", statOrder = { 9774 }, level = 1, group = "PurityOfIceNoReservation", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "aura" }, tradeHashes = { [1622979279] = { "Purity of Ice has no Reservation" }, } }, - ["MutatedUniqueBodyDex10EvasionRatingPer10PlayerLife"] = { affix = "", "+6 to Evasion Rating per 10 Player Maximum Life", statOrder = { 6484 }, level = 1, group = "EvasionRatingPer10PlayerLife", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "life", "defences" }, tradeHashes = { [3637775205] = { "+6 to Evasion Rating per 10 Player Maximum Life" }, } }, - ["MutatedUniqueBodyDex11GhostDance"] = { affix = "", "Ghost Dance", statOrder = { 10787 }, level = 1, group = "GhostDance", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "defences", "evasion", "energy_shield" }, tradeHashes = { [3590128077] = { "Ghost Dance" }, } }, - ["MutatedUniqueBodyDex11EvasionRatingPer10PlayerLife"] = { affix = "", "+8 to Evasion Rating per 10 Player Maximum Life", statOrder = { 6484 }, level = 1, group = "EvasionRatingPer10PlayerLife", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "life", "defences" }, tradeHashes = { [3637775205] = { "+8 to Evasion Rating per 10 Player Maximum Life" }, } }, - ["MutatedUniqueAmulet39PhysicalDamageTakenAsCold"] = { affix = "", "(5-15)% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2448 }, level = 1, group = "PhysicalDamageTakenAsCold", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "physical", "elemental", "cold" }, tradeHashes = { [1871056256] = { "(5-15)% of Physical Damage from Hits taken as Cold Damage" }, } }, - ["MutatedUniqueAmulet39CannotBeFrozen"] = { affix = "", "Cannot be Frozen", statOrder = { 1838 }, level = 1, group = "CannotBeFrozen", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "elemental", "cold", "ailment" }, tradeHashes = { [876831634] = { "Cannot be Frozen" }, } }, - ["MutatedUniqueAmulet40CannotBeChilled"] = { affix = "", "Cannot be Chilled", statOrder = { 1837 }, level = 1, group = "CannotBeChilled", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "ailment" }, tradeHashes = { [283649372] = { "Cannot be Chilled" }, } }, - ["MutatedUniqueClaw16PercentageStrength"] = { affix = "", "(8-12)% increased Strength", statOrder = { 1184 }, level = 1, group = "PercentageStrength", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "attribute" }, tradeHashes = { [734614379] = { "(8-12)% increased Strength" }, } }, - ["MutatedUniqueClaw16AccuracyRatingPercentPer25Intelligence"] = { affix = "", "3% increased Accuracy Rating per 25 Intelligence", statOrder = { 4510 }, level = 1, group = "AccuracyRatingPercentPer25Intelligence", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [4106889136] = { "3% increased Accuracy Rating per 25 Intelligence" }, } }, - ["MutatedUniqueClaw17PercentageStrength"] = { affix = "", "(8-12)% increased Strength", statOrder = { 1184 }, level = 1, group = "PercentageStrength", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "attribute" }, tradeHashes = { [734614379] = { "(8-12)% increased Strength" }, } }, - ["MutatedUniqueClaw17CriticalStrikeMultiplierPer25Dexterity"] = { affix = "", "+3% to Critical Strike Multiplier per 25 Dexterity", statOrder = { 5949 }, level = 1, group = "CriticalStrikeMultiplierPer25Dexterity", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "critical" }, tradeHashes = { [2846122155] = { "+3% to Critical Strike Multiplier per 25 Dexterity" }, } }, - ["MutatedUniqueShieldInt8DamageCannotBeReflected"] = { affix = "", "Damage cannot be Reflected", statOrder = { 6021 }, level = 1, group = "DamageCannotBeReflected", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [2670993553] = { "Damage cannot be Reflected" }, } }, - ["MutatedUniqueShieldInt8AlwaysShockLowLifeEnemies"] = { affix = "", "Hits always Shock Enemies that are on Low Life", statOrder = { 4658 }, level = 1, group = "AlwaysShockLowLifeEnemies", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "ailment" }, tradeHashes = { [2610583760] = { "Hits always Shock Enemies that are on Low Life" }, } }, - ["MutatedUniqueShieldInt9DamageCannotBeReflected"] = { affix = "", "Damage cannot be Reflected", statOrder = { 6021 }, level = 1, group = "DamageCannotBeReflected", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [2670993553] = { "Damage cannot be Reflected" }, } }, - ["MutatedUniqueShieldInt9ChaosDamageDoesNotBypassESWhileNotLowMana"] = { affix = "", "Chaos Damage taken does not bypass Energy Shield while not on Low Mana", statOrder = { 5730 }, level = 1, group = "ChaosDamageDoesNotBypassESWhileNotLowMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "mana", "defences", "energy_shield", "chaos" }, tradeHashes = { [795512669] = { "Chaos Damage taken does not bypass Energy Shield while not on Low Mana" }, } }, - ["MutatedUniqueAmulet41MaximumLightningResistance"] = { affix = "", "+3% to maximum Lightning Resistance", statOrder = { 1634 }, level = 1, group = "MaximumLightningResistance", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+3% to maximum Lightning Resistance" }, } }, - ["MutatedUniqueAmulet41EnemyExtraDamageRolls"] = { affix = "", "Damage of Enemies Hitting you is Unlucky", statOrder = { 5012 }, level = 1, group = "EnemyExtraDamageRolls", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [1937473464] = { "Damage of Enemies Hitting you is Unlucky" }, } }, - ["MutatedUniqueAmulet42ManaIncreasedPerOvercappedLightningResistUniqueAmulet42"] = { affix = "", "Mana is increased by 1% per 4% Overcapped Lightning Resistance", statOrder = { 8182 }, level = 1, group = "ManaIncreasedPerOvercappedLightningResistUniqueAmulet42", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "mana", "elemental", "lightning" }, tradeHashes = { [3178534707] = { "Mana is increased by 1% per 4% Overcapped Lightning Resistance" }, } }, - ["MutatedUniqueBootsStr6IncreasedArmourWhileBleeding"] = { affix = "", "(50-100)% increased Armour while Bleeding", statOrder = { 4773 }, level = 1, group = "IncreasedArmourWhileBleeding", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "defences", "armour" }, tradeHashes = { [2466912132] = { "(50-100)% increased Armour while Bleeding" }, } }, - ["MutatedUniqueBootsStr6ImmuneToElementalAilmentsWhileBleeding"] = { affix = "", "Immune to Elemental Ailments while Bleeding", statOrder = { 7224 }, level = 1, group = "ImmuneToElementalAilmentsWhileBleeding", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "ailment" }, tradeHashes = { [2526304488] = { "Immune to Elemental Ailments while Bleeding" }, } }, - ["MutatedUniqueBootsStr7GainEnduranceChargeEveryXSecondsWhileStationary"] = { affix = "", "Gain an Endurance Charge each second while Stationary", statOrder = { 6708 }, level = 1, group = "GainEnduranceChargePerXSecondsWhileStationary", weightKey = { }, weightVal = { }, modTags = { "endurance_charge", "mutatedunique" }, tradeHashes = { [3331206505] = { "Gain an Endurance Charge each second while Stationary" }, } }, - ["MutatedUniqueBottsStr7GainPowerChargeOnHitWhileBleeding"] = { affix = "", "Gain a Power Charge on Hit while Bleeding", statOrder = { 6807 }, level = 1, group = "GainPowerChargeOnHitWhileBleeding", weightKey = { }, weightVal = { }, modTags = { "power_charge", "mutatedunique", "ailment" }, tradeHashes = { [3468151987] = { "Gain a Power Charge on Hit while Bleeding" }, } }, - ["MutatedUniqueTwoHandAxe11WarcriesExertAnAdditionalAttack"] = { affix = "", "Warcries Exert 1 additional Attack", statOrder = { 10571 }, level = 1, group = "WarcriesExertAnAdditionalAttack", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [1434716233] = { "Warcries Exert 1 additional Attack" }, } }, - ["MutatedUniqueTwoHandAxe11WarcryCooldownSpeed"] = { affix = "", "500% increased Warcry Cooldown Recovery Rate", statOrder = { 3329 }, level = 1, group = "WarcryCooldownSpeed", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [4159248054] = { "500% increased Warcry Cooldown Recovery Rate" }, } }, - ["MutatedUniqueTwoHandAxe12PercentageIntelligence"] = { affix = "", "80% reduced Intelligence", statOrder = { 1186 }, level = 1, group = "PercentageIntelligence", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "attribute" }, tradeHashes = { [656461285] = { "80% reduced Intelligence" }, } }, - ["MutatedUniqueTwoHandAxe12FasterBleedDamage"] = { affix = "", "Bleeding you inflict deals Damage (20-40)% faster", statOrder = { 6545 }, level = 1, group = "FasterBleedDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "bleed", "mutatedunique", "damage", "physical", "attack", "ailment" }, tradeHashes = { [3828375170] = { "Bleeding you inflict deals Damage (20-40)% faster" }, } }, - ["MutatedUniqueShieldStr8MaximumBlockChance"] = { affix = "", "+3% to maximum Chance to Block Attack Damage", statOrder = { 1988 }, level = 1, group = "MaximumBlockChance", weightKey = { }, weightVal = { }, modTags = { "block", "mutatedunique" }, tradeHashes = { [4124805414] = { "+3% to maximum Chance to Block Attack Damage" }, } }, - ["MutatedUniqueShieldStr8ArmourAppliesToElementalIfBlockedRecently"] = { affix = "", "(8-12)% of Armour applies to Fire, Cold and Lightning Damage taken from Hits if you have Blocked Recently", statOrder = { 4749 }, level = 1, group = "ArmourAppliesToElementalIfBlockedRecently", weightKey = { }, weightVal = { }, modTags = { "block", "mutatedunique", "defences" }, tradeHashes = { [1239225602] = { "(8-12)% of Armour applies to Fire, Cold and Lightning Damage taken from Hits if you have Blocked Recently" }, } }, - ["MutatedUniqueShieldStr9GainEnergyShieldOnBlock"] = { affix = "", "Gain (300-650) Energy Shield when you Block", statOrder = { 1759 }, level = 1, group = "GainEnergyShieldOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "mutatedunique", "defences", "energy_shield" }, tradeHashes = { [450695450] = { "Gain (300-650) Energy Shield when you Block" }, } }, - ["MutatedUniqueOneHandSword22MinionUnholyMightChance"] = { affix = "", "Minions have 25% chance to gain Unholy Might for 4 seconds on Kill", statOrder = { 3379 }, level = 1, group = "MinionUnholyMightChance", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "chaos", "minion" }, tradeHashes = { [3131367308] = { "Minions have 25% chance to gain Unholy Might for 4 seconds on Kill" }, } }, - ["MutatedUniqueOneHandSword23MinionUnholyMightChance"] = { affix = "", "Minions have 25% chance to gain Unholy Might for 4 seconds on Kill", statOrder = { 3379 }, level = 1, group = "MinionUnholyMightChance", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "chaos", "minion" }, tradeHashes = { [3131367308] = { "Minions have 25% chance to gain Unholy Might for 4 seconds on Kill" }, } }, - ["MutatedUniqueOneHandSword22MinionBaseCriticalStrikeChance"] = { affix = "", "Minions have +5% to Critical Strike Chance", statOrder = { 9267 }, level = 1, group = "MinionBaseCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "minion", "critical" }, tradeHashes = { [440812751] = { "Minions have +5% to Critical Strike Chance" }, } }, - ["MutatedUniqueOneHandSword23MinionSkillGemQuality"] = { affix = "", "+(20-30)% to Quality of all Minion Skill Gems", statOrder = { 9331 }, level = 1, group = "MinionSkillGemQuality", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "minion", "gem" }, tradeHashes = { [1723333214] = { "+(20-30)% to Quality of all Minion Skill Gems" }, } }, - ["MutatedUniqueBodyInt13SocketedGemQuality"] = { affix = "", "+20% to Quality of Socketed Gems", statOrder = { 204 }, level = 1, group = "SocketedGemQuality", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "gem" }, tradeHashes = { [3828613551] = { "+20% to Quality of Socketed Gems" }, } }, - ["MutatedUniqueBodyInt13IncreasedAllResistances"] = { affix = "", "50% increased Elemental and Chaos Resistances", statOrder = { 4629 }, level = 1, group = "IncreasedAllResistances", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "resistance" }, tradeHashes = { [1195367742] = { "50% increased Elemental and Chaos Resistances" }, } }, - ["MutatedUniqueBodyInt14aSocketedGemQuality"] = { affix = "", "+30% to Quality of Socketed Gems", statOrder = { 204 }, level = 1, group = "SocketedGemQuality", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "gem" }, tradeHashes = { [3828613551] = { "+30% to Quality of Socketed Gems" }, } }, - ["MutatedUniqueBodyInt14IncreasedAllResistances"] = { affix = "", "50% increased Elemental and Chaos Resistances", statOrder = { 4629 }, level = 1, group = "IncreasedAllResistances", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "resistance" }, tradeHashes = { [1195367742] = { "50% increased Elemental and Chaos Resistances" }, } }, - ["MutatedUniqueBodyDexInt1DisplaySocketedGemsSupportedByIntensify"] = { affix = "", "Socketed Gems are Supported by Level 20 Intensify", statOrder = { 406 }, level = 1, group = "DisplaySocketedGemsSupportedByIntensify", weightKey = { }, weightVal = { }, modTags = { "support", "mutatedunique", "gem" }, tradeHashes = { [1792524915] = { "Socketed Gems are Supported by Level 20 Intensify" }, } }, - ["MutatedUniqueBodyDexInt1AuraEffectOnEnemies"] = { affix = "", "(15-30)% increased Effect of Non-Curse Auras from your Skills on Enemies", statOrder = { 3567 }, level = 1, group = "AuraEffectOnEnemies", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "aura" }, tradeHashes = { [1636209393] = { "(15-30)% increased Effect of Non-Curse Auras from your Skills on Enemies" }, } }, - ["MutatedUniqueGlovesInt4DisplaySocketedGemsSupportedByFocusedChannelling"] = { affix = "", "Socketed Gems are Supported by Level 18 Focused Channelling", statOrder = { 503 }, level = 1, group = "DisplaySocketedGemsSupportedByFocusedChannelling", weightKey = { }, weightVal = { }, modTags = { "support", "mutatedunique", "gem" }, tradeHashes = { [1948535732] = { "Socketed Gems are Supported by Level 18 Focused Channelling" }, } }, - ["MutatedUniqueBelt7CullingStrike"] = { affix = "", "Culling Strike", statOrder = { 2039 }, level = 1, group = "CullingStrike", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [2524254339] = { "Culling Strike" }, } }, - ["MutatedUniqueBodyInt12HeraldOfDoom"] = { affix = "", "Lone Messenger", statOrder = { 10790 }, level = 1, group = "KeystoneHeraldOfDoom", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [155220198] = { "Lone Messenger" }, } }, - ["MutatedUniqueBodyInt12HeraldEffectOnSelf"] = { affix = "", "(80-100)% increased Effect of Herald Buffs on you", statOrder = { 7105 }, level = 1, group = "HeraldEffectOnSelf", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [870531513] = { "(80-100)% increased Effect of Herald Buffs on you" }, } }, - ["MutatedUniqueBodyInt16LocalIncreaseSocketedGemLevel"] = { affix = "", "+1 to Level of Socketed Gems", statOrder = { 162 }, level = 1, group = "LocalIncreaseSocketedGemLevel", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "gem" }, tradeHashes = { [2843100721] = { "+1 to Level of Socketed Gems" }, } }, - ["MutatedUniqueShieldStrDex7LocalIncreaseSocketedGemLevel"] = { affix = "", "+1 to Level of Socketed Gems", statOrder = { 162 }, level = 1, group = "LocalIncreaseSocketedGemLevel", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "gem" }, tradeHashes = { [2843100721] = { "+1 to Level of Socketed Gems" }, } }, - ["MutatedUniqueFishingRod1FishingMutatedFish"] = { affix = "", "You can catch Foulborn Fish", statOrder = { 5385 }, level = 1, group = "FishingMutatedFish", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [3564016014] = { "You can catch Foulborn Fish" }, } }, - ["MutatedUniqueFishingRod1FishingLureType"] = { affix = "", "Wombgift Bait", statOrder = { 2846 }, level = 1, group = "FishingLureType", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [3360430812] = { "Wombgift Bait" }, } }, - ["MutatedUniqueFishingRod2AvoidInterruptionWhileCasting"] = { affix = "", "(30-40)% chance to Ignore Stuns while Casting", statOrder = { 1898 }, level = 1, group = "AvoidInterruptionWhileCasting", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [1916706958] = { "(30-40)% chance to Ignore Stuns while Casting" }, } }, - ["MutatedUniqueFishingRod2FishingLureType"] = { affix = "", "Otherworldly Lure", statOrder = { 2846 }, level = 1, group = "FishingLureType", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [3360430812] = { "Otherworldly Lure" }, } }, - ["MutatedUniqueRing9IncreasedAttackSpeedWhenOnLowLife"] = { affix = "", "(12-16)% increased Attack Speed when on Low Life", statOrder = { 1221 }, level = 1, group = "IncreasedAttackSpeedWhenOnLowLife", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "attack", "speed" }, tradeHashes = { [1921572790] = { "(12-16)% increased Attack Speed when on Low Life" }, } }, - ["MutatedUniqueBodyDex6DamageTaken"] = { affix = "", "25% increased Damage taken", statOrder = { 2238 }, level = 1, group = "DamageTaken", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [3691641145] = { "25% increased Damage taken" }, } }, - ["MutatedUniqueWand2MaximumGolems"] = { affix = "", "+2 to maximum number of Summoned Golems", statOrder = { 3690 }, level = 1, group = "MaximumGolems", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "minion" }, tradeHashes = { [2821079699] = { "+2 to maximum number of Summoned Golems" }, } }, - ["MutatedUniqueShieldDex9TreatElementalResistanceAsInverted"] = { affix = "", "Hits have (20-25)% chance to treat Enemy Monster Elemental Resistance values as inverted", statOrder = { 10427 }, level = 1, group = "TreatElementalResistanceAsInverted", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "mutatedunique", "damage", "elemental" }, tradeHashes = { [3593401321] = { "Hits have (20-25)% chance to treat Enemy Monster Elemental Resistance values as inverted" }, } }, - ["MutatedUniqueGlovesDex2ActionSpeedMinimum90"] = { affix = "", "Your Action Speed is at least 90% of base value", statOrder = { 171 }, level = 1, group = "ActionSpeedMinimum90", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "speed" }, tradeHashes = { [179010262] = { "Your Action Speed is at least 90% of base value" }, } }, - ["MutatedUniqueGlovesDex2CriticalStrikesNonDamagingAilmentEffect"] = { affix = "", "50% increased Effect of non-Damaging Ailments you inflict with Critical Strikes", statOrder = { 9504 }, level = 1, group = "CriticalStrikesNonDamagingAilmentEffect", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "critical", "ailment" }, tradeHashes = { [3772078232] = { "50% increased Effect of non-Damaging Ailments you inflict with Critical Strikes" }, } }, - ["MutatedUniqueOneHandMace3AreaOfEffect"] = { affix = "", "(20-30)% increased Area of Effect", statOrder = { 1880 }, level = 1, group = "AreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [280731498] = { "(20-30)% increased Area of Effect" }, } }, - ["MutatedUniqueHelmetStrDex3WarcryBuffEffect"] = { affix = "", "(20-35)% increased Warcry Buff Effect", statOrder = { 10567 }, level = 1, group = "WarcryBuffEffect", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [3037553757] = { "(20-35)% increased Warcry Buff Effect" }, } }, - ["MutatedUniqueHelmetStrDex3WarcryCooldownSpeed"] = { affix = "", "(20-40)% increased Warcry Cooldown Recovery Rate", statOrder = { 3329 }, level = 1, group = "WarcryCooldownSpeed", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [4159248054] = { "(20-40)% increased Warcry Cooldown Recovery Rate" }, } }, - ["MutatedUniqueOneHandMace3LightningBoltOnHit"] = { affix = "", "Trigger Level 20 Lightning Bolt on Melee Hit with this Weapon, with a 0.25 second cooldown", statOrder = { 773 }, level = 1, group = "LightningBoltOnHit", weightKey = { }, weightVal = { }, modTags = { "skill", "mutatedunique", "elemental", "lightning" }, tradeHashes = { [3195558548] = { "Trigger Level 20 Lightning Bolt on Melee Hit with this Weapon, with a 0.25 second cooldown" }, [1478425331] = { "" }, } }, - ["MutatedUniqueClaw13CrushOnHitChance"] = { affix = "", "25% chance to Crush on Hit", statOrder = { 5655 }, level = 1, group = "CrushOnHitChance", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "physical" }, tradeHashes = { [2228892313] = { "25% chance to Crush on Hit" }, } }, - ["MutatedUniqueRing18RecoupWhileFrozen"] = { affix = "", "25% of Damage taken while Frozen Recouped as Life", statOrder = { 6124 }, level = 1, group = "RecoupWhileFrozen", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "life" }, tradeHashes = { [2585984986] = { "25% of Damage taken while Frozen Recouped as Life" }, } }, - ["MutatedUniqueRing18ActionSpeedMinimumWhileIgnited"] = { affix = "", "Action Speed cannot be modified to below Base Value while Ignited", statOrder = { 4524 }, level = 1, group = "ActionSpeedMinimumWhileIgnited", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "elemental", "fire", "speed", "ailment" }, tradeHashes = { [2146687910] = { "Action Speed cannot be modified to below Base Value while Ignited" }, } }, - ["MutatedUniqueTwoHandSword8RecoupedAsLifePerRedGem"] = { affix = "", "10% of Damage taken Recouped as Life per Socketed Red Gem", statOrder = { 6123 }, level = 1, group = "RecoupedAsLifePerRedGem", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "life", "gem" }, tradeHashes = { [902847342] = { "10% of Damage taken Recouped as Life per Socketed Red Gem" }, } }, - ["MutatedUniqueTwoHandSword8ImmortalAmbitionIfAllSocketsRed"] = { affix = "", "You have Immortal Ambition while all Socketed Gems are Red", statOrder = { 7936 }, level = 1, group = "ImmortalAmbitionIfAllSocketsRed", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [2954550164] = { "You have Immortal Ambition while all Socketed Gems are Red" }, } }, - ["MutatedUniqueHelmStrInt7MaximumEnergyShieldAsPercentageOfLifeWithNoCorruptItems"] = { affix = "", "Gain (8-12)% of Maximum Life as Extra Maximum Energy Shield if no Equipped Items are Corrupted", statOrder = { 9145 }, level = 1, group = "MaximumEnergyShieldAsPercentageOfLifeWithNoCorruptItems", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "life", "defences", "energy_shield" }, tradeHashes = { [70766949] = { "Gain (8-12)% of Maximum Life as Extra Maximum Energy Shield if no Equipped Items are Corrupted" }, } }, - ["MutatedUniqueClaw13PhysicalSkillEffectDurationPerIntelligence"] = { affix = "", "Physical Skills have 1% increased Duration per 12 Intelligence", statOrder = { 3800 }, level = 1, group = "PhysicalSkillEffectDurationPerIntelligence", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "physical", "attribute" }, tradeHashes = { [2632037464] = { "Physical Skills have 1% increased Duration per 12 Intelligence" }, } }, - ["MutatedUniqueBelt14MaximumLifeOnChillPercent"] = { affix = "", "Recover 2% of Life when you Chill a non-Chilled Enemy", statOrder = { 9841 }, level = 1, group = "MaximumLifeOnChillPercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "life", "elemental", "cold", "ailment" }, tradeHashes = { [3883840239] = { "Recover 2% of Life when you Chill a non-Chilled Enemy" }, } }, - ["MutatedUniqueRing19FrozenMonstersTakePercentIncreasedDamage"] = { affix = "", "Enemies Frozen by you take 10% increased Damage", statOrder = { 6691 }, level = 1, group = "FrozenMonstersTakePercentIncreasedDamage", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "elemental", "cold", "ailment" }, tradeHashes = { [1588094148] = { "Enemies Frozen by you take 10% increased Damage" }, } }, - ["MutatedUniqueBodyInt16BlueSocketGemsIgnoreAttributeRequirements"] = { affix = "", "Ignore Attribute Requirements of Gems Socketed in Blue Sockets", statOrder = { 7939 }, level = 1, group = "BlueSocketGemsIgnoreAttributeRequirements", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "gem" }, tradeHashes = { [2852307173] = { "Ignore Attribute Requirements of Gems Socketed in Blue Sockets" }, } }, - ["MutatedUniqueRing20IgnitedEnemiesExplode"] = { affix = "", "Ignited Enemies you Kill Explode, dealing 5% of their Life as Fire Damage which cannot Ignite", statOrder = { 7208 }, level = 1, group = "IgnitedEnemiesExplode", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "elemental", "fire", "ailment" }, tradeHashes = { [321971518] = { "Ignited Enemies you Kill Explode, dealing 5% of their Life as Fire Damage which cannot Ignite" }, } }, - ["MutatedUniqueShieldInt1DamageOverTimePer100PlayerMaxLife"] = { affix = "", "Deal 5% increased Damage Over Time per 100 Player Maximum Life", statOrder = { 6023 }, level = 1, group = "DamageOverTimePer100PlayerMaxLife", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "life" }, tradeHashes = { [1855381243] = { "Deal 5% increased Damage Over Time per 100 Player Maximum Life" }, } }, - ["MutatedUniqueRing9ExtraDamageRollsWhileLowLife"] = { affix = "", "Your Damage with Hits is Lucky while on Low Life", statOrder = { 4554 }, level = 1, group = "ExtraDamageRollsWhileLowLife", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "life" }, tradeHashes = { [204466006] = { "Your Damage with Hits is Lucky while on Low Life" }, } }, - ["MutatedUniqueBodyInt21ChaosDamageTakenRecoupedAsLifeActual"] = { affix = "", "50% of Chaos Damage taken Recouped as Life", statOrder = { 5747 }, level = 1, group = "ChaosDamageTakenRecoupedAsLifeActual", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "life", "chaos" }, tradeHashes = { [2485226576] = { "50% of Chaos Damage taken Recouped as Life" }, } }, - ["MutatedUniqueBodyStrDex7WarcriesAreDisabled"] = { affix = "", "Your Warcries are disabled", statOrder = { 10701 }, level = 1, group = "WarcriesAreDisabled", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [345628839] = { "Your Warcries are disabled" }, } }, - ["MutatedUniqueRing13LeftRingSlotEvasionRating"] = { affix = "", "Left ring slot: +1000 to Evasion Rating", statOrder = { 2672 }, level = 1, group = "LeftRingSlotEvasionRating", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "defences" }, tradeHashes = { [674502195] = { "Left ring slot: +1000 to Evasion Rating" }, } }, - ["MutatedUniqueRing13RightRingSlotArmour"] = { affix = "", "Right ring slot: +1000 to Armour", statOrder = { 2651 }, level = 1, group = "RightRingSlotArmour", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "defences" }, tradeHashes = { [1223912433] = { "Right ring slot: +1000 to Armour" }, } }, - ["MutatedUniqueShieldStrDex8SpellBlockPercentage"] = { affix = "", "(20-30)% Chance to Block Spell Damage", statOrder = { 1160 }, level = 1, group = "SpellBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block", "mutatedunique" }, tradeHashes = { [561307714] = { "(20-30)% Chance to Block Spell Damage" }, } }, - ["MutatedUniqueShieldStrDex8MonsterChanceToAvoid"] = { affix = "", "(10-15)% chance to Avoid All Damage from Hits", statOrder = { 4940 }, level = 1, group = "MonsterChanceToAvoid", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [407415930] = { "(10-15)% chance to Avoid All Damage from Hits" }, } }, - ["MutatedUniqueBelt14AllDamageCanIgnite"] = { affix = "", "All Damage can Ignite", statOrder = { 4625 }, level = 1, group = "AllDamageCanIgnite", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "elemental", "fire", "ailment" }, tradeHashes = { [1369840970] = { "All Damage can Ignite" }, } }, - ["MutatedUniqueRing20ShockedEnemiesExplode"] = { affix = "", "Shocked Enemies you Kill Explode, dealing 5% of", "their Life as Lightning Damage which cannot Shock", statOrder = { 10021, 10021.1 }, level = 1, group = "ShockedEnemiesExplode", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "mutatedunique", "damage", "elemental", "lightning" }, tradeHashes = { [2706994884] = { "Shocked Enemies you Kill Explode, dealing 5% of", "their Life as Lightning Damage which cannot Shock" }, } }, - ["MutatedUniqueBodyDexInt2GainManaAsExtraEnergyShield"] = { affix = "", "Gain (15-20)% of Maximum Mana as Extra Maximum Energy Shield", statOrder = { 2175 }, level = 1, group = "GainManaAsExtraEnergyShield", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "defences", "energy_shield" }, tradeHashes = { [2663376056] = { "Gain (15-20)% of Maximum Mana as Extra Maximum Energy Shield" }, } }, - ["MutatedUniqueBodyDexInt2EldritchBattery"] = { affix = "", "Eldritch Battery", statOrder = { 10781 }, level = 1, group = "EldritchBattery", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "defences", "energy_shield" }, tradeHashes = { [2262736444] = { "Eldritch Battery" }, } }, - ["MutatedUniqueShieldDex9DegenDamageTaken"] = { affix = "", "(10-15)% reduced Damage taken from Damage Over Time", statOrder = { 2245 }, level = 1, group = "DegenDamageTaken", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "damage" }, tradeHashes = { [1101403182] = { "(10-15)% reduced Damage taken from Damage Over Time" }, } }, - ["MutatedUniqueGlovesStr12RageLossDelay"] = { affix = "", "Inherent Rage Loss starts 2 seconds later", statOrder = { 9798 }, level = 1, group = "RageLossDelay", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [2842935061] = { "Inherent Rage Loss starts 2 seconds later" }, } }, - ["MutatedUniqueBodyStrDex8AttackDamage"] = { affix = "", "100% increased Attack Damage", statOrder = { 1198 }, level = 1, group = "AttackDamage", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "damage", "attack" }, tradeHashes = { [2843214518] = { "100% increased Attack Damage" }, } }, - ["MutatedUniqueBodyInt2DamageWhileIgnited"] = { affix = "", "(50-100)% increased Damage while Ignited", statOrder = { 2802 }, level = 1, group = "DamageWhileIgnited", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "damage" }, tradeHashes = { [1686122637] = { "(50-100)% increased Damage while Ignited" }, } }, - ["MutatedUniqueBodyInt2FireDamageLifeLeechPermyriad"] = { affix = "", "(5-7)% of Fire Damage Leeched as Life", statOrder = { 1670 }, level = 1, group = "FireDamageLifeLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "life", "elemental", "fire" }, tradeHashes = { [3848282610] = { "(5-7)% of Fire Damage Leeched as Life" }, } }, - ["MutatedUniqueHelmetDexInt4ChaosDamageCanShock"] = { affix = "", "Your Chaos Damage can Shock", statOrder = { 2870 }, level = 1, group = "ChaosDamageCanShock", weightKey = { }, weightVal = { }, modTags = { "poison", "mutatedunique", "elemental", "lightning", "chaos", "ailment" }, tradeHashes = { [2418601510] = { "Your Chaos Damage can Shock" }, } }, - ["MutatedUniqueHelmetDexInt4ChaosDamageCanIgnite"] = { affix = "", "Your Chaos Damage can Ignite", statOrder = { 5001 }, level = 1, group = "ChaosDamageCanIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "chaos_damage", "poison", "mutatedunique", "damage", "elemental", "fire", "chaos", "ailment" }, tradeHashes = { [1139878780] = { "Your Chaos Damage can Ignite" }, } }, - ["MutatedUniqueHelmetDexInt4ChaosDamageCanFreeze"] = { affix = "", "Your Chaos Damage can Freeze", statOrder = { 2869 }, level = 1, group = "ChaosDamageCanFreeze", weightKey = { }, weightVal = { }, modTags = { "poison", "mutatedunique", "elemental", "cold", "chaos", "ailment" }, tradeHashes = { [2973498992] = { "Your Chaos Damage can Freeze" }, } }, - ["MutatedUniqueQuiver7StartEnergyShieldRechargeOnSkillChance"] = { affix = "", "(10-15)% chance for Energy Shield Recharge to start when you use a Skill", statOrder = { 6450 }, level = 1, group = "StartEnergyShieldRechargeOnSkillChance", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "defences", "energy_shield" }, tradeHashes = { [3853996752] = { "(10-15)% chance for Energy Shield Recharge to start when you use a Skill" }, } }, - ["MutatedUniqueQuiver7MaximumLifeConvertedToEnergyShield"] = { affix = "", "(10-15)% of Maximum Life Converted to Energy Shield", statOrder = { 9162 }, level = 1, group = "MaximumLifeConvertedToEnergyShield", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "life", "defences", "energy_shield" }, tradeHashes = { [2458962764] = { "(10-15)% of Maximum Life Converted to Energy Shield" }, } }, - ["MutatedUniqueBow12DisplaySupportedBySummonPhantasm"] = { affix = "", "Socketed Gems are Supported by Level 20 Summon Phantasm", statOrder = { 408 }, level = 1, group = "DisplaySupportedBySummonPhantasm", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "minion" }, tradeHashes = { [2169409479] = { "Socketed Gems are Supported by Level 20 Summon Phantasm" }, } }, - ["MutatedUniqueBow12SummonWrithingWormEveryXMs"] = { affix = "", "An Enemy Writhing Worm spawns every 2 seconds", statOrder = { 620 }, level = 1, group = "SummonWrithingWormEveryXMs", weightKey = { }, weightVal = { }, modTags = { "skill", "mutatedunique" }, tradeHashes = { [933024928] = { "An Enemy Writhing Worm spawns every 2 seconds" }, } }, - ["MutatedUniqueBow12MinionAddedChaosDamage"] = { affix = "", "Minions deal (25-35) to (50-65) additional Chaos Damage", statOrder = { 3769 }, level = 1, group = "MinionAddedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "mutatedunique", "damage", "chaos", "minion" }, tradeHashes = { [2889601781] = { "Minions deal (25-35) to (50-65) additional Chaos Damage" }, } }, - ["MutatedUniqueTwoHandMace8IncreasedMinionDamageIfYouHitEnemy"] = { affix = "", "Minions deal (50-70)% increased Damage if you've Hit Recently", statOrder = { 9296 }, level = 1, group = "IncreasedMinionDamageIfYouHitEnemy", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "damage", "minion" }, tradeHashes = { [2337295272] = { "Minions deal (50-70)% increased Damage if you've Hit Recently" }, } }, - ["MutatedUniqueTwoHandMace8DoubleAnimateWeaponLimit"] = { affix = "", "Maximum number of Animated Weapons is Doubled", statOrder = { 6263 }, level = 1, group = "DoubleAnimateWeaponLimit", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "minion" }, tradeHashes = { [737980235] = { "Maximum number of Animated Weapons is Doubled" }, } }, - ["MutatedUniqueHelmetStrDex2AttackSpeedWithMovementSkills"] = { affix = "", "20% increased Attack Speed with Movement Skills", statOrder = { 1432 }, level = 1, group = "AttackSpeedWithMovementSkills", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "attack", "speed" }, tradeHashes = { [3683134121] = { "20% increased Attack Speed with Movement Skills" }, } }, - ["MutatedUniqueHelmetStrDex2ChanceToSuppressSpells"] = { affix = "", "+(10-20)% chance to Suppress Spell Damage", statOrder = { 1143 }, level = 1, group = "ChanceToSuppressSpells", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [3680664274] = { "+(10-20)% chance to Suppress Spell Damage" }, } }, - ["MutatedUniqueBow6ProjectilesPierceAllNearbyTargets"] = { affix = "", "Projectiles Pierce all nearby Targets", statOrder = { 9754 }, level = 1, group = "ProjectilesPierceAllNearbyTargets", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [1284333657] = { "Projectiles Pierce all nearby Targets" }, } }, - ["MutatedUniqueBelt21EverlastingSacrifice"] = { affix = "", "Everlasting Sacrifice", statOrder = { 10786 }, level = 1, group = "EverlastingSacrifice", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "defences", "resistance" }, tradeHashes = { [145598447] = { "Everlasting Sacrifice" }, } }, - ["MutatedUniqueBelt21AnimalCharmLeechPercentIsInstant"] = { affix = "", "(8-12)% of Leech is Instant", statOrder = { 7339 }, level = 1, group = "AnimalCharmLeechPercentIsInstant", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [3561837752] = { "(8-12)% of Leech is Instant" }, } }, - ["MutatedUniqueBelt13CurseEffectOnYou"] = { affix = "", "20% reduced Effect of Curses on you", statOrder = { 2170 }, level = 1, group = "CurseEffectOnYouJewel", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "curse" }, tradeHashes = { [3407849389] = { "20% reduced Effect of Curses on you" }, } }, - ["MutatedUniqueBodyStr7PrismaticBulwark"] = { affix = "", "Transcendence", statOrder = { 10804 }, level = 1, group = "PrismaticBulwark", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [2381571742] = { "Transcendence" }, } }, - ["MutatedUniqueBodyStr7GainNoInherentBonusFromStrength"] = { affix = "", "Gain no inherent bonuses from Strength", statOrder = { 2017 }, level = 1, group = "GainNoInherentBonusFromStrength", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "attribute" }, tradeHashes = { [2035199242] = { "Gain no inherent bonuses from Strength" }, } }, - ["MutatedUniqueBelt19FlaskChargesUsed"] = { affix = "", "100% increased Flask Charges used", statOrder = { 2184 }, level = 1, group = "BeltReducedFlaskChargesUsed", weightKey = { }, weightVal = { }, modTags = { "flask", "mutatedunique" }, tradeHashes = { [644456512] = { "100% increased Flask Charges used" }, } }, - ["MutatedUniqueBelt19AnimalCharmFlaskChargesEvery3Secondsage"] = { affix = "", "Flasks gain a Charge every 3 seconds", statOrder = { 3478 }, level = 1, group = "AnimalCharmFlaskChargesEvery3Seconds", weightKey = { }, weightVal = { }, modTags = { "flask", "mutatedunique" }, tradeHashes = { [1193283913] = { "Flasks gain a Charge every 3 seconds" }, } }, - ["MutatedUniqueAmulet43ChaosDamageTakenRecoupedAsLife"] = { affix = "", "50% of Chaos Damage taken Recouped as Life", statOrder = { 5747 }, level = 1, group = "ChaosDamageTakenRecoupedAsLifeActual", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "life", "chaos" }, tradeHashes = { [2485226576] = { "50% of Chaos Damage taken Recouped as Life" }, } }, - ["MutatedUniqueAmulet43RecoupEnergyShieldInsteadOfLife"] = { affix = "", "Recoup Energy Shield instead of Life", statOrder = { 7389 }, level = 1, group = "RecoupEnergyShieldInsteadOfLife", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "life", "defences", "energy_shield" }, tradeHashes = { [4074053582] = { "Recoup Energy Shield instead of Life" }, } }, - ["MutatedUniqueBow18DisplaySupportedByReturningProjectiles"] = { affix = "", "Socketed Gems are Supported by Level 20 Returning Projectiles", statOrder = { 407 }, level = 1, group = "DisplaySupportedByReturningProjectiles", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [1549219417] = { "Socketed Gems are Supported by Level 20 Returning Projectiles" }, } }, - ["MutatedUniqueGlovesDexInt7PoisonSpread"] = { affix = "", "When you kill a Poisoned Enemy, Enemies within 1.5 metres are Poisoned", statOrder = { 1041 }, level = 1, group = "PoisonSpread", weightKey = { }, weightVal = { }, modTags = { "poison", "mutatedunique", "chaos", "ailment" }, tradeHashes = { [3559020159] = { "When you kill a Poisoned Enemy, Enemies within 1.5 metres are Poisoned" }, } }, - ["MutatedUniqueGlovesDexInt7FasterPoisonDamage"] = { affix = "", "Poisons you inflict deal Damage (15-20)% faster", statOrder = { 6546 }, level = 1, group = "FasterPoisonDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "poison", "mutatedunique", "damage", "chaos", "ailment" }, tradeHashes = { [2907156609] = { "Poisons you inflict deal Damage (15-20)% faster" }, } }, - ["MutatedUniqueAmulet14GainPowerChargesNotLostRecently"] = { affix = "", "Gain a Power Charge every Second if you haven't lost Power Charges Recently", statOrder = { 6811 }, level = 1, group = "GainPowerChargesNotLostRecently", weightKey = { }, weightVal = { }, modTags = { "power_charge", "mutatedunique" }, tradeHashes = { [1099200124] = { "Gain a Power Charge every Second if you haven't lost Power Charges Recently" }, } }, - ["MutatedUniqueAmulet14LosePowerChargesOnMaxPowerCharges"] = { affix = "", "Lose all Power Charges on reaching Maximum Power Charges", statOrder = { 3603 }, level = 1, group = "LosePowerChargesOnMaxPowerCharges", weightKey = { }, weightVal = { }, modTags = { "power_charge", "mutatedunique" }, tradeHashes = { [2135899247] = { "Lose all Power Charges on reaching Maximum Power Charges" }, } }, - ["MutatedUniqueRing2WarcryMonsterPower"] = { affix = "", "(20-30)% increased total Power counted by Warcries", statOrder = { 10573 }, level = 1, group = "WarcryMonsterPower", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [2663359259] = { "(20-30)% increased total Power counted by Warcries" }, } }, - ["MutatedUniqueHelmetDexInt1MinionDoubleDamage"] = { affix = "", "Minions have 20% chance to deal Double Damage", statOrder = { 9280 }, level = 1, group = "MinionDoubleDamage", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "minion" }, tradeHashes = { [755922799] = { "Minions have 20% chance to deal Double Damage" }, } }, - ["MutatedUniqueRing4TemporalChainsOnHit"] = { affix = "", "Curse Enemies with Temporal Chains on Hit", statOrder = { 2519 }, level = 1, group = "TemporalChainsOnHit", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "caster", "curse" }, tradeHashes = { [4139135963] = { "Curse Enemies with Temporal Chains on Hit" }, } }, - ["MutatedUniqueRing4VulnerabilityOnHit"] = { affix = "", "Curse Enemies with Vulnerability on Hit", statOrder = { 2520 }, level = 1, group = "VulnerabilityOnHit", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "caster", "curse" }, tradeHashes = { [1826297223] = { "Curse Enemies with Vulnerability on Hit" }, } }, - ["MutatedUniqueRing4EnfeebleOnHit"] = { affix = "", "Curse Enemies with Enfeeble on Hit", statOrder = { 2513 }, level = 1, group = "EnfeebleOnHit", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "caster", "curse" }, tradeHashes = { [1516661546] = { "Curse Enemies with Enfeeble on Hit" }, } }, - ["MutatedUniqueHelmetStrInt2HeraldOfPurityAdditionalMinion"] = { affix = "", "+(2-3) to maximum number of Sentinels of Purity", statOrder = { 5033 }, level = 1, group = "HeraldOfPurityAdditionalMinion", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "minion" }, tradeHashes = { [2836937264] = { "+(2-3) to maximum number of Sentinels of Purity" }, } }, - ["MutatedUniqueBootsStrDex1MovementVelocityOnFullLife"] = { affix = "", "40% increased Movement Speed when on Full Life", statOrder = { 1800 }, level = 1, group = "MovementVelocityOnFullLife", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "speed" }, tradeHashes = { [3393547195] = { "40% increased Movement Speed when on Full Life" }, } }, - ["MutatedUniqueGlovesInt1IncreasedGold"] = { affix = "", "(5-15)% increased Quantity of Gold Dropped by Slain Enemies", statOrder = { 7304 }, level = 1, group = "IncreasedGold", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [253956903] = { "(5-15)% increased Quantity of Gold Dropped by Slain Enemies" }, } }, - ["MutatedUniqueBelt4PercentageStrength"] = { affix = "", "(5-15)% increased Strength", statOrder = { 1184 }, level = 1, group = "PercentageStrength", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "attribute" }, tradeHashes = { [734614379] = { "(5-15)% increased Strength" }, } }, - ["MutatedUniqueBodyStrInt2MaximumEnduranceCharges"] = { affix = "", "+1 to Maximum Endurance Charges", statOrder = { 1804 }, level = 1, group = "MaximumEnduranceCharges", weightKey = { }, weightVal = { }, modTags = { "endurance_charge", "mutatedunique" }, tradeHashes = { [1515657623] = { "+1 to Maximum Endurance Charges" }, } }, - ["MutatedUniqueGlovesDexInt2UnarmedAreaOfEffect"] = { affix = "", "(20-30)% increased Area of Effect while Unarmed", statOrder = { 3053 }, level = 1, group = "UnarmedAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [2216127021] = { "(20-30)% increased Area of Effect while Unarmed" }, } }, - ["MutatedUniqueBootsDex2IncreasedGold"] = { affix = "", "(20-30)% increased Quantity of Gold Dropped by Slain Enemies", statOrder = { 7304 }, level = 1, group = "IncreasedGold", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [253956903] = { "(20-30)% increased Quantity of Gold Dropped by Slain Enemies" }, } }, - ["MutatedUniqueBootsDex3ActionSpeedReduction"] = { affix = "", "(6-12)% increased Action Speed", statOrder = { 4527 }, level = 1, group = "ActionSpeedReduction", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "speed" }, tradeHashes = { [2878959938] = { "(6-12)% increased Action Speed" }, } }, - ["MutatedUniqueBodyStr2LocalPhysicalDamageReductionRating"] = { affix = "", "+(500-800) to Armour", statOrder = { 1540 }, level = 1, group = "LocalPhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "defences", "armour" }, tradeHashes = { [3484657501] = { "+(500-800) to Armour" }, } }, - ["MutatedUniqueBodyDex3MeleeFireDamage"] = { affix = "", "(75-150)% increased Melee Fire Damage", statOrder = { 1982 }, level = 1, group = "MeleeFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "mutatedunique", "damage", "elemental", "fire" }, tradeHashes = { [3630160064] = { "(75-150)% increased Melee Fire Damage" }, } }, - ["MutatedUniqueShieldInt2LocalIncreaseSocketedAuraLevel"] = { affix = "", "+2 to Level of Socketed Aura Gems", statOrder = { 181 }, level = 1, group = "LocalIncreaseSocketedAuraLevel", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "aura", "gem" }, tradeHashes = { [2452998583] = { "+2 to Level of Socketed Aura Gems" }, } }, - ["MutatedUniqueRing6CriticalStrikeMultiplier"] = { affix = "", "+(10-30)% to Global Critical Strike Multiplier", statOrder = { 1488 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "damage", "critical" }, tradeHashes = { [3556824919] = { "+(10-30)% to Global Critical Strike Multiplier" }, } }, - ["MutatedUniqueRing6AllDefences"] = { affix = "", "(10-30)% increased Global Defences", statOrder = { 2833 }, level = 1, group = "AllDefences", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "defences" }, tradeHashes = { [1389153006] = { "(10-30)% increased Global Defences" }, } }, - ["MutatedUniqueHelmetDex4IncreasedMana"] = { affix = "", "+(100-200) to maximum Mana", statOrder = { 1579 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "mana" }, tradeHashes = { [1050105434] = { "+(100-200) to maximum Mana" }, } }, - ["MutatedUniqueShieldStrInt5FlatEnergyShieldRegenerationPerMinute"] = { affix = "", "Regenerate (100-200) Energy Shield per second", statOrder = { 2645 }, level = 1, group = "FlatEnergyShieldRegenerationPerMinute", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "defences", "energy_shield" }, tradeHashes = { [1330109706] = { "Regenerate (100-200) Energy Shield per second" }, } }, - ["MutatedUniqueShieldStrInt5CastSpeedOnLowLife"] = { affix = "", "(10-20)% increased Cast Speed when on Low Life", statOrder = { 1999 }, level = 1, group = "CastSpeedOnLowLife", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "caster", "speed" }, tradeHashes = { [1136768410] = { "(10-20)% increased Cast Speed when on Low Life" }, } }, - ["MutatedUniqueBodyDex5MovementSkillCooldown"] = { affix = "", "(20-40)% increased Cooldown Recovery Rate of Movement Skills", statOrder = { 9406 }, level = 1, group = "MovementSkillCooldown", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [1124980805] = { "(20-40)% increased Cooldown Recovery Rate of Movement Skills" }, } }, - ["MutatedUniqueBootsStrDex2IncreasedAccuracyPerFrenzy"] = { affix = "", "(4-8)% increased Accuracy Rating per Frenzy Charge", statOrder = { 2050 }, level = 1, group = "AccuracyRatingPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "attack", "speed" }, tradeHashes = { [3700381193] = { "(4-8)% increased Accuracy Rating per Frenzy Charge" }, } }, - ["MutatedUniqueBodyInt7SupportedByFlamewood"] = { affix = "", "Socketed Gems are Supported by Level 20 Flamewood", statOrder = { 280 }, level = 1, group = "SupportedByFlamewood", weightKey = { }, weightVal = { }, modTags = { "support", "mutatedunique", "gem" }, tradeHashes = { [285773939] = { "Socketed Gems are Supported by Level 20 Flamewood" }, } }, - ["MutatedUniqueGlovesInt6ChaosDamagePerCorruptedItem"] = { affix = "", "(10-15)% increased Chaos Damage for each Corrupted Item Equipped", statOrder = { 3099 }, level = 1, group = "ChaosDamagePerCorruptedItem", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "mutatedunique", "damage", "chaos" }, tradeHashes = { [4004011170] = { "(10-15)% increased Chaos Damage for each Corrupted Item Equipped" }, } }, - ["MutatedUniqueRing7NonDamagingAilmentEffectOnSelf"] = { affix = "", "50% reduced Effect of Non-Damaging Ailments on you", statOrder = { 9501 }, level = 1, group = "NonDamagingAilmentEffectOnSelf", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "ailment" }, tradeHashes = { [1519474779] = { "50% reduced Effect of Non-Damaging Ailments on you" }, } }, - ["MutatedUniqueClaw6ChaosDamage"] = { affix = "", "(100-120)% increased Chaos Damage", statOrder = { 1385 }, level = 1, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "mutatedunique", "damage", "chaos" }, tradeHashes = { [736967255] = { "(100-120)% increased Chaos Damage" }, } }, - ["MutatedUniqueRing11ConsecratedGroundEffect"] = { affix = "", "(25-40)% increased Effect of Consecrated Ground you create", statOrder = { 5847 }, level = 1, group = "ConsecratedGroundEffect", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [4058190193] = { "(25-40)% increased Effect of Consecrated Ground you create" }, } }, - ["MutatedUniqueTwoHandMace6KeystoneBattlemage"] = { affix = "", "Battlemage", statOrder = { 10772 }, level = 1, group = "KeystoneBattlemage", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [448903047] = { "Battlemage" }, } }, - ["MutatedUniqueTwoHandMace6LoseLifePercentOnCrit"] = { affix = "", "Lose 1% of Life when you deal a Critical Strike", statOrder = { 8142 }, level = 1, group = "LoseLifePercentOnCrit", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "life", "critical" }, tradeHashes = { [1862591837] = { "Lose 1% of Life when you deal a Critical Strike" }, } }, - ["MutatedUniqueRing17IncreasedMaximumPowerCharges"] = { affix = "", "+1 to Maximum Power Charges", statOrder = { 1814 }, level = 1, group = "IncreasedMaximumPowerCharges", weightKey = { }, weightVal = { }, modTags = { "power_charge", "mutatedunique" }, tradeHashes = { [227523295] = { "+1 to Maximum Power Charges" }, } }, - ["MutatedUniqueBodyStr4ElementalDamageTakenAsChaos"] = { affix = "", "25% of Elemental Damage from Hits taken as Chaos Damage", statOrder = { 2453 }, level = 1, group = "ElementalDamageTakenAsChaos", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "elemental", "chaos" }, tradeHashes = { [1175213674] = { "25% of Elemental Damage from Hits taken as Chaos Damage" }, } }, - ["MutatedUniqueShieldDex4ChaosDamageOverTimeMultiplier"] = { affix = "", "+(23-37)% to Chaos Damage over Time Multiplier", statOrder = { 1259 }, level = 1, group = "ChaosDamageOverTimeMultiplier", weightKey = { }, weightVal = { }, modTags = { "dot_multi", "chaos_damage", "mutatedunique", "damage", "chaos" }, tradeHashes = { [4055307827] = { "+(23-37)% to Chaos Damage over Time Multiplier" }, } }, - ["MutatedUniqueHelmetStrInt4MaximumLifeIncreasePercent"] = { affix = "", "50% increased maximum Life", statOrder = { 1571 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "life" }, tradeHashes = { [983749596] = { "50% increased maximum Life" }, } }, - ["MutatedUniqueGlovesStrInt1SelfCurseDuration"] = { affix = "", "(-30-30)% reduced Duration of Curses on you", statOrder = { 2171 }, level = 1, group = "SelfCurseDuration", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "caster", "curse" }, tradeHashes = { [2920970371] = { "(-30-30)% reduced Duration of Curses on you" }, } }, - ["MutatedUniqueGlovesDexInt5LocalEnergyShield"] = { affix = "", "+(100-130) to maximum Energy Shield", statOrder = { 1559 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(100-130) to maximum Energy Shield" }, } }, - ["MutatedUniqueBootsStrInt2PercentageIntelligence"] = { affix = "", "(15-18)% increased Intelligence", statOrder = { 1186 }, level = 1, group = "PercentageIntelligence", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "attribute" }, tradeHashes = { [656461285] = { "(15-18)% increased Intelligence" }, } }, - ["MutatedUniqueQuiver3ImpaleEffect"] = { affix = "", "(20-30)% increased Impale Effect", statOrder = { 7243 }, level = 1, group = "ImpaleEffect", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "physical" }, tradeHashes = { [298173317] = { "(20-30)% increased Impale Effect" }, } }, - ["MutatedUniqueQuiver4BowStunThresholdReduction"] = { affix = "", "50% reduced Enemy Stun Threshold with Bows", statOrder = { 1519 }, level = 1, group = "BowStunThresholdReduction", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [2410484864] = { "50% reduced Enemy Stun Threshold with Bows" }, } }, - ["MutatedUniqueBodyInt9MinionHasUnholyMight"] = { affix = "", "Minions have Unholy Might", statOrder = { 9309 }, level = 1, group = "MinionHasUnholyMight", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "chaos", "minion" }, tradeHashes = { [1436083424] = { "Minions have Unholy Might" }, } }, - ["MutatedUniqueWand6WeaponTreeFishingWishEffectOfAncientFish"] = { affix = "", "(30-50)% increased effect of Wishes granted by Ancient Fish", statOrder = { 6615 }, level = 1, group = "WeaponTreeFishingWishEffectOfAncientFish", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [796951852] = { "(30-50)% increased effect of Wishes granted by Ancient Fish" }, } }, - ["MutatedUniqueRing24MaximumFireResist"] = { affix = "", "+3% to maximum Fire Resistance", statOrder = { 1623 }, level = 1, group = "MaximumFireResist", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+3% to maximum Fire Resistance" }, } }, - ["MutatedUniqueBodyStrDex4PhysicalDamageTakenAsChaos"] = { affix = "", "20% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2451 }, level = 1, group = "PhysicalDamageTakenAsChaos", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "physical", "chaos" }, tradeHashes = { [4129825612] = { "20% of Physical Damage from Hits taken as Chaos Damage" }, } }, - ["MutatedUniqueGlovesStrInt2LifeRegenerationRatePercentage"] = { affix = "", "(15-25)% increased Life Regeneration rate", statOrder = { 1577 }, level = 1, group = "LifeRegenerationRate", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "life" }, tradeHashes = { [44972811] = { "(15-25)% increased Life Regeneration rate" }, } }, - ["MutatedUniqueGlovesStrDex5VaalSkillDuration"] = { affix = "", "Vaal Skills have (20-40)% increased Skill Effect Duration", statOrder = { 3105 }, level = 1, group = "VaalSkillDuration", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "vaal" }, tradeHashes = { [547412107] = { "Vaal Skills have (20-40)% increased Skill Effect Duration" }, } }, - ["MutatedUniqueGlovesDexInt6BlindEffect"] = { affix = "", "(20-30)% increased Blind Effect", statOrder = { 5219 }, level = 1, group = "BlindEffect", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [1585769763] = { "(20-30)% increased Blind Effect" }, } }, - ["MutatedUniqueTwoHandAxe8SpellDamage"] = { affix = "", "(120-140)% increased Spell Damage", statOrder = { 1223 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "mutatedunique", "damage", "caster" }, tradeHashes = { [2974417149] = { "(120-140)% increased Spell Damage" }, } }, - ["MutatedUniqueTwoHandSword7AccuracyRatingPerLevel"] = { affix = "", "+(6-8) to Accuracy Rating per Level", statOrder = { 4515 }, level = 1, group = "AccuracyRatingPerLevel", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [539841130] = { "+(6-8) to Accuracy Rating per Level" }, } }, - ["MutatedUniqueShieldDex6ImpaleChanceForJewel"] = { affix = "", "(20-40)% chance to Impale Enemies on Hit with Attacks", statOrder = { 4918 }, level = 1, group = "ImpaleChanceForJewel", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "physical", "attack" }, tradeHashes = { [3739863694] = { "(20-40)% chance to Impale Enemies on Hit with Attacks" }, } }, - ["MutatedUniqueRing26ManaPerLevel"] = { affix = "", "+2 Maximum Mana per Level", statOrder = { 8186 }, level = 1, group = "ManaPerLevel", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "mana" }, tradeHashes = { [2563691316] = { "+2 Maximum Mana per Level" }, } }, - ["MutatedUniqueBelt12ConvertLightningDamageToChaos"] = { affix = "", "40% of Lightning Damage Converted to Chaos Damage", statOrder = { 1966 }, level = 1, group = "ConvertLightningDamageToChaos", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "chaos_damage", "mutatedunique", "damage", "elemental", "lightning", "chaos" }, tradeHashes = { [4238266823] = { "40% of Lightning Damage Converted to Chaos Damage" }, } }, - ["MutatedUniqueRing27DebuffTimePassed"] = { affix = "", "Debuffs on you expire (-20-20)% slower", statOrder = { 6151 }, level = 1, group = "DebuffTimePassed", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [1238227257] = { "Debuffs on you expire (-20-20)% slower" }, } }, - ["MutatedUniqueBodyStr5ExperienceIncrease"] = { affix = "", "5% increased Experience gain", statOrder = { 1603 }, level = 1, group = "ExperienceIncrease", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [3666934677] = { "5% increased Experience gain" }, } }, - ["MutatedUniqueAmulet20CurseEffectTemporalChains"] = { affix = "", "(20-30)% increased Temporal Chains Curse Effect", statOrder = { 4008 }, level = 1, group = "CurseEffectTemporalChains", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "caster", "curse" }, tradeHashes = { [1662974426] = { "(20-30)% increased Temporal Chains Curse Effect" }, } }, - ["MutatedUniqueHelmetInt9WeaponTreeSupportImpendingDoom"] = { affix = "", "Socketed Gems are Supported by Level 30 Impending Doom", statOrder = { 311 }, level = 1, group = "WeaponTreeSupportImpendingDoom", weightKey = { }, weightVal = { }, modTags = { "support", "mutatedunique", "gem" }, tradeHashes = { [3227145554] = { "Socketed Gems are Supported by Level 30 Impending Doom" }, } }, - ["MutatedUniqueRing32EnergyShieldAndMana"] = { affix = "", "+(0-60) to maximum Energy Shield", "+(0-60) to maximum Mana", statOrder = { 1558, 1579 }, level = 1, group = "EnergyShieldAndMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "mana", "defences", "energy_shield" }, tradeHashes = { [1050105434] = { "+(0-60) to maximum Mana" }, [3489782002] = { "+(0-60) to maximum Energy Shield" }, } }, - ["MutatedUniqueRing33MinionSkillManaCost"] = { affix = "", "(10-20)% reduced Mana Cost of Minion Skills", statOrder = { 9332 }, level = 1, group = "MinionSkillManaCost", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "mana", "minion" }, tradeHashes = { [2969128501] = { "(10-20)% reduced Mana Cost of Minion Skills" }, } }, - ["MutatedUniqueStaff10DisplaySocketedSkillsChain"] = { affix = "", "Socketed Gems Chain 2 additional times", statOrder = { 540 }, level = 1, group = "DisplaySocketedSkillsChain", weightKey = { }, weightVal = { }, modTags = { "skill", "mutatedunique", "gem" }, tradeHashes = { [2788729902] = { "Socketed Gems Chain 2 additional times" }, } }, - ["MutatedUniqueBodyDexInt4NonCurseAuraDuration"] = { affix = "", "Non-Curse Aura Skills have (40-80)% increased Duration", statOrder = { 10056 }, level = 1, group = "NonCurseAuraDuration", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "caster", "curse" }, tradeHashes = { [4152389562] = { "Non-Curse Aura Skills have (40-80)% increased Duration" }, } }, - ["MutatedUniqueDagger10ChaosDamageCanIgnite"] = { affix = "", "Your Chaos Damage can Ignite", statOrder = { 5001 }, level = 1, group = "ChaosDamageCanIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "chaos_damage", "poison", "mutatedunique", "damage", "elemental", "fire", "chaos", "ailment" }, tradeHashes = { [1139878780] = { "Your Chaos Damage can Ignite" }, } }, - ["MutatedUniqueBodyStr6ChanceToAvoidProjectiles"] = { affix = "", "25% chance to avoid Projectiles", statOrder = { 4993 }, level = 1, group = "ChanceToAvoidProjectiles", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [3452269808] = { "25% chance to avoid Projectiles" }, } }, - ["MutatedUniqueOneHandAxe8LocalIncreasedAttackSpeed"] = { affix = "", "(30-50)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "attack", "speed" }, tradeHashes = { [210067635] = { "(30-50)% increased Attack Speed" }, } }, - ["MutatedUniqueHelmetDexInt6RetaliationSkillCooldownRecoveryRate"] = { affix = "", "Retaliation Skills have (25-35)% increased Cooldown Recovery Rate", statOrder = { 5889 }, level = 1, group = "RetaliationSkillCooldownRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [1173860008] = { "Retaliation Skills have (25-35)% increased Cooldown Recovery Rate" }, } }, - ["MutatedUniqueAmluet24EldritchBattery"] = { affix = "", "Eldritch Battery", statOrder = { 10781 }, level = 1, group = "EldritchBattery", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "defences", "energy_shield" }, tradeHashes = { [2262736444] = { "Eldritch Battery" }, } }, - ["MutatedUniqueShieldInt6EnchantmentBlind"] = { affix = "", "Enemies Blinded by you have 100% reduced Critical Strike Chance", statOrder = { 6405 }, level = 1, group = "EnchantmentBlind", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "critical" }, tradeHashes = { [4216282855] = { "Enemies Blinded by you have 100% reduced Critical Strike Chance" }, } }, - ["MutatedUniqueGlovesStrDex7SupportedByManaforgedArrows"] = { affix = "", "Socketed Gems are Supported by Level 5 Manaforged Arrows", statOrder = { 332 }, level = 1, group = "SupportedByManaforgedArrows", weightKey = { }, weightVal = { }, modTags = { "support", "mutatedunique", "gem" }, tradeHashes = { [4022502578] = { "Socketed Gems are Supported by Level 5 Manaforged Arrows" }, } }, - ["MutatedUniqueTwoHandSword9LocalLightningDamage"] = { affix = "", "Adds 1 to 777 Lightning Damage", statOrder = { 1382 }, level = 1, group = "LocalLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "mutatedunique", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds 1 to 777 Lightning Damage" }, } }, - ["MutatedUniqueSceptre13ColdDamageOverTimeMultiplier"] = { affix = "", "+(30-40)% to Cold Damage over Time Multiplier", statOrder = { 1256 }, level = 1, group = "ColdDamageOverTimeMultiplier", weightKey = { }, weightVal = { }, modTags = { "dot_multi", "elemental_damage", "mutatedunique", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(30-40)% to Cold Damage over Time Multiplier" }, } }, - ["MutatedUniqueOneHandAxe9MeleeHitsCannotBeEvadedWhileWieldingSword"] = { affix = "", "Your Melee Hits can't be Evaded while wielding a Sword", statOrder = { 9193 }, level = 1, group = "MeleeHitsCannotBeEvadedWhileWieldingSword", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [2537902937] = { "Your Melee Hits can't be Evaded while wielding a Sword" }, } }, - ["MutatedUniqueOneHandSword15DualWieldingSpellBlockForJewel"] = { affix = "", "+10% Chance to Block Spell Damage while Dual Wielding", statOrder = { 1144 }, level = 1, group = "DualWieldingSpellBlockForJewel", weightKey = { }, weightVal = { }, modTags = { "block", "mutatedunique" }, tradeHashes = { [138741818] = { "+10% Chance to Block Spell Damage while Dual Wielding" }, } }, - ["MutatedUniqueShieldInt7DodgeChancePerPowerCharge"] = { affix = "", "+4% chance to Suppress Spell Damage per Power Charge", statOrder = { 10174 }, level = 1, group = "DodgeChancePerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [1309947938] = { "+4% chance to Suppress Spell Damage per Power Charge" }, } }, - ["MutatedUniqueOneHandMace10LocalCriticalStrikeChance"] = { affix = "", "(60-100)% increased Critical Strike Chance", statOrder = { 1464 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "attack", "critical" }, tradeHashes = { [2375316951] = { "(60-100)% increased Critical Strike Chance" }, } }, - ["MutatedUniqueWand14MinionPhysicalDamageAddedAsFire"] = { affix = "", "Minions gain (20-40)% of Physical Damage as Extra Fire Damage", statOrder = { 9326 }, level = 1, group = "MinionPhysicalDamageAddedAsFire", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "physical", "elemental", "fire", "minion" }, tradeHashes = { [3217428772] = { "Minions gain (20-40)% of Physical Damage as Extra Fire Damage" }, } }, - ["MutatedUniqueHelmStrInt7LifeRegenerationPercentAppliesToEnergyShieldWithNoCorruptedItems"] = { affix = "", "(15-20)% of Life Regeneration also applies to Energy Shield if no Equipped Items are Corrupted", statOrder = { 10634 }, level = 1, group = "LifeRegenerationPercentAppliesToEnergyShieldWithNoCorruptedItems", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "life", "defences", "energy_shield" }, tradeHashes = { [1750141122] = { "(15-20)% of Life Regeneration also applies to Energy Shield if no Equipped Items are Corrupted" }, } }, - ["MutatedUniqueGlovesInt4GainManaCostReductionOnManaSpent"] = { affix = "", "50% reduced Mana Cost of Skills for 2 seconds after Spending a total of 800 Mana", statOrder = { 8167 }, level = 1, group = "GainManaCostReductionOnManaSpent", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "mana" }, tradeHashes = { [1375431760] = { "50% reduced Mana Cost of Skills for 2 seconds after Spending a total of 800 Mana" }, } }, - ["MutatedUniqueBelt7GainSoulEaterStackOnHit"] = { affix = "", "Eat a Soul when you Hit a Rare or Unique Enemy, no more than once every 0.25 seconds", statOrder = { 6824 }, level = 1, group = "GainSoulEaterStackOnHit", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [2103621252] = { "Eat a Soul when you Hit a Rare or Unique Enemy, no more than once every 0.25 seconds" }, } }, - ["MutatedUniqueShieldStrDex7LocalGemsSocketedHaveNoAttributeRequirements"] = { affix = "", "Ignore Attribute Requirements of Socketed Gems", statOrder = { 7938 }, level = 1, group = "LocalGemsSocketedHaveNoAttributeRequirements", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "gem" }, tradeHashes = { [3850932596] = { "Ignore Attribute Requirements of Socketed Gems" }, } }, - ["MutatedUniqueRing19EnemiesShockedByHitsAreDebilitated"] = { affix = "", "Enemies Shocked by you are Debilitated", statOrder = { 6398 }, level = 25, group = "EnemiesShockedByHitsAreDebilitated", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [2983226297] = { "Enemies Shocked by you are Debilitated" }, } }, - ["MutatedUniqueShieldInt1NonDamagingAilmentWithCritsEffectPer100MaxLife"] = { affix = "", "2% increased Effect of Non-Damaging Ailments you inflict with Critical Strikes per 100 Player Maximum Life", statOrder = { 9499 }, level = 1, group = "NonDamagingAilmentWithCritsEffectPer100MaxLife", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "critical", "ailment" }, tradeHashes = { [1572854306] = { "2% increased Effect of Non-Damaging Ailments you inflict with Critical Strikes per 100 Player Maximum Life" }, } }, - ["MutatedUniqueBodyInt21MaximumEnergyShieldIsEqualToPercentOfMaximumLife"] = { affix = "", "Your Maximum Energy Shield is Equal to 40% of Your Maximum Life", statOrder = { 9136 }, level = 1, group = "MaximumEnergyShieldIsEqualToPercentOfMaximumLife", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "defences", "energy_shield" }, tradeHashes = { [4053338379] = { "Your Maximum Energy Shield is Equal to 40% of Your Maximum Life" }, } }, - ["MutatedUniqueBodyDex6ProjectileSpeedPercentPerEvasionRatingUpToCap"] = { affix = "", "1% increased Projectile Speed per 600 Evasion Rating, up to 75%", statOrder = { 9745 }, level = 1, group = "ProjectileSpeedPercentPerEvasionRatingUpToCap", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "speed" }, tradeHashes = { [1382953917] = { "1% increased Projectile Speed per 600 Evasion Rating, up to 75%" }, } }, - ["MutatedUniqueWand2LifeAndEnergyShieldDegenPerMinion"] = { affix = "", "Lose 0.5% Life and Energy Shield per Second per Minion", statOrder = { 7340 }, level = 1, group = "LifeAndEnergyShieldDegenPerMinion", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "life", "defences", "energy_shield", "minion" }, tradeHashes = { [1383458163] = { "Lose 0.5% Life and Energy Shield per Second per Minion" }, } }, - ["MutatedUniqueBow6ChinsolDamageAgainstEnemiesOutsideCloseRange"] = { affix = "", "50% more Damage with Arrow Hits not at Close Range", statOrder = { 2443 }, level = 1, group = "ChinsolDamageAgainstEnemiesOutsideCloseRange", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "damage" }, tradeHashes = { [402730593] = { "50% more Damage with Arrow Hits not at Close Range" }, } }, - ["MutatedUniqueJewel125GrantsAllBonusesOfUnallocatedNotablesInRadius"] = { affix = "", "Grants all bonuses of Unallocated Notable Passive Skills in Radius", statOrder = { 7957 }, level = 1, group = "GrantsAllBonusesOfUnallocatedNotablesInRadius", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [3802517517] = { "" }, [3530244373] = { "Grants all bonuses of Unallocated Notable Passive Skills in Radius" }, } }, - ["MutatedUniqueJewel125AllocatedNotablePassiveSkillsInRadiusDoNothing"] = { affix = "", "Allocated Notable Passive Skills in Radius grant nothing", statOrder = { 7955 }, level = 1, group = "AllocatedNotablePassiveSkillsInRadiusDoNothing", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [680202695] = { "Allocated Notable Passive Skills in Radius grant nothing" }, } }, - ["MutatedUniqueJewel6KeystoneCanBeAllocatedInMassiveRadiusWithoutBeingConnected"] = { affix = "", "Keystone Passive Skills in Radius can be Allocated without being connected to your tree", "Passage", statOrder = { 10716, 10716.1 }, level = 1, group = "KeystoneCanBeAllocatedInMassiveRadiusWithoutBeingConnected", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [1211779989] = { "Keystone Passive Skills in Radius can be Allocated without being connected to your tree", "Passage" }, [3802517517] = { "" }, } }, - ["MutatedUniqueJewel177ModifiersToSpellSuppressionAlsoApplytoChanceToDefendPercentArmor"] = { affix = "", "Modifiers to Chance to Suppress Spell Damage also apply to Chance to Defend with 200% of Armour at 50% of their Value", statOrder = { 10184 }, level = 1, group = "ModifiersToSpellSuppressionAlsoApplytoChanceToDefendPercentArmor", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [860891010] = { "Modifiers to Chance to Suppress Spell Damage also apply to Chance to Defend with 200% of Armour at 50% of their Value" }, } }, - ["MutatedUniqueJewel3GainRandomRareMonsterModOnKillWhileNoNotablesAllocatedInRadius"] = { affix = "", "If no Notables Allocated in Radius, When you Kill a Rare monster, you gain 1 of its Modifiers for 20 seconds", statOrder = { 3057 }, level = 1, group = "GainRandomRareMonsterModOnKillWhileNoNotablesAllocatedInRadius", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [3802517517] = { "" }, [4151744887] = { "If no Notables Allocated in Radius, When you Kill a Rare monster, you gain 1 of its Modifiers for 20 seconds" }, } }, - ["MutatedUniqueJewel3GainRandomRareMonsterModOnKillWhileXSmallPassivesAllocatedInRadius"] = { affix = "", "With (8-12) Small Passives Allocated in Radius, When you Kill a Rare monster, you gain 1 of its Modifiers for 20 seconds", statOrder = { 3058 }, level = 1, group = "GainRandomRareMonsterModOnKillWhileXSmallPassivesAllocatedInRadius", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [370099215] = { "With (8-12) Small Passives Allocated in Radius, When you Kill a Rare monster, you gain 1 of its Modifiers for 20 seconds" }, [3802517517] = { "" }, } }, - ["MutatedUniqueJewel5EvasionModifiersInRadiusAreTransformedToArmour"] = { affix = "", "Increases and Reductions to Evasion Rating in Radius are Transformed to apply to Armour", statOrder = { 3066 }, level = 1, group = "EvasionModifiersInRadiusAreTransformedToArmour", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "defences" }, tradeHashes = { [3802517517] = { "" }, [2548156334] = { "Increases and Reductions to Evasion Rating in Radius are Transformed to apply to Armour" }, } }, - ["MutatedUniqueBelt13NearbyEnemiesAreUnnerved"] = { affix = "", "Nearby Enemies are Unnerved", statOrder = { 9455 }, level = 1, group = "NearbyEnemiesAreUnnerved", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [1439308328] = { "Nearby Enemies are Unnerved" }, } }, - ["MutatedUniqueBodyDex8SuppressionPreventionIfYouHaventSuppressedRecently"] = { affix = "", "Prevent +35% of Suppressed Spell Damage if you have not Suppressed Spell Damage Recently", statOrder = { 10141 }, level = 1, group = "SuppressionPreventionIfYouHaventSuppressedRecently", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [1409317489] = { "Prevent +35% of Suppressed Spell Damage if you have not Suppressed Spell Damage Recently" }, } }, - ["MutatedUniqueBodyDex8ChanceToSuppressIfYouHaveSuppressedRecently"] = { affix = "", "+(20-30)% chance to Suppress Spell Damage if you've Suppressed Spell Damage Recently", statOrder = { 10185 }, level = 1, group = "ChanceToSuppressIfYouHaveSuppressedRecently", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [3273678959] = { "+(20-30)% chance to Suppress Spell Damage if you've Suppressed Spell Damage Recently" }, } }, - ["MutatedUniqueHelmetStrInt6ChanceToCastOnManaSpent"] = { affix = "", "50% chance to Trigger Socketed Spells when you Spend at least 200 Life on an", "Upfront Cost to Use or Trigger a Skill, with a 0.1 second Cooldown", statOrder = { 755, 755.1 }, level = 1, group = "ChanceToCastOnLifeSpent", weightKey = { }, weightVal = { }, modTags = { "skill", "mutatedunique", "caster", "gem" }, tradeHashes = { [2827553480] = { "50% chance to Trigger Socketed Spells when you Spend at least 0 Life on an", "Upfront Cost to Use or Trigger a Skill, with a 0.1 second Cooldown" }, [1178126501] = { "0% chance to Trigger Socketed Spells when you Spend at least 200 Life on an", "Upfront Cost to Use or Trigger a Skill, with a 0.1 second Cooldown" }, } }, - ["MutatedUniqueBootsInt7PowerChargeOnCriticalStrikeChance"] = { affix = "", "+(3-5)% to Critical Strike Multiplier per Power Charge", statOrder = { 3282 }, level = 1, group = "CriticalMultiplierPerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "damage", "critical" }, tradeHashes = { [4164870816] = { "+(3-5)% to Critical Strike Multiplier per Power Charge" }, } }, - ["MutatedUniqueBodyInt3BloodMagic"] = { affix = "", "Blood Magic", statOrder = { 10773 }, level = 1, group = "BloodMagic", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "life", "mana" }, tradeHashes = { [2801937280] = { "Blood Magic" }, [223497523] = { "" }, } }, - ["MutatedUniqueRing16DisablesOtherRingSlot"] = { affix = "", "Can't use other Rings", statOrder = { 1605 }, level = 1, group = "DisablesOtherRingSlot", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [64726306] = { "Can't use other Rings" }, } }, - ["MutatedUniqueBodyStrInt1ChaosResistance"] = { affix = "", "-(17-13)% to Chaos Resistance", statOrder = { 1641 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "chaos", "resistance" }, tradeHashes = { [2923486259] = { "-(17-13)% to Chaos Resistance" }, } }, - ["MutatedUniqueBow3ChaosDamageAsPortionOfDamage"] = { affix = "", "Gain (67-83)% of Physical Damage as Extra Chaos Damage", statOrder = { 1935 }, level = 1, group = "ChaosDamageAsPortionOfDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "chaos_damage", "mutatedunique", "damage", "physical", "chaos" }, tradeHashes = { [3319896421] = { "Gain (67-83)% of Physical Damage as Extra Chaos Damage" }, } }, - ["MutatedUniqueStaff1SearingBondTotemsAllowed"] = { affix = "", "+(3-5) to maximum number of Summoned Searing Bond Totems", statOrder = { 9527 }, level = 1, group = "SearingBondTotemsAllowed", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [2674643140] = { "+(3-5) to maximum number of Summoned Searing Bond Totems" }, } }, - ["MutatedUniqueRing5StunRecovery"] = { affix = "", "(200-300)% increased Stun and Block Recovery", statOrder = { 1902 }, level = 1, group = "StunRecovery", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [2511217560] = { "(200-300)% increased Stun and Block Recovery" }, } }, - ["MutatedUniqueHelmetDex2ConvertColdToFire"] = { affix = "", "50% of Cold Damage Converted to Fire Damage", statOrder = { 1968 }, level = 1, group = "ConvertColdToFire", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "mutatedunique", "damage", "elemental", "fire", "cold" }, tradeHashes = { [723832351] = { "50% of Cold Damage Converted to Fire Damage" }, } }, - ["MutatedUniqueBootsStr1CurseImmunity"] = { affix = "", "You are Immune to Curses", statOrder = { 7219 }, level = 1, group = "CurseImmunity", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "caster", "curse" }, tradeHashes = { [116621037] = { "You are Immune to Curses" }, } }, - ["MutatedUniqueGlovesStrDex2IncreasedGold"] = { affix = "", "15% increased Quantity of Gold Dropped by Slain Enemies", statOrder = { 7304 }, level = 1, group = "IncreasedGold", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [253956903] = { "15% increased Quantity of Gold Dropped by Slain Enemies" }, } }, - ["MutatedUniqueShieldStr1MaximumLifeAddedAsArmour"] = { affix = "", "Gain (20-25)% of Maximum Life as Extra Armour", statOrder = { 9160 }, level = 1, group = "MaximumLifeAddedAsArmour", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "defences" }, tradeHashes = { [4118694562] = { "Gain (20-25)% of Maximum Life as Extra Armour" }, } }, - ["MutatedUniqueShieldStrInt1EnergyShieldIncreasedByChaosResistance"] = { affix = "", "Maximum Energy Shield is increased by Chaos Resistance", statOrder = { 6435 }, level = 1, group = "EnergyShieldIncreasedByChaosResistance", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "defences" }, tradeHashes = { [1301612627] = { "Maximum Energy Shield is increased by Chaos Resistance" }, } }, - ["MutatedUniqueHelmetInt4SupportedByFrigidBond"] = { affix = "", "Socketed Gems are Supported by Level 25 Frigid Bond", statOrder = { 287 }, level = 1, group = "SupportedByFrigidBond", weightKey = { }, weightVal = { }, modTags = { "support", "mutatedunique", "gem" }, tradeHashes = { [3031999964] = { "Socketed Gems are Supported by Level 25 Frigid Bond" }, } }, - ["MutatedUniqueGlovesStr2StrengthRequirementAndTripleDamageChance"] = { affix = "", "+700 Strength Requirement", "(10-15)% chance to deal Triple Damage", statOrder = { 1085, 5000 }, level = 1, group = "StrengthRequirementAndTripleDamageChance", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [2445189705] = { "(10-15)% chance to deal Triple Damage" }, [2833226514] = { "+700 Strength Requirement" }, } }, - ["MutatedUniqueBodyInt4GainManaAsExtraEnergyShield"] = { affix = "", "Gain (15-20)% of Maximum Mana as Extra Maximum Energy Shield", statOrder = { 2175 }, level = 1, group = "GainManaAsExtraEnergyShield", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "defences", "energy_shield" }, tradeHashes = { [2663376056] = { "Gain (15-20)% of Maximum Mana as Extra Maximum Energy Shield" }, } }, - ["MutatedUniqueHelmetDex5LifeReservationEfficiencyCopy"] = { affix = "", "30% increased Life Reservation Efficiency of Skills", statOrder = { 2226 }, level = 1, group = "LifeReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "life" }, tradeHashes = { [635485889] = { "30% increased Life Reservation Efficiency of Skills" }, } }, - ["MutatedUniqueHelmetStr3BleedDotMultiplier"] = { affix = "", "+(50-75)% to Damage over Time Multiplier for Bleeding", statOrder = { 1248 }, level = 1, group = "BleedDotMultiplier", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "bleed", "mutatedunique", "damage", "physical", "attack", "ailment" }, tradeHashes = { [1423749435] = { "+(50-75)% to Damage over Time Multiplier for Bleeding" }, } }, - ["MutatedUniqueHelmetStrDex4SupportedBySadism"] = { affix = "", "Socketed Gems are Supported by Level 30 Sadism", statOrder = { 373 }, level = 1, group = "SupportedBySadism", weightKey = { }, weightVal = { }, modTags = { "support", "mutatedunique", "gem" }, tradeHashes = { [794471597] = { "Socketed Gems are Supported by Level 30 Sadism" }, } }, - ["MutatedUniqueOneHandSword3TrapThrowSpeed"] = { affix = "", "(20-40)% increased Trap Throwing Speed", statOrder = { 1927 }, level = 1, group = "TrapThrowSpeed", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "speed" }, tradeHashes = { [118398748] = { "(20-40)% increased Trap Throwing Speed" }, } }, - ["MutatedUniqueBelt5IncreasedEnergyShieldPerPowerCharge"] = { affix = "", "(4-6)% increased Energy Shield per Power Charge", statOrder = { 6444 }, level = 1, group = "IncreasedEnergyShieldPerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "defences", "energy_shield" }, tradeHashes = { [2189382346] = { "(4-6)% increased Energy Shield per Power Charge" }, } }, - ["MutatedUniqueSceptre3DamagePerZombie"] = { affix = "", "(40-60)% increased Damage per Raised Zombie", statOrder = { 6018 }, level = 1, group = "DamagePerZombie", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "damage" }, tradeHashes = { [3868443508] = { "(40-60)% increased Damage per Raised Zombie" }, } }, - ["MutatedUniqueRing15ColdDamageTakenAsFire"] = { affix = "", "40% of Cold Damage from Hits taken as Fire Damage", statOrder = { 3178 }, level = 14, group = "ColdDamageTakenAsFire", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "elemental", "fire", "cold" }, tradeHashes = { [1189760108] = { "40% of Cold Damage from Hits taken as Fire Damage" }, } }, - ["MutatedUniqueBodyStr3WitheredEffect"] = { affix = "", "(20-40)% increased Effect of Withered", statOrder = { 10626 }, level = 1, group = "WitheredEffect", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "chaos" }, tradeHashes = { [2545584555] = { "(20-40)% increased Effect of Withered" }, } }, - ["MutatedUniqueBodyStrDex1MaximumRage"] = { affix = "", "+(8-12) to Maximum Rage", statOrder = { 9786 }, level = 1, group = "MaximumRage", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [1181501418] = { "+(8-12) to Maximum Rage" }, } }, - ["MutatedUniqueBodyStrDex2ChaosDamageTakenAsLightning"] = { affix = "", "50% of Chaos Damage taken as Lightning Damage", statOrder = { 5753 }, level = 1, group = "ChaosDamageTakenAsLightning", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [2313674117] = { "50% of Chaos Damage taken as Lightning Damage" }, } }, - ["MutatedUniqueSceptre6ManaPerStrengthIfInMainHand"] = { affix = "", "1% increased maximum Mana per 18 Strength when in Main Hand", statOrder = { 9168 }, level = 1, group = "ManaPerStrengthIfInMainHand", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "mana" }, tradeHashes = { [3548542256] = { "1% increased maximum Mana per 18 Strength when in Main Hand" }, } }, - ["MutatedUniqueSceptre6EnergyShieldPerStrengthIfInOffHand"] = { affix = "", "1% increased maximum Energy Shield per 25 Strength when in Off Hand", statOrder = { 6427 }, level = 1, group = "EnergyShieldPerStrengthIfInOffHand", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "defences" }, tradeHashes = { [699783004] = { "1% increased maximum Energy Shield per 25 Strength when in Off Hand" }, } }, - ["MutatedUniqueGlovesStrDex4AdrenalineOnVaalSkillUse"] = { affix = "", "You gain Adrenaline for 3 seconds on using a Vaal Skill", statOrder = { 2919 }, level = 1, group = "AdrenalineOnVaalSkillUse", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [3856092403] = { "You gain Adrenaline for 3 seconds on using a Vaal Skill" }, } }, - ["MutatedUniqueBodyStrInt5LightRadiusAppliesToAccuracy"] = { affix = "", "Increases and Reductions to Light Radius also apply to Accuracy", statOrder = { 7430 }, level = 1, group = "LightRadiusAppliesToAccuracy", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "attack" }, tradeHashes = { [411986876] = { "Increases and Reductions to Light Radius also apply to Accuracy" }, } }, - ["MutatedUniqueBow11SupportedByPrismaticBurst"] = { affix = "", "Socketed Gems are Supported by Level 25 Prismatic Burst", statOrder = { 357 }, level = 1, group = "SupportedByPrismaticBurst", weightKey = { }, weightVal = { }, modTags = { "support", "mutatedunique", "gem" }, tradeHashes = { [2910545715] = { "Socketed Gems are Supported by Level 25 Prismatic Burst" }, } }, - ["MutatedUniqueBootsStr2Strength"] = { affix = "", "+(150-200) to Strength", statOrder = { 1177 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "attribute" }, tradeHashes = { [4080418644] = { "+(150-200) to Strength" }, } }, - ["MutatedUniqueOneHandSword9AttackSpeedPer200Accuracy"] = { affix = "", "1% increased Attack Speed per 150 Accuracy Rating", statOrder = { 4238 }, level = 1, group = "AttackSpeedPer200Accuracy", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "attack", "speed" }, tradeHashes = { [2937694716] = { "1% increased Attack Speed per 150 Accuracy Rating" }, } }, - ["MutatedUniqueWand7AddedChaosDamageFromManaCost"] = { affix = "", "Skills gain Added Chaos Damage equal to (20-25)% of Mana Cost, if Mana Cost is not higher than the maximum you could spend", statOrder = { 4534 }, level = 1, group = "AddedChaosDamageFromManaCost", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "chaos" }, tradeHashes = { [820155465] = { "Skills gain Added Chaos Damage equal to (20-25)% of Mana Cost, if Mana Cost is not higher than the maximum you could spend" }, } }, - ["MutatedUniqueWand8SupportedByAwakenedSpellCascade"] = { affix = "", "Socketed Gems are Supported by Level 1 Greater Spell Cascade", statOrder = { 297 }, level = 1, group = "SupportedByAwakenedSpellCascade", weightKey = { }, weightVal = { }, modTags = { "support", "mutatedunique", "gem" }, tradeHashes = { [2292610865] = { "Socketed Gems are Supported by Level 1 Greater Spell Cascade" }, } }, - ["MutatedUniqueHelmetInt8ManaCostReduction"] = { affix = "", "(20-30)% increased Mana Cost of Skills", statOrder = { 1883 }, level = 1, group = "ManaCostReduction", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "mana" }, tradeHashes = { [474294393] = { "(20-30)% increased Mana Cost of Skills" }, } }, - ["MutatedUniqueStaff11AnimalCharmMineAuraEffect"] = { affix = "", "(60-100)% increased Effect of Auras from Mines", statOrder = { 9220 }, level = 1, group = "AnimalCharmMineAuraEffect", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [2121424530] = { "(60-100)% increased Effect of Auras from Mines" }, } }, - ["MutatedUniqueStaff12AreaOfEffectPer20Int"] = { affix = "", "1% increased Area of Effect per 20 Intelligence", statOrder = { 2543 }, level = 1, group = "AreaOfEffectPer20Int", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [1307972622] = { "1% increased Area of Effect per 20 Intelligence" }, } }, - ["MutatedUniqueGlovesStrInt4PercentageIntelligence"] = { affix = "", "(12-16)% increased Intelligence", statOrder = { 1186 }, level = 1, group = "PercentageIntelligence", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "attribute" }, tradeHashes = { [656461285] = { "(12-16)% increased Intelligence" }, } }, - ["MutatedUniqueRing34GainPowerChargeOnKillingFrozenEnemy"] = { affix = "", "Gain a Power Charge on Killing a Frozen Enemy", statOrder = { 1824 }, level = 1, group = "GainPowerChargeOnKillingFrozenEnemy", weightKey = { }, weightVal = { }, modTags = { "power_charge", "mutatedunique" }, tradeHashes = { [3607154250] = { "Gain a Power Charge on Killing a Frozen Enemy" }, } }, - ["MutatedUniqueHelmetInt10AdditiveSpellModifiersApplyToRetaliationAttackDamage"] = { affix = "", "Increases and Reductions to Spell Damage also apply to Attack Damage with Retaliation Skills at 200% of their value", statOrder = { 2689 }, level = 1, group = "AdditiveSpellModifiersApplyToRetaliationAttackDamage", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "attack" }, tradeHashes = { [4171078509] = { "Increases and Reductions to Spell Damage also apply to Attack Damage with Retaliation Skills at 200% of their value" }, } }, - ["MutatedUniqueBelt18ManaRecoveryRate"] = { affix = "", "50% reduced Mana Recovery rate", statOrder = { 1586 }, level = 1, group = "ManaRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "mana" }, tradeHashes = { [3513180117] = { "50% reduced Mana Recovery rate" }, } }, - ["MutatedUniqueTwoHandAxe14AttackAdditionalProjectiles"] = { affix = "", "Attacks fire 3 additional Projectiles", statOrder = { 4196 }, level = 1, group = "AttackAdditionalProjectiles", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "attack" }, tradeHashes = { [1195705739] = { "Attacks fire 3 additional Projectiles" }, } }, - ["MutatedUniqueHelmetInt11PhysicalDamageRemovedFromManaBeforeLife"] = { affix = "", "30% of Physical Damage is taken from Mana before Life", statOrder = { 4169 }, level = 1, group = "PhysicalDamageRemovedFromManaBeforeLife", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "life", "mana", "physical" }, tradeHashes = { [3743438423] = { "30% of Physical Damage is taken from Mana before Life" }, } }, - ["MutatedUniqueAmulet31LightRadius"] = { affix = "", "(30-50)% increased Light Radius", statOrder = { 2500 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [1263695895] = { "(30-50)% increased Light Radius" }, } }, - ["MutatedUniqueBodyDex9WitherOnHitChanceVsCursedEnemies"] = { affix = "", "(15-20)% chance to inflict Withered for 2 seconds on Hit against Cursed Enemies", statOrder = { 10627 }, level = 1, group = "WitherOnHitChanceVsCursedEnemies", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "chaos" }, tradeHashes = { [465526645] = { "(15-20)% chance to inflict Withered for 2 seconds on Hit against Cursed Enemies" }, } }, - ["MutatedUniqueBodyDexInt5TrapSkillCooldownCount"] = { affix = "", "Skills which Throw Traps have +2 Cooldown Uses", statOrder = { 10418 }, level = 1, group = "TrapSkillCooldownCount", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [4001105802] = { "Skills which Throw Traps have +2 Cooldown Uses" }, } }, - ["MutatedUniqueOneHandSword20LocalWeaponMoreIgniteDamage"] = { affix = "", "Ignites inflicted with this Weapon deal 100% more Damage", statOrder = { 7944 }, level = 1, group = "LocalWeaponMoreIgniteDamage", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "elemental", "fire", "attack", "ailment" }, tradeHashes = { [3165905801] = { "Ignites inflicted with this Weapon deal 100% more Damage" }, } }, - ["MutatedUniqueRing44ProjectileSpeed"] = { affix = "", "(-10-10)% reduced Projectile Speed", statOrder = { 1796 }, level = 1, group = "ProjectileSpeed", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "speed" }, tradeHashes = { [3759663284] = { "(-10-10)% reduced Projectile Speed" }, } }, - ["MutatedUniqueTwoHandAxe1MaximumEnduranceCharges"] = { affix = "", "+1 to Maximum Endurance Charges", statOrder = { 1804 }, level = 1, group = "MaximumEnduranceCharges", weightKey = { }, weightVal = { }, modTags = { "endurance_charge", "mutatedunique" }, tradeHashes = { [1515657623] = { "+1 to Maximum Endurance Charges" }, } }, - ["MutatedUniqueBodyDex1SpellDamageSuppressed"] = { affix = "", "Prevent +(8-10)% of Suppressed Spell Damage", statOrder = { 1141 }, level = 1, group = "SpellDamageSuppressed", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [4116705863] = { "Prevent +(8-10)% of Suppressed Spell Damage" }, } }, - ["MutatedUniqueHelmetInt2GlobalCooldownRecovery"] = { affix = "", "(10-15)% increased Cooldown Recovery Rate", statOrder = { 5005 }, level = 1, group = "GlobalCooldownRecovery", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [1004011302] = { "(10-15)% increased Cooldown Recovery Rate" }, } }, - ["MutatedUniqueAmulet8ChaosResistance"] = { affix = "", "+(-13-13)% to Chaos Resistance", statOrder = { 1641 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(-13-13)% to Chaos Resistance" }, } }, - ["MutatedUniqueBelt2FlaskEffect"] = { affix = "", "Flasks applied to you have (10-15)% increased Effect", statOrder = { 2742 }, level = 1, group = "FlaskEffect", weightKey = { }, weightVal = { }, modTags = { "flask", "mutatedunique" }, tradeHashes = { [114734841] = { "Flasks applied to you have (10-15)% increased Effect" }, } }, - ["MutatedUniqueShieldStrInt2SocketedGemQuality"] = { affix = "", "+(20-30)% to Quality of Socketed Gems", statOrder = { 204 }, level = 1, group = "SocketedGemQuality", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "gem" }, tradeHashes = { [3828613551] = { "+(20-30)% to Quality of Socketed Gems" }, } }, - ["MutatedUniqueBodyInt1SupportedByLivingLightning"] = { affix = "", "Socketed Gems are Supported by Level 20 Living Lightning", statOrder = { 327 }, level = 1, group = "SupportedByLivingLightning", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [4096329121] = { "Socketed Gems are Supported by Level 20 Living Lightning" }, } }, - ["MutatedUniqueBow5UnholyMightOnCritChance"] = { affix = "", "25% chance to gain Unholy Might for 4 seconds on Critical Strike", statOrder = { 5700 }, level = 1, group = "UnholyMightOnCritChance", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "chaos" }, tradeHashes = { [2807857784] = { "25% chance to gain Unholy Might for 4 seconds on Critical Strike" }, } }, - ["MutatedUniqueShieldStrInt4DamageCannotBeReflected"] = { affix = "", "Damage cannot be Reflected", statOrder = { 6021 }, level = 1, group = "DamageCannotBeReflected", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [2670993553] = { "Damage cannot be Reflected" }, } }, - ["MutatedUniqueGlovesDexInt3HeraldOfThunderBuffEffect"] = { affix = "", "Herald of Thunder has 100% increased Buff Effect", statOrder = { 7126 }, level = 1, group = "HeraldOfThunderBuffEffect", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [3814686091] = { "Herald of Thunder has 100% increased Buff Effect" }, } }, - ["MutatedUniqueWand3AreaOfEffectPerPowerCharge"] = { affix = "", "3% increased Area of Effect per Power Charge", statOrder = { 2129 }, level = 1, group = "AreaOfEffectPerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [3094501804] = { "3% increased Area of Effect per Power Charge" }, } }, - ["MutatedUniqueRing12AdditionalVaalSoulOnKill"] = { affix = "", "(20-40)% chance to gain an additional Vaal Soul on Kill", statOrder = { 3104 }, level = 1, group = "AdditionalVaalSoulOnKill", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "vaal" }, tradeHashes = { [1962922582] = { "(20-40)% chance to gain an additional Vaal Soul on Kill" }, } }, - ["MutatedUniqueBelt6TrapAreaOfEffect"] = { affix = "", "Skills used by Traps have (40-60)% increased Area of Effect", statOrder = { 3479 }, level = 47, group = "TrapAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [4050593908] = { "Skills used by Traps have (40-60)% increased Area of Effect" }, } }, - ["MutatedUniqueHelmetDexInt3MaximumLifeConvertedToEnergyShield"] = { affix = "", "(15-20)% of Maximum Life Converted to Energy Shield", statOrder = { 9162 }, level = 1, group = "MaximumLifeConvertedToEnergyShield", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "life", "defences", "energy_shield" }, tradeHashes = { [2458962764] = { "(15-20)% of Maximum Life Converted to Energy Shield" }, } }, - ["MutatedUniqueGlovesStr4SapChance"] = { affix = "", "30% chance to Sap Enemies", statOrder = { 2034 }, level = 1, group = "SapChance", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [532324017] = { "30% chance to Sap Enemies" }, } }, - ["MutatedUniqueQuiver10ChanceToAggravateBleed"] = { affix = "", "(30-50)% chance to Aggravate Bleeding on targets you Hit with Attacks", statOrder = { 4608 }, level = 1, group = "ChanceToAggravateBleed", weightKey = { }, weightVal = { }, modTags = { "bleed", "mutatedunique", "physical", "attack", "ailment" }, tradeHashes = { [2705185939] = { "(30-50)% chance to Aggravate Bleeding on targets you Hit with Attacks" }, } }, - ["MutatedUniqueOneHandSword21IncreasedWeaponElementalDamagePercent"] = { affix = "", "(80-120)% increased Elemental Damage with Attack Skills", statOrder = { 6322 }, level = 1, group = "IncreasedWeaponElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "mutatedunique", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "(80-120)% increased Elemental Damage with Attack Skills" }, } }, - ["MutatedUniqueBodyDexInt6PurityOfLightningNoReservation"] = { affix = "", "Purity of Lightning has no Reservation", statOrder = { 9777 }, level = 1, group = "PurityOfLightningNoReservation", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "aura" }, tradeHashes = { [2308225900] = { "Purity of Lightning has no Reservation" }, } }, - ["MutatedUniqueWand18SpellAddedPhysicalDamagePerLevel"] = { affix = "", "Adds 3 to 5 Physical Damage to Spells per 3 Player Levels", statOrder = { 1270 }, level = 1, group = "SpellAddedPhysicalDamagePerLevel", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "physical", "caster" }, tradeHashes = { [1092545959] = { "Adds 3 to 5 Physical Damage to Spells per 3 Player Levels" }, } }, - ["MutatedUniqueBodyStr9SpellBlockPer50Strength"] = { affix = "", "+1% Chance to Block Spell Damage per 50 Strength", statOrder = { 1153 }, level = 1, group = "SpellBlockPer50Strength", weightKey = { }, weightVal = { }, modTags = { "block", "mutatedunique" }, tradeHashes = { [1114429046] = { "+1% Chance to Block Spell Damage per 50 Strength" }, } }, - ["MutatedUniqueBodyStr9AttackBlockLuck"] = { affix = "", "Chance to Block Attack Damage is Unlucky", statOrder = { 4991 }, level = 1, group = "AttackBlockLuck", weightKey = { }, weightVal = { }, modTags = { "block", "mutatedunique" }, tradeHashes = { [3776150692] = { "Chance to Block Attack Damage is Unlucky" }, } }, - ["MutatedUniqueQuiver15SupportedByArrowNova"] = { affix = "", "Socketed Gems are Supported by Level 25 Arrow Nova", statOrder = { 361 }, level = 1, group = "SupportedByArrowNova", weightKey = { }, weightVal = { }, modTags = { "support", "mutatedunique", "gem" }, tradeHashes = { [1331336999] = { "Socketed Gems are Supported by Level 25 Arrow Nova" }, } }, - ["MutatedUniqueAmulet57MovementVelocityPerFrenzyCharge"] = { affix = "", "2% increased Movement Speed per Frenzy Charge", statOrder = { 1802 }, level = 1, group = "MovementVelocityPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "speed" }, tradeHashes = { [1541516339] = { "2% increased Movement Speed per Frenzy Charge" }, } }, - ["MutatedUniqueRing63MaximumLifeIncreasePercent"] = { affix = "", "(40-50)% reduced maximum Life", statOrder = { 1571 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "life" }, tradeHashes = { [983749596] = { "(40-50)% reduced maximum Life" }, } }, - ["MutatedUniqueRing64GlobalEnergyShieldPercent"] = { affix = "", "(40-50)% reduced maximum Energy Shield", statOrder = { 1561 }, level = 1, group = "GlobalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "defences", "energy_shield" }, tradeHashes = { [2482852589] = { "(40-50)% reduced maximum Energy Shield" }, } }, - ["MutatedUniqueShieldStrInt13LocalMaximumQuality"] = { affix = "", "+20% to Maximum Quality", statOrder = { 7997 }, level = 1, group = "LocalMaximumQuality", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [2039822488] = { "+20% to Maximum Quality" }, } }, - ["MutatedUniqueRing75CurseDuration"] = { affix = "", "Curse Skills have (-30-30)% reduced Skill Effect Duration", statOrder = { 6000 }, level = 1, group = "CurseDuration", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "caster", "curse" }, tradeHashes = { [1435748744] = { "Curse Skills have (-30-30)% reduced Skill Effect Duration" }, } }, - ["MutatedUniqueBodyStrInt15NonChaosDamageBypassEnergyShieldPercent"] = { affix = "", "40% of Non-Chaos Damage taken bypasses Energy Shield", statOrder = { 644 }, level = 1, group = "NonChaosDamageBypassEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [3379724776] = { "40% of Non-Chaos Damage taken bypasses Energy Shield" }, } }, - ["MutatedUniqueSceptre25MinionCriticalStrikeMultiplier"] = { affix = "", "Minions have +(20-40)% to Critical Strike Multiplier", statOrder = { 9291 }, level = 1, group = "MinionCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "damage", "minion", "critical" }, tradeHashes = { [1854213750] = { "Minions have +(20-40)% to Critical Strike Multiplier" }, } }, - ["MutatedUniqueBodyStr13MaximumEnergyShieldIfNoDefenceModifiersOnEquipment"] = { affix = "", "+(1200-1800) to maximum Energy Shield if there are no Defence Modifiers on other Equipped Items", statOrder = { 9133 }, level = 1, group = "MaximumEnergyShieldIfNoDefenceModifiersOnEquipment", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "defences" }, tradeHashes = { [2236622399] = { "+(1200-1800) to maximum Energy Shield if there are no Defence Modifiers on other Equipped Items" }, } }, - ["MutatedUniqueGlovesInt3PunishmentOnHit"] = { affix = "", "Curse Enemies with Punishment on Hit", statOrder = { 6002 }, level = 1, group = "PunishmentOnHit", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "caster", "curse" }, tradeHashes = { [2950697759] = { "Curse Enemies with Punishment on Hit" }, } }, - ["MutatedUniqueBodyInt20MinionLeechEnergyShieldFromElementalDamage"] = { affix = "", "Minions Leech 5% of Elemental Damage as Energy Shield", statOrder = { 9303 }, level = 1, group = "MinionLeechEnergyShieldFromElementalDamage", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "defences", "minion" }, tradeHashes = { [2809815072] = { "Minions Leech 5% of Elemental Damage as Energy Shield" }, } }, - ["MutatedUniqueSceptre10PowerChargeOnStunUniqueSceptre10"] = { affix = "", "Gain Chaotic Might for 4 seconds on Critical Strike", statOrder = { 5684 }, level = 1, group = "ChaoticMightOnCritChance", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "chaos", "critical" }, tradeHashes = { [1183009081] = { "Gain Chaotic Might for 4 seconds on Critical Strike" }, } }, - ["MutatedUniqueGlovesStr7CannotBeIgnitedAtMaxEnduranceCharges"] = { affix = "", "Cannot be Ignited while at maximum Endurance Charges", statOrder = { 5405 }, level = 1, group = "CannotBeIgnitedAtMaxEnduranceCharges", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "elemental", "fire" }, tradeHashes = { [2420971151] = { "Cannot be Ignited while at maximum Endurance Charges" }, } }, - ["MutatedUniqueBootsDex5ActionSpeedReduction"] = { affix = "", "15% increased Action Speed", statOrder = { 4527 }, level = 1, group = "ActionSpeedReduction", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "speed" }, tradeHashes = { [2878959938] = { "15% increased Action Speed" }, } }, - ["MutatedUniqueAmulet76GainMissingManaPercentWhenHit"] = { affix = "", "Gain (15-30)% of Missing Unreserved Mana before being Hit by an Enemy", statOrder = { 9379 }, level = 62, group = "GainMissingManaPercentWhenHit", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "mana" }, tradeHashes = { [1441107401] = { "Gain (15-30)% of Missing Unreserved Mana before being Hit by an Enemy" }, } }, - ["MutatedUniqueBootsStrInt3MovementVelocityWhileIgnited"] = { affix = "", "(25-50)% increased Movement Speed while Ignited", statOrder = { 2805 }, level = 1, group = "MovementVelocityWhileIgnited", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "speed" }, tradeHashes = { [581625445] = { "(25-50)% increased Movement Speed while Ignited" }, } }, - ["MutatedUniqueClaw7RecoverEnergyShieldFromEvasionOnBlock"] = { affix = "", "Recover Energy Shield equal to 1% of Evasion Rating when you Block", statOrder = { 6424 }, level = 1, group = "RecoverEnergyShieldFromEvasionOnBlock", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "defences" }, tradeHashes = { [3495989808] = { "Recover Energy Shield equal to 1% of Evasion Rating when you Block" }, } }, - ["MutatedUniqueBodyInt8ProfaneGroundInsteadOfConsecratedGround"] = { affix = "", "Create Profane Ground instead of Consecrated Ground", statOrder = { 5908 }, level = 1, group = "ProfaneGroundInsteadOfConsecratedGround", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [1243613350] = { "Create Profane Ground instead of Consecrated Ground" }, } }, - ["MutatedUniqueBelt7RareAndUniqueEnemiesHaveIcons"] = { affix = "", "Rare and Unique Enemies within 120 metres have Minimap Icons", statOrder = { 10584 }, level = 1, group = "RareAndUniqueEnemiesHaveIcons", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [2543266731] = { "Rare and Unique Enemies within 120 metres have Minimap Icons" }, } }, - ["MutatedUniqueHelmetStr6ZombiesLeechEnergyShieldToYouAt1000Intelligence"] = { affix = "", "With at least 1000 Intelligence, (1.5-2)% of Damage dealt by your Raised Zombies is Leeched to you as Energy Shield", statOrder = { 10754 }, level = 1, group = "ZombiesLeechEnergyShieldToYouAt1000Intelligence", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "defences", "minion" }, tradeHashes = { [1919087214] = { "With at least 1000 Intelligence, (1.5-2)% of Damage dealt by your Raised Zombies is Leeched to you as Energy Shield" }, } }, - ["MutatedUniqueHelmetStr6AdditionalZombiesPerXIntelligence"] = { affix = "", "+1 to maximum number of Raised Zombies per 500 Intelligence", statOrder = { 9540 }, level = 1, group = "AdditionalZombiesPerXIntelligence", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "minion" }, tradeHashes = { [900892599] = { "+1 to maximum number of Raised Zombies per 500 Intelligence" }, } }, - ["MutatedUniqueBelt43MagicUtilityFlasksAlwaysApplyRightmost"] = { affix = "", "Rightmost (2-4) Magic Utility Flasks constantly apply their Flask Effects to you", statOrder = { 4422 }, level = 56, group = "MagicUtilityFlasksAlwaysApplyRightmost", weightKey = { }, weightVal = { }, modTags = { "flask", "mutatedunique" }, tradeHashes = { [2651470813] = { "Rightmost (2-4) Magic Utility Flasks constantly apply their Flask Effects to you" }, } }, - ["BeltEnchantImplicit"] = { affix = "", "Can be Anointed", statOrder = { 7867 }, level = 1, group = "BeltEnchantImplicit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [52068049] = { "Can be Anointed" }, } }, - ["UniqueYourAttacksCannotBeBlocked__1"] = { affix = "", "Monsters cannot Block your Attacks", statOrder = { 10668 }, level = 1, group = "YourAttacksCannotBeBlocked", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [4136294199] = { "Monsters cannot Block your Attacks" }, } }, - ["UniqueYourSpellsCannotBeSuppressed__1"] = { affix = "", "Monsters cannot Suppress your Spells", statOrder = { 10698 }, level = 1, group = "YourSpellsCannotBeSuppressed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [870219767] = { "Monsters cannot Suppress your Spells" }, } }, - ["UniqueElementalResistancesCannotBePenetrated__1"] = { affix = "", "Elemental Resistances cannot be Penetrated", statOrder = { 6339 }, level = 1, group = "ElementalResistancesCannotBePenetrated", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1025863792] = { "Elemental Resistances cannot be Penetrated" }, } }, - ["UniqueYourChargesCannotBeStolen__1"] = { affix = "", "Monsters cannot steal your Power, Frenzy or Endurance charges on Hit", statOrder = { 10686 }, level = 1, group = "YourChargesCannotBeStolen", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1455353008] = { "Monsters cannot steal your Power, Frenzy or Endurance charges on Hit" }, } }, - ["UniqueAvoidChainingProjectiles__1"] = { affix = "", "Avoid Projectiles that have Chained", statOrder = { 4937 }, level = 1, group = "AvoidChainingProjectiles", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [729118116] = { "Avoid Projectiles that have Chained" }, } }, - ["MutatedUniqueUniqueBelt52AvoidPoison"] = { affix = "", "(40-60)% chance to Avoid being Poisoned", statOrder = { 1849 }, level = 1, group = "ChanceToAvoidPoison", weightKey = { }, weightVal = { }, modTags = { "poison", "mutatedunique", "chaos", "ailment" }, tradeHashes = { [4053951709] = { "(40-60)% chance to Avoid being Poisoned" }, } }, - ["MutatedUniqueUniqueBelt52ChaosDamage"] = { affix = "", "(30-50)% increased Chaos Damage", statOrder = { 1385 }, level = 1, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "mutatedunique", "damage", "chaos" }, tradeHashes = { [736967255] = { "(30-50)% increased Chaos Damage" }, } }, - ["MutatedUniqueUniqueBelt55FireDamage"] = { affix = "", "(30-50)% increased Fire Damage", statOrder = { 1357 }, level = 1, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "mutatedunique", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(30-50)% increased Fire Damage" }, } }, - ["MutatedUniqueUniqueBelt55IgniteDurationOnYou"] = { affix = "", "(40-60)% reduced Ignite Duration on you", statOrder = { 1875 }, level = 1, group = "ReducedIgniteDurationOnSelf", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "elemental", "fire", "ailment" }, tradeHashes = { [986397080] = { "(40-60)% reduced Ignite Duration on you" }, } }, - ["MutatedUniqueUniqueBow27ImpalesChanceToLastAdditionalHit"] = { affix = "", "(10-15)% chance on Hitting an Enemy for all Impales on that Enemy to last for an additional Hit", statOrder = { 7257 }, level = 1, group = "ChanceImpaleLastsAdditionalHits", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "physical" }, tradeHashes = { [220868259] = { "(10-15)% chance on Hitting an Enemy for all Impales on that Enemy to last for an additional Hit" }, } }, - ["MutatedUniqueUniqueBow27AttackSpeed"] = { affix = "", "(14-18)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "attack", "speed" }, tradeHashes = { [210067635] = { "(14-18)% increased Attack Speed" }, } }, - ["MutatedUniqueUniqueBow26LocalCriticalStrikeChance"] = { affix = "", "(30-34)% increased Critical Strike Chance", statOrder = { 1464 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "attack", "critical" }, tradeHashes = { [2375316951] = { "(30-34)% increased Critical Strike Chance" }, } }, - ["MutatedUniqueUniqueBow26FireDamageOverTimeMultiplier"] = { affix = "", "+(28-35)% to Fire Damage over Time Multiplier", statOrder = { 1251 }, level = 1, group = "FireDamageOverTimeMultiplier", weightKey = { }, weightVal = { }, modTags = { "dot_multi", "elemental_damage", "mutatedunique", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(28-35)% to Fire Damage over Time Multiplier" }, } }, - ["MutatedUniqueUniqueTwoHandSword18FasterDamagingAilments"] = { affix = "", "Damaging Ailments deal damage (20-40)% faster", statOrder = { 6127 }, level = 1, group = "FasterAilmentDamage", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "ailment" }, tradeHashes = { [538241406] = { "Damaging Ailments deal damage (20-40)% faster" }, } }, - ["MutatedUniqueUniqueTwoHandSword18LocalAttackSpeed"] = { affix = "", "(25-27)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "attack", "speed" }, tradeHashes = { [210067635] = { "(25-27)% increased Attack Speed" }, } }, - ["MutatedUniqueUniqueTwoHandSword19AilmentDuration"] = { affix = "", "(30-35)% increased Duration of Ailments on Enemies", statOrder = { 1860 }, level = 1, group = "IncreasedAilmentDuration", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "ailment" }, tradeHashes = { [2419712247] = { "(30-35)% increased Duration of Ailments on Enemies" }, } }, - ["MutatedUniqueUniqueTwoHandSword19LocalAttackSpeed"] = { affix = "", "(25-27)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "attack", "speed" }, tradeHashes = { [210067635] = { "(25-27)% increased Attack Speed" }, } }, - ["MutatedUniqueUniqueTwoHandMace16LocalAttackSpeed"] = { affix = "", "(20-22)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "attack", "speed" }, tradeHashes = { [210067635] = { "(20-22)% increased Attack Speed" }, } }, - ["MutatedUniqueUniqueTwoHandMace16ChaosResistance"] = { affix = "", "+(25-30)% to Chaos Resistance", statOrder = { 1641 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(25-30)% to Chaos Resistance" }, } }, - ["MutatedUniqueUniqueTwoHandMace16PhysicalAddedAsChaos"] = { affix = "", "Gain (35-45)% of Physical Damage as Extra Chaos Damage", statOrder = { 1935 }, level = 1, group = "PhysicalAddedAsChaos", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "chaos_damage", "mutatedunique", "damage", "physical", "chaos" }, tradeHashes = { [3319896421] = { "Gain (35-45)% of Physical Damage as Extra Chaos Damage" }, } }, - ["MutatedUniqueUniqueTwoHandMace15LocalAttackSpeed"] = { affix = "", "(20-22)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "attack", "speed" }, tradeHashes = { [210067635] = { "(20-22)% increased Attack Speed" }, } }, - ["MutatedUniqueUniqueTwoHandMace15PhysicalAddedAsFire"] = { affix = "", "Gain (20-25)% of Physical Damage as Extra Fire Damage", statOrder = { 1932 }, level = 1, group = "PhysicalAddedAsFire", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "mutatedunique", "damage", "physical", "elemental", "fire" }, tradeHashes = { [369494213] = { "Gain (20-25)% of Physical Damage as Extra Fire Damage" }, } }, - ["MutatedUniqueUniqueTwoHandMace15PhysicalAddedAsCold"] = { affix = "", "Gain (20-25)% of Physical Damage as Extra Cold Damage", statOrder = { 1933 }, level = 1, group = "PhysicalAddedAsCold", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "mutatedunique", "damage", "physical", "elemental", "cold" }, tradeHashes = { [979246511] = { "Gain (20-25)% of Physical Damage as Extra Cold Damage" }, } }, - ["MutatedUniqueUniqueTwoHandMace15PhysicalAddedAsLightning"] = { affix = "", "Gain (20-25)% of Physical Damage as Extra Lightning Damage", statOrder = { 1934 }, level = 1, group = "PhysicalAddedAsLightning", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "mutatedunique", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [219391121] = { "Gain (20-25)% of Physical Damage as Extra Lightning Damage" }, } }, - ["MutatedUniqueUniqueAmulet85PercentIncreasedLife"] = { affix = "", "(8-10)% increased maximum Life", statOrder = { 1571 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "life" }, tradeHashes = { [983749596] = { "(8-10)% increased maximum Life" }, } }, - ["MutatedUniqueUniqueAmulet85LifeFlaskChargesEvery3Seconds"] = { affix = "", "Life Flasks gain (1-3) Charge every 3 seconds", statOrder = { 7348 }, level = 1, group = "LifeFlaskPassiveChargeGain", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [2592686757] = { "Life Flasks gain (1-3) Charge every 3 seconds" }, } }, - ["MutatedUniqueUniqueAmulet81PercentIncreasedMana"] = { affix = "", "(12-14)% increased maximum Mana", statOrder = { 1580 }, level = 1, group = "MaximumManaIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "mana" }, tradeHashes = { [2748665614] = { "(12-14)% increased maximum Mana" }, } }, - ["MutatedUniqueUniqueAmulet81ManaFlaskChargesEvery3Seconds"] = { affix = "", "Mana Flasks gain (1-3) Charge every 3 seconds", statOrder = { 8176 }, level = 1, group = "ManaFlaskPassiveChargeGain", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [1193925814] = { "Mana Flasks gain (1-3) Charge every 3 seconds" }, } }, - ["MutatedUniqueUniqueAmulet6ReducedMaximumMana"] = { affix = "", "20% reduced maximum Mana", statOrder = { 1580 }, level = 1, group = "MaximumManaIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "mana" }, tradeHashes = { [2748665614] = { "20% reduced maximum Mana" }, } }, - ["MutatedUniqueUniqueAmulet6IncreasedGoldFound"] = { affix = "", "20% increased Quantity of Gold Dropped by Slain Enemies", statOrder = { 7304 }, level = 1, group = "IncreasedGold", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [253956903] = { "20% increased Quantity of Gold Dropped by Slain Enemies" }, } }, -} \ No newline at end of file diff --git a/src/Data/ModItemExclusive.lua b/src/Data/ModItemExclusive.lua index 436d7f10fc5..22af44de384 100644 --- a/src/Data/ModItemExclusive.lua +++ b/src/Data/ModItemExclusive.lua @@ -6750,6 +6750,7 @@ return { ["ChanceToDodgeAttacksWhileChannellingUnique__1"] = { affix = "", "+(7-10)% chance to Suppress Spell Damage while Channelling", statOrder = { 10177 }, level = 1, group = "ChanceToDodgeSpellsWhileChannelling", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4108186648] = { "+(7-10)% chance to Suppress Spell Damage while Channelling" }, } }, ["ChanceToDodgeSpellsWhileChannellingUnique__1"] = { affix = "", "+(7-10)% chance to Suppress Spell Damage while Channelling", statOrder = { 10177 }, level = 1, group = "ChanceToDodgeSpellsWhileChannelling", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4108186648] = { "+(7-10)% chance to Suppress Spell Damage while Channelling" }, } }, ["ChanceToSuppressSpellsWhileChannellingUnique__1____"] = { affix = "", "+(14-20)% chance to Suppress Spell Damage while Channelling", statOrder = { 10177 }, level = 1, group = "ChanceToDodgeSpellsWhileChannelling", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4108186648] = { "+(14-20)% chance to Suppress Spell Damage while Channelling" }, } }, + ["JewelExpansionPassiveNodes"] = { affix = "", "Adds (2-12) Passive Skills", statOrder = { 4503 }, level = 1, group = "JewelExpansionPassiveNodes", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3086156145] = { "Adds (2-12) Passive Skills" }, [3948993189] = { "" }, } }, ["JewelExpansionPassiveNodesUnique__1"] = { affix = "", "Adds 4 Passive Skills", statOrder = { 4503 }, level = 1, group = "JewelExpansionPassiveNodes", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3086156145] = { "Adds 4 Passive Skills" }, [3948993189] = { "" }, } }, ["JewelExpansionJewelNodesLarge1"] = { affix = "of Potential", "1 Added Passive Skill is a Jewel Socket", statOrder = { 7959 }, level = 1, group = "JewelExpansionJewelNodes", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4079888060] = { "1 Added Passive Skill is a Jewel Socket" }, } }, ["JewelExpansionJewelNodesLarge2___"] = { affix = "of Possibility", "2 Added Passive Skills are Jewel Sockets", statOrder = { 7959 }, level = 1, group = "JewelExpansionJewelNodes", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4079888060] = { "2 Added Passive Skills are Jewel Sockets" }, } }, diff --git a/src/Data/QueryMods.lua b/src/Data/QueryMods.lua index 98a746568d2..26b6a949b7b 100644 --- a/src/Data/QueryMods.lua +++ b/src/Data/QueryMods.lua @@ -3,73885 +3,73719 @@ return { ["Corrupted"] = { - ["10008_ShockEffect"] = { + ["10009_ShockEffect"] = { ["Helmet"] = { - ["max"] = 30, - ["min"] = 25, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2527686725", - ["text"] = "#% increased Effect of Shock", - ["type"] = "implicit", - }, - }, - ["10019_ReducedShockEffectOnSelf"] = { + ["max"] = 30, + ["min"] = 25, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2527686725", + ["text"] = "#% increased Effect of Shock", + ["type"] = "implicit", + }, + }, + ["10020_ReducedShockEffectOnSelf"] = { ["AnyJewel"] = { - ["max"] = 25, - ["min"] = 20, - }, + ["max"] = 25, + ["min"] = 20, + }, ["BaseJewel"] = { - ["max"] = 25, - ["min"] = 20, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3801067695", - ["text"] = "#% reduced Effect of Shock on you", - ["type"] = "implicit", - }, - }, - ["10125_AdditionalCriticalStrikeChanceWithSpells"] = { + ["max"] = 25, + ["min"] = 20, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3801067695", + ["text"] = "#% reduced Effect of Shock on you", + ["type"] = "implicit", + }, + }, + ["10126_AdditionalCriticalStrikeChanceWithSpells"] = { ["Gloves"] = { - ["max"] = 0.8, - ["min"] = 0.5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_791835907", - ["text"] = "+#% to Spell Critical Strike Chance", - ["type"] = "implicit", - }, - }, - ["10178_DodgeSpellHitsWhileMoving"] = { + ["max"] = 0.8, + ["min"] = 0.5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_791835907", + ["text"] = "+#% to Spell Critical Strike Chance", + ["type"] = "implicit", + }, + }, + ["10179_DodgeSpellHitsWhileMoving"] = { ["Boots"] = { - ["max"] = 10, - ["min"] = 6, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2907896585", - ["text"] = "+#% chance to Suppress Spell Damage while moving", - ["type"] = "implicit", - }, - }, - ["10656_YouCannotBeHindered"] = { + ["max"] = 10, + ["min"] = 6, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2907896585", + ["text"] = "+#% chance to Suppress Spell Damage while moving", + ["type"] = "implicit", + }, + }, + ["10657_YouCannotBeHindered"] = { ["AbyssJewel"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["AnyJewel"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["BaseJewel"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_721014846", - ["text"] = "You cannot be Hindered", - ["type"] = "implicit", - }, - }, - ["10721_IncreasedAuraEffectZealotryCorrupted"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_721014846", + ["text"] = "You cannot be Hindered", + ["type"] = "implicit", + }, + }, + ["10722_IncreasedAuraEffectZealotryCorrupted"] = { ["Amulet"] = { - ["max"] = 20, - ["min"] = 15, - }, + ["max"] = 20, + ["min"] = 15, + }, ["Belt"] = { - ["max"] = 20, - ["min"] = 15, - }, + ["max"] = 20, + ["min"] = 15, + }, ["Ring"] = { - ["max"] = 20, - ["min"] = 15, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_4096052153", - ["text"] = "Zealotry has #% increased Aura Effect", - ["type"] = "implicit", - }, - }, - ["10801_PointBlank"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_4096052153", + ["text"] = "Zealotry has #% increased Aura Effect", + ["type"] = "implicit", + }, + }, + ["10802_PointBlank"] = { ["Quiver"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2896346114", - ["text"] = "Point Blank", - ["type"] = "implicit", - }, - }, - ["10828_ResoluteTechnique"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2896346114", + ["text"] = "Point Blank", + ["type"] = "implicit", + }, + }, + ["10829_ResoluteTechnique"] = { ["1HSword"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["1HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["2HSword"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["2HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_3943945975", - ["text"] = "Resolute Technique", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_3943945975", + ["text"] = "Resolute Technique", + ["type"] = "implicit", + }, + }, ["1138_BlockPercent"] = { ["2HWeapon"] = { - ["max"] = 4, - ["min"] = 2, - }, + ["max"] = 4, + ["min"] = 2, + }, ["Amulet"] = { - ["max"] = 4, - ["min"] = 2, - }, + ["max"] = 4, + ["min"] = 2, + }, ["Staff"] = { - ["max"] = 4, - ["min"] = 2, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2530372417", - ["text"] = "#% Chance to Block Attack Damage", - ["type"] = "implicit", - }, - }, + ["max"] = 4, + ["min"] = 2, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2530372417", + ["text"] = "#% Chance to Block Attack Damage", + ["type"] = "implicit", + }, + }, ["1138_MonsterBlock"] = { ["Amulet"] = { - ["max"] = 5, - ["min"] = 4, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2530372417", - ["text"] = "#% Chance to Block Attack Damage", - ["type"] = "implicit", - }, - }, + ["max"] = 5, + ["min"] = 4, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2530372417", + ["text"] = "#% Chance to Block Attack Damage", + ["type"] = "implicit", + }, + }, ["1142_ChanceToSuppressSpellsOld"] = { ["Boots"] = { - ["max"] = 6, - ["min"] = 3, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3680664274", - ["text"] = "+#% chance to Suppress Spell Damage", - ["type"] = "implicit", - }, - }, + ["max"] = 6, + ["min"] = 3, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3680664274", + ["text"] = "+#% chance to Suppress Spell Damage", + ["type"] = "implicit", + }, + }, ["1143_ChanceToSuppressSpells"] = { ["Boots"] = { - ["max"] = 9, - ["min"] = 4, - }, + ["max"] = 9, + ["min"] = 4, + }, ["Quiver"] = { - ["max"] = 12, - ["min"] = 8, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3680664274", - ["text"] = "+#% chance to Suppress Spell Damage", - ["type"] = "implicit", - }, - }, + ["max"] = 12, + ["min"] = 8, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3680664274", + ["text"] = "+#% chance to Suppress Spell Damage", + ["type"] = "implicit", + }, + }, ["1155_BlockingBlocksSpells"] = { ["Amulet"] = { - ["max"] = 7, - ["min"] = 6, - }, + ["max"] = 7, + ["min"] = 6, + }, ["Shield"] = { - ["max"] = 7, - ["min"] = 6, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_561307714", - ["text"] = "#% Chance to Block Spell Damage", - ["type"] = "implicit", - }, - }, + ["max"] = 7, + ["min"] = 6, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_561307714", + ["text"] = "#% Chance to Block Spell Damage", + ["type"] = "implicit", + }, + }, ["1160_SpellBlockPercentage"] = { ["2HWeapon"] = { - ["max"] = 4, - ["min"] = 2, - }, + ["max"] = 4, + ["min"] = 2, + }, ["Amulet"] = { - ["max"] = 5, - ["min"] = 2, - }, + ["max"] = 5, + ["min"] = 2, + }, ["Shield"] = { - ["max"] = 5, - ["min"] = 2, - }, + ["max"] = 5, + ["min"] = 2, + }, ["Staff"] = { - ["max"] = 4, - ["min"] = 2, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_561307714", - ["text"] = "#% Chance to Block Spell Damage", - ["type"] = "implicit", - }, - }, + ["max"] = 4, + ["min"] = 2, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_561307714", + ["text"] = "#% Chance to Block Spell Damage", + ["type"] = "implicit", + }, + }, ["1162_BlockWhileDualWielding"] = { ["1HAxe"] = { - ["max"] = 6, - ["min"] = 3, - }, + ["max"] = 6, + ["min"] = 3, + }, ["1HMace"] = { - ["max"] = 6, - ["min"] = 3, - }, + ["max"] = 6, + ["min"] = 3, + }, ["1HSword"] = { - ["max"] = 6, - ["min"] = 3, - }, + ["max"] = 6, + ["min"] = 3, + }, ["1HWeapon"] = { - ["max"] = 10, - ["min"] = 3, - }, + ["max"] = 10, + ["min"] = 3, + }, ["2HAxe"] = { - ["max"] = 6, - ["min"] = 3, - }, + ["max"] = 6, + ["min"] = 3, + }, ["2HMace"] = { - ["max"] = 6, - ["min"] = 3, - }, + ["max"] = 6, + ["min"] = 3, + }, ["2HWeapon"] = { - ["max"] = 6, - ["min"] = 3, - }, + ["max"] = 6, + ["min"] = 3, + }, ["Claw"] = { - ["max"] = 10, - ["min"] = 3, - }, + ["max"] = 10, + ["min"] = 3, + }, ["Dagger"] = { - ["max"] = 6, - ["min"] = 3, - }, + ["max"] = 6, + ["min"] = 3, + }, ["Wand"] = { - ["max"] = 6, - ["min"] = 3, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2166444903", - ["text"] = "+#% Chance to Block Attack Damage while Dual Wielding", - ["type"] = "implicit", - }, - }, + ["max"] = 6, + ["min"] = 3, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2166444903", + ["text"] = "+#% Chance to Block Attack Damage while Dual Wielding", + ["type"] = "implicit", + }, + }, ["1184_IncreasedDexterityStrengthCorrupted"] = { ["Amulet"] = { - ["max"] = 6, - ["min"] = 4, - }, + ["max"] = 6, + ["min"] = 4, + }, ["Belt"] = { - ["max"] = 6, - ["min"] = 4, - }, + ["max"] = 6, + ["min"] = 4, + }, ["Ring"] = { - ["max"] = 6, - ["min"] = 4, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_734614379", - ["text"] = "#% increased Strength", - ["type"] = "implicit", - }, - }, + ["max"] = 6, + ["min"] = 4, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_734614379", + ["text"] = "#% increased Strength", + ["type"] = "implicit", + }, + }, ["1184_IncreasedStrengthIntelligenceCorrupted"] = { ["Amulet"] = { - ["max"] = 6, - ["min"] = 4, - }, + ["max"] = 6, + ["min"] = 4, + }, ["Belt"] = { - ["max"] = 6, - ["min"] = 4, - }, + ["max"] = 6, + ["min"] = 4, + }, ["Ring"] = { - ["max"] = 6, - ["min"] = 4, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_734614379", - ["text"] = "#% increased Strength", - ["type"] = "implicit", - }, - }, + ["max"] = 6, + ["min"] = 4, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_734614379", + ["text"] = "#% increased Strength", + ["type"] = "implicit", + }, + }, ["1185_IncreasedDexterityStrengthCorrupted"] = { ["Amulet"] = { - ["max"] = 6, - ["min"] = 4, - }, + ["max"] = 6, + ["min"] = 4, + }, ["Belt"] = { - ["max"] = 6, - ["min"] = 4, - }, + ["max"] = 6, + ["min"] = 4, + }, ["Ring"] = { - ["max"] = 6, - ["min"] = 4, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_4139681126", - ["text"] = "#% increased Dexterity", - ["type"] = "implicit", - }, - }, + ["max"] = 6, + ["min"] = 4, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_4139681126", + ["text"] = "#% increased Dexterity", + ["type"] = "implicit", + }, + }, ["1185_IncreasedIntelligenceDexterityCorrupted"] = { ["Amulet"] = { - ["max"] = 6, - ["min"] = 4, - }, + ["max"] = 6, + ["min"] = 4, + }, ["Belt"] = { - ["max"] = 6, - ["min"] = 4, - }, + ["max"] = 6, + ["min"] = 4, + }, ["Ring"] = { - ["max"] = 6, - ["min"] = 4, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_4139681126", - ["text"] = "#% increased Dexterity", - ["type"] = "implicit", - }, - }, + ["max"] = 6, + ["min"] = 4, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_4139681126", + ["text"] = "#% increased Dexterity", + ["type"] = "implicit", + }, + }, ["1186_IncreasedIntelligenceDexterityCorrupted"] = { ["Amulet"] = { - ["max"] = 6, - ["min"] = 4, - }, + ["max"] = 6, + ["min"] = 4, + }, ["Belt"] = { - ["max"] = 6, - ["min"] = 4, - }, + ["max"] = 6, + ["min"] = 4, + }, ["Ring"] = { - ["max"] = 6, - ["min"] = 4, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_656461285", - ["text"] = "#% increased Intelligence", - ["type"] = "implicit", - }, - }, + ["max"] = 6, + ["min"] = 4, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_656461285", + ["text"] = "#% increased Intelligence", + ["type"] = "implicit", + }, + }, ["1186_IncreasedStrengthIntelligenceCorrupted"] = { ["Amulet"] = { - ["max"] = 6, - ["min"] = 4, - }, + ["max"] = 6, + ["min"] = 4, + }, ["Belt"] = { - ["max"] = 6, - ["min"] = 4, - }, + ["max"] = 6, + ["min"] = 4, + }, ["Ring"] = { - ["max"] = 6, - ["min"] = 4, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_656461285", - ["text"] = "#% increased Intelligence", - ["type"] = "implicit", - }, - }, + ["max"] = 6, + ["min"] = 4, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_656461285", + ["text"] = "#% increased Intelligence", + ["type"] = "implicit", + }, + }, ["1191_IncreasedDamage"] = { ["AbyssJewel"] = { - ["max"] = 5, - ["min"] = 4, - }, + ["max"] = 5, + ["min"] = 4, + }, ["AnyJewel"] = { - ["max"] = 5, - ["min"] = 4, - }, + ["max"] = 5, + ["min"] = 4, + }, ["BaseJewel"] = { - ["max"] = 5, - ["min"] = 4, - }, + ["max"] = 5, + ["min"] = 4, + }, ["Chest"] = { - ["max"] = 50, - ["min"] = 40, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2154246560", - ["text"] = "#% increased Damage", - ["type"] = "implicit", - }, - }, + ["max"] = 50, + ["min"] = 40, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2154246560", + ["text"] = "#% increased Damage", + ["type"] = "implicit", + }, + }, ["1210_DamageOverTime"] = { ["1HWeapon"] = { - ["max"] = 60, - ["min"] = 50, - }, + ["max"] = 60, + ["min"] = 50, + }, ["Dagger"] = { - ["max"] = 60, - ["min"] = 50, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_967627487", - ["text"] = "#% increased Damage over Time", - ["type"] = "implicit", - }, - }, + ["max"] = 60, + ["min"] = 50, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_967627487", + ["text"] = "#% increased Damage over Time", + ["type"] = "implicit", + }, + }, ["1223_SpellDamage"] = { ["1HWeapon"] = { - ["max"] = 60, - ["min"] = 50, - }, + ["max"] = 60, + ["min"] = 50, + }, ["Dagger"] = { - ["max"] = 60, - ["min"] = 50, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2974417149", - ["text"] = "#% increased Spell Damage", - ["type"] = "implicit", - }, - }, + ["max"] = 60, + ["min"] = 50, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2974417149", + ["text"] = "#% increased Spell Damage", + ["type"] = "implicit", + }, + }, ["1231_PhysicalDamagePercent"] = { ["Ring"] = { - ["max"] = 25, - ["min"] = 15, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1310194496", - ["text"] = "#% increased Global Physical Damage", - ["type"] = "implicit", - }, - }, + ["max"] = 25, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1310194496", + ["text"] = "#% increased Global Physical Damage", + ["type"] = "implicit", + }, + }, ["1232_LocalPhysicalDamagePercent"] = { ["1HAxe"] = { - ["max"] = 20, - ["min"] = 10, - }, + ["max"] = 20, + ["min"] = 10, + }, ["1HMace"] = { - ["max"] = 20, - ["min"] = 10, - }, + ["max"] = 20, + ["min"] = 10, + }, ["1HSword"] = { - ["max"] = 20, - ["min"] = 10, - }, + ["max"] = 20, + ["min"] = 10, + }, ["1HWeapon"] = { - ["max"] = 20, - ["min"] = 10, - }, + ["max"] = 20, + ["min"] = 10, + }, ["2HAxe"] = { - ["max"] = 20, - ["min"] = 10, - }, + ["max"] = 20, + ["min"] = 10, + }, ["2HMace"] = { - ["max"] = 20, - ["min"] = 10, - }, + ["max"] = 20, + ["min"] = 10, + }, ["2HSword"] = { - ["max"] = 20, - ["min"] = 10, - }, + ["max"] = 20, + ["min"] = 10, + }, ["2HWeapon"] = { - ["max"] = 20, - ["min"] = 10, - }, + ["max"] = 20, + ["min"] = 10, + }, ["Bow"] = { - ["max"] = 20, - ["min"] = 10, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1509134228", - ["text"] = "#% increased Physical Damage", - ["type"] = "implicit", - }, - }, + ["max"] = 20, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1509134228", + ["text"] = "#% increased Physical Damage", + ["type"] = "implicit", + }, + }, ["1276_LocalPhysicalDamage"] = { ["1HAxe"] = { - ["max"] = 9.5, - ["min"] = 1.5, - }, + ["max"] = 9.5, + ["min"] = 1.5, + }, ["1HMace"] = { - ["max"] = 9.5, - ["min"] = 1.5, - }, + ["max"] = 9.5, + ["min"] = 1.5, + }, ["1HSword"] = { - ["max"] = 9.5, - ["min"] = 1.5, - }, + ["max"] = 9.5, + ["min"] = 1.5, + }, ["1HWeapon"] = { - ["max"] = 9.5, - ["min"] = 1.5, - }, + ["max"] = 9.5, + ["min"] = 1.5, + }, ["2HAxe"] = { - ["max"] = 11, - ["min"] = 1.5, - }, + ["max"] = 11, + ["min"] = 1.5, + }, ["2HMace"] = { - ["max"] = 11, - ["min"] = 1.5, - }, + ["max"] = 11, + ["min"] = 1.5, + }, ["2HSword"] = { - ["max"] = 11, - ["min"] = 1.5, - }, + ["max"] = 11, + ["min"] = 1.5, + }, ["2HWeapon"] = { - ["max"] = 11, - ["min"] = 1.5, - }, + ["max"] = 11, + ["min"] = 1.5, + }, ["Bow"] = { - ["max"] = 11, - ["min"] = 1.5, - }, + ["max"] = 11, + ["min"] = 1.5, + }, ["Claw"] = { - ["max"] = 9.5, - ["min"] = 1.5, - }, + ["max"] = 9.5, + ["min"] = 1.5, + }, ["Dagger"] = { - ["max"] = 9.5, - ["min"] = 1.5, - }, + ["max"] = 9.5, + ["min"] = 1.5, + }, ["Staff"] = { - ["max"] = 11, - ["min"] = 1.5, - }, + ["max"] = 11, + ["min"] = 1.5, + }, ["Wand"] = { - ["max"] = 9.5, - ["min"] = 1.5, - }, - ["sign"] = "", - ["specialCaseData"] = { - ["overrideModLine"] = "Adds # to # Physical Damage", - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1940865751", - ["text"] = "Adds # to # Physical Damage (Local)", - ["type"] = "implicit", - }, - }, + ["max"] = 9.5, + ["min"] = 1.5, + }, + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "Adds # to # Physical Damage", + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1940865751", + ["text"] = "Adds # to # Physical Damage (Local)", + ["type"] = "implicit", + }, + }, ["1362_LocalFireDamage"] = { ["1HAxe"] = { - ["max"] = 38, - ["min"] = 11.5, - }, + ["max"] = 38, + ["min"] = 11.5, + }, ["1HMace"] = { - ["max"] = 38, - ["min"] = 11.5, - }, + ["max"] = 38, + ["min"] = 11.5, + }, ["1HSword"] = { - ["max"] = 38, - ["min"] = 11.5, - }, + ["max"] = 38, + ["min"] = 11.5, + }, ["1HWeapon"] = { - ["max"] = 38, - ["min"] = 11.5, - }, + ["max"] = 38, + ["min"] = 11.5, + }, ["2HAxe"] = { - ["max"] = 38, - ["min"] = 11.5, - }, + ["max"] = 38, + ["min"] = 11.5, + }, ["2HMace"] = { - ["max"] = 38, - ["min"] = 11.5, - }, + ["max"] = 38, + ["min"] = 11.5, + }, ["2HSword"] = { - ["max"] = 38, - ["min"] = 11.5, - }, + ["max"] = 38, + ["min"] = 11.5, + }, ["2HWeapon"] = { - ["max"] = 50, - ["min"] = 11.5, - }, + ["max"] = 50, + ["min"] = 11.5, + }, ["Bow"] = { - ["max"] = 50, - ["min"] = 17.5, - }, + ["max"] = 50, + ["min"] = 17.5, + }, ["Claw"] = { - ["max"] = 38, - ["min"] = 11.5, - }, + ["max"] = 38, + ["min"] = 11.5, + }, ["Dagger"] = { - ["max"] = 38, - ["min"] = 11.5, - }, + ["max"] = 38, + ["min"] = 11.5, + }, ["Staff"] = { - ["max"] = 50, - ["min"] = 17.5, - }, + ["max"] = 50, + ["min"] = 17.5, + }, ["Wand"] = { - ["max"] = 38, - ["min"] = 11.5, - }, - ["sign"] = "", - ["specialCaseData"] = { - ["overrideModLine"] = "Adds # to # Fire Damage", - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_709508406", - ["text"] = "Adds # to # Fire Damage (Local)", - ["type"] = "implicit", - }, - }, + ["max"] = 38, + ["min"] = 11.5, + }, + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "Adds # to # Fire Damage", + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_709508406", + ["text"] = "Adds # to # Fire Damage (Local)", + ["type"] = "implicit", + }, + }, ["1371_LocalColdDamage"] = { ["1HAxe"] = { - ["max"] = 31.5, - ["min"] = 9.5, - }, + ["max"] = 31.5, + ["min"] = 9.5, + }, ["1HMace"] = { - ["max"] = 31.5, - ["min"] = 9.5, - }, + ["max"] = 31.5, + ["min"] = 9.5, + }, ["1HSword"] = { - ["max"] = 31.5, - ["min"] = 9.5, - }, + ["max"] = 31.5, + ["min"] = 9.5, + }, ["1HWeapon"] = { - ["max"] = 31.5, - ["min"] = 9.5, - }, + ["max"] = 31.5, + ["min"] = 9.5, + }, ["2HAxe"] = { - ["max"] = 31.5, - ["min"] = 9.5, - }, + ["max"] = 31.5, + ["min"] = 9.5, + }, ["2HMace"] = { - ["max"] = 31.5, - ["min"] = 9.5, - }, + ["max"] = 31.5, + ["min"] = 9.5, + }, ["2HSword"] = { - ["max"] = 31.5, - ["min"] = 9.5, - }, + ["max"] = 31.5, + ["min"] = 9.5, + }, ["2HWeapon"] = { - ["max"] = 43.5, - ["min"] = 9.5, - }, + ["max"] = 43.5, + ["min"] = 9.5, + }, ["Bow"] = { - ["max"] = 43.5, - ["min"] = 14.5, - }, + ["max"] = 43.5, + ["min"] = 14.5, + }, ["Claw"] = { - ["max"] = 31.5, - ["min"] = 9.5, - }, + ["max"] = 31.5, + ["min"] = 9.5, + }, ["Dagger"] = { - ["max"] = 31.5, - ["min"] = 9.5, - }, + ["max"] = 31.5, + ["min"] = 9.5, + }, ["Staff"] = { - ["max"] = 43.5, - ["min"] = 14.5, - }, + ["max"] = 43.5, + ["min"] = 14.5, + }, ["Wand"] = { - ["max"] = 31.5, - ["min"] = 9.5, - }, - ["sign"] = "", - ["specialCaseData"] = { - ["overrideModLine"] = "Adds # to # Cold Damage", - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1037193709", - ["text"] = "Adds # to # Cold Damage (Local)", - ["type"] = "implicit", - }, - }, + ["max"] = 31.5, + ["min"] = 9.5, + }, + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "Adds # to # Cold Damage", + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1037193709", + ["text"] = "Adds # to # Cold Damage (Local)", + ["type"] = "implicit", + }, + }, ["1373_AddedFireDamageSpellsAndAttacks"] = { ["Ring"] = { - ["max"] = 25.5, - ["min"] = 5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3964634628", - ["text"] = "Adds # to # Fire Damage to Spells and Attacks", - ["type"] = "implicit", - }, - }, + ["max"] = 25.5, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3964634628", + ["text"] = "Adds # to # Fire Damage to Spells and Attacks", + ["type"] = "implicit", + }, + }, ["1374_AddedColdDamageToSpellsAndAttacks"] = { ["Ring"] = { - ["max"] = 22, - ["min"] = 5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1662717006", - ["text"] = "Adds # to # Cold Damage to Spells and Attacks", - ["type"] = "implicit", - }, - }, + ["max"] = 22, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1662717006", + ["text"] = "Adds # to # Cold Damage to Spells and Attacks", + ["type"] = "implicit", + }, + }, ["1382_LocalLightningDamage"] = { ["1HAxe"] = { - ["max"] = 41, - ["min"] = 14, - }, + ["max"] = 41, + ["min"] = 14, + }, ["1HMace"] = { - ["max"] = 41, - ["min"] = 14, - }, + ["max"] = 41, + ["min"] = 14, + }, ["1HSword"] = { - ["max"] = 41, - ["min"] = 14, - }, + ["max"] = 41, + ["min"] = 14, + }, ["1HWeapon"] = { - ["max"] = 41, - ["min"] = 14, - }, + ["max"] = 41, + ["min"] = 14, + }, ["2HAxe"] = { - ["max"] = 41, - ["min"] = 14, - }, + ["max"] = 41, + ["min"] = 14, + }, ["2HMace"] = { - ["max"] = 41, - ["min"] = 14, - }, + ["max"] = 41, + ["min"] = 14, + }, ["2HSword"] = { - ["max"] = 41, - ["min"] = 14, - }, + ["max"] = 41, + ["min"] = 14, + }, ["2HWeapon"] = { - ["max"] = 58, - ["min"] = 14, - }, + ["max"] = 58, + ["min"] = 14, + }, ["Bow"] = { - ["max"] = 58, - ["min"] = 18.5, - }, + ["max"] = 58, + ["min"] = 18.5, + }, ["Claw"] = { - ["max"] = 41, - ["min"] = 14, - }, + ["max"] = 41, + ["min"] = 14, + }, ["Dagger"] = { - ["max"] = 41, - ["min"] = 14, - }, + ["max"] = 41, + ["min"] = 14, + }, ["Staff"] = { - ["max"] = 58, - ["min"] = 18.5, - }, + ["max"] = 58, + ["min"] = 18.5, + }, ["Wand"] = { - ["max"] = 41, - ["min"] = 14, - }, - ["sign"] = "", - ["specialCaseData"] = { - ["overrideModLine"] = "Adds # to # Lightning Damage", - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3336890334", - ["text"] = "Adds # to # Lightning Damage (Local)", - ["type"] = "implicit", - }, - }, + ["max"] = 41, + ["min"] = 14, + }, + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "Adds # to # Lightning Damage", + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3336890334", + ["text"] = "Adds # to # Lightning Damage (Local)", + ["type"] = "implicit", + }, + }, ["1387_ChaosDamage"] = { ["AnyJewel"] = { - ["max"] = 2, - ["min"] = 1.5, - }, + ["max"] = 2, + ["min"] = 1.5, + }, ["BaseJewel"] = { - ["max"] = 2, - ["min"] = 1.5, - }, + ["max"] = 2, + ["min"] = 1.5, + }, ["Ring"] = { - ["max"] = 11, - ["min"] = 1.5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_674553446", - ["text"] = "Adds # to # Chaos Damage to Attacks", - ["type"] = "implicit", - }, - }, + ["max"] = 11, + ["min"] = 1.5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_674553446", + ["text"] = "Adds # to # Chaos Damage to Attacks", + ["type"] = "implicit", + }, + }, ["1390_LocalChaosDamage"] = { ["1HAxe"] = { - ["max"] = 17, - ["min"] = 2, - }, + ["max"] = 17, + ["min"] = 2, + }, ["1HMace"] = { - ["max"] = 17, - ["min"] = 2, - }, + ["max"] = 17, + ["min"] = 2, + }, ["1HSword"] = { - ["max"] = 17, - ["min"] = 2, - }, + ["max"] = 17, + ["min"] = 2, + }, ["1HWeapon"] = { - ["max"] = 17, - ["min"] = 2, - }, + ["max"] = 17, + ["min"] = 2, + }, ["2HAxe"] = { - ["max"] = 17, - ["min"] = 2, - }, + ["max"] = 17, + ["min"] = 2, + }, ["2HMace"] = { - ["max"] = 17, - ["min"] = 2, - }, + ["max"] = 17, + ["min"] = 2, + }, ["2HSword"] = { - ["max"] = 17, - ["min"] = 2, - }, + ["max"] = 17, + ["min"] = 2, + }, ["2HWeapon"] = { - ["max"] = 17, - ["min"] = 2, - }, + ["max"] = 17, + ["min"] = 2, + }, ["Bow"] = { - ["max"] = 17, - ["min"] = 2, - }, + ["max"] = 17, + ["min"] = 2, + }, ["Claw"] = { - ["max"] = 17, - ["min"] = 2, - }, + ["max"] = 17, + ["min"] = 2, + }, ["Dagger"] = { - ["max"] = 17, - ["min"] = 2, - }, + ["max"] = 17, + ["min"] = 2, + }, ["Staff"] = { - ["max"] = 17, - ["min"] = 2, - }, + ["max"] = 17, + ["min"] = 2, + }, ["Wand"] = { - ["max"] = 17, - ["min"] = 2, - }, - ["sign"] = "", - ["specialCaseData"] = { - ["overrideModLine"] = "Adds # to # Chaos Damage", - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2223678961", - ["text"] = "Adds # to # Chaos Damage (Local)", - ["type"] = "implicit", - }, - }, + ["max"] = 17, + ["min"] = 2, + }, + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "Adds # to # Chaos Damage", + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2223678961", + ["text"] = "Adds # to # Chaos Damage (Local)", + ["type"] = "implicit", + }, + }, ["1409_AddedLightningDamageSpellsAndAttacks"] = { ["Ring"] = { - ["max"] = 28.5, - ["min"] = 7.5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2885144362", - ["text"] = "Adds # to # Lightning Damage to Spells and Attacks", - ["type"] = "implicit", - }, - }, + ["max"] = 28.5, + ["min"] = 7.5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2885144362", + ["text"] = "Adds # to # Lightning Damage to Spells and Attacks", + ["type"] = "implicit", + }, + }, ["1410_IncreasedAttackSpeed"] = { ["Amulet"] = { - ["max"] = 10, - ["min"] = 4, - }, + ["max"] = 10, + ["min"] = 4, + }, ["Gloves"] = { - ["max"] = 10, - ["min"] = 8, - }, + ["max"] = 10, + ["min"] = 8, + }, ["Ring"] = { - ["max"] = 10, - ["min"] = 8, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_681332047", - ["text"] = "#% increased Attack Speed", - ["type"] = "implicit", - }, - }, + ["max"] = 10, + ["min"] = 8, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_681332047", + ["text"] = "#% increased Attack Speed", + ["type"] = "implicit", + }, + }, ["1413_LocalIncreasedAttackSpeed"] = { ["1HAxe"] = { - ["max"] = 7, - ["min"] = 5, - }, + ["max"] = 7, + ["min"] = 5, + }, ["1HMace"] = { - ["max"] = 7, - ["min"] = 5, - }, + ["max"] = 7, + ["min"] = 5, + }, ["1HSword"] = { - ["max"] = 7, - ["min"] = 5, - }, + ["max"] = 7, + ["min"] = 5, + }, ["1HWeapon"] = { - ["max"] = 7, - ["min"] = 3, - }, + ["max"] = 7, + ["min"] = 3, + }, ["2HAxe"] = { - ["max"] = 7, - ["min"] = 5, - }, + ["max"] = 7, + ["min"] = 5, + }, ["2HMace"] = { - ["max"] = 7, - ["min"] = 5, - }, + ["max"] = 7, + ["min"] = 5, + }, ["2HSword"] = { - ["max"] = 7, - ["min"] = 5, - }, + ["max"] = 7, + ["min"] = 5, + }, ["2HWeapon"] = { - ["max"] = 7, - ["min"] = 3, - }, + ["max"] = 7, + ["min"] = 3, + }, ["Bow"] = { - ["max"] = 7, - ["min"] = 3, - }, + ["max"] = 7, + ["min"] = 3, + }, ["Claw"] = { - ["max"] = 7, - ["min"] = 5, - }, + ["max"] = 7, + ["min"] = 5, + }, ["Dagger"] = { - ["max"] = 7, - ["min"] = 5, - }, + ["max"] = 7, + ["min"] = 5, + }, ["Staff"] = { - ["max"] = 7, - ["min"] = 5, - }, + ["max"] = 7, + ["min"] = 5, + }, ["Wand"] = { - ["max"] = 7, - ["min"] = 3, - }, - ["sign"] = "", - ["specialCaseData"] = { - ["overrideModLine"] = "#% increased Attack Speed", - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_210067635", - ["text"] = "#% increased Attack Speed (Local)", - ["type"] = "implicit", - }, - }, + ["max"] = 7, + ["min"] = 3, + }, + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "#% increased Attack Speed", + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_210067635", + ["text"] = "#% increased Attack Speed (Local)", + ["type"] = "implicit", + }, + }, ["1446_IncreasedCastSpeed"] = { ["1HMace"] = { - ["max"] = 15, - ["min"] = 12, - }, + ["max"] = 15, + ["min"] = 12, + }, ["1HWeapon"] = { - ["max"] = 15, - ["min"] = 12, - }, + ["max"] = 15, + ["min"] = 12, + }, ["2HWeapon"] = { - ["max"] = 15, - ["min"] = 12, - }, + ["max"] = 15, + ["min"] = 12, + }, ["Gloves"] = { - ["max"] = 10, - ["min"] = 4, - }, + ["max"] = 10, + ["min"] = 4, + }, ["Ring"] = { - ["max"] = 10, - ["min"] = 4, - }, + ["max"] = 10, + ["min"] = 4, + }, ["Shield"] = { - ["max"] = 6, - ["min"] = 4, - }, + ["max"] = 6, + ["min"] = 4, + }, ["Staff"] = { - ["max"] = 15, - ["min"] = 12, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2891184298", - ["text"] = "#% increased Cast Speed", - ["type"] = "implicit", - }, - }, + ["max"] = 15, + ["min"] = 12, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2891184298", + ["text"] = "#% increased Cast Speed", + ["type"] = "implicit", + }, + }, ["1446_IncreasedCastSpeedFishing"] = { ["FishingRod"] = { - ["max"] = 20, - ["min"] = 10, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2891184298", - ["text"] = "#% increased Cast Speed", - ["type"] = "implicit", - }, - }, + ["max"] = 20, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2891184298", + ["text"] = "#% increased Cast Speed", + ["type"] = "implicit", + }, + }, ["1459_CriticalStrikeChance"] = { ["AbyssJewel"] = { - ["max"] = 10, - ["min"] = 8, - }, + ["max"] = 10, + ["min"] = 8, + }, ["AnyJewel"] = { - ["max"] = 10, - ["min"] = 8, - }, + ["max"] = 10, + ["min"] = 8, + }, ["BaseJewel"] = { - ["max"] = 10, - ["min"] = 8, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_587431675", - ["text"] = "#% increased Global Critical Strike Chance", - ["type"] = "implicit", - }, - }, + ["max"] = 10, + ["min"] = 8, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_587431675", + ["text"] = "#% increased Global Critical Strike Chance", + ["type"] = "implicit", + }, + }, ["1464_LocalCriticalStrikeChance"] = { ["1HMace"] = { - ["max"] = 18, - ["min"] = 14, - }, + ["max"] = 18, + ["min"] = 14, + }, ["1HSword"] = { - ["max"] = 18, - ["min"] = 14, - }, + ["max"] = 18, + ["min"] = 14, + }, ["1HWeapon"] = { - ["max"] = 18, - ["min"] = 14, - }, + ["max"] = 18, + ["min"] = 14, + }, ["2HWeapon"] = { - ["max"] = 18, - ["min"] = 14, - }, + ["max"] = 18, + ["min"] = 14, + }, ["Bow"] = { - ["max"] = 18, - ["min"] = 14, - }, + ["max"] = 18, + ["min"] = 14, + }, ["Claw"] = { - ["max"] = 18, - ["min"] = 14, - }, + ["max"] = 18, + ["min"] = 14, + }, ["Dagger"] = { - ["max"] = 18, - ["min"] = 14, - }, + ["max"] = 18, + ["min"] = 14, + }, ["Staff"] = { - ["max"] = 18, - ["min"] = 14, - }, + ["max"] = 18, + ["min"] = 14, + }, ["Wand"] = { - ["max"] = 18, - ["min"] = 14, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2375316951", - ["text"] = "#% increased Critical Strike Chance", - ["type"] = "implicit", - }, - }, + ["max"] = 18, + ["min"] = 14, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2375316951", + ["text"] = "#% increased Critical Strike Chance", + ["type"] = "implicit", + }, + }, ["1488_CriticalStrikeMultiplier"] = { ["1HWeapon"] = { - ["max"] = 30, - ["min"] = 25, - }, + ["max"] = 30, + ["min"] = 25, + }, ["Claw"] = { - ["max"] = 30, - ["min"] = 25, - }, + ["max"] = 30, + ["min"] = 25, + }, ["Dagger"] = { - ["max"] = 30, - ["min"] = 25, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3556824919", - ["text"] = "+#% to Global Critical Strike Multiplier", - ["type"] = "implicit", - }, - }, + ["max"] = 30, + ["min"] = 25, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3556824919", + ["text"] = "+#% to Global Critical Strike Multiplier", + ["type"] = "implicit", + }, + }, ["1512_ReducedExtraDamageFromCrits"] = { ["Chest"] = { - ["max"] = 50, - ["min"] = 50, - }, + ["max"] = 50, + ["min"] = 50, + }, ["Shield"] = { - ["max"] = 30, - ["min"] = 20, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3855016469", - ["text"] = "You take #% reduced Extra Damage from Critical Strikes", - ["type"] = "implicit", - }, - }, + ["max"] = 30, + ["min"] = 20, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3855016469", + ["text"] = "You take #% reduced Extra Damage from Critical Strikes", + ["type"] = "implicit", + }, + }, ["1521_ImmuneToKnockback"] = { ["Boots"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Chest"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_4212255859", - ["text"] = "Cannot be Knocked Back", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_4212255859", + ["text"] = "Cannot be Knocked Back", + ["type"] = "implicit", + }, + }, ["1561_GlobalEnergyShieldPercent"] = { ["Belt"] = { - ["max"] = 10, - ["min"] = 8, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2482852589", - ["text"] = "#% increased maximum Energy Shield", - ["type"] = "implicit", - }, - }, + ["max"] = 10, + ["min"] = 8, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2482852589", + ["text"] = "#% increased maximum Energy Shield", + ["type"] = "implicit", + }, + }, ["1561_MaximumEnergyShieldPercent"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_2482852589", - ["text"] = "#% increased maximum Energy Shield", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_2482852589", + ["text"] = "#% increased maximum Energy Shield", + ["type"] = "implicit", + }, + }, ["1571_MaximumLifeIncreasePercent"] = { ["Belt"] = { - ["max"] = 8, - ["min"] = 6, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_983749596", - ["text"] = "#% increased maximum Life", - ["type"] = "implicit", - }, - }, + ["max"] = 8, + ["min"] = 6, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_983749596", + ["text"] = "#% increased maximum Life", + ["type"] = "implicit", + }, + }, ["1592_IncreasedItemQuantity"] = { ["Amulet"] = { - ["max"] = 5, - ["min"] = 3, - }, + ["max"] = 5, + ["min"] = 3, + }, ["Belt"] = { - ["max"] = 5, - ["min"] = 3, - }, + ["max"] = 5, + ["min"] = 3, + }, ["Ring"] = { - ["max"] = 5, - ["min"] = 3, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_884586851", - ["text"] = "#% increased Quantity of Items found", - ["type"] = "implicit", - }, - }, + ["max"] = 5, + ["min"] = 3, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_884586851", + ["text"] = "#% increased Quantity of Items found", + ["type"] = "implicit", + }, + }, ["1596_IncreasedItemRarity"] = { ["Amulet"] = { - ["max"] = 30, - ["min"] = 20, - }, + ["max"] = 30, + ["min"] = 20, + }, ["Belt"] = { - ["max"] = 30, - ["min"] = 20, - }, + ["max"] = 30, + ["min"] = 20, + }, ["Ring"] = { - ["max"] = 30, - ["min"] = 20, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3917489142", - ["text"] = "#% increased Rarity of Items found", - ["type"] = "implicit", - }, - }, + ["max"] = 30, + ["min"] = 20, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3917489142", + ["text"] = "#% increased Rarity of Items found", + ["type"] = "implicit", + }, + }, ["1619_AllResistancesCorrupted"] = { ["Amulet"] = { - ["max"] = 16, - ["min"] = 14, - }, + ["max"] = 16, + ["min"] = 14, + }, ["Belt"] = { - ["max"] = 16, - ["min"] = 14, - }, + ["max"] = 16, + ["min"] = 14, + }, ["Ring"] = { - ["max"] = 16, - ["min"] = 14, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2901986750", - ["text"] = "+#% to all Elemental Resistances", - ["type"] = "implicit", - }, - }, + ["max"] = 16, + ["min"] = 14, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2901986750", + ["text"] = "+#% to all Elemental Resistances", + ["type"] = "implicit", + }, + }, ["162_LocalIncreaseSocketedGemLevel"] = { ["Boots"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Chest"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Gloves"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Shield"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2843100721", - ["text"] = "+# to Level of Socketed Gems", - ["type"] = "implicit", - }, - }, + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2843100721", + ["text"] = "+# to Level of Socketed Gems", + ["type"] = "implicit", + }, + }, ["1641_ChaosResistance"] = { ["1HAxe"] = { - ["max"] = 4, - ["min"] = 2, - }, + ["max"] = 4, + ["min"] = 2, + }, ["1HMace"] = { - ["max"] = 4, - ["min"] = 2, - }, + ["max"] = 4, + ["min"] = 2, + }, ["1HSword"] = { - ["max"] = 4, - ["min"] = 2, - }, + ["max"] = 4, + ["min"] = 2, + }, ["1HWeapon"] = { - ["max"] = 4, - ["min"] = 2, - }, + ["max"] = 4, + ["min"] = 2, + }, ["2HAxe"] = { - ["max"] = 4, - ["min"] = 2, - }, + ["max"] = 4, + ["min"] = 2, + }, ["2HMace"] = { - ["max"] = 4, - ["min"] = 2, - }, + ["max"] = 4, + ["min"] = 2, + }, ["2HSword"] = { - ["max"] = 4, - ["min"] = 2, - }, + ["max"] = 4, + ["min"] = 2, + }, ["2HWeapon"] = { - ["max"] = 4, - ["min"] = 2, - }, + ["max"] = 4, + ["min"] = 2, + }, ["AnyJewel"] = { - ["max"] = 3, - ["min"] = 1, - }, + ["max"] = 3, + ["min"] = 1, + }, ["BaseJewel"] = { - ["max"] = 3, - ["min"] = 1, - }, + ["max"] = 3, + ["min"] = 1, + }, ["Bow"] = { - ["max"] = 4, - ["min"] = 2, - }, + ["max"] = 4, + ["min"] = 2, + }, ["Claw"] = { - ["max"] = 4, - ["min"] = 2, - }, + ["max"] = 4, + ["min"] = 2, + }, ["Dagger"] = { - ["max"] = 4, - ["min"] = 2, - }, + ["max"] = 4, + ["min"] = 2, + }, ["FishingRod"] = { - ["max"] = 4, - ["min"] = 2, - }, + ["max"] = 4, + ["min"] = 2, + }, ["Staff"] = { - ["max"] = 4, - ["min"] = 2, - }, + ["max"] = 4, + ["min"] = 2, + }, ["Wand"] = { - ["max"] = 4, - ["min"] = 2, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2923486259", - ["text"] = "+#% to Chaos Resistance", - ["type"] = "implicit", - }, - }, + ["max"] = 4, + ["min"] = 2, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2923486259", + ["text"] = "+#% to Chaos Resistance", + ["type"] = "implicit", + }, + }, ["1642_MaximumResistances"] = { ["Amulet"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Chest"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_569299859", - ["text"] = "+#% to all maximum Resistances", - ["type"] = "implicit", - }, - }, + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_569299859", + ["text"] = "+#% to all maximum Resistances", + ["type"] = "implicit", + }, + }, ["1645_ChillEffectivenessOnSelf"] = { ["AnyJewel"] = { - ["max"] = 25, - ["min"] = 20, - }, + ["max"] = 25, + ["min"] = 20, + }, ["BaseJewel"] = { - ["max"] = 25, - ["min"] = 20, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1478653032", - ["text"] = "#% reduced Effect of Chill on you", - ["type"] = "implicit", - }, - }, + ["max"] = 25, + ["min"] = 20, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1478653032", + ["text"] = "#% reduced Effect of Chill on you", + ["type"] = "implicit", + }, + }, ["1670_FireDamageLifeLeechPermyriad"] = { ["1HAxe"] = { - ["max"] = 0.2, - ["min"] = 0.2, - }, + ["max"] = 0.2, + ["min"] = 0.2, + }, ["1HMace"] = { - ["max"] = 0.2, - ["min"] = 0.2, - }, + ["max"] = 0.2, + ["min"] = 0.2, + }, ["1HSword"] = { - ["max"] = 0.2, - ["min"] = 0.2, - }, + ["max"] = 0.2, + ["min"] = 0.2, + }, ["1HWeapon"] = { - ["max"] = 0.2, - ["min"] = 0.2, - }, + ["max"] = 0.2, + ["min"] = 0.2, + }, ["2HAxe"] = { - ["max"] = 0.2, - ["min"] = 0.2, - }, + ["max"] = 0.2, + ["min"] = 0.2, + }, ["2HMace"] = { - ["max"] = 0.2, - ["min"] = 0.2, - }, + ["max"] = 0.2, + ["min"] = 0.2, + }, ["2HSword"] = { - ["max"] = 0.2, - ["min"] = 0.2, - }, + ["max"] = 0.2, + ["min"] = 0.2, + }, ["2HWeapon"] = { - ["max"] = 0.2, - ["min"] = 0.2, - }, + ["max"] = 0.2, + ["min"] = 0.2, + }, ["Amulet"] = { - ["max"] = 0.5, - ["min"] = 0.2, - }, + ["max"] = 0.5, + ["min"] = 0.2, + }, ["Bow"] = { - ["max"] = 0.2, - ["min"] = 0.2, - }, + ["max"] = 0.2, + ["min"] = 0.2, + }, ["Claw"] = { - ["max"] = 0.2, - ["min"] = 0.2, - }, + ["max"] = 0.2, + ["min"] = 0.2, + }, ["Dagger"] = { - ["max"] = 0.2, - ["min"] = 0.2, - }, + ["max"] = 0.2, + ["min"] = 0.2, + }, ["Helmet"] = { - ["max"] = 0.5, - ["min"] = 0.5, - }, + ["max"] = 0.5, + ["min"] = 0.5, + }, ["Quiver"] = { - ["max"] = 0.5, - ["min"] = 0.2, - }, + ["max"] = 0.5, + ["min"] = 0.2, + }, ["Staff"] = { - ["max"] = 0.2, - ["min"] = 0.2, - }, + ["max"] = 0.2, + ["min"] = 0.2, + }, ["Wand"] = { - ["max"] = 0.2, - ["min"] = 0.2, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3848282610", - ["text"] = "#% of Fire Damage Leeched as Life", - ["type"] = "implicit", - }, - }, + ["max"] = 0.2, + ["min"] = 0.2, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1743742391", + ["text"] = "#% of Fire Damage Leeched as Life", + ["type"] = "implicit", + }, + }, ["1675_ColdDamageLifeLeechPermyriad"] = { ["1HAxe"] = { - ["max"] = 0.2, - ["min"] = 0.2, - }, + ["max"] = 0.2, + ["min"] = 0.2, + }, ["1HMace"] = { - ["max"] = 0.2, - ["min"] = 0.2, - }, + ["max"] = 0.2, + ["min"] = 0.2, + }, ["1HSword"] = { - ["max"] = 0.2, - ["min"] = 0.2, - }, + ["max"] = 0.2, + ["min"] = 0.2, + }, ["1HWeapon"] = { - ["max"] = 0.2, - ["min"] = 0.2, - }, + ["max"] = 0.2, + ["min"] = 0.2, + }, ["2HAxe"] = { - ["max"] = 0.2, - ["min"] = 0.2, - }, + ["max"] = 0.2, + ["min"] = 0.2, + }, ["2HMace"] = { - ["max"] = 0.2, - ["min"] = 0.2, - }, + ["max"] = 0.2, + ["min"] = 0.2, + }, ["2HSword"] = { - ["max"] = 0.2, - ["min"] = 0.2, - }, + ["max"] = 0.2, + ["min"] = 0.2, + }, ["2HWeapon"] = { - ["max"] = 0.2, - ["min"] = 0.2, - }, + ["max"] = 0.2, + ["min"] = 0.2, + }, ["Amulet"] = { - ["max"] = 0.5, - ["min"] = 0.2, - }, + ["max"] = 0.5, + ["min"] = 0.2, + }, ["Bow"] = { - ["max"] = 0.2, - ["min"] = 0.2, - }, + ["max"] = 0.2, + ["min"] = 0.2, + }, ["Claw"] = { - ["max"] = 0.2, - ["min"] = 0.2, - }, + ["max"] = 0.2, + ["min"] = 0.2, + }, ["Dagger"] = { - ["max"] = 0.2, - ["min"] = 0.2, - }, + ["max"] = 0.2, + ["min"] = 0.2, + }, ["Helmet"] = { - ["max"] = 0.5, - ["min"] = 0.5, - }, + ["max"] = 0.5, + ["min"] = 0.5, + }, ["Quiver"] = { - ["max"] = 0.5, - ["min"] = 0.2, - }, + ["max"] = 0.5, + ["min"] = 0.2, + }, ["Staff"] = { - ["max"] = 0.2, - ["min"] = 0.2, - }, + ["max"] = 0.2, + ["min"] = 0.2, + }, ["Wand"] = { - ["max"] = 0.2, - ["min"] = 0.2, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3999401129", - ["text"] = "#% of Cold Damage Leeched as Life", - ["type"] = "implicit", - }, - }, + ["max"] = 0.2, + ["min"] = 0.2, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2459451600", + ["text"] = "#% of Cold Damage Leeched as Life", + ["type"] = "implicit", + }, + }, ["1679_LightningDamageLifeLeechPermyriad"] = { ["1HAxe"] = { - ["max"] = 0.2, - ["min"] = 0.2, - }, + ["max"] = 0.2, + ["min"] = 0.2, + }, ["1HMace"] = { - ["max"] = 0.2, - ["min"] = 0.2, - }, + ["max"] = 0.2, + ["min"] = 0.2, + }, ["1HSword"] = { - ["max"] = 0.2, - ["min"] = 0.2, - }, + ["max"] = 0.2, + ["min"] = 0.2, + }, ["1HWeapon"] = { - ["max"] = 0.2, - ["min"] = 0.2, - }, + ["max"] = 0.2, + ["min"] = 0.2, + }, ["2HAxe"] = { - ["max"] = 0.2, - ["min"] = 0.2, - }, + ["max"] = 0.2, + ["min"] = 0.2, + }, ["2HMace"] = { - ["max"] = 0.2, - ["min"] = 0.2, - }, + ["max"] = 0.2, + ["min"] = 0.2, + }, ["2HSword"] = { - ["max"] = 0.2, - ["min"] = 0.2, - }, + ["max"] = 0.2, + ["min"] = 0.2, + }, ["2HWeapon"] = { - ["max"] = 0.2, - ["min"] = 0.2, - }, + ["max"] = 0.2, + ["min"] = 0.2, + }, ["Amulet"] = { - ["max"] = 0.5, - ["min"] = 0.2, - }, + ["max"] = 0.5, + ["min"] = 0.2, + }, ["Bow"] = { - ["max"] = 0.2, - ["min"] = 0.2, - }, + ["max"] = 0.2, + ["min"] = 0.2, + }, ["Claw"] = { - ["max"] = 0.2, - ["min"] = 0.2, - }, + ["max"] = 0.2, + ["min"] = 0.2, + }, ["Dagger"] = { - ["max"] = 0.2, - ["min"] = 0.2, - }, + ["max"] = 0.2, + ["min"] = 0.2, + }, ["Helmet"] = { - ["max"] = 0.5, - ["min"] = 0.5, - }, + ["max"] = 0.5, + ["min"] = 0.5, + }, ["Quiver"] = { - ["max"] = 0.5, - ["min"] = 0.2, - }, + ["max"] = 0.5, + ["min"] = 0.2, + }, ["Staff"] = { - ["max"] = 0.2, - ["min"] = 0.2, - }, + ["max"] = 0.2, + ["min"] = 0.2, + }, ["Wand"] = { - ["max"] = 0.2, - ["min"] = 0.2, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_80079005", - ["text"] = "#% of Lightning Damage Leeched as Life", - ["type"] = "implicit", - }, - }, + ["max"] = 0.2, + ["min"] = 0.2, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2696663331", + ["text"] = "#% of Lightning Damage Leeched as Life", + ["type"] = "implicit", + }, + }, ["167_LocalIncreaseSocketedFireGemLevelCorrupted"] = { ["Helmet"] = { - ["max"] = 2, - ["min"] = 2, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_339179093", - ["text"] = "+# to Level of Socketed Fire Gems", - ["type"] = "implicit", - }, - }, + ["max"] = 2, + ["min"] = 2, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_339179093", + ["text"] = "+# to Level of Socketed Fire Gems", + ["type"] = "implicit", + }, + }, ["168_LocalIncreaseSocketedColdGemLevelCorrupted"] = { ["Helmet"] = { - ["max"] = 2, - ["min"] = 2, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1645459191", - ["text"] = "+# to Level of Socketed Cold Gems", - ["type"] = "implicit", - }, - }, + ["max"] = 2, + ["min"] = 2, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1645459191", + ["text"] = "+# to Level of Socketed Cold Gems", + ["type"] = "implicit", + }, + }, ["169_LocalIncreaseSocketedLightningGemLevelCorrupted"] = { ["Helmet"] = { - ["max"] = 2, - ["min"] = 2, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_4043416969", - ["text"] = "+# to Level of Socketed Lightning Gems", - ["type"] = "implicit", - }, - }, + ["max"] = 2, + ["min"] = 2, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_4043416969", + ["text"] = "+# to Level of Socketed Lightning Gems", + ["type"] = "implicit", + }, + }, ["1744_ManaGainPerTarget"] = { ["Ring"] = { - ["max"] = 6, - ["min"] = 1, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_820939409", - ["text"] = "Gain # Mana per Enemy Hit with Attacks", - ["type"] = "implicit", - }, - }, + ["max"] = 6, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_820939409", + ["text"] = "Gain # Mana per Enemy Hit with Attacks", + ["type"] = "implicit", + }, + }, ["175_IncreaseSocketedDurationGemLevel"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_2115168758", - ["text"] = "+# to Level of Socketed Duration Gems", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_2115168758", + ["text"] = "+# to Level of Socketed Duration Gems", + ["type"] = "implicit", + }, + }, ["176_IncreasedSocketedAoEGemLevel"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_2551600084", - ["text"] = "+# to Level of Socketed AoE Gems", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_2551600084", + ["text"] = "+# to Level of Socketed AoE Gems", + ["type"] = "implicit", + }, + }, ["177_LocalIncreaseSocketedProjectileLevelCorrupted"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_2176571093", - ["text"] = "+# to Level of Socketed Projectile Gems", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_2176571093", + ["text"] = "+# to Level of Socketed Projectile Gems", + ["type"] = "implicit", + }, + }, ["1788_AdditionalArrowChain"] = { ["Quiver"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1001077145", - ["text"] = "Arrows Chain +# times", - ["type"] = "implicit", - }, - }, + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1001077145", + ["text"] = "Arrows Chain +# times", + ["type"] = "implicit", + }, + }, ["1791_AdditionalArrowPierce"] = { ["2HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Bow"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_3423006863", - ["text"] = "Arrows Pierce an additional Target", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_3423006863", + ["text"] = "Arrows Pierce an additional Target", + ["type"] = "implicit", + }, + }, ["1792_AdditionalProjectilesCorrupted"] = { ["1HSword"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["1HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_74338099", - ["text"] = "Skills fire an additional Projectile", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_74338099", + ["text"] = "Skills fire an additional Projectile", + ["type"] = "implicit", + }, + }, ["1794_AdditionalArrows"] = { ["2HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Bow"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Quiver"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["sign"] = "", - ["specialCaseData"] = { - ["overrideModLineSingular"] = "Bow Attacks fire an additional Arrow", - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3885405204", - ["text"] = "Bow Attacks fire # additional Arrows", - ["type"] = "implicit", - }, - }, + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLineSingular"] = "Bow Attacks fire an additional Arrow", + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3885405204", + ["text"] = "Bow Attacks fire # additional Arrows", + ["type"] = "implicit", + }, + }, ["1796_ProjectileSpeed"] = { ["1HWeapon"] = { - ["max"] = 8, - ["min"] = 4, - }, + ["max"] = 8, + ["min"] = 4, + }, ["Wand"] = { - ["max"] = 8, - ["min"] = 4, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3759663284", - ["text"] = "#% increased Projectile Speed", - ["type"] = "implicit", - }, - }, + ["max"] = 8, + ["min"] = 4, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3759663284", + ["text"] = "#% increased Projectile Speed", + ["type"] = "implicit", + }, + }, ["1798_MovementVelocity"] = { ["Amulet"] = { - ["max"] = 10, - ["min"] = 2, - }, + ["max"] = 10, + ["min"] = 2, + }, ["Boots"] = { - ["max"] = 10, - ["min"] = 2, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2250533757", - ["text"] = "#% increased Movement Speed", - ["type"] = "implicit", - }, - }, + ["max"] = 10, + ["min"] = 2, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2250533757", + ["text"] = "#% increased Movement Speed", + ["type"] = "implicit", + }, + }, ["1804_MaximumEnduranceCharges"] = { ["Belt"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Boots"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1515657623", - ["text"] = "+# to Maximum Endurance Charges", - ["type"] = "implicit", - }, - }, + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1515657623", + ["text"] = "+# to Maximum Endurance Charges", + ["type"] = "implicit", + }, + }, ["1809_MaximumFrenzyCharges"] = { ["Amulet"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Boots"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Gloves"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_4078695", - ["text"] = "+# to Maximum Frenzy Charges", - ["type"] = "implicit", - }, - }, + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_4078695", + ["text"] = "+# to Maximum Frenzy Charges", + ["type"] = "implicit", + }, + }, ["180_LocalIncreaseSocketedMinionGemLevel"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_3604946673", - ["text"] = "+# to Level of Socketed Minion Gems", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_3604946673", + ["text"] = "+# to Level of Socketed Minion Gems", + ["type"] = "implicit", + }, + }, ["1814_IncreasedMaximumPowerCharges"] = { ["2HAxe"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["2HMace"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["2HSword"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["2HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Bow"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Helmet"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Staff"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_227523295", - ["text"] = "+# to Maximum Power Charges", - ["type"] = "implicit", - }, - }, + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_227523295", + ["text"] = "+# to Maximum Power Charges", + ["type"] = "implicit", + }, + }, ["181_LocalIncreaseSocketedAuraLevelCorrupted"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_2452998583", - ["text"] = "+# to Level of Socketed Aura Gems", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_2452998583", + ["text"] = "+# to Level of Socketed Aura Gems", + ["type"] = "implicit", + }, + }, ["1830_PowerChargeOnCriticalStrikeChance"] = { ["1HMace"] = { - ["max"] = 7, - ["min"] = 5, - }, + ["max"] = 7, + ["min"] = 5, + }, ["1HWeapon"] = { - ["max"] = 7, - ["min"] = 5, - }, + ["max"] = 7, + ["min"] = 5, + }, ["2HWeapon"] = { - ["max"] = 7, - ["min"] = 5, - }, + ["max"] = 7, + ["min"] = 5, + }, ["Claw"] = { - ["max"] = 7, - ["min"] = 5, - }, + ["max"] = 7, + ["min"] = 5, + }, ["Dagger"] = { - ["max"] = 7, - ["min"] = 5, - }, + ["max"] = 7, + ["min"] = 5, + }, ["Staff"] = { - ["max"] = 7, - ["min"] = 5, - }, + ["max"] = 7, + ["min"] = 5, + }, ["Wand"] = { - ["max"] = 7, - ["min"] = 5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3814876985", - ["text"] = "#% chance to gain a Power Charge on Critical Strike", - ["type"] = "implicit", - }, - }, + ["max"] = 7, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3814876985", + ["text"] = "#% chance to gain a Power Charge on Critical Strike", + ["type"] = "implicit", + }, + }, ["1839_CannotBeIgnited"] = { ["Ring"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_331731406", - ["text"] = "Cannot be Ignited", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_331731406", + ["text"] = "Cannot be Ignited", + ["type"] = "implicit", + }, + }, ["1844_ChanceToAvoidFreezeAndChill"] = { ["AnyJewel"] = { - ["max"] = 25, - ["min"] = 20, - }, + ["max"] = 25, + ["min"] = 20, + }, ["BaseJewel"] = { - ["max"] = 25, - ["min"] = 20, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3483999943", - ["text"] = "#% chance to Avoid being Chilled", - ["type"] = "implicit", - }, - }, + ["max"] = 25, + ["min"] = 20, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3483999943", + ["text"] = "#% chance to Avoid being Chilled", + ["type"] = "implicit", + }, + }, ["1845_ChanceToAvoidFreezeAndChill"] = { ["AbyssJewel"] = { - ["max"] = 25, - ["min"] = 20, - }, + ["max"] = 25, + ["min"] = 20, + }, ["Amulet"] = { - ["max"] = 20, - ["min"] = 10, - }, + ["max"] = 20, + ["min"] = 10, + }, ["AnyJewel"] = { - ["max"] = 25, - ["min"] = 20, - }, + ["max"] = 25, + ["min"] = 20, + }, ["BaseJewel"] = { - ["max"] = 25, - ["min"] = 20, - }, + ["max"] = 25, + ["min"] = 20, + }, ["Chest"] = { - ["max"] = 20, - ["min"] = 10, - }, + ["max"] = 20, + ["min"] = 10, + }, ["Ring"] = { - ["max"] = 20, - ["min"] = 10, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1514829491", - ["text"] = "#% chance to Avoid being Frozen", - ["type"] = "implicit", - }, - }, + ["max"] = 20, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1514829491", + ["text"] = "#% chance to Avoid being Frozen", + ["type"] = "implicit", + }, + }, ["1846_AvoidIgnite"] = { ["AbyssJewel"] = { - ["max"] = 25, - ["min"] = 20, - }, + ["max"] = 25, + ["min"] = 20, + }, ["Amulet"] = { - ["max"] = 20, - ["min"] = 10, - }, + ["max"] = 20, + ["min"] = 10, + }, ["AnyJewel"] = { - ["max"] = 25, - ["min"] = 20, - }, + ["max"] = 25, + ["min"] = 20, + }, ["BaseJewel"] = { - ["max"] = 25, - ["min"] = 20, - }, + ["max"] = 25, + ["min"] = 20, + }, ["Chest"] = { - ["max"] = 20, - ["min"] = 10, - }, + ["max"] = 20, + ["min"] = 10, + }, ["Shield"] = { - ["max"] = 20, - ["min"] = 10, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1783006896", - ["text"] = "#% chance to Avoid being Ignited", - ["type"] = "implicit", - }, - }, + ["max"] = 20, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1783006896", + ["text"] = "#% chance to Avoid being Ignited", + ["type"] = "implicit", + }, + }, ["1848_AvoidShock"] = { ["AbyssJewel"] = { - ["max"] = 25, - ["min"] = 20, - }, + ["max"] = 25, + ["min"] = 20, + }, ["AnyJewel"] = { - ["max"] = 25, - ["min"] = 20, - }, + ["max"] = 25, + ["min"] = 20, + }, ["BaseJewel"] = { - ["max"] = 25, - ["min"] = 20, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1871765599", - ["text"] = "#% chance to Avoid being Shocked", - ["type"] = "implicit", - }, - }, + ["max"] = 25, + ["min"] = 20, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1871765599", + ["text"] = "#% chance to Avoid being Shocked", + ["type"] = "implicit", + }, + }, ["1848_ReducedShockChance"] = { ["Belt"] = { - ["max"] = 20, - ["min"] = 10, - }, + ["max"] = 20, + ["min"] = 10, + }, ["Chest"] = { - ["max"] = 20, - ["min"] = 10, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1871765599", - ["text"] = "#% chance to Avoid being Shocked", - ["type"] = "implicit", - }, - }, + ["max"] = 20, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1871765599", + ["text"] = "#% chance to Avoid being Shocked", + ["type"] = "implicit", + }, + }, ["1849_ChanceToAvoidPoison"] = { ["AbyssJewel"] = { - ["max"] = 25, - ["min"] = 20, - }, + ["max"] = 25, + ["min"] = 20, + }, ["AnyJewel"] = { - ["max"] = 25, - ["min"] = 20, - }, + ["max"] = 25, + ["min"] = 20, + }, ["BaseJewel"] = { - ["max"] = 25, - ["min"] = 20, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_4053951709", - ["text"] = "#% chance to Avoid being Poisoned", - ["type"] = "implicit", - }, - }, + ["max"] = 25, + ["min"] = 20, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_4053951709", + ["text"] = "#% chance to Avoid being Poisoned", + ["type"] = "implicit", + }, + }, ["184_LocalIncreaseSocketedCurseLevelCorrupted"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_3691695237", - ["text"] = "+# to Level of Socketed Curse Gems", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_3691695237", + ["text"] = "+# to Level of Socketed Curse Gems", + ["type"] = "implicit", + }, + }, ["1851_AvoidStun"] = { ["AbyssJewel"] = { - ["max"] = 25, - ["min"] = 20, - }, + ["max"] = 25, + ["min"] = 20, + }, ["AnyJewel"] = { - ["max"] = 25, - ["min"] = 20, - }, + ["max"] = 25, + ["min"] = 20, + }, ["BaseJewel"] = { - ["max"] = 25, - ["min"] = 20, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_4262448838", - ["text"] = "#% chance to Avoid being Stunned", - ["type"] = "implicit", - }, - }, + ["max"] = 25, + ["min"] = 20, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_4262448838", + ["text"] = "#% chance to Avoid being Stunned", + ["type"] = "implicit", + }, + }, ["1872_ReducedChillDuration"] = { ["AnyJewel"] = { - ["max"] = 5, - ["min"] = 3, - }, + ["max"] = 5, + ["min"] = 3, + }, ["BaseJewel"] = { - ["max"] = 5, - ["min"] = 3, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1874553720", - ["text"] = "#% reduced Chill Duration on you", - ["type"] = "implicit", - }, - }, + ["max"] = 5, + ["min"] = 3, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1874553720", + ["text"] = "#% reduced Chill Duration on you", + ["type"] = "implicit", + }, + }, ["1873_ReducedShockDuration"] = { ["AnyJewel"] = { - ["max"] = 5, - ["min"] = 3, - }, + ["max"] = 5, + ["min"] = 3, + }, ["BaseJewel"] = { - ["max"] = 5, - ["min"] = 3, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_99927264", - ["text"] = "#% reduced Shock Duration on you", - ["type"] = "implicit", - }, - }, + ["max"] = 5, + ["min"] = 3, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_99927264", + ["text"] = "#% reduced Shock Duration on you", + ["type"] = "implicit", + }, + }, ["1874_ReducedFreezeDuration"] = { ["AnyJewel"] = { - ["max"] = 5, - ["min"] = 3, - }, + ["max"] = 5, + ["min"] = 3, + }, ["BaseJewel"] = { - ["max"] = 5, - ["min"] = 3, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2160282525", - ["text"] = "#% reduced Freeze Duration on you", - ["type"] = "implicit", - }, - }, + ["max"] = 5, + ["min"] = 3, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2160282525", + ["text"] = "#% reduced Freeze Duration on you", + ["type"] = "implicit", + }, + }, ["1875_ReducedBurnDuration"] = { ["AnyJewel"] = { - ["max"] = 5, - ["min"] = 3, - }, + ["max"] = 5, + ["min"] = 3, + }, ["BaseJewel"] = { - ["max"] = 5, - ["min"] = 3, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_986397080", - ["text"] = "#% reduced Ignite Duration on you", - ["type"] = "implicit", - }, - }, + ["max"] = 5, + ["min"] = 3, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_986397080", + ["text"] = "#% reduced Ignite Duration on you", + ["type"] = "implicit", + }, + }, ["1875_ReducedIgniteDurationOnSelf"] = { ["AnyJewel"] = { - ["max"] = 25, - ["min"] = 20, - }, + ["max"] = 25, + ["min"] = 20, + }, ["BaseJewel"] = { - ["max"] = 25, - ["min"] = 20, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_986397080", - ["text"] = "#% reduced Ignite Duration on you", - ["type"] = "implicit", - }, - }, + ["max"] = 25, + ["min"] = 20, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_986397080", + ["text"] = "#% reduced Ignite Duration on you", + ["type"] = "implicit", + }, + }, ["1877_BurnDamage"] = { ["Helmet"] = { - ["max"] = 40, - ["min"] = 30, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1175385867", - ["text"] = "#% increased Burning Damage", - ["type"] = "implicit", - }, - }, + ["max"] = 40, + ["min"] = 30, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1175385867", + ["text"] = "#% increased Burning Damage", + ["type"] = "implicit", + }, + }, ["187_IncreasedSocketedTrapOrMineGemLevel"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_150668988", - ["text"] = "+# to Level of Socketed Trap or Mine Gems", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_150668988", + ["text"] = "+# to Level of Socketed Trap or Mine Gems", + ["type"] = "implicit", + }, + }, ["1880_AreaOfEffect"] = { ["1HAxe"] = { - ["max"] = 20, - ["min"] = 15, - }, + ["max"] = 20, + ["min"] = 15, + }, ["1HMace"] = { - ["max"] = 20, - ["min"] = 15, - }, + ["max"] = 20, + ["min"] = 15, + }, ["1HSword"] = { - ["max"] = 20, - ["min"] = 15, - }, + ["max"] = 20, + ["min"] = 15, + }, ["1HWeapon"] = { - ["max"] = 20, - ["min"] = 15, - }, + ["max"] = 20, + ["min"] = 15, + }, ["2HAxe"] = { - ["max"] = 30, - ["min"] = 25, - }, + ["max"] = 30, + ["min"] = 25, + }, ["2HMace"] = { - ["max"] = 30, - ["min"] = 25, - }, + ["max"] = 30, + ["min"] = 25, + }, ["2HSword"] = { - ["max"] = 30, - ["min"] = 25, - }, + ["max"] = 30, + ["min"] = 25, + }, ["2HWeapon"] = { - ["max"] = 30, - ["min"] = 25, - }, + ["max"] = 30, + ["min"] = 25, + }, ["AbyssJewel"] = { - ["max"] = 5, - ["min"] = 4, - }, + ["max"] = 5, + ["min"] = 4, + }, ["AnyJewel"] = { - ["max"] = 5, - ["min"] = 4, - }, + ["max"] = 5, + ["min"] = 4, + }, ["BaseJewel"] = { - ["max"] = 5, - ["min"] = 4, - }, + ["max"] = 5, + ["min"] = 4, + }, ["Belt"] = { - ["max"] = 10, - ["min"] = 4, - }, + ["max"] = 10, + ["min"] = 4, + }, ["Bow"] = { - ["max"] = 30, - ["min"] = 25, - }, + ["max"] = 30, + ["min"] = 25, + }, ["Claw"] = { - ["max"] = 20, - ["min"] = 15, - }, + ["max"] = 20, + ["min"] = 15, + }, ["Dagger"] = { - ["max"] = 20, - ["min"] = 15, - }, + ["max"] = 20, + ["min"] = 15, + }, ["Staff"] = { - ["max"] = 30, - ["min"] = 25, - }, + ["max"] = 30, + ["min"] = 25, + }, ["Wand"] = { - ["max"] = 20, - ["min"] = 15, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_280731498", - ["text"] = "#% increased Area of Effect", - ["type"] = "implicit", - }, - }, + ["max"] = 20, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_280731498", + ["text"] = "#% increased Area of Effect", + ["type"] = "implicit", + }, + }, ["188_LocalIncreaseSocketedVaalGemLevel"] = { ["Boots"] = { - ["max"] = 2, - ["min"] = 1, - }, + ["max"] = 2, + ["min"] = 1, + }, ["Chest"] = { - ["max"] = 2, - ["min"] = 1, - }, + ["max"] = 2, + ["min"] = 1, + }, ["Gloves"] = { - ["max"] = 2, - ["min"] = 1, - }, + ["max"] = 2, + ["min"] = 1, + }, ["Helmet"] = { - ["max"] = 2, - ["min"] = 1, - }, + ["max"] = 2, + ["min"] = 1, + }, ["Shield"] = { - ["max"] = 2, - ["min"] = 1, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1170386874", - ["text"] = "+# to Level of Socketed Vaal Gems", - ["type"] = "implicit", - }, - }, + ["max"] = 2, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1170386874", + ["text"] = "+# to Level of Socketed Vaal Gems", + ["type"] = "implicit", + }, + }, ["1895_SkillEffectDuration"] = { ["Belt"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3377888098", - ["text"] = "#% increased Skill Effect Duration", - ["type"] = "implicit", - }, - }, + ["max"] = 15, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3377888098", + ["text"] = "#% increased Skill Effect Duration", + ["type"] = "implicit", + }, + }, ["1932_FireDamageAsPortionOfDamage"] = { ["Quiver"] = { - ["max"] = 12, - ["min"] = 8, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_369494213", - ["text"] = "Gain #% of Physical Damage as Extra Fire Damage", - ["type"] = "implicit", - }, - }, + ["max"] = 12, + ["min"] = 8, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_369494213", + ["text"] = "Gain #% of Physical Damage as Extra Fire Damage", + ["type"] = "implicit", + }, + }, ["1933_ColdDamageAsPortionOfDamage"] = { ["Quiver"] = { - ["max"] = 12, - ["min"] = 8, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_979246511", - ["text"] = "Gain #% of Physical Damage as Extra Cold Damage", - ["type"] = "implicit", - }, - }, + ["max"] = 12, + ["min"] = 8, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_979246511", + ["text"] = "Gain #% of Physical Damage as Extra Cold Damage", + ["type"] = "implicit", + }, + }, ["1934_LightningDamageAsPortionOfDamage"] = { ["Quiver"] = { - ["max"] = 12, - ["min"] = 8, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_219391121", - ["text"] = "Gain #% of Physical Damage as Extra Lightning Damage", - ["type"] = "implicit", - }, - }, + ["max"] = 12, + ["min"] = 8, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_219391121", + ["text"] = "Gain #% of Physical Damage as Extra Lightning Damage", + ["type"] = "implicit", + }, + }, ["193_LocalSocketedWarcryGemLevel"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_1672793731", - ["text"] = "+# to Level of Socketed Warcry Gems", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_1672793731", + ["text"] = "+# to Level of Socketed Warcry Gems", + ["type"] = "implicit", + }, + }, ["1944_LifeRegenerationRatePercentage"] = { ["Helmet"] = { - ["max"] = 2, - ["min"] = 1.6, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_836936635", - ["text"] = "Regenerate #% of Life per second", - ["type"] = "implicit", - }, - }, + ["max"] = 2, + ["min"] = 1.6, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_836936635", + ["text"] = "Regenerate #% of Life per second", + ["type"] = "implicit", + }, + }, ["1955_ConvertPhysicalToFire"] = { ["1HMace"] = { - ["max"] = 20, - ["min"] = 10, - }, + ["max"] = 20, + ["min"] = 10, + }, ["1HWeapon"] = { - ["max"] = 20, - ["min"] = 10, - }, + ["max"] = 20, + ["min"] = 10, + }, ["Quiver"] = { - ["max"] = 20, - ["min"] = 10, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1533563525", - ["text"] = "#% of Physical Damage Converted to Fire Damage", - ["type"] = "implicit", - }, - }, + ["max"] = 20, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1533563525", + ["text"] = "#% of Physical Damage Converted to Fire Damage", + ["type"] = "implicit", + }, + }, ["1957_ConvertPhysicalToCold"] = { ["1HMace"] = { - ["max"] = 20, - ["min"] = 10, - }, + ["max"] = 20, + ["min"] = 10, + }, ["1HWeapon"] = { - ["max"] = 20, - ["min"] = 10, - }, + ["max"] = 20, + ["min"] = 10, + }, ["Quiver"] = { - ["max"] = 20, - ["min"] = 10, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2133341901", - ["text"] = "#% of Physical Damage Converted to Cold Damage", - ["type"] = "implicit", - }, - }, + ["max"] = 20, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2133341901", + ["text"] = "#% of Physical Damage Converted to Cold Damage", + ["type"] = "implicit", + }, + }, ["1959_MonsterConvertPhysicalDamageToLightning"] = { ["1HMace"] = { - ["max"] = 20, - ["min"] = 10, - }, + ["max"] = 20, + ["min"] = 10, + }, ["1HWeapon"] = { - ["max"] = 20, - ["min"] = 10, - }, + ["max"] = 20, + ["min"] = 10, + }, ["Quiver"] = { - ["max"] = 20, - ["min"] = 10, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3240769289", - ["text"] = "#% of Physical Damage Converted to Lightning Damage", - ["type"] = "implicit", - }, - }, + ["max"] = 20, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3240769289", + ["text"] = "#% of Physical Damage Converted to Lightning Damage", + ["type"] = "implicit", + }, + }, ["1973_MinionDamage"] = { ["AbyssJewel"] = { - ["max"] = 5, - ["min"] = 4, - }, + ["max"] = 5, + ["min"] = 4, + }, ["Amulet"] = { - ["max"] = 20, - ["min"] = 15, - }, + ["max"] = 20, + ["min"] = 15, + }, ["AnyJewel"] = { - ["max"] = 5, - ["min"] = 4, - }, + ["max"] = 5, + ["min"] = 4, + }, ["BaseJewel"] = { - ["max"] = 5, - ["min"] = 4, - }, + ["max"] = 5, + ["min"] = 4, + }, ["Helmet"] = { - ["max"] = 20, - ["min"] = 15, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1589917703", - ["text"] = "Minions deal #% increased Damage", - ["type"] = "implicit", - }, - }, + ["max"] = 20, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1589917703", + ["text"] = "Minions deal #% increased Damage", + ["type"] = "implicit", + }, + }, ["1988_MaximumBlockChance"] = { ["Shield"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_4124805414", - ["text"] = "+#% to maximum Chance to Block Attack Damage", - ["type"] = "implicit", - }, - }, + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_4124805414", + ["text"] = "+#% to maximum Chance to Block Attack Damage", + ["type"] = "implicit", + }, + }, ["2039_CullingStrike"] = { ["1HAxe"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["1HSword"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["1HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["2HAxe"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["2HSword"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["2HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Bow"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Claw"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Dagger"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Wand"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_2524254339", - ["text"] = "Culling Strike", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_2524254339", + ["text"] = "Culling Strike", + ["type"] = "implicit", + }, + }, ["2042_HitsCauseMonsterFlee"] = { ["1HAxe"] = { - ["max"] = 5, - ["min"] = 5, - }, + ["max"] = 5, + ["min"] = 5, + }, ["1HMace"] = { - ["max"] = 5, - ["min"] = 5, - }, + ["max"] = 5, + ["min"] = 5, + }, ["1HSword"] = { - ["max"] = 5, - ["min"] = 5, - }, + ["max"] = 5, + ["min"] = 5, + }, ["1HWeapon"] = { - ["max"] = 5, - ["min"] = 5, - }, + ["max"] = 5, + ["min"] = 5, + }, ["2HAxe"] = { - ["max"] = 5, - ["min"] = 5, - }, + ["max"] = 5, + ["min"] = 5, + }, ["2HMace"] = { - ["max"] = 5, - ["min"] = 5, - }, + ["max"] = 5, + ["min"] = 5, + }, ["2HSword"] = { - ["max"] = 5, - ["min"] = 5, - }, + ["max"] = 5, + ["min"] = 5, + }, ["2HWeapon"] = { - ["max"] = 5, - ["min"] = 5, - }, + ["max"] = 5, + ["min"] = 5, + }, ["Bow"] = { - ["max"] = 5, - ["min"] = 5, - }, + ["max"] = 5, + ["min"] = 5, + }, ["Claw"] = { - ["max"] = 5, - ["min"] = 5, - }, + ["max"] = 5, + ["min"] = 5, + }, ["Dagger"] = { - ["max"] = 5, - ["min"] = 5, - }, + ["max"] = 5, + ["min"] = 5, + }, ["Staff"] = { - ["max"] = 5, - ["min"] = 5, - }, + ["max"] = 5, + ["min"] = 5, + }, ["Wand"] = { - ["max"] = 5, - ["min"] = 5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3181974858", - ["text"] = "#% chance to Cause Monsters to Flee", - ["type"] = "implicit", - }, - }, + ["max"] = 5, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3181974858", + ["text"] = "#% chance to Cause Monsters to Flee", + ["type"] = "implicit", + }, + }, ["2057_ActorSize"] = { ["AnyJewel"] = { - ["max"] = -1, - ["min"] = -1, - }, + ["max"] = -1, + ["min"] = -1, + }, ["BaseJewel"] = { - ["max"] = -1, - ["min"] = -1, - }, - ["inverseKey"] = "reduced", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1408638732", - ["text"] = "#% increased Character Size", - ["type"] = "implicit", - }, - }, + ["max"] = -1, + ["min"] = -1, + }, + ["inverseKey"] = "reduced", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1408638732", + ["text"] = "#% increased Character Size", + ["type"] = "implicit", + }, + }, ["2070_AddedPhysicalDamageToBowAttacksCorrupted"] = { ["Quiver"] = { - ["max"] = 15.5, - ["min"] = 4.5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1760576992", - ["text"] = "# to # Added Physical Damage with Bow Attacks", - ["type"] = "implicit", - }, - }, + ["max"] = 15.5, + ["min"] = 4.5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1760576992", + ["text"] = "# to # Added Physical Damage with Bow Attacks", + ["type"] = "implicit", + }, + }, ["2080_AddedFireDamageToBowAttacksCorrupted"] = { ["Quiver"] = { - ["max"] = 54, - ["min"] = 16, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3120164895", - ["text"] = "# to # Added Fire Damage with Bow Attacks", - ["type"] = "implicit", - }, - }, + ["max"] = 54, + ["min"] = 16, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3120164895", + ["text"] = "# to # Added Fire Damage with Bow Attacks", + ["type"] = "implicit", + }, + }, ["2088_AddedColdDamageToBowAttacksCorrupted"] = { ["Quiver"] = { - ["max"] = 48.5, - ["min"] = 13, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_215124030", - ["text"] = "# to # Added Cold Damage with Bow Attacks", - ["type"] = "implicit", - }, - }, + ["max"] = 48.5, + ["min"] = 13, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_215124030", + ["text"] = "# to # Added Cold Damage with Bow Attacks", + ["type"] = "implicit", + }, + }, ["2096_AddedLightningDamageToBowAttacksCorrupted"] = { ["Quiver"] = { - ["max"] = 57, - ["min"] = 19.5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1040269876", - ["text"] = "# to # Added Lightning Damage with Bow Attacks", - ["type"] = "implicit", - }, - }, + ["max"] = 57, + ["min"] = 19.5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1040269876", + ["text"] = "# to # Added Lightning Damage with Bow Attacks", + ["type"] = "implicit", + }, + }, ["2103_AddedChaosDamageToBowAttacksCorrupted"] = { ["Quiver"] = { - ["max"] = 36, - ["min"] = 30, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3478075311", - ["text"] = "# to # Added Chaos Damage with Bow Attacks", - ["type"] = "implicit", - }, - }, + ["max"] = 36, + ["min"] = 30, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3478075311", + ["text"] = "# to # Added Chaos Damage with Bow Attacks", + ["type"] = "implicit", + }, + }, ["2168_AdditionalCurseOnEnemies"] = { ["Amulet"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["sign"] = "", - ["specialCaseData"] = { - ["overrideModLineSingular"] = "You can apply an additional Curse", - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_30642521", - ["text"] = "You can apply # additional Curses", - ["type"] = "implicit", - }, - }, + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLineSingular"] = "You can apply an additional Curse", + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_30642521", + ["text"] = "You can apply # additional Curses", + ["type"] = "implicit", + }, + }, ["2170_CurseEffectOnYouJewel"] = { ["AnyJewel"] = { - ["max"] = 25, - ["min"] = 20, - }, + ["max"] = 25, + ["min"] = 20, + }, ["BaseJewel"] = { - ["max"] = 25, - ["min"] = 20, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3407849389", - ["text"] = "#% reduced Effect of Curses on you", - ["type"] = "implicit", - }, - }, + ["max"] = 25, + ["min"] = 20, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3407849389", + ["text"] = "#% reduced Effect of Curses on you", + ["type"] = "implicit", + }, + }, ["2230_ReservationEfficiencyForJewel"] = { ["AbyssJewel"] = { - ["max"] = 2, - ["min"] = 2, - }, + ["max"] = 2, + ["min"] = 2, + }, ["AnyJewel"] = { - ["max"] = 2, - ["min"] = 2, - }, + ["max"] = 2, + ["min"] = 2, + }, ["BaseJewel"] = { - ["max"] = 2, - ["min"] = 2, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2587176568", - ["text"] = "#% increased Reservation Efficiency of Skills", - ["type"] = "implicit", - }, - }, + ["max"] = 2, + ["min"] = 2, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2587176568", + ["text"] = "#% increased Reservation Efficiency of Skills", + ["type"] = "implicit", + }, + }, ["2233_ReducedReservationForJewel"] = { ["AnyJewel"] = { - ["max"] = 2, - ["min"] = 2, - }, + ["max"] = 2, + ["min"] = 2, + }, ["BaseJewel"] = { - ["max"] = 2, - ["min"] = 2, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2587176568", - ["text"] = "#% increased Reservation Efficiency of Skills", - ["type"] = "implicit", - }, - }, + ["max"] = 2, + ["min"] = 2, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2587176568", + ["text"] = "#% increased Reservation Efficiency of Skills", + ["type"] = "implicit", + }, + }, ["2234_PhysicalAttackDamageTaken"] = { ["Amulet"] = { - ["max"] = 17, - ["min"] = 10, - }, + ["max"] = 17, + ["min"] = 10, + }, ["Shield"] = { - ["max"] = 17, - ["min"] = 10, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3441651621", - ["text"] = "+# Physical Damage taken from Attack Hits", - ["type"] = "implicit", - }, - }, + ["max"] = 17, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3441651621", + ["text"] = "+# Physical Damage taken from Attack Hits", + ["type"] = "implicit", + }, + }, ["2239_AreaOfEffectDamageTaken"] = { ["Shield"] = { - ["max"] = 6, - ["min"] = 4, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3001376862", - ["text"] = "#% reduced Area Damage taken from Hits", - ["type"] = "implicit", - }, - }, + ["max"] = 6, + ["min"] = 4, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3001376862", + ["text"] = "#% reduced Area Damage taken from Hits", + ["type"] = "implicit", + }, + }, ["2242_FireDamageTaken"] = { ["Chest"] = { - ["max"] = -4, - ["min"] = -6, - }, - ["inverseKey"] = "reduced", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3743301799", - ["text"] = "#% increased Fire Damage taken", - ["type"] = "implicit", - }, - }, + ["max"] = -4, + ["min"] = -6, + }, + ["inverseKey"] = "reduced", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3743301799", + ["text"] = "#% increased Fire Damage taken", + ["type"] = "implicit", + }, + }, ["2243_ChaosDamageTakenPercentage"] = { ["Chest"] = { - ["max"] = 6, - ["min"] = 4, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2960683632", - ["text"] = "#% reduced Chaos Damage taken", - ["type"] = "implicit", - }, - }, + ["max"] = 6, + ["min"] = 4, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2960683632", + ["text"] = "#% reduced Chaos Damage taken", + ["type"] = "implicit", + }, + }, ["2249_IncreasedShieldBlockPercentage"] = { ["Shield"] = { - ["max"] = 5, - ["min"] = 4, - }, - ["sign"] = "", - ["specialCaseData"] = { - ["overrideModLine"] = "+#% Chance to Block", - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_4253454700", - ["text"] = "+#% Chance to Block (Shields)", - ["type"] = "implicit", - }, - }, + ["max"] = 5, + ["min"] = 4, + }, + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "+#% Chance to Block", + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_4253454700", + ["text"] = "+#% Chance to Block (Shields)", + ["type"] = "implicit", + }, + }, ["224_DisplaySocketedGemGetsIncreasedAreaOfEffectLevel"] = { ["2HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Staff"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3720936304", - ["text"] = "Socketed Gems are Supported by Level # Increased Area of Effect", - ["type"] = "implicit", - }, - }, + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3720936304", + ["text"] = "Socketed Gems are Supported by Level # Increased Area of Effect", + ["type"] = "implicit", + }, + }, ["2255_TrapsAllowed"] = { ["Belt"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2224292784", - ["text"] = "Can have up to # additional Trap placed at a time", - ["type"] = "implicit", - }, - }, + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2224292784", + ["text"] = "Can have up to # additional Trap placed at a time", + ["type"] = "implicit", + }, + }, ["2440_EnemiesCantLifeLeech"] = { ["Helmet"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_4293455942", - ["text"] = "Enemies Cannot Leech Life From you", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_4293455942", + ["text"] = "Enemies Cannot Leech Life From you", + ["type"] = "implicit", + }, + }, ["2447_PhysicalDamageTakenAsFirePercent"] = { ["Shield"] = { - ["max"] = 8, - ["min"] = 6, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3342989455", - ["text"] = "#% of Physical Damage from Hits taken as Fire Damage", - ["type"] = "implicit", - }, - }, + ["max"] = 8, + ["min"] = 6, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3342989455", + ["text"] = "#% of Physical Damage from Hits taken as Fire Damage", + ["type"] = "implicit", + }, + }, ["2448_PhysicalDamageTakenAsCold"] = { ["Shield"] = { - ["max"] = 8, - ["min"] = 6, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1871056256", - ["text"] = "#% of Physical Damage from Hits taken as Cold Damage", - ["type"] = "implicit", - }, - }, + ["max"] = 8, + ["min"] = 6, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1871056256", + ["text"] = "#% of Physical Damage from Hits taken as Cold Damage", + ["type"] = "implicit", + }, + }, ["2449_PhysicalDamageTakenAsLightningPercent"] = { ["Shield"] = { - ["max"] = 8, - ["min"] = 6, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_425242359", - ["text"] = "#% of Physical Damage from Hits taken as Lightning Damage", - ["type"] = "implicit", - }, - }, + ["max"] = 8, + ["min"] = 6, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_425242359", + ["text"] = "#% of Physical Damage from Hits taken as Lightning Damage", + ["type"] = "implicit", + }, + }, ["2451_PhysicalDamageTakenAsChaos"] = { ["Shield"] = { - ["max"] = 8, - ["min"] = 6, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_4129825612", - ["text"] = "#% of Physical Damage from Hits taken as Chaos Damage", - ["type"] = "implicit", - }, - }, + ["max"] = 8, + ["min"] = 6, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_4129825612", + ["text"] = "#% of Physical Damage from Hits taken as Chaos Damage", + ["type"] = "implicit", + }, + }, ["2455_PercentDamageGoesToMana"] = { ["Amulet"] = { - ["max"] = 6, - ["min"] = 3, - }, + ["max"] = 6, + ["min"] = 3, + }, ["Ring"] = { - ["max"] = 6, - ["min"] = 3, - }, + ["max"] = 6, + ["min"] = 3, + }, ["Shield"] = { - ["max"] = 6, - ["min"] = 3, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_472520716", - ["text"] = "#% of Damage taken Recouped as Mana", - ["type"] = "implicit", - }, - }, + ["max"] = 6, + ["min"] = 3, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_472520716", + ["text"] = "#% of Damage taken Recouped as Mana", + ["type"] = "implicit", + }, + }, ["2483_ChanceToBleedOnHitAndIncreasedDamageToBleedingTargets"] = { ["1HAxe"] = { - ["max"] = 20, - ["min"] = 20, - }, + ["max"] = 20, + ["min"] = 20, + }, ["1HWeapon"] = { - ["max"] = 20, - ["min"] = 20, - }, + ["max"] = 20, + ["min"] = 20, + }, ["2HAxe"] = { - ["max"] = 20, - ["min"] = 20, - }, + ["max"] = 20, + ["min"] = 20, + }, ["2HWeapon"] = { - ["max"] = 20, - ["min"] = 20, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1519615863", - ["text"] = "#% chance to cause Bleeding on Hit", - ["type"] = "implicit", - }, - }, + ["max"] = 20, + ["min"] = 20, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1519615863", + ["text"] = "#% chance to cause Bleeding on Hit", + ["type"] = "implicit", + }, + }, ["2491_ChanceToBleedOnHitAndIncreasedDamageToBleedingTargets"] = { ["1HAxe"] = { - ["max"] = 40, - ["min"] = 30, - }, + ["max"] = 40, + ["min"] = 30, + }, ["1HWeapon"] = { - ["max"] = 40, - ["min"] = 30, - }, + ["max"] = 40, + ["min"] = 30, + }, ["2HAxe"] = { - ["max"] = 40, - ["min"] = 30, - }, + ["max"] = 40, + ["min"] = 30, + }, ["2HWeapon"] = { - ["max"] = 40, - ["min"] = 30, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3944782785", - ["text"] = "#% increased Attack Damage against Bleeding Enemies", - ["type"] = "implicit", - }, - }, + ["max"] = 40, + ["min"] = 30, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3944782785", + ["text"] = "#% increased Attack Damage against Bleeding Enemies", + ["type"] = "implicit", + }, + }, ["2522_CurseOnHitLevelTemporalChains"] = { ["Gloves"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_3433724931", - ["text"] = "Curse Enemies with Temporal Chains on Hit", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_3433724931", + ["text"] = "Curse Enemies with Temporal Chains on Hit", + ["type"] = "implicit", + }, + }, ["2523_CurseOnHitLevelVulnerability"] = { ["Gloves"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_3967845372", - ["text"] = "Curse Enemies with Vulnerability on Hit", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_3967845372", + ["text"] = "Curse Enemies with Vulnerability on Hit", + ["type"] = "implicit", + }, + }, ["2525_CurseOnHitLevelElementalWeakness"] = { ["Gloves"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_2028847114", - ["text"] = "Curse Enemies with Elemental Weakness on Hit", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_2028847114", + ["text"] = "Curse Enemies with Elemental Weakness on Hit", + ["type"] = "implicit", + }, + }, ["2528_CurseOnHitDespair"] = { ["Gloves"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_2764915899", - ["text"] = "Curse Enemies with Despair on Hit", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_2764915899", + ["text"] = "Curse Enemies with Despair on Hit", + ["type"] = "implicit", + }, + }, ["2529_CurseOnHitEnfeeble"] = { ["Gloves"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_1625819882", - ["text"] = "Curse Enemies with Enfeeble on Hit", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_1625819882", + ["text"] = "Curse Enemies with Enfeeble on Hit", + ["type"] = "implicit", + }, + }, ["2631_FrenzyChargeOnKillChance"] = { ["1HWeapon"] = { - ["max"] = 11, - ["min"] = 9, - }, + ["max"] = 11, + ["min"] = 9, + }, ["2HWeapon"] = { - ["max"] = 11, - ["min"] = 9, - }, + ["max"] = 11, + ["min"] = 9, + }, ["Bow"] = { - ["max"] = 11, - ["min"] = 9, - }, + ["max"] = 11, + ["min"] = 9, + }, ["Claw"] = { - ["max"] = 11, - ["min"] = 9, - }, + ["max"] = 11, + ["min"] = 9, + }, ["Dagger"] = { - ["max"] = 11, - ["min"] = 9, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1826802197", - ["text"] = "#% chance to gain a Frenzy Charge on Kill", - ["type"] = "implicit", - }, - }, + ["max"] = 11, + ["min"] = 9, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1826802197", + ["text"] = "#% chance to gain a Frenzy Charge on Kill", + ["type"] = "implicit", + }, + }, ["2699_DamageRemovedFromManaBeforeLife"] = { ["Helmet"] = { - ["max"] = 5, - ["min"] = 3, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_458438597", - ["text"] = "#% of Damage is taken from Mana before Life", - ["type"] = "implicit", - }, - }, + ["max"] = 5, + ["min"] = 3, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_458438597", + ["text"] = "#% of Damage is taken from Mana before Life", + ["type"] = "implicit", + }, + }, ["2745_LocalMeleeWeaponRange"] = { ["1HAxe"] = { - ["max"] = 0.2, - ["min"] = 0.1, - }, + ["max"] = 0.2, + ["min"] = 0.1, + }, ["1HMace"] = { - ["max"] = 0.2, - ["min"] = 0.1, - }, + ["max"] = 0.2, + ["min"] = 0.1, + }, ["1HSword"] = { - ["max"] = 0.2, - ["min"] = 0.1, - }, + ["max"] = 0.2, + ["min"] = 0.1, + }, ["1HWeapon"] = { - ["max"] = 0.2, - ["min"] = 0.1, - }, + ["max"] = 0.2, + ["min"] = 0.1, + }, ["2HAxe"] = { - ["max"] = 0.2, - ["min"] = 0.1, - }, + ["max"] = 0.2, + ["min"] = 0.1, + }, ["2HMace"] = { - ["max"] = 0.2, - ["min"] = 0.1, - }, + ["max"] = 0.2, + ["min"] = 0.1, + }, ["2HSword"] = { - ["max"] = 0.2, - ["min"] = 0.1, - }, + ["max"] = 0.2, + ["min"] = 0.1, + }, ["2HWeapon"] = { - ["max"] = 0.2, - ["min"] = 0.1, - }, + ["max"] = 0.2, + ["min"] = 0.1, + }, ["Bow"] = { - ["max"] = 0.2, - ["min"] = 0.1, - }, + ["max"] = 0.2, + ["min"] = 0.1, + }, ["Claw"] = { - ["max"] = 0.2, - ["min"] = 0.1, - }, + ["max"] = 0.2, + ["min"] = 0.1, + }, ["Dagger"] = { - ["max"] = 0.2, - ["min"] = 0.1, - }, + ["max"] = 0.2, + ["min"] = 0.1, + }, ["Staff"] = { - ["max"] = 0.2, - ["min"] = 0.1, - }, + ["max"] = 0.2, + ["min"] = 0.1, + }, ["Wand"] = { - ["max"] = 0.2, - ["min"] = 0.1, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_350598685", - ["text"] = "+# metres to Weapon Range", - ["type"] = "implicit", - }, - }, + ["max"] = 0.2, + ["min"] = 0.1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_350598685", + ["text"] = "+# metres to Weapon Range", + ["type"] = "implicit", + }, + }, ["2749_ProjectileDamageTaken"] = { ["Shield"] = { - ["max"] = 6, - ["min"] = 4, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1425651005", - ["text"] = "#% reduced Damage taken from Projectile Hits", - ["type"] = "implicit", - }, - }, + ["max"] = 6, + ["min"] = 4, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1425651005", + ["text"] = "#% reduced Damage taken from Projectile Hits", + ["type"] = "implicit", + }, + }, ["2849_FishingQuantity"] = { ["FishingRod"] = { - ["max"] = 10, - ["min"] = 5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3802667447", - ["text"] = "#% increased Quantity of Fish Caught", - ["type"] = "implicit", - }, - }, + ["max"] = 10, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3802667447", + ["text"] = "#% increased Quantity of Fish Caught", + ["type"] = "implicit", + }, + }, ["2850_FishingRarity"] = { ["FishingRod"] = { - ["max"] = 10, - ["min"] = 5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3310914132", - ["text"] = "#% increased Rarity of Fish Caught", - ["type"] = "implicit", - }, - }, + ["max"] = 10, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3310914132", + ["text"] = "#% increased Rarity of Fish Caught", + ["type"] = "implicit", + }, + }, ["2855_CorruptFish"] = { ["FishingRod"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_2451060005", - ["text"] = "You can catch Corrupted Fish", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_2451060005", + ["text"] = "You can catch Corrupted Fish", + ["type"] = "implicit", + }, + }, ["2974_ImmunityToBlind"] = { ["Helmet"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_1436284579", - ["text"] = "Cannot be Blinded", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_1436284579", + ["text"] = "Cannot be Blinded", + ["type"] = "implicit", + }, + }, ["2980_ElementalPenetration"] = { ["1HSword"] = { - ["max"] = 10, - ["min"] = 8, - }, + ["max"] = 10, + ["min"] = 8, + }, ["1HWeapon"] = { - ["max"] = 10, - ["min"] = 8, - }, + ["max"] = 10, + ["min"] = 8, + }, ["AbyssJewel"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["AnyJewel"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["BaseJewel"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Wand"] = { - ["max"] = 10, - ["min"] = 8, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2101383955", - ["text"] = "Damage Penetrates #% Elemental Resistances", - ["type"] = "implicit", - }, - }, + ["max"] = 10, + ["min"] = 8, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2101383955", + ["text"] = "Damage Penetrates #% Elemental Resistances", + ["type"] = "implicit", + }, + }, ["2981_FireResistancePenetration"] = { ["AbyssJewel"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["AnyJewel"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["BaseJewel"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2653955271", - ["text"] = "Damage Penetrates #% Fire Resistance", - ["type"] = "implicit", - }, - }, + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2653955271", + ["text"] = "Damage Penetrates #% Fire Resistance", + ["type"] = "implicit", + }, + }, ["2983_ColdResistancePenetration"] = { ["AbyssJewel"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["AnyJewel"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["BaseJewel"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3417711605", - ["text"] = "Damage Penetrates #% Cold Resistance", - ["type"] = "implicit", - }, - }, + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3417711605", + ["text"] = "Damage Penetrates #% Cold Resistance", + ["type"] = "implicit", + }, + }, ["2984_LightningResistancePenetration"] = { ["AbyssJewel"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["AnyJewel"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["BaseJewel"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_818778753", - ["text"] = "Damage Penetrates #% Lightning Resistance", - ["type"] = "implicit", - }, - }, + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_818778753", + ["text"] = "Damage Penetrates #% Lightning Resistance", + ["type"] = "implicit", + }, + }, ["2993_ChanceToGainOnslaughtOnKill"] = { ["1HAxe"] = { - ["max"] = 15, - ["min"] = 10, - }, + ["max"] = 15, + ["min"] = 10, + }, ["1HMace"] = { - ["max"] = 15, - ["min"] = 10, - }, + ["max"] = 15, + ["min"] = 10, + }, ["1HSword"] = { - ["max"] = 15, - ["min"] = 10, - }, + ["max"] = 15, + ["min"] = 10, + }, ["1HWeapon"] = { - ["max"] = 15, - ["min"] = 10, - }, + ["max"] = 15, + ["min"] = 10, + }, ["Claw"] = { - ["max"] = 15, - ["min"] = 10, - }, + ["max"] = 15, + ["min"] = 10, + }, ["Dagger"] = { - ["max"] = 15, - ["min"] = 10, - }, + ["max"] = 15, + ["min"] = 10, + }, ["Wand"] = { - ["max"] = 15, - ["min"] = 10, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3023957681", - ["text"] = "#% chance to gain Onslaught for 4 seconds on Kill", - ["type"] = "implicit", - }, - }, + ["max"] = 15, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3023957681", + ["text"] = "#% chance to gain Onslaught for 4 seconds on Kill", + ["type"] = "implicit", + }, + }, ["3026_ChargeDuration"] = { ["AnyJewel"] = { - ["max"] = 7, - ["min"] = 3, - }, + ["max"] = 7, + ["min"] = 3, + }, ["BaseJewel"] = { - ["max"] = 7, - ["min"] = 3, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2839036860", - ["text"] = "#% increased Endurance, Frenzy and Power Charge Duration", - ["type"] = "implicit", - }, - }, + ["max"] = 7, + ["min"] = 3, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2839036860", + ["text"] = "#% increased Endurance, Frenzy and Power Charge Duration", + ["type"] = "implicit", + }, + }, ["3094_ImmuneToSilence"] = { ["AbyssJewel"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["AnyJewel"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["BaseJewel"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_1654414582", - ["text"] = "You cannot be Cursed with Silence", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_1654414582", + ["text"] = "You cannot be Cursed with Silence", + ["type"] = "implicit", + }, + }, ["3095_VaalSkillDamage"] = { ["AnyJewel"] = { - ["max"] = 10, - ["min"] = 5, - }, + ["max"] = 10, + ["min"] = 5, + }, ["BaseJewel"] = { - ["max"] = 10, - ["min"] = 5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2257141320", - ["text"] = "#% increased Damage with Vaal Skills", - ["type"] = "implicit", - }, - }, + ["max"] = 10, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2257141320", + ["text"] = "#% increased Damage with Vaal Skills", + ["type"] = "implicit", + }, + }, ["3096_DamageWhileDead"] = { ["AnyJewel"] = { - ["max"] = 30, - ["min"] = 20, - }, + ["max"] = 30, + ["min"] = 20, + }, ["BaseJewel"] = { - ["max"] = 30, - ["min"] = 20, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3582580206", - ["text"] = "#% increased Damage while Dead", - ["type"] = "implicit", - }, - }, + ["max"] = 30, + ["min"] = 20, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3582580206", + ["text"] = "#% increased Damage while Dead", + ["type"] = "implicit", + }, + }, ["3099_ChaosDamagePerCorruptedItem"] = { ["AnyJewel"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["BaseJewel"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_4004011170", - ["text"] = "#% increased Chaos Damage for each Corrupted Item Equipped", - ["type"] = "implicit", - }, - }, + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_4004011170", + ["text"] = "#% increased Chaos Damage for each Corrupted Item Equipped", + ["type"] = "implicit", + }, + }, ["3100_LifeLeechRatePerCorruptedItem"] = { ["AnyJewel"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["BaseJewel"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3815042054", - ["text"] = "#% increased total Recovery per second from Life Leech for each Corrupted Item Equipped", - ["type"] = "implicit", - }, - }, + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3815042054", + ["text"] = "#% increased total Recovery per second from Life Leech for each Corrupted Item Equipped", + ["type"] = "implicit", + }, + }, ["3102_ManaLeechRatePerCorrupteditem"] = { ["AnyJewel"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["BaseJewel"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2679819855", - ["text"] = "#% increased total Recovery per second from Mana Leech for each Corrupted Item Equipped", - ["type"] = "implicit", - }, - }, + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2679819855", + ["text"] = "#% increased total Recovery per second from Mana Leech for each Corrupted Item Equipped", + ["type"] = "implicit", + }, + }, ["3132_ChanceToTakeCriticalStrike"] = { ["AnyJewel"] = { - ["max"] = 100, - ["min"] = 60, - }, + ["max"] = 100, + ["min"] = 60, + }, ["BaseJewel"] = { - ["max"] = 100, - ["min"] = 60, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_165218607", - ["text"] = "Hits have #% increased Critical Strike Chance against you", - ["type"] = "implicit", - }, - }, + ["max"] = 100, + ["min"] = 60, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_165218607", + ["text"] = "Hits have #% increased Critical Strike Chance against you", + ["type"] = "implicit", + }, + }, ["3186_MovementSpeedDuringFlaskEffect"] = { ["Belt"] = { - ["max"] = 12, - ["min"] = 8, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_304970526", - ["text"] = "#% increased Movement Speed during any Flask Effect", - ["type"] = "implicit", - }, - }, + ["max"] = 12, + ["min"] = 8, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_304970526", + ["text"] = "#% increased Movement Speed during any Flask Effect", + ["type"] = "implicit", + }, + }, ["324_SupportedByLifeGainOnHit"] = { ["1HMace"] = { - ["max"] = 10, - ["min"] = 10, - }, + ["max"] = 10, + ["min"] = 10, + }, ["1HSword"] = { - ["max"] = 10, - ["min"] = 10, - }, + ["max"] = 10, + ["min"] = 10, + }, ["1HWeapon"] = { - ["max"] = 10, - ["min"] = 10, - }, + ["max"] = 10, + ["min"] = 10, + }, ["2HAxe"] = { - ["max"] = 10, - ["min"] = 10, - }, + ["max"] = 10, + ["min"] = 10, + }, ["2HMace"] = { - ["max"] = 10, - ["min"] = 10, - }, + ["max"] = 10, + ["min"] = 10, + }, ["2HSword"] = { - ["max"] = 10, - ["min"] = 10, - }, + ["max"] = 10, + ["min"] = 10, + }, ["2HWeapon"] = { - ["max"] = 10, - ["min"] = 10, - }, + ["max"] = 10, + ["min"] = 10, + }, ["Bow"] = { - ["max"] = 10, - ["min"] = 10, - }, + ["max"] = 10, + ["min"] = 10, + }, ["Staff"] = { - ["max"] = 10, - ["min"] = 10, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2032386732", - ["text"] = "Socketed Gems are Supported by Level # Life Gain On Hit", - ["type"] = "implicit", - }, - }, + ["max"] = 10, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2032386732", + ["text"] = "Socketed Gems are Supported by Level # Life Gain On Hit", + ["type"] = "implicit", + }, + }, ["325_SocketedGemsSupportedByLifetap"] = { ["1HMace"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["1HSword"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["1HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["2HAxe"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["2HMace"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["2HSword"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["2HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Bow"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Staff"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1079239905", - ["text"] = "Socketed Gems are Supported by Level # Lifetap", - ["type"] = "implicit", - }, - }, + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1079239905", + ["text"] = "Socketed Gems are Supported by Level # Lifetap", + ["type"] = "implicit", + }, + }, ["3300_AttackSpeedDuringFlaskEffect"] = { ["Belt"] = { - ["max"] = 12, - ["min"] = 8, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1365052901", - ["text"] = "#% increased Attack Speed during any Flask Effect", - ["type"] = "implicit", - }, - }, + ["max"] = 12, + ["min"] = 8, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1365052901", + ["text"] = "#% increased Attack Speed during any Flask Effect", + ["type"] = "implicit", + }, + }, ["3356_IncreasedAuraEffectAngerCorrupted"] = { ["Amulet"] = { - ["max"] = 20, - ["min"] = 15, - }, + ["max"] = 20, + ["min"] = 15, + }, ["Belt"] = { - ["max"] = 20, - ["min"] = 15, - }, + ["max"] = 20, + ["min"] = 15, + }, ["Ring"] = { - ["max"] = 20, - ["min"] = 15, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1592278124", - ["text"] = "Anger has #% increased Aura Effect", - ["type"] = "implicit", - }, - }, + ["max"] = 20, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1592278124", + ["text"] = "Anger has #% increased Aura Effect", + ["type"] = "implicit", + }, + }, ["3361_IncreasedAuraEffectWrathCorrupted"] = { ["Amulet"] = { - ["max"] = 20, - ["min"] = 15, - }, + ["max"] = 20, + ["min"] = 15, + }, ["Belt"] = { - ["max"] = 20, - ["min"] = 15, - }, + ["max"] = 20, + ["min"] = 15, + }, ["Ring"] = { - ["max"] = 20, - ["min"] = 15, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2181791238", - ["text"] = "Wrath has #% increased Aura Effect", - ["type"] = "implicit", - }, - }, + ["max"] = 20, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2181791238", + ["text"] = "Wrath has #% increased Aura Effect", + ["type"] = "implicit", + }, + }, ["3363_IncreasedAuraEffectGraceCorrupted"] = { ["Amulet"] = { - ["max"] = 20, - ["min"] = 15, - }, + ["max"] = 20, + ["min"] = 15, + }, ["Belt"] = { - ["max"] = 20, - ["min"] = 15, - }, + ["max"] = 20, + ["min"] = 15, + }, ["Ring"] = { - ["max"] = 20, - ["min"] = 15, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_397427740", - ["text"] = "Grace has #% increased Aura Effect", - ["type"] = "implicit", - }, - }, + ["max"] = 20, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_397427740", + ["text"] = "Grace has #% increased Aura Effect", + ["type"] = "implicit", + }, + }, ["3366_IncreasedAuraEffectHatredCorrupted"] = { ["Amulet"] = { - ["max"] = 20, - ["min"] = 15, - }, + ["max"] = 20, + ["min"] = 15, + }, ["Belt"] = { - ["max"] = 20, - ["min"] = 15, - }, + ["max"] = 20, + ["min"] = 15, + }, ["Ring"] = { - ["max"] = 20, - ["min"] = 15, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3742945352", - ["text"] = "Hatred has #% increased Aura Effect", - ["type"] = "implicit", - }, - }, + ["max"] = 20, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3742945352", + ["text"] = "Hatred has #% increased Aura Effect", + ["type"] = "implicit", + }, + }, ["3367_IncreasedAuraEffectDeterminationCorrupted"] = { ["Amulet"] = { - ["max"] = 20, - ["min"] = 15, - }, + ["max"] = 20, + ["min"] = 15, + }, ["Belt"] = { - ["max"] = 20, - ["min"] = 15, - }, + ["max"] = 20, + ["min"] = 15, + }, ["Ring"] = { - ["max"] = 20, - ["min"] = 15, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3653400807", - ["text"] = "Determination has #% increased Aura Effect", - ["type"] = "implicit", - }, - }, + ["max"] = 20, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3653400807", + ["text"] = "Determination has #% increased Aura Effect", + ["type"] = "implicit", + }, + }, ["3368_IncreasedAuraEffectDisciplineCorrupted"] = { ["Amulet"] = { - ["max"] = 20, - ["min"] = 15, - }, + ["max"] = 20, + ["min"] = 15, + }, ["Belt"] = { - ["max"] = 20, - ["min"] = 15, - }, + ["max"] = 20, + ["min"] = 15, + }, ["Ring"] = { - ["max"] = 20, - ["min"] = 15, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_788317702", - ["text"] = "Discipline has #% increased Aura Effect", - ["type"] = "implicit", - }, - }, + ["max"] = 20, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_788317702", + ["text"] = "Discipline has #% increased Aura Effect", + ["type"] = "implicit", + }, + }, ["3369_CannotBePoisoned"] = { ["Ring"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_3835551335", - ["text"] = "Cannot be Poisoned", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_3835551335", + ["text"] = "Cannot be Poisoned", + ["type"] = "implicit", + }, + }, ["3377_UnholyMightOnKillPercentChance"] = { ["1HWeapon"] = { - ["max"] = 15, - ["min"] = 10, - }, + ["max"] = 15, + ["min"] = 10, + }, ["Dagger"] = { - ["max"] = 15, - ["min"] = 10, - }, + ["max"] = 15, + ["min"] = 10, + }, ["Wand"] = { - ["max"] = 15, - ["min"] = 10, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3562211447", - ["text"] = "#% chance to gain Unholy Might for 3 seconds on Kill", - ["type"] = "implicit", - }, - }, + ["max"] = 15, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3562211447", + ["text"] = "#% chance to gain Unholy Might for 3 seconds on Kill", + ["type"] = "implicit", + }, + }, ["3388_LightningDamageTaken"] = { ["Chest"] = { - ["max"] = 6, - ["min"] = 4, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1276918229", - ["text"] = "#% reduced Lightning Damage taken", - ["type"] = "implicit", - }, - }, + ["max"] = 6, + ["min"] = 4, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1276918229", + ["text"] = "#% reduced Lightning Damage taken", + ["type"] = "implicit", + }, + }, ["3389_ColdDamageTakenPercentage"] = { ["Chest"] = { - ["max"] = 6, - ["min"] = 4, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3303114033", - ["text"] = "#% reduced Cold Damage taken", - ["type"] = "implicit", - }, - }, + ["max"] = 6, + ["min"] = 4, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3303114033", + ["text"] = "#% reduced Cold Damage taken", + ["type"] = "implicit", + }, + }, ["344_SupportedByOnslaught"] = { ["2HAxe"] = { - ["max"] = 10, - ["min"] = 10, - }, + ["max"] = 10, + ["min"] = 10, + }, ["2HMace"] = { - ["max"] = 10, - ["min"] = 10, - }, + ["max"] = 10, + ["min"] = 10, + }, ["2HSword"] = { - ["max"] = 10, - ["min"] = 10, - }, + ["max"] = 10, + ["min"] = 10, + }, ["2HWeapon"] = { - ["max"] = 10, - ["min"] = 10, - }, + ["max"] = 10, + ["min"] = 10, + }, ["Bow"] = { - ["max"] = 10, - ["min"] = 10, - }, + ["max"] = 10, + ["min"] = 10, + }, ["Staff"] = { - ["max"] = 10, - ["min"] = 10, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3237923082", - ["text"] = "Socketed Gems are Supported by Level # Momentum", - ["type"] = "implicit", - }, - }, + ["max"] = 10, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3237923082", + ["text"] = "Socketed Gems are Supported by Level # Momentum", + ["type"] = "implicit", + }, + }, ["4215_BleedingImmunity"] = { ["Ring"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_1901158930", - ["text"] = "Bleeding cannot be inflicted on you", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_1901158930", + ["text"] = "Bleeding cannot be inflicted on you", + ["type"] = "implicit", + }, + }, ["4216_ChanceToAvoidBleeding"] = { ["AbyssJewel"] = { - ["max"] = 25, - ["min"] = 20, - }, + ["max"] = 25, + ["min"] = 20, + }, ["AnyJewel"] = { - ["max"] = 25, - ["min"] = 20, - }, + ["max"] = 25, + ["min"] = 20, + }, ["BaseJewel"] = { - ["max"] = 25, - ["min"] = 20, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1618589784", - ["text"] = "#% chance to Avoid Bleeding", - ["type"] = "implicit", - }, - }, + ["max"] = 25, + ["min"] = 20, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1618589784", + ["text"] = "#% chance to Avoid Bleeding", + ["type"] = "implicit", + }, + }, ["4313_PhysicalDamageReductionWhileNotMoving"] = { ["Chest"] = { - ["max"] = 5, - ["min"] = 3, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2181129193", - ["text"] = "#% additional Physical Damage Reduction while stationary", - ["type"] = "implicit", - }, - }, + ["max"] = 5, + ["min"] = 3, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2181129193", + ["text"] = "#% additional Physical Damage Reduction while stationary", + ["type"] = "implicit", + }, + }, ["4314_AddedArmourWhileStationary"] = { ["Boots"] = { - ["max"] = 322, - ["min"] = 35, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2551779822", - ["text"] = "+# Armour while stationary", - ["type"] = "implicit", - }, - }, + ["max"] = 322, + ["min"] = 35, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2551779822", + ["text"] = "+# Armour while stationary", + ["type"] = "implicit", + }, + }, ["462_DisplaySocketedGemsGetAddedFireDamage"] = { ["1HMace"] = { - ["max"] = 12, - ["min"] = 12, - }, + ["max"] = 12, + ["min"] = 12, + }, ["1HWeapon"] = { - ["max"] = 12, - ["min"] = 12, - }, + ["max"] = 12, + ["min"] = 12, + }, ["2HAxe"] = { - ["max"] = 12, - ["min"] = 12, - }, + ["max"] = 12, + ["min"] = 12, + }, ["2HMace"] = { - ["max"] = 12, - ["min"] = 12, - }, + ["max"] = 12, + ["min"] = 12, + }, ["2HSword"] = { - ["max"] = 12, - ["min"] = 12, - }, + ["max"] = 12, + ["min"] = 12, + }, ["2HWeapon"] = { - ["max"] = 12, - ["min"] = 12, - }, + ["max"] = 12, + ["min"] = 12, + }, ["Bow"] = { - ["max"] = 12, - ["min"] = 12, - }, + ["max"] = 12, + ["min"] = 12, + }, ["Staff"] = { - ["max"] = 12, - ["min"] = 12, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2572192375", - ["text"] = "Socketed Gems are Supported by Level # Added Fire Damage", - ["type"] = "implicit", - }, - }, + ["max"] = 12, + ["min"] = 12, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2572192375", + ["text"] = "Socketed Gems are Supported by Level # Added Fire Damage", + ["type"] = "implicit", + }, + }, ["466_DisplaySocketedGemGetsElementalProliferation"] = { ["1HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Wand"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2929101122", - ["text"] = "Socketed Gems are Supported by Level # Elemental Proliferation", - ["type"] = "implicit", - }, - }, + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2929101122", + ["text"] = "Socketed Gems are Supported by Level # Elemental Proliferation", + ["type"] = "implicit", + }, + }, ["470_SupportedByBlind"] = { ["2HWeapon"] = { - ["max"] = 10, - ["min"] = 10, - }, + ["max"] = 10, + ["min"] = 10, + }, ["Bow"] = { - ["max"] = 10, - ["min"] = 10, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2223640518", - ["text"] = "Socketed Gems are supported by Level # Blind", - ["type"] = "implicit", - }, - }, + ["max"] = 10, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2223640518", + ["text"] = "Socketed Gems are supported by Level # Blind", + ["type"] = "implicit", + }, + }, ["471_SupportedByMeleeSplash"] = { ["1HAxe"] = { - ["max"] = 10, - ["min"] = 10, - }, + ["max"] = 10, + ["min"] = 10, + }, ["1HMace"] = { - ["max"] = 10, - ["min"] = 10, - }, + ["max"] = 10, + ["min"] = 10, + }, ["1HSword"] = { - ["max"] = 10, - ["min"] = 10, - }, + ["max"] = 10, + ["min"] = 10, + }, ["1HWeapon"] = { - ["max"] = 10, - ["min"] = 10, - }, + ["max"] = 10, + ["min"] = 10, + }, ["Claw"] = { - ["max"] = 10, - ["min"] = 10, - }, + ["max"] = 10, + ["min"] = 10, + }, ["Dagger"] = { - ["max"] = 10, - ["min"] = 10, - }, + ["max"] = 10, + ["min"] = 10, + }, ["Wand"] = { - ["max"] = 10, - ["min"] = 10, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1811422871", - ["text"] = "Socketed Gems are supported by Level # Melee Splash", - ["type"] = "implicit", - }, - }, + ["max"] = 10, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1811422871", + ["text"] = "Socketed Gems are supported by Level # Melee Splash", + ["type"] = "implicit", + }, + }, ["472_SupportedByCastOnCrit"] = { ["Gloves"] = { - ["max"] = 12, - ["min"] = 12, - }, + ["max"] = 12, + ["min"] = 12, + }, ["Helmet"] = { - ["max"] = 12, - ["min"] = 12, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2325632050", - ["text"] = "Socketed Gems are supported by Level # Cast On Critical Strike", - ["type"] = "implicit", - }, - }, + ["max"] = 12, + ["min"] = 12, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2325632050", + ["text"] = "Socketed Gems are supported by Level # Cast On Critical Strike", + ["type"] = "implicit", + }, + }, ["477_SupportedByCastOnStun"] = { ["Gloves"] = { - ["max"] = 12, - ["min"] = 12, - }, + ["max"] = 12, + ["min"] = 12, + }, ["Helmet"] = { - ["max"] = 12, - ["min"] = 12, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1079148723", - ["text"] = "Socketed Gems are supported by Level # Cast when Stunned", - ["type"] = "implicit", - }, - }, + ["max"] = 12, + ["min"] = 12, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1079148723", + ["text"] = "Socketed Gems are supported by Level # Cast when Stunned", + ["type"] = "implicit", + }, + }, ["4792_AdditionalCriticalStrikeChanceWithAttacks"] = { ["Gloves"] = { - ["max"] = 0.8, - ["min"] = 0.5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2572042788", - ["text"] = "Attacks have +#% to Critical Strike Chance", - ["type"] = "implicit", - }, - }, + ["max"] = 0.8, + ["min"] = 0.5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2572042788", + ["text"] = "Attacks have +#% to Critical Strike Chance", + ["type"] = "implicit", + }, + }, ["479_SupportedByStun"] = { ["1HMace"] = { - ["max"] = 6, - ["min"] = 6, - }, + ["max"] = 6, + ["min"] = 6, + }, ["1HWeapon"] = { - ["max"] = 6, - ["min"] = 6, - }, + ["max"] = 6, + ["min"] = 6, + }, ["2HMace"] = { - ["max"] = 6, - ["min"] = 6, - }, + ["max"] = 6, + ["min"] = 6, + }, ["2HWeapon"] = { - ["max"] = 6, - ["min"] = 6, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_689720069", - ["text"] = "Socketed Gems are supported by Level # Stun", - ["type"] = "implicit", - }, - }, + ["max"] = 6, + ["min"] = 6, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_689720069", + ["text"] = "Socketed Gems are supported by Level # Stun", + ["type"] = "implicit", + }, + }, ["480_SupportedByAccuracy"] = { ["1HAxe"] = { - ["max"] = 12, - ["min"] = 10, - }, + ["max"] = 12, + ["min"] = 10, + }, ["1HMace"] = { - ["max"] = 12, - ["min"] = 10, - }, + ["max"] = 12, + ["min"] = 10, + }, ["1HSword"] = { - ["max"] = 12, - ["min"] = 12, - }, + ["max"] = 12, + ["min"] = 12, + }, ["1HWeapon"] = { - ["max"] = 12, - ["min"] = 10, - }, + ["max"] = 12, + ["min"] = 10, + }, ["2HAxe"] = { - ["max"] = 10, - ["min"] = 10, - }, + ["max"] = 10, + ["min"] = 10, + }, ["2HMace"] = { - ["max"] = 10, - ["min"] = 10, - }, + ["max"] = 10, + ["min"] = 10, + }, ["2HSword"] = { - ["max"] = 12, - ["min"] = 10, - }, + ["max"] = 12, + ["min"] = 10, + }, ["2HWeapon"] = { - ["max"] = 12, - ["min"] = 10, - }, + ["max"] = 12, + ["min"] = 10, + }, ["Bow"] = { - ["max"] = 10, - ["min"] = 10, - }, + ["max"] = 10, + ["min"] = 10, + }, ["Claw"] = { - ["max"] = 12, - ["min"] = 12, - }, + ["max"] = 12, + ["min"] = 12, + }, ["Dagger"] = { - ["max"] = 12, - ["min"] = 12, - }, + ["max"] = 12, + ["min"] = 12, + }, ["Staff"] = { - ["max"] = 10, - ["min"] = 10, - }, + ["max"] = 10, + ["min"] = 10, + }, ["Wand"] = { - ["max"] = 12, - ["min"] = 12, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1567462963", - ["text"] = "Socketed Gems are supported by Level # Additional Accuracy", - ["type"] = "implicit", - }, - }, + ["max"] = 12, + ["min"] = 12, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1567462963", + ["text"] = "Socketed Gems are supported by Level # Additional Accuracy", + ["type"] = "implicit", + }, + }, ["481_SupportedByMultistrike"] = { ["1HSword"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["1HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["2HAxe"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["2HMace"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["2HSword"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["2HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Bow"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Staff"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2501237765", - ["text"] = "Socketed Gems are supported by Level # Multistrike", - ["type"] = "implicit", - }, - }, + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2501237765", + ["text"] = "Socketed Gems are supported by Level # Multistrike", + ["type"] = "implicit", + }, + }, ["482_SupportedByProjectileSpeed"] = { ["2HWeapon"] = { - ["max"] = 10, - ["min"] = 10, - }, + ["max"] = 10, + ["min"] = 10, + }, ["Bow"] = { - ["max"] = 10, - ["min"] = 10, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_99089516", - ["text"] = "Socketed Gems are supported by Level # Faster Projectiles", - ["type"] = "implicit", - }, - }, + ["max"] = 10, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_99089516", + ["text"] = "Socketed Gems are supported by Level # Faster Projectiles", + ["type"] = "implicit", + }, + }, ["483_SupportedByLifeLeech"] = { ["1HWeapon"] = { - ["max"] = 15, - ["min"] = 15, - }, + ["max"] = 15, + ["min"] = 15, + }, ["Claw"] = { - ["max"] = 15, - ["min"] = 15, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_891277550", - ["text"] = "Socketed Gems are supported by Level # Life Leech", - ["type"] = "implicit", - }, - }, + ["max"] = 15, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_891277550", + ["text"] = "Socketed Gems are supported by Level # Life Leech", + ["type"] = "implicit", + }, + }, ["485_SupportedByCriticalMultiplier"] = { ["1HWeapon"] = { - ["max"] = 14, - ["min"] = 14, - }, + ["max"] = 14, + ["min"] = 14, + }, ["Dagger"] = { - ["max"] = 14, - ["min"] = 14, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1108755349", - ["text"] = "Socketed Gems are supported by Level # Increased Critical Damage", - ["type"] = "implicit", - }, - }, + ["max"] = 14, + ["min"] = 14, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1108755349", + ["text"] = "Socketed Gems are supported by Level # Increased Critical Damage", + ["type"] = "implicit", + }, + }, ["486_SupportedByFork"] = { ["2HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Bow"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2062753054", - ["text"] = "Socketed Gems are supported by Level # Fork", - ["type"] = "implicit", - }, - }, + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2062753054", + ["text"] = "Socketed Gems are supported by Level # Fork", + ["type"] = "implicit", + }, + }, ["487_SupportedByWeaponElementalDamage"] = { ["1HMace"] = { - ["max"] = 12, - ["min"] = 12, - }, + ["max"] = 12, + ["min"] = 12, + }, ["1HWeapon"] = { - ["max"] = 12, - ["min"] = 12, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2532625478", - ["text"] = "Socketed Gems are supported by Level # Elemental Damage with Attacks", - ["type"] = "implicit", - }, - }, + ["max"] = 12, + ["min"] = 12, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2532625478", + ["text"] = "Socketed Gems are supported by Level # Elemental Damage with Attacks", + ["type"] = "implicit", + }, + }, ["4947_AvoidMaimChance"] = { ["AbyssJewel"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["AnyJewel"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["BaseJewel"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_1126826428", - ["text"] = "You cannot be Maimed", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_1126826428", + ["text"] = "You cannot be Maimed", + ["type"] = "implicit", + }, + }, ["494_SupportedByReducedMana"] = { ["1HSword"] = { - ["max"] = 10, - ["min"] = 10, - }, + ["max"] = 10, + ["min"] = 10, + }, ["1HWeapon"] = { - ["max"] = 10, - ["min"] = 10, - }, + ["max"] = 10, + ["min"] = 10, + }, ["2HAxe"] = { - ["max"] = 10, - ["min"] = 10, - }, + ["max"] = 10, + ["min"] = 10, + }, ["2HMace"] = { - ["max"] = 10, - ["min"] = 10, - }, + ["max"] = 10, + ["min"] = 10, + }, ["2HSword"] = { - ["max"] = 10, - ["min"] = 10, - }, + ["max"] = 10, + ["min"] = 10, + }, ["2HWeapon"] = { - ["max"] = 10, - ["min"] = 10, - }, + ["max"] = 10, + ["min"] = 10, + }, ["Bow"] = { - ["max"] = 10, - ["min"] = 10, - }, + ["max"] = 10, + ["min"] = 10, + }, ["Staff"] = { - ["max"] = 10, - ["min"] = 10, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1866911844", - ["text"] = "Socketed Gems are Supported by Level # Inspiration", - ["type"] = "implicit", - }, - }, + ["max"] = 10, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1866911844", + ["text"] = "Socketed Gems are Supported by Level # Inspiration", + ["type"] = "implicit", + }, + }, ["496_SupportedByFortify"] = { ["2HAxe"] = { - ["max"] = 10, - ["min"] = 10, - }, + ["max"] = 10, + ["min"] = 10, + }, ["2HMace"] = { - ["max"] = 10, - ["min"] = 10, - }, + ["max"] = 10, + ["min"] = 10, + }, ["2HSword"] = { - ["max"] = 10, - ["min"] = 10, - }, + ["max"] = 10, + ["min"] = 10, + }, ["2HWeapon"] = { - ["max"] = 10, - ["min"] = 10, - }, + ["max"] = 10, + ["min"] = 10, + }, ["Bow"] = { - ["max"] = 10, - ["min"] = 10, - }, + ["max"] = 10, + ["min"] = 10, + }, ["Staff"] = { - ["max"] = 10, - ["min"] = 10, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_107118693", - ["text"] = "Socketed Gems are Supported by Level # Fortify", - ["type"] = "implicit", - }, - }, + ["max"] = 10, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_107118693", + ["text"] = "Socketed Gems are Supported by Level # Fortify", + ["type"] = "implicit", + }, + }, ["500_DisplaySocketedGemsGetFasterCast"] = { ["1HMace"] = { - ["max"] = 10, - ["min"] = 10, - }, + ["max"] = 10, + ["min"] = 10, + }, ["1HWeapon"] = { - ["max"] = 10, - ["min"] = 10, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2169938251", - ["text"] = "Socketed Gems are Supported by Level # Faster Casting", - ["type"] = "implicit", - }, - }, + ["max"] = 10, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2169938251", + ["text"] = "Socketed Gems are Supported by Level # Faster Casting", + ["type"] = "implicit", + }, + }, ["530_SocketedSkillsManaMultiplier"] = { ["Chest"] = { - ["max"] = 95, - ["min"] = 95, - }, + ["max"] = 95, + ["min"] = 95, + }, ["Helmet"] = { - ["max"] = 90, - ["min"] = 90, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2865550257", - ["text"] = "Socketed Skill Gems get a #% Cost & Reservation Multiplier", - ["type"] = "implicit", - }, - }, + ["max"] = 90, + ["min"] = 90, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2865550257", + ["text"] = "Socketed Skill Gems get a #% Cost & Reservation Multiplier", + ["type"] = "implicit", + }, + }, ["5408_CorruptedBloodImmunity"] = { ["AbyssJewel"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["AnyJewel"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["BaseJewel"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_1658498488", - ["text"] = "Corrupted Blood cannot be inflicted on you", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_1658498488", + ["text"] = "Corrupted Blood cannot be inflicted on you", + ["type"] = "implicit", + }, + }, ["5466_CastSpeedDuringFlaskEffect"] = { ["Belt"] = { - ["max"] = 12, - ["min"] = 8, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_252194507", - ["text"] = "#% increased Cast Speed during any Flask Effect", - ["type"] = "implicit", - }, - }, + ["max"] = 12, + ["min"] = 8, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_252194507", + ["text"] = "#% increased Cast Speed during any Flask Effect", + ["type"] = "implicit", + }, + }, ["5687_GainEnduranceChargeOnStunChance"] = { ["1HMace"] = { - ["max"] = 7, - ["min"] = 5, - }, + ["max"] = 7, + ["min"] = 5, + }, ["1HWeapon"] = { - ["max"] = 7, - ["min"] = 5, - }, + ["max"] = 7, + ["min"] = 5, + }, ["2HMace"] = { - ["max"] = 7, - ["min"] = 5, - }, + ["max"] = 7, + ["min"] = 5, + }, ["2HWeapon"] = { - ["max"] = 7, - ["min"] = 5, - }, + ["max"] = 7, + ["min"] = 5, + }, ["Staff"] = { - ["max"] = 7, - ["min"] = 5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1582887649", - ["text"] = "#% chance to gain an Endurance Charge when you Stun an Enemy", - ["type"] = "implicit", - }, - }, + ["max"] = 7, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1582887649", + ["text"] = "#% chance to gain an Endurance Charge when you Stun an Enemy", + ["type"] = "implicit", + }, + }, ["5798_ChillEffect"] = { ["Helmet"] = { - ["max"] = 30, - ["min"] = 25, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1793818220", - ["text"] = "#% increased Effect of Cold Ailments", - ["type"] = "implicit", - }, - }, + ["max"] = 30, + ["min"] = 25, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1793818220", + ["text"] = "#% increased Effect of Cold Ailments", + ["type"] = "implicit", + }, + }, ["5922_IncreasedCriticalStrikeUnderFlaskEffect"] = { ["Belt"] = { - ["max"] = 40, - ["min"] = 35, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2898434123", - ["text"] = "#% increased Critical Strike Chance during any Flask Effect", - ["type"] = "implicit", - }, - }, + ["max"] = 40, + ["min"] = 35, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2898434123", + ["text"] = "#% increased Critical Strike Chance during any Flask Effect", + ["type"] = "implicit", + }, + }, ["5953_AdditionalCriticalStrikeMultiplierUnderFlaskEffect"] = { ["Belt"] = { - ["max"] = 25, - ["min"] = 20, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_240289863", - ["text"] = "+#% to Critical Strike Multiplier during any Flask Effect", - ["type"] = "implicit", - }, - }, + ["max"] = 25, + ["min"] = 20, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_240289863", + ["text"] = "+#% to Critical Strike Multiplier during any Flask Effect", + ["type"] = "implicit", + }, + }, ["6161_IncreasedAuraEffectMalevolenceCorrupted"] = { ["Amulet"] = { - ["max"] = 20, - ["min"] = 15, - }, + ["max"] = 20, + ["min"] = 15, + }, ["Belt"] = { - ["max"] = 20, - ["min"] = 15, - }, + ["max"] = 20, + ["min"] = 15, + }, ["Ring"] = { - ["max"] = 20, - ["min"] = 15, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_4175197580", - ["text"] = "Malevolence has #% increased Aura Effect", - ["type"] = "implicit", - }, - }, - ["6321_IncreasedWeaponElementalDamagePercent"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_4175197580", + ["text"] = "Malevolence has #% increased Aura Effect", + ["type"] = "implicit", + }, + }, + ["6322_IncreasedWeaponElementalDamagePercent"] = { ["Amulet"] = { - ["max"] = 24, - ["min"] = 6, - }, + ["max"] = 24, + ["min"] = 6, + }, ["Ring"] = { - ["max"] = 12, - ["min"] = 6, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_387439868", - ["text"] = "#% increased Elemental Damage with Attack Skills", - ["type"] = "implicit", - }, - }, - ["6701_GainFrenzyChargeAfterSpending200Mana"] = { + ["max"] = 12, + ["min"] = 6, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_387439868", + ["text"] = "#% increased Elemental Damage with Attack Skills", + ["type"] = "implicit", + }, + }, + ["6702_GainFrenzyChargeAfterSpending200Mana"] = { ["1HSword"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["1HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3868549606", - ["text"] = "Gain a Frenzy Charge after Spending a total of 200 Mana", - ["type"] = "implicit", - }, - }, - ["6878_AddedEvasionWhileMovingCorrupted"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3868549606", + ["text"] = "Gain a Frenzy Charge after Spending a total of 200 Mana", + ["type"] = "implicit", + }, + }, + ["6879_AddedEvasionWhileMovingCorrupted"] = { ["Boots"] = { - ["max"] = 322, - ["min"] = 35, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3825877290", - ["text"] = "+# to Global Evasion Rating while moving", - ["type"] = "implicit", - }, - }, - ["7170_ChanceToIgnoreEnemyArmour"] = { + ["max"] = 322, + ["min"] = 35, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3825877290", + ["text"] = "+# to Global Evasion Rating while moving", + ["type"] = "implicit", + }, + }, + ["7171_ChanceToIgnoreEnemyArmour"] = { ["AbyssJewel"] = { - ["max"] = 15, - ["min"] = 10, - }, + ["max"] = 15, + ["min"] = 10, + }, ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 10, - }, + ["max"] = 15, + ["min"] = 10, + }, ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 10, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2839577586", - ["text"] = "Hits have #% chance to ignore Enemy Physical Damage Reduction", - ["type"] = "implicit", - }, - }, - ["7406_LifeRegenerationWhileMoving"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2839577586", + ["text"] = "Hits have #% chance to ignore Enemy Physical Damage Reduction", + ["type"] = "implicit", + }, + }, + ["7407_LifeRegenerationWhileMoving"] = { ["Boots"] = { - ["max"] = 100, - ["min"] = 100, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2841027131", - ["text"] = "Regenerate # Life per second while moving", - ["type"] = "implicit", - }, - }, - ["9499_IncreasedAilmentEffectOnEnemies"] = { + ["max"] = 100, + ["min"] = 100, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2841027131", + ["text"] = "Regenerate # Life per second while moving", + ["type"] = "implicit", + }, + }, + ["9500_IncreasedAilmentEffectOnEnemies"] = { ["AbyssJewel"] = { - ["max"] = 7, - ["min"] = 5, - }, + ["max"] = 7, + ["min"] = 5, + }, ["AnyJewel"] = { - ["max"] = 7, - ["min"] = 5, - }, + ["max"] = 7, + ["min"] = 5, + }, ["BaseJewel"] = { - ["max"] = 7, - ["min"] = 5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_782230869", - ["text"] = "#% increased Effect of Non-Damaging Ailments", - ["type"] = "implicit", - }, - }, - ["9710_IncreasedAuraEffectPrideCorrupted"] = { + ["max"] = 7, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_782230869", + ["text"] = "#% increased Effect of Non-Damaging Ailments", + ["type"] = "implicit", + }, + }, + ["9711_IncreasedAuraEffectPrideCorrupted"] = { ["Amulet"] = { - ["max"] = 20, - ["min"] = 15, - }, + ["max"] = 20, + ["min"] = 15, + }, ["Belt"] = { - ["max"] = 20, - ["min"] = 15, - }, + ["max"] = 20, + ["min"] = 15, + }, ["Ring"] = { - ["max"] = 20, - ["min"] = 15, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_4247488219", - ["text"] = "Pride has #% increased Aura Effect", - ["type"] = "implicit", - }, - }, - ["9733_IncreasedProjectileDamageForEachChain"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_4247488219", + ["text"] = "Pride has #% increased Aura Effect", + ["type"] = "implicit", + }, + }, + ["9734_IncreasedProjectileDamageForEachChain"] = { ["Quiver"] = { - ["max"] = 25, - ["min"] = 20, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1923210508", - ["text"] = "Projectiles deal #% increased Damage with Hits and Ailments for each time they have Chained", - ["type"] = "implicit", - }, - }, - ["9734_ProjectileDamagePerEnemyPierced"] = { + ["max"] = 25, + ["min"] = 20, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1923210508", + ["text"] = "Projectiles deal #% increased Damage with Hits and Ailments for each time they have Chained", + ["type"] = "implicit", + }, + }, + ["9735_ProjectileDamagePerEnemyPierced"] = { ["Quiver"] = { - ["max"] = 10, - ["min"] = 8, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_883169830", - ["text"] = "Projectiles deal #% increased Damage with Hits and Ailments for each Enemy Pierced", - ["type"] = "implicit", - }, - }, - ["9969_ReducedBleedDuration"] = { + ["max"] = 10, + ["min"] = 8, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_883169830", + ["text"] = "Projectiles deal #% increased Damage with Hits and Ailments for each Enemy Pierced", + ["type"] = "implicit", + }, + }, + ["9970_ReducedBleedDuration"] = { ["AnyJewel"] = { - ["max"] = -20, - ["min"] = -25, - }, + ["max"] = -20, + ["min"] = -25, + }, ["BaseJewel"] = { - ["max"] = -20, - ["min"] = -25, - }, - ["inverseKey"] = "reduced", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1692879867", - ["text"] = "#% increased Bleed Duration on you", - ["type"] = "implicit", - }, - }, - ["9978_ReducedPoisonDuration"] = { + ["max"] = -20, + ["min"] = -25, + }, + ["inverseKey"] = "reduced", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1692879867", + ["text"] = "#% increased Bleed Duration on you", + ["type"] = "implicit", + }, + }, + ["9979_ReducedPoisonDuration"] = { ["AnyJewel"] = { - ["max"] = -20, - ["min"] = -25, - }, + ["max"] = -20, + ["min"] = -25, + }, ["BaseJewel"] = { - ["max"] = -20, - ["min"] = -25, - }, - ["inverseKey"] = "reduced", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3301100256", - ["text"] = "#% increased Poison Duration on you", - ["type"] = "implicit", - }, - }, - }, + ["max"] = -20, + ["min"] = -25, + }, + ["inverseKey"] = "reduced", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3301100256", + ["text"] = "#% increased Poison Duration on you", + ["type"] = "implicit", + }, + }, + }, ["Eater"] = { - ["10019_ReducedShockEffectOnSelf"] = { + ["10020_ReducedShockEffectOnSelf"] = { ["Helmet"] = { - ["max"] = 50, - ["min"] = 33, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3801067695", - ["text"] = "#% reduced Effect of Shock on you", - ["type"] = "implicit", - }, - }, - ["10019_ReducedShockEffectOnSelfPinnaclePresence"] = { + ["max"] = 50, + ["min"] = 33, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3801067695", + ["text"] = "#% reduced Effect of Shock on you", + ["type"] = "implicit", + }, + }, + ["10020_ReducedShockEffectOnSelfPinnaclePresence"] = { ["Helmet"] = { - ["max"] = 70, - ["min"] = 57, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_433740375", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% reduced Effect of Shock on you", - ["type"] = "implicit", - }, - }, - ["10019_ReducedShockEffectOnSelfUniquePresence"] = { + ["max"] = 70, + ["min"] = 57, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_433740375", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% reduced Effect of Shock on you", + ["type"] = "implicit", + }, + }, + ["10020_ReducedShockEffectOnSelfUniquePresence"] = { ["Helmet"] = { - ["max"] = 61, - ["min"] = 45, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1343931641", - ["text"] = "While a Unique Enemy is in your Presence, #% reduced Effect of Shock on you", - ["type"] = "implicit", - }, - }, - ["10188_SpellsHinderOnHitChance"] = { + ["max"] = 61, + ["min"] = 45, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1343931641", + ["text"] = "While a Unique Enemy is in your Presence, #% reduced Effect of Shock on you", + ["type"] = "implicit", + }, + }, + ["10189_SpellsHinderOnHitChance"] = { ["Gloves"] = { - ["max"] = 40, - ["min"] = 15, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3002506763", - ["text"] = "#% chance to Hinder Enemies on Hit with Spells", - ["type"] = "implicit", - }, - }, - ["10188_SpellsHinderOnHitChancePinnaclePresence"] = { + ["max"] = 40, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3002506763", + ["text"] = "#% chance to Hinder Enemies on Hit with Spells", + ["type"] = "implicit", + }, + }, + ["10189_SpellsHinderOnHitChancePinnaclePresence"] = { ["Gloves"] = { - ["max"] = 95, - ["min"] = 85, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_604515066", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% chance to Hinder Enemies on Hit with Spells", - ["type"] = "implicit", - }, - }, - ["10188_SpellsHinderOnHitChanceUniquePresence"] = { + ["max"] = 95, + ["min"] = 85, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_604515066", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% chance to Hinder Enemies on Hit with Spells", + ["type"] = "implicit", + }, + }, + ["10189_SpellsHinderOnHitChanceUniquePresence"] = { ["Gloves"] = { - ["max"] = 70, - ["min"] = 50, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3423886807", - ["text"] = "While a Unique Enemy is in your Presence, #% chance to Hinder Enemies on Hit with Spells", - ["type"] = "implicit", - }, - }, - ["10623_WitherExpireSpeed"] = { + ["max"] = 70, + ["min"] = 50, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3423886807", + ["text"] = "While a Unique Enemy is in your Presence, #% chance to Hinder Enemies on Hit with Spells", + ["type"] = "implicit", + }, + }, + ["10624_WitherExpireSpeed"] = { ["Gloves"] = { - ["max"] = -10, - ["min"] = -24, - }, - ["inverseKey"] = "slower", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1625982517", - ["text"] = "Withered you Inflict expires #% faster", - ["type"] = "implicit", - }, - }, - ["10623_WitherExpireSpeedPinnaclePresence"] = { + ["max"] = -10, + ["min"] = -24, + }, + ["inverseKey"] = "slower", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1625982517", + ["text"] = "Withered you Inflict expires #% faster", + ["type"] = "implicit", + }, + }, + ["10624_WitherExpireSpeedPinnaclePresence"] = { ["Gloves"] = { - ["max"] = -34, - ["min"] = -45, - }, - ["inverseKey"] = "slower", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3457821036", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Withered you Inflict expires #% faster", - ["type"] = "implicit", - }, - }, - ["10623_WitherExpireSpeedUniquePresence"] = { + ["max"] = -34, + ["min"] = -45, + }, + ["inverseKey"] = "slower", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3457821036", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Withered you Inflict expires #% faster", + ["type"] = "implicit", + }, + }, + ["10624_WitherExpireSpeedUniquePresence"] = { ["Gloves"] = { - ["max"] = -22, - ["min"] = -33, - }, - ["inverseKey"] = "slower", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3262721796", - ["text"] = "While a Unique Enemy is in your Presence, Withered you Inflict expires #% faster", - ["type"] = "implicit", - }, - }, - ["10721_ZealotryAuraEffect"] = { + ["max"] = -22, + ["min"] = -33, + }, + ["inverseKey"] = "slower", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3262721796", + ["text"] = "While a Unique Enemy is in your Presence, Withered you Inflict expires #% faster", + ["type"] = "implicit", + }, + }, + ["10722_ZealotryAuraEffect"] = { ["Chest"] = { - ["max"] = 36, - ["min"] = 19, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_4096052153", - ["text"] = "Zealotry has #% increased Aura Effect", - ["type"] = "implicit", - }, - }, - ["10721_ZealotryAuraEffectPinnaclePresence"] = { + ["max"] = 36, + ["min"] = 19, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_4096052153", + ["text"] = "Zealotry has #% increased Aura Effect", + ["type"] = "implicit", + }, + }, + ["10722_ZealotryAuraEffectPinnaclePresence"] = { ["Chest"] = { - ["max"] = 60, - ["min"] = 49, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2293353005", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Zealotry has #% increased Aura Effect", - ["type"] = "implicit", - }, - }, - ["10721_ZealotryAuraEffectUniquePresence"] = { + ["max"] = 60, + ["min"] = 49, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2293353005", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Zealotry has #% increased Aura Effect", + ["type"] = "implicit", + }, + }, + ["10722_ZealotryAuraEffectUniquePresence"] = { ["Chest"] = { - ["max"] = 48, - ["min"] = 34, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3550578554", - ["text"] = "While a Unique Enemy is in your Presence, Zealotry has #% increased Aura Effect", - ["type"] = "implicit", - }, - }, + ["max"] = 48, + ["min"] = 34, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3550578554", + ["text"] = "While a Unique Enemy is in your Presence, Zealotry has #% increased Aura Effect", + ["type"] = "implicit", + }, + }, ["1138_BlockPercent"] = { ["Amulet"] = { - ["max"] = 10, - ["min"] = 5, - }, + ["max"] = 10, + ["min"] = 5, + }, ["Chest"] = { - ["max"] = 10, - ["min"] = 5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2530372417", - ["text"] = "#% Chance to Block Attack Damage", - ["type"] = "implicit", - }, - }, + ["max"] = 10, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2530372417", + ["text"] = "#% Chance to Block Attack Damage", + ["type"] = "implicit", + }, + }, ["1138_BlockPercentPinnaclePresence"] = { ["Amulet"] = { - ["max"] = 14, - ["min"] = 11, - }, + ["max"] = 14, + ["min"] = 11, + }, ["Chest"] = { - ["max"] = 14, - ["min"] = 11, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3326567914", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% Chance to Block Attack Damage", - ["type"] = "implicit", - }, - }, + ["max"] = 14, + ["min"] = 11, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3326567914", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% Chance to Block Attack Damage", + ["type"] = "implicit", + }, + }, ["1138_BlockPercentUniquePresence"] = { ["Amulet"] = { - ["max"] = 12, - ["min"] = 8, - }, + ["max"] = 12, + ["min"] = 8, + }, ["Chest"] = { - ["max"] = 12, - ["min"] = 8, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_725501141", - ["text"] = "While a Unique Enemy is in your Presence, #% Chance to Block Attack Damage", - ["type"] = "implicit", - }, - }, + ["max"] = 12, + ["min"] = 8, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_725501141", + ["text"] = "While a Unique Enemy is in your Presence, #% Chance to Block Attack Damage", + ["type"] = "implicit", + }, + }, ["1143_ChanceToSuppressSpells"] = { ["Amulet"] = { - ["max"] = 10, - ["min"] = 5, - }, + ["max"] = 10, + ["min"] = 5, + }, ["Gloves"] = { - ["max"] = 10, - ["min"] = 5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3680664274", - ["text"] = "+#% chance to Suppress Spell Damage", - ["type"] = "implicit", - }, - }, + ["max"] = 10, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3680664274", + ["text"] = "+#% chance to Suppress Spell Damage", + ["type"] = "implicit", + }, + }, ["1143_ChanceToSuppressSpellsPinnaclePresence"] = { ["Amulet"] = { - ["max"] = 15, - ["min"] = 12, - }, + ["max"] = 15, + ["min"] = 12, + }, ["Gloves"] = { - ["max"] = 15, - ["min"] = 12, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2998245080", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, +#% chance to Suppress Spell Damage", - ["type"] = "implicit", - }, - }, + ["max"] = 15, + ["min"] = 12, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2998245080", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, +#% chance to Suppress Spell Damage", + ["type"] = "implicit", + }, + }, ["1143_ChanceToSuppressSpellsUniquePresence"] = { ["Amulet"] = { - ["max"] = 12, - ["min"] = 8, - }, + ["max"] = 12, + ["min"] = 8, + }, ["Gloves"] = { - ["max"] = 12, - ["min"] = 8, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3998961962", - ["text"] = "While a Unique Enemy is in your Presence, +#% chance to Suppress Spell Damage", - ["type"] = "implicit", - }, - }, + ["max"] = 12, + ["min"] = 8, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3998961962", + ["text"] = "While a Unique Enemy is in your Presence, +#% chance to Suppress Spell Damage", + ["type"] = "implicit", + }, + }, ["1160_SpellBlockPercentage"] = { ["Amulet"] = { - ["max"] = 10, - ["min"] = 5, - }, + ["max"] = 10, + ["min"] = 5, + }, ["Chest"] = { - ["max"] = 10, - ["min"] = 5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_561307714", - ["text"] = "#% Chance to Block Spell Damage", - ["type"] = "implicit", - }, - }, + ["max"] = 10, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_561307714", + ["text"] = "#% Chance to Block Spell Damage", + ["type"] = "implicit", + }, + }, ["1160_SpellBlockPercentagePinnaclePresence"] = { ["Amulet"] = { - ["max"] = 14, - ["min"] = 11, - }, + ["max"] = 14, + ["min"] = 11, + }, ["Chest"] = { - ["max"] = 14, - ["min"] = 11, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2996280658", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% Chance to Block Spell Damage", - ["type"] = "implicit", - }, - }, + ["max"] = 14, + ["min"] = 11, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2996280658", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% Chance to Block Spell Damage", + ["type"] = "implicit", + }, + }, ["1160_SpellBlockPercentageUniquePresence"] = { ["Amulet"] = { - ["max"] = 12, - ["min"] = 8, - }, + ["max"] = 12, + ["min"] = 8, + }, ["Chest"] = { - ["max"] = 12, - ["min"] = 8, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1358320252", - ["text"] = "While a Unique Enemy is in your Presence, #% Chance to Block Spell Damage", - ["type"] = "implicit", - }, - }, + ["max"] = 12, + ["min"] = 8, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1358320252", + ["text"] = "While a Unique Enemy is in your Presence, #% Chance to Block Spell Damage", + ["type"] = "implicit", + }, + }, ["1198_AttackDamage"] = { ["Amulet"] = { - ["max"] = 29, - ["min"] = 14, - }, + ["max"] = 29, + ["min"] = 14, + }, ["Helmet"] = { - ["max"] = 29, - ["min"] = 14, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2843214518", - ["text"] = "#% increased Attack Damage", - ["type"] = "implicit", - }, - }, + ["max"] = 29, + ["min"] = 14, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2843214518", + ["text"] = "#% increased Attack Damage", + ["type"] = "implicit", + }, + }, ["1198_AttackDamagePinnaclePresence"] = { ["Amulet"] = { - ["max"] = 53, - ["min"] = 44, - }, + ["max"] = 53, + ["min"] = 44, + }, ["Helmet"] = { - ["max"] = 53, - ["min"] = 44, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3133935886", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Attack Damage", - ["type"] = "implicit", - }, - }, + ["max"] = 53, + ["min"] = 44, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3133935886", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Attack Damage", + ["type"] = "implicit", + }, + }, ["1198_AttackDamageUniquePresence"] = { ["Amulet"] = { - ["max"] = 41, - ["min"] = 29, - }, + ["max"] = 41, + ["min"] = 29, + }, ["Helmet"] = { - ["max"] = 41, - ["min"] = 29, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_4061200499", - ["text"] = "While a Unique Enemy is in your Presence, #% increased Attack Damage", - ["type"] = "implicit", - }, - }, + ["max"] = 41, + ["min"] = 29, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_4061200499", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Attack Damage", + ["type"] = "implicit", + }, + }, ["1223_SpellDamage"] = { ["Amulet"] = { - ["max"] = 29, - ["min"] = 14, - }, + ["max"] = 29, + ["min"] = 14, + }, ["Helmet"] = { - ["max"] = 29, - ["min"] = 14, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2974417149", - ["text"] = "#% increased Spell Damage", - ["type"] = "implicit", - }, - }, + ["max"] = 29, + ["min"] = 14, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2974417149", + ["text"] = "#% increased Spell Damage", + ["type"] = "implicit", + }, + }, ["1223_SpellDamagePinnaclePresence"] = { ["Amulet"] = { - ["max"] = 53, - ["min"] = 44, - }, + ["max"] = 53, + ["min"] = 44, + }, ["Helmet"] = { - ["max"] = 53, - ["min"] = 44, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_817495383", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Spell Damage", - ["type"] = "implicit", - }, - }, + ["max"] = 53, + ["min"] = 44, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_817495383", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Spell Damage", + ["type"] = "implicit", + }, + }, ["1223_SpellDamageUniquePresence"] = { ["Amulet"] = { - ["max"] = 41, - ["min"] = 29, - }, + ["max"] = 41, + ["min"] = 29, + }, ["Helmet"] = { - ["max"] = 41, - ["min"] = 29, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_4136821316", - ["text"] = "While a Unique Enemy is in your Presence, #% increased Spell Damage", - ["type"] = "implicit", - }, - }, + ["max"] = 41, + ["min"] = 29, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_4136821316", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Spell Damage", + ["type"] = "implicit", + }, + }, ["1434_IncreasedAccuracyPercent"] = { ["Gloves"] = { - ["max"] = 20, - ["min"] = 9, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_624954515", - ["text"] = "#% increased Global Accuracy Rating", - ["type"] = "implicit", - }, - }, + ["max"] = 20, + ["min"] = 9, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_624954515", + ["text"] = "#% increased Global Accuracy Rating", + ["type"] = "implicit", + }, + }, ["1434_IncreasedAccuracyPercentPinnaclePresence"] = { ["Gloves"] = { - ["max"] = 28, - ["min"] = 21, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2086047206", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Global Accuracy Rating", - ["type"] = "implicit", - }, - }, + ["max"] = 28, + ["min"] = 21, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2086047206", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Global Accuracy Rating", + ["type"] = "implicit", + }, + }, ["1434_IncreasedAccuracyPercentUniquePresence"] = { ["Gloves"] = { - ["max"] = 24, - ["min"] = 15, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2423625781", - ["text"] = "While a Unique Enemy is in your Presence, #% increased Global Accuracy Rating", - ["type"] = "implicit", - }, - }, + ["max"] = 24, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2423625781", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Global Accuracy Rating", + ["type"] = "implicit", + }, + }, ["1541_GlobalPhysicalDamageReductionRatingPercent"] = { ["Amulet"] = { - ["max"] = 28, - ["min"] = 17, - }, + ["max"] = 28, + ["min"] = 17, + }, ["Chest"] = { - ["max"] = 28, - ["min"] = 17, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2866361420", - ["text"] = "#% increased Armour", - ["type"] = "implicit", - }, - }, + ["max"] = 28, + ["min"] = 17, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2866361420", + ["text"] = "#% increased Armour", + ["type"] = "implicit", + }, + }, ["1541_GlobalPhysicalDamageReductionRatingPercentPinnaclePresence"] = { ["Amulet"] = { - ["max"] = 40, - ["min"] = 33, - }, + ["max"] = 40, + ["min"] = 33, + }, ["Chest"] = { - ["max"] = 40, - ["min"] = 33, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1371764251", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Armour", - ["type"] = "implicit", - }, - }, + ["max"] = 40, + ["min"] = 33, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1371764251", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Armour", + ["type"] = "implicit", + }, + }, ["1541_GlobalPhysicalDamageReductionRatingPercentUniquePresence"] = { ["Amulet"] = { - ["max"] = 34, - ["min"] = 25, - }, + ["max"] = 34, + ["min"] = 25, + }, ["Chest"] = { - ["max"] = 34, - ["min"] = 25, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1980216452", - ["text"] = "While a Unique Enemy is in your Presence, #% increased Armour", - ["type"] = "implicit", - }, - }, + ["max"] = 34, + ["min"] = 25, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1980216452", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Armour", + ["type"] = "implicit", + }, + }, ["1549_GlobalEvasionRatingPercent"] = { ["Amulet"] = { - ["max"] = 28, - ["min"] = 17, - }, + ["max"] = 28, + ["min"] = 17, + }, ["Chest"] = { - ["max"] = 28, - ["min"] = 17, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2106365538", - ["text"] = "#% increased Evasion Rating", - ["type"] = "implicit", - }, - }, + ["max"] = 28, + ["min"] = 17, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2106365538", + ["text"] = "#% increased Evasion Rating", + ["type"] = "implicit", + }, + }, ["1549_GlobalEvasionRatingPercentPinnaclePresence"] = { ["Amulet"] = { - ["max"] = 40, - ["min"] = 33, - }, + ["max"] = 40, + ["min"] = 33, + }, ["Chest"] = { - ["max"] = 40, - ["min"] = 33, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2386062386", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Evasion Rating", - ["type"] = "implicit", - }, - }, + ["max"] = 40, + ["min"] = 33, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2386062386", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Evasion Rating", + ["type"] = "implicit", + }, + }, ["1549_GlobalEvasionRatingPercentUniquePresence"] = { ["Amulet"] = { - ["max"] = 34, - ["min"] = 25, - }, + ["max"] = 34, + ["min"] = 25, + }, ["Chest"] = { - ["max"] = 34, - ["min"] = 25, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3394288644", - ["text"] = "While a Unique Enemy is in your Presence, #% increased Evasion Rating", - ["type"] = "implicit", - }, - }, + ["max"] = 34, + ["min"] = 25, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3394288644", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Evasion Rating", + ["type"] = "implicit", + }, + }, ["1561_GlobalEnergyShieldPercent"] = { ["Amulet"] = { - ["max"] = 17, - ["min"] = 6, - }, + ["max"] = 17, + ["min"] = 6, + }, ["Chest"] = { - ["max"] = 17, - ["min"] = 6, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2482852589", - ["text"] = "#% increased maximum Energy Shield", - ["type"] = "implicit", - }, - }, + ["max"] = 17, + ["min"] = 6, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2482852589", + ["text"] = "#% increased maximum Energy Shield", + ["type"] = "implicit", + }, + }, ["1561_GlobalEnergyShieldPercentPinnaclePresence"] = { ["Amulet"] = { - ["max"] = 29, - ["min"] = 22, - }, + ["max"] = 29, + ["min"] = 22, + }, ["Chest"] = { - ["max"] = 29, - ["min"] = 22, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1917716710", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased maximum Energy Shield", - ["type"] = "implicit", - }, - }, + ["max"] = 29, + ["min"] = 22, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1917716710", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased maximum Energy Shield", + ["type"] = "implicit", + }, + }, ["1561_GlobalEnergyShieldPercentUniquePresence"] = { ["Amulet"] = { - ["max"] = 23, - ["min"] = 14, - }, + ["max"] = 23, + ["min"] = 14, + }, ["Chest"] = { - ["max"] = 23, - ["min"] = 14, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1114962813", - ["text"] = "While a Unique Enemy is in your Presence, #% increased maximum Energy Shield", - ["type"] = "implicit", - }, - }, + ["max"] = 23, + ["min"] = 14, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1114962813", + ["text"] = "While a Unique Enemy is in your Presence, #% increased maximum Energy Shield", + ["type"] = "implicit", + }, + }, ["1565_EnergyShieldRegeneration"] = { ["Amulet"] = { - ["max"] = 26, - ["min"] = 21, - }, + ["max"] = 26, + ["min"] = 21, + }, ["Helmet"] = { - ["max"] = 26, - ["min"] = 21, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2339757871", - ["text"] = "#% increased Energy Shield Recharge Rate", - ["type"] = "implicit", - }, - }, + ["max"] = 26, + ["min"] = 21, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2339757871", + ["text"] = "#% increased Energy Shield Recharge Rate", + ["type"] = "implicit", + }, + }, ["1565_EnergyShieldRegenerationPinnaclePresence"] = { ["Amulet"] = { - ["max"] = 32, - ["min"] = 29, - }, + ["max"] = 32, + ["min"] = 29, + }, ["Helmet"] = { - ["max"] = 32, - ["min"] = 29, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_26006636", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Energy Shield Recharge Rate", - ["type"] = "implicit", - }, - }, + ["max"] = 32, + ["min"] = 29, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_26006636", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Energy Shield Recharge Rate", + ["type"] = "implicit", + }, + }, ["1565_EnergyShieldRegenerationUniquePresence"] = { ["Amulet"] = { - ["max"] = 29, - ["min"] = 25, - }, + ["max"] = 29, + ["min"] = 25, + }, ["Helmet"] = { - ["max"] = 29, - ["min"] = 25, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3806837783", - ["text"] = "While a Unique Enemy is in your Presence, #% increased Energy Shield Recharge Rate", - ["type"] = "implicit", - }, - }, + ["max"] = 29, + ["min"] = 25, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3806837783", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Energy Shield Recharge Rate", + ["type"] = "implicit", + }, + }, ["1568_EnergyShieldRecoveryRate"] = { ["Chest"] = { - ["max"] = 12, - ["min"] = 7, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_988575597", - ["text"] = "#% increased Energy Shield Recovery rate", - ["type"] = "implicit", - }, - }, + ["max"] = 12, + ["min"] = 7, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_988575597", + ["text"] = "#% increased Energy Shield Recovery rate", + ["type"] = "implicit", + }, + }, ["1568_EnergyShieldRecoveryRatePinnaclePresence"] = { ["Chest"] = { - ["max"] = 16, - ["min"] = 13, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_92591094", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Energy Shield Recovery rate", - ["type"] = "implicit", - }, - }, + ["max"] = 16, + ["min"] = 13, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_92591094", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Energy Shield Recovery rate", + ["type"] = "implicit", + }, + }, ["1568_EnergyShieldRecoveryRateUniquePresence"] = { ["Chest"] = { - ["max"] = 14, - ["min"] = 10, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_587322642", - ["text"] = "While a Unique Enemy is in your Presence, #% increased Energy Shield Recovery rate", - ["type"] = "implicit", - }, - }, + ["max"] = 14, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_587322642", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Energy Shield Recovery rate", + ["type"] = "implicit", + }, + }, ["1576_LifeRegenerationPercentPerEnduranceCharge"] = { ["Boots"] = { - ["max"] = 0.3, - ["min"] = 0.2, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_989800292", - ["text"] = "Regenerate #% of Life per second per Endurance Charge", - ["type"] = "implicit", - }, - }, + ["max"] = 0.3, + ["min"] = 0.2, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_989800292", + ["text"] = "Regenerate #% of Life per second per Endurance Charge", + ["type"] = "implicit", + }, + }, ["1576_LifeRegenerationPercentPerEnduranceChargePinnaclePresence"] = { ["Boots"] = { - ["max"] = 0.5, - ["min"] = 0.4, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3225230656", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Regenerate #% of Life per second per Endurance Charge", - ["type"] = "implicit", - }, - }, + ["max"] = 0.5, + ["min"] = 0.4, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3225230656", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Regenerate #% of Life per second per Endurance Charge", + ["type"] = "implicit", + }, + }, ["1576_LifeRegenerationPercentPerEnduranceChargeUniquePresence"] = { ["Boots"] = { - ["max"] = 0.4, - ["min"] = 0.3, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1123587207", - ["text"] = "While a Unique Enemy is in your Presence, Regenerate #% of Life per second per Endurance Charge", - ["type"] = "implicit", - }, - }, + ["max"] = 0.4, + ["min"] = 0.3, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1123587207", + ["text"] = "While a Unique Enemy is in your Presence, Regenerate #% of Life per second per Endurance Charge", + ["type"] = "implicit", + }, + }, ["1577_LifeRegenerationRate"] = { ["Amulet"] = { - ["max"] = 12, - ["min"] = 7, - }, + ["max"] = 12, + ["min"] = 7, + }, ["Boots"] = { - ["max"] = 12, - ["min"] = 7, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_44972811", - ["text"] = "#% increased Life Regeneration rate", - ["type"] = "implicit", - }, - }, + ["max"] = 12, + ["min"] = 7, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_44972811", + ["text"] = "#% increased Life Regeneration rate", + ["type"] = "implicit", + }, + }, ["1577_LifeRegenerationRatePinnaclePresence"] = { ["Amulet"] = { - ["max"] = 18, - ["min"] = 15, - }, + ["max"] = 18, + ["min"] = 15, + }, ["Boots"] = { - ["max"] = 18, - ["min"] = 15, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_498250787", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Life Regeneration rate", - ["type"] = "implicit", - }, - }, + ["max"] = 18, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_498250787", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Life Regeneration rate", + ["type"] = "implicit", + }, + }, ["1577_LifeRegenerationRateUniquePresence"] = { ["Amulet"] = { - ["max"] = 15, - ["min"] = 11, - }, + ["max"] = 15, + ["min"] = 11, + }, ["Boots"] = { - ["max"] = 15, - ["min"] = 11, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1916766878", - ["text"] = "While a Unique Enemy is in your Presence, #% increased Life Regeneration rate", - ["type"] = "implicit", - }, - }, + ["max"] = 15, + ["min"] = 11, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1916766878", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Life Regeneration rate", + ["type"] = "implicit", + }, + }, ["1578_LifeRecoveryRate"] = { ["Chest"] = { - ["max"] = 12, - ["min"] = 7, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3240073117", - ["text"] = "#% increased Life Recovery rate", - ["type"] = "implicit", - }, - }, + ["max"] = 12, + ["min"] = 7, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3240073117", + ["text"] = "#% increased Life Recovery rate", + ["type"] = "implicit", + }, + }, ["1578_LifeRecoveryRatePinnaclePresence"] = { ["Chest"] = { - ["max"] = 16, - ["min"] = 13, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2761472996", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Life Recovery rate", - ["type"] = "implicit", - }, - }, + ["max"] = 16, + ["min"] = 13, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2761472996", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Life Recovery rate", + ["type"] = "implicit", + }, + }, ["1578_LifeRecoveryRateUniquePresence"] = { ["Chest"] = { - ["max"] = 14, - ["min"] = 10, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1481249164", - ["text"] = "While a Unique Enemy is in your Presence, #% increased Life Recovery rate", - ["type"] = "implicit", - }, - }, + ["max"] = 14, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1481249164", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Life Recovery rate", + ["type"] = "implicit", + }, + }, ["1584_ManaRegeneration"] = { ["Helmet"] = { - ["max"] = 36, - ["min"] = 19, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_789117908", - ["text"] = "#% increased Mana Regeneration Rate", - ["type"] = "implicit", - }, - }, + ["max"] = 36, + ["min"] = 19, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_789117908", + ["text"] = "#% increased Mana Regeneration Rate", + ["type"] = "implicit", + }, + }, ["1584_ManaRegenerationPinnaclePresence"] = { ["Helmet"] = { - ["max"] = 60, - ["min"] = 49, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_4222133389", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Mana Regeneration Rate", - ["type"] = "implicit", - }, - }, + ["max"] = 60, + ["min"] = 49, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_4222133389", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Mana Regeneration Rate", + ["type"] = "implicit", + }, + }, ["1584_ManaRegenerationUniquePresence"] = { ["Helmet"] = { - ["max"] = 48, - ["min"] = 34, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_760444887", - ["text"] = "While a Unique Enemy is in your Presence, #% increased Mana Regeneration Rate", - ["type"] = "implicit", - }, - }, + ["max"] = 48, + ["min"] = 34, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_760444887", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Mana Regeneration Rate", + ["type"] = "implicit", + }, + }, ["1586_ManaRecoveryRate"] = { ["Chest"] = { - ["max"] = 12, - ["min"] = 7, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3513180117", - ["text"] = "#% increased Mana Recovery rate", - ["type"] = "implicit", - }, - }, + ["max"] = 12, + ["min"] = 7, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3513180117", + ["text"] = "#% increased Mana Recovery rate", + ["type"] = "implicit", + }, + }, ["1586_ManaRecoveryRatePinnaclePresence"] = { ["Chest"] = { - ["max"] = 16, - ["min"] = 13, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_4117139221", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Mana Recovery rate", - ["type"] = "implicit", - }, - }, + ["max"] = 16, + ["min"] = 13, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_4117139221", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Mana Recovery rate", + ["type"] = "implicit", + }, + }, ["1586_ManaRecoveryRateUniquePresence"] = { ["Chest"] = { - ["max"] = 14, - ["min"] = 10, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1217759839", - ["text"] = "While a Unique Enemy is in your Presence, #% increased Mana Recovery rate", - ["type"] = "implicit", - }, - }, + ["max"] = 14, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1217759839", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Mana Recovery rate", + ["type"] = "implicit", + }, + }, ["1619_AllResistances"] = { ["Chest"] = { - ["max"] = 16, - ["min"] = 5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2901986750", - ["text"] = "+#% to all Elemental Resistances", - ["type"] = "implicit", - }, - }, + ["max"] = 16, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2901986750", + ["text"] = "+#% to all Elemental Resistances", + ["type"] = "implicit", + }, + }, ["1619_AllResistancesPinnaclePresence"] = { ["Chest"] = { - ["max"] = 28, - ["min"] = 21, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2251516251", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, +#% to all Elemental Resistances", - ["type"] = "implicit", - }, - }, + ["max"] = 28, + ["min"] = 21, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2251516251", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, +#% to all Elemental Resistances", + ["type"] = "implicit", + }, + }, ["1619_AllResistancesUniquePresence"] = { ["Chest"] = { - ["max"] = 22, - ["min"] = 13, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2358153166", - ["text"] = "While a Unique Enemy is in your Presence, +#% to all Elemental Resistances", - ["type"] = "implicit", - }, - }, + ["max"] = 22, + ["min"] = 13, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2358153166", + ["text"] = "While a Unique Enemy is in your Presence, +#% to all Elemental Resistances", + ["type"] = "implicit", + }, + }, ["1668_PhysicalDamageLifeLeechHundredThousand"] = { ["Gloves"] = { - ["max"] = 0.7, - ["min"] = 0.2, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3764265320", - ["text"] = "#% of Physical Damage Leeched as Life", - ["type"] = "implicit", - }, - }, + ["max"] = 0.7, + ["min"] = 0.2, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2508100173", + ["text"] = "#% of Physical Damage Leeched as Life", + ["type"] = "implicit", + }, + }, ["1668_PhysicalDamageLifeLeechPinnaclePresence"] = { ["Gloves"] = { - ["max"] = 1.1, - ["min"] = 0.8, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2500914030", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% of Physical Damage Leeched as Life", - ["type"] = "implicit", - }, - }, + ["max"] = 1.1, + ["min"] = 0.8, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2500914030", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% of Physical Damage Leeched as Life", + ["type"] = "implicit", + }, + }, ["1668_PhysicalDamageLifeLeechUniquePresence"] = { ["Gloves"] = { - ["max"] = 0.9, - ["min"] = 0.5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2443166200", - ["text"] = "While a Unique Enemy is in your Presence, #% of Physical Damage Leeched as Life", - ["type"] = "implicit", - }, - }, + ["max"] = 0.9, + ["min"] = 0.5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2443166200", + ["text"] = "While a Unique Enemy is in your Presence, #% of Physical Damage Leeched as Life", + ["type"] = "implicit", + }, + }, ["1672_FireDamageLifeLeechHundredThousand"] = { ["Gloves"] = { - ["max"] = 0.7, - ["min"] = 0.2, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3848282610", - ["text"] = "#% of Fire Damage Leeched as Life", - ["type"] = "implicit", - }, - }, + ["max"] = 0.7, + ["min"] = 0.2, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1743742391", + ["text"] = "#% of Fire Damage Leeched as Life", + ["type"] = "implicit", + }, + }, ["1672_FireDamageLifeLeechPinnaclePresence"] = { ["Gloves"] = { - ["max"] = 1.1, - ["min"] = 0.8, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1954944666", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% of Fire Damage Leeched as Life", - ["type"] = "implicit", - }, - }, + ["max"] = 1.1, + ["min"] = 0.8, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1954944666", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% of Fire Damage Leeched as Life", + ["type"] = "implicit", + }, + }, ["1672_FireDamageLifeLeechUniquePresence"] = { ["Gloves"] = { - ["max"] = 0.9, - ["min"] = 0.5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3430693940", - ["text"] = "While a Unique Enemy is in your Presence, #% of Fire Damage Leeched as Life", - ["type"] = "implicit", - }, - }, + ["max"] = 0.9, + ["min"] = 0.5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3430693940", + ["text"] = "While a Unique Enemy is in your Presence, #% of Fire Damage Leeched as Life", + ["type"] = "implicit", + }, + }, ["1677_ColdDamageLifeLeechHundredThousand"] = { ["Gloves"] = { - ["max"] = 0.7, - ["min"] = 0.2, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3999401129", - ["text"] = "#% of Cold Damage Leeched as Life", - ["type"] = "implicit", - }, - }, + ["max"] = 0.7, + ["min"] = 0.2, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2459451600", + ["text"] = "#% of Cold Damage Leeched as Life", + ["type"] = "implicit", + }, + }, ["1677_ColdDamageLifeLeechPinnaclePresence"] = { ["Gloves"] = { - ["max"] = 1.1, - ["min"] = 0.8, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_339123312", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% of Cold Damage Leeched as Life", - ["type"] = "implicit", - }, - }, + ["max"] = 1.1, + ["min"] = 0.8, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_339123312", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% of Cold Damage Leeched as Life", + ["type"] = "implicit", + }, + }, ["1677_ColdDamageLifeLeechUniquePresence"] = { ["Gloves"] = { - ["max"] = 0.9, - ["min"] = 0.5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3357881628", - ["text"] = "While a Unique Enemy is in your Presence, #% of Cold Damage Leeched as Life", - ["type"] = "implicit", - }, - }, + ["max"] = 0.9, + ["min"] = 0.5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3357881628", + ["text"] = "While a Unique Enemy is in your Presence, #% of Cold Damage Leeched as Life", + ["type"] = "implicit", + }, + }, ["1681_LightningDamageLifeLeechHundredThousand"] = { ["Gloves"] = { - ["max"] = 0.7, - ["min"] = 0.2, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_80079005", - ["text"] = "#% of Lightning Damage Leeched as Life", - ["type"] = "implicit", - }, - }, + ["max"] = 0.7, + ["min"] = 0.2, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2696663331", + ["text"] = "#% of Lightning Damage Leeched as Life", + ["type"] = "implicit", + }, + }, ["1681_LightningDamageLifeLeechPinnaclePresence"] = { ["Gloves"] = { - ["max"] = 1.1, - ["min"] = 0.8, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1896842319", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% of Lightning Damage Leeched as Life", - ["type"] = "implicit", - }, - }, + ["max"] = 1.1, + ["min"] = 0.8, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1896842319", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% of Lightning Damage Leeched as Life", + ["type"] = "implicit", + }, + }, ["1681_LightningDamageLifeLeechUniquePresence"] = { ["Gloves"] = { - ["max"] = 0.9, - ["min"] = 0.5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2824722288", - ["text"] = "While a Unique Enemy is in your Presence, #% of Lightning Damage Leeched as Life", - ["type"] = "implicit", - }, - }, + ["max"] = 0.9, + ["min"] = 0.5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2824722288", + ["text"] = "While a Unique Enemy is in your Presence, #% of Lightning Damage Leeched as Life", + ["type"] = "implicit", + }, + }, ["1684_ChaosDamageLifeLeechHundredThousand"] = { ["Gloves"] = { - ["max"] = 0.7, - ["min"] = 0.2, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2238792070", - ["text"] = "#% of Chaos Damage Leeched as Life", - ["type"] = "implicit", - }, - }, + ["max"] = 0.7, + ["min"] = 0.2, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2238792070", + ["text"] = "#% of Chaos Damage Leeched as Life", + ["type"] = "implicit", + }, + }, ["1684_ChaosDamageLifeLeechPinnaclePresence"] = { ["Gloves"] = { - ["max"] = 1.1, - ["min"] = 0.8, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_10259064", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% of Chaos Damage Leeched as Life", - ["type"] = "implicit", - }, - }, + ["max"] = 1.1, + ["min"] = 0.8, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_10259064", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% of Chaos Damage Leeched as Life", + ["type"] = "implicit", + }, + }, ["1684_ChaosDamageLifeLeechUniquePresence"] = { ["Gloves"] = { - ["max"] = 0.9, - ["min"] = 0.5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1172401338", - ["text"] = "While a Unique Enemy is in your Presence, #% of Chaos Damage Leeched as Life", - ["type"] = "implicit", - }, - }, + ["max"] = 0.9, + ["min"] = 0.5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1172401338", + ["text"] = "While a Unique Enemy is in your Presence, #% of Chaos Damage Leeched as Life", + ["type"] = "implicit", + }, + }, ["1790_AdditionalPierce"] = { ["Gloves"] = { - ["max"] = 2, - ["min"] = 1, - }, - ["sign"] = "", - ["specialCaseData"] = { - ["overrideModLineSingular"] = "Projectiles Pierce an additional Target", - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2067062068", - ["text"] = "Projectiles Pierce # additional Targets", - ["type"] = "implicit", - }, - }, + ["max"] = 2, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLineSingular"] = "Projectiles Pierce an additional Target", + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2067062068", + ["text"] = "Projectiles Pierce # additional Targets", + ["type"] = "implicit", + }, + }, ["1790_AdditionalPiercePinnaclePresence"] = { ["Gloves"] = { - ["max"] = 4, - ["min"] = 3, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_4045839821", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Projectiles Pierce # additional Targets", - ["type"] = "implicit", - }, - }, + ["max"] = 4, + ["min"] = 3, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_4045839821", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Projectiles Pierce # additional Targets", + ["type"] = "implicit", + }, + }, ["1790_AdditionalPierceUniquePresence"] = { ["Gloves"] = { - ["max"] = 3, - ["min"] = 2, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3924473787", - ["text"] = "While a Unique Enemy is in your Presence, Projectiles Pierce # additional Targets", - ["type"] = "implicit", - }, - }, + ["max"] = 3, + ["min"] = 2, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3924473787", + ["text"] = "While a Unique Enemy is in your Presence, Projectiles Pierce # additional Targets", + ["type"] = "implicit", + }, + }, ["1843_AvoidElementalStatusAilments"] = { ["Boots"] = { - ["max"] = 32, - ["min"] = 15, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3005472710", - ["text"] = "#% chance to Avoid Elemental Ailments", - ["type"] = "implicit", - }, - }, + ["max"] = 32, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3005472710", + ["text"] = "#% chance to Avoid Elemental Ailments", + ["type"] = "implicit", + }, + }, ["1843_AvoidElementalStatusAilmentsPinnaclePresence"] = { ["Boots"] = { - ["max"] = 50, - ["min"] = 39, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_4241033239", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% chance to Avoid Elemental Ailments", - ["type"] = "implicit", - }, - }, + ["max"] = 50, + ["min"] = 39, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_4241033239", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% chance to Avoid Elemental Ailments", + ["type"] = "implicit", + }, + }, ["1843_AvoidElementalStatusAilmentsUniquePresence"] = { ["Boots"] = { - ["max"] = 41, - ["min"] = 27, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3264420229", - ["text"] = "While a Unique Enemy is in your Presence, #% chance to Avoid Elemental Ailments", - ["type"] = "implicit", - }, - }, + ["max"] = 41, + ["min"] = 27, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3264420229", + ["text"] = "While a Unique Enemy is in your Presence, #% chance to Avoid Elemental Ailments", + ["type"] = "implicit", + }, + }, ["1849_ChanceToAvoidPoison"] = { ["Boots"] = { - ["max"] = 50, - ["min"] = 33, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_4053951709", - ["text"] = "#% chance to Avoid being Poisoned", - ["type"] = "implicit", - }, - }, + ["max"] = 50, + ["min"] = 33, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_4053951709", + ["text"] = "#% chance to Avoid being Poisoned", + ["type"] = "implicit", + }, + }, ["1849_ChanceToAvoidPoisonPinnaclePresence"] = { ["Boots"] = { - ["max"] = 70, - ["min"] = 57, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2714750784", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% chance to Avoid being Poisoned", - ["type"] = "implicit", - }, - }, + ["max"] = 70, + ["min"] = 57, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2714750784", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% chance to Avoid being Poisoned", + ["type"] = "implicit", + }, + }, ["1849_ChanceToAvoidPoisonUniquePresence"] = { ["Boots"] = { - ["max"] = 61, - ["min"] = 45, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3553907672", - ["text"] = "While a Unique Enemy is in your Presence, #% chance to Avoid being Poisoned", - ["type"] = "implicit", - }, - }, + ["max"] = 61, + ["min"] = 45, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3553907672", + ["text"] = "While a Unique Enemy is in your Presence, #% chance to Avoid being Poisoned", + ["type"] = "implicit", + }, + }, ["1860_IncreasedAilmentDuration"] = { ["Amulet"] = { - ["max"] = 24, - ["min"] = 13, - }, + ["max"] = 24, + ["min"] = 13, + }, ["Helmet"] = { - ["max"] = 24, - ["min"] = 13, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2419712247", - ["text"] = "#% increased Duration of Ailments on Enemies", - ["type"] = "implicit", - }, - }, + ["max"] = 24, + ["min"] = 13, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2419712247", + ["text"] = "#% increased Duration of Ailments on Enemies", + ["type"] = "implicit", + }, + }, ["1860_IncreasedAilmentDurationPinnaclePresence"] = { ["Amulet"] = { - ["max"] = 36, - ["min"] = 29, - }, + ["max"] = 36, + ["min"] = 29, + }, ["Helmet"] = { - ["max"] = 36, - ["min"] = 29, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_867827325", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Duration of Ailments on Enemies", - ["type"] = "implicit", - }, - }, + ["max"] = 36, + ["min"] = 29, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_867827325", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Duration of Ailments on Enemies", + ["type"] = "implicit", + }, + }, ["1860_IncreasedAilmentDurationUniquePresence"] = { ["Amulet"] = { - ["max"] = 30, - ["min"] = 21, - }, + ["max"] = 30, + ["min"] = 21, + }, ["Helmet"] = { - ["max"] = 30, - ["min"] = 21, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3341892633", - ["text"] = "While a Unique Enemy is in your Presence, #% increased Duration of Ailments on Enemies", - ["type"] = "implicit", - }, - }, + ["max"] = 30, + ["min"] = 21, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3341892633", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Duration of Ailments on Enemies", + ["type"] = "implicit", + }, + }, ["1874_ReducedFreezeDuration"] = { ["Helmet"] = { - ["max"] = 50, - ["min"] = 33, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2160282525", - ["text"] = "#% reduced Freeze Duration on you", - ["type"] = "implicit", - }, - }, + ["max"] = 50, + ["min"] = 33, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2160282525", + ["text"] = "#% reduced Freeze Duration on you", + ["type"] = "implicit", + }, + }, ["1874_ReducedFreezeDurationPinnaclePresence"] = { ["Helmet"] = { - ["max"] = 70, - ["min"] = 57, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_928972227", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% reduced Freeze Duration on you", - ["type"] = "implicit", - }, - }, + ["max"] = 70, + ["min"] = 57, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_928972227", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% reduced Freeze Duration on you", + ["type"] = "implicit", + }, + }, ["1874_ReducedFreezeDurationUniquePresence"] = { ["Helmet"] = { - ["max"] = 61, - ["min"] = 45, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3985862221", - ["text"] = "While a Unique Enemy is in your Presence, #% reduced Freeze Duration on you", - ["type"] = "implicit", - }, - }, + ["max"] = 61, + ["min"] = 45, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3985862221", + ["text"] = "While a Unique Enemy is in your Presence, #% reduced Freeze Duration on you", + ["type"] = "implicit", + }, + }, ["1875_ReducedIgniteDurationOnSelf"] = { ["Helmet"] = { - ["max"] = 50, - ["min"] = 33, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_986397080", - ["text"] = "#% reduced Ignite Duration on you", - ["type"] = "implicit", - }, - }, + ["max"] = 50, + ["min"] = 33, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_986397080", + ["text"] = "#% reduced Ignite Duration on you", + ["type"] = "implicit", + }, + }, ["1875_ReducedIgniteDurationOnSelfPinnaclePresence"] = { ["Helmet"] = { - ["max"] = 70, - ["min"] = 57, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3042217102", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% reduced Ignite Duration on you", - ["type"] = "implicit", - }, - }, + ["max"] = 70, + ["min"] = 57, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3042217102", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% reduced Ignite Duration on you", + ["type"] = "implicit", + }, + }, ["1875_ReducedIgniteDurationOnSelfUniquePresence"] = { ["Helmet"] = { - ["max"] = 61, - ["min"] = 45, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2520245478", - ["text"] = "While a Unique Enemy is in your Presence, #% reduced Ignite Duration on you", - ["type"] = "implicit", - }, - }, + ["max"] = 61, + ["min"] = 45, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2520245478", + ["text"] = "While a Unique Enemy is in your Presence, #% reduced Ignite Duration on you", + ["type"] = "implicit", + }, + }, ["1895_SkillEffectDuration"] = { ["Amulet"] = { - ["max"] = 18, - ["min"] = 7, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3377888098", - ["text"] = "#% increased Skill Effect Duration", - ["type"] = "implicit", - }, - }, + ["max"] = 18, + ["min"] = 7, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3377888098", + ["text"] = "#% increased Skill Effect Duration", + ["type"] = "implicit", + }, + }, ["1895_SkillEffectDurationPinnaclePresence"] = { ["Amulet"] = { - ["max"] = 30, - ["min"] = 23, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3377888098", - ["text"] = "#% increased Skill Effect Duration", - ["type"] = "implicit", - }, - }, + ["max"] = 30, + ["min"] = 23, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3377888098", + ["text"] = "#% increased Skill Effect Duration", + ["type"] = "implicit", + }, + }, ["1895_SkillEffectDurationUniquePresence"] = { ["Amulet"] = { - ["max"] = 24, - ["min"] = 15, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3377888098", - ["text"] = "#% increased Skill Effect Duration", - ["type"] = "implicit", - }, - }, + ["max"] = 24, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3377888098", + ["text"] = "#% increased Skill Effect Duration", + ["type"] = "implicit", + }, + }, ["1932_PhysicalAddedAsFire"] = { ["Boots"] = { - ["max"] = 6, - ["min"] = 4, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_369494213", - ["text"] = "Gain #% of Physical Damage as Extra Fire Damage", - ["type"] = "implicit", - }, - }, + ["max"] = 6, + ["min"] = 4, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_369494213", + ["text"] = "Gain #% of Physical Damage as Extra Fire Damage", + ["type"] = "implicit", + }, + }, ["1932_PhysicalAddedAsFirePinnaclePresence"] = { ["Boots"] = { - ["max"] = 10, - ["min"] = 9, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1335630001", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Gain #% of Physical Damage as Extra Fire Damage", - ["type"] = "implicit", - }, - }, + ["max"] = 10, + ["min"] = 9, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1335630001", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Gain #% of Physical Damage as Extra Fire Damage", + ["type"] = "implicit", + }, + }, ["1932_PhysicalAddedAsFireUniquePresence"] = { ["Boots"] = { - ["max"] = 8, - ["min"] = 6, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3549954477", - ["text"] = "While a Unique Enemy is in your Presence, Gain #% of Physical Damage as Extra Fire Damage", - ["type"] = "implicit", - }, - }, + ["max"] = 8, + ["min"] = 6, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3549954477", + ["text"] = "While a Unique Enemy is in your Presence, Gain #% of Physical Damage as Extra Fire Damage", + ["type"] = "implicit", + }, + }, ["1933_PhysicalAddedAsCold"] = { ["Boots"] = { - ["max"] = 6, - ["min"] = 4, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_979246511", - ["text"] = "Gain #% of Physical Damage as Extra Cold Damage", - ["type"] = "implicit", - }, - }, + ["max"] = 6, + ["min"] = 4, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_979246511", + ["text"] = "Gain #% of Physical Damage as Extra Cold Damage", + ["type"] = "implicit", + }, + }, ["1933_PhysicalAddedAsColdPinnaclePresence"] = { ["Boots"] = { - ["max"] = 10, - ["min"] = 9, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1425454108", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Gain #% of Physical Damage as Extra Cold Damage", - ["type"] = "implicit", - }, - }, + ["max"] = 10, + ["min"] = 9, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1425454108", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Gain #% of Physical Damage as Extra Cold Damage", + ["type"] = "implicit", + }, + }, ["1933_PhysicalAddedAsColdUniquePresence"] = { ["Boots"] = { - ["max"] = 8, - ["min"] = 6, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3171354842", - ["text"] = "While a Unique Enemy is in your Presence, Gain #% of Physical Damage as Extra Cold Damage", - ["type"] = "implicit", - }, - }, + ["max"] = 8, + ["min"] = 6, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3171354842", + ["text"] = "While a Unique Enemy is in your Presence, Gain #% of Physical Damage as Extra Cold Damage", + ["type"] = "implicit", + }, + }, ["1934_PhysicalAddedAsLightning"] = { ["Boots"] = { - ["max"] = 6, - ["min"] = 4, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_219391121", - ["text"] = "Gain #% of Physical Damage as Extra Lightning Damage", - ["type"] = "implicit", - }, - }, + ["max"] = 6, + ["min"] = 4, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_219391121", + ["text"] = "Gain #% of Physical Damage as Extra Lightning Damage", + ["type"] = "implicit", + }, + }, ["1934_PhysicalAddedAsLightningPinnaclePresence"] = { ["Boots"] = { - ["max"] = 10, - ["min"] = 9, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_632297605", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Gain #% of Physical Damage as Extra Lightning Damage", - ["type"] = "implicit", - }, - }, + ["max"] = 10, + ["min"] = 9, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_632297605", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Gain #% of Physical Damage as Extra Lightning Damage", + ["type"] = "implicit", + }, + }, ["1934_PhysicalAddedAsLightningUniquePresence"] = { ["Boots"] = { - ["max"] = 8, - ["min"] = 6, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1918094957", - ["text"] = "While a Unique Enemy is in your Presence, Gain #% of Physical Damage as Extra Lightning Damage", - ["type"] = "implicit", - }, - }, + ["max"] = 8, + ["min"] = 6, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1918094957", + ["text"] = "While a Unique Enemy is in your Presence, Gain #% of Physical Damage as Extra Lightning Damage", + ["type"] = "implicit", + }, + }, ["1935_PhysicalDamageAddedAsChaos"] = { ["Boots"] = { - ["max"] = 6, - ["min"] = 4, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3319896421", - ["text"] = "Gain #% of Physical Damage as Extra Chaos Damage", - ["type"] = "implicit", - }, - }, + ["max"] = 6, + ["min"] = 4, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3319896421", + ["text"] = "Gain #% of Physical Damage as Extra Chaos Damage", + ["type"] = "implicit", + }, + }, ["1935_PhysicalDamageAddedAsChaosPinnaclePresence"] = { ["Boots"] = { - ["max"] = 10, - ["min"] = 9, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3490650294", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Gain #% of Physical Damage as Extra Chaos Damage", - ["type"] = "implicit", - }, - }, + ["max"] = 10, + ["min"] = 9, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3490650294", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Gain #% of Physical Damage as Extra Chaos Damage", + ["type"] = "implicit", + }, + }, ["1935_PhysicalDamageAddedAsChaosUniquePresence"] = { ["Boots"] = { - ["max"] = 8, - ["min"] = 6, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_620552892", - ["text"] = "While a Unique Enemy is in your Presence, Gain #% of Physical Damage as Extra Chaos Damage", - ["type"] = "implicit", - }, - }, + ["max"] = 8, + ["min"] = 6, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_620552892", + ["text"] = "While a Unique Enemy is in your Presence, Gain #% of Physical Damage as Extra Chaos Damage", + ["type"] = "implicit", + }, + }, ["1955_ConvertPhysicalToFireImplicit"] = { ["Gloves"] = { - ["max"] = 35, - ["min"] = 10, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1533563525", - ["text"] = "#% of Physical Damage Converted to Fire Damage", - ["type"] = "implicit", - }, - }, + ["max"] = 35, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1533563525", + ["text"] = "#% of Physical Damage Converted to Fire Damage", + ["type"] = "implicit", + }, + }, ["1955_ConvertPhysicalToFirePinnaclePresence"] = { ["Gloves"] = { - ["max"] = 65, - ["min"] = 50, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3764409984", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% of Physical Damage Converted to Fire Damage", - ["type"] = "implicit", - }, - }, + ["max"] = 65, + ["min"] = 50, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3764409984", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% of Physical Damage Converted to Fire Damage", + ["type"] = "implicit", + }, + }, ["1955_ConvertPhysicalToFireUniquePresence"] = { ["Gloves"] = { - ["max"] = 50, - ["min"] = 30, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_380027104", - ["text"] = "While a Unique Enemy is in your Presence, #% of Physical Damage Converted to Fire Damage", - ["type"] = "implicit", - }, - }, + ["max"] = 50, + ["min"] = 30, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_380027104", + ["text"] = "While a Unique Enemy is in your Presence, #% of Physical Damage Converted to Fire Damage", + ["type"] = "implicit", + }, + }, ["1957_ConvertPhysicalToColdImplicit"] = { ["Gloves"] = { - ["max"] = 35, - ["min"] = 10, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2133341901", - ["text"] = "#% of Physical Damage Converted to Cold Damage", - ["type"] = "implicit", - }, - }, + ["max"] = 35, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2133341901", + ["text"] = "#% of Physical Damage Converted to Cold Damage", + ["type"] = "implicit", + }, + }, ["1957_ConvertPhysicalToColdPinnaclePresence"] = { ["Gloves"] = { - ["max"] = 65, - ["min"] = 50, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3567752586", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% of Physical Damage Converted to Cold Damage", - ["type"] = "implicit", - }, - }, + ["max"] = 65, + ["min"] = 50, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3567752586", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% of Physical Damage Converted to Cold Damage", + ["type"] = "implicit", + }, + }, ["1957_ConvertPhysicalToColdUniquePresence"] = { ["Gloves"] = { - ["max"] = 50, - ["min"] = 30, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1153825002", - ["text"] = "While a Unique Enemy is in your Presence, #% of Physical Damage Converted to Cold Damage", - ["type"] = "implicit", - }, - }, + ["max"] = 50, + ["min"] = 30, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1153825002", + ["text"] = "While a Unique Enemy is in your Presence, #% of Physical Damage Converted to Cold Damage", + ["type"] = "implicit", + }, + }, ["1959_ConvertPhysicalToLightningImplicit"] = { ["Gloves"] = { - ["max"] = 35, - ["min"] = 10, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3240769289", - ["text"] = "#% of Physical Damage Converted to Lightning Damage", - ["type"] = "implicit", - }, - }, + ["max"] = 35, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3240769289", + ["text"] = "#% of Physical Damage Converted to Lightning Damage", + ["type"] = "implicit", + }, + }, ["1959_ConvertPhysicalToLightningPinnaclePresence"] = { ["Gloves"] = { - ["max"] = 65, - ["min"] = 50, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3718361973", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% of Physical Damage Converted to Lightning Damage", - ["type"] = "implicit", - }, - }, + ["max"] = 65, + ["min"] = 50, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3718361973", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% of Physical Damage Converted to Lightning Damage", + ["type"] = "implicit", + }, + }, ["1959_ConvertPhysicalToLightningUniquePresence"] = { ["Gloves"] = { - ["max"] = 50, - ["min"] = 30, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1516273114", - ["text"] = "While a Unique Enemy is in your Presence, #% of Physical Damage Converted to Lightning Damage", - ["type"] = "implicit", - }, - }, + ["max"] = 50, + ["min"] = 30, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1516273114", + ["text"] = "While a Unique Enemy is in your Presence, #% of Physical Damage Converted to Lightning Damage", + ["type"] = "implicit", + }, + }, ["1962_ConvertPhysicalToChaosPinnaclePresence"] = { ["Gloves"] = { - ["max"] = 65, - ["min"] = 50, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2204282073", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% of Physical Damage Converted to Chaos Damage", - ["type"] = "implicit", - }, - }, + ["max"] = 65, + ["min"] = 50, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2204282073", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% of Physical Damage Converted to Chaos Damage", + ["type"] = "implicit", + }, + }, ["1962_ConvertPhysicalToChaosUniquePresence"] = { ["Gloves"] = { - ["max"] = 50, - ["min"] = 30, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1623369100", - ["text"] = "While a Unique Enemy is in your Presence, #% of Physical Damage Converted to Chaos Damage", - ["type"] = "implicit", - }, - }, + ["max"] = 50, + ["min"] = 30, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1623369100", + ["text"] = "While a Unique Enemy is in your Presence, #% of Physical Damage Converted to Chaos Damage", + ["type"] = "implicit", + }, + }, ["1962_PhysicalDamageConvertToChaosImplicit"] = { ["Gloves"] = { - ["max"] = 35, - ["min"] = 10, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_490098963", - ["text"] = "#% of Physical Damage Converted to Chaos Damage", - ["type"] = "implicit", - }, - }, + ["max"] = 35, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_490098963", + ["text"] = "#% of Physical Damage Converted to Chaos Damage", + ["type"] = "implicit", + }, + }, ["1979_IncreasedManaRegenerationPerPowerCharge"] = { ["Helmet"] = { - ["max"] = 6, - ["min"] = 5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2847548062", - ["text"] = "#% increased Mana Regeneration Rate per Power Charge", - ["type"] = "implicit", - }, - }, + ["max"] = 6, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2847548062", + ["text"] = "#% increased Mana Regeneration Rate per Power Charge", + ["type"] = "implicit", + }, + }, ["1979_IncreasedManaRegenerationPerPowerChargePinnaclePresence"] = { ["Helmet"] = { - ["max"] = 8, - ["min"] = 7, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2425364074", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Mana Regeneration Rate per Power Charge", - ["type"] = "implicit", - }, - }, + ["max"] = 8, + ["min"] = 7, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2425364074", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Mana Regeneration Rate per Power Charge", + ["type"] = "implicit", + }, + }, ["1979_IncreasedManaRegenerationPerPowerChargeUniquePresence"] = { ["Helmet"] = { - ["max"] = 7, - ["min"] = 6, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1918872160", - ["text"] = "While a Unique Enemy is in your Presence, #% increased Mana Regeneration Rate per Power Charge", - ["type"] = "implicit", - }, - }, + ["max"] = 7, + ["min"] = 6, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1918872160", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Mana Regeneration Rate per Power Charge", + ["type"] = "implicit", + }, + }, ["2026_ChanceToIgnite"] = { ["Helmet"] = { - ["max"] = 30, - ["min"] = 5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1335054179", - ["text"] = "#% chance to Ignite", - ["type"] = "implicit", - }, - }, + ["max"] = 30, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1335054179", + ["text"] = "#% chance to Ignite", + ["type"] = "implicit", + }, + }, ["2026_ChanceToIgnitePinnaclePresence"] = { ["Helmet"] = { - ["max"] = 50, - ["min"] = 35, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1030674088", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% chance to Ignite", - ["type"] = "implicit", - }, - }, + ["max"] = 50, + ["min"] = 35, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1030674088", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% chance to Ignite", + ["type"] = "implicit", + }, + }, ["2026_ChanceToIgniteUniquePresence"] = { ["Helmet"] = { - ["max"] = 40, - ["min"] = 20, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_874990741", - ["text"] = "While a Unique Enemy is in your Presence, #% chance to Ignite", - ["type"] = "implicit", - }, - }, + ["max"] = 40, + ["min"] = 20, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_874990741", + ["text"] = "While a Unique Enemy is in your Presence, #% chance to Ignite", + ["type"] = "implicit", + }, + }, ["2029_ChanceToFreeze"] = { ["Helmet"] = { - ["max"] = 30, - ["min"] = 5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2309614417", - ["text"] = "#% chance to Freeze", - ["type"] = "implicit", - }, - }, + ["max"] = 30, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2309614417", + ["text"] = "#% chance to Freeze", + ["type"] = "implicit", + }, + }, ["2029_ChanceToFreezePinnaclePresence"] = { ["Helmet"] = { - ["max"] = 50, - ["min"] = 35, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_4146719724", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% chance to Freeze", - ["type"] = "implicit", - }, - }, + ["max"] = 50, + ["min"] = 35, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_4146719724", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% chance to Freeze", + ["type"] = "implicit", + }, + }, ["2029_ChanceToFreezeUniquePresence"] = { ["Helmet"] = { - ["max"] = 40, - ["min"] = 20, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1096728982", - ["text"] = "While a Unique Enemy is in your Presence, #% chance to Freeze", - ["type"] = "implicit", - }, - }, + ["max"] = 40, + ["min"] = 20, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1096728982", + ["text"] = "While a Unique Enemy is in your Presence, #% chance to Freeze", + ["type"] = "implicit", + }, + }, ["2033_ChanceToShock"] = { ["Helmet"] = { - ["max"] = 30, - ["min"] = 5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1538773178", - ["text"] = "#% chance to Shock", - ["type"] = "implicit", - }, - }, + ["max"] = 30, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1538773178", + ["text"] = "#% chance to Shock", + ["type"] = "implicit", + }, + }, ["2033_ChanceToShockPinnaclePresence"] = { ["Helmet"] = { - ["max"] = 50, - ["min"] = 35, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2459490852", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% chance to Shock", - ["type"] = "implicit", - }, - }, + ["max"] = 50, + ["min"] = 35, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2459490852", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% chance to Shock", + ["type"] = "implicit", + }, + }, ["2033_ChanceToShockUniquePresence"] = { ["Helmet"] = { - ["max"] = 40, - ["min"] = 20, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2621869142", - ["text"] = "While a Unique Enemy is in your Presence, #% chance to Shock", - ["type"] = "implicit", - }, - }, + ["max"] = 40, + ["min"] = 20, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2621869142", + ["text"] = "While a Unique Enemy is in your Presence, #% chance to Shock", + ["type"] = "implicit", + }, + }, ["2228_ManaReservationEfficiency"] = { ["Amulet"] = { - ["max"] = 12, - ["min"] = 7, - }, + ["max"] = 12, + ["min"] = 7, + }, ["Helmet"] = { - ["max"] = 12, - ["min"] = 7, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_4237190083", - ["text"] = "#% increased Mana Reservation Efficiency of Skills", - ["type"] = "implicit", - }, - }, + ["max"] = 12, + ["min"] = 7, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1269219558", + ["text"] = "#% increased Mana Reservation Efficiency of Skills", + ["type"] = "implicit", + }, + }, ["2228_ManaReservationEfficiencyPinnaclePresence"] = { ["Amulet"] = { - ["max"] = 18, - ["min"] = 15, - }, + ["max"] = 18, + ["min"] = 15, + }, ["Helmet"] = { - ["max"] = 18, - ["min"] = 15, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_4213793369", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Mana Reservation Efficiency of Skills", - ["type"] = "implicit", - }, - }, + ["max"] = 18, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_4213793369", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Mana Reservation Efficiency of Skills", + ["type"] = "implicit", + }, + }, ["2228_ManaReservationEfficiencyUniquePresence"] = { ["Amulet"] = { - ["max"] = 15, - ["min"] = 11, - }, + ["max"] = 15, + ["min"] = 11, + }, ["Helmet"] = { - ["max"] = 15, - ["min"] = 11, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2358903592", - ["text"] = "While a Unique Enemy is in your Presence, #% increased Mana Reservation Efficiency of Skills", - ["type"] = "implicit", - }, - }, + ["max"] = 15, + ["min"] = 11, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2358903592", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Mana Reservation Efficiency of Skills", + ["type"] = "implicit", + }, + }, ["2447_PhysicalDamageTakenAsFireBodyUber"] = { ["Chest"] = { - ["max"] = 12, - ["min"] = 10, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3342989455", - ["text"] = "#% of Physical Damage from Hits taken as Fire Damage", - ["type"] = "implicit", - }, - }, + ["max"] = 12, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3342989455", + ["text"] = "#% of Physical Damage from Hits taken as Fire Damage", + ["type"] = "implicit", + }, + }, ["2447_PhysicalDamageTakenAsFireBodyUberPinnaclePresence"] = { ["Chest"] = { - ["max"] = 20, - ["min"] = 19, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3995172058", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% of Physical Damage from Hits taken as Fire Damage", - ["type"] = "implicit", - }, - }, + ["max"] = 20, + ["min"] = 19, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3995172058", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% of Physical Damage from Hits taken as Fire Damage", + ["type"] = "implicit", + }, + }, ["2447_PhysicalDamageTakenAsFireBodyUberUniquePresence"] = { ["Chest"] = { - ["max"] = 16, - ["min"] = 14, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1283684786", - ["text"] = "While a Unique Enemy is in your Presence, #% of Physical Damage from Hits taken as Fire Damage", - ["type"] = "implicit", - }, - }, + ["max"] = 16, + ["min"] = 14, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1283684786", + ["text"] = "While a Unique Enemy is in your Presence, #% of Physical Damage from Hits taken as Fire Damage", + ["type"] = "implicit", + }, + }, ["2447_PhysicalDamageTakenAsFireUber"] = { ["Helmet"] = { - ["max"] = 8, - ["min"] = 6, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3342989455", - ["text"] = "#% of Physical Damage from Hits taken as Fire Damage", - ["type"] = "implicit", - }, - }, + ["max"] = 8, + ["min"] = 6, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3342989455", + ["text"] = "#% of Physical Damage from Hits taken as Fire Damage", + ["type"] = "implicit", + }, + }, ["2447_PhysicalDamageTakenAsFireUberPinnaclePresence"] = { ["Helmet"] = { - ["max"] = 12, - ["min"] = 11, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3995172058", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% of Physical Damage from Hits taken as Fire Damage", - ["type"] = "implicit", - }, - }, + ["max"] = 12, + ["min"] = 11, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3995172058", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% of Physical Damage from Hits taken as Fire Damage", + ["type"] = "implicit", + }, + }, ["2447_PhysicalDamageTakenAsFireUberUniquePresence"] = { ["Helmet"] = { - ["max"] = 10, - ["min"] = 8, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1283684786", - ["text"] = "While a Unique Enemy is in your Presence, #% of Physical Damage from Hits taken as Fire Damage", - ["type"] = "implicit", - }, - }, + ["max"] = 10, + ["min"] = 8, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1283684786", + ["text"] = "While a Unique Enemy is in your Presence, #% of Physical Damage from Hits taken as Fire Damage", + ["type"] = "implicit", + }, + }, ["2448_PhysicalDamageTakenAsColdBodyUber"] = { ["Chest"] = { - ["max"] = 12, - ["min"] = 10, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1871056256", - ["text"] = "#% of Physical Damage from Hits taken as Cold Damage", - ["type"] = "implicit", - }, - }, + ["max"] = 12, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1871056256", + ["text"] = "#% of Physical Damage from Hits taken as Cold Damage", + ["type"] = "implicit", + }, + }, ["2448_PhysicalDamageTakenAsColdBodyUberPinnaclePresence"] = { ["Chest"] = { - ["max"] = 20, - ["min"] = 19, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2466412811", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% of Physical Damage from Hits taken as Cold Damage", - ["type"] = "implicit", - }, - }, + ["max"] = 20, + ["min"] = 19, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2466412811", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% of Physical Damage from Hits taken as Cold Damage", + ["type"] = "implicit", + }, + }, ["2448_PhysicalDamageTakenAsColdBodyUberUniquePresence"] = { ["Chest"] = { - ["max"] = 16, - ["min"] = 14, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_848890513", - ["text"] = "While a Unique Enemy is in your Presence, #% of Physical Damage from Hits taken as Cold Damage", - ["type"] = "implicit", - }, - }, + ["max"] = 16, + ["min"] = 14, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_848890513", + ["text"] = "While a Unique Enemy is in your Presence, #% of Physical Damage from Hits taken as Cold Damage", + ["type"] = "implicit", + }, + }, ["2448_PhysicalDamageTakenAsColdUber"] = { ["Helmet"] = { - ["max"] = 8, - ["min"] = 6, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1871056256", - ["text"] = "#% of Physical Damage from Hits taken as Cold Damage", - ["type"] = "implicit", - }, - }, + ["max"] = 8, + ["min"] = 6, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1871056256", + ["text"] = "#% of Physical Damage from Hits taken as Cold Damage", + ["type"] = "implicit", + }, + }, ["2448_PhysicalDamageTakenAsColdUberPinnaclePresence"] = { ["Helmet"] = { - ["max"] = 12, - ["min"] = 11, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2466412811", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% of Physical Damage from Hits taken as Cold Damage", - ["type"] = "implicit", - }, - }, + ["max"] = 12, + ["min"] = 11, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2466412811", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% of Physical Damage from Hits taken as Cold Damage", + ["type"] = "implicit", + }, + }, ["2448_PhysicalDamageTakenAsColdUberUniquePresence"] = { ["Helmet"] = { - ["max"] = 10, - ["min"] = 8, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_848890513", - ["text"] = "While a Unique Enemy is in your Presence, #% of Physical Damage from Hits taken as Cold Damage", - ["type"] = "implicit", - }, - }, + ["max"] = 10, + ["min"] = 8, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_848890513", + ["text"] = "While a Unique Enemy is in your Presence, #% of Physical Damage from Hits taken as Cold Damage", + ["type"] = "implicit", + }, + }, ["2449_PhysicalDamageTakenAsLightningBodyUber"] = { ["Chest"] = { - ["max"] = 12, - ["min"] = 10, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_425242359", - ["text"] = "#% of Physical Damage from Hits taken as Lightning Damage", - ["type"] = "implicit", - }, - }, + ["max"] = 12, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_425242359", + ["text"] = "#% of Physical Damage from Hits taken as Lightning Damage", + ["type"] = "implicit", + }, + }, ["2449_PhysicalDamageTakenAsLightningBodyUberPinnaclePresence"] = { ["Chest"] = { - ["max"] = 20, - ["min"] = 19, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3947691353", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% of Physical Damage from Hits taken as Lightning Damage", - ["type"] = "implicit", - }, - }, + ["max"] = 20, + ["min"] = 19, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3947691353", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% of Physical Damage from Hits taken as Lightning Damage", + ["type"] = "implicit", + }, + }, ["2449_PhysicalDamageTakenAsLightningBodyUberUniquePresence"] = { ["Chest"] = { - ["max"] = 16, - ["min"] = 14, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_196824923", - ["text"] = "While a Unique Enemy is in your Presence, #% of Physical Damage from Hits taken as Lightning Damage", - ["type"] = "implicit", - }, - }, + ["max"] = 16, + ["min"] = 14, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_196824923", + ["text"] = "While a Unique Enemy is in your Presence, #% of Physical Damage from Hits taken as Lightning Damage", + ["type"] = "implicit", + }, + }, ["2449_PhysicalDamageTakenAsLightningUber"] = { ["Helmet"] = { - ["max"] = 8, - ["min"] = 6, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_425242359", - ["text"] = "#% of Physical Damage from Hits taken as Lightning Damage", - ["type"] = "implicit", - }, - }, + ["max"] = 8, + ["min"] = 6, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_425242359", + ["text"] = "#% of Physical Damage from Hits taken as Lightning Damage", + ["type"] = "implicit", + }, + }, ["2449_PhysicalDamageTakenAsLightningUberPinnaclePresence"] = { ["Helmet"] = { - ["max"] = 12, - ["min"] = 11, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3947691353", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% of Physical Damage from Hits taken as Lightning Damage", - ["type"] = "implicit", - }, - }, + ["max"] = 12, + ["min"] = 11, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3947691353", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% of Physical Damage from Hits taken as Lightning Damage", + ["type"] = "implicit", + }, + }, ["2449_PhysicalDamageTakenAsLightningUberUniquePresence"] = { ["Helmet"] = { - ["max"] = 10, - ["min"] = 8, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_196824923", - ["text"] = "While a Unique Enemy is in your Presence, #% of Physical Damage from Hits taken as Lightning Damage", - ["type"] = "implicit", - }, - }, + ["max"] = 10, + ["min"] = 8, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_196824923", + ["text"] = "While a Unique Enemy is in your Presence, #% of Physical Damage from Hits taken as Lightning Damage", + ["type"] = "implicit", + }, + }, ["2451_PhysicalDamageTakenAsChaosBodyUber"] = { ["Chest"] = { - ["max"] = 12, - ["min"] = 10, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_4129825612", - ["text"] = "#% of Physical Damage from Hits taken as Chaos Damage", - ["type"] = "implicit", - }, - }, + ["max"] = 12, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_4129825612", + ["text"] = "#% of Physical Damage from Hits taken as Chaos Damage", + ["type"] = "implicit", + }, + }, ["2451_PhysicalDamageTakenAsChaosBodyUberPinnaclePresence"] = { ["Chest"] = { - ["max"] = 20, - ["min"] = 19, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3904394775", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% of Physical Damage from Hits taken as Chaos Damage", - ["type"] = "implicit", - }, - }, + ["max"] = 20, + ["min"] = 19, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3904394775", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% of Physical Damage from Hits taken as Chaos Damage", + ["type"] = "implicit", + }, + }, ["2451_PhysicalDamageTakenAsChaosBodyUberUniquePresence"] = { ["Chest"] = { - ["max"] = 16, - ["min"] = 14, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2393004388", - ["text"] = "While a Unique Enemy is in your Presence, #% of Physical Damage from Hits taken as Chaos Damage", - ["type"] = "implicit", - }, - }, + ["max"] = 16, + ["min"] = 14, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2393004388", + ["text"] = "While a Unique Enemy is in your Presence, #% of Physical Damage from Hits taken as Chaos Damage", + ["type"] = "implicit", + }, + }, ["2451_PhysicalDamageTakenAsChaosUber"] = { ["Helmet"] = { - ["max"] = 8, - ["min"] = 6, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_4129825612", - ["text"] = "#% of Physical Damage from Hits taken as Chaos Damage", - ["type"] = "implicit", - }, - }, + ["max"] = 8, + ["min"] = 6, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_4129825612", + ["text"] = "#% of Physical Damage from Hits taken as Chaos Damage", + ["type"] = "implicit", + }, + }, ["2451_PhysicalDamageTakenAsChaosUberPinnaclePresence"] = { ["Helmet"] = { - ["max"] = 12, - ["min"] = 11, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3904394775", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% of Physical Damage from Hits taken as Chaos Damage", - ["type"] = "implicit", - }, - }, + ["max"] = 12, + ["min"] = 11, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3904394775", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% of Physical Damage from Hits taken as Chaos Damage", + ["type"] = "implicit", + }, + }, ["2451_PhysicalDamageTakenAsChaosUberUniquePresence"] = { ["Helmet"] = { - ["max"] = 10, - ["min"] = 8, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2393004388", - ["text"] = "While a Unique Enemy is in your Presence, #% of Physical Damage from Hits taken as Chaos Damage", - ["type"] = "implicit", - }, - }, + ["max"] = 10, + ["min"] = 8, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2393004388", + ["text"] = "While a Unique Enemy is in your Presence, #% of Physical Damage from Hits taken as Chaos Damage", + ["type"] = "implicit", + }, + }, ["2489_ChanceToBleed"] = { ["Gloves"] = { - ["max"] = 30, - ["min"] = 5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1923879260", - ["text"] = "Attacks have #% chance to cause Bleeding", - ["type"] = "implicit", - }, - }, + ["max"] = 30, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1923879260", + ["text"] = "Attacks have #% chance to cause Bleeding", + ["type"] = "implicit", + }, + }, ["2489_ChanceToBleedPinnaclePresence"] = { ["Gloves"] = { - ["max"] = 50, - ["min"] = 35, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_4014428128", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Attacks have #% chance to cause Bleeding", - ["type"] = "implicit", - }, - }, + ["max"] = 50, + ["min"] = 35, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_4014428128", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Attacks have #% chance to cause Bleeding", + ["type"] = "implicit", + }, + }, ["2489_ChanceToBleedUniquePresence"] = { ["Gloves"] = { - ["max"] = 40, - ["min"] = 20, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_64193828", - ["text"] = "While a Unique Enemy is in your Presence, Attacks have #% chance to cause Bleeding", - ["type"] = "implicit", - }, - }, + ["max"] = 40, + ["min"] = 20, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_64193828", + ["text"] = "While a Unique Enemy is in your Presence, Attacks have #% chance to cause Bleeding", + ["type"] = "implicit", + }, + }, ["2564_FasterIgniteDamage"] = { ["Boots"] = { - ["max"] = 10, - ["min"] = 5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2443492284", - ["text"] = "Ignites you inflict deal Damage #% faster", - ["type"] = "implicit", - }, - }, + ["max"] = 10, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2443492284", + ["text"] = "Ignites you inflict deal Damage #% faster", + ["type"] = "implicit", + }, + }, ["2564_FasterIgniteDamagePinnaclePresence"] = { ["Boots"] = { - ["max"] = 16, - ["min"] = 13, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1053495752", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Ignites you inflict deal Damage #% faster", - ["type"] = "implicit", - }, - }, + ["max"] = 16, + ["min"] = 13, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1053495752", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Ignites you inflict deal Damage #% faster", + ["type"] = "implicit", + }, + }, ["2564_FasterIgniteDamageUniquePresence"] = { ["Boots"] = { - ["max"] = 13, - ["min"] = 9, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2349328837", - ["text"] = "While a Unique Enemy is in your Presence, Ignites you inflict deal Damage #% faster", - ["type"] = "implicit", - }, - }, + ["max"] = 13, + ["min"] = 9, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2349328837", + ["text"] = "While a Unique Enemy is in your Presence, Ignites you inflict deal Damage #% faster", + ["type"] = "implicit", + }, + }, ["2598_MarkEffect"] = { ["Gloves"] = { - ["max"] = 17, - ["min"] = 6, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_803185500", - ["text"] = "#% increased Effect of your Marks", - ["type"] = "implicit", - }, - }, + ["max"] = 17, + ["min"] = 6, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_803185500", + ["text"] = "#% increased Effect of your Marks", + ["type"] = "implicit", + }, + }, ["2598_MarkEffectPinnaclePresence"] = { ["Gloves"] = { - ["max"] = 29, - ["min"] = 22, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1138753695", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Effect of your Marks", - ["type"] = "implicit", - }, - }, + ["max"] = 29, + ["min"] = 22, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1138753695", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Effect of your Marks", + ["type"] = "implicit", + }, + }, ["2598_MarkEffectUniquePresence"] = { ["Gloves"] = { - ["max"] = 23, - ["min"] = 14, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_505694848", - ["text"] = "While a Unique Enemy is in your Presence, #% increased Effect of your Marks", - ["type"] = "implicit", - }, - }, + ["max"] = 23, + ["min"] = 14, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_505694848", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Effect of your Marks", + ["type"] = "implicit", + }, + }, ["2981_FireResistancePenetration"] = { ["Amulet"] = { - ["max"] = 6, - ["min"] = 4, - }, + ["max"] = 6, + ["min"] = 4, + }, ["Helmet"] = { - ["max"] = 6, - ["min"] = 4, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2653955271", - ["text"] = "Damage Penetrates #% Fire Resistance", - ["type"] = "implicit", - }, - }, + ["max"] = 6, + ["min"] = 4, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2653955271", + ["text"] = "Damage Penetrates #% Fire Resistance", + ["type"] = "implicit", + }, + }, ["2981_FireResistancePenetrationPinnaclePresence"] = { ["Amulet"] = { - ["max"] = 10, - ["min"] = 9, - }, + ["max"] = 10, + ["min"] = 9, + }, ["Helmet"] = { - ["max"] = 10, - ["min"] = 9, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1175129684", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Damage Penetrates #% Fire Resistance", - ["type"] = "implicit", - }, - }, + ["max"] = 10, + ["min"] = 9, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1175129684", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Damage Penetrates #% Fire Resistance", + ["type"] = "implicit", + }, + }, ["2981_FireResistancePenetrationUniquePresence"] = { ["Amulet"] = { - ["max"] = 8, - ["min"] = 6, - }, + ["max"] = 8, + ["min"] = 6, + }, ["Helmet"] = { - ["max"] = 8, - ["min"] = 6, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3425675761", - ["text"] = "While a Unique Enemy is in your Presence, Damage Penetrates #% Fire Resistance", - ["type"] = "implicit", - }, - }, + ["max"] = 8, + ["min"] = 6, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3425675761", + ["text"] = "While a Unique Enemy is in your Presence, Damage Penetrates #% Fire Resistance", + ["type"] = "implicit", + }, + }, ["2983_ColdResistancePenetration"] = { ["Amulet"] = { - ["max"] = 6, - ["min"] = 4, - }, + ["max"] = 6, + ["min"] = 4, + }, ["Helmet"] = { - ["max"] = 6, - ["min"] = 4, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3417711605", - ["text"] = "Damage Penetrates #% Cold Resistance", - ["type"] = "implicit", - }, - }, + ["max"] = 6, + ["min"] = 4, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3417711605", + ["text"] = "Damage Penetrates #% Cold Resistance", + ["type"] = "implicit", + }, + }, ["2983_ColdResistancePenetrationPinnaclePresence"] = { ["Amulet"] = { - ["max"] = 10, - ["min"] = 9, - }, + ["max"] = 10, + ["min"] = 9, + }, ["Helmet"] = { - ["max"] = 10, - ["min"] = 9, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_403285636", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Damage Penetrates #% Cold Resistance", - ["type"] = "implicit", - }, - }, + ["max"] = 10, + ["min"] = 9, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_403285636", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Damage Penetrates #% Cold Resistance", + ["type"] = "implicit", + }, + }, ["2983_ColdResistancePenetrationUniquePresence"] = { ["Amulet"] = { - ["max"] = 8, - ["min"] = 6, - }, + ["max"] = 8, + ["min"] = 6, + }, ["Helmet"] = { - ["max"] = 8, - ["min"] = 6, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1477049675", - ["text"] = "While a Unique Enemy is in your Presence, Damage Penetrates #% Cold Resistance", - ["type"] = "implicit", - }, - }, + ["max"] = 8, + ["min"] = 6, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1477049675", + ["text"] = "While a Unique Enemy is in your Presence, Damage Penetrates #% Cold Resistance", + ["type"] = "implicit", + }, + }, ["2984_LightningResistancePenetration"] = { ["Amulet"] = { - ["max"] = 6, - ["min"] = 4, - }, + ["max"] = 6, + ["min"] = 4, + }, ["Helmet"] = { - ["max"] = 6, - ["min"] = 4, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_818778753", - ["text"] = "Damage Penetrates #% Lightning Resistance", - ["type"] = "implicit", - }, - }, + ["max"] = 6, + ["min"] = 4, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_818778753", + ["text"] = "Damage Penetrates #% Lightning Resistance", + ["type"] = "implicit", + }, + }, ["2984_LightningResistancePenetrationPinnaclePresence"] = { ["Amulet"] = { - ["max"] = 10, - ["min"] = 9, - }, + ["max"] = 10, + ["min"] = 9, + }, ["Helmet"] = { - ["max"] = 10, - ["min"] = 9, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_550672859", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Damage Penetrates #% Lightning Resistance", - ["type"] = "implicit", - }, - }, + ["max"] = 10, + ["min"] = 9, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_550672859", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Damage Penetrates #% Lightning Resistance", + ["type"] = "implicit", + }, + }, ["2984_LightningResistancePenetrationUniquePresence"] = { ["Amulet"] = { - ["max"] = 8, - ["min"] = 6, - }, + ["max"] = 8, + ["min"] = 6, + }, ["Helmet"] = { - ["max"] = 8, - ["min"] = 6, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1598254831", - ["text"] = "While a Unique Enemy is in your Presence, Damage Penetrates #% Lightning Resistance", - ["type"] = "implicit", - }, - }, + ["max"] = 8, + ["min"] = 6, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1598254831", + ["text"] = "While a Unique Enemy is in your Presence, Damage Penetrates #% Lightning Resistance", + ["type"] = "implicit", + }, + }, ["3173_PoisonOnHit"] = { ["Gloves"] = { - ["max"] = 30, - ["min"] = 5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_795138349", - ["text"] = "#% chance to Poison on Hit", - ["type"] = "implicit", - }, - }, + ["max"] = 30, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_795138349", + ["text"] = "#% chance to Poison on Hit", + ["type"] = "implicit", + }, + }, ["3173_PoisonOnHitPinnaclePresence"] = { ["Gloves"] = { - ["max"] = 50, - ["min"] = 35, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_532792006", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% chance to Poison on Hit", - ["type"] = "implicit", - }, - }, + ["max"] = 50, + ["min"] = 35, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_532792006", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% chance to Poison on Hit", + ["type"] = "implicit", + }, + }, ["3173_PoisonOnHitUniquePresence"] = { ["Gloves"] = { - ["max"] = 40, - ["min"] = 20, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2433754249", - ["text"] = "While a Unique Enemy is in your Presence, #% chance to Poison on Hit", - ["type"] = "implicit", - }, - }, + ["max"] = 40, + ["min"] = 20, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2433754249", + ["text"] = "While a Unique Enemy is in your Presence, #% chance to Poison on Hit", + ["type"] = "implicit", + }, + }, ["3272_IncreasedStunThreshold"] = { ["Boots"] = { - ["max"] = 32, - ["min"] = 15, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_680068163", - ["text"] = "#% increased Stun Threshold", - ["type"] = "implicit", - }, - }, + ["max"] = 32, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_680068163", + ["text"] = "#% increased Stun Threshold", + ["type"] = "implicit", + }, + }, ["3272_IncreasedStunThresholdPinnaclePresence"] = { ["Boots"] = { - ["max"] = 50, - ["min"] = 39, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1513279759", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Stun Threshold", - ["type"] = "implicit", - }, - }, + ["max"] = 50, + ["min"] = 39, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1513279759", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Stun Threshold", + ["type"] = "implicit", + }, + }, ["3272_IncreasedStunThresholdUniquePresence"] = { ["Boots"] = { - ["max"] = 41, - ["min"] = 27, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_266654028", - ["text"] = "While a Unique Enemy is in your Presence, #% increased Stun Threshold", - ["type"] = "implicit", - }, - }, + ["max"] = 41, + ["min"] = 27, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_266654028", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Stun Threshold", + ["type"] = "implicit", + }, + }, ["3277_WarcrySpeed"] = { ["Boots"] = { - ["max"] = 26, - ["min"] = 15, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1316278494", - ["text"] = "#% increased Warcry Speed", - ["type"] = "implicit", - }, - }, + ["max"] = 26, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1316278494", + ["text"] = "#% increased Warcry Speed", + ["type"] = "implicit", + }, + }, ["3277_WarcrySpeedPinnaclePresence"] = { ["Boots"] = { - ["max"] = 34, - ["min"] = 27, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2117066923", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Warcry Speed", - ["type"] = "implicit", - }, - }, + ["max"] = 34, + ["min"] = 27, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2117066923", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Warcry Speed", + ["type"] = "implicit", + }, + }, ["3277_WarcrySpeedUniquePresence"] = { ["Boots"] = { - ["max"] = 30, - ["min"] = 21, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2255001736", - ["text"] = "While a Unique Enemy is in your Presence, #% increased Warcry Speed", - ["type"] = "implicit", - }, - }, + ["max"] = 30, + ["min"] = 21, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2255001736", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Warcry Speed", + ["type"] = "implicit", + }, + }, ["3288_ArcaneSurgeEffect"] = { ["Helmet"] = { - ["max"] = 17, - ["min"] = 6, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3015437071", - ["text"] = "#% increased Effect of Arcane Surge on you", - ["type"] = "implicit", - }, - }, + ["max"] = 17, + ["min"] = 6, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3015437071", + ["text"] = "#% increased Effect of Arcane Surge on you", + ["type"] = "implicit", + }, + }, ["3288_ArcaneSurgeEffectPinnaclePresence"] = { ["Helmet"] = { - ["max"] = 29, - ["min"] = 22, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_664899091", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Effect of Arcane Surge on you", - ["type"] = "implicit", - }, - }, + ["max"] = 29, + ["min"] = 22, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_664899091", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Effect of Arcane Surge on you", + ["type"] = "implicit", + }, + }, ["3288_ArcaneSurgeEffectUniquePresence"] = { ["Helmet"] = { - ["max"] = 23, - ["min"] = 14, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3163099942", - ["text"] = "While a Unique Enemy is in your Presence, #% increased Effect of Arcane Surge on you", - ["type"] = "implicit", - }, - }, + ["max"] = 23, + ["min"] = 14, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3163099942", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Effect of Arcane Surge on you", + ["type"] = "implicit", + }, + }, ["3356_AngerAuraEffect"] = { ["Chest"] = { - ["max"] = 36, - ["min"] = 19, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1592278124", - ["text"] = "Anger has #% increased Aura Effect", - ["type"] = "implicit", - }, - }, + ["max"] = 36, + ["min"] = 19, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1592278124", + ["text"] = "Anger has #% increased Aura Effect", + ["type"] = "implicit", + }, + }, ["3356_AngerAuraEffectPinnaclePresence"] = { ["Chest"] = { - ["max"] = 60, - ["min"] = 49, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1167349834", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Anger has #% increased Aura Effect", - ["type"] = "implicit", - }, - }, + ["max"] = 60, + ["min"] = 49, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1167349834", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Anger has #% increased Aura Effect", + ["type"] = "implicit", + }, + }, ["3356_AngerAuraEffectUniquePresence"] = { ["Chest"] = { - ["max"] = 48, - ["min"] = 34, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_778803098", - ["text"] = "While a Unique Enemy is in your Presence, Anger has #% increased Aura Effect", - ["type"] = "implicit", - }, - }, + ["max"] = 48, + ["min"] = 34, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_778803098", + ["text"] = "While a Unique Enemy is in your Presence, Anger has #% increased Aura Effect", + ["type"] = "implicit", + }, + }, ["3357_PurityOfElementsEffect"] = { ["Chest"] = { - ["max"] = 36, - ["min"] = 19, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3541970927", - ["text"] = "Purity of Elements has #% increased Aura Effect", - ["type"] = "implicit", - }, - }, + ["max"] = 36, + ["min"] = 19, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3541970927", + ["text"] = "Purity of Elements has #% increased Aura Effect", + ["type"] = "implicit", + }, + }, ["3357_PurityOfElementsEffectPinnaclePresence"] = { ["Chest"] = { - ["max"] = 60, - ["min"] = 49, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_221690080", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Purity of Elements has #% increased Aura Effect", - ["type"] = "implicit", - }, - }, + ["max"] = 60, + ["min"] = 49, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_221690080", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Purity of Elements has #% increased Aura Effect", + ["type"] = "implicit", + }, + }, ["3357_PurityOfElementsEffectUniquePresence"] = { ["Chest"] = { - ["max"] = 48, - ["min"] = 34, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_348693938", - ["text"] = "While a Unique Enemy is in your Presence, Purity of Elements has #% increased Aura Effect", - ["type"] = "implicit", - }, - }, + ["max"] = 48, + ["min"] = 34, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_348693938", + ["text"] = "While a Unique Enemy is in your Presence, Purity of Elements has #% increased Aura Effect", + ["type"] = "implicit", + }, + }, ["3358_PurityOfFireEffect"] = { ["Chest"] = { - ["max"] = 36, - ["min"] = 19, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2539726203", - ["text"] = "Purity of Fire has #% increased Aura Effect", - ["type"] = "implicit", - }, - }, + ["max"] = 36, + ["min"] = 19, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2539726203", + ["text"] = "Purity of Fire has #% increased Aura Effect", + ["type"] = "implicit", + }, + }, ["3358_PurityOfFireEffectPinnaclePresence"] = { ["Chest"] = { - ["max"] = 60, - ["min"] = 49, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2034940983", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Purity of Fire has #% increased Aura Effect", - ["type"] = "implicit", - }, - }, + ["max"] = 60, + ["min"] = 49, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2034940983", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Purity of Fire has #% increased Aura Effect", + ["type"] = "implicit", + }, + }, ["3358_PurityOfFireEffectUniquePresence"] = { ["Chest"] = { - ["max"] = 48, - ["min"] = 34, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1926772156", - ["text"] = "While a Unique Enemy is in your Presence, Purity of Fire has #% increased Aura Effect", - ["type"] = "implicit", - }, - }, + ["max"] = 48, + ["min"] = 34, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1926772156", + ["text"] = "While a Unique Enemy is in your Presence, Purity of Fire has #% increased Aura Effect", + ["type"] = "implicit", + }, + }, ["3359_PurityOfIceEffect"] = { ["Chest"] = { - ["max"] = 36, - ["min"] = 19, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1944316218", - ["text"] = "Purity of Ice has #% increased Aura Effect", - ["type"] = "implicit", - }, - }, + ["max"] = 36, + ["min"] = 19, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1944316218", + ["text"] = "Purity of Ice has #% increased Aura Effect", + ["type"] = "implicit", + }, + }, ["3359_PurityOfIceEffectPinnaclePresence"] = { ["Chest"] = { - ["max"] = 60, - ["min"] = 49, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3786274521", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Purity of Ice has #% increased Aura Effect", - ["type"] = "implicit", - }, - }, + ["max"] = 60, + ["min"] = 49, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3786274521", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Purity of Ice has #% increased Aura Effect", + ["type"] = "implicit", + }, + }, ["3359_PurityOfIceEffectUniquePresence"] = { ["Chest"] = { - ["max"] = 48, - ["min"] = 34, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3499126604", - ["text"] = "While a Unique Enemy is in your Presence, Purity of Ice has #% increased Aura Effect", - ["type"] = "implicit", - }, - }, + ["max"] = 48, + ["min"] = 34, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3499126604", + ["text"] = "While a Unique Enemy is in your Presence, Purity of Ice has #% increased Aura Effect", + ["type"] = "implicit", + }, + }, ["3360_PurityOfLightningEffect"] = { ["Chest"] = { - ["max"] = 36, - ["min"] = 19, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_45589825", - ["text"] = "Purity of Lightning has #% increased Aura Effect", - ["type"] = "implicit", - }, - }, + ["max"] = 36, + ["min"] = 19, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_45589825", + ["text"] = "Purity of Lightning has #% increased Aura Effect", + ["type"] = "implicit", + }, + }, ["3360_PurityOfLightningEffectPinnaclePresence"] = { ["Chest"] = { - ["max"] = 60, - ["min"] = 49, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1445513967", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Purity of Lightning has #% increased Aura Effect", - ["type"] = "implicit", - }, - }, + ["max"] = 60, + ["min"] = 49, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1445513967", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Purity of Lightning has #% increased Aura Effect", + ["type"] = "implicit", + }, + }, ["3360_PurityOfLightningEffectUniquePresence"] = { ["Chest"] = { - ["max"] = 48, - ["min"] = 34, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_908556575", - ["text"] = "While a Unique Enemy is in your Presence, Purity of Lightning has #% increased Aura Effect", - ["type"] = "implicit", - }, - }, + ["max"] = 48, + ["min"] = 34, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_908556575", + ["text"] = "While a Unique Enemy is in your Presence, Purity of Lightning has #% increased Aura Effect", + ["type"] = "implicit", + }, + }, ["3361_WrathAuraEffect"] = { ["Chest"] = { - ["max"] = 36, - ["min"] = 19, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2181791238", - ["text"] = "Wrath has #% increased Aura Effect", - ["type"] = "implicit", - }, - }, + ["max"] = 36, + ["min"] = 19, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2181791238", + ["text"] = "Wrath has #% increased Aura Effect", + ["type"] = "implicit", + }, + }, ["3361_WrathAuraEffectPinnaclePresence"] = { ["Chest"] = { - ["max"] = 60, - ["min"] = 49, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1850144024", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Wrath has #% increased Aura Effect", - ["type"] = "implicit", - }, - }, + ["max"] = 60, + ["min"] = 49, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1850144024", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Wrath has #% increased Aura Effect", + ["type"] = "implicit", + }, + }, ["3361_WrathAuraEffectUniquePresence"] = { ["Chest"] = { - ["max"] = 48, - ["min"] = 34, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_399528178", - ["text"] = "While a Unique Enemy is in your Presence, Wrath has #% increased Aura Effect", - ["type"] = "implicit", - }, - }, + ["max"] = 48, + ["min"] = 34, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_399528178", + ["text"] = "While a Unique Enemy is in your Presence, Wrath has #% increased Aura Effect", + ["type"] = "implicit", + }, + }, ["3363_GraceAuraEffect"] = { ["Chest"] = { - ["max"] = 36, - ["min"] = 19, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_397427740", - ["text"] = "Grace has #% increased Aura Effect", - ["type"] = "implicit", - }, - }, + ["max"] = 36, + ["min"] = 19, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_397427740", + ["text"] = "Grace has #% increased Aura Effect", + ["type"] = "implicit", + }, + }, ["3363_GraceAuraEffectPinnaclePresence"] = { ["Chest"] = { - ["max"] = 60, - ["min"] = 49, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_81526858", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Grace has #% increased Aura Effect", - ["type"] = "implicit", - }, - }, + ["max"] = 60, + ["min"] = 49, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_81526858", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Grace has #% increased Aura Effect", + ["type"] = "implicit", + }, + }, ["3363_GraceAuraEffectUniquePresence"] = { ["Chest"] = { - ["max"] = 48, - ["min"] = 34, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3303144948", - ["text"] = "While a Unique Enemy is in your Presence, Grace has #% increased Aura Effect", - ["type"] = "implicit", - }, - }, + ["max"] = 48, + ["min"] = 34, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3303144948", + ["text"] = "While a Unique Enemy is in your Presence, Grace has #% increased Aura Effect", + ["type"] = "implicit", + }, + }, ["3364_HasteAuraEffect"] = { ["Chest"] = { - ["max"] = 36, - ["min"] = 19, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1240056437", - ["text"] = "Haste has #% increased Aura Effect", - ["type"] = "implicit", - }, - }, + ["max"] = 36, + ["min"] = 19, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1240056437", + ["text"] = "Haste has #% increased Aura Effect", + ["type"] = "implicit", + }, + }, ["3364_HasteAuraEffectPinnaclePresence"] = { ["Chest"] = { - ["max"] = 60, - ["min"] = 49, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1065477979", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Haste has #% increased Aura Effect", - ["type"] = "implicit", - }, - }, + ["max"] = 60, + ["min"] = 49, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1065477979", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Haste has #% increased Aura Effect", + ["type"] = "implicit", + }, + }, ["3364_HasteAuraEffectUniquePresence"] = { ["Chest"] = { - ["max"] = 48, - ["min"] = 34, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1060820709", - ["text"] = "While a Unique Enemy is in your Presence, Haste has #% increased Aura Effect", - ["type"] = "implicit", - }, - }, + ["max"] = 48, + ["min"] = 34, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1060820709", + ["text"] = "While a Unique Enemy is in your Presence, Haste has #% increased Aura Effect", + ["type"] = "implicit", + }, + }, ["3366_HatredAuraEffect"] = { ["Chest"] = { - ["max"] = 36, - ["min"] = 19, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3742945352", - ["text"] = "Hatred has #% increased Aura Effect", - ["type"] = "implicit", - }, - }, + ["max"] = 36, + ["min"] = 19, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3742945352", + ["text"] = "Hatred has #% increased Aura Effect", + ["type"] = "implicit", + }, + }, ["3366_HatredAuraEffectPinnaclePresence"] = { ["Chest"] = { - ["max"] = 60, - ["min"] = 49, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1253537227", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Hatred has #% increased Aura Effect", - ["type"] = "implicit", - }, - }, + ["max"] = 60, + ["min"] = 49, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1253537227", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Hatred has #% increased Aura Effect", + ["type"] = "implicit", + }, + }, ["3366_HatredAuraEffectUniquePresence"] = { ["Chest"] = { - ["max"] = 48, - ["min"] = 34, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_4218330172", - ["text"] = "While a Unique Enemy is in your Presence, Hatred has #% increased Aura Effect", - ["type"] = "implicit", - }, - }, + ["max"] = 48, + ["min"] = 34, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_4218330172", + ["text"] = "While a Unique Enemy is in your Presence, Hatred has #% increased Aura Effect", + ["type"] = "implicit", + }, + }, ["3367_DeterminationAuraEffect"] = { ["Chest"] = { - ["max"] = 36, - ["min"] = 19, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3653400807", - ["text"] = "Determination has #% increased Aura Effect", - ["type"] = "implicit", - }, - }, + ["max"] = 36, + ["min"] = 19, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3653400807", + ["text"] = "Determination has #% increased Aura Effect", + ["type"] = "implicit", + }, + }, ["3367_DeterminationAuraEffectPinnaclePresence"] = { ["Chest"] = { - ["max"] = 60, - ["min"] = 49, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1324460486", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Determination has #% increased Aura Effect", - ["type"] = "implicit", - }, - }, + ["max"] = 60, + ["min"] = 49, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1324460486", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Determination has #% increased Aura Effect", + ["type"] = "implicit", + }, + }, ["3367_DeterminationAuraEffectUniquePresence"] = { ["Chest"] = { - ["max"] = 48, - ["min"] = 34, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2366356855", - ["text"] = "While a Unique Enemy is in your Presence, Determination has #% increased Aura Effect", - ["type"] = "implicit", - }, - }, + ["max"] = 48, + ["min"] = 34, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2366356855", + ["text"] = "While a Unique Enemy is in your Presence, Determination has #% increased Aura Effect", + ["type"] = "implicit", + }, + }, ["3368_DisciplineAuraEffect"] = { ["Chest"] = { - ["max"] = 36, - ["min"] = 19, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_788317702", - ["text"] = "Discipline has #% increased Aura Effect", - ["type"] = "implicit", - }, - }, + ["max"] = 36, + ["min"] = 19, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_788317702", + ["text"] = "Discipline has #% increased Aura Effect", + ["type"] = "implicit", + }, + }, ["3368_DisciplineAuraEffectPinnaclePresence"] = { ["Chest"] = { - ["max"] = 60, - ["min"] = 49, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2752131673", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Discipline has #% increased Aura Effect", - ["type"] = "implicit", - }, - }, + ["max"] = 60, + ["min"] = 49, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2752131673", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Discipline has #% increased Aura Effect", + ["type"] = "implicit", + }, + }, ["3368_DisciplineAuraEffectUniquePresence"] = { ["Chest"] = { - ["max"] = 48, - ["min"] = 34, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_334238649", - ["text"] = "While a Unique Enemy is in your Presence, Discipline has #% increased Aura Effect", - ["type"] = "implicit", - }, - }, + ["max"] = 48, + ["min"] = 34, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_334238649", + ["text"] = "While a Unique Enemy is in your Presence, Discipline has #% increased Aura Effect", + ["type"] = "implicit", + }, + }, ["3887_EnduringCryCooldownRecovery"] = { ["Boots"] = { - ["max"] = 32, - ["min"] = 15, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3617955571", - ["text"] = "Enduring Cry has #% increased Cooldown Recovery Rate", - ["type"] = "implicit", - }, - }, + ["max"] = 32, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3617955571", + ["text"] = "Enduring Cry has #% increased Cooldown Recovery Rate", + ["type"] = "implicit", + }, + }, ["3887_EnduringCryCooldownRecoveryPinnaclePresence"] = { ["Boots"] = { - ["max"] = 50, - ["min"] = 39, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_906749304", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Enduring Cry has #% increased Cooldown Recovery Rate", - ["type"] = "implicit", - }, - }, + ["max"] = 50, + ["min"] = 39, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_906749304", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Enduring Cry has #% increased Cooldown Recovery Rate", + ["type"] = "implicit", + }, + }, ["3887_EnduringCryCooldownRecoveryUniquePresence"] = { ["Boots"] = { - ["max"] = 41, - ["min"] = 27, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2792560229", - ["text"] = "While a Unique Enemy is in your Presence, Enduring Cry has #% increased Cooldown Recovery Rate", - ["type"] = "implicit", - }, - }, + ["max"] = 41, + ["min"] = 27, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2792560229", + ["text"] = "While a Unique Enemy is in your Presence, Enduring Cry has #% increased Cooldown Recovery Rate", + ["type"] = "implicit", + }, + }, ["4114_RallyingCryWarcryEffect"] = { ["Boots"] = { - ["max"] = 17, - ["min"] = 6, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_4147277532", - ["text"] = "#% increased Rallying Cry Buff Effect", - ["type"] = "implicit", - }, - }, + ["max"] = 17, + ["min"] = 6, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_4147277532", + ["text"] = "#% increased Rallying Cry Buff Effect", + ["type"] = "implicit", + }, + }, ["4114_RallyingCryWarcryEffectPinnaclePresence"] = { ["Boots"] = { - ["max"] = 29, - ["min"] = 22, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2063107864", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Rallying Cry Buff Effect", - ["type"] = "implicit", - }, - }, + ["max"] = 29, + ["min"] = 22, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2063107864", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Rallying Cry Buff Effect", + ["type"] = "implicit", + }, + }, ["4114_RallyingCryWarcryEffectUniquePresence"] = { ["Boots"] = { - ["max"] = 23, - ["min"] = 14, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1381761351", - ["text"] = "While a Unique Enemy is in your Presence, #% increased Rallying Cry Buff Effect", - ["type"] = "implicit", - }, - }, + ["max"] = 23, + ["min"] = 14, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1381761351", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Rallying Cry Buff Effect", + ["type"] = "implicit", + }, + }, ["4216_ChanceToAvoidBleeding"] = { ["Boots"] = { - ["max"] = 50, - ["min"] = 33, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1618589784", - ["text"] = "#% chance to Avoid Bleeding", - ["type"] = "implicit", - }, - }, + ["max"] = 50, + ["min"] = 33, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1618589784", + ["text"] = "#% chance to Avoid Bleeding", + ["type"] = "implicit", + }, + }, ["4216_ChanceToAvoidBleedingPinnaclePresence"] = { ["Boots"] = { - ["max"] = 70, - ["min"] = 57, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2610114836", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% chance to Avoid Bleeding", - ["type"] = "implicit", - }, - }, + ["max"] = 70, + ["min"] = 57, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2610114836", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% chance to Avoid Bleeding", + ["type"] = "implicit", + }, + }, ["4216_ChanceToAvoidBleedingUniquePresence"] = { ["Boots"] = { - ["max"] = 61, - ["min"] = 45, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2651293339", - ["text"] = "While a Unique Enemy is in your Presence, #% chance to Avoid Bleeding", - ["type"] = "implicit", - }, - }, + ["max"] = 61, + ["min"] = 45, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2651293339", + ["text"] = "While a Unique Enemy is in your Presence, #% chance to Avoid Bleeding", + ["type"] = "implicit", + }, + }, ["4381_TravelSkillCooldownRecovery"] = { ["Boots"] = { - ["max"] = 32, - ["min"] = 15, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2308278768", - ["text"] = "#% increased Cooldown Recovery Rate of Travel Skills", - ["type"] = "implicit", - }, - }, + ["max"] = 32, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2308278768", + ["text"] = "#% increased Cooldown Recovery Rate of Travel Skills", + ["type"] = "implicit", + }, + }, ["4381_TravelSkillCooldownRecoveryPinnaclePresence"] = { ["Boots"] = { - ["max"] = 50, - ["min"] = 39, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_850668052", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Cooldown Recovery Rate of Travel Skills", - ["type"] = "implicit", - }, - }, + ["max"] = 50, + ["min"] = 39, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_850668052", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Cooldown Recovery Rate of Travel Skills", + ["type"] = "implicit", + }, + }, ["4381_TravelSkillCooldownRecoveryUniquePresence"] = { ["Boots"] = { - ["max"] = 41, - ["min"] = 27, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2986495340", - ["text"] = "While a Unique Enemy is in your Presence, #% increased Cooldown Recovery Rate of Travel Skills", - ["type"] = "implicit", - }, - }, + ["max"] = 41, + ["min"] = 27, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2986495340", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Cooldown Recovery Rate of Travel Skills", + ["type"] = "implicit", + }, + }, ["4517_FlatAccuracyPerFrenzyChargePinnaclePresence"] = { ["Gloves"] = { - ["max"] = 72, - ["min"] = 61, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_490830332", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, +# to Accuracy Rating per Frenzy Charge", - ["type"] = "implicit", - }, - }, + ["max"] = 72, + ["min"] = 61, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_490830332", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, +# to Accuracy Rating per Frenzy Charge", + ["type"] = "implicit", + }, + }, ["4517_FlatAccuracyPerFrenzyChargeUniquePresence"] = { ["Gloves"] = { - ["max"] = 66, - ["min"] = 52, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_475859964", - ["text"] = "While a Unique Enemy is in your Presence, +# to Accuracy Rating per Frenzy Charge", - ["type"] = "implicit", - }, - }, + ["max"] = 66, + ["min"] = 52, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_475859964", + ["text"] = "While a Unique Enemy is in your Presence, +# to Accuracy Rating per Frenzy Charge", + ["type"] = "implicit", + }, + }, ["4517_IncreasedAccuracyPerFrenzy"] = { ["Gloves"] = { - ["max"] = 60, - ["min"] = 43, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3126680545", - ["text"] = "+# to Accuracy Rating per Frenzy Charge", - ["type"] = "implicit", - }, - }, + ["max"] = 60, + ["min"] = 43, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3126680545", + ["text"] = "+# to Accuracy Rating per Frenzy Charge", + ["type"] = "implicit", + }, + }, ["4608_ChanceToAggravateBleed"] = { ["Gloves"] = { - ["max"] = 30, - ["min"] = 5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2705185939", - ["text"] = "#% chance to Aggravate Bleeding on targets you Hit with Attacks", - ["type"] = "implicit", - }, - }, + ["max"] = 30, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2705185939", + ["text"] = "#% chance to Aggravate Bleeding on targets you Hit with Attacks", + ["type"] = "implicit", + }, + }, ["4608_ChanceToAggravateBleedPinnaclePresence"] = { ["Gloves"] = { - ["max"] = 50, - ["min"] = 35, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_466064970", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% chance to Aggravate Bleeding on targets you Hit with Attacks", - ["type"] = "implicit", - }, - }, + ["max"] = 50, + ["min"] = 35, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_466064970", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% chance to Aggravate Bleeding on targets you Hit with Attacks", + ["type"] = "implicit", + }, + }, ["4608_ChanceToAggravateBleedUniquePresence"] = { ["Gloves"] = { - ["max"] = 40, - ["min"] = 20, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2543125349", - ["text"] = "While a Unique Enemy is in your Presence, #% chance to Aggravate Bleeding on targets you Hit with Attacks", - ["type"] = "implicit", - }, - }, + ["max"] = 40, + ["min"] = 20, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2543125349", + ["text"] = "While a Unique Enemy is in your Presence, #% chance to Aggravate Bleeding on targets you Hit with Attacks", + ["type"] = "implicit", + }, + }, ["4670_AncestralCryExertedDamage"] = { ["Boots"] = { - ["max"] = 35, - ["min"] = 20, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2146663823", - ["text"] = "Attacks Exerted by Ancestral Cry deal #% increased Damage", - ["type"] = "implicit", - }, - }, + ["max"] = 35, + ["min"] = 20, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2146663823", + ["text"] = "Attacks Exerted by Ancestral Cry deal #% increased Damage", + ["type"] = "implicit", + }, + }, ["4670_AncestralCryExertedDamagePinnaclePresence"] = { ["Boots"] = { - ["max"] = 47, - ["min"] = 38, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1799586622", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Attacks Exerted by Ancestral Cry deal #% increased Damage", - ["type"] = "implicit", - }, - }, + ["max"] = 47, + ["min"] = 38, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1799586622", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Attacks Exerted by Ancestral Cry deal #% increased Damage", + ["type"] = "implicit", + }, + }, ["4670_AncestralCryExertedDamageUniquePresence"] = { ["Boots"] = { - ["max"] = 41, - ["min"] = 29, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3598887112", - ["text"] = "While a Unique Enemy is in your Presence, Attacks Exerted by Ancestral Cry deal #% increased Damage", - ["type"] = "implicit", - }, - }, + ["max"] = 41, + ["min"] = 29, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3598887112", + ["text"] = "While a Unique Enemy is in your Presence, Attacks Exerted by Ancestral Cry deal #% increased Damage", + ["type"] = "implicit", + }, + }, ["4762_ArmourFromHelmetGloves"] = { ["Boots"] = { - ["max"] = 50, - ["min"] = 33, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_791154540", - ["text"] = "#% increased Armour from Equipped Helmet and Gloves", - ["type"] = "implicit", - }, - }, + ["max"] = 50, + ["min"] = 33, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_791154540", + ["text"] = "#% increased Armour from Equipped Helmet and Gloves", + ["type"] = "implicit", + }, + }, ["4762_ArmourFromHelmetGlovesPinnaclePresence"] = { ["Boots"] = { - ["max"] = 70, - ["min"] = 57, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3330140563", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Armour from Equipped Helmet and Gloves", - ["type"] = "implicit", - }, - }, + ["max"] = 70, + ["min"] = 57, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3330140563", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Armour from Equipped Helmet and Gloves", + ["type"] = "implicit", + }, + }, ["4762_ArmourFromHelmetGlovesUniquePresence"] = { ["Boots"] = { - ["max"] = 61, - ["min"] = 45, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1586470077", - ["text"] = "While a Unique Enemy is in your Presence, #% increased Armour from Equipped Helmet and Gloves", - ["type"] = "implicit", - }, - }, + ["max"] = 61, + ["min"] = 45, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1586470077", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Armour from Equipped Helmet and Gloves", + ["type"] = "implicit", + }, + }, ["4918_AttackImpaleChance"] = { ["Gloves"] = { - ["max"] = 30, - ["min"] = 5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3739863694", - ["text"] = "#% chance to Impale Enemies on Hit with Attacks", - ["type"] = "implicit", - }, - }, + ["max"] = 30, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3739863694", + ["text"] = "#% chance to Impale Enemies on Hit with Attacks", + ["type"] = "implicit", + }, + }, ["4918_AttackImpaleChancePinnaclePresence"] = { ["Gloves"] = { - ["max"] = 50, - ["min"] = 35, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2838459808", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% chance to Impale Enemies on Hit with Attacks", - ["type"] = "implicit", - }, - }, + ["max"] = 50, + ["min"] = 35, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2838459808", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% chance to Impale Enemies on Hit with Attacks", + ["type"] = "implicit", + }, + }, ["4918_AttackImpaleChanceUniquePresence"] = { ["Gloves"] = { - ["max"] = 40, - ["min"] = 20, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2391907787", - ["text"] = "While a Unique Enemy is in your Presence, #% chance to Impale Enemies on Hit with Attacks", - ["type"] = "implicit", - }, - }, + ["max"] = 40, + ["min"] = 20, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2391907787", + ["text"] = "While a Unique Enemy is in your Presence, #% chance to Impale Enemies on Hit with Attacks", + ["type"] = "implicit", + }, + }, ["5005_GlobalCooldownRecovery"] = { ["Boots"] = { - ["max"] = 10, - ["min"] = 5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1004011302", - ["text"] = "#% increased Cooldown Recovery Rate", - ["type"] = "implicit", - }, - }, + ["max"] = 10, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1004011302", + ["text"] = "#% increased Cooldown Recovery Rate", + ["type"] = "implicit", + }, + }, ["5005_GlobalCooldownRecoveryPinnaclePresence"] = { ["Boots"] = { - ["max"] = 16, - ["min"] = 13, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_668321613", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Cooldown Recovery Rate", - ["type"] = "implicit", - }, - }, + ["max"] = 16, + ["min"] = 13, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_668321613", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Cooldown Recovery Rate", + ["type"] = "implicit", + }, + }, ["5005_GlobalCooldownRecoveryUniquePresence"] = { ["Boots"] = { - ["max"] = 13, - ["min"] = 9, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2491353340", - ["text"] = "While a Unique Enemy is in your Presence, #% increased Cooldown Recovery Rate", - ["type"] = "implicit", - }, - }, + ["max"] = 13, + ["min"] = 9, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2491353340", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Cooldown Recovery Rate", + ["type"] = "implicit", + }, + }, ["5059_BattlemagesCryWarcryEffect"] = { ["Boots"] = { - ["max"] = 17, - ["min"] = 6, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2426838124", - ["text"] = "#% increased Battlemage's Cry Buff Effect", - ["type"] = "implicit", - }, - }, + ["max"] = 17, + ["min"] = 6, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2426838124", + ["text"] = "#% increased Battlemage's Cry Buff Effect", + ["type"] = "implicit", + }, + }, ["5059_BattlemagesCryWarcryEffectPinnaclePresence"] = { ["Boots"] = { - ["max"] = 29, - ["min"] = 22, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1455812442", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Battlemage's Cry Buff Effect", - ["type"] = "implicit", - }, - }, + ["max"] = 29, + ["min"] = 22, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1455812442", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Battlemage's Cry Buff Effect", + ["type"] = "implicit", + }, + }, ["5059_BattlemagesCryWarcryEffectUniquePresence"] = { ["Boots"] = { - ["max"] = 23, - ["min"] = 14, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3173180145", - ["text"] = "While a Unique Enemy is in your Presence, #% increased Battlemage's Cry Buff Effect", - ["type"] = "implicit", - }, - }, + ["max"] = 23, + ["min"] = 14, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3173180145", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Battlemage's Cry Buff Effect", + ["type"] = "implicit", + }, + }, ["5219_BlindEffect"] = { ["Gloves"] = { - ["max"] = 17, - ["min"] = 6, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1585769763", - ["text"] = "#% increased Blind Effect", - ["type"] = "implicit", - }, - }, + ["max"] = 17, + ["min"] = 6, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1585769763", + ["text"] = "#% increased Blind Effect", + ["type"] = "implicit", + }, + }, ["5219_BlindEffectPinnaclePresence"] = { ["Gloves"] = { - ["max"] = 29, - ["min"] = 22, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_4122616021", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Blind Effect", - ["type"] = "implicit", - }, - }, + ["max"] = 29, + ["min"] = 22, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_4122616021", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Blind Effect", + ["type"] = "implicit", + }, + }, ["5219_BlindEffectUniquePresence"] = { ["Gloves"] = { - ["max"] = 23, - ["min"] = 14, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_886650454", - ["text"] = "While a Unique Enemy is in your Presence, #% increased Blind Effect", - ["type"] = "implicit", - }, - }, + ["max"] = 23, + ["min"] = 14, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_886650454", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Blind Effect", + ["type"] = "implicit", + }, + }, ["5244_BodyDamageTakenPerDexterity"] = { ["Chest"] = { - ["max"] = 230, - ["min"] = 180, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_824762042", - ["text"] = "1% less Damage Taken per # Dexterity", - ["type"] = "implicit", - }, - }, + ["max"] = 230, + ["min"] = 180, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_824762042", + ["text"] = "1% less Damage Taken per # Dexterity", + ["type"] = "implicit", + }, + }, ["5244_BodyDamageTakenPerDexterityPinnaclePresence"] = { ["Chest"] = { - ["max"] = 170, - ["min"] = 140, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2216092051", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, 1% less Damage Taken per # Dexterity", - ["type"] = "implicit", - }, - }, + ["max"] = 170, + ["min"] = 140, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2216092051", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, 1% less Damage Taken per # Dexterity", + ["type"] = "implicit", + }, + }, ["5244_BodyDamageTakenPerDexterityUniquePresence"] = { ["Chest"] = { - ["max"] = 200, - ["min"] = 160, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1682072497", - ["text"] = "While a Unique Enemy is in your Presence, 1% less Damage Taken per # Dexterity", - ["type"] = "implicit", - }, - }, + ["max"] = 200, + ["min"] = 160, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1682072497", + ["text"] = "While a Unique Enemy is in your Presence, 1% less Damage Taken per # Dexterity", + ["type"] = "implicit", + }, + }, ["5245_BodyDamageTakenPerIntelligence"] = { ["Chest"] = { - ["max"] = 230, - ["min"] = 180, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2874488491", - ["text"] = "1% less Damage Taken per # Intelligence", - ["type"] = "implicit", - }, - }, + ["max"] = 230, + ["min"] = 180, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2874488491", + ["text"] = "1% less Damage Taken per # Intelligence", + ["type"] = "implicit", + }, + }, ["5245_BodyDamageTakenPerIntelligencePinnaclePresence"] = { ["Chest"] = { - ["max"] = 170, - ["min"] = 140, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3801851872", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, 1% less Damage Taken per # Intelligence", - ["type"] = "implicit", - }, - }, + ["max"] = 170, + ["min"] = 140, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3801851872", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, 1% less Damage Taken per # Intelligence", + ["type"] = "implicit", + }, + }, ["5245_BodyDamageTakenPerIntelligenceUniquePresence"] = { ["Chest"] = { - ["max"] = 200, - ["min"] = 160, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_553122931", - ["text"] = "While a Unique Enemy is in your Presence, 1% less Damage Taken per # Intelligence", - ["type"] = "implicit", - }, - }, + ["max"] = 200, + ["min"] = 160, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_553122931", + ["text"] = "While a Unique Enemy is in your Presence, 1% less Damage Taken per # Intelligence", + ["type"] = "implicit", + }, + }, ["5246_BodyDamageTakenPerStrength"] = { ["Chest"] = { - ["max"] = 230, - ["min"] = 180, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1871491972", - ["text"] = "1% less Damage Taken per # Strength", - ["type"] = "implicit", - }, - }, + ["max"] = 230, + ["min"] = 180, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1871491972", + ["text"] = "1% less Damage Taken per # Strength", + ["type"] = "implicit", + }, + }, ["5246_BodyDamageTakenPerStrengthPinnaclePresence"] = { ["Chest"] = { - ["max"] = 170, - ["min"] = 140, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_125264229", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, 1% less Damage Taken per # Strength", - ["type"] = "implicit", - }, - }, + ["max"] = 170, + ["min"] = 140, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_125264229", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, 1% less Damage Taken per # Strength", + ["type"] = "implicit", + }, + }, ["5246_BodyDamageTakenPerStrengthUniquePresence"] = { ["Chest"] = { - ["max"] = 200, - ["min"] = 160, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3389591826", - ["text"] = "While a Unique Enemy is in your Presence, 1% less Damage Taken per # Strength", - ["type"] = "implicit", - }, - }, + ["max"] = 200, + ["min"] = 160, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3389591826", + ["text"] = "While a Unique Enemy is in your Presence, 1% less Damage Taken per # Strength", + ["type"] = "implicit", + }, + }, ["5823_ColdExposureEffectOnHit"] = { ["Gloves"] = { - ["max"] = 16, - ["min"] = 11, - }, - ["sign"] = "-", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3005701891", - ["text"] = "Inflict Cold Exposure on Hit, applying #% to Cold Resistance", - ["type"] = "implicit", - }, - }, + ["max"] = 16, + ["min"] = 11, + }, + ["sign"] = "-", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3005701891", + ["text"] = "Inflict Cold Exposure on Hit, applying #% to Cold Resistance", + ["type"] = "implicit", + }, + }, ["5823_ColdExposureEffectOnHitPinnaclePresence"] = { ["Gloves"] = { - ["max"] = 22, - ["min"] = 19, - }, - ["sign"] = "-", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3658662726", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Inflict Cold Exposure on Hit, applying #% to Cold Resistance", - ["type"] = "implicit", - }, - }, + ["max"] = 22, + ["min"] = 19, + }, + ["sign"] = "-", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3658662726", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Inflict Cold Exposure on Hit, applying #% to Cold Resistance", + ["type"] = "implicit", + }, + }, ["5823_ColdExposureEffectOnHitUniquePresence"] = { ["Gloves"] = { - ["max"] = 19, - ["min"] = 15, - }, - ["sign"] = "-", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1699220089", - ["text"] = "While a Unique Enemy is in your Presence, Inflict Cold Exposure on Hit, applying #% to Cold Resistance", - ["type"] = "implicit", - }, - }, + ["max"] = 19, + ["min"] = 15, + }, + ["sign"] = "-", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1699220089", + ["text"] = "While a Unique Enemy is in your Presence, Inflict Cold Exposure on Hit, applying #% to Cold Resistance", + ["type"] = "implicit", + }, + }, ["6052_DamagePer100DEX"] = { ["Gloves"] = { - ["max"] = 4, - ["min"] = 3, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_342670903", - ["text"] = "#% increased Damage per 100 Dexterity", - ["type"] = "implicit", - }, - }, + ["max"] = 4, + ["min"] = 3, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_342670903", + ["text"] = "#% increased Damage per 100 Dexterity", + ["type"] = "implicit", + }, + }, ["6052_DamagePer100DEXPinnaclePresence"] = { ["Gloves"] = { - ["max"] = 6, - ["min"] = 5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1870591253", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Damage per 100 Dexterity", - ["type"] = "implicit", - }, - }, + ["max"] = 6, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1870591253", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Damage per 100 Dexterity", + ["type"] = "implicit", + }, + }, ["6052_DamagePer100DEXUniquePresence"] = { ["Gloves"] = { - ["max"] = 5, - ["min"] = 4, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_535580777", - ["text"] = "While a Unique Enemy is in your Presence, #% increased Damage per 100 Dexterity", - ["type"] = "implicit", - }, - }, + ["max"] = 5, + ["min"] = 4, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_535580777", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Damage per 100 Dexterity", + ["type"] = "implicit", + }, + }, ["6053_DamagePer100INT"] = { ["Gloves"] = { - ["max"] = 4, - ["min"] = 3, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3966666111", - ["text"] = "#% increased Damage per 100 Intelligence", - ["type"] = "implicit", - }, - }, + ["max"] = 4, + ["min"] = 3, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3966666111", + ["text"] = "#% increased Damage per 100 Intelligence", + ["type"] = "implicit", + }, + }, ["6053_DamagePer100INTPinnaclePresence"] = { ["Gloves"] = { - ["max"] = 6, - ["min"] = 5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2532279515", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Damage per 100 Intelligence", - ["type"] = "implicit", - }, - }, + ["max"] = 6, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2532279515", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Damage per 100 Intelligence", + ["type"] = "implicit", + }, + }, ["6053_DamagePer100INTUniquePresence"] = { ["Gloves"] = { - ["max"] = 5, - ["min"] = 4, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1894390763", - ["text"] = "While a Unique Enemy is in your Presence, #% increased Damage per 100 Intelligence", - ["type"] = "implicit", - }, - }, + ["max"] = 5, + ["min"] = 4, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1894390763", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Damage per 100 Intelligence", + ["type"] = "implicit", + }, + }, ["6054_DamagePer100STR"] = { ["Gloves"] = { - ["max"] = 4, - ["min"] = 3, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_4274080377", - ["text"] = "#% increased Damage per 100 Strength", - ["type"] = "implicit", - }, - }, + ["max"] = 4, + ["min"] = 3, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_4274080377", + ["text"] = "#% increased Damage per 100 Strength", + ["type"] = "implicit", + }, + }, ["6054_DamagePer100STRPinnaclePresence"] = { ["Gloves"] = { - ["max"] = 6, - ["min"] = 5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3183308031", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Damage per 100 Strength", - ["type"] = "implicit", - }, - }, + ["max"] = 6, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3183308031", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Damage per 100 Strength", + ["type"] = "implicit", + }, + }, ["6054_DamagePer100STRUniquePresence"] = { ["Gloves"] = { - ["max"] = 5, - ["min"] = 4, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_4224921626", - ["text"] = "While a Unique Enemy is in your Presence, #% increased Damage per 100 Strength", - ["type"] = "implicit", - }, - }, + ["max"] = 5, + ["min"] = 4, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_4224921626", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Damage per 100 Strength", + ["type"] = "implicit", + }, + }, ["6161_MalevolenceAuraEffect"] = { ["Chest"] = { - ["max"] = 36, - ["min"] = 19, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_4175197580", - ["text"] = "Malevolence has #% increased Aura Effect", - ["type"] = "implicit", - }, - }, + ["max"] = 36, + ["min"] = 19, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_4175197580", + ["text"] = "Malevolence has #% increased Aura Effect", + ["type"] = "implicit", + }, + }, ["6161_MalevolenceAuraEffectPinnaclePresence"] = { ["Chest"] = { - ["max"] = 60, - ["min"] = 49, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1033279468", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Malevolence has #% increased Aura Effect", - ["type"] = "implicit", - }, - }, + ["max"] = 60, + ["min"] = 49, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1033279468", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Malevolence has #% increased Aura Effect", + ["type"] = "implicit", + }, + }, ["6161_MalevolenceAuraEffectUniquePresence"] = { ["Chest"] = { - ["max"] = 48, - ["min"] = 34, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1327020319", - ["text"] = "While a Unique Enemy is in your Presence, Malevolence has #% increased Aura Effect", - ["type"] = "implicit", - }, - }, - ["6349_ElusiveEffect"] = { + ["max"] = 48, + ["min"] = 34, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1327020319", + ["text"] = "While a Unique Enemy is in your Presence, Malevolence has #% increased Aura Effect", + ["type"] = "implicit", + }, + }, + ["6350_ElusiveEffect"] = { ["Boots"] = { - ["max"] = 17, - ["min"] = 6, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_240857668", - ["text"] = "#% increased Elusive Effect", - ["type"] = "implicit", - }, - }, - ["6349_ElusiveEffectPinnaclePresence"] = { + ["max"] = 17, + ["min"] = 6, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_240857668", + ["text"] = "#% increased Elusive Effect", + ["type"] = "implicit", + }, + }, + ["6350_ElusiveEffectPinnaclePresence"] = { ["Boots"] = { - ["max"] = 29, - ["min"] = 22, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3173079195", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Elusive Effect", - ["type"] = "implicit", - }, - }, - ["6349_ElusiveEffectUniquePresence"] = { + ["max"] = 29, + ["min"] = 22, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3173079195", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Elusive Effect", + ["type"] = "implicit", + }, + }, + ["6350_ElusiveEffectUniquePresence"] = { ["Boots"] = { - ["max"] = 23, - ["min"] = 14, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2413932980", - ["text"] = "While a Unique Enemy is in your Presence, #% increased Elusive Effect", - ["type"] = "implicit", - }, - }, - ["6356_ExertedAttackDamage"] = { + ["max"] = 23, + ["min"] = 14, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2413932980", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Elusive Effect", + ["type"] = "implicit", + }, + }, + ["6357_ExertedAttackDamage"] = { ["Gloves"] = { - ["max"] = 35, - ["min"] = 20, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1569101201", - ["text"] = "Exerted Attacks deal #% increased Damage", - ["type"] = "implicit", - }, - }, - ["6356_ExertedAttackDamagePinnaclePresence"] = { + ["max"] = 35, + ["min"] = 20, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1569101201", + ["text"] = "Exerted Attacks deal #% increased Damage", + ["type"] = "implicit", + }, + }, + ["6357_ExertedAttackDamagePinnaclePresence"] = { ["Gloves"] = { - ["max"] = 47, - ["min"] = 38, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_376260015", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Exerted Attacks deal #% increased Damage", - ["type"] = "implicit", - }, - }, - ["6356_ExertedAttackDamageUniquePresence"] = { + ["max"] = 47, + ["min"] = 38, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_376260015", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Exerted Attacks deal #% increased Damage", + ["type"] = "implicit", + }, + }, + ["6357_ExertedAttackDamageUniquePresence"] = { ["Gloves"] = { - ["max"] = 41, - ["min"] = 29, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3291139981", - ["text"] = "While a Unique Enemy is in your Presence, Exerted Attacks deal #% increased Damage", - ["type"] = "implicit", - }, - }, - ["6421_EnemyLifeRegenerationRate"] = { + ["max"] = 41, + ["min"] = 29, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3291139981", + ["text"] = "While a Unique Enemy is in your Presence, Exerted Attacks deal #% increased Damage", + ["type"] = "implicit", + }, + }, + ["6422_EnemyLifeRegenerationRate"] = { ["Helmet"] = { - ["max"] = 82, - ["min"] = 65, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3903907406", - ["text"] = "Enemies you've Hit Recently have #% reduced Life Regeneration rate", - ["type"] = "implicit", - }, - }, - ["6421_EnemyLifeRegenerationRatePinnaclePresence"] = { + ["max"] = 82, + ["min"] = 65, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3903907406", + ["text"] = "Enemies you've Hit Recently have #% reduced Life Regeneration rate", + ["type"] = "implicit", + }, + }, + ["6422_EnemyLifeRegenerationRatePinnaclePresence"] = { ["Helmet"] = { - ["max"] = 100, - ["min"] = 89, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3407071583", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Enemies you've Hit Recently have #% reduced Life Regeneration rate", - ["type"] = "implicit", - }, - }, - ["6421_EnemyLifeRegenerationRateUniquePresence"] = { + ["max"] = 100, + ["min"] = 89, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3407071583", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Enemies you've Hit Recently have #% reduced Life Regeneration rate", + ["type"] = "implicit", + }, + }, + ["6422_EnemyLifeRegenerationRateUniquePresence"] = { ["Helmet"] = { - ["max"] = 91, - ["min"] = 77, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2570471069", - ["text"] = "While a Unique Enemy is in your Presence, Enemies you've Hit Recently have #% reduced Life Regeneration rate", - ["type"] = "implicit", - }, - }, - ["6430_EnergyShieldFromGlovesBoots"] = { + ["max"] = 91, + ["min"] = 77, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2570471069", + ["text"] = "While a Unique Enemy is in your Presence, Enemies you've Hit Recently have #% reduced Life Regeneration rate", + ["type"] = "implicit", + }, + }, + ["6431_EnergyShieldFromGlovesBoots"] = { ["Helmet"] = { - ["max"] = 50, - ["min"] = 33, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1234687045", - ["text"] = "#% increased Maximum Energy Shield from Equipped Gloves and Boots", - ["type"] = "implicit", - }, - }, - ["6430_EnergyShieldFromGlovesBootsPinnaclePresence"] = { + ["max"] = 50, + ["min"] = 33, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1234687045", + ["text"] = "#% increased Maximum Energy Shield from Equipped Gloves and Boots", + ["type"] = "implicit", + }, + }, + ["6431_EnergyShieldFromGlovesBootsPinnaclePresence"] = { ["Helmet"] = { - ["max"] = 70, - ["min"] = 57, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1388739249", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Maximum Energy Shield from Equipped Gloves and Boots", - ["type"] = "implicit", - }, - }, - ["6430_EnergyShieldFromGlovesBootsUniquePresence"] = { + ["max"] = 70, + ["min"] = 57, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1388739249", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Maximum Energy Shield from Equipped Gloves and Boots", + ["type"] = "implicit", + }, + }, + ["6431_EnergyShieldFromGlovesBootsUniquePresence"] = { ["Helmet"] = { - ["max"] = 61, - ["min"] = 45, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_4288334466", - ["text"] = "While a Unique Enemy is in your Presence, #% increased Maximum Energy Shield from Equipped Gloves and Boots", - ["type"] = "implicit", - }, - }, - ["6485_EvasionRatingFromHelmetBoots"] = { + ["max"] = 61, + ["min"] = 45, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_4288334466", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Maximum Energy Shield from Equipped Gloves and Boots", + ["type"] = "implicit", + }, + }, + ["6486_EvasionRatingFromHelmetBoots"] = { ["Gloves"] = { - ["max"] = 50, - ["min"] = 33, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_623823763", - ["text"] = "#% increased Evasion Rating from Equipped Helmet and Boots", - ["type"] = "implicit", - }, - }, - ["6485_EvasionRatingHelmetBootsPinnaclePresence"] = { + ["max"] = 50, + ["min"] = 33, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_623823763", + ["text"] = "#% increased Evasion Rating from Equipped Helmet and Boots", + ["type"] = "implicit", + }, + }, + ["6486_EvasionRatingHelmetBootsPinnaclePresence"] = { ["Gloves"] = { - ["max"] = 70, - ["min"] = 57, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2980409921", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Evasion Rating from Equipped Helmet and Boots", - ["type"] = "implicit", - }, - }, - ["6485_EvasionRatingHelmetBootsUniquePresence"] = { + ["max"] = 70, + ["min"] = 57, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2980409921", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Evasion Rating from Equipped Helmet and Boots", + ["type"] = "implicit", + }, + }, + ["6486_EvasionRatingHelmetBootsUniquePresence"] = { ["Gloves"] = { - ["max"] = 61, - ["min"] = 45, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2408490382", - ["text"] = "While a Unique Enemy is in your Presence, #% increased Evasion Rating from Equipped Helmet and Boots", - ["type"] = "implicit", - }, - }, - ["6544_FasterBleedDamage"] = { + ["max"] = 61, + ["min"] = 45, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2408490382", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Evasion Rating from Equipped Helmet and Boots", + ["type"] = "implicit", + }, + }, + ["6545_FasterBleedDamage"] = { ["Boots"] = { - ["max"] = 10, - ["min"] = 5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3828375170", - ["text"] = "Bleeding you inflict deals Damage #% faster", - ["type"] = "implicit", - }, - }, - ["6544_FasterBleedDamagePinnaclePresence"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3828375170", + ["text"] = "Bleeding you inflict deals Damage #% faster", + ["type"] = "implicit", + }, + }, + ["6545_FasterBleedDamagePinnaclePresence"] = { ["Boots"] = { - ["max"] = 16, - ["min"] = 13, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_4106235309", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Bleeding you inflict deals Damage #% faster", - ["type"] = "implicit", - }, - }, - ["6544_FasterBleedDamageUniquePresence"] = { + ["max"] = 16, + ["min"] = 13, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_4106235309", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Bleeding you inflict deals Damage #% faster", + ["type"] = "implicit", + }, + }, + ["6545_FasterBleedDamageUniquePresence"] = { ["Boots"] = { - ["max"] = 13, - ["min"] = 9, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_738837643", - ["text"] = "While a Unique Enemy is in your Presence, Bleeding you inflict deals Damage #% faster", - ["type"] = "implicit", - }, - }, - ["6545_FasterPoisonDamage"] = { + ["max"] = 13, + ["min"] = 9, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_738837643", + ["text"] = "While a Unique Enemy is in your Presence, Bleeding you inflict deals Damage #% faster", + ["type"] = "implicit", + }, + }, + ["6546_FasterPoisonDamage"] = { ["Boots"] = { - ["max"] = 10, - ["min"] = 5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2907156609", - ["text"] = "Poisons you inflict deal Damage #% faster", - ["type"] = "implicit", - }, - }, - ["6545_FasterPoisonDamagePinnaclePresence"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2907156609", + ["text"] = "Poisons you inflict deal Damage #% faster", + ["type"] = "implicit", + }, + }, + ["6546_FasterPoisonDamagePinnaclePresence"] = { ["Boots"] = { - ["max"] = 16, - ["min"] = 13, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_995369618", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Poisons you inflict deal Damage #% faster", - ["type"] = "implicit", - }, - }, - ["6545_FasterPoisonDamageUniquePresence"] = { + ["max"] = 16, + ["min"] = 13, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_995369618", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Poisons you inflict deal Damage #% faster", + ["type"] = "implicit", + }, + }, + ["6546_FasterPoisonDamageUniquePresence"] = { ["Boots"] = { - ["max"] = 13, - ["min"] = 9, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3828039449", - ["text"] = "While a Unique Enemy is in your Presence, Poisons you inflict deal Damage #% faster", - ["type"] = "implicit", - }, - }, - ["6579_FireExposureEffectOnHit"] = { + ["max"] = 13, + ["min"] = 9, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3828039449", + ["text"] = "While a Unique Enemy is in your Presence, Poisons you inflict deal Damage #% faster", + ["type"] = "implicit", + }, + }, + ["6580_FireExposureEffectOnHit"] = { ["Gloves"] = { - ["max"] = 16, - ["min"] = 11, - }, - ["sign"] = "-", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1309840354", - ["text"] = "Inflict Fire Exposure on Hit, applying #% to Fire Resistance", - ["type"] = "implicit", - }, - }, - ["6579_FireExposureEffectOnHitPinnaclePresence"] = { + ["max"] = 16, + ["min"] = 11, + }, + ["sign"] = "-", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1309840354", + ["text"] = "Inflict Fire Exposure on Hit, applying #% to Fire Resistance", + ["type"] = "implicit", + }, + }, + ["6580_FireExposureEffectOnHitPinnaclePresence"] = { ["Gloves"] = { - ["max"] = 22, - ["min"] = 19, - }, - ["sign"] = "-", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1629531681", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Inflict Fire Exposure on Hit, applying #% to Fire Resistance", - ["type"] = "implicit", - }, - }, - ["6579_FireExposureEffectOnHitUniquePresence"] = { + ["max"] = 22, + ["min"] = 19, + }, + ["sign"] = "-", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1629531681", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Inflict Fire Exposure on Hit, applying #% to Fire Resistance", + ["type"] = "implicit", + }, + }, + ["6580_FireExposureEffectOnHitUniquePresence"] = { ["Gloves"] = { - ["max"] = 19, - ["min"] = 15, - }, - ["sign"] = "-", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_732411542", - ["text"] = "While a Unique Enemy is in your Presence, Inflict Fire Exposure on Hit, applying #% to Fire Resistance", - ["type"] = "implicit", - }, - }, - ["6857_GeneralsCryCooldownRecovery"] = { + ["max"] = 19, + ["min"] = 15, + }, + ["sign"] = "-", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_732411542", + ["text"] = "While a Unique Enemy is in your Presence, Inflict Fire Exposure on Hit, applying #% to Fire Resistance", + ["type"] = "implicit", + }, + }, + ["6858_GeneralsCryCooldownRecovery"] = { ["Boots"] = { - ["max"] = 32, - ["min"] = 15, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3637727672", - ["text"] = "General's Cry has #% increased Cooldown Recovery Rate", - ["type"] = "implicit", - }, - }, - ["6857_GeneralsCryCooldownRecoveryPinnaclePresence"] = { + ["max"] = 32, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3637727672", + ["text"] = "General's Cry has #% increased Cooldown Recovery Rate", + ["type"] = "implicit", + }, + }, + ["6858_GeneralsCryCooldownRecoveryPinnaclePresence"] = { ["Boots"] = { - ["max"] = 50, - ["min"] = 39, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_133006298", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, General's Cry has #% increased Cooldown Recovery Rate", - ["type"] = "implicit", - }, - }, - ["6857_GeneralsCryCooldownRecoveryUniquePresence"] = { + ["max"] = 50, + ["min"] = 39, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_133006298", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, General's Cry has #% increased Cooldown Recovery Rate", + ["type"] = "implicit", + }, + }, + ["6858_GeneralsCryCooldownRecoveryUniquePresence"] = { ["Boots"] = { - ["max"] = 41, - ["min"] = 27, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_942266300", - ["text"] = "While a Unique Enemy is in your Presence, General's Cry has #% increased Cooldown Recovery Rate", - ["type"] = "implicit", - }, - }, - ["7170_ChanceToIgnoreEnemyArmour"] = { + ["max"] = 41, + ["min"] = 27, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_942266300", + ["text"] = "While a Unique Enemy is in your Presence, General's Cry has #% increased Cooldown Recovery Rate", + ["type"] = "implicit", + }, + }, + ["7171_ChanceToIgnoreEnemyArmour"] = { ["Gloves"] = { - ["max"] = 50, - ["min"] = 30, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2839577586", - ["text"] = "Hits have #% chance to ignore Enemy Physical Damage Reduction", - ["type"] = "implicit", - }, - }, - ["7170_ChanceToIgnoreEnemyArmourPinnaclePresence"] = { + ["max"] = 50, + ["min"] = 30, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2839577586", + ["text"] = "Hits have #% chance to ignore Enemy Physical Damage Reduction", + ["type"] = "implicit", + }, + }, + ["7171_ChanceToIgnoreEnemyArmourPinnaclePresence"] = { ["Gloves"] = { - ["max"] = 78, - ["min"] = 61, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_4022700734", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Hits have #% chance to ignore Enemy Physical Damage Reduction", - ["type"] = "implicit", - }, - }, - ["7170_ChanceToIgnoreEnemyArmourUniquePresence"] = { + ["max"] = 78, + ["min"] = 61, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_4022700734", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Hits have #% chance to ignore Enemy Physical Damage Reduction", + ["type"] = "implicit", + }, + }, + ["7171_ChanceToIgnoreEnemyArmourUniquePresence"] = { ["Gloves"] = { - ["max"] = 63, - ["min"] = 46, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_71573030", - ["text"] = "While a Unique Enemy is in your Presence, Hits have #% chance to ignore Enemy Physical Damage Reduction", - ["type"] = "implicit", - }, - }, - ["7267_InfernalCryWarcryAreaOfEffect"] = { + ["max"] = 63, + ["min"] = 46, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_71573030", + ["text"] = "While a Unique Enemy is in your Presence, Hits have #% chance to ignore Enemy Physical Damage Reduction", + ["type"] = "implicit", + }, + }, + ["7268_InfernalCryWarcryAreaOfEffect"] = { ["Boots"] = { - ["max"] = 32, - ["min"] = 15, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_631097842", - ["text"] = "Infernal Cry has #% increased Area of Effect", - ["type"] = "implicit", - }, - }, - ["7267_InfernalCryWarcryAreaOfEffectPinnaclePresence"] = { + ["max"] = 32, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_631097842", + ["text"] = "Infernal Cry has #% increased Area of Effect", + ["type"] = "implicit", + }, + }, + ["7268_InfernalCryWarcryAreaOfEffectPinnaclePresence"] = { ["Boots"] = { - ["max"] = 50, - ["min"] = 39, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1774377226", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Infernal Cry has #% increased Area of Effect", - ["type"] = "implicit", - }, - }, - ["7267_InfernalCryWarcryAreaOfEffectUniquePresence"] = { + ["max"] = 50, + ["min"] = 39, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1774377226", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Infernal Cry has #% increased Area of Effect", + ["type"] = "implicit", + }, + }, + ["7268_InfernalCryWarcryAreaOfEffectUniquePresence"] = { ["Boots"] = { - ["max"] = 41, - ["min"] = 27, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3199255605", - ["text"] = "While a Unique Enemy is in your Presence, Infernal Cry has #% increased Area of Effect", - ["type"] = "implicit", - }, - }, - ["7299_IntimidatingCryCooldownRecovery"] = { + ["max"] = 41, + ["min"] = 27, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3199255605", + ["text"] = "While a Unique Enemy is in your Presence, Infernal Cry has #% increased Area of Effect", + ["type"] = "implicit", + }, + }, + ["7300_IntimidatingCryCooldownRecovery"] = { ["Boots"] = { - ["max"] = 32, - ["min"] = 15, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1134560807", - ["text"] = "Intimidating Cry has #% increased Cooldown Recovery Rate", - ["type"] = "implicit", - }, - }, - ["7299_IntimidatingCryCooldownRecoveryPinnaclePresence"] = { + ["max"] = 32, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1134560807", + ["text"] = "Intimidating Cry has #% increased Cooldown Recovery Rate", + ["type"] = "implicit", + }, + }, + ["7300_IntimidatingCryCooldownRecoveryPinnaclePresence"] = { ["Boots"] = { - ["max"] = 50, - ["min"] = 39, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3945581778", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Intimidating Cry has #% increased Cooldown Recovery Rate", - ["type"] = "implicit", - }, - }, - ["7299_IntimidatingCryCooldownRecoveryUniquePresence"] = { + ["max"] = 50, + ["min"] = 39, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3945581778", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Intimidating Cry has #% increased Cooldown Recovery Rate", + ["type"] = "implicit", + }, + }, + ["7300_IntimidatingCryCooldownRecoveryUniquePresence"] = { ["Boots"] = { - ["max"] = 41, - ["min"] = 27, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3381588096", - ["text"] = "While a Unique Enemy is in your Presence, Intimidating Cry has #% increased Cooldown Recovery Rate", - ["type"] = "implicit", - }, - }, - ["7458_LightningExposureEffectOnHit"] = { + ["max"] = 41, + ["min"] = 27, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3381588096", + ["text"] = "While a Unique Enemy is in your Presence, Intimidating Cry has #% increased Cooldown Recovery Rate", + ["type"] = "implicit", + }, + }, + ["7459_LightningExposureEffectOnHit"] = { ["Gloves"] = { - ["max"] = 16, - ["min"] = 11, - }, - ["sign"] = "-", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_981753179", - ["text"] = "Inflict Lightning Exposure on Hit, applying #% to Lightning Resistance", - ["type"] = "implicit", - }, - }, - ["7458_LightningExposureEffectOnHitPinnaclePresence"] = { + ["max"] = 16, + ["min"] = 11, + }, + ["sign"] = "-", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_981753179", + ["text"] = "Inflict Lightning Exposure on Hit, applying #% to Lightning Resistance", + ["type"] = "implicit", + }, + }, + ["7459_LightningExposureEffectOnHitPinnaclePresence"] = { ["Gloves"] = { - ["max"] = 22, - ["min"] = 19, - }, - ["sign"] = "-", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1762412317", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Inflict Lightning Exposure on Hit, applying #% to Lightning Resistance", - ["type"] = "implicit", - }, - }, - ["7458_LightningExposureEffectOnHitUniquePresence"] = { + ["max"] = 22, + ["min"] = 19, + }, + ["sign"] = "-", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1762412317", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Inflict Lightning Exposure on Hit, applying #% to Lightning Resistance", + ["type"] = "implicit", + }, + }, + ["7459_LightningExposureEffectOnHitUniquePresence"] = { ["Gloves"] = { - ["max"] = 19, - ["min"] = 15, - }, - ["sign"] = "-", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2876365933", - ["text"] = "While a Unique Enemy is in your Presence, Inflict Lightning Exposure on Hit, applying #% to Lightning Resistance", - ["type"] = "implicit", - }, - }, + ["max"] = 19, + ["min"] = 15, + }, + ["sign"] = "-", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2876365933", + ["text"] = "While a Unique Enemy is in your Presence, Inflict Lightning Exposure on Hit, applying #% to Lightning Resistance", + ["type"] = "implicit", + }, + }, ["7_PlayerReflectedDamage"] = { ["Chest"] = { - ["max"] = 70, - ["min"] = 45, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1571797746", - ["text"] = "#% of Damage from your Hits cannot be Reflected", - ["type"] = "implicit", - }, - }, + ["max"] = 70, + ["min"] = 45, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1571797746", + ["text"] = "#% of Damage from your Hits cannot be Reflected", + ["type"] = "implicit", + }, + }, ["7_PlayerReflectedDamagePinnaclePresence"] = { ["Chest"] = { - ["max"] = 100, - ["min"] = 85, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2173565521", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% of Damage from your Hits cannot be Reflected", - ["type"] = "implicit", - }, - }, + ["max"] = 100, + ["min"] = 85, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2173565521", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% of Damage from your Hits cannot be Reflected", + ["type"] = "implicit", + }, + }, ["7_PlayerReflectedDamageUniquePresence"] = { ["Chest"] = { - ["max"] = 85, - ["min"] = 65, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2195698019", - ["text"] = "While a Unique Enemy is in your Presence, #% of Damage from your Hits cannot be Reflected", - ["type"] = "implicit", - }, - }, - ["8154_GlobalMaimOnHit"] = { + ["max"] = 85, + ["min"] = 65, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2195698019", + ["text"] = "While a Unique Enemy is in your Presence, #% of Damage from your Hits cannot be Reflected", + ["type"] = "implicit", + }, + }, + ["8155_GlobalMaimOnHit"] = { ["Gloves"] = { - ["max"] = 40, - ["min"] = 15, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1510714129", - ["text"] = "Attacks have #% chance to Maim on Hit", - ["type"] = "implicit", - }, - }, - ["8154_GlobalMaimOnHitPinnaclePresence"] = { + ["max"] = 40, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1510714129", + ["text"] = "Attacks have #% chance to Maim on Hit", + ["type"] = "implicit", + }, + }, + ["8155_GlobalMaimOnHitPinnaclePresence"] = { ["Gloves"] = { - ["max"] = 95, - ["min"] = 85, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_4065516297", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Attacks have #% chance to Maim on Hit", - ["type"] = "implicit", - }, - }, - ["8154_GlobalMaimOnHitUniquePresence"] = { + ["max"] = 95, + ["min"] = 85, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_4065516297", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Attacks have #% chance to Maim on Hit", + ["type"] = "implicit", + }, + }, + ["8155_GlobalMaimOnHitUniquePresence"] = { ["Gloves"] = { - ["max"] = 70, - ["min"] = 50, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_720015764", - ["text"] = "While a Unique Enemy is in your Presence, Attacks have #% chance to Maim on Hit", - ["type"] = "implicit", - }, - }, - ["9355_MinionReflectedDamage"] = { + ["max"] = 70, + ["min"] = 50, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_720015764", + ["text"] = "While a Unique Enemy is in your Presence, Attacks have #% chance to Maim on Hit", + ["type"] = "implicit", + }, + }, + ["9356_MinionReflectedDamage"] = { ["Chest"] = { - ["max"] = 70, - ["min"] = 45, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2467518140", - ["text"] = "#% of Hit Damage from your Minions cannot be Reflected", - ["type"] = "implicit", - }, - }, - ["9355_MinionReflectedDamagePinnaclePresence"] = { + ["max"] = 70, + ["min"] = 45, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2467518140", + ["text"] = "#% of Hit Damage from your Minions cannot be Reflected", + ["type"] = "implicit", + }, + }, + ["9356_MinionReflectedDamagePinnaclePresence"] = { ["Chest"] = { - ["max"] = 100, - ["min"] = 85, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_648344494", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% of Hit Damage from your Minions cannot be Reflected", - ["type"] = "implicit", - }, - }, - ["9355_MinionReflectedDamageUniquePresence"] = { + ["max"] = 100, + ["min"] = 85, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_648344494", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% of Hit Damage from your Minions cannot be Reflected", + ["type"] = "implicit", + }, + }, + ["9356_MinionReflectedDamageUniquePresence"] = { ["Chest"] = { - ["max"] = 85, - ["min"] = 65, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_4260371388", - ["text"] = "While a Unique Enemy is in your Presence, #% of Hit Damage from your Minions cannot be Reflected", - ["type"] = "implicit", - }, - }, - ["9499_IncreasedAilmentEffectOnEnemies"] = { + ["max"] = 85, + ["min"] = 65, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_4260371388", + ["text"] = "While a Unique Enemy is in your Presence, #% of Hit Damage from your Minions cannot be Reflected", + ["type"] = "implicit", + }, + }, + ["9500_IncreasedAilmentEffectOnEnemies"] = { ["Amulet"] = { - ["max"] = 29, - ["min"] = 14, - }, + ["max"] = 29, + ["min"] = 14, + }, ["Helmet"] = { - ["max"] = 29, - ["min"] = 14, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_782230869", - ["text"] = "#% increased Effect of Non-Damaging Ailments", - ["type"] = "implicit", - }, - }, - ["9499_IncreasedAilmentEffectOnEnemiesPinnaclePresence"] = { + ["max"] = 29, + ["min"] = 14, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_782230869", + ["text"] = "#% increased Effect of Non-Damaging Ailments", + ["type"] = "implicit", + }, + }, + ["9500_IncreasedAilmentEffectOnEnemiesPinnaclePresence"] = { ["Amulet"] = { - ["max"] = 41, - ["min"] = 32, - }, + ["max"] = 41, + ["min"] = 32, + }, ["Helmet"] = { - ["max"] = 41, - ["min"] = 32, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1016769968", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Effect of Non-Damaging Ailments", - ["type"] = "implicit", - }, - }, - ["9499_IncreasedAilmentEffectOnEnemiesUniquePresence"] = { + ["max"] = 41, + ["min"] = 32, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1016769968", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Effect of Non-Damaging Ailments", + ["type"] = "implicit", + }, + }, + ["9500_IncreasedAilmentEffectOnEnemiesUniquePresence"] = { ["Amulet"] = { - ["max"] = 35, - ["min"] = 23, - }, + ["max"] = 35, + ["min"] = 23, + }, ["Helmet"] = { - ["max"] = 35, - ["min"] = 23, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2950684886", - ["text"] = "While a Unique Enemy is in your Presence, #% increased Effect of Non-Damaging Ailments", - ["type"] = "implicit", - }, - }, - ["9710_PrideAuraEffect"] = { + ["max"] = 35, + ["min"] = 23, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2950684886", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Effect of Non-Damaging Ailments", + ["type"] = "implicit", + }, + }, + ["9711_PrideAuraEffect"] = { ["Chest"] = { - ["max"] = 36, - ["min"] = 19, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_4247488219", - ["text"] = "Pride has #% increased Aura Effect", - ["type"] = "implicit", - }, - }, - ["9710_PrideAuraEffectPinnaclePresence"] = { + ["max"] = 36, + ["min"] = 19, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_4247488219", + ["text"] = "Pride has #% increased Aura Effect", + ["type"] = "implicit", + }, + }, + ["9711_PrideAuraEffectPinnaclePresence"] = { ["Chest"] = { - ["max"] = 60, - ["min"] = 49, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2163876658", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Pride has #% increased Aura Effect", - ["type"] = "implicit", - }, - }, - ["9710_PrideAuraEffectUniquePresence"] = { + ["max"] = 60, + ["min"] = 49, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2163876658", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Pride has #% increased Aura Effect", + ["type"] = "implicit", + }, + }, + ["9711_PrideAuraEffectUniquePresence"] = { ["Chest"] = { - ["max"] = 48, - ["min"] = 34, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_4039774101", - ["text"] = "While a Unique Enemy is in your Presence, Pride has #% increased Aura Effect", - ["type"] = "implicit", - }, - }, - ["9967_SeismicCryExertedDamage"] = { + ["max"] = 48, + ["min"] = 34, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_4039774101", + ["text"] = "While a Unique Enemy is in your Presence, Pride has #% increased Aura Effect", + ["type"] = "implicit", + }, + }, + ["9968_SeismicCryExertedDamage"] = { ["Boots"] = { - ["max"] = 35, - ["min"] = 20, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3252913608", - ["text"] = "Attacks Exerted by Seismic Cry deal #% increased Damage", - ["type"] = "implicit", - }, - }, - ["9967_SeismicCryExertedDamagePinnaclePresence"] = { + ["max"] = 35, + ["min"] = 20, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3252913608", + ["text"] = "Attacks Exerted by Seismic Cry deal #% increased Damage", + ["type"] = "implicit", + }, + }, + ["9968_SeismicCryExertedDamagePinnaclePresence"] = { ["Boots"] = { - ["max"] = 47, - ["min"] = 38, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1714653952", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Attacks Exerted by Seismic Cry deal #% increased Damage", - ["type"] = "implicit", - }, - }, - ["9967_SeismicCryExertedDamageUniquePresence"] = { + ["max"] = 47, + ["min"] = 38, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1714653952", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Attacks Exerted by Seismic Cry deal #% increased Damage", + ["type"] = "implicit", + }, + }, + ["9968_SeismicCryExertedDamageUniquePresence"] = { ["Boots"] = { - ["max"] = 41, - ["min"] = 29, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1505297139", - ["text"] = "While a Unique Enemy is in your Presence, Attacks Exerted by Seismic Cry deal #% increased Damage", - ["type"] = "implicit", - }, - }, - }, + ["max"] = 41, + ["min"] = 29, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1505297139", + ["text"] = "While a Unique Enemy is in your Presence, Attacks Exerted by Seismic Cry deal #% increased Damage", + ["type"] = "implicit", + }, + }, + }, ["Exarch"] = { - ["10043_BrandAttachmentRange"] = { + ["10044_BrandAttachmentRange"] = { ["Boots"] = { - ["max"] = 15, - ["min"] = 10, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_4223377453", - ["text"] = "#% increased Brand Attachment range", - ["type"] = "implicit", - }, - }, - ["10043_BrandAttachmentRangePinnaclePresence"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_4223377453", + ["text"] = "#% increased Brand Attachment range", + ["type"] = "implicit", + }, + }, + ["10044_BrandAttachmentRangePinnaclePresence"] = { ["Boots"] = { - ["max"] = 23, - ["min"] = 20, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2391109128", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Brand Attachment range", - ["type"] = "implicit", - }, - }, - ["10043_BrandAttachmentRangeUniquePresence"] = { + ["max"] = 23, + ["min"] = 20, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2391109128", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Brand Attachment range", + ["type"] = "implicit", + }, + }, + ["10044_BrandAttachmentRangeUniquePresence"] = { ["Boots"] = { - ["max"] = 19, - ["min"] = 15, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_636616197", - ["text"] = "While a Unique Enemy is in your Presence, #% increased Brand Attachment range", - ["type"] = "implicit", - }, - }, - ["10365_TempestShieldBuffEffect"] = { + ["max"] = 19, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_636616197", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Brand Attachment range", + ["type"] = "implicit", + }, + }, + ["10366_TempestShieldBuffEffect"] = { ["Chest"] = { - ["max"] = 32, - ["min"] = 15, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2662416009", - ["text"] = "Tempest Shield has #% increased Buff Effect", - ["type"] = "implicit", - }, - }, - ["10365_TempestShieldBuffEffectPinnaclePresence"] = { + ["max"] = 32, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2662416009", + ["text"] = "Tempest Shield has #% increased Buff Effect", + ["type"] = "implicit", + }, + }, + ["10366_TempestShieldBuffEffectPinnaclePresence"] = { ["Chest"] = { - ["max"] = 50, - ["min"] = 39, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2601015548", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Tempest Shield has #% increased Buff Effect", - ["type"] = "implicit", - }, - }, - ["10365_TempestShieldBuffEffectUniquePresence"] = { + ["max"] = 50, + ["min"] = 39, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2601015548", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Tempest Shield has #% increased Buff Effect", + ["type"] = "implicit", + }, + }, + ["10366_TempestShieldBuffEffectUniquePresence"] = { ["Chest"] = { - ["max"] = 41, - ["min"] = 27, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_942478380", - ["text"] = "While a Unique Enemy is in your Presence, Tempest Shield has #% increased Buff Effect", - ["type"] = "implicit", - }, - }, - ["10566_WarcryEffect"] = { + ["max"] = 41, + ["min"] = 27, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_942478380", + ["text"] = "While a Unique Enemy is in your Presence, Tempest Shield has #% increased Buff Effect", + ["type"] = "implicit", + }, + }, + ["10567_WarcryEffect"] = { ["Chest"] = { - ["max"] = 30, - ["min"] = 19, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3037553757", - ["text"] = "#% increased Warcry Buff Effect", - ["type"] = "implicit", - }, - }, - ["10566_WarcryEffectPinnaclePresence"] = { + ["max"] = 30, + ["min"] = 19, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3037553757", + ["text"] = "#% increased Warcry Buff Effect", + ["type"] = "implicit", + }, + }, + ["10567_WarcryEffectPinnaclePresence"] = { ["Chest"] = { - ["max"] = 42, - ["min"] = 35, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_794753348", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Warcry Buff Effect", - ["type"] = "implicit", - }, - }, - ["10566_WarcryEffectUniquePresence"] = { + ["max"] = 42, + ["min"] = 35, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_794753348", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Warcry Buff Effect", + ["type"] = "implicit", + }, + }, + ["10567_WarcryEffectUniquePresence"] = { ["Chest"] = { - ["max"] = 36, - ["min"] = 27, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3611265227", - ["text"] = "While a Unique Enemy is in your Presence, #% increased Warcry Buff Effect", - ["type"] = "implicit", - }, - }, + ["max"] = 36, + ["min"] = 27, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3611265227", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Warcry Buff Effect", + ["type"] = "implicit", + }, + }, ["1172_BoneOfferingEffect"] = { ["Boots"] = { - ["max"] = 17, - ["min"] = 6, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1801289192", - ["text"] = "Bone Offering has #% increased Effect", - ["type"] = "implicit", - }, - }, + ["max"] = 17, + ["min"] = 6, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1801289192", + ["text"] = "Bone Offering has #% increased Effect", + ["type"] = "implicit", + }, + }, ["1172_BoneOfferingEffectPinnaclePresence"] = { ["Boots"] = { - ["max"] = 29, - ["min"] = 22, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3774100463", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Bone Offering has #% increased Effect", - ["type"] = "implicit", - }, - }, + ["max"] = 29, + ["min"] = 22, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3774100463", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Bone Offering has #% increased Effect", + ["type"] = "implicit", + }, + }, ["1172_BoneOfferingEffectUniquePresence"] = { ["Boots"] = { - ["max"] = 23, - ["min"] = 14, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2290911895", - ["text"] = "While a Unique Enemy is in your Presence, Bone Offering has #% increased Effect", - ["type"] = "implicit", - }, - }, + ["max"] = 23, + ["min"] = 14, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2290911895", + ["text"] = "While a Unique Enemy is in your Presence, Bone Offering has #% increased Effect", + ["type"] = "implicit", + }, + }, ["1173_FleshOfferingEffect"] = { ["Boots"] = { - ["max"] = 17, - ["min"] = 6, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3456379680", - ["text"] = "Flesh Offering has #% increased Effect", - ["type"] = "implicit", - }, - }, + ["max"] = 17, + ["min"] = 6, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3456379680", + ["text"] = "Flesh Offering has #% increased Effect", + ["type"] = "implicit", + }, + }, ["1173_FleshOfferingEffectPinnaclePresence"] = { ["Boots"] = { - ["max"] = 29, - ["min"] = 22, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_862077496", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Flesh Offering has #% increased Effect", - ["type"] = "implicit", - }, - }, + ["max"] = 29, + ["min"] = 22, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_862077496", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Flesh Offering has #% increased Effect", + ["type"] = "implicit", + }, + }, ["1173_FleshOfferingEffectUniquePresence"] = { ["Boots"] = { - ["max"] = 23, - ["min"] = 14, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3599488608", - ["text"] = "While a Unique Enemy is in your Presence, Flesh Offering has #% increased Effect", - ["type"] = "implicit", - }, - }, + ["max"] = 23, + ["min"] = 14, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3599488608", + ["text"] = "While a Unique Enemy is in your Presence, Flesh Offering has #% increased Effect", + ["type"] = "implicit", + }, + }, ["1174_SpiritOfferingEffect"] = { ["Boots"] = { - ["max"] = 17, - ["min"] = 6, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3544391750", - ["text"] = "Spirit Offering has #% increased Effect", - ["type"] = "implicit", - }, - }, + ["max"] = 17, + ["min"] = 6, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3544391750", + ["text"] = "Spirit Offering has #% increased Effect", + ["type"] = "implicit", + }, + }, ["1174_SpiritOfferingEffectPinnaclePresence"] = { ["Boots"] = { - ["max"] = 29, - ["min"] = 22, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2399066987", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Spirit Offering has #% increased Effect", - ["type"] = "implicit", - }, - }, + ["max"] = 29, + ["min"] = 22, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2399066987", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Spirit Offering has #% increased Effect", + ["type"] = "implicit", + }, + }, ["1174_SpiritOfferingEffectUniquePresence"] = { ["Boots"] = { - ["max"] = 23, - ["min"] = 14, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2814835155", - ["text"] = "While a Unique Enemy is in your Presence, Spirit Offering has #% increased Effect", - ["type"] = "implicit", - }, - }, + ["max"] = 23, + ["min"] = 14, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2814835155", + ["text"] = "While a Unique Enemy is in your Presence, Spirit Offering has #% increased Effect", + ["type"] = "implicit", + }, + }, ["1231_PhysicalDamagePercent"] = { ["Amulet"] = { - ["max"] = 30, - ["min"] = 15, - }, + ["max"] = 30, + ["min"] = 15, + }, ["Chest"] = { - ["max"] = 30, - ["min"] = 15, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1310194496", - ["text"] = "#% increased Global Physical Damage", - ["type"] = "implicit", - }, - }, + ["max"] = 30, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1310194496", + ["text"] = "#% increased Global Physical Damage", + ["type"] = "implicit", + }, + }, ["1231_PhysicalDamagePercentPinnaclePresence"] = { ["Amulet"] = { - ["max"] = 42, - ["min"] = 33, - }, + ["max"] = 42, + ["min"] = 33, + }, ["Chest"] = { - ["max"] = 42, - ["min"] = 33, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2545907302", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Global Physical Damage", - ["type"] = "implicit", - }, - }, + ["max"] = 42, + ["min"] = 33, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2545907302", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Global Physical Damage", + ["type"] = "implicit", + }, + }, ["1231_PhysicalDamagePercentUniquePresence"] = { ["Amulet"] = { - ["max"] = 36, - ["min"] = 24, - }, + ["max"] = 36, + ["min"] = 24, + }, ["Chest"] = { - ["max"] = 36, - ["min"] = 24, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_604852150", - ["text"] = "While a Unique Enemy is in your Presence, #% increased Global Physical Damage", - ["type"] = "implicit", - }, - }, + ["max"] = 36, + ["min"] = 24, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_604852150", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Global Physical Damage", + ["type"] = "implicit", + }, + }, ["1247_PhysicalDamageOverTimeMultiplier"] = { ["Amulet"] = { - ["max"] = 20, - ["min"] = 5, - }, + ["max"] = 20, + ["min"] = 5, + }, ["Gloves"] = { - ["max"] = 20, - ["min"] = 5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1314617696", - ["text"] = "+#% to Physical Damage over Time Multiplier", - ["type"] = "implicit", - }, - }, + ["max"] = 20, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1314617696", + ["text"] = "+#% to Physical Damage over Time Multiplier", + ["type"] = "implicit", + }, + }, ["1247_PhysicalDamageOverTimeMultiplierPinnaclePresence"] = { ["Amulet"] = { - ["max"] = 38, - ["min"] = 29, - }, + ["max"] = 38, + ["min"] = 29, + }, ["Gloves"] = { - ["max"] = 38, - ["min"] = 29, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_4084536353", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, +#% to Physical Damage over Time Multiplier", - ["type"] = "implicit", - }, - }, + ["max"] = 38, + ["min"] = 29, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_4084536353", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, +#% to Physical Damage over Time Multiplier", + ["type"] = "implicit", + }, + }, ["1247_PhysicalDamageOverTimeMultiplierUniquePresence"] = { ["Amulet"] = { - ["max"] = 29, - ["min"] = 17, - }, + ["max"] = 29, + ["min"] = 17, + }, ["Gloves"] = { - ["max"] = 29, - ["min"] = 17, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_841219865", - ["text"] = "While a Unique Enemy is in your Presence, +#% to Physical Damage over Time Multiplier", - ["type"] = "implicit", - }, - }, + ["max"] = 29, + ["min"] = 17, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_841219865", + ["text"] = "While a Unique Enemy is in your Presence, +#% to Physical Damage over Time Multiplier", + ["type"] = "implicit", + }, + }, ["1251_FireDamageOverTimeMultiplier"] = { ["Amulet"] = { - ["max"] = 20, - ["min"] = 5, - }, + ["max"] = 20, + ["min"] = 5, + }, ["Gloves"] = { - ["max"] = 20, - ["min"] = 5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3382807662", - ["text"] = "+#% to Fire Damage over Time Multiplier", - ["type"] = "implicit", - }, - }, + ["max"] = 20, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3382807662", + ["text"] = "+#% to Fire Damage over Time Multiplier", + ["type"] = "implicit", + }, + }, ["1251_FireDamageOverTimeMultiplierPinnaclePresence"] = { ["Amulet"] = { - ["max"] = 38, - ["min"] = 29, - }, + ["max"] = 38, + ["min"] = 29, + }, ["Gloves"] = { - ["max"] = 38, - ["min"] = 29, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1870961528", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, +#% to Fire Damage over Time Multiplier", - ["type"] = "implicit", - }, - }, + ["max"] = 38, + ["min"] = 29, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1870961528", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, +#% to Fire Damage over Time Multiplier", + ["type"] = "implicit", + }, + }, ["1251_FireDamageOverTimeMultiplierUniquePresence"] = { ["Amulet"] = { - ["max"] = 29, - ["min"] = 17, - }, + ["max"] = 29, + ["min"] = 17, + }, ["Gloves"] = { - ["max"] = 29, - ["min"] = 17, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2112874376", - ["text"] = "While a Unique Enemy is in your Presence, +#% to Fire Damage over Time Multiplier", - ["type"] = "implicit", - }, - }, + ["max"] = 29, + ["min"] = 17, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2112874376", + ["text"] = "While a Unique Enemy is in your Presence, +#% to Fire Damage over Time Multiplier", + ["type"] = "implicit", + }, + }, ["1256_ColdDamageOverTimeMultiplier"] = { ["Amulet"] = { - ["max"] = 20, - ["min"] = 5, - }, + ["max"] = 20, + ["min"] = 5, + }, ["Gloves"] = { - ["max"] = 20, - ["min"] = 5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1950806024", - ["text"] = "+#% to Cold Damage over Time Multiplier", - ["type"] = "implicit", - }, - }, + ["max"] = 20, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1950806024", + ["text"] = "+#% to Cold Damage over Time Multiplier", + ["type"] = "implicit", + }, + }, ["1256_ColdDamageOverTimeMultiplierPinnaclePresence"] = { ["Amulet"] = { - ["max"] = 38, - ["min"] = 29, - }, + ["max"] = 38, + ["min"] = 29, + }, ["Gloves"] = { - ["max"] = 38, - ["min"] = 29, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2619970520", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, +#% to Cold Damage over Time Multiplier", - ["type"] = "implicit", - }, - }, + ["max"] = 38, + ["min"] = 29, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2619970520", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, +#% to Cold Damage over Time Multiplier", + ["type"] = "implicit", + }, + }, ["1256_ColdDamageOverTimeMultiplierUniquePresence"] = { ["Amulet"] = { - ["max"] = 29, - ["min"] = 17, - }, + ["max"] = 29, + ["min"] = 17, + }, ["Gloves"] = { - ["max"] = 29, - ["min"] = 17, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_621576159", - ["text"] = "While a Unique Enemy is in your Presence, +#% to Cold Damage over Time Multiplier", - ["type"] = "implicit", - }, - }, + ["max"] = 29, + ["min"] = 17, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_621576159", + ["text"] = "While a Unique Enemy is in your Presence, +#% to Cold Damage over Time Multiplier", + ["type"] = "implicit", + }, + }, ["1259_ChaosDamageOverTimeMultiplier"] = { ["Amulet"] = { - ["max"] = 20, - ["min"] = 5, - }, + ["max"] = 20, + ["min"] = 5, + }, ["Gloves"] = { - ["max"] = 20, - ["min"] = 5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_4055307827", - ["text"] = "+#% to Chaos Damage over Time Multiplier", - ["type"] = "implicit", - }, - }, + ["max"] = 20, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_4055307827", + ["text"] = "+#% to Chaos Damage over Time Multiplier", + ["type"] = "implicit", + }, + }, ["1259_ChaosDamageOverTimeMultiplierPinnaclePresence"] = { ["Amulet"] = { - ["max"] = 38, - ["min"] = 29, - }, + ["max"] = 38, + ["min"] = 29, + }, ["Gloves"] = { - ["max"] = 38, - ["min"] = 29, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2163155983", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, +#% to Chaos Damage over Time Multiplier", - ["type"] = "implicit", - }, - }, + ["max"] = 38, + ["min"] = 29, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2163155983", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, +#% to Chaos Damage over Time Multiplier", + ["type"] = "implicit", + }, + }, ["1259_ChaosDamageOverTimeMultiplierUniquePresence"] = { ["Amulet"] = { - ["max"] = 29, - ["min"] = 17, - }, + ["max"] = 29, + ["min"] = 17, + }, ["Gloves"] = { - ["max"] = 29, - ["min"] = 17, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2634574895", - ["text"] = "While a Unique Enemy is in your Presence, +#% to Chaos Damage over Time Multiplier", - ["type"] = "implicit", - }, - }, + ["max"] = 29, + ["min"] = 17, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2634574895", + ["text"] = "While a Unique Enemy is in your Presence, +#% to Chaos Damage over Time Multiplier", + ["type"] = "implicit", + }, + }, ["1266_PhysicalDamage"] = { ["Gloves"] = { - ["max"] = 10.5, - ["min"] = 5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3032590688", - ["text"] = "Adds # to # Physical Damage to Attacks", - ["type"] = "implicit", - }, - }, + ["max"] = 10.5, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3032590688", + ["text"] = "Adds # to # Physical Damage to Attacks", + ["type"] = "implicit", + }, + }, ["1266_PhysicalDamagePinnaclePresence"] = { ["Gloves"] = { - ["max"] = 21.5, - ["min"] = 12, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3477311591", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Adds # to # Physical Damage to Attacks", - ["type"] = "implicit", - }, - }, + ["max"] = 21.5, + ["min"] = 12, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3477311591", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Adds # to # Physical Damage to Attacks", + ["type"] = "implicit", + }, + }, ["1266_PhysicalDamageUniquePresence"] = { ["Gloves"] = { - ["max"] = 14, - ["min"] = 8, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2521809744", - ["text"] = "While a Unique Enemy is in your Presence, Adds # to # Physical Damage to Attacks", - ["type"] = "implicit", - }, - }, + ["max"] = 14, + ["min"] = 8, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2521809744", + ["text"] = "While a Unique Enemy is in your Presence, Adds # to # Physical Damage to Attacks", + ["type"] = "implicit", + }, + }, ["1357_FireDamagePercentage"] = { ["Amulet"] = { - ["max"] = 30, - ["min"] = 15, - }, + ["max"] = 30, + ["min"] = 15, + }, ["Chest"] = { - ["max"] = 30, - ["min"] = 15, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3962278098", - ["text"] = "#% increased Fire Damage", - ["type"] = "implicit", - }, - }, + ["max"] = 30, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3962278098", + ["text"] = "#% increased Fire Damage", + ["type"] = "implicit", + }, + }, ["1357_FireDamagePercentagePinnaclePresence"] = { ["Amulet"] = { - ["max"] = 42, - ["min"] = 33, - }, + ["max"] = 42, + ["min"] = 33, + }, ["Chest"] = { - ["max"] = 42, - ["min"] = 33, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2782184338", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Fire Damage", - ["type"] = "implicit", - }, - }, + ["max"] = 42, + ["min"] = 33, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2782184338", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Fire Damage", + ["type"] = "implicit", + }, + }, ["1357_FireDamagePercentageUniquePresence"] = { ["Amulet"] = { - ["max"] = 36, - ["min"] = 24, - }, + ["max"] = 36, + ["min"] = 24, + }, ["Chest"] = { - ["max"] = 36, - ["min"] = 24, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1590336483", - ["text"] = "While a Unique Enemy is in your Presence, #% increased Fire Damage", - ["type"] = "implicit", - }, - }, + ["max"] = 36, + ["min"] = 24, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1590336483", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Fire Damage", + ["type"] = "implicit", + }, + }, ["1360_FireDamage"] = { ["Gloves"] = { - ["max"] = 18.5, - ["min"] = 9.5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1573130764", - ["text"] = "Adds # to # Fire Damage to Attacks", - ["type"] = "implicit", - }, - }, + ["max"] = 18.5, + ["min"] = 9.5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1573130764", + ["text"] = "Adds # to # Fire Damage to Attacks", + ["type"] = "implicit", + }, + }, ["1360_FireDamagePinnaclePresence"] = { ["Gloves"] = { - ["max"] = 38, - ["min"] = 20.5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3972399670", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Adds # to # Fire Damage to Attacks", - ["type"] = "implicit", - }, - }, + ["max"] = 38, + ["min"] = 20.5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3972399670", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Adds # to # Fire Damage to Attacks", + ["type"] = "implicit", + }, + }, ["1360_FireDamageUniquePresence"] = { ["Gloves"] = { - ["max"] = 25, - ["min"] = 14, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2067485824", - ["text"] = "While a Unique Enemy is in your Presence, Adds # to # Fire Damage to Attacks", - ["type"] = "implicit", - }, - }, + ["max"] = 25, + ["min"] = 14, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2067485824", + ["text"] = "While a Unique Enemy is in your Presence, Adds # to # Fire Damage to Attacks", + ["type"] = "implicit", + }, + }, ["1366_ColdDamagePercentage"] = { ["Amulet"] = { - ["max"] = 30, - ["min"] = 15, - }, + ["max"] = 30, + ["min"] = 15, + }, ["Chest"] = { - ["max"] = 30, - ["min"] = 15, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3291658075", - ["text"] = "#% increased Cold Damage", - ["type"] = "implicit", - }, - }, + ["max"] = 30, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3291658075", + ["text"] = "#% increased Cold Damage", + ["type"] = "implicit", + }, + }, ["1366_ColdDamagePercentagePinnaclePresence"] = { ["Amulet"] = { - ["max"] = 42, - ["min"] = 33, - }, + ["max"] = 42, + ["min"] = 33, + }, ["Chest"] = { - ["max"] = 42, - ["min"] = 33, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1576689223", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Cold Damage", - ["type"] = "implicit", - }, - }, + ["max"] = 42, + ["min"] = 33, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1576689223", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Cold Damage", + ["type"] = "implicit", + }, + }, ["1366_ColdDamagePercentageUniquePresence"] = { ["Amulet"] = { - ["max"] = 36, - ["min"] = 24, - }, + ["max"] = 36, + ["min"] = 24, + }, ["Chest"] = { - ["max"] = 36, - ["min"] = 24, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2127607252", - ["text"] = "While a Unique Enemy is in your Presence, #% increased Cold Damage", - ["type"] = "implicit", - }, - }, + ["max"] = 36, + ["min"] = 24, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2127607252", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Cold Damage", + ["type"] = "implicit", + }, + }, ["1369_ColdDamage"] = { ["Gloves"] = { - ["max"] = 17, - ["min"] = 8.5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_4067062424", - ["text"] = "Adds # to # Cold Damage to Attacks", - ["type"] = "implicit", - }, - }, + ["max"] = 17, + ["min"] = 8.5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_4067062424", + ["text"] = "Adds # to # Cold Damage to Attacks", + ["type"] = "implicit", + }, + }, ["1369_ColdDamagePinnaclePresence"] = { ["Gloves"] = { - ["max"] = 34, - ["min"] = 18, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1016130575", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Adds # to # Cold Damage to Attacks", - ["type"] = "implicit", - }, - }, + ["max"] = 34, + ["min"] = 18, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1016130575", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Adds # to # Cold Damage to Attacks", + ["type"] = "implicit", + }, + }, ["1369_ColdDamageUniquePresence"] = { ["Gloves"] = { - ["max"] = 22.5, - ["min"] = 12.5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_4057155645", - ["text"] = "While a Unique Enemy is in your Presence, Adds # to # Cold Damage to Attacks", - ["type"] = "implicit", - }, - }, + ["max"] = 22.5, + ["min"] = 12.5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_4057155645", + ["text"] = "While a Unique Enemy is in your Presence, Adds # to # Cold Damage to Attacks", + ["type"] = "implicit", + }, + }, ["1377_LightningDamagePercentage"] = { ["Amulet"] = { - ["max"] = 30, - ["min"] = 15, - }, + ["max"] = 30, + ["min"] = 15, + }, ["Chest"] = { - ["max"] = 30, - ["min"] = 15, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2231156303", - ["text"] = "#% increased Lightning Damage", - ["type"] = "implicit", - }, - }, + ["max"] = 30, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2231156303", + ["text"] = "#% increased Lightning Damage", + ["type"] = "implicit", + }, + }, ["1377_LightningDamagePercentagePinnaclePresence"] = { ["Amulet"] = { - ["max"] = 42, - ["min"] = 33, - }, + ["max"] = 42, + ["min"] = 33, + }, ["Chest"] = { - ["max"] = 42, - ["min"] = 33, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1328859059", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Lightning Damage", - ["type"] = "implicit", - }, - }, + ["max"] = 42, + ["min"] = 33, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1328859059", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Lightning Damage", + ["type"] = "implicit", + }, + }, ["1377_LightningDamagePercentageUniquePresence"] = { ["Amulet"] = { - ["max"] = 36, - ["min"] = 24, - }, + ["max"] = 36, + ["min"] = 24, + }, ["Chest"] = { - ["max"] = 36, - ["min"] = 24, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2668120423", - ["text"] = "While a Unique Enemy is in your Presence, #% increased Lightning Damage", - ["type"] = "implicit", - }, - }, + ["max"] = 36, + ["min"] = 24, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2668120423", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Lightning Damage", + ["type"] = "implicit", + }, + }, ["1380_LightningDamage"] = { ["Gloves"] = { - ["max"] = 21, - ["min"] = 11.5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1754445556", - ["text"] = "Adds # to # Lightning Damage to Attacks", - ["type"] = "implicit", - }, - }, + ["max"] = 21, + ["min"] = 11.5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1754445556", + ["text"] = "Adds # to # Lightning Damage to Attacks", + ["type"] = "implicit", + }, + }, ["1380_LightningDamagePinnaclePresence"] = { ["Gloves"] = { - ["max"] = 43, - ["min"] = 25, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2925105924", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Adds # to # Lightning Damage to Attacks", - ["type"] = "implicit", - }, - }, + ["max"] = 43, + ["min"] = 25, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2925105924", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Adds # to # Lightning Damage to Attacks", + ["type"] = "implicit", + }, + }, ["1380_LightningDamageUniquePresence"] = { ["Gloves"] = { - ["max"] = 28, - ["min"] = 17, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2111629859", - ["text"] = "While a Unique Enemy is in your Presence, Adds # to # Lightning Damage to Attacks", - ["type"] = "implicit", - }, - }, + ["max"] = 28, + ["min"] = 17, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2111629859", + ["text"] = "While a Unique Enemy is in your Presence, Adds # to # Lightning Damage to Attacks", + ["type"] = "implicit", + }, + }, ["1385_IncreasedChaosDamage"] = { ["Amulet"] = { - ["max"] = 30, - ["min"] = 15, - }, + ["max"] = 30, + ["min"] = 15, + }, ["Chest"] = { - ["max"] = 30, - ["min"] = 15, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_736967255", - ["text"] = "#% increased Chaos Damage", - ["type"] = "implicit", - }, - }, + ["max"] = 30, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_736967255", + ["text"] = "#% increased Chaos Damage", + ["type"] = "implicit", + }, + }, ["1385_IncreasedChaosDamagePinnaclePresence"] = { ["Amulet"] = { - ["max"] = 42, - ["min"] = 33, - }, + ["max"] = 42, + ["min"] = 33, + }, ["Chest"] = { - ["max"] = 42, - ["min"] = 33, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2070979181", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Chaos Damage", - ["type"] = "implicit", - }, - }, + ["max"] = 42, + ["min"] = 33, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2070979181", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Chaos Damage", + ["type"] = "implicit", + }, + }, ["1385_IncreasedChaosDamageUniquePresence"] = { ["Amulet"] = { - ["max"] = 36, - ["min"] = 24, - }, + ["max"] = 36, + ["min"] = 24, + }, ["Chest"] = { - ["max"] = 36, - ["min"] = 24, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2875239648", - ["text"] = "While a Unique Enemy is in your Presence, #% increased Chaos Damage", - ["type"] = "implicit", - }, - }, + ["max"] = 36, + ["min"] = 24, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2875239648", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Chaos Damage", + ["type"] = "implicit", + }, + }, ["1387_ChaosDamage"] = { ["Gloves"] = { - ["max"] = 14, - ["min"] = 7.5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_674553446", - ["text"] = "Adds # to # Chaos Damage to Attacks", - ["type"] = "implicit", - }, - }, + ["max"] = 14, + ["min"] = 7.5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_674553446", + ["text"] = "Adds # to # Chaos Damage to Attacks", + ["type"] = "implicit", + }, + }, ["1387_ChaosDamagePinnaclePresence"] = { ["Gloves"] = { - ["max"] = 28.5, - ["min"] = 15.5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3953801646", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Adds # to # Chaos Damage to Attacks", - ["type"] = "implicit", - }, - }, + ["max"] = 28.5, + ["min"] = 15.5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3953801646", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Adds # to # Chaos Damage to Attacks", + ["type"] = "implicit", + }, + }, ["1387_ChaosDamageUniquePresence"] = { ["Gloves"] = { - ["max"] = 19, - ["min"] = 10.5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2444070126", - ["text"] = "While a Unique Enemy is in your Presence, Adds # to # Chaos Damage to Attacks", - ["type"] = "implicit", - }, - }, + ["max"] = 19, + ["min"] = 10.5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2444070126", + ["text"] = "While a Unique Enemy is in your Presence, Adds # to # Chaos Damage to Attacks", + ["type"] = "implicit", + }, + }, ["1403_SpellAddedPhysicalDamage"] = { ["Helmet"] = { - ["max"] = 22.5, - ["min"] = 11.5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2435536961", - ["text"] = "Adds # to # Physical Damage to Spells", - ["type"] = "implicit", - }, - }, + ["max"] = 22.5, + ["min"] = 11.5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2435536961", + ["text"] = "Adds # to # Physical Damage to Spells", + ["type"] = "implicit", + }, + }, ["1403_SpellAddedPhysicalDamagePinnaclePresence"] = { ["Helmet"] = { - ["max"] = 46, - ["min"] = 24.5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_485268361", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Adds # to # Physical Damage to Spells", - ["type"] = "implicit", - }, - }, + ["max"] = 46, + ["min"] = 24.5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_485268361", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Adds # to # Physical Damage to Spells", + ["type"] = "implicit", + }, + }, ["1403_SpellAddedPhysicalDamageUniquePresence"] = { ["Helmet"] = { - ["max"] = 30.5, - ["min"] = 17, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_4272276606", - ["text"] = "While a Unique Enemy is in your Presence, Adds # to # Physical Damage to Spells", - ["type"] = "implicit", - }, - }, + ["max"] = 30.5, + ["min"] = 17, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_4272276606", + ["text"] = "While a Unique Enemy is in your Presence, Adds # to # Physical Damage to Spells", + ["type"] = "implicit", + }, + }, ["1404_SpellAddedFireDamage"] = { ["Helmet"] = { - ["max"] = 28, - ["min"] = 15, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1133016593", - ["text"] = "Adds # to # Fire Damage to Spells", - ["type"] = "implicit", - }, - }, + ["max"] = 28, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1133016593", + ["text"] = "Adds # to # Fire Damage to Spells", + ["type"] = "implicit", + }, + }, ["1404_SpellAddedFireDamagePinnaclePresence"] = { ["Helmet"] = { - ["max"] = 56, - ["min"] = 30.5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3954869480", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Adds # to # Fire Damage to Spells", - ["type"] = "implicit", - }, - }, + ["max"] = 56, + ["min"] = 30.5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3954869480", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Adds # to # Fire Damage to Spells", + ["type"] = "implicit", + }, + }, ["1404_SpellAddedFireDamageUniquePresence"] = { ["Helmet"] = { - ["max"] = 37.5, - ["min"] = 21.5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_661603414", - ["text"] = "While a Unique Enemy is in your Presence, Adds # to # Fire Damage to Spells", - ["type"] = "implicit", - }, - }, + ["max"] = 37.5, + ["min"] = 21.5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_661603414", + ["text"] = "While a Unique Enemy is in your Presence, Adds # to # Fire Damage to Spells", + ["type"] = "implicit", + }, + }, ["1405_SpellAddedColdDamage"] = { ["Helmet"] = { - ["max"] = 25, - ["min"] = 13, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2469416729", - ["text"] = "Adds # to # Cold Damage to Spells", - ["type"] = "implicit", - }, - }, + ["max"] = 25, + ["min"] = 13, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2469416729", + ["text"] = "Adds # to # Cold Damage to Spells", + ["type"] = "implicit", + }, + }, ["1405_SpellAddedColdDamagePinnaclePresence"] = { ["Helmet"] = { - ["max"] = 50.5, - ["min"] = 27.5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3349767748", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Adds # to # Cold Damage to Spells", - ["type"] = "implicit", - }, - }, + ["max"] = 50.5, + ["min"] = 27.5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3349767748", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Adds # to # Cold Damage to Spells", + ["type"] = "implicit", + }, + }, ["1405_SpellAddedColdDamageUniquePresence"] = { ["Helmet"] = { - ["max"] = 33.5, - ["min"] = 19, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1018817416", - ["text"] = "While a Unique Enemy is in your Presence, Adds # to # Cold Damage to Spells", - ["type"] = "implicit", - }, - }, + ["max"] = 33.5, + ["min"] = 19, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1018817416", + ["text"] = "While a Unique Enemy is in your Presence, Adds # to # Cold Damage to Spells", + ["type"] = "implicit", + }, + }, ["1406_SpellAddedLightningDamage"] = { ["Helmet"] = { - ["max"] = 32.5, - ["min"] = 18, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2831165374", - ["text"] = "Adds # to # Lightning Damage to Spells", - ["type"] = "implicit", - }, - }, + ["max"] = 32.5, + ["min"] = 18, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2831165374", + ["text"] = "Adds # to # Lightning Damage to Spells", + ["type"] = "implicit", + }, + }, ["1406_SpellAddedLightningDamagePinnaclePresence"] = { ["Helmet"] = { - ["max"] = 65, - ["min"] = 37.5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3874289", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Adds # to # Lightning Damage to Spells", - ["type"] = "implicit", - }, - }, + ["max"] = 65, + ["min"] = 37.5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3874289", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Adds # to # Lightning Damage to Spells", + ["type"] = "implicit", + }, + }, ["1406_SpellAddedLightningDamageUniquePresence"] = { ["Helmet"] = { - ["max"] = 43, - ["min"] = 26, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_371531651", - ["text"] = "While a Unique Enemy is in your Presence, Adds # to # Lightning Damage to Spells", - ["type"] = "implicit", - }, - }, + ["max"] = 43, + ["min"] = 26, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_371531651", + ["text"] = "While a Unique Enemy is in your Presence, Adds # to # Lightning Damage to Spells", + ["type"] = "implicit", + }, + }, ["1407_SpellAddedChaosDamage"] = { ["Helmet"] = { - ["max"] = 21, - ["min"] = 11, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2300399854", - ["text"] = "Adds # to # Chaos Damage to Spells", - ["type"] = "implicit", - }, - }, + ["max"] = 21, + ["min"] = 11, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2300399854", + ["text"] = "Adds # to # Chaos Damage to Spells", + ["type"] = "implicit", + }, + }, ["1407_SpellAddedChaosDamagePinnaclePresence"] = { ["Helmet"] = { - ["max"] = 43, - ["min"] = 23.5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3206883665", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Adds # to # Chaos Damage to Spells", - ["type"] = "implicit", - }, - }, + ["max"] = 43, + ["min"] = 23.5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3206883665", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Adds # to # Chaos Damage to Spells", + ["type"] = "implicit", + }, + }, ["1407_SpellAddedChaosDamageUniquePresence"] = { ["Helmet"] = { - ["max"] = 28, - ["min"] = 15.5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1554912650", - ["text"] = "While a Unique Enemy is in your Presence, Adds # to # Chaos Damage to Spells", - ["type"] = "implicit", - }, - }, + ["max"] = 28, + ["min"] = 15.5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1554912650", + ["text"] = "While a Unique Enemy is in your Presence, Adds # to # Chaos Damage to Spells", + ["type"] = "implicit", + }, + }, ["1410_IncreasedAttackSpeed"] = { ["Gloves"] = { - ["max"] = 13, - ["min"] = 8, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_681332047", - ["text"] = "#% increased Attack Speed", - ["type"] = "implicit", - }, - }, + ["max"] = 13, + ["min"] = 8, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_681332047", + ["text"] = "#% increased Attack Speed", + ["type"] = "implicit", + }, + }, ["1410_IncreasedAttackSpeedPinnaclePresence"] = { ["Gloves"] = { - ["max"] = 21, - ["min"] = 18, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2446980928", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Attack Speed", - ["type"] = "implicit", - }, - }, + ["max"] = 21, + ["min"] = 18, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2446980928", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Attack Speed", + ["type"] = "implicit", + }, + }, ["1410_IncreasedAttackSpeedUniquePresence"] = { ["Gloves"] = { - ["max"] = 17, - ["min"] = 13, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3401410854", - ["text"] = "While a Unique Enemy is in your Presence, #% increased Attack Speed", - ["type"] = "implicit", - }, - }, + ["max"] = 17, + ["min"] = 13, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3401410854", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Attack Speed", + ["type"] = "implicit", + }, + }, ["1446_IncreasedCastSpeed"] = { ["Helmet"] = { - ["max"] = 13, - ["min"] = 8, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2891184298", - ["text"] = "#% increased Cast Speed", - ["type"] = "implicit", - }, - }, + ["max"] = 13, + ["min"] = 8, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2891184298", + ["text"] = "#% increased Cast Speed", + ["type"] = "implicit", + }, + }, ["1446_IncreasedCastSpeedPinnaclePresence"] = { ["Helmet"] = { - ["max"] = 21, - ["min"] = 18, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_4098747485", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Cast Speed", - ["type"] = "implicit", - }, - }, + ["max"] = 21, + ["min"] = 18, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_4098747485", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Cast Speed", + ["type"] = "implicit", + }, + }, ["1446_IncreasedCastSpeedUniquePresence"] = { ["Helmet"] = { - ["max"] = 17, - ["min"] = 13, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2016247664", - ["text"] = "While a Unique Enemy is in your Presence, #% increased Cast Speed", - ["type"] = "implicit", - }, - }, + ["max"] = 17, + ["min"] = 13, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2016247664", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Cast Speed", + ["type"] = "implicit", + }, + }, ["1458_SpellCriticalStrikeChance"] = { ["Amulet"] = { - ["max"] = 45, - ["min"] = 28, - }, + ["max"] = 45, + ["min"] = 28, + }, ["Helmet"] = { - ["max"] = 45, - ["min"] = 28, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_737908626", - ["text"] = "#% increased Spell Critical Strike Chance", - ["type"] = "implicit", - }, - }, + ["max"] = 45, + ["min"] = 28, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_737908626", + ["text"] = "#% increased Spell Critical Strike Chance", + ["type"] = "implicit", + }, + }, ["1458_SpellCriticalStrikeChancePinnaclePresence"] = { ["Amulet"] = { - ["max"] = 69, - ["min"] = 58, - }, + ["max"] = 69, + ["min"] = 58, + }, ["Helmet"] = { - ["max"] = 69, - ["min"] = 58, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1412947753", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Spell Critical Strike Chance", - ["type"] = "implicit", - }, - }, + ["max"] = 69, + ["min"] = 58, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1412947753", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Spell Critical Strike Chance", + ["type"] = "implicit", + }, + }, ["1458_SpellCriticalStrikeChanceUniquePresence"] = { ["Amulet"] = { - ["max"] = 57, - ["min"] = 43, - }, + ["max"] = 57, + ["min"] = 43, + }, ["Helmet"] = { - ["max"] = 57, - ["min"] = 43, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_4191234472", - ["text"] = "While a Unique Enemy is in your Presence, #% increased Spell Critical Strike Chance", - ["type"] = "implicit", - }, - }, + ["max"] = 57, + ["min"] = 43, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_4191234472", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Spell Critical Strike Chance", + ["type"] = "implicit", + }, + }, ["1491_AttackCriticalStrikeMultiplier"] = { ["Chest"] = { - ["max"] = 31, - ["min"] = 20, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3714003708", - ["text"] = "+#% to Critical Strike Multiplier for Attack Damage", - ["type"] = "implicit", - }, - }, + ["max"] = 31, + ["min"] = 20, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3714003708", + ["text"] = "+#% to Critical Strike Multiplier for Attack Damage", + ["type"] = "implicit", + }, + }, ["1491_AttackCriticalStrikeMultiplierPinnaclePresence"] = { ["Chest"] = { - ["max"] = 43, - ["min"] = 36, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2825010848", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, +#% to Critical Strike Multiplier for Attack Damage", - ["type"] = "implicit", - }, - }, + ["max"] = 43, + ["min"] = 36, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2825010848", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, +#% to Critical Strike Multiplier for Attack Damage", + ["type"] = "implicit", + }, + }, ["1491_AttackCriticalStrikeMultiplierUniquePresence"] = { ["Chest"] = { - ["max"] = 37, - ["min"] = 28, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_26879978", - ["text"] = "While a Unique Enemy is in your Presence, +#% to Critical Strike Multiplier for Attack Damage", - ["type"] = "implicit", - }, - }, + ["max"] = 37, + ["min"] = 28, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_26879978", + ["text"] = "While a Unique Enemy is in your Presence, +#% to Critical Strike Multiplier for Attack Damage", + ["type"] = "implicit", + }, + }, ["1492_SpellCriticalStrikeMultiplier"] = { ["Chest"] = { - ["max"] = 31, - ["min"] = 20, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_274716455", - ["text"] = "+#% to Critical Strike Multiplier for Spell Damage", - ["type"] = "implicit", - }, - }, + ["max"] = 31, + ["min"] = 20, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_274716455", + ["text"] = "+#% to Critical Strike Multiplier for Spell Damage", + ["type"] = "implicit", + }, + }, ["1492_SpellCriticalStrikeMultiplierPinnaclePresence"] = { ["Chest"] = { - ["max"] = 43, - ["min"] = 36, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2955927568", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, +#% to Critical Strike Multiplier for Spell Damage", - ["type"] = "implicit", - }, - }, + ["max"] = 43, + ["min"] = 36, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2955927568", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, +#% to Critical Strike Multiplier for Spell Damage", + ["type"] = "implicit", + }, + }, ["1492_SpellCriticalStrikeMultiplierUniquePresence"] = { ["Chest"] = { - ["max"] = 37, - ["min"] = 28, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_865433929", - ["text"] = "While a Unique Enemy is in your Presence, +#% to Critical Strike Multiplier for Spell Damage", - ["type"] = "implicit", - }, - }, + ["max"] = 37, + ["min"] = 28, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_865433929", + ["text"] = "While a Unique Enemy is in your Presence, +#% to Critical Strike Multiplier for Spell Damage", + ["type"] = "implicit", + }, + }, ["1517_StunThresholdReduction"] = { ["Gloves"] = { - ["max"] = 17, - ["min"] = 6, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1443060084", - ["text"] = "#% reduced Enemy Stun Threshold", - ["type"] = "implicit", - }, - }, + ["max"] = 17, + ["min"] = 6, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1443060084", + ["text"] = "#% reduced Enemy Stun Threshold", + ["type"] = "implicit", + }, + }, ["1517_StunThresholdReductionPinnaclePresence"] = { ["Gloves"] = { - ["max"] = 29, - ["min"] = 22, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2169620689", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% reduced Enemy Stun Threshold", - ["type"] = "implicit", - }, - }, + ["max"] = 29, + ["min"] = 22, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2169620689", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% reduced Enemy Stun Threshold", + ["type"] = "implicit", + }, + }, ["1517_StunThresholdReductionUniquePresence"] = { ["Gloves"] = { - ["max"] = 23, - ["min"] = 14, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_944211673", - ["text"] = "While a Unique Enemy is in your Presence, #% reduced Enemy Stun Threshold", - ["type"] = "implicit", - }, - }, + ["max"] = 23, + ["min"] = 14, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_944211673", + ["text"] = "While a Unique Enemy is in your Presence, #% reduced Enemy Stun Threshold", + ["type"] = "implicit", + }, + }, ["1623_MaximumFireResistanceEldritch"] = { ["Chest"] = { - ["max"] = 3, - ["min"] = 1, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_4095671657", - ["text"] = "+#% to maximum Fire Resistance", - ["type"] = "implicit", - }, - }, + ["max"] = 3, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_4095671657", + ["text"] = "+#% to maximum Fire Resistance", + ["type"] = "implicit", + }, + }, ["1623_MaximumFireResistanceEldritchPinnaclePresence"] = { ["Chest"] = { - ["max"] = 5, - ["min"] = 4, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1133929401", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, +#% to maximum Fire Resistance", - ["type"] = "implicit", - }, - }, + ["max"] = 5, + ["min"] = 4, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1133929401", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, +#% to maximum Fire Resistance", + ["type"] = "implicit", + }, + }, ["1623_MaximumFireResistanceEldritchUniquePresence"] = { ["Chest"] = { - ["max"] = 4, - ["min"] = 2, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_475684070", - ["text"] = "While a Unique Enemy is in your Presence, +#% to maximum Fire Resistance", - ["type"] = "implicit", - }, - }, + ["max"] = 4, + ["min"] = 2, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_475684070", + ["text"] = "While a Unique Enemy is in your Presence, +#% to maximum Fire Resistance", + ["type"] = "implicit", + }, + }, ["1623_MaximumFireResistanceImplicit"] = { ["Boots"] = { - ["max"] = 2, - ["min"] = 1, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_4095671657", - ["text"] = "+#% to maximum Fire Resistance", - ["type"] = "implicit", - }, - }, + ["max"] = 2, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_4095671657", + ["text"] = "+#% to maximum Fire Resistance", + ["type"] = "implicit", + }, + }, ["1623_MaximumFireResistanceImplicitPinnaclePresence"] = { ["Boots"] = { - ["max"] = 4, - ["min"] = 3, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1133929401", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, +#% to maximum Fire Resistance", - ["type"] = "implicit", - }, - }, + ["max"] = 4, + ["min"] = 3, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1133929401", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, +#% to maximum Fire Resistance", + ["type"] = "implicit", + }, + }, ["1623_MaximumFireResistanceImplicitUniquePresence"] = { ["Boots"] = { - ["max"] = 3, - ["min"] = 2, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_475684070", - ["text"] = "While a Unique Enemy is in your Presence, +#% to maximum Fire Resistance", - ["type"] = "implicit", - }, - }, + ["max"] = 3, + ["min"] = 2, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_475684070", + ["text"] = "While a Unique Enemy is in your Presence, +#% to maximum Fire Resistance", + ["type"] = "implicit", + }, + }, ["1625_FireResistance"] = { ["Boots"] = { - ["max"] = 24, - ["min"] = 13, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3372524247", - ["text"] = "+#% to Fire Resistance", - ["type"] = "implicit", - }, - }, + ["max"] = 24, + ["min"] = 13, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3372524247", + ["text"] = "+#% to Fire Resistance", + ["type"] = "implicit", + }, + }, ["1625_FireResistancePinnaclePresence"] = { ["Boots"] = { - ["max"] = 36, - ["min"] = 29, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1299790658", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, +#% to Fire Resistance", - ["type"] = "implicit", - }, - }, + ["max"] = 36, + ["min"] = 29, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1299790658", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, +#% to Fire Resistance", + ["type"] = "implicit", + }, + }, ["1625_FireResistanceUniquePresence"] = { ["Boots"] = { - ["max"] = 30, - ["min"] = 21, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3521653836", - ["text"] = "While a Unique Enemy is in your Presence, +#% to Fire Resistance", - ["type"] = "implicit", - }, - }, + ["max"] = 30, + ["min"] = 21, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3521653836", + ["text"] = "While a Unique Enemy is in your Presence, +#% to Fire Resistance", + ["type"] = "implicit", + }, + }, ["1629_MaximumColdResistanceEldritch"] = { ["Chest"] = { - ["max"] = 3, - ["min"] = 1, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3676141501", - ["text"] = "+#% to maximum Cold Resistance", - ["type"] = "implicit", - }, - }, + ["max"] = 3, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3676141501", + ["text"] = "+#% to maximum Cold Resistance", + ["type"] = "implicit", + }, + }, ["1629_MaximumColdResistanceEldritchPinnaclePresence"] = { ["Chest"] = { - ["max"] = 5, - ["min"] = 4, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3415855998", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, +#% to maximum Cold Resistance", - ["type"] = "implicit", - }, - }, + ["max"] = 5, + ["min"] = 4, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3415855998", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, +#% to maximum Cold Resistance", + ["type"] = "implicit", + }, + }, ["1629_MaximumColdResistanceEldritchUniquePresence"] = { ["Chest"] = { - ["max"] = 4, - ["min"] = 2, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3444931985", - ["text"] = "While a Unique Enemy is in your Presence, +#% to maximum Cold Resistance", - ["type"] = "implicit", - }, - }, + ["max"] = 4, + ["min"] = 2, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3444931985", + ["text"] = "While a Unique Enemy is in your Presence, +#% to maximum Cold Resistance", + ["type"] = "implicit", + }, + }, ["1629_MaximumColdResistanceImplicit"] = { ["Gloves"] = { - ["max"] = 2, - ["min"] = 1, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3676141501", - ["text"] = "+#% to maximum Cold Resistance", - ["type"] = "implicit", - }, - }, + ["max"] = 2, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3676141501", + ["text"] = "+#% to maximum Cold Resistance", + ["type"] = "implicit", + }, + }, ["1629_MaximumColdResistancePinnaclePresence"] = { ["Gloves"] = { - ["max"] = 4, - ["min"] = 3, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3415855998", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, +#% to maximum Cold Resistance", - ["type"] = "implicit", - }, - }, + ["max"] = 4, + ["min"] = 3, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3415855998", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, +#% to maximum Cold Resistance", + ["type"] = "implicit", + }, + }, ["1629_MaximumColdResistanceUniquePresence"] = { ["Gloves"] = { - ["max"] = 3, - ["min"] = 2, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3444931985", - ["text"] = "While a Unique Enemy is in your Presence, +#% to maximum Cold Resistance", - ["type"] = "implicit", - }, - }, + ["max"] = 3, + ["min"] = 2, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3444931985", + ["text"] = "While a Unique Enemy is in your Presence, +#% to maximum Cold Resistance", + ["type"] = "implicit", + }, + }, ["1631_ColdResistance"] = { ["Boots"] = { - ["max"] = 24, - ["min"] = 13, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_4220027924", - ["text"] = "+#% to Cold Resistance", - ["type"] = "implicit", - }, - }, + ["max"] = 24, + ["min"] = 13, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_4220027924", + ["text"] = "+#% to Cold Resistance", + ["type"] = "implicit", + }, + }, ["1631_ColdResistancePinnaclePresence"] = { ["Boots"] = { - ["max"] = 36, - ["min"] = 29, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3864103630", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, +#% to Cold Resistance", - ["type"] = "implicit", - }, - }, + ["max"] = 36, + ["min"] = 29, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3864103630", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, +#% to Cold Resistance", + ["type"] = "implicit", + }, + }, ["1631_ColdResistanceUniquePresence"] = { ["Boots"] = { - ["max"] = 30, - ["min"] = 21, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2240274773", - ["text"] = "While a Unique Enemy is in your Presence, +#% to Cold Resistance", - ["type"] = "implicit", - }, - }, + ["max"] = 30, + ["min"] = 21, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2240274773", + ["text"] = "While a Unique Enemy is in your Presence, +#% to Cold Resistance", + ["type"] = "implicit", + }, + }, ["1634_MaximumLightningResistanceEldritch"] = { ["Chest"] = { - ["max"] = 3, - ["min"] = 1, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1011760251", - ["text"] = "+#% to maximum Lightning Resistance", - ["type"] = "implicit", - }, - }, + ["max"] = 3, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1011760251", + ["text"] = "+#% to maximum Lightning Resistance", + ["type"] = "implicit", + }, + }, ["1634_MaximumLightningResistanceEldritchPinnaclePresence"] = { ["Chest"] = { - ["max"] = 5, - ["min"] = 4, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_4136085904", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, +#% to maximum Lightning Resistance", - ["type"] = "implicit", - }, - }, + ["max"] = 5, + ["min"] = 4, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_4136085904", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, +#% to maximum Lightning Resistance", + ["type"] = "implicit", + }, + }, ["1634_MaximumLightningResistanceEldritchUniquePresence"] = { ["Chest"] = { - ["max"] = 4, - ["min"] = 2, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_789714862", - ["text"] = "While a Unique Enemy is in your Presence, +#% to maximum Lightning Resistance", - ["type"] = "implicit", - }, - }, + ["max"] = 4, + ["min"] = 2, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_789714862", + ["text"] = "While a Unique Enemy is in your Presence, +#% to maximum Lightning Resistance", + ["type"] = "implicit", + }, + }, ["1634_MaximumLightningResistanceImplicit"] = { ["Helmet"] = { - ["max"] = 2, - ["min"] = 1, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1011760251", - ["text"] = "+#% to maximum Lightning Resistance", - ["type"] = "implicit", - }, - }, + ["max"] = 2, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1011760251", + ["text"] = "+#% to maximum Lightning Resistance", + ["type"] = "implicit", + }, + }, ["1634_MaximumLightningResistanceImplicitPinnaclePresence"] = { ["Helmet"] = { - ["max"] = 4, - ["min"] = 3, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_4136085904", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, +#% to maximum Lightning Resistance", - ["type"] = "implicit", - }, - }, + ["max"] = 4, + ["min"] = 3, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_4136085904", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, +#% to maximum Lightning Resistance", + ["type"] = "implicit", + }, + }, ["1634_MaximumLightningResistanceImplicitUniquePresence"] = { ["Helmet"] = { - ["max"] = 3, - ["min"] = 2, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_789714862", - ["text"] = "While a Unique Enemy is in your Presence, +#% to maximum Lightning Resistance", - ["type"] = "implicit", - }, - }, + ["max"] = 3, + ["min"] = 2, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_789714862", + ["text"] = "While a Unique Enemy is in your Presence, +#% to maximum Lightning Resistance", + ["type"] = "implicit", + }, + }, ["1636_LightningResistance"] = { ["Boots"] = { - ["max"] = 24, - ["min"] = 13, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1671376347", - ["text"] = "+#% to Lightning Resistance", - ["type"] = "implicit", - }, - }, + ["max"] = 24, + ["min"] = 13, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1671376347", + ["text"] = "+#% to Lightning Resistance", + ["type"] = "implicit", + }, + }, ["1636_LightningResistancePinnaclePresence"] = { ["Boots"] = { - ["max"] = 36, - ["min"] = 29, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3980173235", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, +#% to Lightning Resistance", - ["type"] = "implicit", - }, - }, + ["max"] = 36, + ["min"] = 29, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3980173235", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, +#% to Lightning Resistance", + ["type"] = "implicit", + }, + }, ["1636_LightningResistanceUniquePresence"] = { ["Boots"] = { - ["max"] = 30, - ["min"] = 21, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3556129896", - ["text"] = "While a Unique Enemy is in your Presence, +#% to Lightning Resistance", - ["type"] = "implicit", - }, - }, + ["max"] = 30, + ["min"] = 21, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3556129896", + ["text"] = "While a Unique Enemy is in your Presence, +#% to Lightning Resistance", + ["type"] = "implicit", + }, + }, ["1640_MaximumChaosResistanceImplicit"] = { ["Chest"] = { - ["max"] = 3, - ["min"] = 1, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1301765461", - ["text"] = "+#% to maximum Chaos Resistance", - ["type"] = "implicit", - }, - }, + ["max"] = 3, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1301765461", + ["text"] = "+#% to maximum Chaos Resistance", + ["type"] = "implicit", + }, + }, ["1640_MaximumChaosResistanceImplicitPinnaclePresence"] = { ["Chest"] = { - ["max"] = 5, - ["min"] = 4, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_944522962", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, +#% to maximum Chaos Resistance", - ["type"] = "implicit", - }, - }, + ["max"] = 5, + ["min"] = 4, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_944522962", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, +#% to maximum Chaos Resistance", + ["type"] = "implicit", + }, + }, ["1640_MaximumChaosResistanceImplicitUniquePresence"] = { ["Chest"] = { - ["max"] = 4, - ["min"] = 2, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_575726461", - ["text"] = "While a Unique Enemy is in your Presence, +#% to maximum Chaos Resistance", - ["type"] = "implicit", - }, - }, + ["max"] = 4, + ["min"] = 2, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_575726461", + ["text"] = "While a Unique Enemy is in your Presence, +#% to maximum Chaos Resistance", + ["type"] = "implicit", + }, + }, ["1641_ChaosResistance"] = { ["Boots"] = { - ["max"] = 17, - ["min"] = 6, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2923486259", - ["text"] = "+#% to Chaos Resistance", - ["type"] = "implicit", - }, - }, + ["max"] = 17, + ["min"] = 6, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2923486259", + ["text"] = "+#% to Chaos Resistance", + ["type"] = "implicit", + }, + }, ["1641_ChaosResistancePinnaclePresence"] = { ["Boots"] = { - ["max"] = 29, - ["min"] = 22, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_74135418", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, +#% to Chaos Resistance", - ["type"] = "implicit", - }, - }, + ["max"] = 29, + ["min"] = 22, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_74135418", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, +#% to Chaos Resistance", + ["type"] = "implicit", + }, + }, ["1641_ChaosResistanceUniquePresence"] = { ["Boots"] = { - ["max"] = 23, - ["min"] = 14, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_744196525", - ["text"] = "While a Unique Enemy is in your Presence, +#% to Chaos Resistance", - ["type"] = "implicit", - }, - }, + ["max"] = 23, + ["min"] = 14, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_744196525", + ["text"] = "While a Unique Enemy is in your Presence, +#% to Chaos Resistance", + ["type"] = "implicit", + }, + }, ["1642_MaximumResistances"] = { ["Amulet"] = { - ["max"] = 2, - ["min"] = 1, - }, + ["max"] = 2, + ["min"] = 1, + }, ["Chest"] = { - ["max"] = 2, - ["min"] = 1, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_569299859", - ["text"] = "+#% to all maximum Resistances", - ["type"] = "implicit", - }, - }, + ["max"] = 2, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_569299859", + ["text"] = "+#% to all maximum Resistances", + ["type"] = "implicit", + }, + }, ["1642_MaximumResistancesPinnaclePresence"] = { ["Amulet"] = { - ["max"] = 4, - ["min"] = 3, - }, + ["max"] = 4, + ["min"] = 3, + }, ["Chest"] = { - ["max"] = 4, - ["min"] = 3, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_673499528", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, +#% to all maximum Resistances", - ["type"] = "implicit", - }, - }, + ["max"] = 4, + ["min"] = 3, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_673499528", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, +#% to all maximum Resistances", + ["type"] = "implicit", + }, + }, ["1642_MaximumResistancesUniquePresence"] = { ["Amulet"] = { - ["max"] = 3, - ["min"] = 2, - }, + ["max"] = 3, + ["min"] = 2, + }, ["Chest"] = { - ["max"] = 3, - ["min"] = 2, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3062531896", - ["text"] = "While a Unique Enemy is in your Presence, +#% to all maximum Resistances", - ["type"] = "implicit", - }, - }, + ["max"] = 3, + ["min"] = 2, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3062531896", + ["text"] = "While a Unique Enemy is in your Presence, +#% to all maximum Resistances", + ["type"] = "implicit", + }, + }, ["1766_MinionLife"] = { ["Helmet"] = { - ["max"] = 29, - ["min"] = 14, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_770672621", - ["text"] = "Minions have #% increased maximum Life", - ["type"] = "implicit", - }, - }, + ["max"] = 29, + ["min"] = 14, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_770672621", + ["text"] = "Minions have #% increased maximum Life", + ["type"] = "implicit", + }, + }, ["1766_MinionLifePinnaclePresence"] = { ["Helmet"] = { - ["max"] = 41, - ["min"] = 32, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_4057257145", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Minions have #% increased maximum Life", - ["type"] = "implicit", - }, - }, + ["max"] = 41, + ["min"] = 32, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_4057257145", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Minions have #% increased maximum Life", + ["type"] = "implicit", + }, + }, ["1766_MinionLifeUniquePresence"] = { ["Helmet"] = { - ["max"] = 35, - ["min"] = 23, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3044748809", - ["text"] = "While a Unique Enemy is in your Presence, Minions have #% increased maximum Life", - ["type"] = "implicit", - }, - }, + ["max"] = 35, + ["min"] = 23, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3044748809", + ["text"] = "While a Unique Enemy is in your Presence, Minions have #% increased maximum Life", + ["type"] = "implicit", + }, + }, ["1769_MinionRunSpeed"] = { ["Helmet"] = { - ["max"] = 22, - ["min"] = 11, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_174664100", - ["text"] = "Minions have #% increased Movement Speed", - ["type"] = "implicit", - }, - }, + ["max"] = 22, + ["min"] = 11, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_174664100", + ["text"] = "Minions have #% increased Movement Speed", + ["type"] = "implicit", + }, + }, ["1769_MinionRunSpeedPinnaclePresence"] = { ["Helmet"] = { - ["max"] = 34, - ["min"] = 25, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2809900883", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Minions have #% increased Movement Speed", - ["type"] = "implicit", - }, - }, + ["max"] = 34, + ["min"] = 25, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2809900883", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Minions have #% increased Movement Speed", + ["type"] = "implicit", + }, + }, ["1769_MinionRunSpeedUniquePresence"] = { ["Helmet"] = { - ["max"] = 28, - ["min"] = 16, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_93625449", - ["text"] = "While a Unique Enemy is in your Presence, Minions have #% increased Movement Speed", - ["type"] = "implicit", - }, - }, + ["max"] = 28, + ["min"] = 16, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_93625449", + ["text"] = "While a Unique Enemy is in your Presence, Minions have #% increased Movement Speed", + ["type"] = "implicit", + }, + }, ["1798_MovementVelocity"] = { ["Amulet"] = { - ["max"] = 10, - ["min"] = 5, - }, + ["max"] = 10, + ["min"] = 5, + }, ["Boots"] = { - ["max"] = 10, - ["min"] = 5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2250533757", - ["text"] = "#% increased Movement Speed", - ["type"] = "implicit", - }, - }, + ["max"] = 10, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2250533757", + ["text"] = "#% increased Movement Speed", + ["type"] = "implicit", + }, + }, ["1798_MovementVelocityPinnaclePresence"] = { ["Amulet"] = { - ["max"] = 16, - ["min"] = 13, - }, + ["max"] = 16, + ["min"] = 13, + }, ["Boots"] = { - ["max"] = 16, - ["min"] = 13, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1702124724", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Movement Speed", - ["type"] = "implicit", - }, - }, + ["max"] = 16, + ["min"] = 13, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1702124724", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Movement Speed", + ["type"] = "implicit", + }, + }, ["1798_MovementVelocityUniquePresence"] = { ["Amulet"] = { - ["max"] = 13, - ["min"] = 9, - }, + ["max"] = 13, + ["min"] = 9, + }, ["Boots"] = { - ["max"] = 13, - ["min"] = 9, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3019083030", - ["text"] = "While a Unique Enemy is in your Presence, #% increased Movement Speed", - ["type"] = "implicit", - }, - }, + ["max"] = 13, + ["min"] = 9, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3019083030", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Movement Speed", + ["type"] = "implicit", + }, + }, ["1845_AvoidFreeze"] = { ["Boots"] = { - ["max"] = 50, - ["min"] = 33, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1514829491", - ["text"] = "#% chance to Avoid being Frozen", - ["type"] = "implicit", - }, - }, + ["max"] = 50, + ["min"] = 33, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1514829491", + ["text"] = "#% chance to Avoid being Frozen", + ["type"] = "implicit", + }, + }, ["1845_AvoidFreezePinnaclePresence"] = { ["Boots"] = { - ["max"] = 70, - ["min"] = 57, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2661498709", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% chance to Avoid being Frozen", - ["type"] = "implicit", - }, - }, + ["max"] = 70, + ["min"] = 57, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2661498709", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% chance to Avoid being Frozen", + ["type"] = "implicit", + }, + }, ["1845_AvoidFreezeUniquePresence"] = { ["Boots"] = { - ["max"] = 61, - ["min"] = 45, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3887072924", - ["text"] = "While a Unique Enemy is in your Presence, #% chance to Avoid being Frozen", - ["type"] = "implicit", - }, - }, + ["max"] = 61, + ["min"] = 45, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3887072924", + ["text"] = "While a Unique Enemy is in your Presence, #% chance to Avoid being Frozen", + ["type"] = "implicit", + }, + }, ["1846_AvoidIgnite"] = { ["Boots"] = { - ["max"] = 50, - ["min"] = 33, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1783006896", - ["text"] = "#% chance to Avoid being Ignited", - ["type"] = "implicit", - }, - }, + ["max"] = 50, + ["min"] = 33, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1783006896", + ["text"] = "#% chance to Avoid being Ignited", + ["type"] = "implicit", + }, + }, ["1846_AvoidIgnitePinnaclePresence"] = { ["Boots"] = { - ["max"] = 70, - ["min"] = 57, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_911929910", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% chance to Avoid being Ignited", - ["type"] = "implicit", - }, - }, + ["max"] = 70, + ["min"] = 57, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_911929910", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% chance to Avoid being Ignited", + ["type"] = "implicit", + }, + }, ["1846_AvoidIgniteUniquePresence"] = { ["Boots"] = { - ["max"] = 61, - ["min"] = 45, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2796083262", - ["text"] = "While a Unique Enemy is in your Presence, #% chance to Avoid being Ignited", - ["type"] = "implicit", - }, - }, + ["max"] = 61, + ["min"] = 45, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2796083262", + ["text"] = "While a Unique Enemy is in your Presence, #% chance to Avoid being Ignited", + ["type"] = "implicit", + }, + }, ["1848_AvoidShock"] = { ["Boots"] = { - ["max"] = 50, - ["min"] = 33, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1871765599", - ["text"] = "#% chance to Avoid being Shocked", - ["type"] = "implicit", - }, - }, + ["max"] = 50, + ["min"] = 33, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1871765599", + ["text"] = "#% chance to Avoid being Shocked", + ["type"] = "implicit", + }, + }, ["1848_AvoidShockPinnaclePresence"] = { ["Boots"] = { - ["max"] = 70, - ["min"] = 57, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3823702653", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% chance to Avoid being Shocked", - ["type"] = "implicit", - }, - }, + ["max"] = 70, + ["min"] = 57, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3823702653", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% chance to Avoid being Shocked", + ["type"] = "implicit", + }, + }, ["1848_AvoidShockUniquePresence"] = { ["Boots"] = { - ["max"] = 61, - ["min"] = 45, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3401199213", - ["text"] = "While a Unique Enemy is in your Presence, #% chance to Avoid being Shocked", - ["type"] = "implicit", - }, - }, + ["max"] = 61, + ["min"] = 45, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3401199213", + ["text"] = "While a Unique Enemy is in your Presence, #% chance to Avoid being Shocked", + ["type"] = "implicit", + }, + }, ["1851_AvoidStun"] = { ["Boots"] = { - ["max"] = 32, - ["min"] = 15, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_4262448838", - ["text"] = "#% chance to Avoid being Stunned", - ["type"] = "implicit", - }, - }, + ["max"] = 32, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_4262448838", + ["text"] = "#% chance to Avoid being Stunned", + ["type"] = "implicit", + }, + }, ["1851_AvoidStunPinnaclePresence"] = { ["Boots"] = { - ["max"] = 50, - ["min"] = 39, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_990874979", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% chance to Avoid being Stunned", - ["type"] = "implicit", - }, - }, + ["max"] = 50, + ["min"] = 39, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_990874979", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% chance to Avoid being Stunned", + ["type"] = "implicit", + }, + }, ["1851_AvoidStunUniquePresence"] = { ["Boots"] = { - ["max"] = 41, - ["min"] = 27, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3322913142", - ["text"] = "While a Unique Enemy is in your Presence, #% chance to Avoid being Stunned", - ["type"] = "implicit", - }, - }, + ["max"] = 41, + ["min"] = 27, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3322913142", + ["text"] = "While a Unique Enemy is in your Presence, #% chance to Avoid being Stunned", + ["type"] = "implicit", + }, + }, ["1880_AreaOfEffect"] = { ["Amulet"] = { - ["max"] = 18, - ["min"] = 7, - }, + ["max"] = 18, + ["min"] = 7, + }, ["Helmet"] = { - ["max"] = 18, - ["min"] = 7, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_280731498", - ["text"] = "#% increased Area of Effect", - ["type"] = "implicit", - }, - }, + ["max"] = 18, + ["min"] = 7, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_280731498", + ["text"] = "#% increased Area of Effect", + ["type"] = "implicit", + }, + }, ["1880_AreaOfEffectPinnaclePresence"] = { ["Amulet"] = { - ["max"] = 30, - ["min"] = 23, - }, + ["max"] = 30, + ["min"] = 23, + }, ["Helmet"] = { - ["max"] = 30, - ["min"] = 23, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_568930056", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Area of Effect", - ["type"] = "implicit", - }, - }, + ["max"] = 30, + ["min"] = 23, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_568930056", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Area of Effect", + ["type"] = "implicit", + }, + }, ["1880_AreaOfEffectUniquePresence"] = { ["Amulet"] = { - ["max"] = 24, - ["min"] = 15, - }, + ["max"] = 24, + ["min"] = 15, + }, ["Helmet"] = { - ["max"] = 24, - ["min"] = 15, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1847660463", - ["text"] = "While a Unique Enemy is in your Presence, #% increased Area of Effect", - ["type"] = "implicit", - }, - }, + ["max"] = 24, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1847660463", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Area of Effect", + ["type"] = "implicit", + }, + }, ["1927_TrapThrowSpeed"] = { ["Gloves"] = { - ["max"] = 13, - ["min"] = 8, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_118398748", - ["text"] = "#% increased Trap Throwing Speed", - ["type"] = "implicit", - }, - }, + ["max"] = 13, + ["min"] = 8, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_118398748", + ["text"] = "#% increased Trap Throwing Speed", + ["type"] = "implicit", + }, + }, ["1927_TrapThrowSpeedPinnaclePresence"] = { ["Gloves"] = { - ["max"] = 21, - ["min"] = 18, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_547463927", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Trap Throwing Speed", - ["type"] = "implicit", - }, - }, + ["max"] = 21, + ["min"] = 18, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_547463927", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Trap Throwing Speed", + ["type"] = "implicit", + }, + }, ["1927_TrapThrowSpeedUniquePresence"] = { ["Gloves"] = { - ["max"] = 17, - ["min"] = 13, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2479119864", - ["text"] = "While a Unique Enemy is in your Presence, #% increased Trap Throwing Speed", - ["type"] = "implicit", - }, - }, + ["max"] = 17, + ["min"] = 13, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2479119864", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Trap Throwing Speed", + ["type"] = "implicit", + }, + }, ["1928_MineLayingSpeed"] = { ["Gloves"] = { - ["max"] = 13, - ["min"] = 8, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1896971621", - ["text"] = "#% increased Mine Throwing Speed", - ["type"] = "implicit", - }, - }, + ["max"] = 13, + ["min"] = 8, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1896971621", + ["text"] = "#% increased Mine Throwing Speed", + ["type"] = "implicit", + }, + }, ["1928_MineLayingSpeedPinnaclePresence"] = { ["Gloves"] = { - ["max"] = 21, - ["min"] = 18, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3827973062", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Mine Throwing Speed", - ["type"] = "implicit", - }, - }, + ["max"] = 21, + ["min"] = 18, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3827973062", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Mine Throwing Speed", + ["type"] = "implicit", + }, + }, ["1928_MineLayingSpeedUniquePresence"] = { ["Gloves"] = { - ["max"] = 17, - ["min"] = 13, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1516326076", - ["text"] = "While a Unique Enemy is in your Presence, #% increased Mine Throwing Speed", - ["type"] = "implicit", - }, - }, + ["max"] = 17, + ["min"] = 13, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1516326076", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Mine Throwing Speed", + ["type"] = "implicit", + }, + }, ["1973_MinionDamage"] = { ["Amulet"] = { - ["max"] = 29, - ["min"] = 14, - }, + ["max"] = 29, + ["min"] = 14, + }, ["Gloves"] = { - ["max"] = 29, - ["min"] = 14, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1589917703", - ["text"] = "Minions deal #% increased Damage", - ["type"] = "implicit", - }, - }, + ["max"] = 29, + ["min"] = 14, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1589917703", + ["text"] = "Minions deal #% increased Damage", + ["type"] = "implicit", + }, + }, ["1973_MinionDamagePinnaclePresence"] = { ["Amulet"] = { - ["max"] = 53, - ["min"] = 44, - }, + ["max"] = 53, + ["min"] = 44, + }, ["Gloves"] = { - ["max"] = 53, - ["min"] = 44, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3141084961", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Minions deal #% increased Damage", - ["type"] = "implicit", - }, - }, + ["max"] = 53, + ["min"] = 44, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3141084961", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Minions deal #% increased Damage", + ["type"] = "implicit", + }, + }, ["1973_MinionDamageUniquePresence"] = { ["Amulet"] = { - ["max"] = 41, - ["min"] = 29, - }, + ["max"] = 41, + ["min"] = 29, + }, ["Gloves"] = { - ["max"] = 41, - ["min"] = 29, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_4189960647", - ["text"] = "While a Unique Enemy is in your Presence, Minions deal #% increased Damage", - ["type"] = "implicit", - }, - }, + ["max"] = 41, + ["min"] = 29, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_4189960647", + ["text"] = "While a Unique Enemy is in your Presence, Minions deal #% increased Damage", + ["type"] = "implicit", + }, + }, ["2578_SummonTotemCastSpeed"] = { ["Boots"] = { - ["max"] = 15, - ["min"] = 10, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3374165039", - ["text"] = "#% increased Totem Placement speed", - ["type"] = "implicit", - }, - }, + ["max"] = 15, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3374165039", + ["text"] = "#% increased Totem Placement speed", + ["type"] = "implicit", + }, + }, ["2578_SummonTotemCastSpeedPinnaclePresence"] = { ["Boots"] = { - ["max"] = 23, - ["min"] = 20, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_100371300", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Totem Placement speed", - ["type"] = "implicit", - }, - }, + ["max"] = 23, + ["min"] = 20, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_100371300", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Totem Placement speed", + ["type"] = "implicit", + }, + }, ["2578_SummonTotemCastSpeedUniquePresence"] = { ["Boots"] = { - ["max"] = 19, - ["min"] = 15, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2033289503", - ["text"] = "While a Unique Enemy is in your Presence, #% increased Totem Placement speed", - ["type"] = "implicit", - }, - }, + ["max"] = 19, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2033289503", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Totem Placement speed", + ["type"] = "implicit", + }, + }, ["2596_CurseEffectiveness"] = { ["Amulet"] = { - ["max"] = 12, - ["min"] = 7, - }, + ["max"] = 12, + ["min"] = 7, + }, ["Chest"] = { - ["max"] = 12, - ["min"] = 7, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2353576063", - ["text"] = "#% increased Effect of your Curses", - ["type"] = "implicit", - }, - }, + ["max"] = 12, + ["min"] = 7, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2353576063", + ["text"] = "#% increased Effect of your Curses", + ["type"] = "implicit", + }, + }, ["2596_CurseEffectivenessPinnaclePresence"] = { ["Amulet"] = { - ["max"] = 18, - ["min"] = 15, - }, + ["max"] = 18, + ["min"] = 15, + }, ["Chest"] = { - ["max"] = 18, - ["min"] = 15, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1350472585", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Effect of your Curses", - ["type"] = "implicit", - }, - }, + ["max"] = 18, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1350472585", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Effect of your Curses", + ["type"] = "implicit", + }, + }, ["2596_CurseEffectivenessUniquePresence"] = { ["Amulet"] = { - ["max"] = 15, - ["min"] = 11, - }, + ["max"] = 15, + ["min"] = 11, + }, ["Chest"] = { - ["max"] = 15, - ["min"] = 11, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2669364207", - ["text"] = "While a Unique Enemy is in your Presence, #% increased Effect of your Curses", - ["type"] = "implicit", - }, - }, + ["max"] = 15, + ["min"] = 11, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2669364207", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Effect of your Curses", + ["type"] = "implicit", + }, + }, ["2699_DamageRemovedFromManaBeforeLife"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_458438597", - ["text"] = "#% of Damage is taken from Mana before Life", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_458438597", + ["text"] = "#% of Damage is taken from Mana before Life", + ["type"] = "implicit", + }, + }, ["2699_DamageRemovedFromManaBeforeLifePinnaclePresence"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_699673918", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% of Damage is taken from Mana before Life", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_699673918", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% of Damage is taken from Mana before Life", + ["type"] = "implicit", + }, + }, ["2699_DamageRemovedFromManaBeforeLifeUniquePresence"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_1749598944", - ["text"] = "While a Unique Enemy is in your Presence, #% of Damage is taken from Mana before Life", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_1749598944", + ["text"] = "While a Unique Enemy is in your Presence, #% of Damage is taken from Mana before Life", + ["type"] = "implicit", + }, + }, ["2742_FlaskEffect"] = { ["Chest"] = { - ["max"] = 17, - ["min"] = 6, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_114734841", - ["text"] = "Flasks applied to you have #% increased Effect", - ["type"] = "implicit", - }, - }, + ["max"] = 17, + ["min"] = 6, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_114734841", + ["text"] = "Flasks applied to you have #% increased Effect", + ["type"] = "implicit", + }, + }, ["2742_FlaskEffectPinnaclePresence"] = { ["Chest"] = { - ["max"] = 29, - ["min"] = 22, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_4155771029", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Flasks applied to you have #% increased Effect", - ["type"] = "implicit", - }, - }, + ["max"] = 29, + ["min"] = 22, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_4155771029", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Flasks applied to you have #% increased Effect", + ["type"] = "implicit", + }, + }, ["2742_FlaskEffectUniquePresence"] = { ["Chest"] = { - ["max"] = 23, - ["min"] = 14, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3610955422", - ["text"] = "While a Unique Enemy is in your Presence, Flasks applied to you have #% increased Effect", - ["type"] = "implicit", - }, - }, + ["max"] = 23, + ["min"] = 14, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3610955422", + ["text"] = "While a Unique Enemy is in your Presence, Flasks applied to you have #% increased Effect", + ["type"] = "implicit", + }, + }, ["3199_DamagePerEnduranceCharge"] = { ["Boots"] = { - ["max"] = 6, - ["min"] = 4, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3515686789", - ["text"] = "#% increased Damage per Endurance Charge", - ["type"] = "implicit", - }, - }, + ["max"] = 6, + ["min"] = 4, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3515686789", + ["text"] = "#% increased Damage per Endurance Charge", + ["type"] = "implicit", + }, + }, ["3199_DamagePerEnduranceChargePinnaclePresence"] = { ["Boots"] = { - ["max"] = 8, - ["min"] = 7, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_740797388", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Damage per Endurance Charge", - ["type"] = "implicit", - }, - }, + ["max"] = 8, + ["min"] = 7, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_740797388", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Damage per Endurance Charge", + ["type"] = "implicit", + }, + }, ["3199_DamagePerEnduranceChargeUniquePresence"] = { ["Boots"] = { - ["max"] = 7, - ["min"] = 5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2193147166", - ["text"] = "While a Unique Enemy is in your Presence, #% increased Damage per Endurance Charge", - ["type"] = "implicit", - }, - }, + ["max"] = 7, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2193147166", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Damage per Endurance Charge", + ["type"] = "implicit", + }, + }, ["3286_DamagePerFrenzyCharge"] = { ["Gloves"] = { - ["max"] = 6, - ["min"] = 4, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_902747843", - ["text"] = "#% increased Damage per Frenzy Charge", - ["type"] = "implicit", - }, - }, + ["max"] = 6, + ["min"] = 4, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_902747843", + ["text"] = "#% increased Damage per Frenzy Charge", + ["type"] = "implicit", + }, + }, ["3286_DamagePerFrenzyChargePinnaclePresence"] = { ["Gloves"] = { - ["max"] = 8, - ["min"] = 7, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1855179125", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Damage per Frenzy Charge", - ["type"] = "implicit", - }, - }, + ["max"] = 8, + ["min"] = 7, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1855179125", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Damage per Frenzy Charge", + ["type"] = "implicit", + }, + }, ["3286_DamagePerFrenzyChargeUniquePresence"] = { ["Gloves"] = { - ["max"] = 7, - ["min"] = 5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2415020123", - ["text"] = "While a Unique Enemy is in your Presence, #% increased Damage per Frenzy Charge", - ["type"] = "implicit", - }, - }, + ["max"] = 7, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2415020123", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Damage per Frenzy Charge", + ["type"] = "implicit", + }, + }, ["3290_OnslaughtEffect"] = { ["Boots"] = { - ["max"] = 17, - ["min"] = 6, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3151397056", - ["text"] = "#% increased Effect of Onslaught on you", - ["type"] = "implicit", - }, - }, + ["max"] = 17, + ["min"] = 6, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3151397056", + ["text"] = "#% increased Effect of Onslaught on you", + ["type"] = "implicit", + }, + }, ["3290_OnslaughtEffectPinnaclePresence"] = { ["Boots"] = { - ["max"] = 29, - ["min"] = 22, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3209267362", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Effect of Onslaught on you", - ["type"] = "implicit", - }, - }, + ["max"] = 29, + ["min"] = 22, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3209267362", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Effect of Onslaught on you", + ["type"] = "implicit", + }, + }, ["3290_OnslaughtEffectUniquePresence"] = { ["Boots"] = { - ["max"] = 23, - ["min"] = 14, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_491577732", - ["text"] = "While a Unique Enemy is in your Presence, #% increased Effect of Onslaught on you", - ["type"] = "implicit", - }, - }, + ["max"] = 23, + ["min"] = 14, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_491577732", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Effect of Onslaught on you", + ["type"] = "implicit", + }, + }, ["3478_FlaskGainPerSecond"] = { ["Chest"] = { - ["max"] = 2, - ["min"] = 1, - }, - ["sign"] = "", - ["specialCaseData"] = { - ["overrideModLineSingular"] = "Flasks gain a Charge every 3 seconds", - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1193283913", - ["text"] = "Flasks gain # Charges every 3 seconds", - ["type"] = "implicit", - }, - }, + ["max"] = 2, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLineSingular"] = "Flasks gain a Charge every 3 seconds", + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1193283913", + ["text"] = "Flasks gain # Charges every 3 seconds", + ["type"] = "implicit", + }, + }, ["3478_FlaskGainPerSecondPinnaclePresence"] = { ["Chest"] = { - ["max"] = 4, - ["min"] = 3, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1519845279", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Flasks gain # Charges every 3 seconds", - ["type"] = "implicit", - }, - }, + ["max"] = 4, + ["min"] = 3, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1519845279", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Flasks gain # Charges every 3 seconds", + ["type"] = "implicit", + }, + }, ["3478_FlaskGainPerSecondUniquePresence"] = { ["Chest"] = { - ["max"] = 3, - ["min"] = 2, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2150799098", - ["text"] = "While a Unique Enemy is in your Presence, Flasks gain # Charges every 3 seconds", - ["type"] = "implicit", - }, - }, + ["max"] = 3, + ["min"] = 2, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2150799098", + ["text"] = "While a Unique Enemy is in your Presence, Flasks gain # Charges every 3 seconds", + ["type"] = "implicit", + }, + }, ["3566_AuraEffect"] = { ["Amulet"] = { - ["max"] = 20, - ["min"] = 9, - }, + ["max"] = 20, + ["min"] = 9, + }, ["Chest"] = { - ["max"] = 20, - ["min"] = 9, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1880071428", - ["text"] = "#% increased effect of Non-Curse Auras from your Skills", - ["type"] = "implicit", - }, - }, + ["max"] = 20, + ["min"] = 9, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1880071428", + ["text"] = "#% increased effect of Non-Curse Auras from your Skills", + ["type"] = "implicit", + }, + }, ["3566_AuraEffectPinnaclePresence"] = { ["Amulet"] = { - ["max"] = 36, - ["min"] = 29, - }, + ["max"] = 36, + ["min"] = 29, + }, ["Chest"] = { - ["max"] = 36, - ["min"] = 29, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3788782813", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased effect of Non-Curse Auras from your Skills", - ["type"] = "implicit", - }, - }, + ["max"] = 36, + ["min"] = 29, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3788782813", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased effect of Non-Curse Auras from your Skills", + ["type"] = "implicit", + }, + }, ["3566_AuraEffectUniquePresence"] = { ["Amulet"] = { - ["max"] = 28, - ["min"] = 19, - }, + ["max"] = 28, + ["min"] = 19, + }, ["Chest"] = { - ["max"] = 28, - ["min"] = 19, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2558323947", - ["text"] = "While a Unique Enemy is in your Presence, #% increased effect of Non-Curse Auras from your Skills", - ["type"] = "implicit", - }, - }, + ["max"] = 28, + ["min"] = 19, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2558323947", + ["text"] = "While a Unique Enemy is in your Presence, #% increased effect of Non-Curse Auras from your Skills", + ["type"] = "implicit", + }, + }, ["4008_CurseEffectTemporalChains"] = { ["Helmet"] = { - ["max"] = 15, - ["min"] = 10, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1662974426", - ["text"] = "#% increased Temporal Chains Curse Effect", - ["type"] = "implicit", - }, - }, + ["max"] = 15, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1662974426", + ["text"] = "#% increased Temporal Chains Curse Effect", + ["type"] = "implicit", + }, + }, ["4008_CurseEffectTemporalChainsPinnaclePresence"] = { ["Helmet"] = { - ["max"] = 23, - ["min"] = 20, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3695602451", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Temporal Chains Curse Effect", - ["type"] = "implicit", - }, - }, + ["max"] = 23, + ["min"] = 20, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3695602451", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Temporal Chains Curse Effect", + ["type"] = "implicit", + }, + }, ["4008_CurseEffectTemporalChainsUniquePresence"] = { ["Helmet"] = { - ["max"] = 19, - ["min"] = 15, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_485385046", - ["text"] = "While a Unique Enemy is in your Presence, #% increased Temporal Chains Curse Effect", - ["type"] = "implicit", - }, - }, + ["max"] = 19, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_485385046", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Temporal Chains Curse Effect", + ["type"] = "implicit", + }, + }, ["4010_CurseEffectConductivity"] = { ["Helmet"] = { - ["max"] = 15, - ["min"] = 10, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3395908304", - ["text"] = "#% increased Conductivity Curse Effect", - ["type"] = "implicit", - }, - }, + ["max"] = 15, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3395908304", + ["text"] = "#% increased Conductivity Curse Effect", + ["type"] = "implicit", + }, + }, ["4010_CurseEffectConductivityPinnaclePresence"] = { ["Helmet"] = { - ["max"] = 23, - ["min"] = 20, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2095999895", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Conductivity Curse Effect", - ["type"] = "implicit", - }, - }, + ["max"] = 23, + ["min"] = 20, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2095999895", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Conductivity Curse Effect", + ["type"] = "implicit", + }, + }, ["4010_CurseEffectConductivityUniquePresence"] = { ["Helmet"] = { - ["max"] = 19, - ["min"] = 15, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3547319552", - ["text"] = "While a Unique Enemy is in your Presence, #% increased Conductivity Curse Effect", - ["type"] = "implicit", - }, - }, + ["max"] = 19, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3547319552", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Conductivity Curse Effect", + ["type"] = "implicit", + }, + }, ["4011_CurseEffectElementalWeakness"] = { ["Helmet"] = { - ["max"] = 15, - ["min"] = 10, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3348324479", - ["text"] = "#% increased Elemental Weakness Curse Effect", - ["type"] = "implicit", - }, - }, + ["max"] = 15, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3348324479", + ["text"] = "#% increased Elemental Weakness Curse Effect", + ["type"] = "implicit", + }, + }, ["4011_CurseEffectElementalWeaknessPinnaclePresence"] = { ["Helmet"] = { - ["max"] = 23, - ["min"] = 20, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2029969019", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Elemental Weakness Curse Effect", - ["type"] = "implicit", - }, - }, + ["max"] = 23, + ["min"] = 20, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2029969019", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Elemental Weakness Curse Effect", + ["type"] = "implicit", + }, + }, ["4011_CurseEffectElementalWeaknessUniquePresence"] = { ["Helmet"] = { - ["max"] = 19, - ["min"] = 15, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_771845579", - ["text"] = "While a Unique Enemy is in your Presence, #% increased Elemental Weakness Curse Effect", - ["type"] = "implicit", - }, - }, + ["max"] = 19, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_771845579", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Elemental Weakness Curse Effect", + ["type"] = "implicit", + }, + }, ["4012_CurseEffectEnfeeble"] = { ["Helmet"] = { - ["max"] = 15, - ["min"] = 10, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3293830776", - ["text"] = "#% increased Enfeeble Curse Effect", - ["type"] = "implicit", - }, - }, + ["max"] = 15, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3293830776", + ["text"] = "#% increased Enfeeble Curse Effect", + ["type"] = "implicit", + }, + }, ["4012_CurseEffectEnfeeblePinnaclePresence"] = { ["Helmet"] = { - ["max"] = 23, - ["min"] = 20, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_38083709", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Enfeeble Curse Effect", - ["type"] = "implicit", - }, - }, + ["max"] = 23, + ["min"] = 20, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_38083709", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Enfeeble Curse Effect", + ["type"] = "implicit", + }, + }, ["4012_CurseEffectEnfeebleUniquePresence"] = { ["Helmet"] = { - ["max"] = 19, - ["min"] = 15, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_937462392", - ["text"] = "While a Unique Enemy is in your Presence, #% increased Enfeeble Curse Effect", - ["type"] = "implicit", - }, - }, + ["max"] = 19, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_937462392", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Enfeeble Curse Effect", + ["type"] = "implicit", + }, + }, ["4013_CurseEffectFlammability"] = { ["Helmet"] = { - ["max"] = 15, - ["min"] = 10, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_282417259", - ["text"] = "#% increased Flammability Curse Effect", - ["type"] = "implicit", - }, - }, + ["max"] = 15, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_282417259", + ["text"] = "#% increased Flammability Curse Effect", + ["type"] = "implicit", + }, + }, ["4013_CurseEffectFlammabilityPinnaclePresence"] = { ["Helmet"] = { - ["max"] = 23, - ["min"] = 20, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_323292443", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Flammability Curse Effect", - ["type"] = "implicit", - }, - }, + ["max"] = 23, + ["min"] = 20, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_323292443", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Flammability Curse Effect", + ["type"] = "implicit", + }, + }, ["4013_CurseEffectFlammabilityUniquePresence"] = { ["Helmet"] = { - ["max"] = 19, - ["min"] = 15, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1394267723", - ["text"] = "While a Unique Enemy is in your Presence, #% increased Flammability Curse Effect", - ["type"] = "implicit", - }, - }, + ["max"] = 19, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1394267723", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Flammability Curse Effect", + ["type"] = "implicit", + }, + }, ["4014_CurseEffectFrostbite"] = { ["Helmet"] = { - ["max"] = 15, - ["min"] = 10, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1443215722", - ["text"] = "#% increased Frostbite Curse Effect", - ["type"] = "implicit", - }, - }, + ["max"] = 15, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1443215722", + ["text"] = "#% increased Frostbite Curse Effect", + ["type"] = "implicit", + }, + }, ["4014_CurseEffectFrostbitePinnaclePresence"] = { ["Helmet"] = { - ["max"] = 23, - ["min"] = 20, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2068042138", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Frostbite Curse Effect", - ["type"] = "implicit", - }, - }, + ["max"] = 23, + ["min"] = 20, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2068042138", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Frostbite Curse Effect", + ["type"] = "implicit", + }, + }, ["4014_CurseEffectFrostbiteUniquePresence"] = { ["Helmet"] = { - ["max"] = 19, - ["min"] = 15, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3199183447", - ["text"] = "While a Unique Enemy is in your Presence, #% increased Frostbite Curse Effect", - ["type"] = "implicit", - }, - }, + ["max"] = 19, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3199183447", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Frostbite Curse Effect", + ["type"] = "implicit", + }, + }, ["4015_CurseEffectPunishment"] = { ["Helmet"] = { - ["max"] = 15, - ["min"] = 10, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2844206732", - ["text"] = "#% increased Punishment Curse Effect", - ["type"] = "implicit", - }, - }, + ["max"] = 15, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2844206732", + ["text"] = "#% increased Punishment Curse Effect", + ["type"] = "implicit", + }, + }, ["4015_CurseEffectPunishmentPinnaclePresence"] = { ["Helmet"] = { - ["max"] = 23, - ["min"] = 20, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_40584863", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Punishment Curse Effect", - ["type"] = "implicit", - }, - }, + ["max"] = 23, + ["min"] = 20, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_40584863", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Punishment Curse Effect", + ["type"] = "implicit", + }, + }, ["4015_CurseEffectPunishmentUniquePresence"] = { ["Helmet"] = { - ["max"] = 19, - ["min"] = 15, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_4171615823", - ["text"] = "While a Unique Enemy is in your Presence, #% increased Punishment Curse Effect", - ["type"] = "implicit", - }, - }, + ["max"] = 19, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_4171615823", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Punishment Curse Effect", + ["type"] = "implicit", + }, + }, ["4016_CurseEffectVulnerability"] = { ["Helmet"] = { - ["max"] = 15, - ["min"] = 10, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1065909420", - ["text"] = "#% increased Vulnerability Curse Effect", - ["type"] = "implicit", - }, - }, + ["max"] = 15, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1065909420", + ["text"] = "#% increased Vulnerability Curse Effect", + ["type"] = "implicit", + }, + }, ["4016_CurseEffectVulnerabilityPinnaclePresence"] = { ["Helmet"] = { - ["max"] = 23, - ["min"] = 20, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1668340466", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Vulnerability Curse Effect", - ["type"] = "implicit", - }, - }, + ["max"] = 23, + ["min"] = 20, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1668340466", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Vulnerability Curse Effect", + ["type"] = "implicit", + }, + }, ["4016_CurseEffectVulnerabilityUniquePresence"] = { ["Helmet"] = { - ["max"] = 19, - ["min"] = 15, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2638071469", - ["text"] = "While a Unique Enemy is in your Presence, #% increased Vulnerability Curse Effect", - ["type"] = "implicit", - }, - }, + ["max"] = 19, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2638071469", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Vulnerability Curse Effect", + ["type"] = "implicit", + }, + }, ["4022_ArcticArmourBuffEffect"] = { ["Chest"] = { - ["max"] = 32, - ["min"] = 15, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3995612171", - ["text"] = "#% increased Arctic Armour Buff Effect", - ["type"] = "implicit", - }, - }, + ["max"] = 32, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3995612171", + ["text"] = "#% increased Arctic Armour Buff Effect", + ["type"] = "implicit", + }, + }, ["4022_ArcticArmourBuffEffectPinnaclePresence"] = { ["Chest"] = { - ["max"] = 50, - ["min"] = 39, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3744585764", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Arctic Armour Buff Effect", - ["type"] = "implicit", - }, - }, + ["max"] = 50, + ["min"] = 39, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3744585764", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Arctic Armour Buff Effect", + ["type"] = "implicit", + }, + }, ["4022_ArcticArmourBuffEffectUniquePresence"] = { ["Chest"] = { - ["max"] = 41, - ["min"] = 27, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_4047779849", - ["text"] = "While a Unique Enemy is in your Presence, #% increased Arctic Armour Buff Effect", - ["type"] = "implicit", - }, - }, + ["max"] = 41, + ["min"] = 27, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_4047779849", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Arctic Armour Buff Effect", + ["type"] = "implicit", + }, + }, ["4063_OfferingEffect"] = { ["Chest"] = { - ["max"] = 24, - ["min"] = 13, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3191479793", - ["text"] = "#% increased effect of Offerings", - ["type"] = "implicit", - }, - }, + ["max"] = 24, + ["min"] = 13, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3191479793", + ["text"] = "#% increased effect of Offerings", + ["type"] = "implicit", + }, + }, ["4063_OfferingEffectPinnaclePresence"] = { ["Chest"] = { - ["max"] = 36, - ["min"] = 29, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2526554500", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased effect of Offerings", - ["type"] = "implicit", - }, - }, + ["max"] = 36, + ["min"] = 29, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2526554500", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased effect of Offerings", + ["type"] = "implicit", + }, + }, ["4063_OfferingEffectUniquePresence"] = { ["Chest"] = { - ["max"] = 30, - ["min"] = 21, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1132843482", - ["text"] = "While a Unique Enemy is in your Presence, #% increased effect of Offerings", - ["type"] = "implicit", - }, - }, + ["max"] = 30, + ["min"] = 21, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1132843482", + ["text"] = "While a Unique Enemy is in your Presence, #% increased effect of Offerings", + ["type"] = "implicit", + }, + }, ["4096_RockGolemBuffEffect"] = { ["Boots"] = { - ["max"] = 48, - ["min"] = 31, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2284801675", - ["text"] = "#% increased Effect of the Buff granted by your Stone Golems", - ["type"] = "implicit", - }, - }, + ["max"] = 48, + ["min"] = 31, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2284801675", + ["text"] = "#% increased Effect of the Buff granted by your Stone Golems", + ["type"] = "implicit", + }, + }, ["4096_RockGolemBuffEffectPinnaclePresence"] = { ["Boots"] = { - ["max"] = 72, - ["min"] = 61, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_438468314", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Effect of the Buff granted by your Stone Golems", - ["type"] = "implicit", - }, - }, + ["max"] = 72, + ["min"] = 61, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_438468314", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Effect of the Buff granted by your Stone Golems", + ["type"] = "implicit", + }, + }, ["4096_RockGolemBuffEffectUniquePresence"] = { ["Boots"] = { - ["max"] = 60, - ["min"] = 46, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1722486495", - ["text"] = "While a Unique Enemy is in your Presence, #% increased Effect of the Buff granted by your Stone Golems", - ["type"] = "implicit", - }, - }, + ["max"] = 60, + ["min"] = 46, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1722486495", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Effect of the Buff granted by your Stone Golems", + ["type"] = "implicit", + }, + }, ["4097_FireGolemBuffEffect"] = { ["Boots"] = { - ["max"] = 48, - ["min"] = 31, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_269930125", - ["text"] = "#% increased Effect of the Buff granted by your Flame Golems", - ["type"] = "implicit", - }, - }, + ["max"] = 48, + ["min"] = 31, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_269930125", + ["text"] = "#% increased Effect of the Buff granted by your Flame Golems", + ["type"] = "implicit", + }, + }, ["4097_FireGolemBuffEffectPinnaclePresence"] = { ["Boots"] = { - ["max"] = 72, - ["min"] = 61, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_783010498", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Effect of the Buff granted by your Flame Golems", - ["type"] = "implicit", - }, - }, + ["max"] = 72, + ["min"] = 61, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_783010498", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Effect of the Buff granted by your Flame Golems", + ["type"] = "implicit", + }, + }, ["4097_FireGolemBuffEffectUniquePresence"] = { ["Boots"] = { - ["max"] = 60, - ["min"] = 46, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3591219299", - ["text"] = "While a Unique Enemy is in your Presence, #% increased Effect of the Buff granted by your Flame Golems", - ["type"] = "implicit", - }, - }, + ["max"] = 60, + ["min"] = 46, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3591219299", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Effect of the Buff granted by your Flame Golems", + ["type"] = "implicit", + }, + }, ["4098_IceGolemBuffEffect"] = { ["Boots"] = { - ["max"] = 48, - ["min"] = 31, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2250111474", - ["text"] = "#% increased Effect of the Buff granted by your Ice Golems", - ["type"] = "implicit", - }, - }, + ["max"] = 48, + ["min"] = 31, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2250111474", + ["text"] = "#% increased Effect of the Buff granted by your Ice Golems", + ["type"] = "implicit", + }, + }, ["4098_IceGolemBuffEffectPinnaclePresence"] = { ["Boots"] = { - ["max"] = 72, - ["min"] = 61, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_168204696", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Effect of the Buff granted by your Ice Golems", - ["type"] = "implicit", - }, - }, + ["max"] = 72, + ["min"] = 61, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_168204696", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Effect of the Buff granted by your Ice Golems", + ["type"] = "implicit", + }, + }, ["4098_IceGolemBuffEffectUniquePresence"] = { ["Boots"] = { - ["max"] = 60, - ["min"] = 46, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3588695478", - ["text"] = "While a Unique Enemy is in your Presence, #% increased Effect of the Buff granted by your Ice Golems", - ["type"] = "implicit", - }, - }, + ["max"] = 60, + ["min"] = 46, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3588695478", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Effect of the Buff granted by your Ice Golems", + ["type"] = "implicit", + }, + }, ["4099_LightningGolemBuffEffect"] = { ["Boots"] = { - ["max"] = 48, - ["min"] = 31, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2527931375", - ["text"] = "#% increased Effect of the Buff granted by your Lightning Golems", - ["type"] = "implicit", - }, - }, + ["max"] = 48, + ["min"] = 31, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2527931375", + ["text"] = "#% increased Effect of the Buff granted by your Lightning Golems", + ["type"] = "implicit", + }, + }, ["4099_LightningGolemBuffEffectPinnaclePresence"] = { ["Boots"] = { - ["max"] = 72, - ["min"] = 61, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2527345629", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Effect of the Buff granted by your Lightning Golems", - ["type"] = "implicit", - }, - }, + ["max"] = 72, + ["min"] = 61, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2527345629", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Effect of the Buff granted by your Lightning Golems", + ["type"] = "implicit", + }, + }, ["4099_LightningGolemBuffEffectUniquePresence"] = { ["Boots"] = { - ["max"] = 60, - ["min"] = 46, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1747983672", - ["text"] = "While a Unique Enemy is in your Presence, #% increased Effect of the Buff granted by your Lightning Golems", - ["type"] = "implicit", - }, - }, + ["max"] = 60, + ["min"] = 46, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1747983672", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Effect of the Buff granted by your Lightning Golems", + ["type"] = "implicit", + }, + }, ["4100_ChaosGolemBuffEffect"] = { ["Boots"] = { - ["max"] = 48, - ["min"] = 31, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1648511635", - ["text"] = "#% increased Effect of the Buff granted by your Chaos Golems", - ["type"] = "implicit", - }, - }, + ["max"] = 48, + ["min"] = 31, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1648511635", + ["text"] = "#% increased Effect of the Buff granted by your Chaos Golems", + ["type"] = "implicit", + }, + }, ["4100_ChaosGolemBuffEffectPinnaclePresence"] = { ["Boots"] = { - ["max"] = 72, - ["min"] = 61, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_510803146", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Effect of the Buff granted by your Chaos Golems", - ["type"] = "implicit", - }, - }, + ["max"] = 72, + ["min"] = 61, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_510803146", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Effect of the Buff granted by your Chaos Golems", + ["type"] = "implicit", + }, + }, ["4100_ChaosGolemBuffEffectUniquePresence"] = { ["Boots"] = { - ["max"] = 60, - ["min"] = 46, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1807607778", - ["text"] = "While a Unique Enemy is in your Presence, #% increased Effect of the Buff granted by your Chaos Golems", - ["type"] = "implicit", - }, - }, + ["max"] = 60, + ["min"] = 46, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1807607778", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Effect of the Buff granted by your Chaos Golems", + ["type"] = "implicit", + }, + }, ["4527_ActionSpeedImplicit"] = { ["Boots"] = { - ["max"] = 6, - ["min"] = 4, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2878959938", - ["text"] = "#% increased Action Speed", - ["type"] = "implicit", - }, - }, + ["max"] = 6, + ["min"] = 4, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2878959938", + ["text"] = "#% increased Action Speed", + ["type"] = "implicit", + }, + }, ["4527_ActionSpeedImplicitPinnaclePresence"] = { ["Boots"] = { - ["max"] = 8, - ["min"] = 7, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2251857767", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Action Speed", - ["type"] = "implicit", - }, - }, + ["max"] = 8, + ["min"] = 7, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2251857767", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Action Speed", + ["type"] = "implicit", + }, + }, ["4527_ActionSpeedImplicitUniquePresence"] = { ["Boots"] = { - ["max"] = 7, - ["min"] = 5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1829486532", - ["text"] = "While a Unique Enemy is in your Presence, #% increased Action Speed", - ["type"] = "implicit", - }, - }, + ["max"] = 7, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1829486532", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Action Speed", + ["type"] = "implicit", + }, + }, ["4844_AttackCriticalStrikeChance"] = { ["Amulet"] = { - ["max"] = 36, - ["min"] = 19, - }, + ["max"] = 36, + ["min"] = 19, + }, ["Gloves"] = { - ["max"] = 36, - ["min"] = 19, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2194114101", - ["text"] = "#% increased Critical Strike Chance for Attacks", - ["type"] = "implicit", - }, - }, + ["max"] = 36, + ["min"] = 19, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2194114101", + ["text"] = "#% increased Critical Strike Chance for Attacks", + ["type"] = "implicit", + }, + }, ["4844_AttackCriticalStrikeChancePinnaclePresence"] = { ["Amulet"] = { - ["max"] = 60, - ["min"] = 49, - }, + ["max"] = 60, + ["min"] = 49, + }, ["Gloves"] = { - ["max"] = 60, - ["min"] = 49, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1840069423", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Critical Strike Chance for Attacks", - ["type"] = "implicit", - }, - }, + ["max"] = 60, + ["min"] = 49, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1840069423", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Critical Strike Chance for Attacks", + ["type"] = "implicit", + }, + }, ["4844_AttackCriticalStrikeChanceUniquePresence"] = { ["Amulet"] = { - ["max"] = 48, - ["min"] = 34, - }, + ["max"] = 48, + ["min"] = 34, + }, ["Gloves"] = { - ["max"] = 48, - ["min"] = 34, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3710240762", - ["text"] = "While a Unique Enemy is in your Presence, #% increased Critical Strike Chance for Attacks", - ["type"] = "implicit", - }, - }, + ["max"] = 48, + ["min"] = 34, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3710240762", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Critical Strike Chance for Attacks", + ["type"] = "implicit", + }, + }, ["4868_ReducedAttackManaCost"] = { ["Helmet"] = { - ["max"] = 30, - ["min"] = 19, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2859471749", - ["text"] = "#% reduced Mana Cost of Attacks", - ["type"] = "implicit", - }, - }, + ["max"] = 30, + ["min"] = 19, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2859471749", + ["text"] = "#% reduced Mana Cost of Attacks", + ["type"] = "implicit", + }, + }, ["4868_ReducedAttackManaCostPinnaclePresence"] = { ["Helmet"] = { - ["max"] = 42, - ["min"] = 35, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3671920033", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% reduced Mana Cost of Attacks", - ["type"] = "implicit", - }, - }, + ["max"] = 42, + ["min"] = 35, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3671920033", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% reduced Mana Cost of Attacks", + ["type"] = "implicit", + }, + }, ["4868_ReducedAttackManaCostUniquePresence"] = { ["Helmet"] = { - ["max"] = 36, - ["min"] = 27, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1116269888", - ["text"] = "While a Unique Enemy is in your Presence, #% reduced Mana Cost of Attacks", - ["type"] = "implicit", - }, - }, + ["max"] = 36, + ["min"] = 27, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1116269888", + ["text"] = "While a Unique Enemy is in your Presence, #% reduced Mana Cost of Attacks", + ["type"] = "implicit", + }, + }, ["4997_CarrionGolemBuffEffect"] = { ["Boots"] = { - ["max"] = 48, - ["min"] = 31, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2420972973", - ["text"] = "#% increased Effect of the Buff granted by your Carrion Golems", - ["type"] = "implicit", - }, - }, + ["max"] = 48, + ["min"] = 31, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2420972973", + ["text"] = "#% increased Effect of the Buff granted by your Carrion Golems", + ["type"] = "implicit", + }, + }, ["4997_CarrionGolemBuffEffectPinnaclePresence"] = { ["Boots"] = { - ["max"] = 72, - ["min"] = 61, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1080711147", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Effect of the Buff granted by your Carrion Golems", - ["type"] = "implicit", - }, - }, + ["max"] = 72, + ["min"] = 61, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1080711147", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Effect of the Buff granted by your Carrion Golems", + ["type"] = "implicit", + }, + }, ["4997_CarrionGolemBuffEffectUniquePresence"] = { ["Boots"] = { - ["max"] = 60, - ["min"] = 46, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2917444195", - ["text"] = "While a Unique Enemy is in your Presence, #% increased Effect of the Buff granted by your Carrion Golems", - ["type"] = "implicit", - }, - }, + ["max"] = 60, + ["min"] = 46, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2917444195", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Effect of the Buff granted by your Carrion Golems", + ["type"] = "implicit", + }, + }, ["5247_EnduranceChargePerSecond"] = { ["Chest"] = { - ["max"] = 15, - ["min"] = 10, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2555092341", - ["text"] = "Gain an Endurance Charge every # seconds", - ["type"] = "implicit", - }, - }, + ["max"] = 15, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2555092341", + ["text"] = "Gain an Endurance Charge every # seconds", + ["type"] = "implicit", + }, + }, ["5247_EnduranceChargePerSecondPinnaclePresence"] = { ["Chest"] = { - ["max"] = 5, - ["min"] = 2, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_951862199", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Gain an Endurance Charge every # seconds", - ["type"] = "implicit", - }, - }, + ["max"] = 5, + ["min"] = 2, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_951862199", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Gain an Endurance Charge every # seconds", + ["type"] = "implicit", + }, + }, ["5247_EnduranceChargePerSecondUniquePresence"] = { ["Chest"] = { - ["max"] = 10, - ["min"] = 6, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2441896589", - ["text"] = "While a Unique Enemy is in your Presence, Gain an Endurance Charge every # seconds", - ["type"] = "implicit", - }, - }, + ["max"] = 10, + ["min"] = 6, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2441896589", + ["text"] = "While a Unique Enemy is in your Presence, Gain an Endurance Charge every # seconds", + ["type"] = "implicit", + }, + }, ["5248_FrenzyChargePerSecond"] = { ["Chest"] = { - ["max"] = 15, - ["min"] = 10, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3906868545", - ["text"] = "Gain a Frenzy Charge every # seconds", - ["type"] = "implicit", - }, - }, + ["max"] = 15, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3906868545", + ["text"] = "Gain a Frenzy Charge every # seconds", + ["type"] = "implicit", + }, + }, ["5248_FrenzyChargePerSecondPinnaclePresence"] = { ["Chest"] = { - ["max"] = 5, - ["min"] = 2, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_560848642", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Gain a Frenzy Charge every # seconds", - ["type"] = "implicit", - }, - }, + ["max"] = 5, + ["min"] = 2, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_560848642", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Gain a Frenzy Charge every # seconds", + ["type"] = "implicit", + }, + }, ["5248_FrenzyChargePerSecondUniquePresence"] = { ["Chest"] = { - ["max"] = 10, - ["min"] = 6, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2847070982", - ["text"] = "While a Unique Enemy is in your Presence, Gain a Frenzy Charge every # seconds", - ["type"] = "implicit", - }, - }, + ["max"] = 10, + ["min"] = 6, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2847070982", + ["text"] = "While a Unique Enemy is in your Presence, Gain a Frenzy Charge every # seconds", + ["type"] = "implicit", + }, + }, ["5249_PowerChargePerSecond"] = { ["Chest"] = { - ["max"] = 15, - ["min"] = 10, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3533655459", - ["text"] = "Gain a Power Charge every # seconds", - ["type"] = "implicit", - }, - }, + ["max"] = 15, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3533655459", + ["text"] = "Gain a Power Charge every # seconds", + ["type"] = "implicit", + }, + }, ["5249_PowerChargePerSecondPinnaclePresence"] = { ["Chest"] = { - ["max"] = 5, - ["min"] = 2, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2703923310", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Gain a Power Charge every # seconds", - ["type"] = "implicit", - }, - }, + ["max"] = 5, + ["min"] = 2, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2703923310", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Gain a Power Charge every # seconds", + ["type"] = "implicit", + }, + }, ["5249_PowerChargePerSecondUniquePresence"] = { ["Chest"] = { - ["max"] = 10, - ["min"] = 6, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_46472075", - ["text"] = "While a Unique Enemy is in your Presence, Gain a Power Charge every # seconds", - ["type"] = "implicit", - }, - }, + ["max"] = 10, + ["min"] = 6, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_46472075", + ["text"] = "While a Unique Enemy is in your Presence, Gain a Power Charge every # seconds", + ["type"] = "implicit", + }, + }, ["5258_BrittleGroundMovingImplicit"] = { ["Boots"] = { - ["max"] = 7, - ["min"] = 2, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_984148407", - ["text"] = "Drops Brittle Ground while moving, lasting # seconds", - ["type"] = "implicit", - }, - }, + ["max"] = 7, + ["min"] = 2, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_984148407", + ["text"] = "Drops Brittle Ground while moving, lasting # seconds", + ["type"] = "implicit", + }, + }, ["5258_BrittleGroundWhileMovingPinnaclePresence"] = { ["Boots"] = { - ["max"] = 11, - ["min"] = 8, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_235328972", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Drops Brittle Ground while moving, lasting # seconds", - ["type"] = "implicit", - }, - }, + ["max"] = 11, + ["min"] = 8, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_235328972", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Drops Brittle Ground while moving, lasting # seconds", + ["type"] = "implicit", + }, + }, ["5258_BrittleGroundWhileMovingUniquePresence"] = { ["Boots"] = { - ["max"] = 9, - ["min"] = 5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1771822543", - ["text"] = "While a Unique Enemy is in your Presence, Drops Brittle Ground while moving, lasting # seconds", - ["type"] = "implicit", - }, - }, + ["max"] = 9, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1771822543", + ["text"] = "While a Unique Enemy is in your Presence, Drops Brittle Ground while moving, lasting # seconds", + ["type"] = "implicit", + }, + }, ["5259_SappedGroundMovingImplicit"] = { ["Boots"] = { - ["max"] = 7, - ["min"] = 2, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1997664024", - ["text"] = "Drops Sapped Ground while moving, lasting # seconds", - ["type"] = "implicit", - }, - }, + ["max"] = 7, + ["min"] = 2, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1997664024", + ["text"] = "Drops Sapped Ground while moving, lasting # seconds", + ["type"] = "implicit", + }, + }, ["5259_SappedGroundWhileMovingPinnaclePresence"] = { ["Boots"] = { - ["max"] = 11, - ["min"] = 8, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1296291315", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Drops Sapped Ground while moving, lasting # seconds", - ["type"] = "implicit", - }, - }, + ["max"] = 11, + ["min"] = 8, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1296291315", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Drops Sapped Ground while moving, lasting # seconds", + ["type"] = "implicit", + }, + }, ["5259_SappedGroundWhileMovingUniquePresence"] = { ["Boots"] = { - ["max"] = 9, - ["min"] = 5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2220831041", - ["text"] = "While a Unique Enemy is in your Presence, Drops Sapped Ground while moving, lasting # seconds", - ["type"] = "implicit", - }, - }, + ["max"] = 9, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2220831041", + ["text"] = "While a Unique Enemy is in your Presence, Drops Sapped Ground while moving, lasting # seconds", + ["type"] = "implicit", + }, + }, ["5260_ScorchedGroundMovingImplicit"] = { ["Boots"] = { - ["max"] = 7, - ["min"] = 2, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_396238230", - ["text"] = "Drops Scorched Ground while moving, lasting # seconds", - ["type"] = "implicit", - }, - }, + ["max"] = 7, + ["min"] = 2, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_396238230", + ["text"] = "Drops Scorched Ground while moving, lasting # seconds", + ["type"] = "implicit", + }, + }, ["5260_ScorchedGroundWhileMovingPinnaclePresence"] = { ["Boots"] = { - ["max"] = 11, - ["min"] = 8, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_4054012096", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Drops Scorched Ground while moving, lasting # seconds", - ["type"] = "implicit", - }, - }, + ["max"] = 11, + ["min"] = 8, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_4054012096", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Drops Scorched Ground while moving, lasting # seconds", + ["type"] = "implicit", + }, + }, ["5260_ScorchedGroundWhileMovingUniquePresence"] = { ["Boots"] = { - ["max"] = 9, - ["min"] = 5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_493814995", - ["text"] = "While a Unique Enemy is in your Presence, Drops Scorched Ground while moving, lasting # seconds", - ["type"] = "implicit", - }, - }, + ["max"] = 9, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_493814995", + ["text"] = "While a Unique Enemy is in your Presence, Drops Scorched Ground while moving, lasting # seconds", + ["type"] = "implicit", + }, + }, ["5715_ChanceToIntimidateOnHit"] = { ["Gloves"] = { - ["max"] = 40, - ["min"] = 15, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2089652545", - ["text"] = "#% chance to Intimidate Enemies for 4 seconds on Hit", - ["type"] = "implicit", - }, - }, + ["max"] = 40, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2089652545", + ["text"] = "#% chance to Intimidate Enemies for 4 seconds on Hit", + ["type"] = "implicit", + }, + }, ["5715_ChanceToIntimidateOnHitPinnaclePresence"] = { ["Gloves"] = { - ["max"] = 95, - ["min"] = 4, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3004272949", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% chance to Intimidate Enemies for 4 seconds on Hit", - ["type"] = "implicit", - }, - }, + ["max"] = 95, + ["min"] = 4, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3004272949", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% chance to Intimidate Enemies for 4 seconds on Hit", + ["type"] = "implicit", + }, + }, ["5715_ChanceToIntimidateOnHitUniquePresence"] = { ["Gloves"] = { - ["max"] = 70, - ["min"] = 50, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_144453866", - ["text"] = "While a Unique Enemy is in your Presence, #% chance to Intimidate Enemies for 4 seconds on Hit", - ["type"] = "implicit", - }, - }, + ["max"] = 70, + ["min"] = 50, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_144453866", + ["text"] = "While a Unique Enemy is in your Presence, #% chance to Intimidate Enemies for 4 seconds on Hit", + ["type"] = "implicit", + }, + }, ["5725_ChanceToUnnerveOnHit"] = { ["Gloves"] = { - ["max"] = 40, - ["min"] = 15, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_763611529", - ["text"] = "#% chance to Unnerve Enemies for 4 seconds on Hit", - ["type"] = "implicit", - }, - }, + ["max"] = 40, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_763611529", + ["text"] = "#% chance to Unnerve Enemies for 4 seconds on Hit", + ["type"] = "implicit", + }, + }, ["5725_ChanceToUnnerveOnHitPinnaclePresence"] = { ["Gloves"] = { - ["max"] = 95, - ["min"] = 4, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_4018420421", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% chance to Unnerve Enemies for 4 seconds on Hit", - ["type"] = "implicit", - }, - }, + ["max"] = 95, + ["min"] = 4, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_4018420421", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% chance to Unnerve Enemies for 4 seconds on Hit", + ["type"] = "implicit", + }, + }, ["5725_ChanceToUnnerveOnHitUniquePresence"] = { ["Gloves"] = { - ["max"] = 70, - ["min"] = 50, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1708506642", - ["text"] = "While a Unique Enemy is in your Presence, #% chance to Unnerve Enemies for 4 seconds on Hit", - ["type"] = "implicit", - }, - }, + ["max"] = 70, + ["min"] = 50, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1708506642", + ["text"] = "While a Unique Enemy is in your Presence, #% chance to Unnerve Enemies for 4 seconds on Hit", + ["type"] = "implicit", + }, + }, ["5818_ColdDamageTakenGainedAsLife"] = { ["Helmet"] = { - ["max"] = 18, - ["min"] = 7, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3679418014", - ["text"] = "#% of Cold Damage taken Recouped as Life", - ["type"] = "implicit", - }, - }, + ["max"] = 18, + ["min"] = 7, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3679418014", + ["text"] = "#% of Cold Damage taken Recouped as Life", + ["type"] = "implicit", + }, + }, ["5818_ColdDamageTakenGainedAsLifePinnaclePresence"] = { ["Helmet"] = { - ["max"] = 30, - ["min"] = 23, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2181576428", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% of Cold Damage taken Recouped as Life", - ["type"] = "implicit", - }, - }, + ["max"] = 30, + ["min"] = 23, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2181576428", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% of Cold Damage taken Recouped as Life", + ["type"] = "implicit", + }, + }, ["5818_ColdDamageTakenGainedAsLifeUniquePresence"] = { ["Helmet"] = { - ["max"] = 24, - ["min"] = 15, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1739741837", - ["text"] = "While a Unique Enemy is in your Presence, #% of Cold Damage taken Recouped as Life", - ["type"] = "implicit", - }, - }, + ["max"] = 24, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1739741837", + ["text"] = "While a Unique Enemy is in your Presence, #% of Cold Damage taken Recouped as Life", + ["type"] = "implicit", + }, + }, ["6066_IncreasedDamagePerPowerCharge"] = { ["Helmet"] = { - ["max"] = 6, - ["min"] = 4, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2034658008", - ["text"] = "#% increased Damage per Power Charge", - ["type"] = "implicit", - }, - }, + ["max"] = 6, + ["min"] = 4, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2034658008", + ["text"] = "#% increased Damage per Power Charge", + ["type"] = "implicit", + }, + }, ["6066_IncreasedDamagePerPowerChargePinnaclePresence"] = { ["Helmet"] = { - ["max"] = 8, - ["min"] = 7, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2809284200", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Damage per Power Charge", - ["type"] = "implicit", - }, - }, + ["max"] = 8, + ["min"] = 7, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2809284200", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Damage per Power Charge", + ["type"] = "implicit", + }, + }, ["6066_IncreasedDamagePerPowerChargeUniquePresence"] = { ["Helmet"] = { - ["max"] = 7, - ["min"] = 5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1394771132", - ["text"] = "While a Unique Enemy is in your Presence, #% increased Damage per Power Charge", - ["type"] = "implicit", - }, - }, + ["max"] = 7, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1394771132", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Damage per Power Charge", + ["type"] = "implicit", + }, + }, ["6105_DamageTakenGainedAsLife"] = { ["Chest"] = { - ["max"] = 19, - ["min"] = 8, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1444556985", - ["text"] = "#% of Damage taken Recouped as Life", - ["type"] = "implicit", - }, - }, + ["max"] = 19, + ["min"] = 8, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1444556985", + ["text"] = "#% of Damage taken Recouped as Life", + ["type"] = "implicit", + }, + }, ["6105_DamageTakenGainedAsLifePinnaclePresence"] = { ["Chest"] = { - ["max"] = 31, - ["min"] = 24, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2525287976", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% of Damage taken Recouped as Life", - ["type"] = "implicit", - }, - }, + ["max"] = 31, + ["min"] = 24, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2525287976", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% of Damage taken Recouped as Life", + ["type"] = "implicit", + }, + }, ["6105_DamageTakenGainedAsLifeUniquePresence"] = { ["Chest"] = { - ["max"] = 25, - ["min"] = 16, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2080582538", - ["text"] = "While a Unique Enemy is in your Presence, #% of Damage taken Recouped as Life", - ["type"] = "implicit", - }, - }, + ["max"] = 25, + ["min"] = 16, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2080582538", + ["text"] = "While a Unique Enemy is in your Presence, #% of Damage taken Recouped as Life", + ["type"] = "implicit", + }, + }, ["6168_CurseEffectDespair"] = { ["Helmet"] = { - ["max"] = 15, - ["min"] = 10, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3185156108", - ["text"] = "#% increased Despair Curse Effect", - ["type"] = "implicit", - }, - }, + ["max"] = 15, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3185156108", + ["text"] = "#% increased Despair Curse Effect", + ["type"] = "implicit", + }, + }, ["6168_CurseEffectDespairPinnaclePresence"] = { ["Helmet"] = { - ["max"] = 23, - ["min"] = 20, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2775855429", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Despair Curse Effect", - ["type"] = "implicit", - }, - }, + ["max"] = 23, + ["min"] = 20, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2775855429", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Despair Curse Effect", + ["type"] = "implicit", + }, + }, ["6168_CurseEffectDespairUniquePresence"] = { ["Helmet"] = { - ["max"] = 19, - ["min"] = 15, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2909684383", - ["text"] = "While a Unique Enemy is in your Presence, #% increased Despair Curse Effect", - ["type"] = "implicit", - }, - }, - ["6529_ExtinguishOnHitChance"] = { + ["max"] = 19, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2909684383", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Despair Curse Effect", + ["type"] = "implicit", + }, + }, + ["6530_ExtinguishOnHitChance"] = { ["Gloves"] = { - ["max"] = 40, - ["min"] = 15, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_49183689", - ["text"] = "#% chance to Extinguish Enemies on Hit", - ["type"] = "implicit", - }, - }, - ["6529_ExtinguishOnHitPinnaclePresence"] = { + ["max"] = 40, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_49183689", + ["text"] = "#% chance to Extinguish Enemies on Hit", + ["type"] = "implicit", + }, + }, + ["6530_ExtinguishOnHitPinnaclePresence"] = { ["Gloves"] = { - ["max"] = 100, - ["min"] = 85, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3854721949", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% chance to Extinguish Enemies on Hit", - ["type"] = "implicit", - }, - }, - ["6529_ExtinguishOnHitUniquePresence"] = { + ["max"] = 100, + ["min"] = 85, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3854721949", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% chance to Extinguish Enemies on Hit", + ["type"] = "implicit", + }, + }, + ["6530_ExtinguishOnHitUniquePresence"] = { ["Gloves"] = { - ["max"] = 70, - ["min"] = 50, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_4163073767", - ["text"] = "While a Unique Enemy is in your Presence, #% chance to Extinguish Enemies on Hit", - ["type"] = "implicit", - }, - }, - ["6571_FireDamageTakenGainedAsLife"] = { + ["max"] = 70, + ["min"] = 50, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_4163073767", + ["text"] = "While a Unique Enemy is in your Presence, #% chance to Extinguish Enemies on Hit", + ["type"] = "implicit", + }, + }, + ["6572_FireDamageTakenGainedAsLife"] = { ["Helmet"] = { - ["max"] = 18, - ["min"] = 7, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1742651309", - ["text"] = "#% of Fire Damage taken Recouped as Life", - ["type"] = "implicit", - }, - }, - ["6571_FireDamageTakenGainedAsLifePinnaclePresence"] = { + ["max"] = 18, + ["min"] = 7, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1742651309", + ["text"] = "#% of Fire Damage taken Recouped as Life", + ["type"] = "implicit", + }, + }, + ["6572_FireDamageTakenGainedAsLifePinnaclePresence"] = { ["Helmet"] = { - ["max"] = 30, - ["min"] = 23, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1613190388", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% of Fire Damage taken Recouped as Life", - ["type"] = "implicit", - }, - }, - ["6571_FireDamageTakenGainedAsLifeUniquePresence"] = { + ["max"] = 30, + ["min"] = 23, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1613190388", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% of Fire Damage taken Recouped as Life", + ["type"] = "implicit", + }, + }, + ["6572_FireDamageTakenGainedAsLifeUniquePresence"] = { ["Helmet"] = { - ["max"] = 24, - ["min"] = 15, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2143647966", - ["text"] = "While a Unique Enemy is in your Presence, #% of Fire Damage taken Recouped as Life", - ["type"] = "implicit", - }, - }, - ["6648_FleshAndStoneAreaOfEffect"] = { + ["max"] = 24, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2143647966", + ["text"] = "While a Unique Enemy is in your Presence, #% of Fire Damage taken Recouped as Life", + ["type"] = "implicit", + }, + }, + ["6649_FleshAndStoneAreaOfEffect"] = { ["Chest"] = { - ["max"] = 32, - ["min"] = 15, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_789978501", - ["text"] = "Flesh and Stone has #% increased Area of Effect", - ["type"] = "implicit", - }, - }, - ["6648_FleshAndStoneAreaOfEffectPinnaclePresence"] = { + ["max"] = 32, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_789978501", + ["text"] = "Flesh and Stone has #% increased Area of Effect", + ["type"] = "implicit", + }, + }, + ["6649_FleshAndStoneAreaOfEffectPinnaclePresence"] = { ["Chest"] = { - ["max"] = 50, - ["min"] = 39, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3393490212", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Flesh and Stone has #% increased Area of Effect", - ["type"] = "implicit", - }, - }, - ["6648_FleshAndStoneAreaOfEffectUniquePresence"] = { + ["max"] = 50, + ["min"] = 39, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3393490212", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Flesh and Stone has #% increased Area of Effect", + ["type"] = "implicit", + }, + }, + ["6649_FleshAndStoneAreaOfEffectUniquePresence"] = { ["Chest"] = { - ["max"] = 41, - ["min"] = 27, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1472965536", - ["text"] = "While a Unique Enemy is in your Presence, Flesh and Stone has #% increased Area of Effect", - ["type"] = "implicit", - }, - }, - ["6838_RageOnAttackHit"] = { + ["max"] = 41, + ["min"] = 27, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1472965536", + ["text"] = "While a Unique Enemy is in your Presence, Flesh and Stone has #% increased Area of Effect", + ["type"] = "implicit", + }, + }, + ["6839_RageOnAttackHit"] = { ["Gloves"] = { - ["max"] = 2, - ["min"] = 1, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2676601655", - ["text"] = "Gain # Rage on Attack Hit", - ["type"] = "implicit", - }, - }, - ["6838_RageOnAttackHitPinnaclePresence"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2676601655", + ["text"] = "Gain # Rage on Attack Hit", + ["type"] = "implicit", + }, + }, + ["6839_RageOnAttackHitPinnaclePresence"] = { ["Gloves"] = { - ["max"] = 4, - ["min"] = 3, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3509416536", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Gain # Rage on Attack Hit", - ["type"] = "implicit", - }, - }, - ["6838_RageOnAttackHitUniquePresence"] = { + ["max"] = 4, + ["min"] = 3, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3509416536", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Gain # Rage on Attack Hit", + ["type"] = "implicit", + }, + }, + ["6839_RageOnAttackHitUniquePresence"] = { ["Gloves"] = { - ["max"] = 3, - ["min"] = 2, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3134649750", - ["text"] = "While a Unique Enemy is in your Presence, Gain # Rage on Attack Hit", - ["type"] = "implicit", - }, - }, - ["6889_RageOnHitImplicit"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2802161115", - ["text"] = "Gain 1 Rage on Hit with Attacks", - ["type"] = "implicit", - }, - }, - ["6889_RageOnHitImplicitPinnaclePresence"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1270539481", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Gain 1 Rage on Hit with Attacks", - ["type"] = "implicit", - }, - }, - ["6889_RageOnHitImplicitUniquePresence"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2076129434", - ["text"] = "While a Unique Enemy is in your Presence, Gain 1 Rage on Hit with Attacks", - ["type"] = "implicit", - }, - }, - ["6893_GolemBuffEffectUnique"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3134649750", + ["text"] = "While a Unique Enemy is in your Presence, Gain # Rage on Attack Hit", + ["type"] = "implicit", + }, + }, + ["6890_RageOnHitImplicit"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2802161115", + ["text"] = "Gain 1 Rage on Hit with Attacks", + ["type"] = "implicit", + }, + }, + ["6890_RageOnHitImplicitPinnaclePresence"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1270539481", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Gain 1 Rage on Hit with Attacks", + ["type"] = "implicit", + }, + }, + ["6890_RageOnHitImplicitUniquePresence"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2076129434", + ["text"] = "While a Unique Enemy is in your Presence, Gain 1 Rage on Hit with Attacks", + ["type"] = "implicit", + }, + }, + ["6894_GolemBuffEffectUnique"] = { ["Chest"] = { - ["max"] = 36, - ["min"] = 19, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2109043683", - ["text"] = "#% increased Effect of Buffs granted by your Golems", - ["type"] = "implicit", - }, - }, - ["6893_GolemBuffEffectUniquePinnaclePresence"] = { + ["max"] = 36, + ["min"] = 19, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2109043683", + ["text"] = "#% increased Effect of Buffs granted by your Golems", + ["type"] = "implicit", + }, + }, + ["6894_GolemBuffEffectUniquePinnaclePresence"] = { ["Chest"] = { - ["max"] = 60, - ["min"] = 49, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_4128294206", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Effect of Buffs granted by your Golems", - ["type"] = "implicit", - }, - }, - ["6893_GolemBuffEffectUniqueUniquePresence"] = { + ["max"] = 60, + ["min"] = 49, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_4128294206", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Effect of Buffs granted by your Golems", + ["type"] = "implicit", + }, + }, + ["6894_GolemBuffEffectUniqueUniquePresence"] = { ["Chest"] = { - ["max"] = 48, - ["min"] = 34, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2159248495", - ["text"] = "While a Unique Enemy is in your Presence, #% increased Effect of Buffs granted by your Golems", - ["type"] = "implicit", - }, - }, - ["7107_HeraldBonusAgonyEffect"] = { + ["max"] = 48, + ["min"] = 34, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2159248495", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Effect of Buffs granted by your Golems", + ["type"] = "implicit", + }, + }, + ["7108_HeraldBonusAgonyEffect"] = { ["Gloves"] = { - ["max"] = 30, - ["min"] = 15, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2572910724", - ["text"] = "Herald of Agony has #% increased Buff Effect", - ["type"] = "implicit", - }, - }, - ["7107_HeraldBonusAgonyEffectPinnaclePresence"] = { + ["max"] = 30, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2572910724", + ["text"] = "Herald of Agony has #% increased Buff Effect", + ["type"] = "implicit", + }, + }, + ["7108_HeraldBonusAgonyEffectPinnaclePresence"] = { ["Gloves"] = { - ["max"] = 48, - ["min"] = 39, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3001066983", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Herald of Agony has #% increased Buff Effect", - ["type"] = "implicit", - }, - }, - ["7107_HeraldBonusAgonyEffectUniquePresence"] = { + ["max"] = 48, + ["min"] = 39, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3001066983", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Herald of Agony has #% increased Buff Effect", + ["type"] = "implicit", + }, + }, + ["7108_HeraldBonusAgonyEffectUniquePresence"] = { ["Gloves"] = { - ["max"] = 39, - ["min"] = 27, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_503887731", - ["text"] = "While a Unique Enemy is in your Presence, Herald of Agony has #% increased Buff Effect", - ["type"] = "implicit", - }, - }, - ["7111_HeraldBonusAshEffect"] = { + ["max"] = 39, + ["min"] = 27, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_503887731", + ["text"] = "While a Unique Enemy is in your Presence, Herald of Agony has #% increased Buff Effect", + ["type"] = "implicit", + }, + }, + ["7112_HeraldBonusAshEffect"] = { ["Gloves"] = { - ["max"] = 30, - ["min"] = 15, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2154349925", - ["text"] = "Herald of Ash has #% increased Buff Effect", - ["type"] = "implicit", - }, - }, - ["7111_HeraldBonusAshEffectPinnaclePresence"] = { + ["max"] = 30, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2154349925", + ["text"] = "Herald of Ash has #% increased Buff Effect", + ["type"] = "implicit", + }, + }, + ["7112_HeraldBonusAshEffectPinnaclePresence"] = { ["Gloves"] = { - ["max"] = 48, - ["min"] = 39, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3045509476", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Herald of Ash has #% increased Buff Effect", - ["type"] = "implicit", - }, - }, - ["7111_HeraldBonusAshEffectUniquePresence"] = { + ["max"] = 48, + ["min"] = 39, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3045509476", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Herald of Ash has #% increased Buff Effect", + ["type"] = "implicit", + }, + }, + ["7112_HeraldBonusAshEffectUniquePresence"] = { ["Gloves"] = { - ["max"] = 39, - ["min"] = 27, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_109112452", - ["text"] = "While a Unique Enemy is in your Presence, Herald of Ash has #% increased Buff Effect", - ["type"] = "implicit", - }, - }, - ["7115_HeraldBonusIceEffect"] = { + ["max"] = 39, + ["min"] = 27, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_109112452", + ["text"] = "While a Unique Enemy is in your Presence, Herald of Ash has #% increased Buff Effect", + ["type"] = "implicit", + }, + }, + ["7116_HeraldBonusIceEffect"] = { ["Gloves"] = { - ["max"] = 30, - ["min"] = 15, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1862926389", - ["text"] = "Herald of Ice has #% increased Buff Effect", - ["type"] = "implicit", - }, - }, - ["7115_HeraldBonusIceEffectPinnaclePresence"] = { + ["max"] = 30, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1862926389", + ["text"] = "Herald of Ice has #% increased Buff Effect", + ["type"] = "implicit", + }, + }, + ["7116_HeraldBonusIceEffectPinnaclePresence"] = { ["Gloves"] = { - ["max"] = 48, - ["min"] = 39, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1609260458", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Herald of Ice has #% increased Buff Effect", - ["type"] = "implicit", - }, - }, - ["7115_HeraldBonusIceEffectUniquePresence"] = { + ["max"] = 48, + ["min"] = 39, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1609260458", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Herald of Ice has #% increased Buff Effect", + ["type"] = "implicit", + }, + }, + ["7116_HeraldBonusIceEffectUniquePresence"] = { ["Gloves"] = { - ["max"] = 39, - ["min"] = 27, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3593717239", - ["text"] = "While a Unique Enemy is in your Presence, Herald of Ice has #% increased Buff Effect", - ["type"] = "implicit", - }, - }, - ["7119_HeraldBonusPurityEffect"] = { + ["max"] = 39, + ["min"] = 27, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3593717239", + ["text"] = "While a Unique Enemy is in your Presence, Herald of Ice has #% increased Buff Effect", + ["type"] = "implicit", + }, + }, + ["7120_HeraldBonusPurityEffect"] = { ["Gloves"] = { - ["max"] = 30, - ["min"] = 15, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2126027382", - ["text"] = "Herald of Purity has #% increased Buff Effect", - ["type"] = "implicit", - }, - }, - ["7119_HeraldBonusPurityEffectPinnaclePresence"] = { + ["max"] = 30, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2126027382", + ["text"] = "Herald of Purity has #% increased Buff Effect", + ["type"] = "implicit", + }, + }, + ["7120_HeraldBonusPurityEffectPinnaclePresence"] = { ["Gloves"] = { - ["max"] = 48, - ["min"] = 39, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3005679448", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Herald of Purity has #% increased Buff Effect", - ["type"] = "implicit", - }, - }, - ["7119_HeraldBonusPurityEffectUniquePresence"] = { + ["max"] = 48, + ["min"] = 39, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3005679448", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Herald of Purity has #% increased Buff Effect", + ["type"] = "implicit", + }, + }, + ["7120_HeraldBonusPurityEffectUniquePresence"] = { ["Gloves"] = { - ["max"] = 39, - ["min"] = 27, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_4093169696", - ["text"] = "While a Unique Enemy is in your Presence, Herald of Purity has #% increased Buff Effect", - ["type"] = "implicit", - }, - }, - ["7125_HeraldBonusThunderEffect"] = { + ["max"] = 39, + ["min"] = 27, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_4093169696", + ["text"] = "While a Unique Enemy is in your Presence, Herald of Purity has #% increased Buff Effect", + ["type"] = "implicit", + }, + }, + ["7126_HeraldBonusThunderEffect"] = { ["Gloves"] = { - ["max"] = 30, - ["min"] = 15, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3814686091", - ["text"] = "Herald of Thunder has #% increased Buff Effect", - ["type"] = "implicit", - }, - }, - ["7125_HeraldBonusThunderEffectPinnaclePresence"] = { + ["max"] = 30, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3814686091", + ["text"] = "Herald of Thunder has #% increased Buff Effect", + ["type"] = "implicit", + }, + }, + ["7126_HeraldBonusThunderEffectPinnaclePresence"] = { ["Gloves"] = { - ["max"] = 48, - ["min"] = 39, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1553385903", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Herald of Thunder has #% increased Buff Effect", - ["type"] = "implicit", - }, - }, - ["7125_HeraldBonusThunderEffectUniquePresence"] = { + ["max"] = 48, + ["min"] = 39, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1553385903", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Herald of Thunder has #% increased Buff Effect", + ["type"] = "implicit", + }, + }, + ["7126_HeraldBonusThunderEffectUniquePresence"] = { ["Gloves"] = { - ["max"] = 39, - ["min"] = 27, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_649027123", - ["text"] = "While a Unique Enemy is in your Presence, Herald of Thunder has #% increased Buff Effect", - ["type"] = "implicit", - }, - }, - ["7451_LightningDamageTakenGainedAsLife"] = { + ["max"] = 39, + ["min"] = 27, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_649027123", + ["text"] = "While a Unique Enemy is in your Presence, Herald of Thunder has #% increased Buff Effect", + ["type"] = "implicit", + }, + }, + ["7452_LightningDamageTakenGainedAsLife"] = { ["Helmet"] = { - ["max"] = 18, - ["min"] = 7, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2970621759", - ["text"] = "#% of Lightning Damage taken Recouped as Life", - ["type"] = "implicit", - }, - }, - ["7451_LightningDamageTakenGainedAsLifePinnaclePresence"] = { + ["max"] = 18, + ["min"] = 7, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2970621759", + ["text"] = "#% of Lightning Damage taken Recouped as Life", + ["type"] = "implicit", + }, + }, + ["7452_LightningDamageTakenGainedAsLifePinnaclePresence"] = { ["Helmet"] = { - ["max"] = 30, - ["min"] = 23, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3870554516", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% of Lightning Damage taken Recouped as Life", - ["type"] = "implicit", - }, - }, - ["7451_LightningDamageTakenGainedAsLifeUniquePresence"] = { + ["max"] = 30, + ["min"] = 23, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3870554516", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% of Lightning Damage taken Recouped as Life", + ["type"] = "implicit", + }, + }, + ["7452_LightningDamageTakenGainedAsLifeUniquePresence"] = { ["Helmet"] = { - ["max"] = 24, - ["min"] = 15, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1146717028", - ["text"] = "While a Unique Enemy is in your Presence, #% of Lightning Damage taken Recouped as Life", - ["type"] = "implicit", - }, - }, - ["9184_StrikeSkillsAdditionalTarget"] = { + ["max"] = 24, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1146717028", + ["text"] = "While a Unique Enemy is in your Presence, #% of Lightning Damage taken Recouped as Life", + ["type"] = "implicit", + }, + }, + ["9185_StrikeSkillsAdditionalTarget"] = { ["Gloves"] = { - ["max"] = 2, - ["min"] = 1, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1661253443", - ["text"] = "Non-Vaal Strike Skills target # additional nearby Enemy", - ["type"] = "implicit", - }, - }, - ["9663_PhysicalDamageTakenGainedAsLife"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1661253443", + ["text"] = "Non-Vaal Strike Skills target # additional nearby Enemy", + ["type"] = "implicit", + }, + }, + ["9664_PhysicalDamageTakenGainedAsLife"] = { ["Helmet"] = { - ["max"] = 18, - ["min"] = 7, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_4021566756", - ["text"] = "#% of Physical Damage taken Recouped as Life", - ["type"] = "implicit", - }, - }, - ["9663_PhysicalDamageTakenGainedAsLifePinnaclePresence"] = { + ["max"] = 18, + ["min"] = 7, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_4021566756", + ["text"] = "#% of Physical Damage taken Recouped as Life", + ["type"] = "implicit", + }, + }, + ["9664_PhysicalDamageTakenGainedAsLifePinnaclePresence"] = { ["Helmet"] = { - ["max"] = 30, - ["min"] = 23, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1300694383", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% of Physical Damage taken Recouped as Life", - ["type"] = "implicit", - }, - }, - ["9663_PhysicalDamageTakenGainedAsLifeUniquePresence"] = { + ["max"] = 30, + ["min"] = 23, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1300694383", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% of Physical Damage taken Recouped as Life", + ["type"] = "implicit", + }, + }, + ["9664_PhysicalDamageTakenGainedAsLifeUniquePresence"] = { ["Helmet"] = { - ["max"] = 24, - ["min"] = 15, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3796902731", - ["text"] = "While a Unique Enemy is in your Presence, #% of Physical Damage taken Recouped as Life", - ["type"] = "implicit", - }, - }, - }, + ["max"] = 24, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3796902731", + ["text"] = "While a Unique Enemy is in your Presence, #% of Physical Damage taken Recouped as Life", + ["type"] = "implicit", + }, + }, + }, ["Explicit"] = { - ["10005_ChanceToShockAttackersOnBlock"] = { + ["10006_ChanceToShockAttackersOnBlock"] = { ["2HWeapon"] = { - ["max"] = 50, - ["min"] = 25, - }, + ["max"] = 50, + ["min"] = 25, + }, ["Shield"] = { - ["max"] = 50, - ["min"] = 25, - }, + ["max"] = 50, + ["min"] = 25, + }, ["Staff"] = { - ["max"] = 50, - ["min"] = 25, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_575111651", - ["text"] = "#% chance to Shock Attackers for 4 seconds on Block", - ["type"] = "explicit", - }, - }, - ["10012_ShockYourselfOnFocusCDR"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3181879507", - ["text"] = "Shock yourself for # Seconds when you Focus", - ["type"] = "explicit", - }, - }, - ["10013_ShockNearbyEnemiesOnFocus"] = { + ["max"] = 50, + ["min"] = 25, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_575111651", + ["text"] = "#% chance to Shock Attackers for 4 seconds on Block", + ["type"] = "explicit", + }, + }, + ["10013_ShockYourselfOnFocusCDR"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3181879507", + ["text"] = "Shock yourself for # Seconds when you Focus", + ["type"] = "explicit", + }, + }, + ["10014_ShockNearbyEnemiesOnFocus"] = { ["Ring"] = { - ["max"] = 4, - ["min"] = 2, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3031766858", - ["text"] = "Shock nearby Enemies for # Seconds when you Focus", - ["type"] = "explicit", - }, - }, - ["10013_ShockNearbyEnemiesOnFocusCDR"] = { + ["max"] = 4, + ["min"] = 2, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3031766858", + ["text"] = "Shock nearby Enemies for # Seconds when you Focus", + ["type"] = "explicit", + }, + }, + ["10014_ShockNearbyEnemiesOnFocusCDR"] = { ["Ring"] = { - ["max"] = 4, - ["min"] = 4, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3031766858", - ["text"] = "Shock nearby Enemies for # Seconds when you Focus", - ["type"] = "explicit", - }, - }, - ["10018_ChillAndShockEffectOnYouJewel"] = { - ["inverseKey"] = "reduced", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1984113628", - ["text"] = "#% increased Effect of Chill and Shock on you", - ["type"] = "explicit", - }, - }, - ["10018_ReducedElementalAilmentEffectOnSelf"] = { + ["max"] = 4, + ["min"] = 4, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3031766858", + ["text"] = "Shock nearby Enemies for # Seconds when you Focus", + ["type"] = "explicit", + }, + }, + ["10019_ChillAndShockEffectOnYouJewel"] = { + ["inverseKey"] = "reduced", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1984113628", + ["text"] = "#% increased Effect of Chill and Shock on you", + ["type"] = "explicit", + }, + }, + ["10019_ReducedElementalAilmentEffectOnSelf"] = { ["Boots"] = { - ["max"] = -24, - ["min"] = -40, - }, + ["max"] = -24, + ["min"] = -40, + }, ["Gloves"] = { - ["max"] = -24, - ["min"] = -40, - }, - ["inverseKey"] = "reduced", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1984113628", - ["text"] = "#% increased Effect of Chill and Shock on you", - ["type"] = "explicit", - }, - }, - ["10019_ReducedShockEffectOnSelf"] = { + ["max"] = -24, + ["min"] = -40, + }, + ["inverseKey"] = "reduced", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1984113628", + ["text"] = "#% increased Effect of Chill and Shock on you", + ["type"] = "explicit", + }, + }, + ["10020_ReducedShockEffectOnSelf"] = { ["AnyJewel"] = { - ["max"] = 35, - ["min"] = 30, - }, + ["max"] = 35, + ["min"] = 30, + }, ["BaseJewel"] = { - ["max"] = 35, - ["min"] = 30, - }, + ["max"] = 35, + ["min"] = 30, + }, ["Helmet"] = { - ["max"] = 60, - ["min"] = 51, - }, + ["max"] = 60, + ["min"] = 51, + }, ["Ring"] = { - ["max"] = 60, - ["min"] = 41, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3801067695", - ["text"] = "#% reduced Effect of Shock on you", - ["type"] = "explicit", - }, - }, - ["10019_ReducedShockEffectOnSelfMaven"] = { + ["max"] = 60, + ["min"] = 41, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3801067695", + ["text"] = "#% reduced Effect of Shock on you", + ["type"] = "explicit", + }, + }, + ["10020_ReducedShockEffectOnSelfMaven"] = { ["Helmet"] = { - ["max"] = 60, - ["min"] = 51, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3801067695", - ["text"] = "#% reduced Effect of Shock on you", - ["type"] = "explicit", - }, - }, - ["10043_BrandAttachmentRange"] = { + ["max"] = 60, + ["min"] = 51, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3801067695", + ["text"] = "#% reduced Effect of Shock on you", + ["type"] = "explicit", + }, + }, + ["10044_BrandAttachmentRange"] = { ["Amulet"] = { - ["max"] = 28, - ["min"] = 11, - }, + ["max"] = 28, + ["min"] = 11, + }, ["Gloves"] = { - ["max"] = 28, - ["min"] = 11, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4223377453", - ["text"] = "#% increased Brand Attachment range", - ["type"] = "explicit", - }, - }, + ["max"] = 28, + ["min"] = 11, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4223377453", + ["text"] = "#% increased Brand Attachment range", + ["type"] = "explicit", + }, + }, ["1004_FlaskBuffChillFreezeDuration"] = { ["Flask"] = { - ["max"] = 65, - ["min"] = 36, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2434101731", - ["text"] = "#% reduced Effect of Chill on you during Effect", - ["type"] = "explicit", - }, - }, - ["10058_LifeCostOnLowLife"] = { - ["inverseKey"] = "less", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3452986510", - ["text"] = "#% more Life cost of Skills while on Low Life", - ["type"] = "explicit", - }, - }, + ["max"] = 65, + ["min"] = 36, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2434101731", + ["text"] = "#% reduced Effect of Chill on you during Effect", + ["type"] = "explicit", + }, + }, + ["10059_LifeCostOnLowLife"] = { + ["inverseKey"] = "less", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3452986510", + ["text"] = "#% more Life cost of Skills while on Low Life", + ["type"] = "explicit", + }, + }, ["1005_FlaskBuffCurseEffect"] = { ["Flask"] = { - ["max"] = 65, - ["min"] = 36, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4265534424", - ["text"] = "#% reduced Effect of Curses on you during Effect", - ["type"] = "explicit", - }, - }, - ["10060_ManaCostTotalChannelled"] = { + ["max"] = 65, + ["min"] = 36, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4265534424", + ["text"] = "#% reduced Effect of Curses on you during Effect", + ["type"] = "explicit", + }, + }, + ["10061_ManaCostTotalChannelled"] = { ["Amulet"] = { - ["max"] = 3, - ["min"] = 1, - }, + ["max"] = 3, + ["min"] = 1, + }, ["Ring"] = { - ["max"] = 3, - ["min"] = 1, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2421446548", - ["text"] = "Channelling Skills have +# to Total Mana Cost", - ["type"] = "explicit", - }, - }, - ["10061_ManaCostBaseChannelled"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1178188780", - ["text"] = "Channelling Skills Cost +# Mana", - ["type"] = "explicit", - }, - }, - ["10062_IncreasedManaAndCostNew"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_677564538", - ["text"] = "Non-Channelling Skills have +# to Total Mana Cost", - ["type"] = "explicit", - }, - }, - ["10062_ManaCostTotalNonChannelled"] = { + ["max"] = 3, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2421446548", + ["text"] = "Channelling Skills have +# to Total Mana Cost", + ["type"] = "explicit", + }, + }, + ["10062_ManaCostBaseChannelled"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1178188780", + ["text"] = "Channelling Skills Cost +# Mana", + ["type"] = "explicit", + }, + }, + ["10063_IncreasedManaAndCostNew"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_677564538", + ["text"] = "Non-Channelling Skills have +# to Total Mana Cost", + ["type"] = "explicit", + }, + }, + ["10063_ManaCostTotalNonChannelled"] = { ["Amulet"] = { - ["max"] = 6, - ["min"] = 4, - }, + ["max"] = 6, + ["min"] = 4, + }, ["Ring"] = { - ["max"] = 6, - ["min"] = 4, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_677564538", - ["text"] = "Non-Channelling Skills have +# to Total Mana Cost", - ["type"] = "explicit", - }, - }, - ["10063_IncreasedManaAndBaseCost"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_407482587", - ["text"] = "Non-Channelling Skills Cost +# Mana", - ["type"] = "explicit", - }, - }, - ["10063_ManaCostBaseNonChannelled"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_407482587", - ["text"] = "Non-Channelling Skills Cost +# Mana", - ["type"] = "explicit", - }, - }, - ["10065_SkillsCostNoManaWhileFocusedCDR"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_849152640", - ["text"] = "Non-Aura Skills Cost no Mana or Life while Focused", - ["type"] = "explicit", - }, - }, + ["max"] = 6, + ["min"] = 4, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_677564538", + ["text"] = "Non-Channelling Skills have +# to Total Mana Cost", + ["type"] = "explicit", + }, + }, + ["10064_IncreasedManaAndBaseCost"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_407482587", + ["text"] = "Non-Channelling Skills Cost +# Mana", + ["type"] = "explicit", + }, + }, + ["10064_ManaCostBaseNonChannelled"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_407482587", + ["text"] = "Non-Channelling Skills Cost +# Mana", + ["type"] = "explicit", + }, + }, + ["10066_SkillsCostNoManaWhileFocusedCDR"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_849152640", + ["text"] = "Non-Aura Skills Cost no Mana or Life while Focused", + ["type"] = "explicit", + }, + }, ["1006_FlaskBuffChillFreezeDuration"] = { ["Flask"] = { - ["max"] = -36, - ["min"] = -65, - }, - ["inverseKey"] = "reduced", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_774474440", - ["text"] = "#% increased Freeze Duration on you during Effect", - ["type"] = "explicit", - }, - }, - ["10070_MineLifeReserve"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1192252020", - ["text"] = "Your Skills that throw Mines reserve Life instead of Mana", - ["type"] = "explicit", - }, - }, + ["max"] = -36, + ["min"] = -65, + }, + ["inverseKey"] = "reduced", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_774474440", + ["text"] = "#% increased Freeze Duration on you during Effect", + ["type"] = "explicit", + }, + }, + ["10071_MineLifeReserve"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1192252020", + ["text"] = "Your Skills that throw Mines reserve Life instead of Mana", + ["type"] = "explicit", + }, + }, ["1009_FlaskBuffShockEffect"] = { ["Flask"] = { - ["max"] = -36, - ["min"] = -65, - }, - ["inverseKey"] = "reduced", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1878455805", - ["text"] = "#% increased Effect of Shock on you during Effect", - ["type"] = "explicit", - }, - }, - ["10115_SpectresAdditionalBaseCriticalChance"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2341487846", - ["text"] = "Raised Spectres have +#% to Critical Strike Chance", - ["type"] = "explicit", - }, - }, - ["10117_SpectresBaseMaximumAllResistance"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2472962676", - ["text"] = "Raised Spectres have +#% to all maximum Resistances", - ["type"] = "explicit", - }, - }, - ["10118_SpectresAreaOfEffect"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3724637507", - ["text"] = "Raised Spectres have #% increased Area of Effect", - ["type"] = "explicit", - }, - }, - ["10123_SpectresAdditionalProjectiles"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1275218140", - ["text"] = "Raised Spectres fire # additional Projectiles", - ["type"] = "explicit", - }, - }, - ["10125_AdditionalCriticalStrikeChanceWithSpells"] = { + ["max"] = -36, + ["min"] = -65, + }, + ["inverseKey"] = "reduced", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1878455805", + ["text"] = "#% increased Effect of Shock on you during Effect", + ["type"] = "explicit", + }, + }, + ["10116_SpectresAdditionalBaseCriticalChance"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2341487846", + ["text"] = "Raised Spectres have +#% to Critical Strike Chance", + ["type"] = "explicit", + }, + }, + ["10118_SpectresBaseMaximumAllResistance"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2472962676", + ["text"] = "Raised Spectres have +#% to all maximum Resistances", + ["type"] = "explicit", + }, + }, + ["10119_SpectresAreaOfEffect"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3724637507", + ["text"] = "Raised Spectres have #% increased Area of Effect", + ["type"] = "explicit", + }, + }, + ["10124_SpectresAdditionalProjectiles"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1275218140", + ["text"] = "Raised Spectres fire # additional Projectiles", + ["type"] = "explicit", + }, + }, + ["10126_AdditionalCriticalStrikeChanceWithSpells"] = { ["Chest"] = { - ["max"] = 2, - ["min"] = 0.5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_791835907", - ["text"] = "+#% to Spell Critical Strike Chance", - ["type"] = "explicit", - }, - }, - ["10133_SpellBlockIfBlockedSpellRecently"] = { + ["max"] = 2, + ["min"] = 0.5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_791835907", + ["text"] = "+#% to Spell Critical Strike Chance", + ["type"] = "explicit", + }, + }, + ["10134_SpellBlockIfBlockedSpellRecently"] = { ["Shield"] = { - ["max"] = 12, - ["min"] = 7, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4263513561", - ["text"] = "+#% Chance to Block Spell Damage if you have Blocked Spell Damage Recently", - ["type"] = "explicit", - }, - }, - ["10136_SpellsDoubleDamageChance"] = { + ["max"] = 12, + ["min"] = 7, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4263513561", + ["text"] = "+#% Chance to Block Spell Damage if you have Blocked Spell Damage Recently", + ["type"] = "explicit", + }, + }, + ["10137_SpellsDoubleDamageChance"] = { ["1HMace"] = { - ["max"] = 7, - ["min"] = 4, - }, + ["max"] = 7, + ["min"] = 4, + }, ["1HWeapon"] = { - ["max"] = 7, - ["min"] = 4, - }, + ["max"] = 7, + ["min"] = 4, + }, ["2HWeapon"] = { - ["max"] = 14, - ["min"] = 10, - }, + ["max"] = 14, + ["min"] = 10, + }, ["Dagger"] = { - ["max"] = 7, - ["min"] = 4, - }, + ["max"] = 7, + ["min"] = 4, + }, ["Staff"] = { - ["max"] = 14, - ["min"] = 10, - }, + ["max"] = 14, + ["min"] = 10, + }, ["Wand"] = { - ["max"] = 7, - ["min"] = 4, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2813626504", - ["text"] = "Spells have a #% chance to deal Double Damage", - ["type"] = "explicit", - }, - }, - ["10137_SpellsAdditionalUnleashSealMaven"] = { + ["max"] = 7, + ["min"] = 4, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2813626504", + ["text"] = "Spells have a #% chance to deal Double Damage", + ["type"] = "explicit", + }, + }, + ["10138_SpellsAdditionalUnleashSealMaven"] = { ["Helmet"] = { - ["max"] = 75, - ["min"] = 50, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2897207025", - ["text"] = "#% increased Critical Strike Chance with Spells which remove the maximum number of Seals", - ["type"] = "explicit", - }, - }, - ["10148_SpellDamageDuringFlaskEffect"] = { + ["max"] = 75, + ["min"] = 50, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2897207025", + ["text"] = "#% increased Critical Strike Chance with Spells which remove the maximum number of Seals", + ["type"] = "explicit", + }, + }, + ["10149_SpellDamageDuringFlaskEffect"] = { ["Belt"] = { - ["max"] = 35, - ["min"] = 20, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2080171093", - ["text"] = "#% increased Spell Damage during any Flask Effect", - ["type"] = "explicit", - }, - }, - ["10153_SpellDamagePer10Strength"] = { + ["max"] = 35, + ["min"] = 20, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2080171093", + ["text"] = "#% increased Spell Damage during any Flask Effect", + ["type"] = "explicit", + }, + }, + ["10154_SpellDamagePer10Strength"] = { ["2HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Staff"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4249521944", - ["text"] = "#% increased Spell Damage per 16 Strength", - ["type"] = "explicit", - }, - }, - ["10154_SpellDamagePer16Dexterity"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1073314277", + ["text"] = "#% increased Spell Damage per 10 Strength", + ["type"] = "explicit", + }, + }, + ["10155_SpellDamagePer16Dexterity"] = { ["1HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Dagger"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2612056840", - ["text"] = "#% increased Spell Damage per 16 Dexterity", - ["type"] = "explicit", - }, - }, - ["10155_SpellDamagePer16Intelligence"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2612056840", + ["text"] = "#% increased Spell Damage per 16 Dexterity", + ["type"] = "explicit", + }, + }, + ["10156_SpellDamagePer16Intelligence"] = { ["1HMace"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["1HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Dagger"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Wand"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2818518881", - ["text"] = "#% increased Spell Damage per 10 Intelligence", - ["type"] = "explicit", - }, - }, - ["10156_SpellDamagePer16Strength"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2818518881", + ["text"] = "#% increased Spell Damage per 10 Intelligence", + ["type"] = "explicit", + }, + }, + ["10157_SpellDamagePer16Strength"] = { ["1HMace"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["1HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4249521944", - ["text"] = "#% increased Spell Damage per 16 Strength", - ["type"] = "explicit", - }, - }, - ["10188_SpellsHinderOnHitChance"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1073314277", + ["text"] = "#% increased Spell Damage per 10 Strength", + ["type"] = "explicit", + }, + }, + ["10189_SpellsHinderOnHitChance"] = { ["AbyssJewel"] = { - ["max"] = 8, - ["min"] = 3, - }, + ["max"] = 8, + ["min"] = 3, + }, ["AnyJewel"] = { - ["max"] = 8, - ["min"] = 3, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3002506763", - ["text"] = "#% chance to Hinder Enemies on Hit with Spells", - ["type"] = "explicit", - }, - }, - ["10199_EnchantmentSpellslingerManaReservationEfficiency"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3305838454", - ["text"] = "#% increased Mana Reservation Efficiency of Skills Supported by Spellslinger", - ["type"] = "explicit", - }, - }, - ["10224_StatusAilmentsYouInflictDurationWhileFocused"] = { + ["max"] = 8, + ["min"] = 3, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3002506763", + ["text"] = "#% chance to Hinder Enemies on Hit with Spells", + ["type"] = "explicit", + }, + }, + ["10200_EnchantmentSpellslingerManaReservationEfficiency"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3305838454", + ["text"] = "#% increased Mana Reservation Efficiency of Skills Supported by Spellslinger", + ["type"] = "explicit", + }, + }, + ["10225_StatusAilmentsYouInflictDurationWhileFocused"] = { ["Helmet"] = { - ["max"] = 40, - ["min"] = 16, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1840751341", - ["text"] = "#% increased Duration of Ailments you inflict while Focused", - ["type"] = "explicit", - }, - }, - ["10257_GlobalStrengthGemLevel"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2339012908", - ["text"] = "+# to Level of all Strength Skill Gems", - ["type"] = "explicit", - }, - }, - ["10321_AddedFireBurningEnemies"] = { + ["max"] = 40, + ["min"] = 16, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1840751341", + ["text"] = "#% increased Duration of Ailments you inflict while Focused", + ["type"] = "explicit", + }, + }, + ["10258_GlobalStrengthGemLevel"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2339012908", + ["text"] = "+# to Level of all Strength Skill Gems", + ["type"] = "explicit", + }, + }, + ["10322_AddedFireBurningEnemies"] = { ["Belt"] = { - ["max"] = 47, - ["min"] = 31.5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_165402179", - ["text"] = "# to # added Fire Damage against Burning Enemies", - ["type"] = "explicit", - }, - }, - ["10321_FireResistanceAilments"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_165402179", - ["text"] = "# to # added Fire Damage against Burning Enemies", - ["type"] = "explicit", - }, - }, - ["10346_TailwindOnCriticalStrikeMaven"] = { + ["max"] = 47, + ["min"] = 31.5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_165402179", + ["text"] = "# to # added Fire Damage against Burning Enemies", + ["type"] = "explicit", + }, + }, + ["10322_FireResistanceAilments"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_165402179", + ["text"] = "# to # added Fire Damage against Burning Enemies", + ["type"] = "explicit", + }, + }, + ["10347_TailwindOnCriticalStrikeMaven"] = { ["Boots"] = { - ["max"] = 25, - ["min"] = 10, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2172944497", - ["text"] = "#% increased Effect of Tailwind on you", - ["type"] = "explicit", - }, - }, - ["10348_TailwindOnCriticalStrike"] = { + ["max"] = 25, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2172944497", + ["text"] = "#% increased Effect of Tailwind on you", + ["type"] = "explicit", + }, + }, + ["10349_TailwindOnCriticalStrike"] = { ["Boots"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1085545682", - ["text"] = "You have Tailwind if you have dealt a Critical Strike Recently", - ["type"] = "explicit", - }, - }, - ["10348_TailwindOnCriticalStrikeMaven"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1085545682", + ["text"] = "You have Tailwind if you have dealt a Critical Strike Recently", + ["type"] = "explicit", + }, + }, + ["10349_TailwindOnCriticalStrikeMaven"] = { ["Boots"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1085545682", - ["text"] = "You have Tailwind if you have dealt a Critical Strike Recently", - ["type"] = "explicit", - }, - }, - ["10356_WarcryTauntedEnemiesTakeIncreasedDamage"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3610197448", - ["text"] = "Enemies Taunted by your Warcries take #% increased Damage", - ["type"] = "explicit", - }, - }, - ["10414_TrapAndMineThrowSpeed"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1085545682", + ["text"] = "You have Tailwind if you have dealt a Critical Strike Recently", + ["type"] = "explicit", + }, + }, + ["10357_WarcryTauntedEnemiesTakeIncreasedDamage"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3610197448", + ["text"] = "Enemies Taunted by your Warcries take #% increased Damage", + ["type"] = "explicit", + }, + }, + ["10415_TrapAndMineThrowSpeed"] = { ["Belt"] = { - ["max"] = 21, - ["min"] = 7, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_464535071", - ["text"] = "#% increased Trap and Mine Throwing Speed", - ["type"] = "explicit", - }, - }, - ["10423_TravelSkillsCannotBeExerted"] = { + ["max"] = 21, + ["min"] = 7, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_464535071", + ["text"] = "#% increased Trap and Mine Throwing Speed", + ["type"] = "explicit", + }, + }, + ["10424_TravelSkillsCannotBeExerted"] = { ["Amulet"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Belt"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Ring"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2174134106", - ["text"] = "Warcries cannot Exert Travel Skills", - ["type"] = "explicit", - }, - }, - ["10456_BurningGroundEffectEffectiveness"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2174134106", + ["text"] = "Warcries cannot Exert Travel Skills", + ["type"] = "explicit", + }, + }, + ["10457_BurningGroundEffectEffectiveness"] = { ["Boots"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1643688236", - ["text"] = "Unaffected by Burning Ground", - ["type"] = "explicit", - }, - }, - ["10458_ChilledGroundEffectEffectivenessMaven"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1643688236", + ["text"] = "Unaffected by Burning Ground", + ["type"] = "explicit", + }, + }, + ["10459_ChilledGroundEffectEffectivenessMaven"] = { ["Boots"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_937372143", - ["text"] = "Unaffected by Chill", - ["type"] = "explicit", - }, - }, - ["10461_ChilledGroundEffectEffectiveness"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_937372143", + ["text"] = "Unaffected by Chill", + ["type"] = "explicit", + }, + }, + ["10462_ChilledGroundEffectEffectiveness"] = { ["Boots"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3653191834", - ["text"] = "Unaffected by Chilled Ground", - ["type"] = "explicit", - }, - }, - ["10467_DesecratedGroundEffectEffectiveness"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3653191834", + ["text"] = "Unaffected by Chilled Ground", + ["type"] = "explicit", + }, + }, + ["10468_DesecratedGroundEffectEffectiveness"] = { ["Boots"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4004298002", - ["text"] = "Unaffected by Desecrated Ground", - ["type"] = "explicit", - }, - }, - ["10473_BurningGroundEffectEffectivenessMaven"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4004298002", + ["text"] = "Unaffected by Desecrated Ground", + ["type"] = "explicit", + }, + }, + ["10474_BurningGroundEffectEffectivenessMaven"] = { ["Boots"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2635869389", - ["text"] = "Unaffected by Ignite", - ["type"] = "explicit", - }, - }, - ["10477_ShockedGroundEffectEffectivenessMaven"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2635869389", + ["text"] = "Unaffected by Ignite", + ["type"] = "explicit", + }, + }, + ["10478_ShockedGroundEffectEffectivenessMaven"] = { ["Boots"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1473289174", - ["text"] = "Unaffected by Shock", - ["type"] = "explicit", - }, - }, - ["10479_UnaffectedByShockWhileChannel"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2967697688", - ["text"] = "Unaffected by Shock while Channelling", - ["type"] = "explicit", - }, - }, - ["10481_ShockedGroundEffectEffectiveness"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1473289174", + ["text"] = "Unaffected by Shock", + ["type"] = "explicit", + }, + }, + ["10480_UnaffectedByShockWhileChannel"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2967697688", + ["text"] = "Unaffected by Shock while Channelling", + ["type"] = "explicit", + }, + }, + ["10482_ShockedGroundEffectEffectiveness"] = { ["Boots"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2234049899", - ["text"] = "Unaffected by Shocked Ground", - ["type"] = "explicit", - }, - }, - ["10504_SupportedByItemRarityUnique"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2234049899", + ["text"] = "Unaffected by Shocked Ground", + ["type"] = "explicit", + }, + }, + ["10505_SupportedByItemRarityUnique"] = { ["Chest"] = { - ["max"] = 25, - ["min"] = 8, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_121185030", - ["text"] = "#% increased Rarity of Items found from Slain Unique Enemies", - ["type"] = "explicit", - }, - }, - ["10566_WarcryAreaOfEffectMaven"] = { + ["max"] = 25, + ["min"] = 8, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_121185030", + ["text"] = "#% increased Rarity of Items found from Slain Unique Enemies", + ["type"] = "explicit", + }, + }, + ["10567_WarcryAreaOfEffectMaven"] = { ["Helmet"] = { - ["max"] = 15, - ["min"] = 15, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3037553757", - ["text"] = "#% increased Warcry Buff Effect", - ["type"] = "explicit", - }, - }, - ["10566_WarcryBuffEffect"] = { + ["max"] = 15, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3037553757", + ["text"] = "#% increased Warcry Buff Effect", + ["type"] = "explicit", + }, + }, + ["10567_WarcryBuffEffect"] = { ["Helmet"] = { - ["max"] = 18, - ["min"] = 10, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3037553757", - ["text"] = "#% increased Warcry Buff Effect", - ["type"] = "explicit", - }, - }, - ["10566_WarcryEffect"] = { + ["max"] = 18, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3037553757", + ["text"] = "#% increased Warcry Buff Effect", + ["type"] = "explicit", + }, + }, + ["10567_WarcryEffect"] = { ["2HAxe"] = { - ["max"] = 25, - ["min"] = 18, - }, + ["max"] = 25, + ["min"] = 18, + }, ["2HMace"] = { - ["max"] = 25, - ["min"] = 18, - }, + ["max"] = 25, + ["min"] = 18, + }, ["2HSword"] = { - ["max"] = 25, - ["min"] = 18, - }, + ["max"] = 25, + ["min"] = 18, + }, ["2HWeapon"] = { - ["max"] = 25, - ["min"] = 18, - }, + ["max"] = 25, + ["min"] = 18, + }, ["Shield"] = { - ["max"] = 25, - ["min"] = 18, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3037553757", - ["text"] = "#% increased Warcry Buff Effect", - ["type"] = "explicit", - }, - }, - ["10574_WarcryAreaOfEffect"] = { + ["max"] = 25, + ["min"] = 18, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3037553757", + ["text"] = "#% increased Warcry Buff Effect", + ["type"] = "explicit", + }, + }, + ["10575_WarcryAreaOfEffect"] = { ["Helmet"] = { - ["max"] = 30, - ["min"] = 21, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2567751411", - ["text"] = "Warcry Skills have #% increased Area of Effect", - ["type"] = "explicit", - }, - }, - ["10574_WarcryAreaOfEffectMaven"] = { + ["max"] = 30, + ["min"] = 21, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2567751411", + ["text"] = "Warcry Skills have #% increased Area of Effect", + ["type"] = "explicit", + }, + }, + ["10575_WarcryAreaOfEffectMaven"] = { ["Helmet"] = { - ["max"] = 30, - ["min"] = 26, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2567751411", - ["text"] = "Warcry Skills have #% increased Area of Effect", - ["type"] = "explicit", - }, - }, - ["10629_WrathReservation"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3444518809", - ["text"] = "Wrath has #% increased Mana Reservation Efficiency", - ["type"] = "explicit", - }, - }, - ["10630_WrathReservationEfficiency"] = { + ["max"] = 30, + ["min"] = 26, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2567751411", + ["text"] = "Warcry Skills have #% increased Area of Effect", + ["type"] = "explicit", + }, + }, + ["10630_WrathReservation"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1761642973", + ["text"] = "Wrath has #% increased Mana Reservation Efficiency", + ["type"] = "explicit", + }, + }, + ["10631_WrathReservationEfficiency"] = { ["Amulet"] = { - ["max"] = 50, - ["min"] = 40, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3444518809", - ["text"] = "Wrath has #% increased Mana Reservation Efficiency", - ["type"] = "explicit", - }, - }, - ["10688_ConsecratedChaosRes"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1235229114", - ["text"] = "Consecrated Ground you create grants +#% maximum Chaos Resistance to you and Allies", - ["type"] = "explicit", - }, - }, - ["10689_ConsecratedGroundStationaryMaven"] = { + ["max"] = 50, + ["min"] = 40, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1761642973", + ["text"] = "Wrath has #% increased Mana Reservation Efficiency", + ["type"] = "explicit", + }, + }, + ["10689_ConsecratedChaosRes"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1235229114", + ["text"] = "Consecrated Ground you create grants +#% maximum Chaos Resistance to you and Allies", + ["type"] = "explicit", + }, + }, + ["10690_ConsecratedGroundStationaryMaven"] = { ["Chest"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4113372195", - ["text"] = "Effects of Consecrated Ground you create Linger for 1 second", - ["type"] = "explicit", - }, - }, - ["10720_SpellsAdditionalUnleashSeal"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4113372195", + ["text"] = "Effects of Consecrated Ground you create Linger for 1 second", + ["type"] = "explicit", + }, + }, + ["10721_SpellsAdditionalUnleashSeal"] = { ["Helmet"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1264919148", - ["text"] = "Skills supported by Unleash have +# to maximum number of Seals", - ["type"] = "explicit", - }, - }, - ["10720_SpellsAdditionalUnleashSealMaven"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1264919148", + ["text"] = "Skills supported by Unleash have +# to maximum number of Seals", + ["type"] = "explicit", + }, + }, + ["10721_SpellsAdditionalUnleashSealMaven"] = { ["Helmet"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1264919148", - ["text"] = "Skills supported by Unleash have +# to maximum number of Seals", - ["type"] = "explicit", - }, - }, - ["10721_ZealotryAuraEffect"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1264919148", + ["text"] = "Skills supported by Unleash have +# to maximum number of Seals", + ["type"] = "explicit", + }, + }, + ["10722_ZealotryAuraEffect"] = { ["1HMace"] = { - ["max"] = 40, - ["min"] = 28, - }, + ["max"] = 40, + ["min"] = 28, + }, ["1HWeapon"] = { - ["max"] = 40, - ["min"] = 28, - }, + ["max"] = 40, + ["min"] = 28, + }, ["2HWeapon"] = { - ["max"] = 60, - ["min"] = 48, - }, + ["max"] = 60, + ["min"] = 48, + }, ["Dagger"] = { - ["max"] = 40, - ["min"] = 28, - }, + ["max"] = 40, + ["min"] = 28, + }, ["Staff"] = { - ["max"] = 60, - ["min"] = 48, - }, + ["max"] = 60, + ["min"] = 48, + }, ["Wand"] = { - ["max"] = 40, - ["min"] = 28, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4096052153", - ["text"] = "Zealotry has #% increased Aura Effect", - ["type"] = "explicit", - }, - }, - ["10722_ZealotryReservation"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_168308685", - ["text"] = "Zealotry has #% increased Mana Reservation Efficiency", - ["type"] = "explicit", - }, - }, - ["10723_ZealotryReservationEfficiency"] = { + ["max"] = 40, + ["min"] = 28, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4096052153", + ["text"] = "Zealotry has #% increased Aura Effect", + ["type"] = "explicit", + }, + }, + ["10723_ZealotryReservation"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_168308685", + ["text"] = "Zealotry has #% increased Mana Reservation Efficiency", + ["type"] = "explicit", + }, + }, + ["10724_ZealotryReservationEfficiency"] = { ["Amulet"] = { - ["max"] = 50, - ["min"] = 40, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_168308685", - ["text"] = "Zealotry has #% increased Mana Reservation Efficiency", - ["type"] = "explicit", - }, - }, - ["10726_ZeroChaosResistanceDelve"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2439129490", - ["text"] = "Chaos Resistance is Zero", - ["type"] = "explicit", - }, - }, + ["max"] = 50, + ["min"] = 40, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_168308685", + ["text"] = "Zealotry has #% increased Mana Reservation Efficiency", + ["type"] = "explicit", + }, + }, + ["10727_ZeroChaosResistanceDelve"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2439129490", + ["text"] = "Chaos Resistance is Zero", + ["type"] = "explicit", + }, + }, ["1075_LocalAttributeRequirements"] = { ["1HAxe"] = { - ["max"] = -18, - ["min"] = -32, - }, + ["max"] = -18, + ["min"] = -32, + }, ["1HMace"] = { - ["max"] = -18, - ["min"] = -32, - }, + ["max"] = -18, + ["min"] = -32, + }, ["1HSword"] = { - ["max"] = -18, - ["min"] = -32, - }, + ["max"] = -18, + ["min"] = -32, + }, ["1HWeapon"] = { - ["max"] = -18, - ["min"] = -32, - }, + ["max"] = -18, + ["min"] = -32, + }, ["2HAxe"] = { - ["max"] = -18, - ["min"] = -32, - }, + ["max"] = -18, + ["min"] = -32, + }, ["2HMace"] = { - ["max"] = -18, - ["min"] = -32, - }, + ["max"] = -18, + ["min"] = -32, + }, ["2HSword"] = { - ["max"] = -18, - ["min"] = -32, - }, + ["max"] = -18, + ["min"] = -32, + }, ["2HWeapon"] = { - ["max"] = -18, - ["min"] = -32, - }, + ["max"] = -18, + ["min"] = -32, + }, ["Boots"] = { - ["max"] = -18, - ["min"] = -32, - }, + ["max"] = -18, + ["min"] = -32, + }, ["Bow"] = { - ["max"] = -18, - ["min"] = -32, - }, + ["max"] = -18, + ["min"] = -32, + }, ["Chest"] = { - ["max"] = -18, - ["min"] = -32, - }, + ["max"] = -18, + ["min"] = -32, + }, ["Claw"] = { - ["max"] = -18, - ["min"] = -32, - }, + ["max"] = -18, + ["min"] = -32, + }, ["Dagger"] = { - ["max"] = -18, - ["min"] = -32, - }, + ["max"] = -18, + ["min"] = -32, + }, ["Gloves"] = { - ["max"] = -18, - ["min"] = -32, - }, + ["max"] = -18, + ["min"] = -32, + }, ["Helmet"] = { - ["max"] = -18, - ["min"] = -32, - }, + ["max"] = -18, + ["min"] = -32, + }, ["Shield"] = { - ["max"] = -18, - ["min"] = -32, - }, + ["max"] = -18, + ["min"] = -32, + }, ["Staff"] = { - ["max"] = -18, - ["min"] = -32, - }, + ["max"] = -18, + ["min"] = -32, + }, ["Wand"] = { - ["max"] = -18, - ["min"] = -32, - }, - ["inverseKey"] = "reduced", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3639275092", - ["text"] = "#% increased Attribute Requirements", - ["type"] = "explicit", - }, - }, - ["10760_MinionLargerAggroRadius"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_128585622", - ["text"] = "Minions are Aggressive", - ["type"] = "explicit", - }, - }, - ["10767_Acrobatics"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_383557755", - ["text"] = "Acrobatics", - ["type"] = "explicit", - }, - }, - ["10768_PerfectAgony"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3884934810", - ["text"] = "Perfect Agony", - ["type"] = "explicit", - }, - }, - ["10769_AncestralBond"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2648570028", - ["text"] = "Ancestral Bond", - ["type"] = "explicit", - }, - }, - ["10770_AvatarOfFire"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_346029096", - ["text"] = "Avatar of Fire", - ["type"] = "explicit", - }, - }, - ["10772_BloodMagic"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2801937280", - ["text"] = "Blood Magic", - ["type"] = "explicit", - }, - }, - ["10773_CallToArms"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3292262540", - ["text"] = "Call to Arms", - ["type"] = "explicit", - }, - }, - ["10777_CrimsonDance"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_300702212", - ["text"] = "Crimson Dance", - ["type"] = "explicit", - }, - }, - ["10779_DivineShield"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2048995720", - ["text"] = "Divine Shield", - ["type"] = "explicit", - }, - }, - ["10780_EldritchBattery"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2262736444", - ["text"] = "Eldritch Battery", - ["type"] = "explicit", - }, - }, - ["10781_ElementalEquilibrium"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1263158408", - ["text"] = "Elemental Equilibrium", - ["type"] = "explicit", - }, - }, - ["10782_ElementalOverload"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3574189159", - ["text"] = "Elemental Overload", - ["type"] = "explicit", - }, - }, - ["10786_GhostDance"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3590128077", - ["text"] = "Ghost Dance", - ["type"] = "explicit", - }, - }, - ["10787_KeystoneGhostReaver"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4272248216", - ["text"] = "Ghost Reaver", - ["type"] = "explicit", - }, - }, - ["10790_HexMaster"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3849554033", - ["text"] = "Hex Master", - ["type"] = "explicit", - }, - }, - ["10792_Impaler"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1441799693", - ["text"] = "The Impaler", - ["type"] = "explicit", - }, - }, - ["10794_LetheShade"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1678358883", - ["text"] = "Lethe Shade", - ["type"] = "explicit", - }, - }, - ["10795_Magebane"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4180925106", - ["text"] = "Magebane", - ["type"] = "explicit", - }, - }, - ["10798_MinionInstability"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_433293234", - ["text"] = "Minion Instability", - ["type"] = "explicit", - }, - }, - ["10799_TheAgnostic"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_462691314", - ["text"] = "The Agnostic", - ["type"] = "explicit", - }, - }, - ["10800_PainAttunement"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_98977150", - ["text"] = "Pain Attunement", - ["type"] = "explicit", - }, - }, - ["10801_PointBlank"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2896346114", - ["text"] = "Point Blank", - ["type"] = "explicit", - }, - }, - ["10808_Runebinder"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4080245957", - ["text"] = "Runebinder", - ["type"] = "explicit", - }, - }, - ["10814_Solipsism"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_112130960", - ["text"] = "Solipsism", - ["type"] = "explicit", - }, - }, - ["10816_IronGrip"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_573347393", - ["text"] = "Iron Grip", - ["type"] = "explicit", - }, - }, - ["10817_SupremeEgo"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1421267186", - ["text"] = "Supreme Ego", - ["type"] = "explicit", - }, - }, - ["10821_VaalPact"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2257118425", - ["text"] = "Vaal Pact", - ["type"] = "explicit", - }, - }, - ["10822_VersatileCombatant"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_593845252", - ["text"] = "Versatile Combatant", - ["type"] = "explicit", - }, - }, - ["10826_MapMonsterPacksVaalMapWorlds"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_728267040", - ["text"] = "Found Items have #% chance to drop Corrupted in Area", - ["type"] = "explicit", - }, - }, - ["10828_ResoluteTechnique"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3943945975", - ["text"] = "Resolute Technique", - ["type"] = "explicit", - }, - }, - ["10829_IronWill"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4092697134", - ["text"] = "Iron Will", - ["type"] = "explicit", - }, - }, - ["1082_LocalNoAttributeRequirements"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2739148464", - ["text"] = "Has no Attribute Requirements", - ["type"] = "explicit", - }, - }, + ["max"] = -18, + ["min"] = -32, + }, + ["inverseKey"] = "reduced", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3639275092", + ["text"] = "#% increased Attribute Requirements", + ["type"] = "explicit", + }, + }, + ["10761_MinionLargerAggroRadius"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_128585622", + ["text"] = "Minions are Aggressive", + ["type"] = "explicit", + }, + }, + ["10768_Acrobatics"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_383557755", + ["text"] = "Acrobatics", + ["type"] = "explicit", + }, + }, + ["10769_PerfectAgony"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3884934810", + ["text"] = "Perfect Agony", + ["type"] = "explicit", + }, + }, + ["10770_AncestralBond"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2648570028", + ["text"] = "Ancestral Bond", + ["type"] = "explicit", + }, + }, + ["10771_AvatarOfFire"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_346029096", + ["text"] = "Avatar of Fire", + ["type"] = "explicit", + }, + }, + ["10773_BloodMagic"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2801937280", + ["text"] = "Blood Magic", + ["type"] = "explicit", + }, + }, + ["10774_CallToArms"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3292262540", + ["text"] = "Call to Arms", + ["type"] = "explicit", + }, + }, + ["10778_CrimsonDance"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_300702212", + ["text"] = "Crimson Dance", + ["type"] = "explicit", + }, + }, + ["10780_DivineShield"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2048995720", + ["text"] = "Divine Shield", + ["type"] = "explicit", + }, + }, + ["10781_EldritchBattery"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2262736444", + ["text"] = "Eldritch Battery", + ["type"] = "explicit", + }, + }, + ["10782_ElementalEquilibrium"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1263158408", + ["text"] = "Elemental Equilibrium", + ["type"] = "explicit", + }, + }, + ["10783_ElementalOverload"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3574189159", + ["text"] = "Elemental Overload", + ["type"] = "explicit", + }, + }, + ["10787_GhostDance"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3590128077", + ["text"] = "Ghost Dance", + ["type"] = "explicit", + }, + }, + ["10788_KeystoneGhostReaver"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4272248216", + ["text"] = "Ghost Reaver", + ["type"] = "explicit", + }, + }, + ["10791_HexMaster"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3849554033", + ["text"] = "Hex Master", + ["type"] = "explicit", + }, + }, + ["10793_Impaler"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1441799693", + ["text"] = "The Impaler", + ["type"] = "explicit", + }, + }, + ["10795_LetheShade"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1678358883", + ["text"] = "Lethe Shade", + ["type"] = "explicit", + }, + }, + ["10796_Magebane"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4180925106", + ["text"] = "Magebane", + ["type"] = "explicit", + }, + }, + ["10799_MinionInstability"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_433293234", + ["text"] = "Minion Instability", + ["type"] = "explicit", + }, + }, + ["10800_TheAgnostic"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_462691314", + ["text"] = "The Agnostic", + ["type"] = "explicit", + }, + }, + ["10801_PainAttunement"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_98977150", + ["text"] = "Pain Attunement", + ["type"] = "explicit", + }, + }, + ["10802_PointBlank"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2896346114", + ["text"] = "Point Blank", + ["type"] = "explicit", + }, + }, + ["10809_Runebinder"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4080245957", + ["text"] = "Runebinder", + ["type"] = "explicit", + }, + }, + ["10815_Solipsism"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_112130960", + ["text"] = "Solipsism", + ["type"] = "explicit", + }, + }, + ["10817_IronGrip"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_573347393", + ["text"] = "Iron Grip", + ["type"] = "explicit", + }, + }, + ["10818_SupremeEgo"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1421267186", + ["text"] = "Supreme Ego", + ["type"] = "explicit", + }, + }, + ["10822_VaalPact"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2257118425", + ["text"] = "Vaal Pact", + ["type"] = "explicit", + }, + }, + ["10823_VersatileCombatant"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_593845252", + ["text"] = "Versatile Combatant", + ["type"] = "explicit", + }, + }, + ["10827_MapMonsterPacksVaalMapWorlds"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_728267040", + ["text"] = "Found Items have #% chance to drop Corrupted in Area", + ["type"] = "explicit", + }, + }, + ["10829_ResoluteTechnique"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3943945975", + ["text"] = "Resolute Technique", + ["type"] = "explicit", + }, + }, + ["10830_IronWill"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4092697134", + ["text"] = "Iron Will", + ["type"] = "explicit", + }, + }, ["1138_BlockPercent"] = { ["Boots"] = { - ["max"] = 4, - ["min"] = 3, - }, + ["max"] = 4, + ["min"] = 3, + }, ["Chest"] = { - ["max"] = 9, - ["min"] = 3, - }, + ["max"] = 9, + ["min"] = 3, + }, ["Gloves"] = { - ["max"] = 5, - ["min"] = 2, - }, + ["max"] = 5, + ["min"] = 2, + }, ["Helmet"] = { - ["max"] = 4, - ["min"] = 3, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2530372417", - ["text"] = "#% Chance to Block Attack Damage", - ["type"] = "explicit", - }, - }, + ["max"] = 4, + ["min"] = 3, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2530372417", + ["text"] = "#% Chance to Block Attack Damage", + ["type"] = "explicit", + }, + }, ["1138_BlockPercentMaven"] = { ["Gloves"] = { - ["max"] = 5, - ["min"] = 4, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2530372417", - ["text"] = "#% Chance to Block Attack Damage", - ["type"] = "explicit", - }, - }, + ["max"] = 5, + ["min"] = 4, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2530372417", + ["text"] = "#% Chance to Block Attack Damage", + ["type"] = "explicit", + }, + }, ["1139_BlockShieldForJewel"] = { ["AnyJewel"] = { - ["max"] = 3, - ["min"] = 2, - }, + ["max"] = 3, + ["min"] = 2, + }, ["BaseJewel"] = { - ["max"] = 3, - ["min"] = 2, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4061558269", - ["text"] = "+#% Chance to Block Attack Damage while holding a Shield", - ["type"] = "explicit", - }, - }, + ["max"] = 3, + ["min"] = 2, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4061558269", + ["text"] = "+#% Chance to Block Attack Damage while holding a Shield", + ["type"] = "explicit", + }, + }, ["1140_ShieldSpellBlockForJewel"] = { ["AnyJewel"] = { - ["max"] = 3, - ["min"] = 2, - }, + ["max"] = 3, + ["min"] = 2, + }, ["BaseJewel"] = { - ["max"] = 3, - ["min"] = 2, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_938645499", - ["text"] = "+#% Chance to Block Spell Damage while holding a Shield", - ["type"] = "explicit", - }, - }, + ["max"] = 3, + ["min"] = 2, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_938645499", + ["text"] = "+#% Chance to Block Spell Damage while holding a Shield", + ["type"] = "explicit", + }, + }, ["1141_SpellDamageSuppressed"] = { ["Amulet"] = { - ["max"] = 5, - ["min"] = 3, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4116705863", - ["text"] = "Prevent +#% of Suppressed Spell Damage", - ["type"] = "explicit", - }, - }, + ["max"] = 5, + ["min"] = 3, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4116705863", + ["text"] = "Prevent +#% of Suppressed Spell Damage", + ["type"] = "explicit", + }, + }, ["1142_ChanceToDodgeAndSpellDodge"] = { ["Boots"] = { - ["max"] = 6, - ["min"] = 4, - }, + ["max"] = 6, + ["min"] = 4, + }, ["Chest"] = { - ["max"] = 6, - ["min"] = 4, - }, + ["max"] = 6, + ["min"] = 4, + }, ["Gloves"] = { - ["max"] = 6, - ["min"] = 4, - }, + ["max"] = 6, + ["min"] = 4, + }, ["Helmet"] = { - ["max"] = 6, - ["min"] = 4, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3680664274", - ["text"] = "+#% chance to Suppress Spell Damage", - ["type"] = "explicit", - }, - }, + ["max"] = 6, + ["min"] = 4, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3680664274", + ["text"] = "+#% chance to Suppress Spell Damage", + ["type"] = "explicit", + }, + }, ["1142_ChanceToSuppressSpellsMavenOld"] = { ["Boots"] = { - ["max"] = 18, - ["min"] = 16, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3680664274", - ["text"] = "+#% chance to Suppress Spell Damage", - ["type"] = "explicit", - }, - }, + ["max"] = 18, + ["min"] = 16, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3680664274", + ["text"] = "+#% chance to Suppress Spell Damage", + ["type"] = "explicit", + }, + }, ["1142_ChanceToSuppressSpellsOld"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_3680664274", - ["text"] = "+#% chance to Suppress Spell Damage", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_3680664274", + ["text"] = "+#% chance to Suppress Spell Damage", + ["type"] = "explicit", + }, + }, ["1143_ChanceToSuppressSpells"] = { ["Boots"] = { - ["max"] = 22, - ["min"] = 3, - }, + ["max"] = 22, + ["min"] = 3, + }, ["Chest"] = { - ["max"] = 22, - ["min"] = 5, - }, + ["max"] = 22, + ["min"] = 5, + }, ["Gloves"] = { - ["max"] = 22, - ["min"] = 3, - }, + ["max"] = 22, + ["min"] = 3, + }, ["Helmet"] = { - ["max"] = 22, - ["min"] = 3, - }, + ["max"] = 22, + ["min"] = 3, + }, ["Shield"] = { - ["max"] = 10, - ["min"] = 5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3680664274", - ["text"] = "+#% chance to Suppress Spell Damage", - ["type"] = "explicit", - }, - }, + ["max"] = 10, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3680664274", + ["text"] = "+#% chance to Suppress Spell Damage", + ["type"] = "explicit", + }, + }, ["1144_DualWieldingSpellBlockForJewel"] = { ["AnyJewel"] = { - ["max"] = 3, - ["min"] = 2, - }, + ["max"] = 3, + ["min"] = 2, + }, ["BaseJewel"] = { - ["max"] = 3, - ["min"] = 2, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_138741818", - ["text"] = "+#% Chance to Block Spell Damage while Dual Wielding", - ["type"] = "explicit", - }, - }, + ["max"] = 3, + ["min"] = 2, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_138741818", + ["text"] = "+#% Chance to Block Spell Damage while Dual Wielding", + ["type"] = "explicit", + }, + }, ["1145_SpellBlockPercentageOnLowLife"] = { ["Shield"] = { - ["max"] = 15, - ["min"] = 15, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2253286128", - ["text"] = "+#% Chance to Block Spell Damage while on Low Life", - ["type"] = "explicit", - }, - }, + ["max"] = 15, + ["min"] = 15, + }, + ["sign"] = "+", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4070519133", + ["text"] = "#% Chance to Block Spell Damage while on Low Life", + ["type"] = "explicit", + }, + }, ["1150_StaffSpellBlockForJewel"] = { ["AnyJewel"] = { - ["max"] = 3, - ["min"] = 2, - }, + ["max"] = 3, + ["min"] = 2, + }, ["BaseJewel"] = { - ["max"] = 3, - ["min"] = 2, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2120297997", - ["text"] = "+#% Chance to Block Spell Damage while wielding a Staff", - ["type"] = "explicit", - }, - }, + ["max"] = 3, + ["min"] = 2, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2120297997", + ["text"] = "+#% Chance to Block Spell Damage while wielding a Staff", + ["type"] = "explicit", + }, + }, ["1151_BlockingBlocksSpellsUber"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1778298516", - ["text"] = "+#% Chance to Block Attack Damage while wielding a Staff", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1778298516", + ["text"] = "+#% Chance to Block Attack Damage while wielding a Staff", + ["type"] = "explicit", + }, + }, ["1151_CriticalStrikeMultiplierIfBlockedRecentlyUber"] = { ["2HWeapon"] = { - ["max"] = 5, - ["min"] = 5, - }, + ["max"] = 5, + ["min"] = 5, + }, ["Staff"] = { - ["max"] = 5, - ["min"] = 5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1778298516", - ["text"] = "+#% Chance to Block Attack Damage while wielding a Staff", - ["type"] = "explicit", - }, - }, + ["max"] = 5, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1778298516", + ["text"] = "+#% Chance to Block Attack Damage while wielding a Staff", + ["type"] = "explicit", + }, + }, ["1151_PowerChargeOnBlockUber"] = { ["2HWeapon"] = { - ["max"] = 5, - ["min"] = 5, - }, + ["max"] = 5, + ["min"] = 5, + }, ["Staff"] = { - ["max"] = 5, - ["min"] = 5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1778298516", - ["text"] = "+#% Chance to Block Attack Damage while wielding a Staff", - ["type"] = "explicit", - }, - }, + ["max"] = 5, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1778298516", + ["text"] = "+#% Chance to Block Attack Damage while wielding a Staff", + ["type"] = "explicit", + }, + }, ["1151_SpellBlockAndBlockUber"] = { ["2HWeapon"] = { - ["max"] = 5, - ["min"] = 5, - }, + ["max"] = 5, + ["min"] = 5, + }, ["Staff"] = { - ["max"] = 5, - ["min"] = 5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1778298516", - ["text"] = "+#% Chance to Block Attack Damage while wielding a Staff", - ["type"] = "explicit", - }, - }, + ["max"] = 5, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1778298516", + ["text"] = "+#% Chance to Block Attack Damage while wielding a Staff", + ["type"] = "explicit", + }, + }, ["1154_BlockStaffForJewel"] = { ["AnyJewel"] = { - ["max"] = 3, - ["min"] = 2, - }, + ["max"] = 3, + ["min"] = 2, + }, ["BaseJewel"] = { - ["max"] = 3, - ["min"] = 2, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1778298516", - ["text"] = "+#% Chance to Block Attack Damage while wielding a Staff", - ["type"] = "explicit", - }, - }, + ["max"] = 3, + ["min"] = 2, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1778298516", + ["text"] = "+#% Chance to Block Attack Damage while wielding a Staff", + ["type"] = "explicit", + }, + }, ["1155_BlockingBlocksSpells"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_561307714", - ["text"] = "#% Chance to Block Spell Damage", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_561307714", + ["text"] = "#% Chance to Block Spell Damage", + ["type"] = "explicit", + }, + }, ["1155_BlockingBlocksSpellsUber"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_561307714", - ["text"] = "#% Chance to Block Spell Damage", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_561307714", + ["text"] = "#% Chance to Block Spell Damage", + ["type"] = "explicit", + }, + }, ["1160_SpellBlockAndBlockUber"] = { ["2HWeapon"] = { - ["max"] = 12, - ["min"] = 8, - }, + ["max"] = 12, + ["min"] = 8, + }, ["Staff"] = { - ["max"] = 12, - ["min"] = 8, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_561307714", - ["text"] = "#% Chance to Block Spell Damage", - ["type"] = "explicit", - }, - }, + ["max"] = 12, + ["min"] = 8, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_561307714", + ["text"] = "#% Chance to Block Spell Damage", + ["type"] = "explicit", + }, + }, ["1160_SpellBlockPercentage"] = { ["Amulet"] = { - ["max"] = 7, - ["min"] = 4, - }, + ["max"] = 7, + ["min"] = 4, + }, ["Boots"] = { - ["max"] = 4, - ["min"] = 3, - }, + ["max"] = 4, + ["min"] = 3, + }, ["Chest"] = { - ["max"] = 10, - ["min"] = 3, - }, + ["max"] = 10, + ["min"] = 3, + }, ["Gloves"] = { - ["max"] = 4, - ["min"] = 3, - }, + ["max"] = 4, + ["min"] = 3, + }, ["Helmet"] = { - ["max"] = 6, - ["min"] = 3, - }, + ["max"] = 6, + ["min"] = 3, + }, ["Shield"] = { - ["max"] = 15, - ["min"] = 3, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_561307714", - ["text"] = "#% Chance to Block Spell Damage", - ["type"] = "explicit", - }, - }, + ["max"] = 15, + ["min"] = 3, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_561307714", + ["text"] = "#% Chance to Block Spell Damage", + ["type"] = "explicit", + }, + }, ["1160_SpellBlockPercentageMaven"] = { ["Helmet"] = { - ["max"] = 6, - ["min"] = 5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_561307714", - ["text"] = "#% Chance to Block Spell Damage", - ["type"] = "explicit", - }, - }, + ["max"] = 6, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_561307714", + ["text"] = "#% Chance to Block Spell Damage", + ["type"] = "explicit", + }, + }, ["1162_BlockDualWieldingForJewel"] = { ["AnyJewel"] = { - ["max"] = 3, - ["min"] = 2, - }, + ["max"] = 3, + ["min"] = 2, + }, ["BaseJewel"] = { - ["max"] = 3, - ["min"] = 2, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2166444903", - ["text"] = "+#% Chance to Block Attack Damage while Dual Wielding", - ["type"] = "explicit", - }, - }, + ["max"] = 3, + ["min"] = 2, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2166444903", + ["text"] = "+#% Chance to Block Attack Damage while Dual Wielding", + ["type"] = "explicit", + }, + }, ["1162_BlockWhileDualWielding"] = { ["1HAxe"] = { - ["max"] = 9, - ["min"] = 2, - }, + ["max"] = 9, + ["min"] = 2, + }, ["1HMace"] = { - ["max"] = 9, - ["min"] = 2, - }, + ["max"] = 9, + ["min"] = 2, + }, ["1HSword"] = { - ["max"] = 9, - ["min"] = 2, - }, + ["max"] = 9, + ["min"] = 2, + }, ["1HWeapon"] = { - ["max"] = 9, - ["min"] = 2, - }, + ["max"] = 9, + ["min"] = 2, + }, ["2HAxe"] = { - ["max"] = 9, - ["min"] = 2, - }, + ["max"] = 9, + ["min"] = 2, + }, ["2HMace"] = { - ["max"] = 9, - ["min"] = 2, - }, + ["max"] = 9, + ["min"] = 2, + }, ["2HSword"] = { - ["max"] = 9, - ["min"] = 2, - }, + ["max"] = 9, + ["min"] = 2, + }, ["2HWeapon"] = { - ["max"] = 9, - ["min"] = 2, - }, + ["max"] = 9, + ["min"] = 2, + }, ["Claw"] = { - ["max"] = 9, - ["min"] = 2, - }, + ["max"] = 9, + ["min"] = 2, + }, ["Dagger"] = { - ["max"] = 9, - ["min"] = 2, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2166444903", - ["text"] = "+#% Chance to Block Attack Damage while Dual Wielding", - ["type"] = "explicit", - }, - }, + ["max"] = 9, + ["min"] = 2, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2166444903", + ["text"] = "+#% Chance to Block Attack Damage while Dual Wielding", + ["type"] = "explicit", + }, + }, ["1176_AllAttributes"] = { ["1HAxe"] = { - ["max"] = 13, - ["min"] = 6, - }, + ["max"] = 13, + ["min"] = 6, + }, ["1HMace"] = { - ["max"] = 13, - ["min"] = 6, - }, + ["max"] = 13, + ["min"] = 6, + }, ["1HSword"] = { - ["max"] = 13, - ["min"] = 6, - }, + ["max"] = 13, + ["min"] = 6, + }, ["1HWeapon"] = { - ["max"] = 13, - ["min"] = 6, - }, + ["max"] = 13, + ["min"] = 6, + }, ["2HAxe"] = { - ["max"] = 13, - ["min"] = 6, - }, + ["max"] = 13, + ["min"] = 6, + }, ["2HMace"] = { - ["max"] = 13, - ["min"] = 6, - }, + ["max"] = 13, + ["min"] = 6, + }, ["2HSword"] = { - ["max"] = 13, - ["min"] = 6, - }, + ["max"] = 13, + ["min"] = 6, + }, ["2HWeapon"] = { - ["max"] = 13, - ["min"] = 6, - }, + ["max"] = 13, + ["min"] = 6, + }, ["Amulet"] = { - ["max"] = 35, - ["min"] = 1, - }, + ["max"] = 35, + ["min"] = 1, + }, ["Boots"] = { - ["max"] = 13, - ["min"] = 6, - }, + ["max"] = 13, + ["min"] = 6, + }, ["Bow"] = { - ["max"] = 13, - ["min"] = 6, - }, + ["max"] = 13, + ["min"] = 6, + }, ["Chest"] = { - ["max"] = 13, - ["min"] = 6, - }, + ["max"] = 13, + ["min"] = 6, + }, ["Claw"] = { - ["max"] = 13, - ["min"] = 6, - }, + ["max"] = 13, + ["min"] = 6, + }, ["Dagger"] = { - ["max"] = 13, - ["min"] = 6, - }, + ["max"] = 13, + ["min"] = 6, + }, ["Gloves"] = { - ["max"] = 13, - ["min"] = 6, - }, + ["max"] = 13, + ["min"] = 6, + }, ["Helmet"] = { - ["max"] = 13, - ["min"] = 6, - }, + ["max"] = 13, + ["min"] = 6, + }, ["Quiver"] = { - ["max"] = 13, - ["min"] = 6, - }, + ["max"] = 13, + ["min"] = 6, + }, ["Ring"] = { - ["max"] = 16, - ["min"] = 1, - }, + ["max"] = 16, + ["min"] = 1, + }, ["Shield"] = { - ["max"] = 13, - ["min"] = 6, - }, + ["max"] = 13, + ["min"] = 6, + }, ["Staff"] = { - ["max"] = 13, - ["min"] = 6, - }, + ["max"] = 13, + ["min"] = 6, + }, ["Wand"] = { - ["max"] = 13, - ["min"] = 6, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1379411836", - ["text"] = "+# to all Attributes", - ["type"] = "explicit", - }, - }, + ["max"] = 13, + ["min"] = 6, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1379411836", + ["text"] = "+# to all Attributes", + ["type"] = "explicit", + }, + }, ["1176_AllAttributesForJewel"] = { ["AbyssJewel"] = { - ["max"] = 8, - ["min"] = 6, - }, + ["max"] = 8, + ["min"] = 6, + }, ["AnyJewel"] = { - ["max"] = 8, - ["min"] = 6, - }, + ["max"] = 8, + ["min"] = 6, + }, ["BaseJewel"] = { - ["max"] = 8, - ["min"] = 6, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1379411836", - ["text"] = "+# to all Attributes", - ["type"] = "explicit", - }, - }, + ["max"] = 8, + ["min"] = 6, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1379411836", + ["text"] = "+# to all Attributes", + ["type"] = "explicit", + }, + }, ["1177_Strength"] = { ["1HAxe"] = { - ["max"] = 55, - ["min"] = 8, - }, + ["max"] = 55, + ["min"] = 8, + }, ["1HMace"] = { - ["max"] = 55, - ["min"] = 8, - }, + ["max"] = 55, + ["min"] = 8, + }, ["1HSword"] = { - ["max"] = 55, - ["min"] = 8, - }, + ["max"] = 55, + ["min"] = 8, + }, ["1HWeapon"] = { - ["max"] = 55, - ["min"] = 8, - }, + ["max"] = 55, + ["min"] = 8, + }, ["2HAxe"] = { - ["max"] = 55, - ["min"] = 8, - }, + ["max"] = 55, + ["min"] = 8, + }, ["2HMace"] = { - ["max"] = 55, - ["min"] = 8, - }, + ["max"] = 55, + ["min"] = 8, + }, ["2HSword"] = { - ["max"] = 55, - ["min"] = 8, - }, + ["max"] = 55, + ["min"] = 8, + }, ["2HWeapon"] = { - ["max"] = 55, - ["min"] = 8, - }, + ["max"] = 55, + ["min"] = 8, + }, ["Amulet"] = { - ["max"] = 58, - ["min"] = 8, - }, + ["max"] = 58, + ["min"] = 8, + }, ["Belt"] = { - ["max"] = 60, - ["min"] = 8, - }, + ["max"] = 60, + ["min"] = 8, + }, ["Boots"] = { - ["max"] = 58, - ["min"] = 8, - }, + ["max"] = 58, + ["min"] = 8, + }, ["Bow"] = { - ["max"] = 30, - ["min"] = 15, - }, + ["max"] = 30, + ["min"] = 15, + }, ["Chest"] = { - ["max"] = 58, - ["min"] = 8, - }, + ["max"] = 58, + ["min"] = 8, + }, ["Claw"] = { - ["max"] = 30, - ["min"] = 15, - }, + ["max"] = 30, + ["min"] = 15, + }, ["Dagger"] = { - ["max"] = 30, - ["min"] = 15, - }, + ["max"] = 30, + ["min"] = 15, + }, ["Gloves"] = { - ["max"] = 58, - ["min"] = 8, - }, + ["max"] = 58, + ["min"] = 8, + }, ["Helmet"] = { - ["max"] = 58, - ["min"] = 8, - }, + ["max"] = 58, + ["min"] = 8, + }, ["Quiver"] = { - ["max"] = 58, - ["min"] = 15, - }, + ["max"] = 58, + ["min"] = 15, + }, ["Ring"] = { - ["max"] = 58, - ["min"] = 8, - }, + ["max"] = 58, + ["min"] = 8, + }, ["Shield"] = { - ["max"] = 58, - ["min"] = 15, - }, + ["max"] = 58, + ["min"] = 15, + }, ["Staff"] = { - ["max"] = 55, - ["min"] = 8, - }, + ["max"] = 55, + ["min"] = 8, + }, ["Wand"] = { - ["max"] = 30, - ["min"] = 15, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4080418644", - ["text"] = "+# to Strength", - ["type"] = "explicit", - }, - }, + ["max"] = 30, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4080418644", + ["text"] = "+# to Strength", + ["type"] = "explicit", + }, + }, ["1177_StrengthAndAvoidIgnite"] = { ["Chest"] = { - ["max"] = 35, - ["min"] = 10, - }, + ["max"] = 35, + ["min"] = 10, + }, ["Shield"] = { - ["max"] = 35, - ["min"] = 10, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4080418644", - ["text"] = "+# to Strength", - ["type"] = "explicit", - }, - }, + ["max"] = 35, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4080418644", + ["text"] = "+# to Strength", + ["type"] = "explicit", + }, + }, ["1177_StrengthAndLocalItemQuality"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_4080418644", - ["text"] = "+# to Strength", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_4080418644", + ["text"] = "+# to Strength", + ["type"] = "explicit", + }, + }, ["1177_StrengthForJewel"] = { ["AbyssJewel"] = { - ["max"] = 16, - ["min"] = 12, - }, + ["max"] = 16, + ["min"] = 12, + }, ["AnyJewel"] = { - ["max"] = 16, - ["min"] = 12, - }, + ["max"] = 16, + ["min"] = 12, + }, ["BaseJewel"] = { - ["max"] = 16, - ["min"] = 12, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4080418644", - ["text"] = "+# to Strength", - ["type"] = "explicit", - }, - }, + ["max"] = 16, + ["min"] = 12, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4080418644", + ["text"] = "+# to Strength", + ["type"] = "explicit", + }, + }, ["1178_Dexterity"] = { ["1HAxe"] = { - ["max"] = 55, - ["min"] = 8, - }, + ["max"] = 55, + ["min"] = 8, + }, ["1HMace"] = { - ["max"] = 30, - ["min"] = 15, - }, + ["max"] = 30, + ["min"] = 15, + }, ["1HSword"] = { - ["max"] = 55, - ["min"] = 8, - }, + ["max"] = 55, + ["min"] = 8, + }, ["1HWeapon"] = { - ["max"] = 55, - ["min"] = 8, - }, + ["max"] = 55, + ["min"] = 8, + }, ["2HAxe"] = { - ["max"] = 55, - ["min"] = 8, - }, + ["max"] = 55, + ["min"] = 8, + }, ["2HMace"] = { - ["max"] = 30, - ["min"] = 15, - }, + ["max"] = 30, + ["min"] = 15, + }, ["2HSword"] = { - ["max"] = 55, - ["min"] = 8, - }, + ["max"] = 55, + ["min"] = 8, + }, ["2HWeapon"] = { - ["max"] = 55, - ["min"] = 8, - }, + ["max"] = 55, + ["min"] = 8, + }, ["Amulet"] = { - ["max"] = 58, - ["min"] = 8, - }, + ["max"] = 58, + ["min"] = 8, + }, ["Belt"] = { - ["max"] = 58, - ["min"] = 13, - }, + ["max"] = 58, + ["min"] = 13, + }, ["Boots"] = { - ["max"] = 58, - ["min"] = 8, - }, + ["max"] = 58, + ["min"] = 8, + }, ["Bow"] = { - ["max"] = 55, - ["min"] = 8, - }, + ["max"] = 55, + ["min"] = 8, + }, ["Chest"] = { - ["max"] = 58, - ["min"] = 8, - }, + ["max"] = 58, + ["min"] = 8, + }, ["Claw"] = { - ["max"] = 55, - ["min"] = 8, - }, + ["max"] = 55, + ["min"] = 8, + }, ["Dagger"] = { - ["max"] = 55, - ["min"] = 8, - }, + ["max"] = 55, + ["min"] = 8, + }, ["Gloves"] = { - ["max"] = 60, - ["min"] = 8, - }, + ["max"] = 60, + ["min"] = 8, + }, ["Helmet"] = { - ["max"] = 58, - ["min"] = 8, - }, + ["max"] = 58, + ["min"] = 8, + }, ["Quiver"] = { - ["max"] = 60, - ["min"] = 8, - }, + ["max"] = 60, + ["min"] = 8, + }, ["Ring"] = { - ["max"] = 58, - ["min"] = 8, - }, + ["max"] = 58, + ["min"] = 8, + }, ["Shield"] = { - ["max"] = 58, - ["min"] = 13, - }, + ["max"] = 58, + ["min"] = 13, + }, ["Staff"] = { - ["max"] = 30, - ["min"] = 15, - }, + ["max"] = 30, + ["min"] = 15, + }, ["Wand"] = { - ["max"] = 30, - ["min"] = 15, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3261801346", - ["text"] = "+# to Dexterity", - ["type"] = "explicit", - }, - }, + ["max"] = 30, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3261801346", + ["text"] = "+# to Dexterity", + ["type"] = "explicit", + }, + }, ["1178_DexterityAndAvoidFreeze"] = { ["Chest"] = { - ["max"] = 35, - ["min"] = 10, - }, + ["max"] = 35, + ["min"] = 10, + }, ["Shield"] = { - ["max"] = 35, - ["min"] = 10, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3261801346", - ["text"] = "+# to Dexterity", - ["type"] = "explicit", - }, - }, + ["max"] = 35, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3261801346", + ["text"] = "+# to Dexterity", + ["type"] = "explicit", + }, + }, ["1178_DexterityAndLocalItemQuality"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_3261801346", - ["text"] = "+# to Dexterity", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_3261801346", + ["text"] = "+# to Dexterity", + ["type"] = "explicit", + }, + }, ["1178_DexterityForJewel"] = { ["AbyssJewel"] = { - ["max"] = 16, - ["min"] = 12, - }, + ["max"] = 16, + ["min"] = 12, + }, ["AnyJewel"] = { - ["max"] = 16, - ["min"] = 12, - }, + ["max"] = 16, + ["min"] = 12, + }, ["BaseJewel"] = { - ["max"] = 16, - ["min"] = 12, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3261801346", - ["text"] = "+# to Dexterity", - ["type"] = "explicit", - }, - }, + ["max"] = 16, + ["min"] = 12, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3261801346", + ["text"] = "+# to Dexterity", + ["type"] = "explicit", + }, + }, ["1179_Intelligence"] = { ["1HAxe"] = { - ["max"] = 30, - ["min"] = 15, - }, + ["max"] = 30, + ["min"] = 15, + }, ["1HMace"] = { - ["max"] = 55, - ["min"] = 8, - }, + ["max"] = 55, + ["min"] = 8, + }, ["1HSword"] = { - ["max"] = 30, - ["min"] = 15, - }, + ["max"] = 30, + ["min"] = 15, + }, ["1HWeapon"] = { - ["max"] = 55, - ["min"] = 8, - }, + ["max"] = 55, + ["min"] = 8, + }, ["2HAxe"] = { - ["max"] = 30, - ["min"] = 15, - }, + ["max"] = 30, + ["min"] = 15, + }, ["2HMace"] = { - ["max"] = 30, - ["min"] = 15, - }, + ["max"] = 30, + ["min"] = 15, + }, ["2HSword"] = { - ["max"] = 30, - ["min"] = 15, - }, + ["max"] = 30, + ["min"] = 15, + }, ["2HWeapon"] = { - ["max"] = 55, - ["min"] = 8, - }, + ["max"] = 55, + ["min"] = 8, + }, ["Amulet"] = { - ["max"] = 58, - ["min"] = 8, - }, + ["max"] = 58, + ["min"] = 8, + }, ["Belt"] = { - ["max"] = 58, - ["min"] = 28, - }, + ["max"] = 58, + ["min"] = 28, + }, ["Boots"] = { - ["max"] = 58, - ["min"] = 8, - }, + ["max"] = 58, + ["min"] = 8, + }, ["Bow"] = { - ["max"] = 30, - ["min"] = 15, - }, + ["max"] = 30, + ["min"] = 15, + }, ["Chest"] = { - ["max"] = 58, - ["min"] = 8, - }, + ["max"] = 58, + ["min"] = 8, + }, ["Claw"] = { - ["max"] = 55, - ["min"] = 8, - }, + ["max"] = 55, + ["min"] = 8, + }, ["Dagger"] = { - ["max"] = 55, - ["min"] = 8, - }, + ["max"] = 55, + ["min"] = 8, + }, ["Gloves"] = { - ["max"] = 58, - ["min"] = 8, - }, + ["max"] = 58, + ["min"] = 8, + }, ["Helmet"] = { - ["max"] = 60, - ["min"] = 8, - }, + ["max"] = 60, + ["min"] = 8, + }, ["Quiver"] = { - ["max"] = 58, - ["min"] = 15, - }, + ["max"] = 58, + ["min"] = 15, + }, ["Ring"] = { - ["max"] = 58, - ["min"] = 8, - }, + ["max"] = 58, + ["min"] = 8, + }, ["Shield"] = { - ["max"] = 58, - ["min"] = 15, - }, + ["max"] = 58, + ["min"] = 15, + }, ["Staff"] = { - ["max"] = 55, - ["min"] = 8, - }, + ["max"] = 55, + ["min"] = 8, + }, ["Wand"] = { - ["max"] = 55, - ["min"] = 8, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_328541901", - ["text"] = "+# to Intelligence", - ["type"] = "explicit", - }, - }, + ["max"] = 55, + ["min"] = 8, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_328541901", + ["text"] = "+# to Intelligence", + ["type"] = "explicit", + }, + }, ["1179_IntelligenceAndAvoidShock"] = { ["Chest"] = { - ["max"] = 35, - ["min"] = 10, - }, + ["max"] = 35, + ["min"] = 10, + }, ["Shield"] = { - ["max"] = 35, - ["min"] = 10, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_328541901", - ["text"] = "+# to Intelligence", - ["type"] = "explicit", - }, - }, + ["max"] = 35, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_328541901", + ["text"] = "+# to Intelligence", + ["type"] = "explicit", + }, + }, ["1179_IntelligenceAndLocalItemQuality"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_328541901", - ["text"] = "+# to Intelligence", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_328541901", + ["text"] = "+# to Intelligence", + ["type"] = "explicit", + }, + }, ["1179_IntelligenceForJewel"] = { ["AbyssJewel"] = { - ["max"] = 16, - ["min"] = 12, - }, + ["max"] = 16, + ["min"] = 12, + }, ["AnyJewel"] = { - ["max"] = 16, - ["min"] = 12, - }, + ["max"] = 16, + ["min"] = 12, + }, ["BaseJewel"] = { - ["max"] = 16, - ["min"] = 12, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_328541901", - ["text"] = "+# to Intelligence", - ["type"] = "explicit", - }, - }, + ["max"] = 16, + ["min"] = 12, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_328541901", + ["text"] = "+# to Intelligence", + ["type"] = "explicit", + }, + }, ["1180_LocalAccuracyRatingStrengthDexterity"] = { ["1HAxe"] = { - ["max"] = 28, - ["min"] = 15, - }, + ["max"] = 28, + ["min"] = 15, + }, ["1HMace"] = { - ["max"] = 28, - ["min"] = 15, - }, + ["max"] = 28, + ["min"] = 15, + }, ["1HSword"] = { - ["max"] = 28, - ["min"] = 15, - }, + ["max"] = 28, + ["min"] = 15, + }, ["1HWeapon"] = { - ["max"] = 28, - ["min"] = 15, - }, + ["max"] = 28, + ["min"] = 15, + }, ["2HAxe"] = { - ["max"] = 28, - ["min"] = 15, - }, + ["max"] = 28, + ["min"] = 15, + }, ["2HMace"] = { - ["max"] = 28, - ["min"] = 15, - }, + ["max"] = 28, + ["min"] = 15, + }, ["2HSword"] = { - ["max"] = 28, - ["min"] = 15, - }, + ["max"] = 28, + ["min"] = 15, + }, ["2HWeapon"] = { - ["max"] = 28, - ["min"] = 15, - }, + ["max"] = 28, + ["min"] = 15, + }, ["Bow"] = { - ["max"] = 28, - ["min"] = 15, - }, + ["max"] = 28, + ["min"] = 15, + }, ["Claw"] = { - ["max"] = 28, - ["min"] = 15, - }, + ["max"] = 28, + ["min"] = 15, + }, ["Dagger"] = { - ["max"] = 28, - ["min"] = 15, - }, + ["max"] = 28, + ["min"] = 15, + }, ["Staff"] = { - ["max"] = 28, - ["min"] = 15, - }, + ["max"] = 28, + ["min"] = 15, + }, ["Wand"] = { - ["max"] = 28, - ["min"] = 15, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_538848803", - ["text"] = "+# to Strength and Dexterity", - ["type"] = "explicit", - }, - }, + ["max"] = 28, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_538848803", + ["text"] = "+# to Strength and Dexterity", + ["type"] = "explicit", + }, + }, ["1180_StrengthAndDexterity"] = { ["Amulet"] = { - ["max"] = 35, - ["min"] = 10, - }, + ["max"] = 35, + ["min"] = 10, + }, ["Belt"] = { - ["max"] = 35, - ["min"] = 10, - }, + ["max"] = 35, + ["min"] = 10, + }, ["Boots"] = { - ["max"] = 35, - ["min"] = 10, - }, + ["max"] = 35, + ["min"] = 10, + }, ["Chest"] = { - ["max"] = 35, - ["min"] = 10, - }, + ["max"] = 35, + ["min"] = 10, + }, ["Gloves"] = { - ["max"] = 35, - ["min"] = 10, - }, + ["max"] = 35, + ["min"] = 10, + }, ["Helmet"] = { - ["max"] = 35, - ["min"] = 10, - }, + ["max"] = 35, + ["min"] = 10, + }, ["Quiver"] = { - ["max"] = 35, - ["min"] = 10, - }, + ["max"] = 35, + ["min"] = 10, + }, ["Ring"] = { - ["max"] = 35, - ["min"] = 10, - }, + ["max"] = 35, + ["min"] = 10, + }, ["Shield"] = { - ["max"] = 35, - ["min"] = 10, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_538848803", - ["text"] = "+# to Strength and Dexterity", - ["type"] = "explicit", - }, - }, + ["max"] = 35, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_538848803", + ["text"] = "+# to Strength and Dexterity", + ["type"] = "explicit", + }, + }, ["1180_StrengthDexterityForJewel"] = { ["AbyssJewel"] = { - ["max"] = 10, - ["min"] = 8, - }, + ["max"] = 10, + ["min"] = 8, + }, ["AnyJewel"] = { - ["max"] = 10, - ["min"] = 8, - }, + ["max"] = 10, + ["min"] = 8, + }, ["BaseJewel"] = { - ["max"] = 10, - ["min"] = 8, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_538848803", - ["text"] = "+# to Strength and Dexterity", - ["type"] = "explicit", - }, - }, + ["max"] = 10, + ["min"] = 8, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_538848803", + ["text"] = "+# to Strength and Dexterity", + ["type"] = "explicit", + }, + }, ["1181_LocalCriticalStrikeChanceStrengthIntelligence"] = { ["1HAxe"] = { - ["max"] = 28, - ["min"] = 15, - }, + ["max"] = 28, + ["min"] = 15, + }, ["1HMace"] = { - ["max"] = 28, - ["min"] = 15, - }, + ["max"] = 28, + ["min"] = 15, + }, ["1HSword"] = { - ["max"] = 28, - ["min"] = 15, - }, + ["max"] = 28, + ["min"] = 15, + }, ["1HWeapon"] = { - ["max"] = 28, - ["min"] = 15, - }, + ["max"] = 28, + ["min"] = 15, + }, ["2HAxe"] = { - ["max"] = 28, - ["min"] = 15, - }, + ["max"] = 28, + ["min"] = 15, + }, ["2HMace"] = { - ["max"] = 28, - ["min"] = 15, - }, + ["max"] = 28, + ["min"] = 15, + }, ["2HSword"] = { - ["max"] = 28, - ["min"] = 15, - }, + ["max"] = 28, + ["min"] = 15, + }, ["2HWeapon"] = { - ["max"] = 28, - ["min"] = 15, - }, + ["max"] = 28, + ["min"] = 15, + }, ["Bow"] = { - ["max"] = 28, - ["min"] = 15, - }, + ["max"] = 28, + ["min"] = 15, + }, ["Claw"] = { - ["max"] = 28, - ["min"] = 15, - }, + ["max"] = 28, + ["min"] = 15, + }, ["Dagger"] = { - ["max"] = 28, - ["min"] = 15, - }, + ["max"] = 28, + ["min"] = 15, + }, ["Staff"] = { - ["max"] = 28, - ["min"] = 15, - }, + ["max"] = 28, + ["min"] = 15, + }, ["Wand"] = { - ["max"] = 28, - ["min"] = 15, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1535626285", - ["text"] = "+# to Strength and Intelligence", - ["type"] = "explicit", - }, - }, + ["max"] = 28, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1535626285", + ["text"] = "+# to Strength and Intelligence", + ["type"] = "explicit", + }, + }, ["1181_StrengthAndIntelligence"] = { ["Amulet"] = { - ["max"] = 35, - ["min"] = 10, - }, + ["max"] = 35, + ["min"] = 10, + }, ["Belt"] = { - ["max"] = 35, - ["min"] = 10, - }, + ["max"] = 35, + ["min"] = 10, + }, ["Boots"] = { - ["max"] = 35, - ["min"] = 10, - }, + ["max"] = 35, + ["min"] = 10, + }, ["Chest"] = { - ["max"] = 35, - ["min"] = 10, - }, + ["max"] = 35, + ["min"] = 10, + }, ["Gloves"] = { - ["max"] = 35, - ["min"] = 10, - }, + ["max"] = 35, + ["min"] = 10, + }, ["Helmet"] = { - ["max"] = 35, - ["min"] = 10, - }, + ["max"] = 35, + ["min"] = 10, + }, ["Quiver"] = { - ["max"] = 35, - ["min"] = 10, - }, + ["max"] = 35, + ["min"] = 10, + }, ["Ring"] = { - ["max"] = 35, - ["min"] = 10, - }, + ["max"] = 35, + ["min"] = 10, + }, ["Shield"] = { - ["max"] = 35, - ["min"] = 10, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1535626285", - ["text"] = "+# to Strength and Intelligence", - ["type"] = "explicit", - }, - }, + ["max"] = 35, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1535626285", + ["text"] = "+# to Strength and Intelligence", + ["type"] = "explicit", + }, + }, ["1181_StrengthIntelligenceForJewel"] = { ["AbyssJewel"] = { - ["max"] = 10, - ["min"] = 8, - }, + ["max"] = 10, + ["min"] = 8, + }, ["AnyJewel"] = { - ["max"] = 10, - ["min"] = 8, - }, + ["max"] = 10, + ["min"] = 8, + }, ["BaseJewel"] = { - ["max"] = 10, - ["min"] = 8, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1535626285", - ["text"] = "+# to Strength and Intelligence", - ["type"] = "explicit", - }, - }, + ["max"] = 10, + ["min"] = 8, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1535626285", + ["text"] = "+# to Strength and Intelligence", + ["type"] = "explicit", + }, + }, ["1182_DexterityAndIntelligence"] = { ["Amulet"] = { - ["max"] = 35, - ["min"] = 10, - }, + ["max"] = 35, + ["min"] = 10, + }, ["Belt"] = { - ["max"] = 35, - ["min"] = 10, - }, + ["max"] = 35, + ["min"] = 10, + }, ["Boots"] = { - ["max"] = 35, - ["min"] = 10, - }, + ["max"] = 35, + ["min"] = 10, + }, ["Chest"] = { - ["max"] = 35, - ["min"] = 10, - }, + ["max"] = 35, + ["min"] = 10, + }, ["Gloves"] = { - ["max"] = 35, - ["min"] = 10, - }, + ["max"] = 35, + ["min"] = 10, + }, ["Helmet"] = { - ["max"] = 35, - ["min"] = 10, - }, + ["max"] = 35, + ["min"] = 10, + }, ["Quiver"] = { - ["max"] = 35, - ["min"] = 10, - }, + ["max"] = 35, + ["min"] = 10, + }, ["Ring"] = { - ["max"] = 35, - ["min"] = 10, - }, + ["max"] = 35, + ["min"] = 10, + }, ["Shield"] = { - ["max"] = 35, - ["min"] = 10, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2300185227", - ["text"] = "+# to Dexterity and Intelligence", - ["type"] = "explicit", - }, - }, + ["max"] = 35, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2300185227", + ["text"] = "+# to Dexterity and Intelligence", + ["type"] = "explicit", + }, + }, ["1182_DexterityIntelligenceForJewel"] = { ["AbyssJewel"] = { - ["max"] = 10, - ["min"] = 8, - }, + ["max"] = 10, + ["min"] = 8, + }, ["AnyJewel"] = { - ["max"] = 10, - ["min"] = 8, - }, + ["max"] = 10, + ["min"] = 8, + }, ["BaseJewel"] = { - ["max"] = 10, - ["min"] = 8, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2300185227", - ["text"] = "+# to Dexterity and Intelligence", - ["type"] = "explicit", - }, - }, + ["max"] = 10, + ["min"] = 8, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2300185227", + ["text"] = "+# to Dexterity and Intelligence", + ["type"] = "explicit", + }, + }, ["1182_LocalAttackSpeedDexterityIntelligence"] = { ["1HAxe"] = { - ["max"] = 28, - ["min"] = 15, - }, + ["max"] = 28, + ["min"] = 15, + }, ["1HMace"] = { - ["max"] = 28, - ["min"] = 15, - }, + ["max"] = 28, + ["min"] = 15, + }, ["1HSword"] = { - ["max"] = 28, - ["min"] = 15, - }, + ["max"] = 28, + ["min"] = 15, + }, ["1HWeapon"] = { - ["max"] = 28, - ["min"] = 15, - }, + ["max"] = 28, + ["min"] = 15, + }, ["2HAxe"] = { - ["max"] = 28, - ["min"] = 15, - }, + ["max"] = 28, + ["min"] = 15, + }, ["2HMace"] = { - ["max"] = 28, - ["min"] = 15, - }, + ["max"] = 28, + ["min"] = 15, + }, ["2HSword"] = { - ["max"] = 28, - ["min"] = 15, - }, + ["max"] = 28, + ["min"] = 15, + }, ["2HWeapon"] = { - ["max"] = 28, - ["min"] = 15, - }, + ["max"] = 28, + ["min"] = 15, + }, ["Bow"] = { - ["max"] = 28, - ["min"] = 15, - }, + ["max"] = 28, + ["min"] = 15, + }, ["Claw"] = { - ["max"] = 28, - ["min"] = 15, - }, + ["max"] = 28, + ["min"] = 15, + }, ["Dagger"] = { - ["max"] = 28, - ["min"] = 15, - }, + ["max"] = 28, + ["min"] = 15, + }, ["Staff"] = { - ["max"] = 28, - ["min"] = 15, - }, + ["max"] = 28, + ["min"] = 15, + }, ["Wand"] = { - ["max"] = 28, - ["min"] = 15, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2300185227", - ["text"] = "+# to Dexterity and Intelligence", - ["type"] = "explicit", - }, - }, + ["max"] = 28, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2300185227", + ["text"] = "+# to Dexterity and Intelligence", + ["type"] = "explicit", + }, + }, ["1183_PercentageAllAttributes"] = { ["Amulet"] = { - ["max"] = 9, - ["min"] = 6, - }, + ["max"] = 9, + ["min"] = 6, + }, ["Belt"] = { - ["max"] = 12, - ["min"] = 6, - }, + ["max"] = 12, + ["min"] = 6, + }, ["Chest"] = { - ["max"] = 6, - ["min"] = 5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3143208761", - ["text"] = "#% increased Attributes", - ["type"] = "explicit", - }, - }, + ["max"] = 6, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3143208761", + ["text"] = "#% increased Attributes", + ["type"] = "explicit", + }, + }, ["1184_PercentageStrength"] = { ["Amulet"] = { - ["max"] = 12, - ["min"] = 5, - }, + ["max"] = 12, + ["min"] = 5, + }, ["Boots"] = { - ["max"] = 12, - ["min"] = 6, - }, + ["max"] = 12, + ["min"] = 6, + }, ["Chest"] = { - ["max"] = 12, - ["min"] = 5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_734614379", - ["text"] = "#% increased Strength", - ["type"] = "explicit", - }, - }, + ["max"] = 12, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_734614379", + ["text"] = "#% increased Strength", + ["type"] = "explicit", + }, + }, ["1184_PercentageStrengthMaven"] = { ["Amulet"] = { - ["max"] = 12, - ["min"] = 9, - }, + ["max"] = 12, + ["min"] = 9, + }, ["Chest"] = { - ["max"] = 12, - ["min"] = 9, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_734614379", - ["text"] = "#% increased Strength", - ["type"] = "explicit", - }, - }, + ["max"] = 12, + ["min"] = 9, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_734614379", + ["text"] = "#% increased Strength", + ["type"] = "explicit", + }, + }, ["1185_PercentageDexterity"] = { ["Amulet"] = { - ["max"] = 12, - ["min"] = 5, - }, + ["max"] = 12, + ["min"] = 5, + }, ["Chest"] = { - ["max"] = 12, - ["min"] = 5, - }, + ["max"] = 12, + ["min"] = 5, + }, ["Gloves"] = { - ["max"] = 12, - ["min"] = 6, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4139681126", - ["text"] = "#% increased Dexterity", - ["type"] = "explicit", - }, - }, + ["max"] = 12, + ["min"] = 6, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4139681126", + ["text"] = "#% increased Dexterity", + ["type"] = "explicit", + }, + }, ["1185_PercentageDexterityMaven"] = { ["Amulet"] = { - ["max"] = 12, - ["min"] = 9, - }, + ["max"] = 12, + ["min"] = 9, + }, ["Chest"] = { - ["max"] = 12, - ["min"] = 9, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4139681126", - ["text"] = "#% increased Dexterity", - ["type"] = "explicit", - }, - }, + ["max"] = 12, + ["min"] = 9, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4139681126", + ["text"] = "#% increased Dexterity", + ["type"] = "explicit", + }, + }, ["1186_PercentageIntelligence"] = { ["Amulet"] = { - ["max"] = 12, - ["min"] = 5, - }, + ["max"] = 12, + ["min"] = 5, + }, ["Chest"] = { - ["max"] = 12, - ["min"] = 5, - }, + ["max"] = 12, + ["min"] = 5, + }, ["Helmet"] = { - ["max"] = 12, - ["min"] = 6, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_656461285", - ["text"] = "#% increased Intelligence", - ["type"] = "explicit", - }, - }, + ["max"] = 12, + ["min"] = 6, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_656461285", + ["text"] = "#% increased Intelligence", + ["type"] = "explicit", + }, + }, ["1186_PercentageIntelligenceMaven"] = { ["Amulet"] = { - ["max"] = 12, - ["min"] = 9, - }, + ["max"] = 12, + ["min"] = 9, + }, ["Chest"] = { - ["max"] = 12, - ["min"] = 9, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_656461285", - ["text"] = "#% increased Intelligence", - ["type"] = "explicit", - }, - }, + ["max"] = 12, + ["min"] = 9, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_656461285", + ["text"] = "#% increased Intelligence", + ["type"] = "explicit", + }, + }, ["1191_AllDamage"] = { ["Belt"] = { - ["max"] = 25, - ["min"] = 11, - }, + ["max"] = 25, + ["min"] = 11, + }, ["Ring"] = { - ["max"] = 17, - ["min"] = 12, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2154246560", - ["text"] = "#% increased Damage", - ["type"] = "explicit", - }, - }, + ["max"] = 17, + ["min"] = 12, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2154246560", + ["text"] = "#% increased Damage", + ["type"] = "explicit", + }, + }, ["1191_DamageForJewel"] = { ["AnyJewel"] = { - ["max"] = 10, - ["min"] = 8, - }, + ["max"] = 10, + ["min"] = 8, + }, ["BaseJewel"] = { - ["max"] = 10, - ["min"] = 8, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2154246560", - ["text"] = "#% increased Damage", - ["type"] = "explicit", - }, - }, + ["max"] = 10, + ["min"] = 8, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2154246560", + ["text"] = "#% increased Damage", + ["type"] = "explicit", + }, + }, ["1193_TotemDamageAttackSupported"] = { ["Boots"] = { - ["max"] = 35, - ["min"] = 20, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3851254963", - ["text"] = "#% increased Totem Damage", - ["type"] = "explicit", - }, - }, + ["max"] = 35, + ["min"] = 20, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3851254963", + ["text"] = "#% increased Totem Damage", + ["type"] = "explicit", + }, + }, ["1193_TotemDamageForJewel"] = { ["AnyJewel"] = { - ["max"] = 16, - ["min"] = 12, - }, + ["max"] = 16, + ["min"] = 12, + }, ["BaseJewel"] = { - ["max"] = 16, - ["min"] = 12, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3851254963", - ["text"] = "#% increased Totem Damage", - ["type"] = "explicit", - }, - }, + ["max"] = 16, + ["min"] = 12, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3851254963", + ["text"] = "#% increased Totem Damage", + ["type"] = "explicit", + }, + }, ["1193_TotemDamageSpellSupported"] = { ["Boots"] = { - ["max"] = 35, - ["min"] = 20, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3851254963", - ["text"] = "#% increased Totem Damage", - ["type"] = "explicit", - }, - }, + ["max"] = 35, + ["min"] = 20, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3851254963", + ["text"] = "#% increased Totem Damage", + ["type"] = "explicit", + }, + }, ["1194_TrapDamageCooldownSupported"] = { ["Gloves"] = { - ["max"] = 35, - ["min"] = 20, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2941585404", - ["text"] = "#% increased Trap Damage", - ["type"] = "explicit", - }, - }, + ["max"] = 35, + ["min"] = 20, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2941585404", + ["text"] = "#% increased Trap Damage", + ["type"] = "explicit", + }, + }, ["1194_TrapDamageForJewel"] = { ["AnyJewel"] = { - ["max"] = 16, - ["min"] = 14, - }, + ["max"] = 16, + ["min"] = 14, + }, ["BaseJewel"] = { - ["max"] = 16, - ["min"] = 14, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2941585404", - ["text"] = "#% increased Trap Damage", - ["type"] = "explicit", - }, - }, + ["max"] = 16, + ["min"] = 14, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2941585404", + ["text"] = "#% increased Trap Damage", + ["type"] = "explicit", + }, + }, ["1194_TrapDamageMineSupported"] = { ["Gloves"] = { - ["max"] = 35, - ["min"] = 20, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2941585404", - ["text"] = "#% increased Trap Damage", - ["type"] = "explicit", - }, - }, + ["max"] = 35, + ["min"] = 20, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2941585404", + ["text"] = "#% increased Trap Damage", + ["type"] = "explicit", + }, + }, ["1194_TrapDamageOnWeapon"] = { ["1HAxe"] = { - ["max"] = 54, - ["min"] = 35, - }, + ["max"] = 54, + ["min"] = 35, + }, ["1HMace"] = { - ["max"] = 54, - ["min"] = 35, - }, + ["max"] = 54, + ["min"] = 35, + }, ["1HSword"] = { - ["max"] = 54, - ["min"] = 35, - }, + ["max"] = 54, + ["min"] = 35, + }, ["1HWeapon"] = { - ["max"] = 54, - ["min"] = 35, - }, + ["max"] = 54, + ["min"] = 35, + }, ["2HAxe"] = { - ["max"] = 81, - ["min"] = 52, - }, + ["max"] = 81, + ["min"] = 52, + }, ["2HMace"] = { - ["max"] = 81, - ["min"] = 52, - }, + ["max"] = 81, + ["min"] = 52, + }, ["2HSword"] = { - ["max"] = 81, - ["min"] = 52, - }, + ["max"] = 81, + ["min"] = 52, + }, ["2HWeapon"] = { - ["max"] = 81, - ["min"] = 52, - }, + ["max"] = 81, + ["min"] = 52, + }, ["Bow"] = { - ["max"] = 81, - ["min"] = 52, - }, + ["max"] = 81, + ["min"] = 52, + }, ["Claw"] = { - ["max"] = 54, - ["min"] = 35, - }, + ["max"] = 54, + ["min"] = 35, + }, ["Dagger"] = { - ["max"] = 54, - ["min"] = 35, - }, + ["max"] = 54, + ["min"] = 35, + }, ["Staff"] = { - ["max"] = 81, - ["min"] = 52, - }, + ["max"] = 81, + ["min"] = 52, + }, ["Wand"] = { - ["max"] = 54, - ["min"] = 35, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2941585404", - ["text"] = "#% increased Trap Damage", - ["type"] = "explicit", - }, - }, + ["max"] = 54, + ["min"] = 35, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2941585404", + ["text"] = "#% increased Trap Damage", + ["type"] = "explicit", + }, + }, ["1194_TrapDamageSupported"] = { ["Gloves"] = { - ["max"] = 35, - ["min"] = 20, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2941585404", - ["text"] = "#% increased Trap Damage", - ["type"] = "explicit", - }, - }, + ["max"] = 35, + ["min"] = 20, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2941585404", + ["text"] = "#% increased Trap Damage", + ["type"] = "explicit", + }, + }, ["1196_MineDamageForJewel"] = { ["AnyJewel"] = { - ["max"] = 16, - ["min"] = 14, - }, + ["max"] = 16, + ["min"] = 14, + }, ["BaseJewel"] = { - ["max"] = 16, - ["min"] = 14, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2137912951", - ["text"] = "#% increased Mine Damage", - ["type"] = "explicit", - }, - }, + ["max"] = 16, + ["min"] = 14, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2137912951", + ["text"] = "#% increased Mine Damage", + ["type"] = "explicit", + }, + }, ["1196_MineDamageOnWeapon"] = { ["1HAxe"] = { - ["max"] = 54, - ["min"] = 35, - }, + ["max"] = 54, + ["min"] = 35, + }, ["1HMace"] = { - ["max"] = 54, - ["min"] = 35, - }, + ["max"] = 54, + ["min"] = 35, + }, ["1HSword"] = { - ["max"] = 54, - ["min"] = 35, - }, + ["max"] = 54, + ["min"] = 35, + }, ["1HWeapon"] = { - ["max"] = 54, - ["min"] = 35, - }, + ["max"] = 54, + ["min"] = 35, + }, ["2HAxe"] = { - ["max"] = 81, - ["min"] = 52, - }, + ["max"] = 81, + ["min"] = 52, + }, ["2HMace"] = { - ["max"] = 81, - ["min"] = 52, - }, + ["max"] = 81, + ["min"] = 52, + }, ["2HSword"] = { - ["max"] = 81, - ["min"] = 52, - }, + ["max"] = 81, + ["min"] = 52, + }, ["2HWeapon"] = { - ["max"] = 81, - ["min"] = 52, - }, + ["max"] = 81, + ["min"] = 52, + }, ["Bow"] = { - ["max"] = 81, - ["min"] = 52, - }, + ["max"] = 81, + ["min"] = 52, + }, ["Claw"] = { - ["max"] = 54, - ["min"] = 35, - }, + ["max"] = 54, + ["min"] = 35, + }, ["Dagger"] = { - ["max"] = 54, - ["min"] = 35, - }, + ["max"] = 54, + ["min"] = 35, + }, ["Staff"] = { - ["max"] = 81, - ["min"] = 52, - }, + ["max"] = 81, + ["min"] = 52, + }, ["Wand"] = { - ["max"] = 54, - ["min"] = 35, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2137912951", - ["text"] = "#% increased Mine Damage", - ["type"] = "explicit", - }, - }, + ["max"] = 54, + ["min"] = 35, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2137912951", + ["text"] = "#% increased Mine Damage", + ["type"] = "explicit", + }, + }, ["1196_MineDamageSupported"] = { ["Helmet"] = { - ["max"] = 35, - ["min"] = 20, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2137912951", - ["text"] = "#% increased Mine Damage", - ["type"] = "explicit", - }, - }, + ["max"] = 35, + ["min"] = 20, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2137912951", + ["text"] = "#% increased Mine Damage", + ["type"] = "explicit", + }, + }, ["1196_MineDamageTrapSupported"] = { ["Helmet"] = { - ["max"] = 35, - ["min"] = 20, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2137912951", - ["text"] = "#% increased Mine Damage", - ["type"] = "explicit", - }, - }, + ["max"] = 35, + ["min"] = 20, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2137912951", + ["text"] = "#% increased Mine Damage", + ["type"] = "explicit", + }, + }, ["1198_AttackDamage"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_2843214518", - ["text"] = "#% increased Attack Damage", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_2843214518", + ["text"] = "#% increased Attack Damage", + ["type"] = "explicit", + }, + }, ["1206_DamageWhileHoldingAShieldForJewel"] = { ["AnyJewel"] = { - ["max"] = 14, - ["min"] = 12, - }, + ["max"] = 14, + ["min"] = 12, + }, ["BaseJewel"] = { - ["max"] = 14, - ["min"] = 12, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1393393937", - ["text"] = "#% increased Attack Damage while holding a Shield", - ["type"] = "explicit", - }, - }, + ["max"] = 14, + ["min"] = 12, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1393393937", + ["text"] = "#% increased Attack Damage while holding a Shield", + ["type"] = "explicit", + }, + }, ["1210_DamageOverTimeForJewel"] = { ["AnyJewel"] = { - ["max"] = 12, - ["min"] = 10, - }, + ["max"] = 12, + ["min"] = 10, + }, ["BaseJewel"] = { - ["max"] = 12, - ["min"] = 10, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_967627487", - ["text"] = "#% increased Damage over Time", - ["type"] = "explicit", - }, - }, + ["max"] = 12, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_967627487", + ["text"] = "#% increased Damage over Time", + ["type"] = "explicit", + }, + }, ["1210_DegenerationDamage"] = { ["1HAxe"] = { - ["max"] = 30, - ["min"] = 11, - }, + ["max"] = 30, + ["min"] = 11, + }, ["1HMace"] = { - ["max"] = 30, - ["min"] = 11, - }, + ["max"] = 30, + ["min"] = 11, + }, ["1HSword"] = { - ["max"] = 30, - ["min"] = 11, - }, + ["max"] = 30, + ["min"] = 11, + }, ["1HWeapon"] = { - ["max"] = 30, - ["min"] = 11, - }, + ["max"] = 30, + ["min"] = 11, + }, ["2HAxe"] = { - ["max"] = 30, - ["min"] = 11, - }, + ["max"] = 30, + ["min"] = 11, + }, ["2HMace"] = { - ["max"] = 30, - ["min"] = 11, - }, + ["max"] = 30, + ["min"] = 11, + }, ["2HSword"] = { - ["max"] = 30, - ["min"] = 11, - }, + ["max"] = 30, + ["min"] = 11, + }, ["2HWeapon"] = { - ["max"] = 30, - ["min"] = 11, - }, + ["max"] = 30, + ["min"] = 11, + }, ["Bow"] = { - ["max"] = 30, - ["min"] = 11, - }, + ["max"] = 30, + ["min"] = 11, + }, ["Claw"] = { - ["max"] = 30, - ["min"] = 11, - }, + ["max"] = 30, + ["min"] = 11, + }, ["Dagger"] = { - ["max"] = 30, - ["min"] = 11, - }, + ["max"] = 30, + ["min"] = 11, + }, ["Gloves"] = { - ["max"] = 38, - ["min"] = 18, - }, + ["max"] = 38, + ["min"] = 18, + }, ["Staff"] = { - ["max"] = 30, - ["min"] = 11, - }, + ["max"] = 30, + ["min"] = 11, + }, ["Wand"] = { - ["max"] = 30, - ["min"] = 11, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_967627487", - ["text"] = "#% increased Damage over Time", - ["type"] = "explicit", - }, - }, + ["max"] = 30, + ["min"] = 11, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_967627487", + ["text"] = "#% increased Damage over Time", + ["type"] = "explicit", + }, + }, ["1211_PhysicalDamageOverTimePrefix"] = { ["1HAxe"] = { - ["max"] = 94, - ["min"] = 60, - }, + ["max"] = 94, + ["min"] = 60, + }, ["1HMace"] = { - ["max"] = 94, - ["min"] = 60, - }, + ["max"] = 94, + ["min"] = 60, + }, ["1HSword"] = { - ["max"] = 94, - ["min"] = 60, - }, + ["max"] = 94, + ["min"] = 60, + }, ["1HWeapon"] = { - ["max"] = 94, - ["min"] = 60, - }, + ["max"] = 94, + ["min"] = 60, + }, ["2HAxe"] = { - ["max"] = 134, - ["min"] = 60, - }, + ["max"] = 134, + ["min"] = 60, + }, ["2HMace"] = { - ["max"] = 134, - ["min"] = 60, - }, + ["max"] = 134, + ["min"] = 60, + }, ["2HSword"] = { - ["max"] = 134, - ["min"] = 60, - }, + ["max"] = 134, + ["min"] = 60, + }, ["2HWeapon"] = { - ["max"] = 134, - ["min"] = 60, - }, + ["max"] = 134, + ["min"] = 60, + }, ["Bow"] = { - ["max"] = 94, - ["min"] = 60, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1692565595", - ["text"] = "#% increased Physical Damage over Time", - ["type"] = "explicit", - }, - }, + ["max"] = 94, + ["min"] = 60, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1692565595", + ["text"] = "#% increased Physical Damage over Time", + ["type"] = "explicit", + }, + }, ["1214_ChaosDamageOverTimePrefix"] = { ["1HSword"] = { - ["max"] = 94, - ["min"] = 60, - }, + ["max"] = 94, + ["min"] = 60, + }, ["1HWeapon"] = { - ["max"] = 94, - ["min"] = 60, - }, + ["max"] = 94, + ["min"] = 60, + }, ["2HSword"] = { - ["max"] = 134, - ["min"] = 60, - }, + ["max"] = 134, + ["min"] = 60, + }, ["2HWeapon"] = { - ["max"] = 134, - ["min"] = 60, - }, + ["max"] = 134, + ["min"] = 60, + }, ["Bow"] = { - ["max"] = 94, - ["min"] = 60, - }, + ["max"] = 94, + ["min"] = 60, + }, ["Claw"] = { - ["max"] = 94, - ["min"] = 60, - }, + ["max"] = 94, + ["min"] = 60, + }, ["Dagger"] = { - ["max"] = 94, - ["min"] = 60, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_601272515", - ["text"] = "#% increased Chaos Damage over Time", - ["type"] = "explicit", - }, - }, + ["max"] = 94, + ["min"] = 60, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_601272515", + ["text"] = "#% increased Chaos Damage over Time", + ["type"] = "explicit", + }, + }, ["1223_ArcaneSurgeAndSpellDamage"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_2974417149", - ["text"] = "#% increased Spell Damage", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_2974417149", + ["text"] = "#% increased Spell Damage", + ["type"] = "explicit", + }, + }, ["1223_CastOnCritAndSpellDamage"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_2974417149", - ["text"] = "#% increased Spell Damage", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_2974417149", + ["text"] = "#% increased Spell Damage", + ["type"] = "explicit", + }, + }, ["1223_CastWhileChannelingAndSpellDamage"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_2974417149", - ["text"] = "#% increased Spell Damage", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_2974417149", + ["text"] = "#% increased Spell Damage", + ["type"] = "explicit", + }, + }, ["1223_SpellDamage"] = { ["Amulet"] = { - ["max"] = 26, - ["min"] = 3, - }, + ["max"] = 26, + ["min"] = 3, + }, ["Gloves"] = { - ["max"] = 38, - ["min"] = 18, - }, + ["max"] = 38, + ["min"] = 18, + }, ["Ring"] = { - ["max"] = 25, - ["min"] = 15, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2974417149", - ["text"] = "#% increased Spell Damage", - ["type"] = "explicit", - }, - }, + ["max"] = 25, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2974417149", + ["text"] = "#% increased Spell Damage", + ["type"] = "explicit", + }, + }, ["1223_SpellDamageAndManaRegenerationRate"] = { ["1HAxe"] = { - ["max"] = 79, - ["min"] = 36, - }, + ["max"] = 79, + ["min"] = 36, + }, ["1HMace"] = { - ["max"] = 79, - ["min"] = 36, - }, + ["max"] = 79, + ["min"] = 36, + }, ["1HSword"] = { - ["max"] = 79, - ["min"] = 36, - }, + ["max"] = 79, + ["min"] = 36, + }, ["1HWeapon"] = { - ["max"] = 79, - ["min"] = 36, - }, + ["max"] = 79, + ["min"] = 36, + }, ["2HAxe"] = { - ["max"] = 109, - ["min"] = 60, - }, + ["max"] = 109, + ["min"] = 60, + }, ["2HMace"] = { - ["max"] = 109, - ["min"] = 60, - }, + ["max"] = 109, + ["min"] = 60, + }, ["2HSword"] = { - ["max"] = 109, - ["min"] = 60, - }, + ["max"] = 109, + ["min"] = 60, + }, ["2HWeapon"] = { - ["max"] = 109, - ["min"] = 60, - }, + ["max"] = 109, + ["min"] = 60, + }, ["Bow"] = { - ["max"] = 109, - ["min"] = 70, - }, + ["max"] = 109, + ["min"] = 70, + }, ["Claw"] = { - ["max"] = 79, - ["min"] = 36, - }, + ["max"] = 79, + ["min"] = 36, + }, ["Dagger"] = { - ["max"] = 79, - ["min"] = 36, - }, + ["max"] = 79, + ["min"] = 36, + }, ["Staff"] = { - ["max"] = 109, - ["min"] = 60, - }, + ["max"] = 109, + ["min"] = 60, + }, ["Wand"] = { - ["max"] = 79, - ["min"] = 36, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2974417149", - ["text"] = "#% increased Spell Damage", - ["type"] = "explicit", - }, - }, + ["max"] = 79, + ["min"] = 36, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2974417149", + ["text"] = "#% increased Spell Damage", + ["type"] = "explicit", + }, + }, ["1223_SpellDamageAndNonChaosDamageToAddAsChaosDamage"] = { ["1HAxe"] = { - ["max"] = 69, - ["min"] = 38, - }, + ["max"] = 69, + ["min"] = 38, + }, ["1HMace"] = { - ["max"] = 69, - ["min"] = 38, - }, + ["max"] = 69, + ["min"] = 38, + }, ["1HSword"] = { - ["max"] = 69, - ["min"] = 38, - }, + ["max"] = 69, + ["min"] = 38, + }, ["1HWeapon"] = { - ["max"] = 69, - ["min"] = 38, - }, + ["max"] = 69, + ["min"] = 38, + }, ["2HAxe"] = { - ["max"] = 99, - ["min"] = 53, - }, + ["max"] = 99, + ["min"] = 53, + }, ["2HMace"] = { - ["max"] = 99, - ["min"] = 53, - }, + ["max"] = 99, + ["min"] = 53, + }, ["2HSword"] = { - ["max"] = 99, - ["min"] = 53, - }, + ["max"] = 99, + ["min"] = 53, + }, ["2HWeapon"] = { - ["max"] = 99, - ["min"] = 53, - }, + ["max"] = 99, + ["min"] = 53, + }, ["Bow"] = { - ["max"] = 99, - ["min"] = 60, - }, + ["max"] = 99, + ["min"] = 60, + }, ["Claw"] = { - ["max"] = 69, - ["min"] = 38, - }, + ["max"] = 69, + ["min"] = 38, + }, ["Dagger"] = { - ["max"] = 69, - ["min"] = 38, - }, + ["max"] = 69, + ["min"] = 38, + }, ["Staff"] = { - ["max"] = 99, - ["min"] = 53, - }, + ["max"] = 99, + ["min"] = 53, + }, ["Wand"] = { - ["max"] = 69, - ["min"] = 38, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2974417149", - ["text"] = "#% increased Spell Damage", - ["type"] = "explicit", - }, - }, + ["max"] = 69, + ["min"] = 38, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2974417149", + ["text"] = "#% increased Spell Damage", + ["type"] = "explicit", + }, + }, ["1223_SpellDamageForJewel"] = { ["AnyJewel"] = { - ["max"] = 12, - ["min"] = 10, - }, + ["max"] = 12, + ["min"] = 10, + }, ["BaseJewel"] = { - ["max"] = 12, - ["min"] = 10, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2974417149", - ["text"] = "#% increased Spell Damage", - ["type"] = "explicit", - }, - }, + ["max"] = 12, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2974417149", + ["text"] = "#% increased Spell Damage", + ["type"] = "explicit", + }, + }, ["1223_TwoHandWeaponSpellDamage"] = { ["2HAxe"] = { - ["max"] = 144, - ["min"] = 15, - }, + ["max"] = 144, + ["min"] = 15, + }, ["2HMace"] = { - ["max"] = 144, - ["min"] = 15, - }, + ["max"] = 144, + ["min"] = 15, + }, ["2HSword"] = { - ["max"] = 144, - ["min"] = 15, - }, + ["max"] = 144, + ["min"] = 15, + }, ["2HWeapon"] = { - ["max"] = 164, - ["min"] = 15, - }, + ["max"] = 164, + ["min"] = 15, + }, ["Bow"] = { - ["max"] = 144, - ["min"] = 15, - }, + ["max"] = 144, + ["min"] = 15, + }, ["Staff"] = { - ["max"] = 164, - ["min"] = 15, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2974417149", - ["text"] = "#% increased Spell Damage", - ["type"] = "explicit", - }, - }, + ["max"] = 164, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2974417149", + ["text"] = "#% increased Spell Damage", + ["type"] = "explicit", + }, + }, ["1223_TwoHandWeaponSpellDamageAndMana"] = { ["2HWeapon"] = { - ["max"] = 55, - ["min"] = 8, - }, + ["max"] = 55, + ["min"] = 8, + }, ["Staff"] = { - ["max"] = 55, - ["min"] = 8, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2974417149", - ["text"] = "#% increased Spell Damage", - ["type"] = "explicit", - }, - }, + ["max"] = 55, + ["min"] = 8, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2974417149", + ["text"] = "#% increased Spell Damage", + ["type"] = "explicit", + }, + }, ["1223_WeaponSpellDamage"] = { ["1HAxe"] = { - ["max"] = 94, - ["min"] = 10, - }, + ["max"] = 94, + ["min"] = 10, + }, ["1HMace"] = { - ["max"] = 109, - ["min"] = 10, - }, + ["max"] = 109, + ["min"] = 10, + }, ["1HSword"] = { - ["max"] = 94, - ["min"] = 10, - }, + ["max"] = 94, + ["min"] = 10, + }, ["1HWeapon"] = { - ["max"] = 109, - ["min"] = 10, - }, + ["max"] = 109, + ["min"] = 10, + }, ["Claw"] = { - ["max"] = 94, - ["min"] = 10, - }, + ["max"] = 94, + ["min"] = 10, + }, ["Dagger"] = { - ["max"] = 109, - ["min"] = 10, - }, + ["max"] = 109, + ["min"] = 10, + }, ["Shield"] = { - ["max"] = 109, - ["min"] = 10, - }, + ["max"] = 109, + ["min"] = 10, + }, ["Wand"] = { - ["max"] = 109, - ["min"] = 10, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2974417149", - ["text"] = "#% increased Spell Damage", - ["type"] = "explicit", - }, - }, + ["max"] = 109, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2974417149", + ["text"] = "#% increased Spell Damage", + ["type"] = "explicit", + }, + }, ["1223_WeaponSpellDamageAddedAsChaos"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_2974417149", - ["text"] = "#% increased Spell Damage", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_2974417149", + ["text"] = "#% increased Spell Damage", + ["type"] = "explicit", + }, + }, ["1223_WeaponSpellDamageAndMana"] = { ["1HMace"] = { - ["max"] = 39, - ["min"] = 5, - }, + ["max"] = 39, + ["min"] = 5, + }, ["1HWeapon"] = { - ["max"] = 39, - ["min"] = 5, - }, + ["max"] = 39, + ["min"] = 5, + }, ["Dagger"] = { - ["max"] = 39, - ["min"] = 5, - }, + ["max"] = 39, + ["min"] = 5, + }, ["Wand"] = { - ["max"] = 39, - ["min"] = 5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2974417149", - ["text"] = "#% increased Spell Damage", - ["type"] = "explicit", - }, - }, + ["max"] = 39, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2974417149", + ["text"] = "#% increased Spell Damage", + ["type"] = "explicit", + }, + }, ["1223_WeaponSpellDamageArcaneSurge"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_2974417149", - ["text"] = "#% increased Spell Damage", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_2974417149", + ["text"] = "#% increased Spell Damage", + ["type"] = "explicit", + }, + }, ["1223_WeaponSpellDamageControlledDestruction"] = { ["1HMace"] = { - ["max"] = 60, - ["min"] = 45, - }, + ["max"] = 60, + ["min"] = 45, + }, ["1HWeapon"] = { - ["max"] = 60, - ["min"] = 45, - }, + ["max"] = 60, + ["min"] = 45, + }, ["Dagger"] = { - ["max"] = 60, - ["min"] = 45, - }, + ["max"] = 60, + ["min"] = 45, + }, ["Wand"] = { - ["max"] = 60, - ["min"] = 45, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2974417149", - ["text"] = "#% increased Spell Damage", - ["type"] = "explicit", - }, - }, + ["max"] = 60, + ["min"] = 45, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2974417149", + ["text"] = "#% increased Spell Damage", + ["type"] = "explicit", + }, + }, ["1223_WeaponSpellDamageEfficacy"] = { ["1HMace"] = { - ["max"] = 60, - ["min"] = 45, - }, + ["max"] = 60, + ["min"] = 45, + }, ["1HWeapon"] = { - ["max"] = 60, - ["min"] = 45, - }, + ["max"] = 60, + ["min"] = 45, + }, ["Dagger"] = { - ["max"] = 60, - ["min"] = 45, - }, + ["max"] = 60, + ["min"] = 45, + }, ["Wand"] = { - ["max"] = 60, - ["min"] = 45, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2974417149", - ["text"] = "#% increased Spell Damage", - ["type"] = "explicit", - }, - }, + ["max"] = 60, + ["min"] = 45, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2974417149", + ["text"] = "#% increased Spell Damage", + ["type"] = "explicit", + }, + }, ["1223_WeaponSpellDamagePowerChargeOnCrit"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_2974417149", - ["text"] = "#% increased Spell Damage", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_2974417149", + ["text"] = "#% increased Spell Damage", + ["type"] = "explicit", + }, + }, ["1223_WeaponSpellDamageReducedMana"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_2974417149", - ["text"] = "#% increased Spell Damage", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_2974417149", + ["text"] = "#% increased Spell Damage", + ["type"] = "explicit", + }, + }, ["1223_WeaponSpellDamageTriggerSkill"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_2974417149", - ["text"] = "#% increased Spell Damage", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_2974417149", + ["text"] = "#% increased Spell Damage", + ["type"] = "explicit", + }, + }, ["1227_StaffSpellDamageForJewel"] = { ["AnyJewel"] = { - ["max"] = 16, - ["min"] = 14, - }, + ["max"] = 16, + ["min"] = 14, + }, ["BaseJewel"] = { - ["max"] = 16, - ["min"] = 14, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3496944181", - ["text"] = "#% increased Spell Damage while wielding a Staff", - ["type"] = "explicit", - }, - }, + ["max"] = 16, + ["min"] = 14, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3496944181", + ["text"] = "#% increased Spell Damage while wielding a Staff", + ["type"] = "explicit", + }, + }, ["1229_ShieldSpellDamageForJewel"] = { ["AnyJewel"] = { - ["max"] = 16, - ["min"] = 14, - }, + ["max"] = 16, + ["min"] = 14, + }, ["BaseJewel"] = { - ["max"] = 16, - ["min"] = 14, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1766142294", - ["text"] = "#% increased Spell Damage while holding a Shield", - ["type"] = "explicit", - }, - }, + ["max"] = 16, + ["min"] = 14, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1766142294", + ["text"] = "#% increased Spell Damage while holding a Shield", + ["type"] = "explicit", + }, + }, ["1230_DualWieldingSpellDamageForJewel"] = { ["AnyJewel"] = { - ["max"] = 16, - ["min"] = 14, - }, + ["max"] = 16, + ["min"] = 14, + }, ["BaseJewel"] = { - ["max"] = 16, - ["min"] = 14, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1678690824", - ["text"] = "#% increased Spell Damage while Dual Wielding", - ["type"] = "explicit", - }, - }, + ["max"] = 16, + ["min"] = 14, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1678690824", + ["text"] = "#% increased Spell Damage while Dual Wielding", + ["type"] = "explicit", + }, + }, ["1231_IncreasedChaosAndPhysicalDamage"] = { ["Ring"] = { - ["max"] = 16, - ["min"] = 11, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1310194496", - ["text"] = "#% increased Global Physical Damage", - ["type"] = "explicit", - }, - }, + ["max"] = 16, + ["min"] = 11, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1310194496", + ["text"] = "#% increased Global Physical Damage", + ["type"] = "explicit", + }, + }, ["1231_PhysicalDamageForJewel"] = { ["AnyJewel"] = { - ["max"] = 16, - ["min"] = 14, - }, + ["max"] = 16, + ["min"] = 14, + }, ["BaseJewel"] = { - ["max"] = 16, - ["min"] = 14, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1310194496", - ["text"] = "#% increased Global Physical Damage", - ["type"] = "explicit", - }, - }, + ["max"] = 16, + ["min"] = 14, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1310194496", + ["text"] = "#% increased Global Physical Damage", + ["type"] = "explicit", + }, + }, ["1231_PhysicalDamagePercent"] = { ["Amulet"] = { - ["max"] = 16, - ["min"] = 9, - }, + ["max"] = 16, + ["min"] = 9, + }, ["Shield"] = { - ["max"] = 16, - ["min"] = 9, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1310194496", - ["text"] = "#% increased Global Physical Damage", - ["type"] = "explicit", - }, - }, + ["max"] = 16, + ["min"] = 9, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1310194496", + ["text"] = "#% increased Global Physical Damage", + ["type"] = "explicit", + }, + }, ["1231_PhysicalDamagePercentPrefix"] = { ["Amulet"] = { - ["max"] = 30, - ["min"] = 20, - }, + ["max"] = 30, + ["min"] = 20, + }, ["Belt"] = { - ["max"] = 30, - ["min"] = 16, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1310194496", - ["text"] = "#% increased Global Physical Damage", - ["type"] = "explicit", - }, - }, + ["max"] = 30, + ["min"] = 16, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1310194496", + ["text"] = "#% increased Global Physical Damage", + ["type"] = "explicit", + }, + }, ["1231_SpellAddedPhysicalDamageHybrid"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1310194496", - ["text"] = "#% increased Global Physical Damage", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1310194496", + ["text"] = "#% increased Global Physical Damage", + ["type"] = "explicit", + }, + }, ["1232_CullingStrikeOnBleedingEnemiesUber"] = { ["1HAxe"] = { - ["max"] = 49, - ["min"] = 30, - }, + ["max"] = 49, + ["min"] = 30, + }, ["1HWeapon"] = { - ["max"] = 49, - ["min"] = 30, - }, + ["max"] = 49, + ["min"] = 30, + }, ["2HAxe"] = { - ["max"] = 49, - ["min"] = 30, - }, + ["max"] = 49, + ["min"] = 30, + }, ["2HWeapon"] = { - ["max"] = 49, - ["min"] = 30, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1509134228", - ["text"] = "#% increased Physical Damage", - ["type"] = "explicit", - }, - }, + ["max"] = 49, + ["min"] = 30, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1509134228", + ["text"] = "#% increased Physical Damage", + ["type"] = "explicit", + }, + }, ["1232_LocalChanceToMaimPhysicalDamage"] = { ["1HAxe"] = { - ["max"] = 20, - ["min"] = 10, - }, + ["max"] = 20, + ["min"] = 10, + }, ["1HMace"] = { - ["max"] = 20, - ["min"] = 10, - }, + ["max"] = 20, + ["min"] = 10, + }, ["1HSword"] = { - ["max"] = 20, - ["min"] = 10, - }, + ["max"] = 20, + ["min"] = 10, + }, ["1HWeapon"] = { - ["max"] = 20, - ["min"] = 10, - }, + ["max"] = 20, + ["min"] = 10, + }, ["2HAxe"] = { - ["max"] = 20, - ["min"] = 10, - }, + ["max"] = 20, + ["min"] = 10, + }, ["2HMace"] = { - ["max"] = 20, - ["min"] = 10, - }, + ["max"] = 20, + ["min"] = 10, + }, ["2HSword"] = { - ["max"] = 20, - ["min"] = 10, - }, + ["max"] = 20, + ["min"] = 10, + }, ["2HWeapon"] = { - ["max"] = 20, - ["min"] = 10, - }, + ["max"] = 20, + ["min"] = 10, + }, ["Bow"] = { - ["max"] = 20, - ["min"] = 10, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1509134228", - ["text"] = "#% increased Physical Damage", - ["type"] = "explicit", - }, - }, + ["max"] = 20, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1509134228", + ["text"] = "#% increased Physical Damage", + ["type"] = "explicit", + }, + }, ["1232_LocalIncreasedPhysicalDamageAndBleedChance"] = { ["1HAxe"] = { - ["max"] = 139, - ["min"] = 81, - }, + ["max"] = 139, + ["min"] = 81, + }, ["1HMace"] = { - ["max"] = 139, - ["min"] = 81, - }, + ["max"] = 139, + ["min"] = 81, + }, ["1HSword"] = { - ["max"] = 139, - ["min"] = 81, - }, + ["max"] = 139, + ["min"] = 81, + }, ["1HWeapon"] = { - ["max"] = 139, - ["min"] = 81, - }, + ["max"] = 139, + ["min"] = 81, + }, ["2HAxe"] = { - ["max"] = 139, - ["min"] = 81, - }, + ["max"] = 139, + ["min"] = 81, + }, ["2HMace"] = { - ["max"] = 139, - ["min"] = 81, - }, + ["max"] = 139, + ["min"] = 81, + }, ["2HSword"] = { - ["max"] = 139, - ["min"] = 81, - }, + ["max"] = 139, + ["min"] = 81, + }, ["2HWeapon"] = { - ["max"] = 139, - ["min"] = 81, - }, + ["max"] = 139, + ["min"] = 81, + }, ["Bow"] = { - ["max"] = 139, - ["min"] = 81, - }, + ["max"] = 139, + ["min"] = 81, + }, ["Claw"] = { - ["max"] = 139, - ["min"] = 81, - }, + ["max"] = 139, + ["min"] = 81, + }, ["Dagger"] = { - ["max"] = 139, - ["min"] = 81, - }, + ["max"] = 139, + ["min"] = 81, + }, ["Staff"] = { - ["max"] = 139, - ["min"] = 81, - }, + ["max"] = 139, + ["min"] = 81, + }, ["Wand"] = { - ["max"] = 139, - ["min"] = 81, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1509134228", - ["text"] = "#% increased Physical Damage", - ["type"] = "explicit", - }, - }, + ["max"] = 139, + ["min"] = 81, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1509134228", + ["text"] = "#% increased Physical Damage", + ["type"] = "explicit", + }, + }, ["1232_LocalIncreasedPhysicalDamageAndBlindChance"] = { ["1HAxe"] = { - ["max"] = 139, - ["min"] = 81, - }, + ["max"] = 139, + ["min"] = 81, + }, ["1HMace"] = { - ["max"] = 139, - ["min"] = 81, - }, + ["max"] = 139, + ["min"] = 81, + }, ["1HSword"] = { - ["max"] = 139, - ["min"] = 81, - }, + ["max"] = 139, + ["min"] = 81, + }, ["1HWeapon"] = { - ["max"] = 139, - ["min"] = 81, - }, + ["max"] = 139, + ["min"] = 81, + }, ["2HAxe"] = { - ["max"] = 139, - ["min"] = 81, - }, + ["max"] = 139, + ["min"] = 81, + }, ["2HMace"] = { - ["max"] = 139, - ["min"] = 81, - }, + ["max"] = 139, + ["min"] = 81, + }, ["2HSword"] = { - ["max"] = 139, - ["min"] = 81, - }, + ["max"] = 139, + ["min"] = 81, + }, ["2HWeapon"] = { - ["max"] = 139, - ["min"] = 81, - }, + ["max"] = 139, + ["min"] = 81, + }, ["Bow"] = { - ["max"] = 139, - ["min"] = 81, - }, + ["max"] = 139, + ["min"] = 81, + }, ["Claw"] = { - ["max"] = 139, - ["min"] = 81, - }, + ["max"] = 139, + ["min"] = 81, + }, ["Dagger"] = { - ["max"] = 139, - ["min"] = 81, - }, + ["max"] = 139, + ["min"] = 81, + }, ["Staff"] = { - ["max"] = 139, - ["min"] = 81, - }, + ["max"] = 139, + ["min"] = 81, + }, ["Wand"] = { - ["max"] = 139, - ["min"] = 81, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1509134228", - ["text"] = "#% increased Physical Damage", - ["type"] = "explicit", - }, - }, + ["max"] = 139, + ["min"] = 81, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1509134228", + ["text"] = "#% increased Physical Damage", + ["type"] = "explicit", + }, + }, ["1232_LocalIncreasedPhysicalDamageAndImpaleChance"] = { ["1HAxe"] = { - ["max"] = 139, - ["min"] = 81, - }, + ["max"] = 139, + ["min"] = 81, + }, ["1HMace"] = { - ["max"] = 139, - ["min"] = 81, - }, + ["max"] = 139, + ["min"] = 81, + }, ["1HSword"] = { - ["max"] = 139, - ["min"] = 81, - }, + ["max"] = 139, + ["min"] = 81, + }, ["1HWeapon"] = { - ["max"] = 139, - ["min"] = 81, - }, + ["max"] = 139, + ["min"] = 81, + }, ["2HAxe"] = { - ["max"] = 139, - ["min"] = 81, - }, + ["max"] = 139, + ["min"] = 81, + }, ["2HMace"] = { - ["max"] = 139, - ["min"] = 81, - }, + ["max"] = 139, + ["min"] = 81, + }, ["2HSword"] = { - ["max"] = 139, - ["min"] = 81, - }, + ["max"] = 139, + ["min"] = 81, + }, ["2HWeapon"] = { - ["max"] = 139, - ["min"] = 81, - }, + ["max"] = 139, + ["min"] = 81, + }, ["Bow"] = { - ["max"] = 139, - ["min"] = 81, - }, + ["max"] = 139, + ["min"] = 81, + }, ["Claw"] = { - ["max"] = 139, - ["min"] = 81, - }, + ["max"] = 139, + ["min"] = 81, + }, ["Dagger"] = { - ["max"] = 139, - ["min"] = 81, - }, + ["max"] = 139, + ["min"] = 81, + }, ["Staff"] = { - ["max"] = 139, - ["min"] = 81, - }, + ["max"] = 139, + ["min"] = 81, + }, ["Wand"] = { - ["max"] = 139, - ["min"] = 81, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1509134228", - ["text"] = "#% increased Physical Damage", - ["type"] = "explicit", - }, - }, + ["max"] = 139, + ["min"] = 81, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1509134228", + ["text"] = "#% increased Physical Damage", + ["type"] = "explicit", + }, + }, ["1232_LocalIncreasedPhysicalDamageAndPoisonChance"] = { ["1HAxe"] = { - ["max"] = 139, - ["min"] = 81, - }, + ["max"] = 139, + ["min"] = 81, + }, ["1HMace"] = { - ["max"] = 139, - ["min"] = 81, - }, + ["max"] = 139, + ["min"] = 81, + }, ["1HSword"] = { - ["max"] = 139, - ["min"] = 81, - }, + ["max"] = 139, + ["min"] = 81, + }, ["1HWeapon"] = { - ["max"] = 139, - ["min"] = 81, - }, + ["max"] = 139, + ["min"] = 81, + }, ["2HAxe"] = { - ["max"] = 139, - ["min"] = 81, - }, + ["max"] = 139, + ["min"] = 81, + }, ["2HMace"] = { - ["max"] = 139, - ["min"] = 81, - }, + ["max"] = 139, + ["min"] = 81, + }, ["2HSword"] = { - ["max"] = 139, - ["min"] = 81, - }, + ["max"] = 139, + ["min"] = 81, + }, ["2HWeapon"] = { - ["max"] = 139, - ["min"] = 81, - }, + ["max"] = 139, + ["min"] = 81, + }, ["Bow"] = { - ["max"] = 139, - ["min"] = 81, - }, + ["max"] = 139, + ["min"] = 81, + }, ["Claw"] = { - ["max"] = 139, - ["min"] = 81, - }, + ["max"] = 139, + ["min"] = 81, + }, ["Dagger"] = { - ["max"] = 139, - ["min"] = 81, - }, + ["max"] = 139, + ["min"] = 81, + }, ["Staff"] = { - ["max"] = 139, - ["min"] = 81, - }, + ["max"] = 139, + ["min"] = 81, + }, ["Wand"] = { - ["max"] = 139, - ["min"] = 81, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1509134228", - ["text"] = "#% increased Physical Damage", - ["type"] = "explicit", - }, - }, + ["max"] = 139, + ["min"] = 81, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1509134228", + ["text"] = "#% increased Physical Damage", + ["type"] = "explicit", + }, + }, ["1232_LocalIncreasedPhysicalDamagePercentAndAccuracyRating"] = { ["1HAxe"] = { - ["max"] = 79, - ["min"] = 15, - }, + ["max"] = 79, + ["min"] = 15, + }, ["1HMace"] = { - ["max"] = 79, - ["min"] = 15, - }, + ["max"] = 79, + ["min"] = 15, + }, ["1HSword"] = { - ["max"] = 79, - ["min"] = 15, - }, + ["max"] = 79, + ["min"] = 15, + }, ["1HWeapon"] = { - ["max"] = 79, - ["min"] = 15, - }, + ["max"] = 79, + ["min"] = 15, + }, ["2HAxe"] = { - ["max"] = 79, - ["min"] = 15, - }, + ["max"] = 79, + ["min"] = 15, + }, ["2HMace"] = { - ["max"] = 79, - ["min"] = 15, - }, + ["max"] = 79, + ["min"] = 15, + }, ["2HSword"] = { - ["max"] = 79, - ["min"] = 15, - }, + ["max"] = 79, + ["min"] = 15, + }, ["2HWeapon"] = { - ["max"] = 79, - ["min"] = 15, - }, + ["max"] = 79, + ["min"] = 15, + }, ["Bow"] = { - ["max"] = 79, - ["min"] = 15, - }, + ["max"] = 79, + ["min"] = 15, + }, ["Claw"] = { - ["max"] = 79, - ["min"] = 15, - }, + ["max"] = 79, + ["min"] = 15, + }, ["Dagger"] = { - ["max"] = 79, - ["min"] = 15, - }, + ["max"] = 79, + ["min"] = 15, + }, ["Staff"] = { - ["max"] = 79, - ["min"] = 15, - }, + ["max"] = 79, + ["min"] = 15, + }, ["Wand"] = { - ["max"] = 79, - ["min"] = 15, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1509134228", - ["text"] = "#% increased Physical Damage", - ["type"] = "explicit", - }, - }, + ["max"] = 79, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1509134228", + ["text"] = "#% increased Physical Damage", + ["type"] = "explicit", + }, + }, ["1232_LocalIncreasedPhysicalDamagePercentAndArea"] = { ["1HMace"] = { - ["max"] = 69, - ["min"] = 25, - }, + ["max"] = 69, + ["min"] = 25, + }, ["1HWeapon"] = { - ["max"] = 69, - ["min"] = 25, - }, + ["max"] = 69, + ["min"] = 25, + }, ["2HMace"] = { - ["max"] = 69, - ["min"] = 25, - }, + ["max"] = 69, + ["min"] = 25, + }, ["2HWeapon"] = { - ["max"] = 69, - ["min"] = 25, - }, + ["max"] = 69, + ["min"] = 25, + }, ["Staff"] = { - ["max"] = 69, - ["min"] = 25, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1509134228", - ["text"] = "#% increased Physical Damage", - ["type"] = "explicit", - }, - }, + ["max"] = 69, + ["min"] = 25, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1509134228", + ["text"] = "#% increased Physical Damage", + ["type"] = "explicit", + }, + }, ["1232_LocalIncreasedPhysicalDamagePercentAndAttackSpeed"] = { ["1HAxe"] = { - ["max"] = 69, - ["min"] = 25, - }, + ["max"] = 69, + ["min"] = 25, + }, ["1HSword"] = { - ["max"] = 69, - ["min"] = 25, - }, + ["max"] = 69, + ["min"] = 25, + }, ["1HWeapon"] = { - ["max"] = 69, - ["min"] = 25, - }, + ["max"] = 69, + ["min"] = 25, + }, ["2HAxe"] = { - ["max"] = 69, - ["min"] = 25, - }, + ["max"] = 69, + ["min"] = 25, + }, ["2HSword"] = { - ["max"] = 69, - ["min"] = 25, - }, + ["max"] = 69, + ["min"] = 25, + }, ["2HWeapon"] = { - ["max"] = 69, - ["min"] = 25, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1509134228", - ["text"] = "#% increased Physical Damage", - ["type"] = "explicit", - }, - }, + ["max"] = 69, + ["min"] = 25, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1509134228", + ["text"] = "#% increased Physical Damage", + ["type"] = "explicit", + }, + }, ["1232_LocalIncreasedPhysicalDamagePercentAndCritChance"] = { ["1HWeapon"] = { - ["max"] = 69, - ["min"] = 25, - }, + ["max"] = 69, + ["min"] = 25, + }, ["Claw"] = { - ["max"] = 69, - ["min"] = 25, - }, + ["max"] = 69, + ["min"] = 25, + }, ["Dagger"] = { - ["max"] = 69, - ["min"] = 25, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1509134228", - ["text"] = "#% increased Physical Damage", - ["type"] = "explicit", - }, - }, + ["max"] = 69, + ["min"] = 25, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1509134228", + ["text"] = "#% increased Physical Damage", + ["type"] = "explicit", + }, + }, ["1232_LocalIncreasedPhysicalDamagePercentAndCritMulti"] = { ["1HWeapon"] = { - ["max"] = 69, - ["min"] = 25, - }, + ["max"] = 69, + ["min"] = 25, + }, ["Claw"] = { - ["max"] = 69, - ["min"] = 25, - }, + ["max"] = 69, + ["min"] = 25, + }, ["Dagger"] = { - ["max"] = 69, - ["min"] = 25, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1509134228", - ["text"] = "#% increased Physical Damage", - ["type"] = "explicit", - }, - }, + ["max"] = 69, + ["min"] = 25, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1509134228", + ["text"] = "#% increased Physical Damage", + ["type"] = "explicit", + }, + }, ["1232_LocalIncreasedPhysicalDamagePercentAndLeech"] = { ["1HAxe"] = { - ["max"] = 69, - ["min"] = 25, - }, + ["max"] = 69, + ["min"] = 25, + }, ["1HSword"] = { - ["max"] = 69, - ["min"] = 25, - }, + ["max"] = 69, + ["min"] = 25, + }, ["1HWeapon"] = { - ["max"] = 69, - ["min"] = 25, - }, + ["max"] = 69, + ["min"] = 25, + }, ["2HAxe"] = { - ["max"] = 69, - ["min"] = 25, - }, + ["max"] = 69, + ["min"] = 25, + }, ["2HSword"] = { - ["max"] = 69, - ["min"] = 25, - }, + ["max"] = 69, + ["min"] = 25, + }, ["2HWeapon"] = { - ["max"] = 69, - ["min"] = 25, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1509134228", - ["text"] = "#% increased Physical Damage", - ["type"] = "explicit", - }, - }, + ["max"] = 69, + ["min"] = 25, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1509134228", + ["text"] = "#% increased Physical Damage", + ["type"] = "explicit", + }, + }, ["1232_LocalIncreasedPhysicalDamagePercentAndPierce"] = { ["1HWeapon"] = { - ["max"] = 69, - ["min"] = 25, - }, + ["max"] = 69, + ["min"] = 25, + }, ["2HWeapon"] = { - ["max"] = 69, - ["min"] = 25, - }, + ["max"] = 69, + ["min"] = 25, + }, ["Bow"] = { - ["max"] = 69, - ["min"] = 25, - }, + ["max"] = 69, + ["min"] = 25, + }, ["Wand"] = { - ["max"] = 69, - ["min"] = 25, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1509134228", - ["text"] = "#% increased Physical Damage", - ["type"] = "explicit", - }, - }, + ["max"] = 69, + ["min"] = 25, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1509134228", + ["text"] = "#% increased Physical Damage", + ["type"] = "explicit", + }, + }, ["1232_LocalIncreasedPhysicalDamagePercentAndProjSpeed"] = { ["1HWeapon"] = { - ["max"] = 69, - ["min"] = 25, - }, + ["max"] = 69, + ["min"] = 25, + }, ["2HWeapon"] = { - ["max"] = 69, - ["min"] = 25, - }, + ["max"] = 69, + ["min"] = 25, + }, ["Bow"] = { - ["max"] = 69, - ["min"] = 25, - }, + ["max"] = 69, + ["min"] = 25, + }, ["Wand"] = { - ["max"] = 69, - ["min"] = 25, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1509134228", - ["text"] = "#% increased Physical Damage", - ["type"] = "explicit", - }, - }, + ["max"] = 69, + ["min"] = 25, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1509134228", + ["text"] = "#% increased Physical Damage", + ["type"] = "explicit", + }, + }, ["1232_LocalIncreasedPhysicalDamagePercentAndStun"] = { ["1HMace"] = { - ["max"] = 69, - ["min"] = 25, - }, + ["max"] = 69, + ["min"] = 25, + }, ["1HWeapon"] = { - ["max"] = 69, - ["min"] = 25, - }, + ["max"] = 69, + ["min"] = 25, + }, ["2HMace"] = { - ["max"] = 69, - ["min"] = 25, - }, + ["max"] = 69, + ["min"] = 25, + }, ["2HWeapon"] = { - ["max"] = 69, - ["min"] = 25, - }, + ["max"] = 69, + ["min"] = 25, + }, ["Staff"] = { - ["max"] = 69, - ["min"] = 25, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1509134228", - ["text"] = "#% increased Physical Damage", - ["type"] = "explicit", - }, - }, + ["max"] = 69, + ["min"] = 25, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1509134228", + ["text"] = "#% increased Physical Damage", + ["type"] = "explicit", + }, + }, ["1232_LocalIncreasedPhysicalDamagePercentFasterProjectiles"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1509134228", - ["text"] = "#% increased Physical Damage", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1509134228", + ["text"] = "#% increased Physical Damage", + ["type"] = "explicit", + }, + }, ["1232_LocalIncreasedPhysicalDamagePercentIronGrip"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1509134228", - ["text"] = "#% increased Physical Damage", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1509134228", + ["text"] = "#% increased Physical Damage", + ["type"] = "explicit", + }, + }, ["1232_LocalIncreasedPhysicalDamagePercentPowerChargeOnCrit"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1509134228", - ["text"] = "#% increased Physical Damage", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1509134228", + ["text"] = "#% increased Physical Damage", + ["type"] = "explicit", + }, + }, ["1232_LocalIncreasedPhysicalDamagePercentProjectileAttackDamage"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1509134228", - ["text"] = "#% increased Physical Damage", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1509134228", + ["text"] = "#% increased Physical Damage", + ["type"] = "explicit", + }, + }, ["1232_LocalPhysicalDamagePercent"] = { ["1HAxe"] = { - ["max"] = 179, - ["min"] = 40, - }, + ["max"] = 179, + ["min"] = 40, + }, ["1HMace"] = { - ["max"] = 179, - ["min"] = 40, - }, + ["max"] = 179, + ["min"] = 40, + }, ["1HSword"] = { - ["max"] = 179, - ["min"] = 40, - }, + ["max"] = 179, + ["min"] = 40, + }, ["1HWeapon"] = { - ["max"] = 179, - ["min"] = 40, - }, + ["max"] = 179, + ["min"] = 40, + }, ["2HAxe"] = { - ["max"] = 179, - ["min"] = 40, - }, + ["max"] = 179, + ["min"] = 40, + }, ["2HMace"] = { - ["max"] = 179, - ["min"] = 40, - }, + ["max"] = 179, + ["min"] = 40, + }, ["2HSword"] = { - ["max"] = 179, - ["min"] = 40, - }, + ["max"] = 179, + ["min"] = 40, + }, ["2HWeapon"] = { - ["max"] = 179, - ["min"] = 40, - }, + ["max"] = 179, + ["min"] = 40, + }, ["Bow"] = { - ["max"] = 179, - ["min"] = 40, - }, + ["max"] = 179, + ["min"] = 40, + }, ["Claw"] = { - ["max"] = 179, - ["min"] = 40, - }, + ["max"] = 179, + ["min"] = 40, + }, ["Dagger"] = { - ["max"] = 179, - ["min"] = 40, - }, + ["max"] = 179, + ["min"] = 40, + }, ["Staff"] = { - ["max"] = 179, - ["min"] = 40, - }, + ["max"] = 179, + ["min"] = 40, + }, ["Wand"] = { - ["max"] = 179, - ["min"] = 40, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1509134228", - ["text"] = "#% increased Physical Damage", - ["type"] = "explicit", - }, - }, + ["max"] = 179, + ["min"] = 40, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1509134228", + ["text"] = "#% increased Physical Damage", + ["type"] = "explicit", + }, + }, ["1232_LocalPhysicalDamagePercentAddedAsChaos"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1509134228", - ["text"] = "#% increased Physical Damage", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1509134228", + ["text"] = "#% increased Physical Damage", + ["type"] = "explicit", + }, + }, ["1232_LocalPhysicalDamagePercentAddedFireDamage"] = { ["1HAxe"] = { - ["max"] = 134, - ["min"] = 101, - }, + ["max"] = 134, + ["min"] = 101, + }, ["1HMace"] = { - ["max"] = 134, - ["min"] = 101, - }, + ["max"] = 134, + ["min"] = 101, + }, ["1HSword"] = { - ["max"] = 134, - ["min"] = 101, - }, + ["max"] = 134, + ["min"] = 101, + }, ["1HWeapon"] = { - ["max"] = 134, - ["min"] = 101, - }, + ["max"] = 134, + ["min"] = 101, + }, ["2HAxe"] = { - ["max"] = 134, - ["min"] = 101, - }, + ["max"] = 134, + ["min"] = 101, + }, ["2HMace"] = { - ["max"] = 134, - ["min"] = 101, - }, + ["max"] = 134, + ["min"] = 101, + }, ["2HSword"] = { - ["max"] = 134, - ["min"] = 101, - }, + ["max"] = 134, + ["min"] = 101, + }, ["2HWeapon"] = { - ["max"] = 134, - ["min"] = 101, - }, + ["max"] = 134, + ["min"] = 101, + }, ["Claw"] = { - ["max"] = 134, - ["min"] = 101, - }, + ["max"] = 134, + ["min"] = 101, + }, ["Dagger"] = { - ["max"] = 134, - ["min"] = 101, - }, + ["max"] = 134, + ["min"] = 101, + }, ["Wand"] = { - ["max"] = 134, - ["min"] = 101, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1509134228", - ["text"] = "#% increased Physical Damage", - ["type"] = "explicit", - }, - }, + ["max"] = 134, + ["min"] = 101, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1509134228", + ["text"] = "#% increased Physical Damage", + ["type"] = "explicit", + }, + }, ["1232_LocalPhysicalDamagePercentBrutality"] = { ["1HAxe"] = { - ["max"] = 134, - ["min"] = 101, - }, + ["max"] = 134, + ["min"] = 101, + }, ["1HMace"] = { - ["max"] = 134, - ["min"] = 101, - }, + ["max"] = 134, + ["min"] = 101, + }, ["1HSword"] = { - ["max"] = 134, - ["min"] = 101, - }, + ["max"] = 134, + ["min"] = 101, + }, ["1HWeapon"] = { - ["max"] = 134, - ["min"] = 101, - }, + ["max"] = 134, + ["min"] = 101, + }, ["2HAxe"] = { - ["max"] = 134, - ["min"] = 101, - }, + ["max"] = 134, + ["min"] = 101, + }, ["2HMace"] = { - ["max"] = 134, - ["min"] = 101, - }, + ["max"] = 134, + ["min"] = 101, + }, ["2HSword"] = { - ["max"] = 134, - ["min"] = 101, - }, + ["max"] = 134, + ["min"] = 101, + }, ["2HWeapon"] = { - ["max"] = 134, - ["min"] = 101, - }, + ["max"] = 134, + ["min"] = 101, + }, ["Claw"] = { - ["max"] = 134, - ["min"] = 101, - }, + ["max"] = 134, + ["min"] = 101, + }, ["Dagger"] = { - ["max"] = 134, - ["min"] = 101, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1509134228", - ["text"] = "#% increased Physical Damage", - ["type"] = "explicit", - }, - }, + ["max"] = 134, + ["min"] = 101, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1509134228", + ["text"] = "#% increased Physical Damage", + ["type"] = "explicit", + }, + }, ["1232_LocalPhysicalDamagePercentEnduranceChargeOnStun"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1509134228", - ["text"] = "#% increased Physical Damage", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1509134228", + ["text"] = "#% increased Physical Damage", + ["type"] = "explicit", + }, + }, ["1232_LocalPhysicalDamagePercentFortify"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1509134228", - ["text"] = "#% increased Physical Damage", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1509134228", + ["text"] = "#% increased Physical Damage", + ["type"] = "explicit", + }, + }, ["1232_LocalPhysicalDamagePercentMeleePhysicalDamage"] = { ["1HAxe"] = { - ["max"] = 134, - ["min"] = 101, - }, + ["max"] = 134, + ["min"] = 101, + }, ["1HMace"] = { - ["max"] = 134, - ["min"] = 101, - }, + ["max"] = 134, + ["min"] = 101, + }, ["1HSword"] = { - ["max"] = 134, - ["min"] = 101, - }, + ["max"] = 134, + ["min"] = 101, + }, ["1HWeapon"] = { - ["max"] = 134, - ["min"] = 101, - }, + ["max"] = 134, + ["min"] = 101, + }, ["2HAxe"] = { - ["max"] = 134, - ["min"] = 101, - }, + ["max"] = 134, + ["min"] = 101, + }, ["2HMace"] = { - ["max"] = 134, - ["min"] = 101, - }, + ["max"] = 134, + ["min"] = 101, + }, ["2HSword"] = { - ["max"] = 134, - ["min"] = 101, - }, + ["max"] = 134, + ["min"] = 101, + }, ["2HWeapon"] = { - ["max"] = 134, - ["min"] = 101, - }, + ["max"] = 134, + ["min"] = 101, + }, ["Claw"] = { - ["max"] = 134, - ["min"] = 101, - }, + ["max"] = 134, + ["min"] = 101, + }, ["Dagger"] = { - ["max"] = 134, - ["min"] = 101, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1509134228", - ["text"] = "#% increased Physical Damage", - ["type"] = "explicit", - }, - }, + ["max"] = 134, + ["min"] = 101, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1509134228", + ["text"] = "#% increased Physical Damage", + ["type"] = "explicit", + }, + }, ["1232_LocalPhysicalDamagePercentOnslaught"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1509134228", - ["text"] = "#% increased Physical Damage", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1509134228", + ["text"] = "#% increased Physical Damage", + ["type"] = "explicit", + }, + }, ["1232_LocalPhysicalDamagePercentRuthless"] = { ["1HAxe"] = { - ["max"] = 134, - ["min"] = 101, - }, + ["max"] = 134, + ["min"] = 101, + }, ["1HMace"] = { - ["max"] = 134, - ["min"] = 101, - }, + ["max"] = 134, + ["min"] = 101, + }, ["1HSword"] = { - ["max"] = 134, - ["min"] = 101, - }, + ["max"] = 134, + ["min"] = 101, + }, ["1HWeapon"] = { - ["max"] = 134, - ["min"] = 101, - }, + ["max"] = 134, + ["min"] = 101, + }, ["2HAxe"] = { - ["max"] = 134, - ["min"] = 101, - }, + ["max"] = 134, + ["min"] = 101, + }, ["2HMace"] = { - ["max"] = 134, - ["min"] = 101, - }, + ["max"] = 134, + ["min"] = 101, + }, ["2HSword"] = { - ["max"] = 134, - ["min"] = 101, - }, + ["max"] = 134, + ["min"] = 101, + }, ["2HWeapon"] = { - ["max"] = 134, - ["min"] = 101, - }, + ["max"] = 134, + ["min"] = 101, + }, ["Claw"] = { - ["max"] = 134, - ["min"] = 101, - }, + ["max"] = 134, + ["min"] = 101, + }, ["Dagger"] = { - ["max"] = 134, - ["min"] = 101, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1509134228", - ["text"] = "#% increased Physical Damage", - ["type"] = "explicit", - }, - }, + ["max"] = 134, + ["min"] = 101, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1509134228", + ["text"] = "#% increased Physical Damage", + ["type"] = "explicit", + }, + }, ["1234_MeleeDamage"] = { ["Gloves"] = { - ["max"] = 38, - ["min"] = 18, - }, + ["max"] = 38, + ["min"] = 18, + }, ["Ring"] = { - ["max"] = 25, - ["min"] = 15, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1002362373", - ["text"] = "#% increased Melee Damage", - ["type"] = "explicit", - }, - }, + ["max"] = 25, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1002362373", + ["text"] = "#% increased Melee Damage", + ["type"] = "explicit", + }, + }, ["1234_MeleeDamageAndMeleeRange"] = { ["Gloves"] = { - ["max"] = 20, - ["min"] = 9, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1002362373", - ["text"] = "#% increased Melee Damage", - ["type"] = "explicit", - }, - }, + ["max"] = 20, + ["min"] = 9, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1002362373", + ["text"] = "#% increased Melee Damage", + ["type"] = "explicit", + }, + }, ["1234_MeleeDamageForJewel"] = { ["AnyJewel"] = { - ["max"] = 12, - ["min"] = 10, - }, + ["max"] = 12, + ["min"] = 10, + }, ["BaseJewel"] = { - ["max"] = 12, - ["min"] = 10, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1002362373", - ["text"] = "#% increased Melee Damage", - ["type"] = "explicit", - }, - }, + ["max"] = 12, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1002362373", + ["text"] = "#% increased Melee Damage", + ["type"] = "explicit", + }, + }, ["1242_GlobalDamageOverTimeMultiplier"] = { ["1HAxe"] = { - ["max"] = 26, - ["min"] = 7, - }, + ["max"] = 26, + ["min"] = 7, + }, ["1HMace"] = { - ["max"] = 26, - ["min"] = 7, - }, + ["max"] = 26, + ["min"] = 7, + }, ["1HSword"] = { - ["max"] = 26, - ["min"] = 7, - }, + ["max"] = 26, + ["min"] = 7, + }, ["1HWeapon"] = { - ["max"] = 26, - ["min"] = 7, - }, + ["max"] = 26, + ["min"] = 7, + }, ["2HAxe"] = { - ["max"] = 45, - ["min"] = 16, - }, + ["max"] = 45, + ["min"] = 16, + }, ["2HMace"] = { - ["max"] = 45, - ["min"] = 16, - }, + ["max"] = 45, + ["min"] = 16, + }, ["2HSword"] = { - ["max"] = 45, - ["min"] = 16, - }, + ["max"] = 45, + ["min"] = 16, + }, ["2HWeapon"] = { - ["max"] = 45, - ["min"] = 7, - }, + ["max"] = 45, + ["min"] = 7, + }, ["Amulet"] = { - ["max"] = 26, - ["min"] = 7, - }, + ["max"] = 26, + ["min"] = 7, + }, ["AnyJewel"] = { - ["max"] = 6, - ["min"] = 4, - }, + ["max"] = 6, + ["min"] = 4, + }, ["BaseJewel"] = { - ["max"] = 6, - ["min"] = 4, - }, + ["max"] = 6, + ["min"] = 4, + }, ["Bow"] = { - ["max"] = 45, - ["min"] = 7, - }, + ["max"] = 45, + ["min"] = 7, + }, ["Claw"] = { - ["max"] = 26, - ["min"] = 7, - }, + ["max"] = 26, + ["min"] = 7, + }, ["Dagger"] = { - ["max"] = 26, - ["min"] = 7, - }, + ["max"] = 26, + ["min"] = 7, + }, ["Ring"] = { - ["max"] = 15, - ["min"] = 12, - }, + ["max"] = 15, + ["min"] = 12, + }, ["Staff"] = { - ["max"] = 45, - ["min"] = 16, - }, + ["max"] = 45, + ["min"] = 16, + }, ["Wand"] = { - ["max"] = 26, - ["min"] = 7, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3988349707", - ["text"] = "+#% to Damage over Time Multiplier", - ["type"] = "explicit", - }, - }, + ["max"] = 26, + ["min"] = 7, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3988349707", + ["text"] = "+#% to Damage over Time Multiplier", + ["type"] = "explicit", + }, + }, ["1246_GlobalDamageOverTimeMultiplierWithAttacks"] = { ["Quiver"] = { - ["max"] = 26, - ["min"] = 7, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_693959086", - ["text"] = "+#% to Damage over Time Multiplier with Attack Skills", - ["type"] = "explicit", - }, - }, + ["max"] = 26, + ["min"] = 7, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_693959086", + ["text"] = "+#% to Damage over Time Multiplier with Attack Skills", + ["type"] = "explicit", + }, + }, ["1247_PhysicalDamageOverTimeMultiplier"] = { ["1HAxe"] = { - ["max"] = 48, - ["min"] = 14, - }, + ["max"] = 48, + ["min"] = 14, + }, ["1HMace"] = { - ["max"] = 48, - ["min"] = 14, - }, + ["max"] = 48, + ["min"] = 14, + }, ["1HSword"] = { - ["max"] = 48, - ["min"] = 14, - }, + ["max"] = 48, + ["min"] = 14, + }, ["1HWeapon"] = { - ["max"] = 48, - ["min"] = 14, - }, + ["max"] = 48, + ["min"] = 14, + }, ["2HAxe"] = { - ["max"] = 48, - ["min"] = 24, - }, + ["max"] = 48, + ["min"] = 24, + }, ["2HMace"] = { - ["max"] = 48, - ["min"] = 24, - }, + ["max"] = 48, + ["min"] = 24, + }, ["2HSword"] = { - ["max"] = 48, - ["min"] = 24, - }, + ["max"] = 48, + ["min"] = 24, + }, ["2HWeapon"] = { - ["max"] = 75, - ["min"] = 24, - }, + ["max"] = 75, + ["min"] = 24, + }, ["Amulet"] = { - ["max"] = 25, - ["min"] = 11, - }, + ["max"] = 25, + ["min"] = 11, + }, ["AnyJewel"] = { - ["max"] = 8, - ["min"] = 6, - }, + ["max"] = 8, + ["min"] = 6, + }, ["BaseJewel"] = { - ["max"] = 8, - ["min"] = 6, - }, + ["max"] = 8, + ["min"] = 6, + }, ["Bow"] = { - ["max"] = 48, - ["min"] = 14, - }, + ["max"] = 48, + ["min"] = 14, + }, ["Claw"] = { - ["max"] = 48, - ["min"] = 14, - }, + ["max"] = 48, + ["min"] = 14, + }, ["Dagger"] = { - ["max"] = 48, - ["min"] = 14, - }, + ["max"] = 48, + ["min"] = 14, + }, ["Gloves"] = { - ["max"] = 25, - ["min"] = 11, - }, + ["max"] = 25, + ["min"] = 11, + }, ["Staff"] = { - ["max"] = 75, - ["min"] = 24, - }, + ["max"] = 75, + ["min"] = 24, + }, ["Wand"] = { - ["max"] = 48, - ["min"] = 14, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1314617696", - ["text"] = "+#% to Physical Damage over Time Multiplier", - ["type"] = "explicit", - }, - }, + ["max"] = 48, + ["min"] = 14, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1314617696", + ["text"] = "+#% to Physical Damage over Time Multiplier", + ["type"] = "explicit", + }, + }, ["1250_PhysicalDamageOverTimeMultiplierWithAttacks"] = { ["Quiver"] = { - ["max"] = 25, - ["min"] = 16, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_709768359", - ["text"] = "+#% to Physical Damage over Time Multiplier with Attack Skills", - ["type"] = "explicit", - }, - }, + ["max"] = 25, + ["min"] = 16, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_709768359", + ["text"] = "+#% to Physical Damage over Time Multiplier with Attack Skills", + ["type"] = "explicit", + }, + }, ["1251_FireDamageOverTimeMultiplier"] = { ["1HAxe"] = { - ["max"] = 28, - ["min"] = 14, - }, + ["max"] = 28, + ["min"] = 14, + }, ["1HMace"] = { - ["max"] = 38, - ["min"] = 14, - }, + ["max"] = 38, + ["min"] = 14, + }, ["1HSword"] = { - ["max"] = 28, - ["min"] = 14, - }, + ["max"] = 28, + ["min"] = 14, + }, ["1HWeapon"] = { - ["max"] = 38, - ["min"] = 14, - }, + ["max"] = 38, + ["min"] = 14, + }, ["2HAxe"] = { - ["max"] = 48, - ["min"] = 24, - }, + ["max"] = 48, + ["min"] = 24, + }, ["2HMace"] = { - ["max"] = 48, - ["min"] = 24, - }, + ["max"] = 48, + ["min"] = 24, + }, ["2HSword"] = { - ["max"] = 48, - ["min"] = 24, - }, + ["max"] = 48, + ["min"] = 24, + }, ["2HWeapon"] = { - ["max"] = 75, - ["min"] = 24, - }, + ["max"] = 75, + ["min"] = 24, + }, ["Amulet"] = { - ["max"] = 25, - ["min"] = 11, - }, + ["max"] = 25, + ["min"] = 11, + }, ["AnyJewel"] = { - ["max"] = 8, - ["min"] = 6, - }, + ["max"] = 8, + ["min"] = 6, + }, ["BaseJewel"] = { - ["max"] = 8, - ["min"] = 6, - }, + ["max"] = 8, + ["min"] = 6, + }, ["Bow"] = { - ["max"] = 48, - ["min"] = 14, - }, + ["max"] = 48, + ["min"] = 14, + }, ["Claw"] = { - ["max"] = 28, - ["min"] = 14, - }, + ["max"] = 28, + ["min"] = 14, + }, ["Dagger"] = { - ["max"] = 28, - ["min"] = 14, - }, + ["max"] = 28, + ["min"] = 14, + }, ["Gloves"] = { - ["max"] = 25, - ["min"] = 11, - }, + ["max"] = 25, + ["min"] = 11, + }, ["Staff"] = { - ["max"] = 75, - ["min"] = 24, - }, + ["max"] = 75, + ["min"] = 24, + }, ["Wand"] = { - ["max"] = 38, - ["min"] = 14, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3382807662", - ["text"] = "+#% to Fire Damage over Time Multiplier", - ["type"] = "explicit", - }, - }, + ["max"] = 38, + ["min"] = 14, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3382807662", + ["text"] = "+#% to Fire Damage over Time Multiplier", + ["type"] = "explicit", + }, + }, ["1253_FireDamageOverTimeMultiplierWithAttacks"] = { ["Quiver"] = { - ["max"] = 25, - ["min"] = 16, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2139660169", - ["text"] = "+#% to Fire Damage over Time Multiplier with Attack Skills", - ["type"] = "explicit", - }, - }, + ["max"] = 25, + ["min"] = 16, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2139660169", + ["text"] = "+#% to Fire Damage over Time Multiplier with Attack Skills", + ["type"] = "explicit", + }, + }, ["1256_ColdDamageOverTimeMultiplier"] = { ["1HAxe"] = { - ["max"] = 28, - ["min"] = 14, - }, + ["max"] = 28, + ["min"] = 14, + }, ["1HMace"] = { - ["max"] = 38, - ["min"] = 14, - }, + ["max"] = 38, + ["min"] = 14, + }, ["1HSword"] = { - ["max"] = 28, - ["min"] = 14, - }, + ["max"] = 28, + ["min"] = 14, + }, ["1HWeapon"] = { - ["max"] = 38, - ["min"] = 14, - }, + ["max"] = 38, + ["min"] = 14, + }, ["2HAxe"] = { - ["max"] = 48, - ["min"] = 24, - }, + ["max"] = 48, + ["min"] = 24, + }, ["2HMace"] = { - ["max"] = 48, - ["min"] = 24, - }, + ["max"] = 48, + ["min"] = 24, + }, ["2HSword"] = { - ["max"] = 48, - ["min"] = 24, - }, + ["max"] = 48, + ["min"] = 24, + }, ["2HWeapon"] = { - ["max"] = 75, - ["min"] = 24, - }, + ["max"] = 75, + ["min"] = 24, + }, ["Amulet"] = { - ["max"] = 25, - ["min"] = 11, - }, + ["max"] = 25, + ["min"] = 11, + }, ["AnyJewel"] = { - ["max"] = 8, - ["min"] = 6, - }, + ["max"] = 8, + ["min"] = 6, + }, ["BaseJewel"] = { - ["max"] = 8, - ["min"] = 6, - }, + ["max"] = 8, + ["min"] = 6, + }, ["Bow"] = { - ["max"] = 48, - ["min"] = 14, - }, + ["max"] = 48, + ["min"] = 14, + }, ["Claw"] = { - ["max"] = 28, - ["min"] = 14, - }, + ["max"] = 28, + ["min"] = 14, + }, ["Dagger"] = { - ["max"] = 38, - ["min"] = 14, - }, + ["max"] = 38, + ["min"] = 14, + }, ["Gloves"] = { - ["max"] = 25, - ["min"] = 11, - }, + ["max"] = 25, + ["min"] = 11, + }, ["Staff"] = { - ["max"] = 75, - ["min"] = 24, - }, + ["max"] = 75, + ["min"] = 24, + }, ["Wand"] = { - ["max"] = 38, - ["min"] = 14, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1950806024", - ["text"] = "+#% to Cold Damage over Time Multiplier", - ["type"] = "explicit", - }, - }, + ["max"] = 38, + ["min"] = 14, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1950806024", + ["text"] = "+#% to Cold Damage over Time Multiplier", + ["type"] = "explicit", + }, + }, ["1259_ChaosDamageOverTimeMultiplier"] = { ["1HAxe"] = { - ["max"] = 48, - ["min"] = 14, - }, + ["max"] = 48, + ["min"] = 14, + }, ["1HMace"] = { - ["max"] = 48, - ["min"] = 14, - }, + ["max"] = 48, + ["min"] = 14, + }, ["1HSword"] = { - ["max"] = 48, - ["min"] = 14, - }, + ["max"] = 48, + ["min"] = 14, + }, ["1HWeapon"] = { - ["max"] = 48, - ["min"] = 14, - }, + ["max"] = 48, + ["min"] = 14, + }, ["2HAxe"] = { - ["max"] = 48, - ["min"] = 24, - }, + ["max"] = 48, + ["min"] = 24, + }, ["2HMace"] = { - ["max"] = 48, - ["min"] = 24, - }, + ["max"] = 48, + ["min"] = 24, + }, ["2HSword"] = { - ["max"] = 48, - ["min"] = 24, - }, + ["max"] = 48, + ["min"] = 24, + }, ["2HWeapon"] = { - ["max"] = 75, - ["min"] = 24, - }, + ["max"] = 75, + ["min"] = 24, + }, ["Amulet"] = { - ["max"] = 25, - ["min"] = 11, - }, + ["max"] = 25, + ["min"] = 11, + }, ["AnyJewel"] = { - ["max"] = 8, - ["min"] = 6, - }, + ["max"] = 8, + ["min"] = 6, + }, ["BaseJewel"] = { - ["max"] = 8, - ["min"] = 6, - }, + ["max"] = 8, + ["min"] = 6, + }, ["Bow"] = { - ["max"] = 48, - ["min"] = 14, - }, + ["max"] = 48, + ["min"] = 14, + }, ["Claw"] = { - ["max"] = 48, - ["min"] = 14, - }, + ["max"] = 48, + ["min"] = 14, + }, ["Dagger"] = { - ["max"] = 48, - ["min"] = 14, - }, + ["max"] = 48, + ["min"] = 14, + }, ["Gloves"] = { - ["max"] = 25, - ["min"] = 11, - }, + ["max"] = 25, + ["min"] = 11, + }, ["Staff"] = { - ["max"] = 75, - ["min"] = 24, - }, + ["max"] = 75, + ["min"] = 24, + }, ["Wand"] = { - ["max"] = 48, - ["min"] = 14, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4055307827", - ["text"] = "+#% to Chaos Damage over Time Multiplier", - ["type"] = "explicit", - }, - }, + ["max"] = 48, + ["min"] = 14, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4055307827", + ["text"] = "+#% to Chaos Damage over Time Multiplier", + ["type"] = "explicit", + }, + }, ["1261_ChaosDamageOverTimeMultiplierWithAttacks"] = { ["Quiver"] = { - ["max"] = 25, - ["min"] = 16, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3913282911", - ["text"] = "+#% to Chaos Damage over Time Multiplier with Attack Skills", - ["type"] = "explicit", - }, - }, + ["max"] = 25, + ["min"] = 16, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3913282911", + ["text"] = "+#% to Chaos Damage over Time Multiplier with Attack Skills", + ["type"] = "explicit", + }, + }, ["1264_LocalPoisonDamageOverTimeMultiplier"] = { ["1HAxe"] = { - ["max"] = 59, - ["min"] = 37, - }, + ["max"] = 59, + ["min"] = 37, + }, ["1HMace"] = { - ["max"] = 59, - ["min"] = 37, - }, + ["max"] = 59, + ["min"] = 37, + }, ["1HSword"] = { - ["max"] = 59, - ["min"] = 37, - }, + ["max"] = 59, + ["min"] = 37, + }, ["1HWeapon"] = { - ["max"] = 59, - ["min"] = 37, - }, + ["max"] = 59, + ["min"] = 37, + }, ["2HAxe"] = { - ["max"] = 59, - ["min"] = 37, - }, + ["max"] = 59, + ["min"] = 37, + }, ["2HMace"] = { - ["max"] = 59, - ["min"] = 37, - }, + ["max"] = 59, + ["min"] = 37, + }, ["2HSword"] = { - ["max"] = 59, - ["min"] = 37, - }, + ["max"] = 59, + ["min"] = 37, + }, ["2HWeapon"] = { - ["max"] = 59, - ["min"] = 37, - }, + ["max"] = 59, + ["min"] = 37, + }, ["Bow"] = { - ["max"] = 59, - ["min"] = 37, - }, + ["max"] = 59, + ["min"] = 37, + }, ["Claw"] = { - ["max"] = 59, - ["min"] = 37, - }, + ["max"] = 59, + ["min"] = 37, + }, ["Dagger"] = { - ["max"] = 59, - ["min"] = 37, - }, + ["max"] = 59, + ["min"] = 37, + }, ["Staff"] = { - ["max"] = 59, - ["min"] = 37, - }, + ["max"] = 59, + ["min"] = 37, + }, ["Wand"] = { - ["max"] = 59, - ["min"] = 37, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4096656097", - ["text"] = "+#% to Damage over Time Multiplier for Poison inflicted with this Weapon", - ["type"] = "explicit", - }, - }, + ["max"] = 59, + ["min"] = 37, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4096656097", + ["text"] = "+#% to Damage over Time Multiplier for Poison inflicted with this Weapon", + ["type"] = "explicit", + }, + }, ["1265_GlobalAddedPhysicalDamage"] = { ["Gloves"] = { - ["max"] = 9.5, - ["min"] = 7.5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_960081730", - ["text"] = "Adds # to # Physical Damage", - ["type"] = "explicit", - }, - }, + ["max"] = 9.5, + ["min"] = 7.5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_960081730", + ["text"] = "Adds # to # Physical Damage", + ["type"] = "explicit", + }, + }, ["1266_AddedPhysicalSuffix"] = { ["AbyssJewel"] = { - ["max"] = 6, - ["min"] = 2, - }, + ["max"] = 6, + ["min"] = 2, + }, ["AnyJewel"] = { - ["max"] = 6, - ["min"] = 2, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3032590688", - ["text"] = "Adds # to # Physical Damage to Attacks", - ["type"] = "explicit", - }, - }, + ["max"] = 6, + ["min"] = 2, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3032590688", + ["text"] = "Adds # to # Physical Damage to Attacks", + ["type"] = "explicit", + }, + }, ["1266_PhysicalDamage"] = { ["Amulet"] = { - ["max"] = 24, - ["min"] = 1.5, - }, + ["max"] = 24, + ["min"] = 1.5, + }, ["Gloves"] = { - ["max"] = 9, - ["min"] = 1.5, - }, + ["max"] = 9, + ["min"] = 1.5, + }, ["Quiver"] = { - ["max"] = 31, - ["min"] = 1.5, - }, + ["max"] = 31, + ["min"] = 1.5, + }, ["Ring"] = { - ["max"] = 14, - ["min"] = 1.5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3032590688", - ["text"] = "Adds # to # Physical Damage to Attacks", - ["type"] = "explicit", - }, - }, + ["max"] = 14, + ["min"] = 1.5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3032590688", + ["text"] = "Adds # to # Physical Damage to Attacks", + ["type"] = "explicit", + }, + }, ["1267_SelfPhysicalDamageTaken"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_2093523445", - ["text"] = "Adds # to # Physical Damage to Attacks against you", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_2093523445", + ["text"] = "Adds # to # Physical Damage to Attacks against you", + ["type"] = "explicit", + }, + }, ["1276_LocalAddedPhysicalDamageAndCausesBleeding"] = { ["1HAxe"] = { - ["max"] = 12.5, - ["min"] = 8.5, - }, + ["max"] = 12.5, + ["min"] = 8.5, + }, ["1HMace"] = { - ["max"] = 12.5, - ["min"] = 8.5, - }, + ["max"] = 12.5, + ["min"] = 8.5, + }, ["1HSword"] = { - ["max"] = 12.5, - ["min"] = 8.5, - }, + ["max"] = 12.5, + ["min"] = 8.5, + }, ["1HWeapon"] = { - ["max"] = 12.5, - ["min"] = 8.5, - }, + ["max"] = 12.5, + ["min"] = 8.5, + }, ["2HAxe"] = { - ["max"] = 18, - ["min"] = 13.5, - }, + ["max"] = 18, + ["min"] = 13.5, + }, ["2HMace"] = { - ["max"] = 18, - ["min"] = 13.5, - }, + ["max"] = 18, + ["min"] = 13.5, + }, ["2HSword"] = { - ["max"] = 18, - ["min"] = 13.5, - }, + ["max"] = 18, + ["min"] = 13.5, + }, ["2HWeapon"] = { - ["max"] = 18, - ["min"] = 13.5, - }, + ["max"] = 18, + ["min"] = 13.5, + }, ["Bow"] = { - ["max"] = 18, - ["min"] = 13.5, - }, + ["max"] = 18, + ["min"] = 13.5, + }, ["Claw"] = { - ["max"] = 12.5, - ["min"] = 8.5, - }, + ["max"] = 12.5, + ["min"] = 8.5, + }, ["Dagger"] = { - ["max"] = 12.5, - ["min"] = 8.5, - }, + ["max"] = 12.5, + ["min"] = 8.5, + }, ["Staff"] = { - ["max"] = 18, - ["min"] = 13.5, - }, + ["max"] = 18, + ["min"] = 13.5, + }, ["Wand"] = { - ["max"] = 12.5, - ["min"] = 8.5, - }, - ["sign"] = "", - ["specialCaseData"] = { - ["overrideModLine"] = "Adds # to # Physical Damage", - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1940865751", - ["text"] = "Adds # to # Physical Damage (Local)", - ["type"] = "explicit", - }, - }, + ["max"] = 12.5, + ["min"] = 8.5, + }, + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "Adds # to # Physical Damage", + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1940865751", + ["text"] = "Adds # to # Physical Damage (Local)", + ["type"] = "explicit", + }, + }, ["1276_LocalPhysicalDamage"] = { ["1HAxe"] = { - ["max"] = 40.5, - ["min"] = 1.5, - }, + ["max"] = 40.5, + ["min"] = 1.5, + }, ["1HMace"] = { - ["max"] = 40.5, - ["min"] = 1.5, - }, + ["max"] = 40.5, + ["min"] = 1.5, + }, ["1HSword"] = { - ["max"] = 40.5, - ["min"] = 1.5, - }, + ["max"] = 40.5, + ["min"] = 1.5, + }, ["1HWeapon"] = { - ["max"] = 40.5, - ["min"] = 1.5, - }, + ["max"] = 40.5, + ["min"] = 1.5, + }, ["Claw"] = { - ["max"] = 40.5, - ["min"] = 1.5, - }, + ["max"] = 40.5, + ["min"] = 1.5, + }, ["Dagger"] = { - ["max"] = 40.5, - ["min"] = 1.5, - }, + ["max"] = 40.5, + ["min"] = 1.5, + }, ["Wand"] = { - ["max"] = 40.5, - ["min"] = 1.5, - }, - ["sign"] = "", - ["specialCaseData"] = { - ["overrideModLine"] = "Adds # to # Physical Damage", - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1940865751", - ["text"] = "Adds # to # Physical Damage (Local)", - ["type"] = "explicit", - }, - }, + ["max"] = 40.5, + ["min"] = 1.5, + }, + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "Adds # to # Physical Damage", + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1940865751", + ["text"] = "Adds # to # Physical Damage (Local)", + ["type"] = "explicit", + }, + }, ["1276_LocalPhysicalDamageTwoHanded"] = { ["2HAxe"] = { - ["max"] = 65.5, - ["min"] = 3, - }, + ["max"] = 65.5, + ["min"] = 3, + }, ["2HMace"] = { - ["max"] = 65.5, - ["min"] = 3, - }, + ["max"] = 65.5, + ["min"] = 3, + }, ["2HSword"] = { - ["max"] = 65.5, - ["min"] = 3, - }, + ["max"] = 65.5, + ["min"] = 3, + }, ["2HWeapon"] = { - ["max"] = 65.5, - ["min"] = 3, - }, + ["max"] = 65.5, + ["min"] = 3, + }, ["Bow"] = { - ["max"] = 65.5, - ["min"] = 3, - }, + ["max"] = 65.5, + ["min"] = 3, + }, ["Staff"] = { - ["max"] = 65.5, - ["min"] = 3, - }, - ["sign"] = "", - ["specialCaseData"] = { - ["overrideModLine"] = "Adds # to # Physical Damage", - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1940865751", - ["text"] = "Adds # to # Physical Damage (Local)", - ["type"] = "explicit", - }, - }, + ["max"] = 65.5, + ["min"] = 3, + }, + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "Adds # to # Physical Damage", + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1940865751", + ["text"] = "Adds # to # Physical Damage (Local)", + ["type"] = "explicit", + }, + }, ["1278_IncreasedDualWieldlingDamageForJewel"] = { ["AnyJewel"] = { - ["max"] = 14, - ["min"] = 12, - }, + ["max"] = 14, + ["min"] = 12, + }, ["BaseJewel"] = { - ["max"] = 14, - ["min"] = 12, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_444174528", - ["text"] = "#% increased Attack Damage while Dual Wielding", - ["type"] = "explicit", - }, - }, + ["max"] = 14, + ["min"] = 12, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_444174528", + ["text"] = "#% increased Attack Damage while Dual Wielding", + ["type"] = "explicit", + }, + }, ["1279_DualWieldingPhysicalDamage"] = { ["1HAxe"] = { - ["max"] = 37, - ["min"] = 23, - }, + ["max"] = 37, + ["min"] = 23, + }, ["1HMace"] = { - ["max"] = 37, - ["min"] = 23, - }, + ["max"] = 37, + ["min"] = 23, + }, ["1HSword"] = { - ["max"] = 37, - ["min"] = 23, - }, + ["max"] = 37, + ["min"] = 23, + }, ["1HWeapon"] = { - ["max"] = 37, - ["min"] = 23, - }, + ["max"] = 37, + ["min"] = 23, + }, ["2HAxe"] = { - ["max"] = 37, - ["min"] = 23, - }, + ["max"] = 37, + ["min"] = 23, + }, ["2HMace"] = { - ["max"] = 37, - ["min"] = 23, - }, + ["max"] = 37, + ["min"] = 23, + }, ["2HSword"] = { - ["max"] = 37, - ["min"] = 23, - }, + ["max"] = 37, + ["min"] = 23, + }, ["2HWeapon"] = { - ["max"] = 37, - ["min"] = 23, - }, + ["max"] = 37, + ["min"] = 23, + }, ["Claw"] = { - ["max"] = 37, - ["min"] = 23, - }, + ["max"] = 37, + ["min"] = 23, + }, ["Dagger"] = { - ["max"] = 37, - ["min"] = 23, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1274831335", - ["text"] = "#% increased Physical Attack Damage while Dual Wielding", - ["type"] = "explicit", - }, - }, + ["max"] = 37, + ["min"] = 23, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1274831335", + ["text"] = "#% increased Physical Attack Damage while Dual Wielding", + ["type"] = "explicit", + }, + }, ["1301_IncreasedAxeDamageForJewel"] = { ["AnyJewel"] = { - ["max"] = 16, - ["min"] = 14, - }, + ["max"] = 16, + ["min"] = 14, + }, ["BaseJewel"] = { - ["max"] = 16, - ["min"] = 14, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3314142259", - ["text"] = "#% increased Damage with Axes", - ["type"] = "explicit", - }, - }, + ["max"] = 16, + ["min"] = 14, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3314142259", + ["text"] = "#% increased Damage with Axes", + ["type"] = "explicit", + }, + }, ["1308_IncreasedStaffDamageForJewel"] = { ["AnyJewel"] = { - ["max"] = 16, - ["min"] = 14, - }, + ["max"] = 16, + ["min"] = 14, + }, ["BaseJewel"] = { - ["max"] = 16, - ["min"] = 14, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4087089130", - ["text"] = "#% increased Damage with Staves", - ["type"] = "explicit", - }, - }, + ["max"] = 16, + ["min"] = 14, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4087089130", + ["text"] = "#% increased Damage with Staves", + ["type"] = "explicit", + }, + }, ["1313_IncreasedClawDamageForJewel"] = { ["AnyJewel"] = { - ["max"] = 16, - ["min"] = 14, - }, + ["max"] = 16, + ["min"] = 14, + }, ["BaseJewel"] = { - ["max"] = 16, - ["min"] = 14, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1069260037", - ["text"] = "#% increased Damage with Claws", - ["type"] = "explicit", - }, - }, + ["max"] = 16, + ["min"] = 14, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1069260037", + ["text"] = "#% increased Damage with Claws", + ["type"] = "explicit", + }, + }, ["1319_IncreasedDaggerDamageForJewel"] = { ["AnyJewel"] = { - ["max"] = 16, - ["min"] = 14, - }, + ["max"] = 16, + ["min"] = 14, + }, ["BaseJewel"] = { - ["max"] = 16, - ["min"] = 14, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3586984690", - ["text"] = "#% increased Damage with Daggers", - ["type"] = "explicit", - }, - }, + ["max"] = 16, + ["min"] = 14, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3586984690", + ["text"] = "#% increased Damage with Daggers", + ["type"] = "explicit", + }, + }, ["1325_IncreasedMaceDamageForJewel"] = { ["AnyJewel"] = { - ["max"] = 16, - ["min"] = 14, - }, + ["max"] = 16, + ["min"] = 14, + }, ["BaseJewel"] = { - ["max"] = 16, - ["min"] = 14, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1181419800", - ["text"] = "#% increased Damage with Maces or Sceptres", - ["type"] = "explicit", - }, - }, + ["max"] = 16, + ["min"] = 14, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1181419800", + ["text"] = "#% increased Damage with Maces or Sceptres", + ["type"] = "explicit", + }, + }, ["1331_IncreasedBowDamageForJewel"] = { ["AnyJewel"] = { - ["max"] = 16, - ["min"] = 14, - }, + ["max"] = 16, + ["min"] = 14, + }, ["BaseJewel"] = { - ["max"] = 16, - ["min"] = 14, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4188894176", - ["text"] = "#% increased Damage with Bows", - ["type"] = "explicit", - }, - }, + ["max"] = 16, + ["min"] = 14, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4188894176", + ["text"] = "#% increased Damage with Bows", + ["type"] = "explicit", + }, + }, ["1339_IncreasedSwordDamageForJewel"] = { ["AnyJewel"] = { - ["max"] = 16, - ["min"] = 14, - }, + ["max"] = 16, + ["min"] = 14, + }, ["BaseJewel"] = { - ["max"] = 16, - ["min"] = 14, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_83050999", - ["text"] = "#% increased Damage with Swords", - ["type"] = "explicit", - }, - }, + ["max"] = 16, + ["min"] = 14, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_83050999", + ["text"] = "#% increased Damage with Swords", + ["type"] = "explicit", + }, + }, ["1357_FireDamageAndChanceToIgnite"] = { ["1HAxe"] = { - ["max"] = 109, - ["min"] = 36, - }, + ["max"] = 109, + ["min"] = 36, + }, ["1HMace"] = { - ["max"] = 109, - ["min"] = 36, - }, + ["max"] = 109, + ["min"] = 36, + }, ["1HSword"] = { - ["max"] = 109, - ["min"] = 36, - }, + ["max"] = 109, + ["min"] = 36, + }, ["1HWeapon"] = { - ["max"] = 109, - ["min"] = 36, - }, + ["max"] = 109, + ["min"] = 36, + }, ["2HAxe"] = { - ["max"] = 109, - ["min"] = 60, - }, + ["max"] = 109, + ["min"] = 60, + }, ["2HMace"] = { - ["max"] = 109, - ["min"] = 60, - }, + ["max"] = 109, + ["min"] = 60, + }, ["2HSword"] = { - ["max"] = 109, - ["min"] = 60, - }, + ["max"] = 109, + ["min"] = 60, + }, ["2HWeapon"] = { - ["max"] = 109, - ["min"] = 60, - }, + ["max"] = 109, + ["min"] = 60, + }, ["Bow"] = { - ["max"] = 109, - ["min"] = 70, - }, + ["max"] = 109, + ["min"] = 70, + }, ["Claw"] = { - ["max"] = 109, - ["min"] = 36, - }, + ["max"] = 109, + ["min"] = 36, + }, ["Dagger"] = { - ["max"] = 109, - ["min"] = 36, - }, + ["max"] = 109, + ["min"] = 36, + }, ["Staff"] = { - ["max"] = 109, - ["min"] = 60, - }, + ["max"] = 109, + ["min"] = 60, + }, ["Wand"] = { - ["max"] = 109, - ["min"] = 36, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3962278098", - ["text"] = "#% increased Fire Damage", - ["type"] = "explicit", - }, - }, + ["max"] = 109, + ["min"] = 36, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3962278098", + ["text"] = "#% increased Fire Damage", + ["type"] = "explicit", + }, + }, ["1357_FireDamageForJewel"] = { ["AnyJewel"] = { - ["max"] = 16, - ["min"] = 14, - }, + ["max"] = 16, + ["min"] = 14, + }, ["BaseJewel"] = { - ["max"] = 16, - ["min"] = 14, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3962278098", - ["text"] = "#% increased Fire Damage", - ["type"] = "explicit", - }, - }, + ["max"] = 16, + ["min"] = 14, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3962278098", + ["text"] = "#% increased Fire Damage", + ["type"] = "explicit", + }, + }, ["1357_FireDamagePercentage"] = { ["1HAxe"] = { - ["max"] = 16, - ["min"] = 9, - }, + ["max"] = 16, + ["min"] = 9, + }, ["1HMace"] = { - ["max"] = 30, - ["min"] = 9, - }, + ["max"] = 30, + ["min"] = 9, + }, ["1HSword"] = { - ["max"] = 16, - ["min"] = 9, - }, + ["max"] = 16, + ["min"] = 9, + }, ["1HWeapon"] = { - ["max"] = 30, - ["min"] = 9, - }, + ["max"] = 30, + ["min"] = 9, + }, ["2HAxe"] = { - ["max"] = 16, - ["min"] = 9, - }, + ["max"] = 16, + ["min"] = 9, + }, ["2HMace"] = { - ["max"] = 16, - ["min"] = 9, - }, + ["max"] = 16, + ["min"] = 9, + }, ["2HSword"] = { - ["max"] = 16, - ["min"] = 9, - }, + ["max"] = 16, + ["min"] = 9, + }, ["2HWeapon"] = { - ["max"] = 50, - ["min"] = 9, - }, + ["max"] = 50, + ["min"] = 9, + }, ["Amulet"] = { - ["max"] = 34, - ["min"] = 9, - }, + ["max"] = 34, + ["min"] = 9, + }, ["Bow"] = { - ["max"] = 16, - ["min"] = 9, - }, + ["max"] = 16, + ["min"] = 9, + }, ["Claw"] = { - ["max"] = 16, - ["min"] = 9, - }, + ["max"] = 16, + ["min"] = 9, + }, ["Dagger"] = { - ["max"] = 16, - ["min"] = 9, - }, + ["max"] = 16, + ["min"] = 9, + }, ["Ring"] = { - ["max"] = 34, - ["min"] = 9, - }, + ["max"] = 34, + ["min"] = 9, + }, ["Staff"] = { - ["max"] = 50, - ["min"] = 9, - }, + ["max"] = 50, + ["min"] = 9, + }, ["Wand"] = { - ["max"] = 30, - ["min"] = 9, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3962278098", - ["text"] = "#% increased Fire Damage", - ["type"] = "explicit", - }, - }, + ["max"] = 30, + ["min"] = 9, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3962278098", + ["text"] = "#% increased Fire Damage", + ["type"] = "explicit", + }, + }, ["1357_FireDamagePercentagePrefix"] = { ["Amulet"] = { - ["max"] = 30, - ["min"] = 20, - }, + ["max"] = 30, + ["min"] = 20, + }, ["Belt"] = { - ["max"] = 30, - ["min"] = 16, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3962278098", - ["text"] = "#% increased Fire Damage", - ["type"] = "explicit", - }, - }, + ["max"] = 30, + ["min"] = 16, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3962278098", + ["text"] = "#% increased Fire Damage", + ["type"] = "explicit", + }, + }, ["1357_FireDamagePrefixFirePenetration"] = { ["1HMace"] = { - ["max"] = 60, - ["min"] = 45, - }, + ["max"] = 60, + ["min"] = 45, + }, ["1HWeapon"] = { - ["max"] = 60, - ["min"] = 45, - }, + ["max"] = 60, + ["min"] = 45, + }, ["Wand"] = { - ["max"] = 60, - ["min"] = 45, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3962278098", - ["text"] = "#% increased Fire Damage", - ["type"] = "explicit", - }, - }, + ["max"] = 60, + ["min"] = 45, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3962278098", + ["text"] = "#% increased Fire Damage", + ["type"] = "explicit", + }, + }, ["1357_FireDamageWeaponPrefix"] = { ["1HAxe"] = { - ["max"] = 54, - ["min"] = 25, - }, + ["max"] = 54, + ["min"] = 25, + }, ["1HMace"] = { - ["max"] = 109, - ["min"] = 10, - }, + ["max"] = 109, + ["min"] = 10, + }, ["1HSword"] = { - ["max"] = 54, - ["min"] = 25, - }, + ["max"] = 54, + ["min"] = 25, + }, ["1HWeapon"] = { - ["max"] = 109, - ["min"] = 10, - }, + ["max"] = 109, + ["min"] = 10, + }, ["Claw"] = { - ["max"] = 54, - ["min"] = 25, - }, + ["max"] = 54, + ["min"] = 25, + }, ["Dagger"] = { - ["max"] = 54, - ["min"] = 25, - }, + ["max"] = 54, + ["min"] = 25, + }, ["Shield"] = { - ["max"] = 109, - ["min"] = 10, - }, + ["max"] = 109, + ["min"] = 10, + }, ["Wand"] = { - ["max"] = 109, - ["min"] = 10, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3962278098", - ["text"] = "#% increased Fire Damage", - ["type"] = "explicit", - }, - }, + ["max"] = 109, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3962278098", + ["text"] = "#% increased Fire Damage", + ["type"] = "explicit", + }, + }, ["1357_FireDamageWeaponPrefixAndFlat"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_3962278098", - ["text"] = "#% increased Fire Damage", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_3962278098", + ["text"] = "#% increased Fire Damage", + ["type"] = "explicit", + }, + }, ["1357_IncreasedFireAndLightningDamage"] = { ["Ring"] = { - ["max"] = 16, - ["min"] = 11, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3962278098", - ["text"] = "#% increased Fire Damage", - ["type"] = "explicit", - }, - }, + ["max"] = 16, + ["min"] = 11, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3962278098", + ["text"] = "#% increased Fire Damage", + ["type"] = "explicit", + }, + }, ["1357_LocalFireDamageHybrid"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_3962278098", - ["text"] = "#% increased Fire Damage", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_3962278098", + ["text"] = "#% increased Fire Damage", + ["type"] = "explicit", + }, + }, ["1357_SpellAddedFireDamageHybrid"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_3962278098", - ["text"] = "#% increased Fire Damage", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_3962278098", + ["text"] = "#% increased Fire Damage", + ["type"] = "explicit", + }, + }, ["1357_TwoHandFireDamageWeaponPrefix"] = { ["2HAxe"] = { - ["max"] = 81, - ["min"] = 37, - }, + ["max"] = 81, + ["min"] = 37, + }, ["2HMace"] = { - ["max"] = 81, - ["min"] = 37, - }, + ["max"] = 81, + ["min"] = 37, + }, ["2HSword"] = { - ["max"] = 81, - ["min"] = 37, - }, + ["max"] = 81, + ["min"] = 37, + }, ["2HWeapon"] = { - ["max"] = 164, - ["min"] = 15, - }, + ["max"] = 164, + ["min"] = 15, + }, ["Staff"] = { - ["max"] = 164, - ["min"] = 15, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3962278098", - ["text"] = "#% increased Fire Damage", - ["type"] = "explicit", - }, - }, + ["max"] = 164, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3962278098", + ["text"] = "#% increased Fire Damage", + ["type"] = "explicit", + }, + }, ["1357_TwoHandFireDamageWeaponPrefixAndFlat"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_3962278098", - ["text"] = "#% increased Fire Damage", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_3962278098", + ["text"] = "#% increased Fire Damage", + ["type"] = "explicit", + }, + }, ["1358_SelfFireAndColdDamageTaken"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1905034712", - ["text"] = "Adds # to # Fire Damage to Hits against you", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1905034712", + ["text"] = "Adds # to # Fire Damage to Hits against you", + ["type"] = "explicit", + }, + }, ["1358_SelfFireAndLightningDamageTaken"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1905034712", - ["text"] = "Adds # to # Fire Damage to Hits against you", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1905034712", + ["text"] = "Adds # to # Fire Damage to Hits against you", + ["type"] = "explicit", + }, + }, ["1359_AddedFireAndColdDamage"] = { ["Amulet"] = { - ["max"] = 19, - ["min"] = 7.5, - }, + ["max"] = 19, + ["min"] = 7.5, + }, ["Quiver"] = { - ["max"] = 19, - ["min"] = 7.5, - }, + ["max"] = 19, + ["min"] = 7.5, + }, ["Ring"] = { - ["max"] = 19, - ["min"] = 7.5, - }, + ["max"] = 19, + ["min"] = 7.5, + }, ["Shield"] = { - ["max"] = 19, - ["min"] = 7.5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_321077055", - ["text"] = "Adds # to # Fire Damage", - ["type"] = "explicit", - }, - }, + ["max"] = 19, + ["min"] = 7.5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_321077055", + ["text"] = "Adds # to # Fire Damage", + ["type"] = "explicit", + }, + }, ["1359_AddedFireAndLightningDamage"] = { ["Amulet"] = { - ["max"] = 19, - ["min"] = 7.5, - }, + ["max"] = 19, + ["min"] = 7.5, + }, ["Quiver"] = { - ["max"] = 19, - ["min"] = 7.5, - }, + ["max"] = 19, + ["min"] = 7.5, + }, ["Ring"] = { - ["max"] = 19, - ["min"] = 7.5, - }, + ["max"] = 19, + ["min"] = 7.5, + }, ["Shield"] = { - ["max"] = 19, - ["min"] = 7.5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_321077055", - ["text"] = "Adds # to # Fire Damage", - ["type"] = "explicit", - }, - }, + ["max"] = 19, + ["min"] = 7.5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_321077055", + ["text"] = "Adds # to # Fire Damage", + ["type"] = "explicit", + }, + }, ["1359_GlobalAddedFireDamage"] = { ["Gloves"] = { - ["max"] = 30, - ["min"] = 23, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_321077055", - ["text"] = "Adds # to # Fire Damage", - ["type"] = "explicit", - }, - }, + ["max"] = 30, + ["min"] = 23, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_321077055", + ["text"] = "Adds # to # Fire Damage", + ["type"] = "explicit", + }, + }, ["1360_AddedFireSuffix"] = { ["AbyssJewel"] = { - ["max"] = 21.5, - ["min"] = 7, - }, + ["max"] = 21.5, + ["min"] = 7, + }, ["AnyJewel"] = { - ["max"] = 21.5, - ["min"] = 7, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1573130764", - ["text"] = "Adds # to # Fire Damage to Attacks", - ["type"] = "explicit", - }, - }, + ["max"] = 21.5, + ["min"] = 7, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1573130764", + ["text"] = "Adds # to # Fire Damage to Attacks", + ["type"] = "explicit", + }, + }, ["1360_FireDamage"] = { ["Amulet"] = { - ["max"] = 37.5, - ["min"] = 1.5, - }, + ["max"] = 37.5, + ["min"] = 1.5, + }, ["Gloves"] = { - ["max"] = 21, - ["min"] = 1.5, - }, + ["max"] = 21, + ["min"] = 1.5, + }, ["Quiver"] = { - ["max"] = 75.5, - ["min"] = 2, - }, + ["max"] = 75.5, + ["min"] = 2, + }, ["Ring"] = { - ["max"] = 37.5, - ["min"] = 1.5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1573130764", - ["text"] = "Adds # to # Fire Damage to Attacks", - ["type"] = "explicit", - }, - }, + ["max"] = 37.5, + ["min"] = 1.5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1573130764", + ["text"] = "Adds # to # Fire Damage to Attacks", + ["type"] = "explicit", + }, + }, ["1360_FireDamagePhysConvertedToFire"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1573130764", - ["text"] = "Adds # to # Fire Damage to Attacks", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1573130764", + ["text"] = "Adds # to # Fire Damage to Attacks", + ["type"] = "explicit", + }, + }, ["1361_SelfFireDamageTaken"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_2127433866", - ["text"] = "Adds # to # Fire Damage to Attacks against you", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_2127433866", + ["text"] = "Adds # to # Fire Damage to Attacks against you", + ["type"] = "explicit", + }, + }, ["1362_LocalFireDamage"] = { ["1HAxe"] = { - ["max"] = 165.5, - ["min"] = 2, - }, + ["max"] = 165.5, + ["min"] = 2, + }, ["1HMace"] = { - ["max"] = 165.5, - ["min"] = 2, - }, + ["max"] = 165.5, + ["min"] = 2, + }, ["1HSword"] = { - ["max"] = 165.5, - ["min"] = 2, - }, + ["max"] = 165.5, + ["min"] = 2, + }, ["1HWeapon"] = { - ["max"] = 165.5, - ["min"] = 2, - }, + ["max"] = 165.5, + ["min"] = 2, + }, ["2HAxe"] = { - ["max"] = 165.5, - ["min"] = 2, - }, + ["max"] = 165.5, + ["min"] = 2, + }, ["2HMace"] = { - ["max"] = 165.5, - ["min"] = 2, - }, + ["max"] = 165.5, + ["min"] = 2, + }, ["2HSword"] = { - ["max"] = 165.5, - ["min"] = 2, - }, + ["max"] = 165.5, + ["min"] = 2, + }, ["2HWeapon"] = { - ["max"] = 165.5, - ["min"] = 2, - }, + ["max"] = 165.5, + ["min"] = 2, + }, ["Claw"] = { - ["max"] = 165.5, - ["min"] = 2, - }, + ["max"] = 165.5, + ["min"] = 2, + }, ["Dagger"] = { - ["max"] = 165.5, - ["min"] = 2, - }, + ["max"] = 165.5, + ["min"] = 2, + }, ["Wand"] = { - ["max"] = 165.5, - ["min"] = 2, - }, - ["sign"] = "", - ["specialCaseData"] = { - ["overrideModLine"] = "Adds # to # Fire Damage", - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_709508406", - ["text"] = "Adds # to # Fire Damage (Local)", - ["type"] = "explicit", - }, - }, + ["max"] = 165.5, + ["min"] = 2, + }, + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "Adds # to # Fire Damage", + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_709508406", + ["text"] = "Adds # to # Fire Damage (Local)", + ["type"] = "explicit", + }, + }, ["1362_LocalFireDamageAndPen"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - ["overrideModLine"] = "Adds # to # Fire Damage", - }, + ["overrideModLine"] = "Adds # to # Fire Damage", + }, ["tradeMod"] = { - ["id"] = "explicit.stat_709508406", - ["text"] = "Adds # to # Fire Damage (Local)", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_709508406", + ["text"] = "Adds # to # Fire Damage (Local)", + ["type"] = "explicit", + }, + }, ["1362_LocalFireDamageHybrid"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - ["overrideModLine"] = "Adds # to # Fire Damage", - }, + ["overrideModLine"] = "Adds # to # Fire Damage", + }, ["tradeMod"] = { - ["id"] = "explicit.stat_709508406", - ["text"] = "Adds # to # Fire Damage (Local)", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_709508406", + ["text"] = "Adds # to # Fire Damage (Local)", + ["type"] = "explicit", + }, + }, ["1362_LocalFireDamagePenetrationHybrid"] = { ["1HAxe"] = { - ["max"] = 48, - ["min"] = 11.5, - }, + ["max"] = 48, + ["min"] = 11.5, + }, ["1HMace"] = { - ["max"] = 48, - ["min"] = 11.5, - }, + ["max"] = 48, + ["min"] = 11.5, + }, ["1HSword"] = { - ["max"] = 48, - ["min"] = 11.5, - }, + ["max"] = 48, + ["min"] = 11.5, + }, ["1HWeapon"] = { - ["max"] = 48, - ["min"] = 11.5, - }, + ["max"] = 48, + ["min"] = 11.5, + }, ["2HAxe"] = { - ["max"] = 89.5, - ["min"] = 11.5, - }, + ["max"] = 89.5, + ["min"] = 11.5, + }, ["2HMace"] = { - ["max"] = 89.5, - ["min"] = 11.5, - }, + ["max"] = 89.5, + ["min"] = 11.5, + }, ["2HSword"] = { - ["max"] = 89.5, - ["min"] = 11.5, - }, + ["max"] = 89.5, + ["min"] = 11.5, + }, ["2HWeapon"] = { - ["max"] = 89.5, - ["min"] = 11.5, - }, + ["max"] = 89.5, + ["min"] = 11.5, + }, ["Bow"] = { - ["max"] = 48, - ["min"] = 11.5, - }, + ["max"] = 48, + ["min"] = 11.5, + }, ["Claw"] = { - ["max"] = 48, - ["min"] = 11.5, - }, + ["max"] = 48, + ["min"] = 11.5, + }, ["Dagger"] = { - ["max"] = 48, - ["min"] = 11.5, - }, + ["max"] = 48, + ["min"] = 11.5, + }, ["Staff"] = { - ["max"] = 89.5, - ["min"] = 21.5, - }, + ["max"] = 89.5, + ["min"] = 21.5, + }, ["Wand"] = { - ["max"] = 48, - ["min"] = 11.5, - }, - ["sign"] = "", - ["specialCaseData"] = { - ["overrideModLine"] = "Adds # to # Fire Damage", - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_709508406", - ["text"] = "Adds # to # Fire Damage (Local)", - ["type"] = "explicit", - }, - }, + ["max"] = 48, + ["min"] = 11.5, + }, + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "Adds # to # Fire Damage", + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_709508406", + ["text"] = "Adds # to # Fire Damage (Local)", + ["type"] = "explicit", + }, + }, ["1362_LocalFireDamageRanged"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - ["overrideModLine"] = "Adds # to # Fire Damage", - }, + ["overrideModLine"] = "Adds # to # Fire Damage", + }, ["tradeMod"] = { - ["id"] = "explicit.stat_709508406", - ["text"] = "Adds # to # Fire Damage (Local)", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_709508406", + ["text"] = "Adds # to # Fire Damage (Local)", + ["type"] = "explicit", + }, + }, ["1362_LocalFireDamageTwoHand"] = { ["1HAxe"] = { - ["max"] = 307.5, - ["min"] = 4.5, - }, + ["max"] = 307.5, + ["min"] = 4.5, + }, ["1HMace"] = { - ["max"] = 307.5, - ["min"] = 4.5, - }, + ["max"] = 307.5, + ["min"] = 4.5, + }, ["1HSword"] = { - ["max"] = 307.5, - ["min"] = 4.5, - }, + ["max"] = 307.5, + ["min"] = 4.5, + }, ["1HWeapon"] = { - ["max"] = 307.5, - ["min"] = 4.5, - }, + ["max"] = 307.5, + ["min"] = 4.5, + }, ["2HAxe"] = { - ["max"] = 307.5, - ["min"] = 4.5, - }, + ["max"] = 307.5, + ["min"] = 4.5, + }, ["2HMace"] = { - ["max"] = 307.5, - ["min"] = 4.5, - }, + ["max"] = 307.5, + ["min"] = 4.5, + }, ["2HSword"] = { - ["max"] = 307.5, - ["min"] = 4.5, - }, + ["max"] = 307.5, + ["min"] = 4.5, + }, ["2HWeapon"] = { - ["max"] = 307.5, - ["min"] = 4.5, - }, + ["max"] = 307.5, + ["min"] = 4.5, + }, ["Bow"] = { - ["max"] = 307.5, - ["min"] = 4.5, - }, + ["max"] = 307.5, + ["min"] = 4.5, + }, ["Staff"] = { - ["max"] = 307.5, - ["min"] = 4.5, - }, - ["sign"] = "", - ["specialCaseData"] = { - ["overrideModLine"] = "Adds # to # Fire Damage", - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_709508406", - ["text"] = "Adds # to # Fire Damage (Local)", - ["type"] = "explicit", - }, - }, + ["max"] = 307.5, + ["min"] = 4.5, + }, + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "Adds # to # Fire Damage", + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_709508406", + ["text"] = "Adds # to # Fire Damage (Local)", + ["type"] = "explicit", + }, + }, ["1362_LocalFireDamageTwoHandAndPen"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - ["overrideModLine"] = "Adds # to # Fire Damage", - }, + ["overrideModLine"] = "Adds # to # Fire Damage", + }, ["tradeMod"] = { - ["id"] = "explicit.stat_709508406", - ["text"] = "Adds # to # Fire Damage (Local)", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_709508406", + ["text"] = "Adds # to # Fire Damage (Local)", + ["type"] = "explicit", + }, + }, ["1365_FireGemCastSpeedForJewel"] = { ["AnyJewel"] = { - ["max"] = 5, - ["min"] = 3, - }, + ["max"] = 5, + ["min"] = 3, + }, ["BaseJewel"] = { - ["max"] = 5, - ["min"] = 3, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1476643878", - ["text"] = "#% increased Cast Speed with Fire Skills", - ["type"] = "explicit", - }, - }, + ["max"] = 5, + ["min"] = 3, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1476643878", + ["text"] = "#% increased Cast Speed with Fire Skills", + ["type"] = "explicit", + }, + }, ["1366_ColdDamageAndBaseChanceToFreeze"] = { ["1HAxe"] = { - ["max"] = 109, - ["min"] = 36, - }, + ["max"] = 109, + ["min"] = 36, + }, ["1HMace"] = { - ["max"] = 109, - ["min"] = 36, - }, + ["max"] = 109, + ["min"] = 36, + }, ["1HSword"] = { - ["max"] = 109, - ["min"] = 36, - }, + ["max"] = 109, + ["min"] = 36, + }, ["1HWeapon"] = { - ["max"] = 109, - ["min"] = 36, - }, + ["max"] = 109, + ["min"] = 36, + }, ["2HAxe"] = { - ["max"] = 109, - ["min"] = 60, - }, + ["max"] = 109, + ["min"] = 60, + }, ["2HMace"] = { - ["max"] = 109, - ["min"] = 60, - }, + ["max"] = 109, + ["min"] = 60, + }, ["2HSword"] = { - ["max"] = 109, - ["min"] = 60, - }, + ["max"] = 109, + ["min"] = 60, + }, ["2HWeapon"] = { - ["max"] = 109, - ["min"] = 60, - }, + ["max"] = 109, + ["min"] = 60, + }, ["Bow"] = { - ["max"] = 109, - ["min"] = 70, - }, + ["max"] = 109, + ["min"] = 70, + }, ["Claw"] = { - ["max"] = 109, - ["min"] = 36, - }, + ["max"] = 109, + ["min"] = 36, + }, ["Dagger"] = { - ["max"] = 109, - ["min"] = 36, - }, + ["max"] = 109, + ["min"] = 36, + }, ["Staff"] = { - ["max"] = 109, - ["min"] = 60, - }, + ["max"] = 109, + ["min"] = 60, + }, ["Wand"] = { - ["max"] = 109, - ["min"] = 36, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3291658075", - ["text"] = "#% increased Cold Damage", - ["type"] = "explicit", - }, - }, + ["max"] = 109, + ["min"] = 36, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3291658075", + ["text"] = "#% increased Cold Damage", + ["type"] = "explicit", + }, + }, ["1366_ColdDamageForJewel"] = { ["AnyJewel"] = { - ["max"] = 16, - ["min"] = 14, - }, + ["max"] = 16, + ["min"] = 14, + }, ["BaseJewel"] = { - ["max"] = 16, - ["min"] = 14, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3291658075", - ["text"] = "#% increased Cold Damage", - ["type"] = "explicit", - }, - }, + ["max"] = 16, + ["min"] = 14, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3291658075", + ["text"] = "#% increased Cold Damage", + ["type"] = "explicit", + }, + }, ["1366_ColdDamagePercentage"] = { ["1HAxe"] = { - ["max"] = 16, - ["min"] = 9, - }, + ["max"] = 16, + ["min"] = 9, + }, ["1HMace"] = { - ["max"] = 30, - ["min"] = 9, - }, + ["max"] = 30, + ["min"] = 9, + }, ["1HSword"] = { - ["max"] = 16, - ["min"] = 9, - }, + ["max"] = 16, + ["min"] = 9, + }, ["1HWeapon"] = { - ["max"] = 30, - ["min"] = 9, - }, + ["max"] = 30, + ["min"] = 9, + }, ["2HAxe"] = { - ["max"] = 16, - ["min"] = 9, - }, + ["max"] = 16, + ["min"] = 9, + }, ["2HMace"] = { - ["max"] = 16, - ["min"] = 9, - }, + ["max"] = 16, + ["min"] = 9, + }, ["2HSword"] = { - ["max"] = 16, - ["min"] = 9, - }, + ["max"] = 16, + ["min"] = 9, + }, ["2HWeapon"] = { - ["max"] = 50, - ["min"] = 9, - }, + ["max"] = 50, + ["min"] = 9, + }, ["Amulet"] = { - ["max"] = 34, - ["min"] = 6, - }, + ["max"] = 34, + ["min"] = 6, + }, ["Bow"] = { - ["max"] = 16, - ["min"] = 9, - }, + ["max"] = 16, + ["min"] = 9, + }, ["Claw"] = { - ["max"] = 16, - ["min"] = 9, - }, + ["max"] = 16, + ["min"] = 9, + }, ["Dagger"] = { - ["max"] = 16, - ["min"] = 9, - }, + ["max"] = 16, + ["min"] = 9, + }, ["Ring"] = { - ["max"] = 34, - ["min"] = 6, - }, + ["max"] = 34, + ["min"] = 6, + }, ["Staff"] = { - ["max"] = 50, - ["min"] = 9, - }, + ["max"] = 50, + ["min"] = 9, + }, ["Wand"] = { - ["max"] = 30, - ["min"] = 9, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3291658075", - ["text"] = "#% increased Cold Damage", - ["type"] = "explicit", - }, - }, + ["max"] = 30, + ["min"] = 9, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3291658075", + ["text"] = "#% increased Cold Damage", + ["type"] = "explicit", + }, + }, ["1366_ColdDamagePercentagePrefix"] = { ["Amulet"] = { - ["max"] = 30, - ["min"] = 20, - }, + ["max"] = 30, + ["min"] = 20, + }, ["Belt"] = { - ["max"] = 30, - ["min"] = 16, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3291658075", - ["text"] = "#% increased Cold Damage", - ["type"] = "explicit", - }, - }, + ["max"] = 30, + ["min"] = 16, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3291658075", + ["text"] = "#% increased Cold Damage", + ["type"] = "explicit", + }, + }, ["1366_ColdDamagePrefixColdPenetration"] = { ["1HWeapon"] = { - ["max"] = 60, - ["min"] = 45, - }, + ["max"] = 60, + ["min"] = 45, + }, ["Dagger"] = { - ["max"] = 60, - ["min"] = 45, - }, + ["max"] = 60, + ["min"] = 45, + }, ["Wand"] = { - ["max"] = 60, - ["min"] = 45, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3291658075", - ["text"] = "#% increased Cold Damage", - ["type"] = "explicit", - }, - }, + ["max"] = 60, + ["min"] = 45, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3291658075", + ["text"] = "#% increased Cold Damage", + ["type"] = "explicit", + }, + }, ["1366_ColdDamageWeaponPrefix"] = { ["1HAxe"] = { - ["max"] = 54, - ["min"] = 25, - }, + ["max"] = 54, + ["min"] = 25, + }, ["1HMace"] = { - ["max"] = 109, - ["min"] = 10, - }, + ["max"] = 109, + ["min"] = 10, + }, ["1HSword"] = { - ["max"] = 54, - ["min"] = 25, - }, + ["max"] = 54, + ["min"] = 25, + }, ["1HWeapon"] = { - ["max"] = 109, - ["min"] = 10, - }, + ["max"] = 109, + ["min"] = 10, + }, ["Claw"] = { - ["max"] = 54, - ["min"] = 25, - }, + ["max"] = 54, + ["min"] = 25, + }, ["Dagger"] = { - ["max"] = 54, - ["min"] = 25, - }, + ["max"] = 54, + ["min"] = 25, + }, ["Shield"] = { - ["max"] = 109, - ["min"] = 10, - }, + ["max"] = 109, + ["min"] = 10, + }, ["Wand"] = { - ["max"] = 109, - ["min"] = 10, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3291658075", - ["text"] = "#% increased Cold Damage", - ["type"] = "explicit", - }, - }, + ["max"] = 109, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3291658075", + ["text"] = "#% increased Cold Damage", + ["type"] = "explicit", + }, + }, ["1366_ColdDamageWeaponPrefixAndFlat"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_3291658075", - ["text"] = "#% increased Cold Damage", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_3291658075", + ["text"] = "#% increased Cold Damage", + ["type"] = "explicit", + }, + }, ["1366_LocalColdDamageHybrid"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_3291658075", - ["text"] = "#% increased Cold Damage", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_3291658075", + ["text"] = "#% increased Cold Damage", + ["type"] = "explicit", + }, + }, ["1366_SpellAddedColdDamageHybrid"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_3291658075", - ["text"] = "#% increased Cold Damage", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_3291658075", + ["text"] = "#% increased Cold Damage", + ["type"] = "explicit", + }, + }, ["1366_TwoHandColdDamageWeaponPrefix"] = { ["2HAxe"] = { - ["max"] = 81, - ["min"] = 37, - }, + ["max"] = 81, + ["min"] = 37, + }, ["2HMace"] = { - ["max"] = 81, - ["min"] = 37, - }, + ["max"] = 81, + ["min"] = 37, + }, ["2HSword"] = { - ["max"] = 81, - ["min"] = 37, - }, + ["max"] = 81, + ["min"] = 37, + }, ["2HWeapon"] = { - ["max"] = 164, - ["min"] = 15, - }, + ["max"] = 164, + ["min"] = 15, + }, ["Staff"] = { - ["max"] = 164, - ["min"] = 15, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3291658075", - ["text"] = "#% increased Cold Damage", - ["type"] = "explicit", - }, - }, + ["max"] = 164, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3291658075", + ["text"] = "#% increased Cold Damage", + ["type"] = "explicit", + }, + }, ["1366_TwoHandColdDamageWeaponPrefixAndFlat"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_3291658075", - ["text"] = "#% increased Cold Damage", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_3291658075", + ["text"] = "#% increased Cold Damage", + ["type"] = "explicit", + }, + }, ["1367_SelfColdAndLightningDamageTaken"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_3482587079", - ["text"] = "Adds # to # Cold Damage to Hits against you", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_3482587079", + ["text"] = "Adds # to # Cold Damage to Hits against you", + ["type"] = "explicit", + }, + }, ["1367_SelfFireAndColdDamageTaken"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_3482587079", - ["text"] = "Adds # to # Cold Damage to Hits against you", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_3482587079", + ["text"] = "Adds # to # Cold Damage to Hits against you", + ["type"] = "explicit", + }, + }, ["1368_AddedColdAndLightningDamage"] = { ["Amulet"] = { - ["max"] = 19, - ["min"] = 7.5, - }, + ["max"] = 19, + ["min"] = 7.5, + }, ["Quiver"] = { - ["max"] = 19, - ["min"] = 7.5, - }, + ["max"] = 19, + ["min"] = 7.5, + }, ["Ring"] = { - ["max"] = 19, - ["min"] = 7.5, - }, + ["max"] = 19, + ["min"] = 7.5, + }, ["Shield"] = { - ["max"] = 19, - ["min"] = 7.5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2387423236", - ["text"] = "Adds # to # Cold Damage", - ["type"] = "explicit", - }, - }, + ["max"] = 19, + ["min"] = 7.5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2387423236", + ["text"] = "Adds # to # Cold Damage", + ["type"] = "explicit", + }, + }, ["1368_AddedFireAndColdDamage"] = { ["Amulet"] = { - ["max"] = 19, - ["min"] = 7.5, - }, + ["max"] = 19, + ["min"] = 7.5, + }, ["Quiver"] = { - ["max"] = 19, - ["min"] = 7.5, - }, + ["max"] = 19, + ["min"] = 7.5, + }, ["Ring"] = { - ["max"] = 19, - ["min"] = 7.5, - }, + ["max"] = 19, + ["min"] = 7.5, + }, ["Shield"] = { - ["max"] = 19, - ["min"] = 7.5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2387423236", - ["text"] = "Adds # to # Cold Damage", - ["type"] = "explicit", - }, - }, + ["max"] = 19, + ["min"] = 7.5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2387423236", + ["text"] = "Adds # to # Cold Damage", + ["type"] = "explicit", + }, + }, ["1368_GlobalAddedColdDamage"] = { ["Gloves"] = { - ["max"] = 30, - ["min"] = 23, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2387423236", - ["text"] = "Adds # to # Cold Damage", - ["type"] = "explicit", - }, - }, + ["max"] = 30, + ["min"] = 23, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2387423236", + ["text"] = "Adds # to # Cold Damage", + ["type"] = "explicit", + }, + }, ["1369_AddedColdSuffix"] = { ["AbyssJewel"] = { - ["max"] = 19.5, - ["min"] = 6, - }, + ["max"] = 19.5, + ["min"] = 6, + }, ["AnyJewel"] = { - ["max"] = 19.5, - ["min"] = 6, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4067062424", - ["text"] = "Adds # to # Cold Damage to Attacks", - ["type"] = "explicit", - }, - }, + ["max"] = 19.5, + ["min"] = 6, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4067062424", + ["text"] = "Adds # to # Cold Damage to Attacks", + ["type"] = "explicit", + }, + }, ["1369_ColdDamage"] = { ["Amulet"] = { - ["max"] = 34, - ["min"] = 1.5, - }, + ["max"] = 34, + ["min"] = 1.5, + }, ["Gloves"] = { - ["max"] = 18.5, - ["min"] = 1.5, - }, + ["max"] = 18.5, + ["min"] = 1.5, + }, ["Quiver"] = { - ["max"] = 68, - ["min"] = 2, - }, + ["max"] = 68, + ["min"] = 2, + }, ["Ring"] = { - ["max"] = 34, - ["min"] = 1.5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4067062424", - ["text"] = "Adds # to # Cold Damage to Attacks", - ["type"] = "explicit", - }, - }, + ["max"] = 34, + ["min"] = 1.5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4067062424", + ["text"] = "Adds # to # Cold Damage to Attacks", + ["type"] = "explicit", + }, + }, ["1369_ColdDamagePhysConvertedToCold"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_4067062424", - ["text"] = "Adds # to # Cold Damage to Attacks", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_4067062424", + ["text"] = "Adds # to # Cold Damage to Attacks", + ["type"] = "explicit", + }, + }, ["1370_SelfColdDamageTaken"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_617462123", - ["text"] = "Adds # to # Cold Damage to Attacks against you", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_617462123", + ["text"] = "Adds # to # Cold Damage to Attacks against you", + ["type"] = "explicit", + }, + }, ["1371_LocalColdDamage"] = { ["1HAxe"] = { - ["max"] = 150, - ["min"] = 2, - }, + ["max"] = 150, + ["min"] = 2, + }, ["1HMace"] = { - ["max"] = 150, - ["min"] = 2, - }, + ["max"] = 150, + ["min"] = 2, + }, ["1HSword"] = { - ["max"] = 150, - ["min"] = 2, - }, + ["max"] = 150, + ["min"] = 2, + }, ["1HWeapon"] = { - ["max"] = 150, - ["min"] = 2, - }, + ["max"] = 150, + ["min"] = 2, + }, ["2HAxe"] = { - ["max"] = 150, - ["min"] = 2, - }, + ["max"] = 150, + ["min"] = 2, + }, ["2HMace"] = { - ["max"] = 150, - ["min"] = 2, - }, + ["max"] = 150, + ["min"] = 2, + }, ["2HSword"] = { - ["max"] = 150, - ["min"] = 2, - }, + ["max"] = 150, + ["min"] = 2, + }, ["2HWeapon"] = { - ["max"] = 150, - ["min"] = 2, - }, + ["max"] = 150, + ["min"] = 2, + }, ["Claw"] = { - ["max"] = 150, - ["min"] = 2, - }, + ["max"] = 150, + ["min"] = 2, + }, ["Dagger"] = { - ["max"] = 150, - ["min"] = 2, - }, + ["max"] = 150, + ["min"] = 2, + }, ["Wand"] = { - ["max"] = 150, - ["min"] = 2, - }, - ["sign"] = "", - ["specialCaseData"] = { - ["overrideModLine"] = "Adds # to # Cold Damage", - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1037193709", - ["text"] = "Adds # to # Cold Damage (Local)", - ["type"] = "explicit", - }, - }, + ["max"] = 150, + ["min"] = 2, + }, + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "Adds # to # Cold Damage", + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1037193709", + ["text"] = "Adds # to # Cold Damage (Local)", + ["type"] = "explicit", + }, + }, ["1371_LocalColdDamageAndPen"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - ["overrideModLine"] = "Adds # to # Cold Damage", - }, + ["overrideModLine"] = "Adds # to # Cold Damage", + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1037193709", - ["text"] = "Adds # to # Cold Damage (Local)", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1037193709", + ["text"] = "Adds # to # Cold Damage (Local)", + ["type"] = "explicit", + }, + }, ["1371_LocalColdDamageHybrid"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - ["overrideModLine"] = "Adds # to # Cold Damage", - }, + ["overrideModLine"] = "Adds # to # Cold Damage", + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1037193709", - ["text"] = "Adds # to # Cold Damage (Local)", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1037193709", + ["text"] = "Adds # to # Cold Damage (Local)", + ["type"] = "explicit", + }, + }, ["1371_LocalColdDamagePenetrationHybrid"] = { ["1HAxe"] = { - ["max"] = 43.5, - ["min"] = 10.5, - }, + ["max"] = 43.5, + ["min"] = 10.5, + }, ["1HMace"] = { - ["max"] = 43.5, - ["min"] = 10.5, - }, + ["max"] = 43.5, + ["min"] = 10.5, + }, ["1HSword"] = { - ["max"] = 43.5, - ["min"] = 10.5, - }, + ["max"] = 43.5, + ["min"] = 10.5, + }, ["1HWeapon"] = { - ["max"] = 43.5, - ["min"] = 10.5, - }, + ["max"] = 43.5, + ["min"] = 10.5, + }, ["2HAxe"] = { - ["max"] = 80.5, - ["min"] = 10.5, - }, + ["max"] = 80.5, + ["min"] = 10.5, + }, ["2HMace"] = { - ["max"] = 80.5, - ["min"] = 10.5, - }, + ["max"] = 80.5, + ["min"] = 10.5, + }, ["2HSword"] = { - ["max"] = 80.5, - ["min"] = 10.5, - }, + ["max"] = 80.5, + ["min"] = 10.5, + }, ["2HWeapon"] = { - ["max"] = 80.5, - ["min"] = 10.5, - }, + ["max"] = 80.5, + ["min"] = 10.5, + }, ["Bow"] = { - ["max"] = 43.5, - ["min"] = 10.5, - }, + ["max"] = 43.5, + ["min"] = 10.5, + }, ["Claw"] = { - ["max"] = 43.5, - ["min"] = 10.5, - }, + ["max"] = 43.5, + ["min"] = 10.5, + }, ["Dagger"] = { - ["max"] = 43.5, - ["min"] = 10.5, - }, + ["max"] = 43.5, + ["min"] = 10.5, + }, ["Staff"] = { - ["max"] = 80.5, - ["min"] = 19.5, - }, + ["max"] = 80.5, + ["min"] = 19.5, + }, ["Wand"] = { - ["max"] = 43.5, - ["min"] = 10.5, - }, - ["sign"] = "", - ["specialCaseData"] = { - ["overrideModLine"] = "Adds # to # Cold Damage", - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1037193709", - ["text"] = "Adds # to # Cold Damage (Local)", - ["type"] = "explicit", - }, - }, + ["max"] = 43.5, + ["min"] = 10.5, + }, + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "Adds # to # Cold Damage", + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1037193709", + ["text"] = "Adds # to # Cold Damage (Local)", + ["type"] = "explicit", + }, + }, ["1371_LocalColdDamageRanged"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - ["overrideModLine"] = "Adds # to # Cold Damage", - }, + ["overrideModLine"] = "Adds # to # Cold Damage", + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1037193709", - ["text"] = "Adds # to # Cold Damage (Local)", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1037193709", + ["text"] = "Adds # to # Cold Damage (Local)", + ["type"] = "explicit", + }, + }, ["1371_LocalColdDamageTwoHand"] = { ["1HAxe"] = { - ["max"] = 276, - ["min"] = 4, - }, + ["max"] = 276, + ["min"] = 4, + }, ["1HMace"] = { - ["max"] = 276, - ["min"] = 4, - }, + ["max"] = 276, + ["min"] = 4, + }, ["1HSword"] = { - ["max"] = 276, - ["min"] = 4, - }, + ["max"] = 276, + ["min"] = 4, + }, ["1HWeapon"] = { - ["max"] = 276, - ["min"] = 4, - }, + ["max"] = 276, + ["min"] = 4, + }, ["2HAxe"] = { - ["max"] = 276, - ["min"] = 4, - }, + ["max"] = 276, + ["min"] = 4, + }, ["2HMace"] = { - ["max"] = 276, - ["min"] = 4, - }, + ["max"] = 276, + ["min"] = 4, + }, ["2HSword"] = { - ["max"] = 276, - ["min"] = 4, - }, + ["max"] = 276, + ["min"] = 4, + }, ["2HWeapon"] = { - ["max"] = 276, - ["min"] = 4, - }, + ["max"] = 276, + ["min"] = 4, + }, ["Bow"] = { - ["max"] = 276, - ["min"] = 4, - }, + ["max"] = 276, + ["min"] = 4, + }, ["Staff"] = { - ["max"] = 276, - ["min"] = 4, - }, - ["sign"] = "", - ["specialCaseData"] = { - ["overrideModLine"] = "Adds # to # Cold Damage", - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1037193709", - ["text"] = "Adds # to # Cold Damage (Local)", - ["type"] = "explicit", - }, - }, + ["max"] = 276, + ["min"] = 4, + }, + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "Adds # to # Cold Damage", + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1037193709", + ["text"] = "Adds # to # Cold Damage (Local)", + ["type"] = "explicit", + }, + }, ["1371_LocalColdDamageTwoHandAndPen"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - ["overrideModLine"] = "Adds # to # Cold Damage", - }, + ["overrideModLine"] = "Adds # to # Cold Damage", + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1037193709", - ["text"] = "Adds # to # Cold Damage (Local)", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1037193709", + ["text"] = "Adds # to # Cold Damage (Local)", + ["type"] = "explicit", + }, + }, ["1373_AddedFireDamageSpellsAndAttacks"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_3964634628", - ["text"] = "Adds # to # Fire Damage to Spells and Attacks", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_3964634628", + ["text"] = "Adds # to # Fire Damage to Spells and Attacks", + ["type"] = "explicit", + }, + }, ["1374_AddedColdDamageToSpellsAndAttacks"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1662717006", - ["text"] = "Adds # to # Cold Damage to Spells and Attacks", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1662717006", + ["text"] = "Adds # to # Cold Damage to Spells and Attacks", + ["type"] = "explicit", + }, + }, ["1376_ColdGemCastSpeedForJewel"] = { ["AnyJewel"] = { - ["max"] = 5, - ["min"] = 3, - }, + ["max"] = 5, + ["min"] = 3, + }, ["BaseJewel"] = { - ["max"] = 5, - ["min"] = 3, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_928238845", - ["text"] = "#% increased Cast Speed with Cold Skills", - ["type"] = "explicit", - }, - }, + ["max"] = 5, + ["min"] = 3, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_928238845", + ["text"] = "#% increased Cast Speed with Cold Skills", + ["type"] = "explicit", + }, + }, ["1377_IncreasedFireAndLightningDamage"] = { ["Ring"] = { - ["max"] = 16, - ["min"] = 11, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2231156303", - ["text"] = "#% increased Lightning Damage", - ["type"] = "explicit", - }, - }, + ["max"] = 16, + ["min"] = 11, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2231156303", + ["text"] = "#% increased Lightning Damage", + ["type"] = "explicit", + }, + }, ["1377_LightningDamageAndChanceToShock"] = { ["1HAxe"] = { - ["max"] = 109, - ["min"] = 36, - }, + ["max"] = 109, + ["min"] = 36, + }, ["1HMace"] = { - ["max"] = 109, - ["min"] = 36, - }, + ["max"] = 109, + ["min"] = 36, + }, ["1HSword"] = { - ["max"] = 109, - ["min"] = 36, - }, + ["max"] = 109, + ["min"] = 36, + }, ["1HWeapon"] = { - ["max"] = 109, - ["min"] = 36, - }, + ["max"] = 109, + ["min"] = 36, + }, ["2HAxe"] = { - ["max"] = 109, - ["min"] = 60, - }, + ["max"] = 109, + ["min"] = 60, + }, ["2HMace"] = { - ["max"] = 109, - ["min"] = 60, - }, + ["max"] = 109, + ["min"] = 60, + }, ["2HSword"] = { - ["max"] = 109, - ["min"] = 60, - }, + ["max"] = 109, + ["min"] = 60, + }, ["2HWeapon"] = { - ["max"] = 109, - ["min"] = 60, - }, + ["max"] = 109, + ["min"] = 60, + }, ["Bow"] = { - ["max"] = 109, - ["min"] = 70, - }, + ["max"] = 109, + ["min"] = 70, + }, ["Claw"] = { - ["max"] = 109, - ["min"] = 36, - }, + ["max"] = 109, + ["min"] = 36, + }, ["Dagger"] = { - ["max"] = 109, - ["min"] = 36, - }, + ["max"] = 109, + ["min"] = 36, + }, ["Staff"] = { - ["max"] = 109, - ["min"] = 60, - }, + ["max"] = 109, + ["min"] = 60, + }, ["Wand"] = { - ["max"] = 109, - ["min"] = 36, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2231156303", - ["text"] = "#% increased Lightning Damage", - ["type"] = "explicit", - }, - }, + ["max"] = 109, + ["min"] = 36, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2231156303", + ["text"] = "#% increased Lightning Damage", + ["type"] = "explicit", + }, + }, ["1377_LightningDamageForJewel"] = { ["AnyJewel"] = { - ["max"] = 16, - ["min"] = 14, - }, + ["max"] = 16, + ["min"] = 14, + }, ["BaseJewel"] = { - ["max"] = 16, - ["min"] = 14, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2231156303", - ["text"] = "#% increased Lightning Damage", - ["type"] = "explicit", - }, - }, + ["max"] = 16, + ["min"] = 14, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2231156303", + ["text"] = "#% increased Lightning Damage", + ["type"] = "explicit", + }, + }, ["1377_LightningDamagePercentage"] = { ["1HAxe"] = { - ["max"] = 16, - ["min"] = 9, - }, + ["max"] = 16, + ["min"] = 9, + }, ["1HMace"] = { - ["max"] = 30, - ["min"] = 9, - }, + ["max"] = 30, + ["min"] = 9, + }, ["1HSword"] = { - ["max"] = 16, - ["min"] = 9, - }, + ["max"] = 16, + ["min"] = 9, + }, ["1HWeapon"] = { - ["max"] = 30, - ["min"] = 9, - }, + ["max"] = 30, + ["min"] = 9, + }, ["2HAxe"] = { - ["max"] = 16, - ["min"] = 9, - }, + ["max"] = 16, + ["min"] = 9, + }, ["2HMace"] = { - ["max"] = 16, - ["min"] = 9, - }, + ["max"] = 16, + ["min"] = 9, + }, ["2HSword"] = { - ["max"] = 16, - ["min"] = 9, - }, + ["max"] = 16, + ["min"] = 9, + }, ["2HWeapon"] = { - ["max"] = 50, - ["min"] = 9, - }, + ["max"] = 50, + ["min"] = 9, + }, ["Amulet"] = { - ["max"] = 34, - ["min"] = 9, - }, + ["max"] = 34, + ["min"] = 9, + }, ["Bow"] = { - ["max"] = 16, - ["min"] = 9, - }, + ["max"] = 16, + ["min"] = 9, + }, ["Claw"] = { - ["max"] = 16, - ["min"] = 9, - }, + ["max"] = 16, + ["min"] = 9, + }, ["Dagger"] = { - ["max"] = 16, - ["min"] = 9, - }, + ["max"] = 16, + ["min"] = 9, + }, ["Ring"] = { - ["max"] = 34, - ["min"] = 9, - }, + ["max"] = 34, + ["min"] = 9, + }, ["Staff"] = { - ["max"] = 50, - ["min"] = 9, - }, + ["max"] = 50, + ["min"] = 9, + }, ["Wand"] = { - ["max"] = 30, - ["min"] = 9, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2231156303", - ["text"] = "#% increased Lightning Damage", - ["type"] = "explicit", - }, - }, + ["max"] = 30, + ["min"] = 9, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2231156303", + ["text"] = "#% increased Lightning Damage", + ["type"] = "explicit", + }, + }, ["1377_LightningDamagePercentagePrefix"] = { ["Amulet"] = { - ["max"] = 30, - ["min"] = 20, - }, + ["max"] = 30, + ["min"] = 20, + }, ["Belt"] = { - ["max"] = 30, - ["min"] = 16, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2231156303", - ["text"] = "#% increased Lightning Damage", - ["type"] = "explicit", - }, - }, + ["max"] = 30, + ["min"] = 16, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2231156303", + ["text"] = "#% increased Lightning Damage", + ["type"] = "explicit", + }, + }, ["1377_LightningDamagePrefixLightningPenetration"] = { ["1HMace"] = { - ["max"] = 60, - ["min"] = 45, - }, + ["max"] = 60, + ["min"] = 45, + }, ["1HWeapon"] = { - ["max"] = 60, - ["min"] = 45, - }, + ["max"] = 60, + ["min"] = 45, + }, ["Dagger"] = { - ["max"] = 60, - ["min"] = 45, - }, + ["max"] = 60, + ["min"] = 45, + }, ["Wand"] = { - ["max"] = 60, - ["min"] = 45, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2231156303", - ["text"] = "#% increased Lightning Damage", - ["type"] = "explicit", - }, - }, + ["max"] = 60, + ["min"] = 45, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2231156303", + ["text"] = "#% increased Lightning Damage", + ["type"] = "explicit", + }, + }, ["1377_LightningDamageWeaponPrefix"] = { ["1HAxe"] = { - ["max"] = 54, - ["min"] = 25, - }, + ["max"] = 54, + ["min"] = 25, + }, ["1HMace"] = { - ["max"] = 109, - ["min"] = 10, - }, + ["max"] = 109, + ["min"] = 10, + }, ["1HSword"] = { - ["max"] = 54, - ["min"] = 25, - }, + ["max"] = 54, + ["min"] = 25, + }, ["1HWeapon"] = { - ["max"] = 109, - ["min"] = 10, - }, + ["max"] = 109, + ["min"] = 10, + }, ["Claw"] = { - ["max"] = 54, - ["min"] = 25, - }, + ["max"] = 54, + ["min"] = 25, + }, ["Dagger"] = { - ["max"] = 54, - ["min"] = 25, - }, + ["max"] = 54, + ["min"] = 25, + }, ["Shield"] = { - ["max"] = 109, - ["min"] = 10, - }, + ["max"] = 109, + ["min"] = 10, + }, ["Wand"] = { - ["max"] = 109, - ["min"] = 10, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2231156303", - ["text"] = "#% increased Lightning Damage", - ["type"] = "explicit", - }, - }, + ["max"] = 109, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2231156303", + ["text"] = "#% increased Lightning Damage", + ["type"] = "explicit", + }, + }, ["1377_LightningDamageWeaponPrefixAndFlat"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_2231156303", - ["text"] = "#% increased Lightning Damage", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_2231156303", + ["text"] = "#% increased Lightning Damage", + ["type"] = "explicit", + }, + }, ["1377_LocalLightningDamageHybrid"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_2231156303", - ["text"] = "#% increased Lightning Damage", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_2231156303", + ["text"] = "#% increased Lightning Damage", + ["type"] = "explicit", + }, + }, ["1377_SpellAddedLightningDamageHybrid"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_2231156303", - ["text"] = "#% increased Lightning Damage", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_2231156303", + ["text"] = "#% increased Lightning Damage", + ["type"] = "explicit", + }, + }, ["1377_TwoHandLightningDamageWeaponPrefix"] = { ["2HAxe"] = { - ["max"] = 81, - ["min"] = 37, - }, + ["max"] = 81, + ["min"] = 37, + }, ["2HMace"] = { - ["max"] = 81, - ["min"] = 37, - }, + ["max"] = 81, + ["min"] = 37, + }, ["2HSword"] = { - ["max"] = 81, - ["min"] = 37, - }, + ["max"] = 81, + ["min"] = 37, + }, ["2HWeapon"] = { - ["max"] = 164, - ["min"] = 15, - }, + ["max"] = 164, + ["min"] = 15, + }, ["Staff"] = { - ["max"] = 164, - ["min"] = 15, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2231156303", - ["text"] = "#% increased Lightning Damage", - ["type"] = "explicit", - }, - }, + ["max"] = 164, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2231156303", + ["text"] = "#% increased Lightning Damage", + ["type"] = "explicit", + }, + }, ["1377_TwoHandLightningDamageWeaponPrefixAndFlat"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_2231156303", - ["text"] = "#% increased Lightning Damage", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_2231156303", + ["text"] = "#% increased Lightning Damage", + ["type"] = "explicit", + }, + }, ["1378_SelfColdAndLightningDamageTaken"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_2923069345", - ["text"] = "Adds # to # Lightning Damage to Hits against you", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_2923069345", + ["text"] = "Adds # to # Lightning Damage to Hits against you", + ["type"] = "explicit", + }, + }, ["1378_SelfFireAndLightningDamageTaken"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_2923069345", - ["text"] = "Adds # to # Lightning Damage to Hits against you", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_2923069345", + ["text"] = "Adds # to # Lightning Damage to Hits against you", + ["type"] = "explicit", + }, + }, ["1379_AddedColdAndLightningDamage"] = { ["Amulet"] = { - ["max"] = 19, - ["min"] = 7.5, - }, + ["max"] = 19, + ["min"] = 7.5, + }, ["Quiver"] = { - ["max"] = 19, - ["min"] = 7.5, - }, + ["max"] = 19, + ["min"] = 7.5, + }, ["Ring"] = { - ["max"] = 19, - ["min"] = 7.5, - }, + ["max"] = 19, + ["min"] = 7.5, + }, ["Shield"] = { - ["max"] = 19, - ["min"] = 7.5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1334060246", - ["text"] = "Adds # to # Lightning Damage", - ["type"] = "explicit", - }, - }, + ["max"] = 19, + ["min"] = 7.5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1334060246", + ["text"] = "Adds # to # Lightning Damage", + ["type"] = "explicit", + }, + }, ["1379_AddedFireAndLightningDamage"] = { ["Amulet"] = { - ["max"] = 19, - ["min"] = 7.5, - }, + ["max"] = 19, + ["min"] = 7.5, + }, ["Quiver"] = { - ["max"] = 19, - ["min"] = 7.5, - }, + ["max"] = 19, + ["min"] = 7.5, + }, ["Ring"] = { - ["max"] = 19, - ["min"] = 7.5, - }, + ["max"] = 19, + ["min"] = 7.5, + }, ["Shield"] = { - ["max"] = 19, - ["min"] = 7.5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1334060246", - ["text"] = "Adds # to # Lightning Damage", - ["type"] = "explicit", - }, - }, + ["max"] = 19, + ["min"] = 7.5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1334060246", + ["text"] = "Adds # to # Lightning Damage", + ["type"] = "explicit", + }, + }, ["1379_GlobalAddedLightningDamage"] = { ["Gloves"] = { - ["max"] = 30.5, - ["min"] = 24.5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1334060246", - ["text"] = "Adds # to # Lightning Damage", - ["type"] = "explicit", - }, - }, + ["max"] = 30.5, + ["min"] = 24.5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1334060246", + ["text"] = "Adds # to # Lightning Damage", + ["type"] = "explicit", + }, + }, ["1380_AddedLightningSuffix"] = { ["AbyssJewel"] = { - ["max"] = 26, - ["min"] = 10, - }, + ["max"] = 26, + ["min"] = 10, + }, ["AnyJewel"] = { - ["max"] = 26, - ["min"] = 10, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1754445556", - ["text"] = "Adds # to # Lightning Damage to Attacks", - ["type"] = "explicit", - }, - }, + ["max"] = 26, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1754445556", + ["text"] = "Adds # to # Lightning Damage to Attacks", + ["type"] = "explicit", + }, + }, ["1380_LightningDamage"] = { ["Amulet"] = { - ["max"] = 42, - ["min"] = 3, - }, + ["max"] = 42, + ["min"] = 3, + }, ["Gloves"] = { - ["max"] = 23.5, - ["min"] = 3, - }, + ["max"] = 23.5, + ["min"] = 3, + }, ["Quiver"] = { - ["max"] = 84, - ["min"] = 2, - }, + ["max"] = 84, + ["min"] = 2, + }, ["Ring"] = { - ["max"] = 42, - ["min"] = 3, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1754445556", - ["text"] = "Adds # to # Lightning Damage to Attacks", - ["type"] = "explicit", - }, - }, + ["max"] = 42, + ["min"] = 3, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1754445556", + ["text"] = "Adds # to # Lightning Damage to Attacks", + ["type"] = "explicit", + }, + }, ["1380_LightningDamagePhysConvertedToLightning"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1754445556", - ["text"] = "Adds # to # Lightning Damage to Attacks", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1754445556", + ["text"] = "Adds # to # Lightning Damage to Attacks", + ["type"] = "explicit", + }, + }, ["1381_SelfLightningDamageTaken"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_2491363440", - ["text"] = "Adds # to # Lightning Damage to Attacks against you", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_2491363440", + ["text"] = "Adds # to # Lightning Damage to Attacks against you", + ["type"] = "explicit", + }, + }, ["1382_LocalLightningDamage"] = { ["1HAxe"] = { - ["max"] = 182.5, - ["min"] = 3, - }, + ["max"] = 182.5, + ["min"] = 3, + }, ["1HMace"] = { - ["max"] = 182.5, - ["min"] = 3, - }, + ["max"] = 182.5, + ["min"] = 3, + }, ["1HSword"] = { - ["max"] = 182.5, - ["min"] = 3, - }, + ["max"] = 182.5, + ["min"] = 3, + }, ["1HWeapon"] = { - ["max"] = 182.5, - ["min"] = 3, - }, + ["max"] = 182.5, + ["min"] = 3, + }, ["2HAxe"] = { - ["max"] = 182.5, - ["min"] = 3, - }, + ["max"] = 182.5, + ["min"] = 3, + }, ["2HMace"] = { - ["max"] = 182.5, - ["min"] = 3, - }, + ["max"] = 182.5, + ["min"] = 3, + }, ["2HSword"] = { - ["max"] = 182.5, - ["min"] = 3, - }, + ["max"] = 182.5, + ["min"] = 3, + }, ["2HWeapon"] = { - ["max"] = 182.5, - ["min"] = 3, - }, + ["max"] = 182.5, + ["min"] = 3, + }, ["Claw"] = { - ["max"] = 182.5, - ["min"] = 3, - }, + ["max"] = 182.5, + ["min"] = 3, + }, ["Dagger"] = { - ["max"] = 182.5, - ["min"] = 3, - }, + ["max"] = 182.5, + ["min"] = 3, + }, ["Wand"] = { - ["max"] = 182.5, - ["min"] = 3, - }, - ["sign"] = "", - ["specialCaseData"] = { - ["overrideModLine"] = "Adds # to # Lightning Damage", - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3336890334", - ["text"] = "Adds # to # Lightning Damage (Local)", - ["type"] = "explicit", - }, - }, + ["max"] = 182.5, + ["min"] = 3, + }, + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "Adds # to # Lightning Damage", + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3336890334", + ["text"] = "Adds # to # Lightning Damage (Local)", + ["type"] = "explicit", + }, + }, ["1382_LocalLightningDamageAndPen"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - ["overrideModLine"] = "Adds # to # Lightning Damage", - }, + ["overrideModLine"] = "Adds # to # Lightning Damage", + }, ["tradeMod"] = { - ["id"] = "explicit.stat_3336890334", - ["text"] = "Adds # to # Lightning Damage (Local)", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_3336890334", + ["text"] = "Adds # to # Lightning Damage (Local)", + ["type"] = "explicit", + }, + }, ["1382_LocalLightningDamageHybrid"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - ["overrideModLine"] = "Adds # to # Lightning Damage", - }, + ["overrideModLine"] = "Adds # to # Lightning Damage", + }, ["tradeMod"] = { - ["id"] = "explicit.stat_3336890334", - ["text"] = "Adds # to # Lightning Damage (Local)", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_3336890334", + ["text"] = "Adds # to # Lightning Damage (Local)", + ["type"] = "explicit", + }, + }, ["1382_LocalLightningDamagePenetrationHybrid"] = { ["1HAxe"] = { - ["max"] = 53.5, - ["min"] = 13.5, - }, + ["max"] = 53.5, + ["min"] = 13.5, + }, ["1HMace"] = { - ["max"] = 53.5, - ["min"] = 13.5, - }, + ["max"] = 53.5, + ["min"] = 13.5, + }, ["1HSword"] = { - ["max"] = 53.5, - ["min"] = 13.5, - }, + ["max"] = 53.5, + ["min"] = 13.5, + }, ["1HWeapon"] = { - ["max"] = 53.5, - ["min"] = 13.5, - }, + ["max"] = 53.5, + ["min"] = 13.5, + }, ["2HAxe"] = { - ["max"] = 99, - ["min"] = 13.5, - }, + ["max"] = 99, + ["min"] = 13.5, + }, ["2HMace"] = { - ["max"] = 99, - ["min"] = 13.5, - }, + ["max"] = 99, + ["min"] = 13.5, + }, ["2HSword"] = { - ["max"] = 99, - ["min"] = 13.5, - }, + ["max"] = 99, + ["min"] = 13.5, + }, ["2HWeapon"] = { - ["max"] = 99, - ["min"] = 13.5, - }, + ["max"] = 99, + ["min"] = 13.5, + }, ["Bow"] = { - ["max"] = 53.5, - ["min"] = 13.5, - }, + ["max"] = 53.5, + ["min"] = 13.5, + }, ["Claw"] = { - ["max"] = 53.5, - ["min"] = 13.5, - }, + ["max"] = 53.5, + ["min"] = 13.5, + }, ["Dagger"] = { - ["max"] = 53.5, - ["min"] = 13.5, - }, + ["max"] = 53.5, + ["min"] = 13.5, + }, ["Staff"] = { - ["max"] = 99, - ["min"] = 24.5, - }, + ["max"] = 99, + ["min"] = 24.5, + }, ["Wand"] = { - ["max"] = 53.5, - ["min"] = 13.5, - }, - ["sign"] = "", - ["specialCaseData"] = { - ["overrideModLine"] = "Adds # to # Lightning Damage", - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3336890334", - ["text"] = "Adds # to # Lightning Damage (Local)", - ["type"] = "explicit", - }, - }, + ["max"] = 53.5, + ["min"] = 13.5, + }, + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "Adds # to # Lightning Damage", + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3336890334", + ["text"] = "Adds # to # Lightning Damage (Local)", + ["type"] = "explicit", + }, + }, ["1382_LocalLightningDamageRanged"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - ["overrideModLine"] = "Adds # to # Lightning Damage", - }, + ["overrideModLine"] = "Adds # to # Lightning Damage", + }, ["tradeMod"] = { - ["id"] = "explicit.stat_3336890334", - ["text"] = "Adds # to # Lightning Damage (Local)", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_3336890334", + ["text"] = "Adds # to # Lightning Damage (Local)", + ["type"] = "explicit", + }, + }, ["1382_LocalLightningDamageTwoHand"] = { ["1HAxe"] = { - ["max"] = 338, - ["min"] = 6, - }, + ["max"] = 338, + ["min"] = 6, + }, ["1HMace"] = { - ["max"] = 338, - ["min"] = 6, - }, + ["max"] = 338, + ["min"] = 6, + }, ["1HSword"] = { - ["max"] = 338, - ["min"] = 6, - }, + ["max"] = 338, + ["min"] = 6, + }, ["1HWeapon"] = { - ["max"] = 338, - ["min"] = 6, - }, + ["max"] = 338, + ["min"] = 6, + }, ["2HAxe"] = { - ["max"] = 338, - ["min"] = 6, - }, + ["max"] = 338, + ["min"] = 6, + }, ["2HMace"] = { - ["max"] = 338, - ["min"] = 6, - }, + ["max"] = 338, + ["min"] = 6, + }, ["2HSword"] = { - ["max"] = 338, - ["min"] = 6, - }, + ["max"] = 338, + ["min"] = 6, + }, ["2HWeapon"] = { - ["max"] = 338, - ["min"] = 6, - }, + ["max"] = 338, + ["min"] = 6, + }, ["Bow"] = { - ["max"] = 338, - ["min"] = 6, - }, + ["max"] = 338, + ["min"] = 6, + }, ["Staff"] = { - ["max"] = 338, - ["min"] = 6, - }, - ["sign"] = "", - ["specialCaseData"] = { - ["overrideModLine"] = "Adds # to # Lightning Damage", - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3336890334", - ["text"] = "Adds # to # Lightning Damage (Local)", - ["type"] = "explicit", - }, - }, + ["max"] = 338, + ["min"] = 6, + }, + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "Adds # to # Lightning Damage", + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3336890334", + ["text"] = "Adds # to # Lightning Damage (Local)", + ["type"] = "explicit", + }, + }, ["1382_LocalLightningDamageTwoHandAndPen"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - ["overrideModLine"] = "Adds # to # Lightning Damage", - }, + ["overrideModLine"] = "Adds # to # Lightning Damage", + }, ["tradeMod"] = { - ["id"] = "explicit.stat_3336890334", - ["text"] = "Adds # to # Lightning Damage (Local)", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_3336890334", + ["text"] = "Adds # to # Lightning Damage (Local)", + ["type"] = "explicit", + }, + }, ["1384_LightningGemCastSpeedForJewel"] = { ["AnyJewel"] = { - ["max"] = 5, - ["min"] = 3, - }, + ["max"] = 5, + ["min"] = 3, + }, ["BaseJewel"] = { - ["max"] = 5, - ["min"] = 3, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1788635023", - ["text"] = "#% increased Cast Speed with Lightning Skills", - ["type"] = "explicit", - }, - }, + ["max"] = 5, + ["min"] = 3, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1788635023", + ["text"] = "#% increased Cast Speed with Lightning Skills", + ["type"] = "explicit", + }, + }, ["1385_ChaosDamageAndChaosSkillDuration"] = { ["1HAxe"] = { - ["max"] = 99, - ["min"] = 35, - }, + ["max"] = 99, + ["min"] = 35, + }, ["1HMace"] = { - ["max"] = 99, - ["min"] = 35, - }, + ["max"] = 99, + ["min"] = 35, + }, ["1HSword"] = { - ["max"] = 99, - ["min"] = 35, - }, + ["max"] = 99, + ["min"] = 35, + }, ["1HWeapon"] = { - ["max"] = 99, - ["min"] = 35, - }, + ["max"] = 99, + ["min"] = 35, + }, ["2HAxe"] = { - ["max"] = 99, - ["min"] = 53, - }, + ["max"] = 99, + ["min"] = 53, + }, ["2HMace"] = { - ["max"] = 99, - ["min"] = 53, - }, + ["max"] = 99, + ["min"] = 53, + }, ["2HSword"] = { - ["max"] = 99, - ["min"] = 53, - }, + ["max"] = 99, + ["min"] = 53, + }, ["2HWeapon"] = { - ["max"] = 99, - ["min"] = 53, - }, + ["max"] = 99, + ["min"] = 53, + }, ["Bow"] = { - ["max"] = 99, - ["min"] = 60, - }, + ["max"] = 99, + ["min"] = 60, + }, ["Claw"] = { - ["max"] = 99, - ["min"] = 35, - }, + ["max"] = 99, + ["min"] = 35, + }, ["Dagger"] = { - ["max"] = 99, - ["min"] = 35, - }, + ["max"] = 99, + ["min"] = 35, + }, ["Staff"] = { - ["max"] = 99, - ["min"] = 53, - }, + ["max"] = 99, + ["min"] = 53, + }, ["Wand"] = { - ["max"] = 99, - ["min"] = 35, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_736967255", - ["text"] = "#% increased Chaos Damage", - ["type"] = "explicit", - }, - }, + ["max"] = 99, + ["min"] = 35, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_736967255", + ["text"] = "#% increased Chaos Damage", + ["type"] = "explicit", + }, + }, ["1385_ChaosDamageForJewel"] = { ["AnyJewel"] = { - ["max"] = 13, - ["min"] = 9, - }, + ["max"] = 13, + ["min"] = 9, + }, ["BaseJewel"] = { - ["max"] = 13, - ["min"] = 9, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_736967255", - ["text"] = "#% increased Chaos Damage", - ["type"] = "explicit", - }, - }, + ["max"] = 13, + ["min"] = 9, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_736967255", + ["text"] = "#% increased Chaos Damage", + ["type"] = "explicit", + }, + }, ["1385_ChaosDamageWeaponPrefix"] = { ["1HAxe"] = { - ["max"] = 54, - ["min"] = 25, - }, + ["max"] = 54, + ["min"] = 25, + }, ["1HMace"] = { - ["max"] = 54, - ["min"] = 25, - }, + ["max"] = 54, + ["min"] = 25, + }, ["1HSword"] = { - ["max"] = 54, - ["min"] = 25, - }, + ["max"] = 54, + ["min"] = 25, + }, ["1HWeapon"] = { - ["max"] = 54, - ["min"] = 25, - }, + ["max"] = 54, + ["min"] = 25, + }, ["Claw"] = { - ["max"] = 54, - ["min"] = 25, - }, + ["max"] = 54, + ["min"] = 25, + }, ["Dagger"] = { - ["max"] = 54, - ["min"] = 25, - }, + ["max"] = 54, + ["min"] = 25, + }, ["Wand"] = { - ["max"] = 54, - ["min"] = 25, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_736967255", - ["text"] = "#% increased Chaos Damage", - ["type"] = "explicit", - }, - }, + ["max"] = 54, + ["min"] = 25, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_736967255", + ["text"] = "#% increased Chaos Damage", + ["type"] = "explicit", + }, + }, ["1385_IncreasedChaosAndPhysicalDamage"] = { ["Ring"] = { - ["max"] = 16, - ["min"] = 11, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_736967255", - ["text"] = "#% increased Chaos Damage", - ["type"] = "explicit", - }, - }, + ["max"] = 16, + ["min"] = 11, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_736967255", + ["text"] = "#% increased Chaos Damage", + ["type"] = "explicit", + }, + }, ["1385_IncreasedChaosDamage"] = { ["1HAxe"] = { - ["max"] = 16, - ["min"] = 9, - }, + ["max"] = 16, + ["min"] = 9, + }, ["1HMace"] = { - ["max"] = 16, - ["min"] = 9, - }, + ["max"] = 16, + ["min"] = 9, + }, ["1HSword"] = { - ["max"] = 16, - ["min"] = 9, - }, + ["max"] = 16, + ["min"] = 9, + }, ["1HWeapon"] = { - ["max"] = 16, - ["min"] = 9, - }, + ["max"] = 16, + ["min"] = 9, + }, ["2HAxe"] = { - ["max"] = 16, - ["min"] = 9, - }, + ["max"] = 16, + ["min"] = 9, + }, ["2HMace"] = { - ["max"] = 16, - ["min"] = 9, - }, + ["max"] = 16, + ["min"] = 9, + }, ["2HSword"] = { - ["max"] = 16, - ["min"] = 9, - }, + ["max"] = 16, + ["min"] = 9, + }, ["2HWeapon"] = { - ["max"] = 16, - ["min"] = 9, - }, + ["max"] = 16, + ["min"] = 9, + }, ["AbyssJewel"] = { - ["max"] = 19, - ["min"] = 13, - }, + ["max"] = 19, + ["min"] = 13, + }, ["Amulet"] = { - ["max"] = 34, - ["min"] = 9, - }, + ["max"] = 34, + ["min"] = 9, + }, ["AnyJewel"] = { - ["max"] = 19, - ["min"] = 13, - }, + ["max"] = 19, + ["min"] = 13, + }, ["BaseJewel"] = { - ["max"] = 19, - ["min"] = 13, - }, + ["max"] = 19, + ["min"] = 13, + }, ["Bow"] = { - ["max"] = 16, - ["min"] = 9, - }, + ["max"] = 16, + ["min"] = 9, + }, ["Claw"] = { - ["max"] = 16, - ["min"] = 9, - }, + ["max"] = 16, + ["min"] = 9, + }, ["Dagger"] = { - ["max"] = 16, - ["min"] = 9, - }, + ["max"] = 16, + ["min"] = 9, + }, ["Ring"] = { - ["max"] = 34, - ["min"] = 9, - }, + ["max"] = 34, + ["min"] = 9, + }, ["Staff"] = { - ["max"] = 16, - ["min"] = 9, - }, + ["max"] = 16, + ["min"] = 9, + }, ["Wand"] = { - ["max"] = 16, - ["min"] = 9, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_736967255", - ["text"] = "#% increased Chaos Damage", - ["type"] = "explicit", - }, - }, + ["max"] = 16, + ["min"] = 9, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_736967255", + ["text"] = "#% increased Chaos Damage", + ["type"] = "explicit", + }, + }, ["1385_IncreasedChaosDamagePrefix"] = { ["Amulet"] = { - ["max"] = 30, - ["min"] = 20, - }, + ["max"] = 30, + ["min"] = 20, + }, ["Belt"] = { - ["max"] = 30, - ["min"] = 16, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_736967255", - ["text"] = "#% increased Chaos Damage", - ["type"] = "explicit", - }, - }, + ["max"] = 30, + ["min"] = 16, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_736967255", + ["text"] = "#% increased Chaos Damage", + ["type"] = "explicit", + }, + }, ["1385_LocalChanceToPoisonOnHitChaosDamage"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_736967255", - ["text"] = "#% increased Chaos Damage", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_736967255", + ["text"] = "#% increased Chaos Damage", + ["type"] = "explicit", + }, + }, ["1385_LocalChaosDamageHybrid"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_736967255", - ["text"] = "#% increased Chaos Damage", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_736967255", + ["text"] = "#% increased Chaos Damage", + ["type"] = "explicit", + }, + }, ["1385_PoisonDurationChaosDamage"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_736967255", - ["text"] = "#% increased Chaos Damage", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_736967255", + ["text"] = "#% increased Chaos Damage", + ["type"] = "explicit", + }, + }, ["1385_SpellAddedChaosDamageHybrid"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_736967255", - ["text"] = "#% increased Chaos Damage", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_736967255", + ["text"] = "#% increased Chaos Damage", + ["type"] = "explicit", + }, + }, ["1385_TwoHandChaosDamageWeaponPrefix"] = { ["2HAxe"] = { - ["max"] = 81, - ["min"] = 37, - }, + ["max"] = 81, + ["min"] = 37, + }, ["2HMace"] = { - ["max"] = 81, - ["min"] = 37, - }, + ["max"] = 81, + ["min"] = 37, + }, ["2HSword"] = { - ["max"] = 81, - ["min"] = 37, - }, + ["max"] = 81, + ["min"] = 37, + }, ["2HWeapon"] = { - ["max"] = 81, - ["min"] = 37, - }, + ["max"] = 81, + ["min"] = 37, + }, ["Staff"] = { - ["max"] = 81, - ["min"] = 37, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_736967255", - ["text"] = "#% increased Chaos Damage", - ["type"] = "explicit", - }, - }, + ["max"] = 81, + ["min"] = 37, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_736967255", + ["text"] = "#% increased Chaos Damage", + ["type"] = "explicit", + }, + }, ["1386_GlobalAddedChaosDamage"] = { ["Gloves"] = { - ["max"] = 25, - ["min"] = 18, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3531280422", - ["text"] = "Adds # to # Chaos Damage", - ["type"] = "explicit", - }, - }, + ["max"] = 25, + ["min"] = 18, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3531280422", + ["text"] = "Adds # to # Chaos Damage", + ["type"] = "explicit", + }, + }, ["1387_AddedChaosSuffix"] = { ["AbyssJewel"] = { - ["max"] = 16, - ["min"] = 8.5, - }, + ["max"] = 16, + ["min"] = 8.5, + }, ["AnyJewel"] = { - ["max"] = 16, - ["min"] = 8.5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_674553446", - ["text"] = "Adds # to # Chaos Damage to Attacks", - ["type"] = "explicit", - }, - }, + ["max"] = 16, + ["min"] = 8.5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_674553446", + ["text"] = "Adds # to # Chaos Damage to Attacks", + ["type"] = "explicit", + }, + }, ["1387_ChaosDamage"] = { ["Amulet"] = { - ["max"] = 21, - ["min"] = 10, - }, + ["max"] = 21, + ["min"] = 10, + }, ["Gloves"] = { - ["max"] = 13, - ["min"] = 10, - }, + ["max"] = 13, + ["min"] = 10, + }, ["Quiver"] = { - ["max"] = 55, - ["min"] = 10, - }, + ["max"] = 55, + ["min"] = 10, + }, ["Ring"] = { - ["max"] = 21, - ["min"] = 10, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_674553446", - ["text"] = "Adds # to # Chaos Damage to Attacks", - ["type"] = "explicit", - }, - }, + ["max"] = 21, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_674553446", + ["text"] = "Adds # to # Chaos Damage to Attacks", + ["type"] = "explicit", + }, + }, ["1390_LocalChaosDamage"] = { ["1HAxe"] = { - ["max"] = 123.5, - ["min"] = 58, - }, + ["max"] = 123.5, + ["min"] = 58, + }, ["1HMace"] = { - ["max"] = 123.5, - ["min"] = 58, - }, + ["max"] = 123.5, + ["min"] = 58, + }, ["1HSword"] = { - ["max"] = 123.5, - ["min"] = 58, - }, + ["max"] = 123.5, + ["min"] = 58, + }, ["1HWeapon"] = { - ["max"] = 123.5, - ["min"] = 58, - }, + ["max"] = 123.5, + ["min"] = 58, + }, ["2HAxe"] = { - ["max"] = 123.5, - ["min"] = 80.5, - }, + ["max"] = 123.5, + ["min"] = 80.5, + }, ["2HMace"] = { - ["max"] = 123.5, - ["min"] = 80.5, - }, + ["max"] = 123.5, + ["min"] = 80.5, + }, ["2HSword"] = { - ["max"] = 123.5, - ["min"] = 80.5, - }, + ["max"] = 123.5, + ["min"] = 80.5, + }, ["2HWeapon"] = { - ["max"] = 123.5, - ["min"] = 80.5, - }, + ["max"] = 123.5, + ["min"] = 80.5, + }, ["Claw"] = { - ["max"] = 123.5, - ["min"] = 58, - }, + ["max"] = 123.5, + ["min"] = 58, + }, ["Dagger"] = { - ["max"] = 123.5, - ["min"] = 58, - }, + ["max"] = 123.5, + ["min"] = 58, + }, ["Wand"] = { - ["max"] = 123.5, - ["min"] = 58, - }, - ["sign"] = "", - ["specialCaseData"] = { - ["overrideModLine"] = "Adds # to # Chaos Damage", - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2223678961", - ["text"] = "Adds # to # Chaos Damage (Local)", - ["type"] = "explicit", - }, - }, + ["max"] = 123.5, + ["min"] = 58, + }, + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "Adds # to # Chaos Damage", + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2223678961", + ["text"] = "Adds # to # Chaos Damage (Local)", + ["type"] = "explicit", + }, + }, ["1390_LocalChaosDamageHybrid"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - ["overrideModLine"] = "Adds # to # Chaos Damage", - }, + ["overrideModLine"] = "Adds # to # Chaos Damage", + }, ["tradeMod"] = { - ["id"] = "explicit.stat_2223678961", - ["text"] = "Adds # to # Chaos Damage (Local)", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_2223678961", + ["text"] = "Adds # to # Chaos Damage (Local)", + ["type"] = "explicit", + }, + }, ["1390_LocalChaosDamagePenetrationHybrid"] = { ["1HAxe"] = { - ["max"] = 34.5, - ["min"] = 8, - }, + ["max"] = 34.5, + ["min"] = 8, + }, ["1HMace"] = { - ["max"] = 34.5, - ["min"] = 8, - }, + ["max"] = 34.5, + ["min"] = 8, + }, ["1HSword"] = { - ["max"] = 34.5, - ["min"] = 8, - }, + ["max"] = 34.5, + ["min"] = 8, + }, ["1HWeapon"] = { - ["max"] = 34.5, - ["min"] = 8, - }, + ["max"] = 34.5, + ["min"] = 8, + }, ["2HAxe"] = { - ["max"] = 64.5, - ["min"] = 8, - }, + ["max"] = 64.5, + ["min"] = 8, + }, ["2HMace"] = { - ["max"] = 64.5, - ["min"] = 8, - }, + ["max"] = 64.5, + ["min"] = 8, + }, ["2HSword"] = { - ["max"] = 64.5, - ["min"] = 8, - }, + ["max"] = 64.5, + ["min"] = 8, + }, ["2HWeapon"] = { - ["max"] = 64.5, - ["min"] = 8, - }, + ["max"] = 64.5, + ["min"] = 8, + }, ["Bow"] = { - ["max"] = 34.5, - ["min"] = 8, - }, + ["max"] = 34.5, + ["min"] = 8, + }, ["Claw"] = { - ["max"] = 34.5, - ["min"] = 8, - }, + ["max"] = 34.5, + ["min"] = 8, + }, ["Dagger"] = { - ["max"] = 34.5, - ["min"] = 8, - }, + ["max"] = 34.5, + ["min"] = 8, + }, ["Staff"] = { - ["max"] = 64.5, - ["min"] = 15, - }, + ["max"] = 64.5, + ["min"] = 15, + }, ["Wand"] = { - ["max"] = 34.5, - ["min"] = 8, - }, - ["sign"] = "", - ["specialCaseData"] = { - ["overrideModLine"] = "Adds # to # Chaos Damage", - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2223678961", - ["text"] = "Adds # to # Chaos Damage (Local)", - ["type"] = "explicit", - }, - }, + ["max"] = 34.5, + ["min"] = 8, + }, + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "Adds # to # Chaos Damage", + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2223678961", + ["text"] = "Adds # to # Chaos Damage (Local)", + ["type"] = "explicit", + }, + }, ["1390_LocalChaosDamageTwoHand"] = { ["1HAxe"] = { - ["max"] = 214.5, - ["min"] = 140.5, - }, + ["max"] = 214.5, + ["min"] = 140.5, + }, ["1HMace"] = { - ["max"] = 214.5, - ["min"] = 140.5, - }, + ["max"] = 214.5, + ["min"] = 140.5, + }, ["1HSword"] = { - ["max"] = 214.5, - ["min"] = 140.5, - }, + ["max"] = 214.5, + ["min"] = 140.5, + }, ["1HWeapon"] = { - ["max"] = 214.5, - ["min"] = 140.5, - }, + ["max"] = 214.5, + ["min"] = 140.5, + }, ["2HAxe"] = { - ["max"] = 214.5, - ["min"] = 105, - }, + ["max"] = 214.5, + ["min"] = 105, + }, ["2HMace"] = { - ["max"] = 214.5, - ["min"] = 105, - }, + ["max"] = 214.5, + ["min"] = 105, + }, ["2HSword"] = { - ["max"] = 214.5, - ["min"] = 105, - }, + ["max"] = 214.5, + ["min"] = 105, + }, ["2HWeapon"] = { - ["max"] = 214.5, - ["min"] = 105, - }, + ["max"] = 214.5, + ["min"] = 105, + }, ["Bow"] = { - ["max"] = 214.5, - ["min"] = 105, - }, + ["max"] = 214.5, + ["min"] = 105, + }, ["Staff"] = { - ["max"] = 214.5, - ["min"] = 105, - }, - ["sign"] = "", - ["specialCaseData"] = { - ["overrideModLine"] = "Adds # to # Chaos Damage", - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2223678961", - ["text"] = "Adds # to # Chaos Damage (Local)", - ["type"] = "explicit", - }, - }, + ["max"] = 214.5, + ["min"] = 105, + }, + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "Adds # to # Chaos Damage", + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2223678961", + ["text"] = "Adds # to # Chaos Damage (Local)", + ["type"] = "explicit", + }, + }, ["1390_LocalIncreasedAttackSpeedAddedChaos"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - ["overrideModLine"] = "Adds # to # Chaos Damage", - }, + ["overrideModLine"] = "Adds # to # Chaos Damage", + }, ["tradeMod"] = { - ["id"] = "explicit.stat_2223678961", - ["text"] = "Adds # to # Chaos Damage (Local)", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_2223678961", + ["text"] = "Adds # to # Chaos Damage (Local)", + ["type"] = "explicit", + }, + }, ["1390_PoisonDamageAddedChaosToAttacks"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_3531280422", - ["text"] = "Adds # to # Chaos Damage", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_3531280422", + ["text"] = "Adds # to # Chaos Damage", + ["type"] = "explicit", + }, + }, ["1403_SpellAddedPhysicalDamage"] = { ["1HMace"] = { - ["max"] = 60, - ["min"] = 34, - }, + ["max"] = 60, + ["min"] = 34, + }, ["1HWeapon"] = { - ["max"] = 60, - ["min"] = 34, - }, + ["max"] = 60, + ["min"] = 34, + }, ["2HWeapon"] = { - ["max"] = 97.5, - ["min"] = 56, - }, + ["max"] = 97.5, + ["min"] = 56, + }, ["Dagger"] = { - ["max"] = 60, - ["min"] = 34, - }, + ["max"] = 60, + ["min"] = 34, + }, ["Helmet"] = { - ["max"] = 61, - ["min"] = 25, - }, + ["max"] = 61, + ["min"] = 25, + }, ["Staff"] = { - ["max"] = 97.5, - ["min"] = 56, - }, + ["max"] = 97.5, + ["min"] = 56, + }, ["Wand"] = { - ["max"] = 60, - ["min"] = 34, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2435536961", - ["text"] = "Adds # to # Physical Damage to Spells", - ["type"] = "explicit", - }, - }, + ["max"] = 60, + ["min"] = 34, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2435536961", + ["text"] = "Adds # to # Physical Damage to Spells", + ["type"] = "explicit", + }, + }, ["1403_SpellAddedPhysicalDamageHybrid"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_2435536961", - ["text"] = "Adds # to # Physical Damage to Spells", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_2435536961", + ["text"] = "Adds # to # Physical Damage to Spells", + ["type"] = "explicit", + }, + }, ["1403_SpellAddedPhysicalSuffix"] = { ["AbyssJewel"] = { - ["max"] = 19, - ["min"] = 4.5, - }, + ["max"] = 19, + ["min"] = 4.5, + }, ["AnyJewel"] = { - ["max"] = 19, - ["min"] = 4.5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2435536961", - ["text"] = "Adds # to # Physical Damage to Spells", - ["type"] = "explicit", - }, - }, + ["max"] = 19, + ["min"] = 4.5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2435536961", + ["text"] = "Adds # to # Physical Damage to Spells", + ["type"] = "explicit", + }, + }, ["1404_FireDamageWeaponPrefixAndFlat"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1133016593", - ["text"] = "Adds # to # Fire Damage to Spells", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1133016593", + ["text"] = "Adds # to # Fire Damage to Spells", + ["type"] = "explicit", + }, + }, ["1404_SpellAddedFireDamage"] = { ["1HAxe"] = { - ["max"] = 90.5, - ["min"] = 17.5, - }, + ["max"] = 90.5, + ["min"] = 17.5, + }, ["1HMace"] = { - ["max"] = 90.5, - ["min"] = 2, - }, + ["max"] = 90.5, + ["min"] = 2, + }, ["1HSword"] = { - ["max"] = 90.5, - ["min"] = 17.5, - }, + ["max"] = 90.5, + ["min"] = 17.5, + }, ["1HWeapon"] = { - ["max"] = 90.5, - ["min"] = 2, - }, + ["max"] = 90.5, + ["min"] = 2, + }, ["Claw"] = { - ["max"] = 90.5, - ["min"] = 17.5, - }, + ["max"] = 90.5, + ["min"] = 17.5, + }, ["Dagger"] = { - ["max"] = 90.5, - ["min"] = 2, - }, + ["max"] = 90.5, + ["min"] = 2, + }, ["Wand"] = { - ["max"] = 90.5, - ["min"] = 2, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1133016593", - ["text"] = "Adds # to # Fire Damage to Spells", - ["type"] = "explicit", - }, - }, + ["max"] = 90.5, + ["min"] = 2, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1133016593", + ["text"] = "Adds # to # Fire Damage to Spells", + ["type"] = "explicit", + }, + }, ["1404_SpellAddedFireDamageHybrid"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1133016593", - ["text"] = "Adds # to # Fire Damage to Spells", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1133016593", + ["text"] = "Adds # to # Fire Damage to Spells", + ["type"] = "explicit", + }, + }, ["1404_SpellAddedFireDamagePenetrationHybrid"] = { ["1HMace"] = { - ["max"] = 38.5, - ["min"] = 9, - }, + ["max"] = 38.5, + ["min"] = 9, + }, ["1HWeapon"] = { - ["max"] = 38.5, - ["min"] = 9, - }, + ["max"] = 38.5, + ["min"] = 9, + }, ["2HWeapon"] = { - ["max"] = 52, - ["min"] = 12.5, - }, + ["max"] = 52, + ["min"] = 12.5, + }, ["Dagger"] = { - ["max"] = 38.5, - ["min"] = 9, - }, + ["max"] = 38.5, + ["min"] = 9, + }, ["Staff"] = { - ["max"] = 52, - ["min"] = 12.5, - }, + ["max"] = 52, + ["min"] = 12.5, + }, ["Wand"] = { - ["max"] = 38.5, - ["min"] = 9, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1133016593", - ["text"] = "Adds # to # Fire Damage to Spells", - ["type"] = "explicit", - }, - }, + ["max"] = 38.5, + ["min"] = 9, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1133016593", + ["text"] = "Adds # to # Fire Damage to Spells", + ["type"] = "explicit", + }, + }, ["1404_SpellAddedFireDamageTwoHand"] = { ["2HAxe"] = { - ["max"] = 121.5, - ["min"] = 23.5, - }, + ["max"] = 121.5, + ["min"] = 23.5, + }, ["2HMace"] = { - ["max"] = 121.5, - ["min"] = 23.5, - }, + ["max"] = 121.5, + ["min"] = 23.5, + }, ["2HSword"] = { - ["max"] = 121.5, - ["min"] = 23.5, - }, + ["max"] = 121.5, + ["min"] = 23.5, + }, ["2HWeapon"] = { - ["max"] = 121.5, - ["min"] = 2.5, - }, + ["max"] = 121.5, + ["min"] = 2.5, + }, ["Bow"] = { - ["max"] = 121.5, - ["min"] = 48.5, - }, + ["max"] = 121.5, + ["min"] = 48.5, + }, ["Staff"] = { - ["max"] = 121.5, - ["min"] = 2.5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1133016593", - ["text"] = "Adds # to # Fire Damage to Spells", - ["type"] = "explicit", - }, - }, + ["max"] = 121.5, + ["min"] = 2.5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1133016593", + ["text"] = "Adds # to # Fire Damage to Spells", + ["type"] = "explicit", + }, + }, ["1404_SpellAddedFireDamageUber"] = { ["Helmet"] = { - ["max"] = 61, - ["min"] = 25, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1133016593", - ["text"] = "Adds # to # Fire Damage to Spells", - ["type"] = "explicit", - }, - }, + ["max"] = 61, + ["min"] = 25, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1133016593", + ["text"] = "Adds # to # Fire Damage to Spells", + ["type"] = "explicit", + }, + }, ["1404_SpellAddedFireSuffix"] = { ["AbyssJewel"] = { - ["max"] = 27.5, - ["min"] = 7.5, - }, + ["max"] = 27.5, + ["min"] = 7.5, + }, ["AnyJewel"] = { - ["max"] = 27.5, - ["min"] = 7.5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1133016593", - ["text"] = "Adds # to # Fire Damage to Spells", - ["type"] = "explicit", - }, - }, + ["max"] = 27.5, + ["min"] = 7.5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1133016593", + ["text"] = "Adds # to # Fire Damage to Spells", + ["type"] = "explicit", + }, + }, ["1404_TwoHandFireDamageWeaponPrefixAndFlat"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1133016593", - ["text"] = "Adds # to # Fire Damage to Spells", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1133016593", + ["text"] = "Adds # to # Fire Damage to Spells", + ["type"] = "explicit", + }, + }, ["1405_ColdDamageWeaponPrefixAndFlat"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_2469416729", - ["text"] = "Adds # to # Cold Damage to Spells", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_2469416729", + ["text"] = "Adds # to # Cold Damage to Spells", + ["type"] = "explicit", + }, + }, ["1405_SpellAddedColdDamage"] = { ["1HAxe"] = { - ["max"] = 73.5, - ["min"] = 14.5, - }, + ["max"] = 73.5, + ["min"] = 14.5, + }, ["1HMace"] = { - ["max"] = 73.5, - ["min"] = 1.5, - }, + ["max"] = 73.5, + ["min"] = 1.5, + }, ["1HSword"] = { - ["max"] = 73.5, - ["min"] = 14.5, - }, + ["max"] = 73.5, + ["min"] = 14.5, + }, ["1HWeapon"] = { - ["max"] = 73.5, - ["min"] = 1.5, - }, + ["max"] = 73.5, + ["min"] = 1.5, + }, ["Claw"] = { - ["max"] = 73.5, - ["min"] = 14.5, - }, + ["max"] = 73.5, + ["min"] = 14.5, + }, ["Dagger"] = { - ["max"] = 73.5, - ["min"] = 1.5, - }, + ["max"] = 73.5, + ["min"] = 1.5, + }, ["Wand"] = { - ["max"] = 73.5, - ["min"] = 1.5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2469416729", - ["text"] = "Adds # to # Cold Damage to Spells", - ["type"] = "explicit", - }, - }, + ["max"] = 73.5, + ["min"] = 1.5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2469416729", + ["text"] = "Adds # to # Cold Damage to Spells", + ["type"] = "explicit", + }, + }, ["1405_SpellAddedColdDamageHybrid"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_2469416729", - ["text"] = "Adds # to # Cold Damage to Spells", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_2469416729", + ["text"] = "Adds # to # Cold Damage to Spells", + ["type"] = "explicit", + }, + }, ["1405_SpellAddedColdDamagePenetrationHybrid"] = { ["1HMace"] = { - ["max"] = 31.5, - ["min"] = 7.5, - }, + ["max"] = 31.5, + ["min"] = 7.5, + }, ["1HWeapon"] = { - ["max"] = 31.5, - ["min"] = 7.5, - }, + ["max"] = 31.5, + ["min"] = 7.5, + }, ["2HWeapon"] = { - ["max"] = 47, - ["min"] = 11.5, - }, + ["max"] = 47, + ["min"] = 11.5, + }, ["Dagger"] = { - ["max"] = 31.5, - ["min"] = 7.5, - }, + ["max"] = 31.5, + ["min"] = 7.5, + }, ["Staff"] = { - ["max"] = 47, - ["min"] = 11.5, - }, + ["max"] = 47, + ["min"] = 11.5, + }, ["Wand"] = { - ["max"] = 31.5, - ["min"] = 7.5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2469416729", - ["text"] = "Adds # to # Cold Damage to Spells", - ["type"] = "explicit", - }, - }, + ["max"] = 31.5, + ["min"] = 7.5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2469416729", + ["text"] = "Adds # to # Cold Damage to Spells", + ["type"] = "explicit", + }, + }, ["1405_SpellAddedColdDamageTwoHand"] = { ["2HAxe"] = { - ["max"] = 110.5, - ["min"] = 21, - }, + ["max"] = 110.5, + ["min"] = 21, + }, ["2HMace"] = { - ["max"] = 110.5, - ["min"] = 21, - }, + ["max"] = 110.5, + ["min"] = 21, + }, ["2HSword"] = { - ["max"] = 110.5, - ["min"] = 21, - }, + ["max"] = 110.5, + ["min"] = 21, + }, ["2HWeapon"] = { - ["max"] = 110.5, - ["min"] = 2, - }, + ["max"] = 110.5, + ["min"] = 2, + }, ["Bow"] = { - ["max"] = 110.5, - ["min"] = 24.5, - }, + ["max"] = 110.5, + ["min"] = 24.5, + }, ["Staff"] = { - ["max"] = 110.5, - ["min"] = 2, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2469416729", - ["text"] = "Adds # to # Cold Damage to Spells", - ["type"] = "explicit", - }, - }, + ["max"] = 110.5, + ["min"] = 2, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2469416729", + ["text"] = "Adds # to # Cold Damage to Spells", + ["type"] = "explicit", + }, + }, ["1405_SpellAddedColdDamageUber"] = { ["Helmet"] = { - ["max"] = 50, - ["min"] = 20.5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2469416729", - ["text"] = "Adds # to # Cold Damage to Spells", - ["type"] = "explicit", - }, - }, + ["max"] = 50, + ["min"] = 20.5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2469416729", + ["text"] = "Adds # to # Cold Damage to Spells", + ["type"] = "explicit", + }, + }, ["1405_SpellAddedColdSuffix"] = { ["AbyssJewel"] = { - ["max"] = 27.5, - ["min"] = 7.5, - }, + ["max"] = 27.5, + ["min"] = 7.5, + }, ["AnyJewel"] = { - ["max"] = 27.5, - ["min"] = 7.5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2469416729", - ["text"] = "Adds # to # Cold Damage to Spells", - ["type"] = "explicit", - }, - }, + ["max"] = 27.5, + ["min"] = 7.5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2469416729", + ["text"] = "Adds # to # Cold Damage to Spells", + ["type"] = "explicit", + }, + }, ["1405_TwoHandColdDamageWeaponPrefixAndFlat"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_2469416729", - ["text"] = "Adds # to # Cold Damage to Spells", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_2469416729", + ["text"] = "Adds # to # Cold Damage to Spells", + ["type"] = "explicit", + }, + }, ["1406_LightningDamageWeaponPrefixAndFlat"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_2831165374", - ["text"] = "Adds # to # Lightning Damage to Spells", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_2831165374", + ["text"] = "Adds # to # Lightning Damage to Spells", + ["type"] = "explicit", + }, + }, ["1406_SpellAddedLightningDamage"] = { ["1HAxe"] = { - ["max"] = 96.5, - ["min"] = 11, - }, + ["max"] = 96.5, + ["min"] = 11, + }, ["1HMace"] = { - ["max"] = 96.5, - ["min"] = 2.5, - }, + ["max"] = 96.5, + ["min"] = 2.5, + }, ["1HSword"] = { - ["max"] = 96.5, - ["min"] = 11, - }, + ["max"] = 96.5, + ["min"] = 11, + }, ["1HWeapon"] = { - ["max"] = 96.5, - ["min"] = 2.5, - }, + ["max"] = 96.5, + ["min"] = 2.5, + }, ["Claw"] = { - ["max"] = 96.5, - ["min"] = 11, - }, + ["max"] = 96.5, + ["min"] = 11, + }, ["Dagger"] = { - ["max"] = 96.5, - ["min"] = 2.5, - }, + ["max"] = 96.5, + ["min"] = 2.5, + }, ["Wand"] = { - ["max"] = 96.5, - ["min"] = 2.5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2831165374", - ["text"] = "Adds # to # Lightning Damage to Spells", - ["type"] = "explicit", - }, - }, + ["max"] = 96.5, + ["min"] = 2.5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2831165374", + ["text"] = "Adds # to # Lightning Damage to Spells", + ["type"] = "explicit", + }, + }, ["1406_SpellAddedLightningDamageHybrid"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_2831165374", - ["text"] = "Adds # to # Lightning Damage to Spells", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_2831165374", + ["text"] = "Adds # to # Lightning Damage to Spells", + ["type"] = "explicit", + }, + }, ["1406_SpellAddedLightningDamagePenetrationHybrid"] = { ["1HMace"] = { - ["max"] = 41.5, - ["min"] = 11, - }, + ["max"] = 41.5, + ["min"] = 11, + }, ["1HWeapon"] = { - ["max"] = 41.5, - ["min"] = 11, - }, + ["max"] = 41.5, + ["min"] = 11, + }, ["2HWeapon"] = { - ["max"] = 62, - ["min"] = 16.5, - }, + ["max"] = 62, + ["min"] = 16.5, + }, ["Dagger"] = { - ["max"] = 41.5, - ["min"] = 11, - }, + ["max"] = 41.5, + ["min"] = 11, + }, ["Staff"] = { - ["max"] = 62, - ["min"] = 16.5, - }, + ["max"] = 62, + ["min"] = 16.5, + }, ["Wand"] = { - ["max"] = 41.5, - ["min"] = 11, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2831165374", - ["text"] = "Adds # to # Lightning Damage to Spells", - ["type"] = "explicit", - }, - }, + ["max"] = 41.5, + ["min"] = 11, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2831165374", + ["text"] = "Adds # to # Lightning Damage to Spells", + ["type"] = "explicit", + }, + }, ["1406_SpellAddedLightningDamageTwoHand"] = { ["2HAxe"] = { - ["max"] = 145, - ["min"] = 16.5, - }, + ["max"] = 145, + ["min"] = 16.5, + }, ["2HMace"] = { - ["max"] = 145, - ["min"] = 16.5, - }, + ["max"] = 145, + ["min"] = 16.5, + }, ["2HSword"] = { - ["max"] = 145, - ["min"] = 16.5, - }, + ["max"] = 145, + ["min"] = 16.5, + }, ["2HWeapon"] = { - ["max"] = 145, - ["min"] = 3.5, - }, + ["max"] = 145, + ["min"] = 3.5, + }, ["Bow"] = { - ["max"] = 145, - ["min"] = 16.5, - }, + ["max"] = 145, + ["min"] = 16.5, + }, ["Staff"] = { - ["max"] = 145, - ["min"] = 3.5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2831165374", - ["text"] = "Adds # to # Lightning Damage to Spells", - ["type"] = "explicit", - }, - }, + ["max"] = 145, + ["min"] = 3.5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2831165374", + ["text"] = "Adds # to # Lightning Damage to Spells", + ["type"] = "explicit", + }, + }, ["1406_SpellAddedLightningDamageUber"] = { ["Helmet"] = { - ["max"] = 64.5, - ["min"] = 30, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2831165374", - ["text"] = "Adds # to # Lightning Damage to Spells", - ["type"] = "explicit", - }, - }, + ["max"] = 64.5, + ["min"] = 30, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2831165374", + ["text"] = "Adds # to # Lightning Damage to Spells", + ["type"] = "explicit", + }, + }, ["1406_SpellAddedLightningSuffix"] = { ["AbyssJewel"] = { - ["max"] = 25.5, - ["min"] = 8, - }, + ["max"] = 25.5, + ["min"] = 8, + }, ["AnyJewel"] = { - ["max"] = 25.5, - ["min"] = 8, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2831165374", - ["text"] = "Adds # to # Lightning Damage to Spells", - ["type"] = "explicit", - }, - }, + ["max"] = 25.5, + ["min"] = 8, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2831165374", + ["text"] = "Adds # to # Lightning Damage to Spells", + ["type"] = "explicit", + }, + }, ["1406_TwoHandLightningDamageWeaponPrefixAndFlat"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_2831165374", - ["text"] = "Adds # to # Lightning Damage to Spells", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_2831165374", + ["text"] = "Adds # to # Lightning Damage to Spells", + ["type"] = "explicit", + }, + }, ["1407_IncreasedCastSpeedAddedChaos"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_2300399854", - ["text"] = "Adds # to # Chaos Damage to Spells", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_2300399854", + ["text"] = "Adds # to # Chaos Damage to Spells", + ["type"] = "explicit", + }, + }, ["1407_PoisonDamageAddedChaosToSpells"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_2300399854", - ["text"] = "Adds # to # Chaos Damage to Spells", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_2300399854", + ["text"] = "Adds # to # Chaos Damage to Spells", + ["type"] = "explicit", + }, + }, ["1407_SpellAddedChaosDamage"] = { ["1HMace"] = { - ["max"] = 60, - ["min"] = 34, - }, + ["max"] = 60, + ["min"] = 34, + }, ["1HWeapon"] = { - ["max"] = 60, - ["min"] = 34, - }, + ["max"] = 60, + ["min"] = 34, + }, ["2HWeapon"] = { - ["max"] = 97.5, - ["min"] = 56, - }, + ["max"] = 97.5, + ["min"] = 56, + }, ["Dagger"] = { - ["max"] = 60, - ["min"] = 34, - }, + ["max"] = 60, + ["min"] = 34, + }, ["Helmet"] = { - ["max"] = 50, - ["min"] = 20.5, - }, + ["max"] = 50, + ["min"] = 20.5, + }, ["Staff"] = { - ["max"] = 97.5, - ["min"] = 56, - }, + ["max"] = 97.5, + ["min"] = 56, + }, ["Wand"] = { - ["max"] = 60, - ["min"] = 34, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2300399854", - ["text"] = "Adds # to # Chaos Damage to Spells", - ["type"] = "explicit", - }, - }, + ["max"] = 60, + ["min"] = 34, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2300399854", + ["text"] = "Adds # to # Chaos Damage to Spells", + ["type"] = "explicit", + }, + }, ["1407_SpellAddedChaosDamageHybrid"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_2300399854", - ["text"] = "Adds # to # Chaos Damage to Spells", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_2300399854", + ["text"] = "Adds # to # Chaos Damage to Spells", + ["type"] = "explicit", + }, + }, ["1407_SpellAddedChaosSuffix"] = { ["AbyssJewel"] = { - ["max"] = 19, - ["min"] = 4.5, - }, + ["max"] = 19, + ["min"] = 4.5, + }, ["AnyJewel"] = { - ["max"] = 19, - ["min"] = 4.5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2300399854", - ["text"] = "Adds # to # Chaos Damage to Spells", - ["type"] = "explicit", - }, - }, + ["max"] = 19, + ["min"] = 4.5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2300399854", + ["text"] = "Adds # to # Chaos Damage to Spells", + ["type"] = "explicit", + }, + }, ["1409_AddedLightningDamageSpellsAndAttacks"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_2885144362", - ["text"] = "Adds # to # Lightning Damage to Spells and Attacks", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_2885144362", + ["text"] = "Adds # to # Lightning Damage to Spells and Attacks", + ["type"] = "explicit", + }, + }, ["1410_IncreasedAttackSpeed"] = { ["Amulet"] = { - ["max"] = 13, - ["min"] = 7, - }, + ["max"] = 13, + ["min"] = 7, + }, ["Gloves"] = { - ["max"] = 18, - ["min"] = 5, - }, + ["max"] = 18, + ["min"] = 5, + }, ["Quiver"] = { - ["max"] = 16, - ["min"] = 5, - }, + ["max"] = 16, + ["min"] = 5, + }, ["Ring"] = { - ["max"] = 7, - ["min"] = 3, - }, + ["max"] = 7, + ["min"] = 3, + }, ["Shield"] = { - ["max"] = 16, - ["min"] = 5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_681332047", - ["text"] = "#% increased Attack Speed", - ["type"] = "explicit", - }, - }, + ["max"] = 16, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_681332047", + ["text"] = "#% increased Attack Speed", + ["type"] = "explicit", + }, + }, ["1410_IncreasedAttackSpeedForJewel"] = { ["AbyssJewel"] = { - ["max"] = 5, - ["min"] = 3, - }, + ["max"] = 5, + ["min"] = 3, + }, ["AnyJewel"] = { - ["max"] = 5, - ["min"] = 3, - }, + ["max"] = 5, + ["min"] = 3, + }, ["BaseJewel"] = { - ["max"] = 5, - ["min"] = 3, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_681332047", - ["text"] = "#% increased Attack Speed", - ["type"] = "explicit", - }, - }, + ["max"] = 5, + ["min"] = 3, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_681332047", + ["text"] = "#% increased Attack Speed", + ["type"] = "explicit", + }, + }, ["1410_IncreasedAttackSpeedSupported"] = { ["Gloves"] = { - ["max"] = 14, - ["min"] = 7, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_681332047", - ["text"] = "#% increased Attack Speed", - ["type"] = "explicit", - }, - }, + ["max"] = 14, + ["min"] = 7, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_681332047", + ["text"] = "#% increased Attack Speed", + ["type"] = "explicit", + }, + }, ["1413_AttackSpeedDoubleDamage"] = { ["2HAxe"] = { - ["max"] = 21, - ["min"] = 17, - }, + ["max"] = 21, + ["min"] = 17, + }, ["2HMace"] = { - ["max"] = 21, - ["min"] = 17, - }, + ["max"] = 21, + ["min"] = 17, + }, ["2HSword"] = { - ["max"] = 21, - ["min"] = 17, - }, + ["max"] = 21, + ["min"] = 17, + }, ["2HWeapon"] = { - ["max"] = 21, - ["min"] = 8, - }, + ["max"] = 21, + ["min"] = 8, + }, ["Bow"] = { - ["max"] = 12, - ["min"] = 8, - }, + ["max"] = 12, + ["min"] = 8, + }, ["Staff"] = { - ["max"] = 21, - ["min"] = 17, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_681332047", - ["text"] = "#% increased Attack Speed", - ["type"] = "explicit", - }, - }, + ["max"] = 21, + ["min"] = 17, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_681332047", + ["text"] = "#% increased Attack Speed", + ["type"] = "explicit", + }, + }, ["1413_AttackSpeedKilledRecently"] = { ["2HAxe"] = { - ["max"] = 21, - ["min"] = 17, - }, + ["max"] = 21, + ["min"] = 17, + }, ["2HMace"] = { - ["max"] = 21, - ["min"] = 17, - }, + ["max"] = 21, + ["min"] = 17, + }, ["2HSword"] = { - ["max"] = 21, - ["min"] = 17, - }, + ["max"] = 21, + ["min"] = 17, + }, ["2HWeapon"] = { - ["max"] = 21, - ["min"] = 8, - }, + ["max"] = 21, + ["min"] = 8, + }, ["Bow"] = { - ["max"] = 12, - ["min"] = 8, - }, + ["max"] = 12, + ["min"] = 8, + }, ["Staff"] = { - ["max"] = 21, - ["min"] = 17, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_681332047", - ["text"] = "#% increased Attack Speed", - ["type"] = "explicit", - }, - }, + ["max"] = 21, + ["min"] = 17, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_681332047", + ["text"] = "#% increased Attack Speed", + ["type"] = "explicit", + }, + }, ["1413_LocalAttackSpeedAndLocalDisplayTriggerLevel1BloodRageOnKillChance"] = { ["1HAxe"] = { - ["max"] = 22, - ["min"] = 8, - }, + ["max"] = 22, + ["min"] = 8, + }, ["1HMace"] = { - ["max"] = 22, - ["min"] = 8, - }, + ["max"] = 22, + ["min"] = 8, + }, ["1HSword"] = { - ["max"] = 22, - ["min"] = 8, - }, + ["max"] = 22, + ["min"] = 8, + }, ["1HWeapon"] = { - ["max"] = 22, - ["min"] = 8, - }, + ["max"] = 22, + ["min"] = 8, + }, ["2HAxe"] = { - ["max"] = 22, - ["min"] = 8, - }, + ["max"] = 22, + ["min"] = 8, + }, ["2HMace"] = { - ["max"] = 22, - ["min"] = 8, - }, + ["max"] = 22, + ["min"] = 8, + }, ["2HSword"] = { - ["max"] = 22, - ["min"] = 8, - }, + ["max"] = 22, + ["min"] = 8, + }, ["2HWeapon"] = { - ["max"] = 22, - ["min"] = 8, - }, + ["max"] = 22, + ["min"] = 8, + }, ["Bow"] = { - ["max"] = 22, - ["min"] = 8, - }, + ["max"] = 22, + ["min"] = 8, + }, ["Claw"] = { - ["max"] = 22, - ["min"] = 8, - }, + ["max"] = 22, + ["min"] = 8, + }, ["Dagger"] = { - ["max"] = 22, - ["min"] = 8, - }, + ["max"] = 22, + ["min"] = 8, + }, ["Staff"] = { - ["max"] = 22, - ["min"] = 8, - }, + ["max"] = 22, + ["min"] = 8, + }, ["Wand"] = { - ["max"] = 22, - ["min"] = 8, - }, - ["sign"] = "", - ["specialCaseData"] = { - ["overrideModLine"] = "#% increased Attack Speed", - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_210067635", - ["text"] = "#% increased Attack Speed (Local)", - ["type"] = "explicit", - }, - }, + ["max"] = 22, + ["min"] = 8, + }, + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "#% increased Attack Speed", + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_210067635", + ["text"] = "#% increased Attack Speed (Local)", + ["type"] = "explicit", + }, + }, ["1413_LocalAttackSpeedAndLocalItemQuality"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - ["overrideModLine"] = "#% increased Attack Speed", - }, + ["overrideModLine"] = "#% increased Attack Speed", + }, ["tradeMod"] = { - ["id"] = "explicit.stat_210067635", - ["text"] = "#% increased Attack Speed (Local)", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_210067635", + ["text"] = "#% increased Attack Speed (Local)", + ["type"] = "explicit", + }, + }, ["1413_LocalAttackSpeedDexterityIntelligence"] = { ["1HAxe"] = { - ["max"] = 22, - ["min"] = 8, - }, + ["max"] = 22, + ["min"] = 8, + }, ["1HMace"] = { - ["max"] = 22, - ["min"] = 8, - }, + ["max"] = 22, + ["min"] = 8, + }, ["1HSword"] = { - ["max"] = 22, - ["min"] = 8, - }, + ["max"] = 22, + ["min"] = 8, + }, ["1HWeapon"] = { - ["max"] = 22, - ["min"] = 8, - }, + ["max"] = 22, + ["min"] = 8, + }, ["2HAxe"] = { - ["max"] = 22, - ["min"] = 8, - }, + ["max"] = 22, + ["min"] = 8, + }, ["2HMace"] = { - ["max"] = 22, - ["min"] = 8, - }, + ["max"] = 22, + ["min"] = 8, + }, ["2HSword"] = { - ["max"] = 22, - ["min"] = 8, - }, + ["max"] = 22, + ["min"] = 8, + }, ["2HWeapon"] = { - ["max"] = 22, - ["min"] = 8, - }, + ["max"] = 22, + ["min"] = 8, + }, ["Bow"] = { - ["max"] = 22, - ["min"] = 8, - }, + ["max"] = 22, + ["min"] = 8, + }, ["Claw"] = { - ["max"] = 22, - ["min"] = 8, - }, + ["max"] = 22, + ["min"] = 8, + }, ["Dagger"] = { - ["max"] = 22, - ["min"] = 8, - }, + ["max"] = 22, + ["min"] = 8, + }, ["Staff"] = { - ["max"] = 22, - ["min"] = 8, - }, + ["max"] = 22, + ["min"] = 8, + }, ["Wand"] = { - ["max"] = 22, - ["min"] = 8, - }, - ["sign"] = "", - ["specialCaseData"] = { - ["overrideModLine"] = "#% increased Attack Speed", - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_210067635", - ["text"] = "#% increased Attack Speed (Local)", - ["type"] = "explicit", - }, - }, + ["max"] = 22, + ["min"] = 8, + }, + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "#% increased Attack Speed", + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_210067635", + ["text"] = "#% increased Attack Speed (Local)", + ["type"] = "explicit", + }, + }, ["1413_LocalIncreasedAttackSpeed"] = { ["1HAxe"] = { - ["max"] = 30, - ["min"] = 5, - }, + ["max"] = 30, + ["min"] = 5, + }, ["1HMace"] = { - ["max"] = 30, - ["min"] = 5, - }, + ["max"] = 30, + ["min"] = 5, + }, ["1HSword"] = { - ["max"] = 30, - ["min"] = 5, - }, + ["max"] = 30, + ["min"] = 5, + }, ["1HWeapon"] = { - ["max"] = 30, - ["min"] = 5, - }, + ["max"] = 30, + ["min"] = 5, + }, ["2HAxe"] = { - ["max"] = 30, - ["min"] = 5, - }, + ["max"] = 30, + ["min"] = 5, + }, ["2HMace"] = { - ["max"] = 30, - ["min"] = 5, - }, + ["max"] = 30, + ["min"] = 5, + }, ["2HSword"] = { - ["max"] = 30, - ["min"] = 5, - }, + ["max"] = 30, + ["min"] = 5, + }, ["2HWeapon"] = { - ["max"] = 30, - ["min"] = 5, - }, + ["max"] = 30, + ["min"] = 5, + }, ["Bow"] = { - ["max"] = 27, - ["min"] = 5, - }, + ["max"] = 27, + ["min"] = 5, + }, ["Claw"] = { - ["max"] = 30, - ["min"] = 5, - }, + ["max"] = 30, + ["min"] = 5, + }, ["Dagger"] = { - ["max"] = 30, - ["min"] = 5, - }, + ["max"] = 30, + ["min"] = 5, + }, ["Staff"] = { - ["max"] = 30, - ["min"] = 5, - }, + ["max"] = 30, + ["min"] = 5, + }, ["Wand"] = { - ["max"] = 27, - ["min"] = 5, - }, - ["sign"] = "", - ["specialCaseData"] = { - ["overrideModLine"] = "#% increased Attack Speed", - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_210067635", - ["text"] = "#% increased Attack Speed (Local)", - ["type"] = "explicit", - }, - }, + ["max"] = 27, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "#% increased Attack Speed", + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_210067635", + ["text"] = "#% increased Attack Speed (Local)", + ["type"] = "explicit", + }, + }, ["1413_LocalIncreasedAttackSpeedAddedChaos"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - ["overrideModLine"] = "#% increased Attack Speed", - }, + ["overrideModLine"] = "#% increased Attack Speed", + }, ["tradeMod"] = { - ["id"] = "explicit.stat_210067635", - ["text"] = "#% increased Attack Speed (Local)", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_210067635", + ["text"] = "#% increased Attack Speed (Local)", + ["type"] = "explicit", + }, + }, ["1413_LocalIncreasedAttackSpeedFasterAttacks"] = { ["1HAxe"] = { - ["max"] = 21, - ["min"] = 17, - }, + ["max"] = 21, + ["min"] = 17, + }, ["1HMace"] = { - ["max"] = 21, - ["min"] = 17, - }, + ["max"] = 21, + ["min"] = 17, + }, ["1HSword"] = { - ["max"] = 21, - ["min"] = 17, - }, + ["max"] = 21, + ["min"] = 17, + }, ["1HWeapon"] = { - ["max"] = 21, - ["min"] = 8, - }, + ["max"] = 21, + ["min"] = 8, + }, ["2HAxe"] = { - ["max"] = 21, - ["min"] = 17, - }, + ["max"] = 21, + ["min"] = 17, + }, ["2HMace"] = { - ["max"] = 21, - ["min"] = 17, - }, + ["max"] = 21, + ["min"] = 17, + }, ["2HSword"] = { - ["max"] = 21, - ["min"] = 17, - }, + ["max"] = 21, + ["min"] = 17, + }, ["2HWeapon"] = { - ["max"] = 21, - ["min"] = 17, - }, + ["max"] = 21, + ["min"] = 17, + }, ["Claw"] = { - ["max"] = 21, - ["min"] = 17, - }, + ["max"] = 21, + ["min"] = 17, + }, ["Dagger"] = { - ["max"] = 21, - ["min"] = 17, - }, + ["max"] = 21, + ["min"] = 17, + }, ["Wand"] = { - ["max"] = 12, - ["min"] = 8, - }, - ["sign"] = "", - ["specialCaseData"] = { - ["overrideModLine"] = "#% increased Attack Speed", - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_210067635", - ["text"] = "#% increased Attack Speed (Local)", - ["type"] = "explicit", - }, - }, + ["max"] = 12, + ["min"] = 8, + }, + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "#% increased Attack Speed", + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_210067635", + ["text"] = "#% increased Attack Speed (Local)", + ["type"] = "explicit", + }, + }, ["1413_LocalIncreasedAttackSpeedMultistrike"] = { ["1HAxe"] = { - ["max"] = 21, - ["min"] = 17, - }, + ["max"] = 21, + ["min"] = 17, + }, ["1HMace"] = { - ["max"] = 21, - ["min"] = 17, - }, + ["max"] = 21, + ["min"] = 17, + }, ["1HSword"] = { - ["max"] = 21, - ["min"] = 17, - }, + ["max"] = 21, + ["min"] = 17, + }, ["1HWeapon"] = { - ["max"] = 21, - ["min"] = 17, - }, + ["max"] = 21, + ["min"] = 17, + }, ["2HAxe"] = { - ["max"] = 21, - ["min"] = 17, - }, + ["max"] = 21, + ["min"] = 17, + }, ["2HMace"] = { - ["max"] = 21, - ["min"] = 17, - }, + ["max"] = 21, + ["min"] = 17, + }, ["2HSword"] = { - ["max"] = 21, - ["min"] = 17, - }, + ["max"] = 21, + ["min"] = 17, + }, ["2HWeapon"] = { - ["max"] = 21, - ["min"] = 17, - }, + ["max"] = 21, + ["min"] = 17, + }, ["Claw"] = { - ["max"] = 21, - ["min"] = 17, - }, + ["max"] = 21, + ["min"] = 17, + }, ["Dagger"] = { - ["max"] = 21, - ["min"] = 17, - }, - ["sign"] = "", - ["specialCaseData"] = { - ["overrideModLine"] = "#% increased Attack Speed", - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_210067635", - ["text"] = "#% increased Attack Speed (Local)", - ["type"] = "explicit", - }, - }, + ["max"] = 21, + ["min"] = 17, + }, + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "#% increased Attack Speed", + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_210067635", + ["text"] = "#% increased Attack Speed (Local)", + ["type"] = "explicit", + }, + }, ["1413_LocalIncreasedAttackSpeedOnslaught"] = { ["1HWeapon"] = { - ["max"] = 12, - ["min"] = 8, - }, + ["max"] = 12, + ["min"] = 8, + }, ["Wand"] = { - ["max"] = 12, - ["min"] = 8, - }, - ["sign"] = "", - ["specialCaseData"] = { - ["overrideModLine"] = "#% increased Attack Speed", - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_210067635", - ["text"] = "#% increased Attack Speed (Local)", - ["type"] = "explicit", - }, - }, + ["max"] = 12, + ["min"] = 8, + }, + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "#% increased Attack Speed", + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_210067635", + ["text"] = "#% increased Attack Speed (Local)", + ["type"] = "explicit", + }, + }, ["1413_LocalIncreasedPhysicalDamagePercentAndAttackSpeed"] = { ["1HAxe"] = { - ["max"] = 4, - ["min"] = 3, - }, + ["max"] = 4, + ["min"] = 3, + }, ["1HSword"] = { - ["max"] = 4, - ["min"] = 3, - }, + ["max"] = 4, + ["min"] = 3, + }, ["1HWeapon"] = { - ["max"] = 4, - ["min"] = 3, - }, + ["max"] = 4, + ["min"] = 3, + }, ["2HAxe"] = { - ["max"] = 4, - ["min"] = 3, - }, + ["max"] = 4, + ["min"] = 3, + }, ["2HSword"] = { - ["max"] = 4, - ["min"] = 3, - }, + ["max"] = 4, + ["min"] = 3, + }, ["2HWeapon"] = { - ["max"] = 4, - ["min"] = 3, - }, - ["sign"] = "", - ["specialCaseData"] = { - ["overrideModLine"] = "#% increased Attack Speed", - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_210067635", - ["text"] = "#% increased Attack Speed (Local)", - ["type"] = "explicit", - }, - }, + ["max"] = 4, + ["min"] = 3, + }, + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "#% increased Attack Speed", + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_210067635", + ["text"] = "#% increased Attack Speed (Local)", + ["type"] = "explicit", + }, + }, ["1415_AttackSpeedWhileDualWieldingForJewel"] = { ["AnyJewel"] = { - ["max"] = 6, - ["min"] = 4, - }, + ["max"] = 6, + ["min"] = 4, + }, ["BaseJewel"] = { - ["max"] = 6, - ["min"] = 4, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4249220643", - ["text"] = "#% increased Attack Speed while Dual Wielding", - ["type"] = "explicit", - }, - }, + ["max"] = 6, + ["min"] = 4, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4249220643", + ["text"] = "#% increased Attack Speed while Dual Wielding", + ["type"] = "explicit", + }, + }, ["1417_AttackSpeedWithAShieldForJewel"] = { ["AnyJewel"] = { - ["max"] = 6, - ["min"] = 4, - }, + ["max"] = 6, + ["min"] = 4, + }, ["BaseJewel"] = { - ["max"] = 6, - ["min"] = 4, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3805075944", - ["text"] = "#% increased Attack Speed while holding a Shield", - ["type"] = "explicit", - }, - }, + ["max"] = 6, + ["min"] = 4, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3805075944", + ["text"] = "#% increased Attack Speed while holding a Shield", + ["type"] = "explicit", + }, + }, ["1418_TwoHandedMeleeAttackSpeedForJewel"] = { ["AnyJewel"] = { - ["max"] = 6, - ["min"] = 4, - }, + ["max"] = 6, + ["min"] = 4, + }, ["BaseJewel"] = { - ["max"] = 6, - ["min"] = 4, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1917910910", - ["text"] = "#% increased Attack Speed with Two Handed Melee Weapons", - ["type"] = "explicit", - }, - }, + ["max"] = 6, + ["min"] = 4, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1917910910", + ["text"] = "#% increased Attack Speed with Two Handed Melee Weapons", + ["type"] = "explicit", + }, + }, ["1419_OneHandedMeleeAttackSpeedForJewel"] = { ["AnyJewel"] = { - ["max"] = 6, - ["min"] = 4, - }, + ["max"] = 6, + ["min"] = 4, + }, ["BaseJewel"] = { - ["max"] = 6, - ["min"] = 4, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1813451228", - ["text"] = "#% increased Attack Speed with One Handed Melee Weapons", - ["type"] = "explicit", - }, - }, + ["max"] = 6, + ["min"] = 4, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1813451228", + ["text"] = "#% increased Attack Speed with One Handed Melee Weapons", + ["type"] = "explicit", + }, + }, ["1420_AxeAttackSpeedForJewel"] = { ["AnyJewel"] = { - ["max"] = 8, - ["min"] = 6, - }, + ["max"] = 8, + ["min"] = 6, + }, ["BaseJewel"] = { - ["max"] = 8, - ["min"] = 6, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3550868361", - ["text"] = "#% increased Attack Speed with Axes", - ["type"] = "explicit", - }, - }, + ["max"] = 8, + ["min"] = 6, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3550868361", + ["text"] = "#% increased Attack Speed with Axes", + ["type"] = "explicit", + }, + }, ["1421_StaffAttackSpeedForJewel"] = { ["AnyJewel"] = { - ["max"] = 8, - ["min"] = 6, - }, + ["max"] = 8, + ["min"] = 6, + }, ["BaseJewel"] = { - ["max"] = 8, - ["min"] = 6, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1394963553", - ["text"] = "#% increased Attack Speed with Staves", - ["type"] = "explicit", - }, - }, + ["max"] = 8, + ["min"] = 6, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1394963553", + ["text"] = "#% increased Attack Speed with Staves", + ["type"] = "explicit", + }, + }, ["1422_ClawAttackSpeedForJewel"] = { ["AnyJewel"] = { - ["max"] = 8, - ["min"] = 6, - }, + ["max"] = 8, + ["min"] = 6, + }, ["BaseJewel"] = { - ["max"] = 8, - ["min"] = 6, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1421645223", - ["text"] = "#% increased Attack Speed with Claws", - ["type"] = "explicit", - }, - }, + ["max"] = 8, + ["min"] = 6, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1421645223", + ["text"] = "#% increased Attack Speed with Claws", + ["type"] = "explicit", + }, + }, ["1423_DaggerAttackSpeedForJewel"] = { ["AnyJewel"] = { - ["max"] = 8, - ["min"] = 6, - }, + ["max"] = 8, + ["min"] = 6, + }, ["BaseJewel"] = { - ["max"] = 8, - ["min"] = 6, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2538566497", - ["text"] = "#% increased Attack Speed with Daggers", - ["type"] = "explicit", - }, - }, + ["max"] = 8, + ["min"] = 6, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2538566497", + ["text"] = "#% increased Attack Speed with Daggers", + ["type"] = "explicit", + }, + }, ["1424_MaceAttackSpeedForJewel"] = { ["AnyJewel"] = { - ["max"] = 8, - ["min"] = 6, - }, + ["max"] = 8, + ["min"] = 6, + }, ["BaseJewel"] = { - ["max"] = 8, - ["min"] = 6, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2515515064", - ["text"] = "#% increased Attack Speed with Maces or Sceptres", - ["type"] = "explicit", - }, - }, + ["max"] = 8, + ["min"] = 6, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2515515064", + ["text"] = "#% increased Attack Speed with Maces or Sceptres", + ["type"] = "explicit", + }, + }, ["1425_BowAttackSpeedForJewel"] = { ["AnyJewel"] = { - ["max"] = 8, - ["min"] = 6, - }, + ["max"] = 8, + ["min"] = 6, + }, ["BaseJewel"] = { - ["max"] = 8, - ["min"] = 6, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3759735052", - ["text"] = "#% increased Attack Speed with Bows", - ["type"] = "explicit", - }, - }, + ["max"] = 8, + ["min"] = 6, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3759735052", + ["text"] = "#% increased Attack Speed with Bows", + ["type"] = "explicit", + }, + }, ["1426_SwordAttackSpeedForJewel"] = { ["AnyJewel"] = { - ["max"] = 8, - ["min"] = 6, - }, + ["max"] = 8, + ["min"] = 6, + }, ["BaseJewel"] = { - ["max"] = 8, - ["min"] = 6, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3293699237", - ["text"] = "#% increased Attack Speed with Swords", - ["type"] = "explicit", - }, - }, + ["max"] = 8, + ["min"] = 6, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3293699237", + ["text"] = "#% increased Attack Speed with Swords", + ["type"] = "explicit", + }, + }, ["1427_WandAttackSpeedForJewel"] = { ["AnyJewel"] = { - ["max"] = 8, - ["min"] = 6, - }, + ["max"] = 8, + ["min"] = 6, + }, ["BaseJewel"] = { - ["max"] = 8, - ["min"] = 6, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3720627346", - ["text"] = "#% increased Attack Speed with Wands", - ["type"] = "explicit", - }, - }, + ["max"] = 8, + ["min"] = 6, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3720627346", + ["text"] = "#% increased Attack Speed with Wands", + ["type"] = "explicit", + }, + }, ["1433_IncreasedAccuracy"] = { ["AbyssJewel"] = { - ["max"] = 300, - ["min"] = 31, - }, + ["max"] = 300, + ["min"] = 31, + }, ["Amulet"] = { - ["max"] = 480, - ["min"] = 50, - }, + ["max"] = 480, + ["min"] = 50, + }, ["AnyJewel"] = { - ["max"] = 300, - ["min"] = 31, - }, + ["max"] = 300, + ["min"] = 31, + }, ["Gloves"] = { - ["max"] = 600, - ["min"] = 50, - }, + ["max"] = 600, + ["min"] = 50, + }, ["Helmet"] = { - ["max"] = 600, - ["min"] = 50, - }, + ["max"] = 600, + ["min"] = 50, + }, ["Quiver"] = { - ["max"] = 600, - ["min"] = 50, - }, + ["max"] = 600, + ["min"] = 50, + }, ["Ring"] = { - ["max"] = 480, - ["min"] = 50, - }, + ["max"] = 480, + ["min"] = 50, + }, ["Shield"] = { - ["max"] = 480, - ["min"] = 50, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_803737631", - ["text"] = "+# to Accuracy Rating", - ["type"] = "explicit", - }, - }, + ["max"] = 480, + ["min"] = 50, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_803737631", + ["text"] = "+# to Accuracy Rating", + ["type"] = "explicit", + }, + }, ["1433_IncreasedAccuracyForJewel"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_803737631", - ["text"] = "+# to Accuracy Rating", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_803737631", + ["text"] = "+# to Accuracy Rating", + ["type"] = "explicit", + }, + }, ["1433_LightRadiusAndAccuracy"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_803737631", - ["text"] = "+# to Accuracy Rating", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_803737631", + ["text"] = "+# to Accuracy Rating", + ["type"] = "explicit", + }, + }, ["1434_AccuracyAndCritsForJewel"] = { ["AnyJewel"] = { - ["max"] = 10, - ["min"] = 6, - }, + ["max"] = 10, + ["min"] = 6, + }, ["BaseJewel"] = { - ["max"] = 10, - ["min"] = 6, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_624954515", - ["text"] = "#% increased Global Accuracy Rating", - ["type"] = "explicit", - }, - }, + ["max"] = 10, + ["min"] = 6, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_624954515", + ["text"] = "#% increased Global Accuracy Rating", + ["type"] = "explicit", + }, + }, ["1434_IncreasedAccuracyPercent"] = { ["Gloves"] = { - ["max"] = 30, - ["min"] = 12, - }, + ["max"] = 30, + ["min"] = 12, + }, ["Quiver"] = { - ["max"] = 30, - ["min"] = 12, - }, + ["max"] = 30, + ["min"] = 12, + }, ["Ring"] = { - ["max"] = 30, - ["min"] = 6, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_624954515", - ["text"] = "#% increased Global Accuracy Rating", - ["type"] = "explicit", - }, - }, + ["max"] = 30, + ["min"] = 6, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_624954515", + ["text"] = "#% increased Global Accuracy Rating", + ["type"] = "explicit", + }, + }, ["1434_IncreasedAccuracyPercentForJewel"] = { ["AnyJewel"] = { - ["max"] = 14, - ["min"] = 10, - }, + ["max"] = 14, + ["min"] = 10, + }, ["BaseJewel"] = { - ["max"] = 14, - ["min"] = 10, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_624954515", - ["text"] = "#% increased Global Accuracy Rating", - ["type"] = "explicit", - }, - }, + ["max"] = 14, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_624954515", + ["text"] = "#% increased Global Accuracy Rating", + ["type"] = "explicit", + }, + }, ["1434_IncreasedAccuracyPercentSupported"] = { ["Gloves"] = { - ["max"] = 20, - ["min"] = 6, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_624954515", - ["text"] = "#% increased Global Accuracy Rating", - ["type"] = "explicit", - }, - }, + ["max"] = 20, + ["min"] = 6, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_624954515", + ["text"] = "#% increased Global Accuracy Rating", + ["type"] = "explicit", + }, + }, ["1434_LightRadiusAndAccuracyPercent"] = { ["Helmet"] = { - ["max"] = 20, - ["min"] = 9, - }, + ["max"] = 20, + ["min"] = 9, + }, ["Ring"] = { - ["max"] = 20, - ["min"] = 9, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_624954515", - ["text"] = "#% increased Global Accuracy Rating", - ["type"] = "explicit", - }, - }, + ["max"] = 20, + ["min"] = 9, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_624954515", + ["text"] = "#% increased Global Accuracy Rating", + ["type"] = "explicit", + }, + }, ["1434_LocalLightRadiusAndAccuracyPercent"] = { ["1HAxe"] = { - ["max"] = 20, - ["min"] = 9, - }, + ["max"] = 20, + ["min"] = 9, + }, ["1HMace"] = { - ["max"] = 20, - ["min"] = 9, - }, + ["max"] = 20, + ["min"] = 9, + }, ["1HSword"] = { - ["max"] = 20, - ["min"] = 9, - }, + ["max"] = 20, + ["min"] = 9, + }, ["1HWeapon"] = { - ["max"] = 20, - ["min"] = 9, - }, + ["max"] = 20, + ["min"] = 9, + }, ["2HAxe"] = { - ["max"] = 20, - ["min"] = 9, - }, + ["max"] = 20, + ["min"] = 9, + }, ["2HMace"] = { - ["max"] = 20, - ["min"] = 9, - }, + ["max"] = 20, + ["min"] = 9, + }, ["2HSword"] = { - ["max"] = 20, - ["min"] = 9, - }, + ["max"] = 20, + ["min"] = 9, + }, ["2HWeapon"] = { - ["max"] = 20, - ["min"] = 9, - }, + ["max"] = 20, + ["min"] = 9, + }, ["Bow"] = { - ["max"] = 20, - ["min"] = 9, - }, + ["max"] = 20, + ["min"] = 9, + }, ["Claw"] = { - ["max"] = 20, - ["min"] = 9, - }, + ["max"] = 20, + ["min"] = 9, + }, ["Dagger"] = { - ["max"] = 20, - ["min"] = 9, - }, + ["max"] = 20, + ["min"] = 9, + }, ["Staff"] = { - ["max"] = 20, - ["min"] = 9, - }, + ["max"] = 20, + ["min"] = 9, + }, ["Wand"] = { - ["max"] = 20, - ["min"] = 9, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_624954515", - ["text"] = "#% increased Global Accuracy Rating", - ["type"] = "explicit", - }, - }, + ["max"] = 20, + ["min"] = 9, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_624954515", + ["text"] = "#% increased Global Accuracy Rating", + ["type"] = "explicit", + }, + }, ["1446_CastSpeedAndGainArcaneSurgeOnKillChance"] = { ["1HAxe"] = { - ["max"] = 22, - ["min"] = 8, - }, + ["max"] = 22, + ["min"] = 8, + }, ["1HMace"] = { - ["max"] = 22, - ["min"] = 8, - }, + ["max"] = 22, + ["min"] = 8, + }, ["1HSword"] = { - ["max"] = 22, - ["min"] = 8, - }, + ["max"] = 22, + ["min"] = 8, + }, ["1HWeapon"] = { - ["max"] = 22, - ["min"] = 8, - }, + ["max"] = 22, + ["min"] = 8, + }, ["2HAxe"] = { - ["max"] = 31, - ["min"] = 12, - }, + ["max"] = 31, + ["min"] = 12, + }, ["2HMace"] = { - ["max"] = 31, - ["min"] = 12, - }, + ["max"] = 31, + ["min"] = 12, + }, ["2HSword"] = { - ["max"] = 31, - ["min"] = 12, - }, + ["max"] = 31, + ["min"] = 12, + }, ["2HWeapon"] = { - ["max"] = 31, - ["min"] = 12, - }, + ["max"] = 31, + ["min"] = 12, + }, ["Bow"] = { - ["max"] = 31, - ["min"] = 12, - }, + ["max"] = 31, + ["min"] = 12, + }, ["Claw"] = { - ["max"] = 22, - ["min"] = 8, - }, + ["max"] = 22, + ["min"] = 8, + }, ["Dagger"] = { - ["max"] = 22, - ["min"] = 8, - }, + ["max"] = 22, + ["min"] = 8, + }, ["Staff"] = { - ["max"] = 31, - ["min"] = 12, - }, + ["max"] = 31, + ["min"] = 12, + }, ["Wand"] = { - ["max"] = 22, - ["min"] = 8, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2891184298", - ["text"] = "#% increased Cast Speed", - ["type"] = "explicit", - }, - }, + ["max"] = 22, + ["min"] = 8, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2891184298", + ["text"] = "#% increased Cast Speed", + ["type"] = "explicit", + }, + }, ["1446_IncreasedCastSpeed"] = { ["1HAxe"] = { - ["max"] = 32, - ["min"] = 10, - }, + ["max"] = 32, + ["min"] = 10, + }, ["1HMace"] = { - ["max"] = 32, - ["min"] = 5, - }, + ["max"] = 32, + ["min"] = 5, + }, ["1HSword"] = { - ["max"] = 32, - ["min"] = 10, - }, + ["max"] = 32, + ["min"] = 10, + }, ["1HWeapon"] = { - ["max"] = 32, - ["min"] = 5, - }, + ["max"] = 32, + ["min"] = 5, + }, ["2HAxe"] = { - ["max"] = 49, - ["min"] = 15, - }, + ["max"] = 49, + ["min"] = 15, + }, ["2HMace"] = { - ["max"] = 49, - ["min"] = 15, - }, + ["max"] = 49, + ["min"] = 15, + }, ["2HSword"] = { - ["max"] = 49, - ["min"] = 15, - }, + ["max"] = 49, + ["min"] = 15, + }, ["2HWeapon"] = { - ["max"] = 49, - ["min"] = 8, - }, + ["max"] = 49, + ["min"] = 8, + }, ["Amulet"] = { - ["max"] = 20, - ["min"] = 5, - }, + ["max"] = 20, + ["min"] = 5, + }, ["Bow"] = { - ["max"] = 49, - ["min"] = 32, - }, + ["max"] = 49, + ["min"] = 32, + }, ["Claw"] = { - ["max"] = 32, - ["min"] = 10, - }, + ["max"] = 32, + ["min"] = 10, + }, ["Dagger"] = { - ["max"] = 32, - ["min"] = 5, - }, + ["max"] = 32, + ["min"] = 5, + }, ["Ring"] = { - ["max"] = 16, - ["min"] = 5, - }, + ["max"] = 16, + ["min"] = 5, + }, ["Shield"] = { - ["max"] = 9, - ["min"] = 6, - }, + ["max"] = 9, + ["min"] = 6, + }, ["Staff"] = { - ["max"] = 49, - ["min"] = 8, - }, + ["max"] = 49, + ["min"] = 8, + }, ["Wand"] = { - ["max"] = 32, - ["min"] = 5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2891184298", - ["text"] = "#% increased Cast Speed", - ["type"] = "explicit", - }, - }, + ["max"] = 32, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2891184298", + ["text"] = "#% increased Cast Speed", + ["type"] = "explicit", + }, + }, ["1446_IncreasedCastSpeedAddedChaos"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_2891184298", - ["text"] = "#% increased Cast Speed", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_2891184298", + ["text"] = "#% increased Cast Speed", + ["type"] = "explicit", + }, + }, ["1446_IncreasedCastSpeedFasterCasting"] = { ["1HMace"] = { - ["max"] = 20, - ["min"] = 15, - }, + ["max"] = 20, + ["min"] = 15, + }, ["1HWeapon"] = { - ["max"] = 20, - ["min"] = 15, - }, + ["max"] = 20, + ["min"] = 15, + }, ["Dagger"] = { - ["max"] = 20, - ["min"] = 15, - }, + ["max"] = 20, + ["min"] = 15, + }, ["Wand"] = { - ["max"] = 20, - ["min"] = 15, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2891184298", - ["text"] = "#% increased Cast Speed", - ["type"] = "explicit", - }, - }, + ["max"] = 20, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2891184298", + ["text"] = "#% increased Cast Speed", + ["type"] = "explicit", + }, + }, ["1446_IncreasedCastSpeedFishing"] = { ["FishingRod"] = { - ["max"] = 28, - ["min"] = 24, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2891184298", - ["text"] = "#% increased Cast Speed", - ["type"] = "explicit", - }, - }, + ["max"] = 28, + ["min"] = 24, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2891184298", + ["text"] = "#% increased Cast Speed", + ["type"] = "explicit", + }, + }, ["1446_IncreasedCastSpeedForJewel"] = { ["AbyssJewel"] = { - ["max"] = 4, - ["min"] = 2, - }, + ["max"] = 4, + ["min"] = 2, + }, ["AnyJewel"] = { - ["max"] = 4, - ["min"] = 2, - }, + ["max"] = 4, + ["min"] = 2, + }, ["BaseJewel"] = { - ["max"] = 4, - ["min"] = 2, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2891184298", - ["text"] = "#% increased Cast Speed", - ["type"] = "explicit", - }, - }, + ["max"] = 4, + ["min"] = 2, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2891184298", + ["text"] = "#% increased Cast Speed", + ["type"] = "explicit", + }, + }, ["1446_IncreasedCastSpeedSpellEcho"] = { ["1HMace"] = { - ["max"] = 20, - ["min"] = 15, - }, + ["max"] = 20, + ["min"] = 15, + }, ["1HWeapon"] = { - ["max"] = 20, - ["min"] = 15, - }, + ["max"] = 20, + ["min"] = 15, + }, ["Dagger"] = { - ["max"] = 20, - ["min"] = 15, - }, + ["max"] = 20, + ["min"] = 15, + }, ["Wand"] = { - ["max"] = 20, - ["min"] = 15, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2891184298", - ["text"] = "#% increased Cast Speed", - ["type"] = "explicit", - }, - }, + ["max"] = 20, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2891184298", + ["text"] = "#% increased Cast Speed", + ["type"] = "explicit", + }, + }, ["1446_IncreasedCastSpeedSupported"] = { ["Gloves"] = { - ["max"] = 14, - ["min"] = 7, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2891184298", - ["text"] = "#% increased Cast Speed", - ["type"] = "explicit", - }, - }, + ["max"] = 14, + ["min"] = 7, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2891184298", + ["text"] = "#% increased Cast Speed", + ["type"] = "explicit", + }, + }, ["1446_IncreasedCastSpeedTwoHandedAvoidInterruption"] = { ["2HWeapon"] = { - ["max"] = 20, - ["min"] = 15, - }, + ["max"] = 20, + ["min"] = 15, + }, ["Staff"] = { - ["max"] = 20, - ["min"] = 15, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2891184298", - ["text"] = "#% increased Cast Speed", - ["type"] = "explicit", - }, - }, + ["max"] = 20, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2891184298", + ["text"] = "#% increased Cast Speed", + ["type"] = "explicit", + }, + }, ["1446_IncreasedCastSpeedTwoHandedKilledRecently"] = { ["2HWeapon"] = { - ["max"] = 20, - ["min"] = 15, - }, + ["max"] = 20, + ["min"] = 15, + }, ["Staff"] = { - ["max"] = 20, - ["min"] = 15, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2891184298", - ["text"] = "#% increased Cast Speed", - ["type"] = "explicit", - }, - }, + ["max"] = 20, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2891184298", + ["text"] = "#% increased Cast Speed", + ["type"] = "explicit", + }, + }, ["1447_CastSpeedWhileDualWieldingForJewel"] = { ["AnyJewel"] = { - ["max"] = 5, - ["min"] = 3, - }, + ["max"] = 5, + ["min"] = 3, + }, ["BaseJewel"] = { - ["max"] = 5, - ["min"] = 3, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2382196858", - ["text"] = "#% increased Cast Speed while Dual Wielding", - ["type"] = "explicit", - }, - }, + ["max"] = 5, + ["min"] = 3, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2382196858", + ["text"] = "#% increased Cast Speed while Dual Wielding", + ["type"] = "explicit", + }, + }, ["1448_CastSpeedWithAShieldForJewel"] = { ["AnyJewel"] = { - ["max"] = 5, - ["min"] = 3, - }, + ["max"] = 5, + ["min"] = 3, + }, ["BaseJewel"] = { - ["max"] = 5, - ["min"] = 3, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1612163368", - ["text"] = "#% increased Cast Speed while holding a Shield", - ["type"] = "explicit", - }, - }, + ["max"] = 5, + ["min"] = 3, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1612163368", + ["text"] = "#% increased Cast Speed while holding a Shield", + ["type"] = "explicit", + }, + }, ["1449_CastSpeedWithAStaffForJewel"] = { ["AnyJewel"] = { - ["max"] = 5, - ["min"] = 3, - }, + ["max"] = 5, + ["min"] = 3, + }, ["BaseJewel"] = { - ["max"] = 5, - ["min"] = 3, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2066542501", - ["text"] = "#% increased Cast Speed while wielding a Staff", - ["type"] = "explicit", - }, - }, + ["max"] = 5, + ["min"] = 3, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2066542501", + ["text"] = "#% increased Cast Speed while wielding a Staff", + ["type"] = "explicit", + }, + }, ["1458_CriticalStrikeChanceSpellsSupported"] = { ["1HMace"] = { - ["max"] = 82, - ["min"] = 60, - }, + ["max"] = 82, + ["min"] = 60, + }, ["1HWeapon"] = { - ["max"] = 82, - ["min"] = 60, - }, + ["max"] = 82, + ["min"] = 60, + }, ["Dagger"] = { - ["max"] = 82, - ["min"] = 60, - }, + ["max"] = 82, + ["min"] = 60, + }, ["Wand"] = { - ["max"] = 82, - ["min"] = 60, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_737908626", - ["text"] = "#% increased Spell Critical Strike Chance", - ["type"] = "explicit", - }, - }, + ["max"] = 82, + ["min"] = 60, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_737908626", + ["text"] = "#% increased Spell Critical Strike Chance", + ["type"] = "explicit", + }, + }, ["1458_CriticalStrikeChanceSpellsTwoHandedPowerCharge"] = { ["2HWeapon"] = { - ["max"] = 82, - ["min"] = 60, - }, + ["max"] = 82, + ["min"] = 60, + }, ["Staff"] = { - ["max"] = 82, - ["min"] = 60, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_737908626", - ["text"] = "#% increased Spell Critical Strike Chance", - ["type"] = "explicit", - }, - }, + ["max"] = 82, + ["min"] = 60, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_737908626", + ["text"] = "#% increased Spell Critical Strike Chance", + ["type"] = "explicit", + }, + }, ["1458_SpellCritChanceForJewel"] = { ["AnyJewel"] = { - ["max"] = 14, - ["min"] = 10, - }, + ["max"] = 14, + ["min"] = 10, + }, ["BaseJewel"] = { - ["max"] = 14, - ["min"] = 10, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_737908626", - ["text"] = "#% increased Spell Critical Strike Chance", - ["type"] = "explicit", - }, - }, + ["max"] = 14, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_737908626", + ["text"] = "#% increased Spell Critical Strike Chance", + ["type"] = "explicit", + }, + }, ["1458_SpellCriticalStrikeChance"] = { ["1HAxe"] = { - ["max"] = 119, - ["min"] = 30, - }, + ["max"] = 119, + ["min"] = 30, + }, ["1HMace"] = { - ["max"] = 119, - ["min"] = 10, - }, + ["max"] = 119, + ["min"] = 10, + }, ["1HSword"] = { - ["max"] = 119, - ["min"] = 30, - }, + ["max"] = 119, + ["min"] = 30, + }, ["1HWeapon"] = { - ["max"] = 119, - ["min"] = 10, - }, + ["max"] = 119, + ["min"] = 10, + }, ["2HAxe"] = { - ["max"] = 119, - ["min"] = 45, - }, + ["max"] = 119, + ["min"] = 45, + }, ["2HMace"] = { - ["max"] = 119, - ["min"] = 45, - }, + ["max"] = 119, + ["min"] = 45, + }, ["2HSword"] = { - ["max"] = 119, - ["min"] = 45, - }, + ["max"] = 119, + ["min"] = 45, + }, ["2HWeapon"] = { - ["max"] = 119, - ["min"] = 10, - }, + ["max"] = 119, + ["min"] = 10, + }, ["Bow"] = { - ["max"] = 119, - ["min"] = 80, - }, + ["max"] = 119, + ["min"] = 80, + }, ["Claw"] = { - ["max"] = 119, - ["min"] = 30, - }, + ["max"] = 119, + ["min"] = 30, + }, ["Dagger"] = { - ["max"] = 119, - ["min"] = 10, - }, + ["max"] = 119, + ["min"] = 10, + }, ["Shield"] = { - ["max"] = 119, - ["min"] = 10, - }, + ["max"] = 119, + ["min"] = 10, + }, ["Staff"] = { - ["max"] = 119, - ["min"] = 10, - }, + ["max"] = 119, + ["min"] = 10, + }, ["Wand"] = { - ["max"] = 119, - ["min"] = 10, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_737908626", - ["text"] = "#% increased Spell Critical Strike Chance", - ["type"] = "explicit", - }, - }, + ["max"] = 119, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_737908626", + ["text"] = "#% increased Spell Critical Strike Chance", + ["type"] = "explicit", + }, + }, ["1459_AccuracyAndCritsForJewel"] = { ["AnyJewel"] = { - ["max"] = 10, - ["min"] = 6, - }, + ["max"] = 10, + ["min"] = 6, + }, ["BaseJewel"] = { - ["max"] = 10, - ["min"] = 6, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_587431675", - ["text"] = "#% increased Global Critical Strike Chance", - ["type"] = "explicit", - }, - }, + ["max"] = 10, + ["min"] = 6, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_587431675", + ["text"] = "#% increased Global Critical Strike Chance", + ["type"] = "explicit", + }, + }, ["1459_CritChanceAndCriticalStrikeMultiplierIfEnemyShatteredRecently"] = { ["Ring"] = { - ["max"] = 16, - ["min"] = 12, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_587431675", - ["text"] = "#% increased Global Critical Strike Chance", - ["type"] = "explicit", - }, - }, + ["max"] = 16, + ["min"] = 12, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_587431675", + ["text"] = "#% increased Global Critical Strike Chance", + ["type"] = "explicit", + }, + }, ["1459_CritChanceForJewel"] = { ["AbyssJewel"] = { - ["max"] = 12, - ["min"] = 8, - }, + ["max"] = 12, + ["min"] = 8, + }, ["AnyJewel"] = { - ["max"] = 12, - ["min"] = 8, - }, + ["max"] = 12, + ["min"] = 8, + }, ["BaseJewel"] = { - ["max"] = 12, - ["min"] = 8, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_587431675", - ["text"] = "#% increased Global Critical Strike Chance", - ["type"] = "explicit", - }, - }, + ["max"] = 12, + ["min"] = 8, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_587431675", + ["text"] = "#% increased Global Critical Strike Chance", + ["type"] = "explicit", + }, + }, ["1459_CriticalChanceAndAddedChaosDamageIfHaveCritRecently"] = { ["Gloves"] = { - ["max"] = 22, - ["min"] = 11, - }, + ["max"] = 22, + ["min"] = 11, + }, ["Quiver"] = { - ["max"] = 22, - ["min"] = 11, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_587431675", - ["text"] = "#% increased Global Critical Strike Chance", - ["type"] = "explicit", - }, - }, + ["max"] = 22, + ["min"] = 11, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_587431675", + ["text"] = "#% increased Global Critical Strike Chance", + ["type"] = "explicit", + }, + }, ["1459_CriticalChanceAndElementalDamagePercentIfHaveCritRecently"] = { ["Gloves"] = { - ["max"] = 22, - ["min"] = 11, - }, + ["max"] = 22, + ["min"] = 11, + }, ["Quiver"] = { - ["max"] = 22, - ["min"] = 11, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_587431675", - ["text"] = "#% increased Global Critical Strike Chance", - ["type"] = "explicit", - }, - }, + ["max"] = 22, + ["min"] = 11, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_587431675", + ["text"] = "#% increased Global Critical Strike Chance", + ["type"] = "explicit", + }, + }, ["1459_CriticalChanceAndGainFrenzyChargeOnCriticalStrikePercent"] = { ["Quiver"] = { - ["max"] = 20, - ["min"] = 9, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_587431675", - ["text"] = "#% increased Global Critical Strike Chance", - ["type"] = "explicit", - }, - }, + ["max"] = 20, + ["min"] = 9, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_587431675", + ["text"] = "#% increased Global Critical Strike Chance", + ["type"] = "explicit", + }, + }, ["1459_CriticalStrikeChance"] = { ["Amulet"] = { - ["max"] = 42, - ["min"] = 10, - }, + ["max"] = 42, + ["min"] = 10, + }, ["Gloves"] = { - ["max"] = 60, - ["min"] = 15, - }, + ["max"] = 60, + ["min"] = 15, + }, ["Quiver"] = { - ["max"] = 42, - ["min"] = 17, - }, + ["max"] = 42, + ["min"] = 17, + }, ["Ring"] = { - ["max"] = 26, - ["min"] = 10, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_587431675", - ["text"] = "#% increased Global Critical Strike Chance", - ["type"] = "explicit", - }, - }, + ["max"] = 26, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_587431675", + ["text"] = "#% increased Global Critical Strike Chance", + ["type"] = "explicit", + }, + }, ["1464_CriticalStrikeChanceSupported"] = { ["1HAxe"] = { - ["max"] = 29, - ["min"] = 22, - }, + ["max"] = 29, + ["min"] = 22, + }, ["1HMace"] = { - ["max"] = 29, - ["min"] = 22, - }, + ["max"] = 29, + ["min"] = 22, + }, ["1HSword"] = { - ["max"] = 29, - ["min"] = 22, - }, + ["max"] = 29, + ["min"] = 22, + }, ["1HWeapon"] = { - ["max"] = 29, - ["min"] = 22, - }, + ["max"] = 29, + ["min"] = 22, + }, ["2HAxe"] = { - ["max"] = 29, - ["min"] = 22, - }, + ["max"] = 29, + ["min"] = 22, + }, ["2HMace"] = { - ["max"] = 29, - ["min"] = 22, - }, + ["max"] = 29, + ["min"] = 22, + }, ["2HSword"] = { - ["max"] = 29, - ["min"] = 22, - }, + ["max"] = 29, + ["min"] = 22, + }, ["2HWeapon"] = { - ["max"] = 29, - ["min"] = 22, - }, + ["max"] = 29, + ["min"] = 22, + }, ["Claw"] = { - ["max"] = 29, - ["min"] = 22, - }, + ["max"] = 29, + ["min"] = 22, + }, ["Dagger"] = { - ["max"] = 29, - ["min"] = 22, - }, + ["max"] = 29, + ["min"] = 22, + }, ["Wand"] = { - ["max"] = 29, - ["min"] = 22, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2375316951", - ["text"] = "#% increased Critical Strike Chance", - ["type"] = "explicit", - }, - }, + ["max"] = 29, + ["min"] = 22, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2375316951", + ["text"] = "#% increased Critical Strike Chance", + ["type"] = "explicit", + }, + }, ["1464_CriticalStrikeChanceTwoHandedCritChanceRecently"] = { ["2HAxe"] = { - ["max"] = 29, - ["min"] = 22, - }, + ["max"] = 29, + ["min"] = 22, + }, ["2HMace"] = { - ["max"] = 29, - ["min"] = 22, - }, + ["max"] = 29, + ["min"] = 22, + }, ["2HSword"] = { - ["max"] = 29, - ["min"] = 22, - }, + ["max"] = 29, + ["min"] = 22, + }, ["2HWeapon"] = { - ["max"] = 29, - ["min"] = 22, - }, + ["max"] = 29, + ["min"] = 22, + }, ["Bow"] = { - ["max"] = 29, - ["min"] = 22, - }, + ["max"] = 29, + ["min"] = 22, + }, ["Staff"] = { - ["max"] = 29, - ["min"] = 22, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2375316951", - ["text"] = "#% increased Critical Strike Chance", - ["type"] = "explicit", - }, - }, + ["max"] = 29, + ["min"] = 22, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2375316951", + ["text"] = "#% increased Critical Strike Chance", + ["type"] = "explicit", + }, + }, ["1464_CriticalStrikeChanceTwoHandedCritMultiRecently"] = { ["2HAxe"] = { - ["max"] = 29, - ["min"] = 22, - }, + ["max"] = 29, + ["min"] = 22, + }, ["2HMace"] = { - ["max"] = 29, - ["min"] = 22, - }, + ["max"] = 29, + ["min"] = 22, + }, ["2HSword"] = { - ["max"] = 29, - ["min"] = 22, - }, + ["max"] = 29, + ["min"] = 22, + }, ["2HWeapon"] = { - ["max"] = 29, - ["min"] = 22, - }, + ["max"] = 29, + ["min"] = 22, + }, ["Bow"] = { - ["max"] = 29, - ["min"] = 22, - }, + ["max"] = 29, + ["min"] = 22, + }, ["Staff"] = { - ["max"] = 29, - ["min"] = 22, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2375316951", - ["text"] = "#% increased Critical Strike Chance", - ["type"] = "explicit", - }, - }, + ["max"] = 29, + ["min"] = 22, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2375316951", + ["text"] = "#% increased Critical Strike Chance", + ["type"] = "explicit", + }, + }, ["1464_GainEnduranceChargeOnCritUber"] = { ["1HAxe"] = { - ["max"] = 20, - ["min"] = 15, - }, + ["max"] = 20, + ["min"] = 15, + }, ["1HWeapon"] = { - ["max"] = 20, - ["min"] = 15, - }, + ["max"] = 20, + ["min"] = 15, + }, ["2HAxe"] = { - ["max"] = 20, - ["min"] = 15, - }, + ["max"] = 20, + ["min"] = 15, + }, ["2HWeapon"] = { - ["max"] = 20, - ["min"] = 15, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2375316951", - ["text"] = "#% increased Critical Strike Chance", - ["type"] = "explicit", - }, - }, + ["max"] = 20, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2375316951", + ["text"] = "#% increased Critical Strike Chance", + ["type"] = "explicit", + }, + }, ["1464_LocalCriticalStrikeChance"] = { ["1HAxe"] = { - ["max"] = 38, - ["min"] = 10, - }, + ["max"] = 38, + ["min"] = 10, + }, ["1HMace"] = { - ["max"] = 38, - ["min"] = 10, - }, + ["max"] = 38, + ["min"] = 10, + }, ["1HSword"] = { - ["max"] = 38, - ["min"] = 10, - }, + ["max"] = 38, + ["min"] = 10, + }, ["1HWeapon"] = { - ["max"] = 38, - ["min"] = 10, - }, + ["max"] = 38, + ["min"] = 10, + }, ["2HAxe"] = { - ["max"] = 38, - ["min"] = 10, - }, + ["max"] = 38, + ["min"] = 10, + }, ["2HMace"] = { - ["max"] = 38, - ["min"] = 10, - }, + ["max"] = 38, + ["min"] = 10, + }, ["2HSword"] = { - ["max"] = 38, - ["min"] = 10, - }, + ["max"] = 38, + ["min"] = 10, + }, ["2HWeapon"] = { - ["max"] = 38, - ["min"] = 10, - }, + ["max"] = 38, + ["min"] = 10, + }, ["Bow"] = { - ["max"] = 38, - ["min"] = 10, - }, + ["max"] = 38, + ["min"] = 10, + }, ["Claw"] = { - ["max"] = 38, - ["min"] = 10, - }, + ["max"] = 38, + ["min"] = 10, + }, ["Dagger"] = { - ["max"] = 38, - ["min"] = 10, - }, + ["max"] = 38, + ["min"] = 10, + }, ["Staff"] = { - ["max"] = 38, - ["min"] = 10, - }, + ["max"] = 38, + ["min"] = 10, + }, ["Wand"] = { - ["max"] = 38, - ["min"] = 10, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2375316951", - ["text"] = "#% increased Critical Strike Chance", - ["type"] = "explicit", - }, - }, + ["max"] = 38, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2375316951", + ["text"] = "#% increased Critical Strike Chance", + ["type"] = "explicit", + }, + }, ["1464_LocalCriticalStrikeChanceAndLocalItemQuality"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_2375316951", - ["text"] = "#% increased Critical Strike Chance", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_2375316951", + ["text"] = "#% increased Critical Strike Chance", + ["type"] = "explicit", + }, + }, ["1464_LocalCriticalStrikeChanceStrengthIntelligence"] = { ["1HAxe"] = { - ["max"] = 32, - ["min"] = 15, - }, + ["max"] = 32, + ["min"] = 15, + }, ["1HMace"] = { - ["max"] = 32, - ["min"] = 15, - }, + ["max"] = 32, + ["min"] = 15, + }, ["1HSword"] = { - ["max"] = 32, - ["min"] = 15, - }, + ["max"] = 32, + ["min"] = 15, + }, ["1HWeapon"] = { - ["max"] = 32, - ["min"] = 15, - }, + ["max"] = 32, + ["min"] = 15, + }, ["2HAxe"] = { - ["max"] = 32, - ["min"] = 15, - }, + ["max"] = 32, + ["min"] = 15, + }, ["2HMace"] = { - ["max"] = 32, - ["min"] = 15, - }, + ["max"] = 32, + ["min"] = 15, + }, ["2HSword"] = { - ["max"] = 32, - ["min"] = 15, - }, + ["max"] = 32, + ["min"] = 15, + }, ["2HWeapon"] = { - ["max"] = 32, - ["min"] = 15, - }, + ["max"] = 32, + ["min"] = 15, + }, ["Bow"] = { - ["max"] = 32, - ["min"] = 15, - }, + ["max"] = 32, + ["min"] = 15, + }, ["Claw"] = { - ["max"] = 32, - ["min"] = 15, - }, + ["max"] = 32, + ["min"] = 15, + }, ["Dagger"] = { - ["max"] = 32, - ["min"] = 15, - }, + ["max"] = 32, + ["min"] = 15, + }, ["Staff"] = { - ["max"] = 32, - ["min"] = 15, - }, + ["max"] = 32, + ["min"] = 15, + }, ["Wand"] = { - ["max"] = 32, - ["min"] = 15, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2375316951", - ["text"] = "#% increased Critical Strike Chance", - ["type"] = "explicit", - }, - }, + ["max"] = 32, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2375316951", + ["text"] = "#% increased Critical Strike Chance", + ["type"] = "explicit", + }, + }, ["1464_LocalIncreasedPhysicalDamagePercentAndCritChance"] = { ["1HWeapon"] = { - ["max"] = 10, - ["min"] = 8, - }, + ["max"] = 10, + ["min"] = 8, + }, ["Claw"] = { - ["max"] = 10, - ["min"] = 8, - }, + ["max"] = 10, + ["min"] = 8, + }, ["Dagger"] = { - ["max"] = 10, - ["min"] = 8, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2375316951", - ["text"] = "#% increased Critical Strike Chance", - ["type"] = "explicit", - }, - }, + ["max"] = 10, + ["min"] = 8, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2375316951", + ["text"] = "#% increased Critical Strike Chance", + ["type"] = "explicit", + }, + }, ["1465_CritChanceWithBowForJewel"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_2091591880", - ["text"] = "#% increased Critical Strike Chance with Bows", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_2091591880", + ["text"] = "#% increased Critical Strike Chance with Bows", + ["type"] = "explicit", + }, + }, ["1465_CriticalStrikeChanceWithBows"] = { ["Quiver"] = { - ["max"] = 44, - ["min"] = 10, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2091591880", - ["text"] = "#% increased Critical Strike Chance with Bows", - ["type"] = "explicit", - }, - }, + ["max"] = 44, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2091591880", + ["text"] = "#% increased Critical Strike Chance with Bows", + ["type"] = "explicit", + }, + }, ["1474_TrapCritChanceForJewel"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1192661666", - ["text"] = "#% increased Critical Strike Chance with Traps", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1192661666", + ["text"] = "#% increased Critical Strike Chance with Traps", + ["type"] = "explicit", + }, + }, ["1476_TwoHandedCritChanceForJewel"] = { ["AnyJewel"] = { - ["max"] = 18, - ["min"] = 14, - }, + ["max"] = 18, + ["min"] = 14, + }, ["BaseJewel"] = { - ["max"] = 18, - ["min"] = 14, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_764295120", - ["text"] = "#% increased Critical Strike Chance with Two Handed Melee Weapons", - ["type"] = "explicit", - }, - }, + ["max"] = 18, + ["min"] = 14, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_764295120", + ["text"] = "#% increased Critical Strike Chance with Two Handed Melee Weapons", + ["type"] = "explicit", + }, + }, ["1477_TwoHandCritMultiplierForJewel"] = { ["AnyJewel"] = { - ["max"] = 18, - ["min"] = 15, - }, + ["max"] = 18, + ["min"] = 15, + }, ["BaseJewel"] = { - ["max"] = 18, - ["min"] = 15, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_252507949", - ["text"] = "+#% to Critical Strike Multiplier with Two Handed Melee Weapons", - ["type"] = "explicit", - }, - }, + ["max"] = 18, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_252507949", + ["text"] = "+#% to Critical Strike Multiplier with Two Handed Melee Weapons", + ["type"] = "explicit", + }, + }, ["1478_OneHandedCritChanceForJewel"] = { ["AnyJewel"] = { - ["max"] = 18, - ["min"] = 14, - }, + ["max"] = 18, + ["min"] = 14, + }, ["BaseJewel"] = { - ["max"] = 18, - ["min"] = 14, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2381842786", - ["text"] = "#% increased Critical Strike Chance with One Handed Melee Weapons", - ["type"] = "explicit", - }, - }, + ["max"] = 18, + ["min"] = 14, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2381842786", + ["text"] = "#% increased Critical Strike Chance with One Handed Melee Weapons", + ["type"] = "explicit", + }, + }, ["1479_MeleeCritChanceForJewel"] = { ["AnyJewel"] = { - ["max"] = 14, - ["min"] = 10, - }, + ["max"] = 14, + ["min"] = 10, + }, ["BaseJewel"] = { - ["max"] = 14, - ["min"] = 10, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1199429645", - ["text"] = "#% increased Melee Critical Strike Chance", - ["type"] = "explicit", - }, - }, + ["max"] = 14, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1199429645", + ["text"] = "#% increased Melee Critical Strike Chance", + ["type"] = "explicit", + }, + }, ["1480_DualWieldingCritChanceForJewel"] = { ["AnyJewel"] = { - ["max"] = 18, - ["min"] = 14, - }, + ["max"] = 18, + ["min"] = 14, + }, ["BaseJewel"] = { - ["max"] = 18, - ["min"] = 14, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3702513529", - ["text"] = "#% increased Attack Critical Strike Chance while Dual Wielding", - ["type"] = "explicit", - }, - }, + ["max"] = 18, + ["min"] = 14, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3702513529", + ["text"] = "#% increased Attack Critical Strike Chance while Dual Wielding", + ["type"] = "explicit", + }, + }, ["1481_FireCritChanceForJewel"] = { ["AnyJewel"] = { - ["max"] = 18, - ["min"] = 14, - }, + ["max"] = 18, + ["min"] = 14, + }, ["BaseJewel"] = { - ["max"] = 18, - ["min"] = 14, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1104796138", - ["text"] = "#% increased Critical Strike Chance with Fire Skills", - ["type"] = "explicit", - }, - }, + ["max"] = 18, + ["min"] = 14, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1104796138", + ["text"] = "#% increased Critical Strike Chance with Fire Skills", + ["type"] = "explicit", + }, + }, ["1482_LightningCritChanceForJewel"] = { ["AnyJewel"] = { - ["max"] = 18, - ["min"] = 14, - }, + ["max"] = 18, + ["min"] = 14, + }, ["BaseJewel"] = { - ["max"] = 18, - ["min"] = 14, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1186596295", - ["text"] = "#% increased Critical Strike Chance with Lightning Skills", - ["type"] = "explicit", - }, - }, + ["max"] = 18, + ["min"] = 14, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1186596295", + ["text"] = "#% increased Critical Strike Chance with Lightning Skills", + ["type"] = "explicit", + }, + }, ["1483_ColdCritChanceForJewel"] = { ["AnyJewel"] = { - ["max"] = 18, - ["min"] = 14, - }, + ["max"] = 18, + ["min"] = 14, + }, ["BaseJewel"] = { - ["max"] = 18, - ["min"] = 14, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3337344042", - ["text"] = "#% increased Critical Strike Chance with Cold Skills", - ["type"] = "explicit", - }, - }, + ["max"] = 18, + ["min"] = 14, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3337344042", + ["text"] = "#% increased Critical Strike Chance with Cold Skills", + ["type"] = "explicit", + }, + }, ["1484_ElementalCritChanceForJewel"] = { ["AnyJewel"] = { - ["max"] = 14, - ["min"] = 10, - }, + ["max"] = 14, + ["min"] = 10, + }, ["BaseJewel"] = { - ["max"] = 14, - ["min"] = 10, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_439950087", - ["text"] = "#% increased Critical Strike Chance with Elemental Skills", - ["type"] = "explicit", - }, - }, + ["max"] = 14, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_439950087", + ["text"] = "#% increased Critical Strike Chance with Elemental Skills", + ["type"] = "explicit", + }, + }, ["1488_CritMultiplierForJewel"] = { ["AbyssJewel"] = { - ["max"] = 12, - ["min"] = 9, - }, + ["max"] = 12, + ["min"] = 9, + }, ["AnyJewel"] = { - ["max"] = 12, - ["min"] = 9, - }, + ["max"] = 12, + ["min"] = 9, + }, ["BaseJewel"] = { - ["max"] = 12, - ["min"] = 9, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3556824919", - ["text"] = "+#% to Global Critical Strike Multiplier", - ["type"] = "explicit", - }, - }, + ["max"] = 12, + ["min"] = 9, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3556824919", + ["text"] = "+#% to Global Critical Strike Multiplier", + ["type"] = "explicit", + }, + }, ["1488_CriticalMultiplierSupportedTwoHanded"] = { ["2HWeapon"] = { - ["max"] = 29, - ["min"] = 22, - }, + ["max"] = 29, + ["min"] = 22, + }, ["Bow"] = { - ["max"] = 29, - ["min"] = 22, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3556824919", - ["text"] = "+#% to Global Critical Strike Multiplier", - ["type"] = "explicit", - }, - }, + ["max"] = 29, + ["min"] = 22, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3556824919", + ["text"] = "+#% to Global Critical Strike Multiplier", + ["type"] = "explicit", + }, + }, ["1488_CriticalStrikeChanceIfNoCriticalStrikeDealtRecentlyUber"] = { ["2HWeapon"] = { - ["max"] = 25, - ["min"] = 15, - }, + ["max"] = 25, + ["min"] = 15, + }, ["Staff"] = { - ["max"] = 25, - ["min"] = 15, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3556824919", - ["text"] = "+#% to Global Critical Strike Multiplier", - ["type"] = "explicit", - }, - }, + ["max"] = 25, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3556824919", + ["text"] = "+#% to Global Critical Strike Multiplier", + ["type"] = "explicit", + }, + }, ["1488_CriticalStrikeMultiplier"] = { ["1HAxe"] = { - ["max"] = 38, - ["min"] = 10, - }, + ["max"] = 38, + ["min"] = 10, + }, ["1HMace"] = { - ["max"] = 38, - ["min"] = 10, - }, + ["max"] = 38, + ["min"] = 10, + }, ["1HSword"] = { - ["max"] = 38, - ["min"] = 10, - }, + ["max"] = 38, + ["min"] = 10, + }, ["1HWeapon"] = { - ["max"] = 38, - ["min"] = 10, - }, + ["max"] = 38, + ["min"] = 10, + }, ["2HAxe"] = { - ["max"] = 38, - ["min"] = 10, - }, + ["max"] = 38, + ["min"] = 10, + }, ["2HMace"] = { - ["max"] = 38, - ["min"] = 10, - }, + ["max"] = 38, + ["min"] = 10, + }, ["2HSword"] = { - ["max"] = 38, - ["min"] = 10, - }, + ["max"] = 38, + ["min"] = 10, + }, ["2HWeapon"] = { - ["max"] = 38, - ["min"] = 10, - }, + ["max"] = 38, + ["min"] = 10, + }, ["Amulet"] = { - ["max"] = 41, - ["min"] = 8, - }, + ["max"] = 41, + ["min"] = 8, + }, ["Bow"] = { - ["max"] = 38, - ["min"] = 10, - }, + ["max"] = 38, + ["min"] = 10, + }, ["Claw"] = { - ["max"] = 38, - ["min"] = 10, - }, + ["max"] = 38, + ["min"] = 10, + }, ["Dagger"] = { - ["max"] = 38, - ["min"] = 10, - }, + ["max"] = 38, + ["min"] = 10, + }, ["Helmet"] = { - ["max"] = 24, - ["min"] = 11, - }, + ["max"] = 24, + ["min"] = 11, + }, ["Quiver"] = { - ["max"] = 41, - ["min"] = 25, - }, + ["max"] = 41, + ["min"] = 25, + }, ["Ring"] = { - ["max"] = 25, - ["min"] = 8, - }, + ["max"] = 25, + ["min"] = 8, + }, ["Staff"] = { - ["max"] = 38, - ["min"] = 10, - }, + ["max"] = 38, + ["min"] = 10, + }, ["Wand"] = { - ["max"] = 38, - ["min"] = 10, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3556824919", - ["text"] = "+#% to Global Critical Strike Multiplier", - ["type"] = "explicit", - }, - }, + ["max"] = 38, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3556824919", + ["text"] = "+#% to Global Critical Strike Multiplier", + ["type"] = "explicit", + }, + }, ["1488_CriticalStrikeMultiplierSupported"] = { ["1HAxe"] = { - ["max"] = 29, - ["min"] = 22, - }, + ["max"] = 29, + ["min"] = 22, + }, ["1HMace"] = { - ["max"] = 29, - ["min"] = 22, - }, + ["max"] = 29, + ["min"] = 22, + }, ["1HSword"] = { - ["max"] = 29, - ["min"] = 22, - }, + ["max"] = 29, + ["min"] = 22, + }, ["1HWeapon"] = { - ["max"] = 29, - ["min"] = 22, - }, + ["max"] = 29, + ["min"] = 22, + }, ["2HAxe"] = { - ["max"] = 29, - ["min"] = 22, - }, + ["max"] = 29, + ["min"] = 22, + }, ["2HMace"] = { - ["max"] = 29, - ["min"] = 22, - }, + ["max"] = 29, + ["min"] = 22, + }, ["2HSword"] = { - ["max"] = 29, - ["min"] = 22, - }, + ["max"] = 29, + ["min"] = 22, + }, ["2HWeapon"] = { - ["max"] = 29, - ["min"] = 22, - }, + ["max"] = 29, + ["min"] = 22, + }, ["Claw"] = { - ["max"] = 29, - ["min"] = 22, - }, + ["max"] = 29, + ["min"] = 22, + }, ["Dagger"] = { - ["max"] = 29, - ["min"] = 22, - }, + ["max"] = 29, + ["min"] = 22, + }, ["Wand"] = { - ["max"] = 29, - ["min"] = 22, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3556824919", - ["text"] = "+#% to Global Critical Strike Multiplier", - ["type"] = "explicit", - }, - }, + ["max"] = 29, + ["min"] = 22, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3556824919", + ["text"] = "+#% to Global Critical Strike Multiplier", + ["type"] = "explicit", + }, + }, ["1488_LocalIncreasedPhysicalDamagePercentAndCritMulti"] = { ["1HWeapon"] = { - ["max"] = 15, - ["min"] = 10, - }, + ["max"] = 15, + ["min"] = 10, + }, ["Claw"] = { - ["max"] = 15, - ["min"] = 10, - }, + ["max"] = 15, + ["min"] = 10, + }, ["Dagger"] = { - ["max"] = 15, - ["min"] = 10, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3556824919", - ["text"] = "+#% to Global Critical Strike Multiplier", - ["type"] = "explicit", - }, - }, + ["max"] = 15, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3556824919", + ["text"] = "+#% to Global Critical Strike Multiplier", + ["type"] = "explicit", + }, + }, ["1492_SpellCritMultiplierForJewel"] = { ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 12, - }, + ["max"] = 15, + ["min"] = 12, + }, ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 12, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_274716455", - ["text"] = "+#% to Critical Strike Multiplier for Spell Damage", - ["type"] = "explicit", - }, - }, + ["max"] = 15, + ["min"] = 12, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_274716455", + ["text"] = "+#% to Critical Strike Multiplier for Spell Damage", + ["type"] = "explicit", + }, + }, ["1496_CritMultiplierWithBowForJewel"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1712221299", - ["text"] = "+#% to Critical Strike Multiplier with Bows", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1712221299", + ["text"] = "+#% to Critical Strike Multiplier with Bows", + ["type"] = "explicit", + }, + }, ["1496_CriticalStrikeMultiplierWithBows"] = { ["Quiver"] = { - ["max"] = 38, - ["min"] = 8, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1712221299", - ["text"] = "+#% to Critical Strike Multiplier with Bows", - ["type"] = "explicit", - }, - }, + ["max"] = 38, + ["min"] = 8, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1712221299", + ["text"] = "+#% to Critical Strike Multiplier with Bows", + ["type"] = "explicit", + }, + }, ["1501_OneHandCritMultiplierForJewel"] = { ["AnyJewel"] = { - ["max"] = 18, - ["min"] = 15, - }, + ["max"] = 18, + ["min"] = 15, + }, ["BaseJewel"] = { - ["max"] = 18, - ["min"] = 15, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_670153687", - ["text"] = "+#% to Critical Strike Multiplier with One Handed Melee Weapons", - ["type"] = "explicit", - }, - }, + ["max"] = 18, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_670153687", + ["text"] = "+#% to Critical Strike Multiplier with One Handed Melee Weapons", + ["type"] = "explicit", + }, + }, ["1502_MeleeCritMultiplierForJewel"] = { ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 12, - }, + ["max"] = 15, + ["min"] = 12, + }, ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 12, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4237442815", - ["text"] = "+#% to Melee Critical Strike Multiplier", - ["type"] = "explicit", - }, - }, + ["max"] = 15, + ["min"] = 12, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4237442815", + ["text"] = "+#% to Melee Critical Strike Multiplier", + ["type"] = "explicit", + }, + }, ["1507_FireCritMultiplierForJewel"] = { ["AnyJewel"] = { - ["max"] = 18, - ["min"] = 15, - }, + ["max"] = 18, + ["min"] = 15, + }, ["BaseJewel"] = { - ["max"] = 18, - ["min"] = 15, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2307547323", - ["text"] = "+#% to Critical Strike Multiplier with Fire Skills", - ["type"] = "explicit", - }, - }, + ["max"] = 18, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2307547323", + ["text"] = "+#% to Critical Strike Multiplier with Fire Skills", + ["type"] = "explicit", + }, + }, ["1508_LightningCritMultiplierForJewel"] = { ["AnyJewel"] = { - ["max"] = 18, - ["min"] = 15, - }, + ["max"] = 18, + ["min"] = 15, + }, ["BaseJewel"] = { - ["max"] = 18, - ["min"] = 15, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2441475928", - ["text"] = "+#% to Critical Strike Multiplier with Lightning Skills", - ["type"] = "explicit", - }, - }, + ["max"] = 18, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2441475928", + ["text"] = "+#% to Critical Strike Multiplier with Lightning Skills", + ["type"] = "explicit", + }, + }, ["1509_ColdCritMultiplierForJewel"] = { ["AnyJewel"] = { - ["max"] = 18, - ["min"] = 15, - }, + ["max"] = 18, + ["min"] = 15, + }, ["BaseJewel"] = { - ["max"] = 18, - ["min"] = 15, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_915908446", - ["text"] = "+#% to Critical Strike Multiplier with Cold Skills", - ["type"] = "explicit", - }, - }, + ["max"] = 18, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_915908446", + ["text"] = "+#% to Critical Strike Multiplier with Cold Skills", + ["type"] = "explicit", + }, + }, ["1510_ElementalCritMultiplierForJewel"] = { ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 12, - }, + ["max"] = 15, + ["min"] = 12, + }, ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 12, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1569407745", - ["text"] = "+#% to Critical Strike Multiplier with Elemental Skills", - ["type"] = "explicit", - }, - }, + ["max"] = 15, + ["min"] = 12, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1569407745", + ["text"] = "+#% to Critical Strike Multiplier with Elemental Skills", + ["type"] = "explicit", + }, + }, ["1512_ReducedCriticalStrikeDamageTaken"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_3855016469", - ["text"] = "You take #% reduced Extra Damage from Critical Strikes", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_3855016469", + ["text"] = "You take #% reduced Extra Damage from Critical Strikes", + ["type"] = "explicit", + }, + }, ["1512_ReducedExtraDamageFromCrits"] = { ["Shield"] = { - ["max"] = 60, - ["min"] = 21, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3855016469", - ["text"] = "You take #% reduced Extra Damage from Critical Strikes", - ["type"] = "explicit", - }, - }, + ["max"] = 60, + ["min"] = 21, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3855016469", + ["text"] = "You take #% reduced Extra Damage from Critical Strikes", + ["type"] = "explicit", + }, + }, ["1514_ReducedDamageFromCriticalStrikesPerEnduranceCharge"] = { ["Chest"] = { - ["max"] = 10, - ["min"] = 10, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2380848911", - ["text"] = "You take #% reduced Extra Damage from Critical Strikes per Endurance Charge", - ["type"] = "explicit", - }, - }, + ["max"] = 10, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2380848911", + ["text"] = "You take #% reduced Extra Damage from Critical Strikes per Endurance Charge", + ["type"] = "explicit", + }, + }, ["1517_LocalIncreasedPhysicalDamagePercentAndStun"] = { ["1HMace"] = { - ["max"] = 8, - ["min"] = 6, - }, + ["max"] = 8, + ["min"] = 6, + }, ["1HWeapon"] = { - ["max"] = 8, - ["min"] = 6, - }, + ["max"] = 8, + ["min"] = 6, + }, ["2HMace"] = { - ["max"] = 8, - ["min"] = 6, - }, + ["max"] = 8, + ["min"] = 6, + }, ["2HWeapon"] = { - ["max"] = 8, - ["min"] = 6, - }, + ["max"] = 8, + ["min"] = 6, + }, ["Staff"] = { - ["max"] = 8, - ["min"] = 6, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1443060084", - ["text"] = "#% reduced Enemy Stun Threshold", - ["type"] = "explicit", - }, - }, + ["max"] = 8, + ["min"] = 6, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1443060084", + ["text"] = "#% reduced Enemy Stun Threshold", + ["type"] = "explicit", + }, + }, ["1517_StunDurationAndThresholdUber"] = { ["1HMace"] = { - ["max"] = 20, - ["min"] = 11, - }, + ["max"] = 20, + ["min"] = 11, + }, ["1HWeapon"] = { - ["max"] = 20, - ["min"] = 11, - }, + ["max"] = 20, + ["min"] = 11, + }, ["2HMace"] = { - ["max"] = 30, - ["min"] = 11, - }, + ["max"] = 30, + ["min"] = 11, + }, ["2HWeapon"] = { - ["max"] = 30, - ["min"] = 11, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1443060084", - ["text"] = "#% reduced Enemy Stun Threshold", - ["type"] = "explicit", - }, - }, + ["max"] = 30, + ["min"] = 11, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1443060084", + ["text"] = "#% reduced Enemy Stun Threshold", + ["type"] = "explicit", + }, + }, ["1517_StunThresholdReduction"] = { ["1HAxe"] = { - ["max"] = 15, - ["min"] = 5, - }, + ["max"] = 15, + ["min"] = 5, + }, ["1HMace"] = { - ["max"] = 15, - ["min"] = 5, - }, + ["max"] = 15, + ["min"] = 5, + }, ["1HSword"] = { - ["max"] = 15, - ["min"] = 5, - }, + ["max"] = 15, + ["min"] = 5, + }, ["1HWeapon"] = { - ["max"] = 15, - ["min"] = 5, - }, + ["max"] = 15, + ["min"] = 5, + }, ["2HAxe"] = { - ["max"] = 15, - ["min"] = 5, - }, + ["max"] = 15, + ["min"] = 5, + }, ["2HMace"] = { - ["max"] = 15, - ["min"] = 5, - }, + ["max"] = 15, + ["min"] = 5, + }, ["2HSword"] = { - ["max"] = 15, - ["min"] = 5, - }, + ["max"] = 15, + ["min"] = 5, + }, ["2HWeapon"] = { - ["max"] = 15, - ["min"] = 5, - }, + ["max"] = 15, + ["min"] = 5, + }, ["Belt"] = { - ["max"] = 17, - ["min"] = 5, - }, + ["max"] = 17, + ["min"] = 5, + }, ["Staff"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1443060084", - ["text"] = "#% reduced Enemy Stun Threshold", - ["type"] = "explicit", - }, - }, - ["1521_CannotBeKnockedBack"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4212255859", - ["text"] = "Cannot be Knocked Back", - ["type"] = "explicit", - }, - }, + ["max"] = 15, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1443060084", + ["text"] = "#% reduced Enemy Stun Threshold", + ["type"] = "explicit", + }, + }, ["1528_LocalBaseWardAndLife"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_774059442", - ["text"] = "+# to Ward", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_774059442", + ["text"] = "+# to Ward", + ["type"] = "explicit", + }, + }, ["1528_LocalWard"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_774059442", - ["text"] = "+# to Ward", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_774059442", + ["text"] = "+# to Ward", + ["type"] = "explicit", + }, + }, ["1530_LocalWardAndStunRecoveryPercent"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_830161081", - ["text"] = "#% increased Ward", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_830161081", + ["text"] = "#% increased Ward", + ["type"] = "explicit", + }, + }, ["1530_LocalWardPercent"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_830161081", - ["text"] = "#% increased Ward", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_830161081", + ["text"] = "#% increased Ward", + ["type"] = "explicit", + }, + }, ["1531_WardDelayRecovery"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1130670241", - ["text"] = "#% faster Restoration of Ward", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1130670241", + ["text"] = "#% faster Restoration of Ward", + ["type"] = "explicit", + }, + }, ["1539_ArmourAndEnergyShield"] = { ["Belt"] = { - ["max"] = 400, - ["min"] = 105, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_809229260", - ["text"] = "+# to Armour", - ["type"] = "explicit", - }, - }, + ["max"] = 400, + ["min"] = 105, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_809229260", + ["text"] = "+# to Armour", + ["type"] = "explicit", + }, + }, ["1539_PhysicalDamageReductionRating"] = { ["AbyssJewel"] = { - ["max"] = 250, - ["min"] = 36, - }, + ["max"] = 250, + ["min"] = 36, + }, ["AnyJewel"] = { - ["max"] = 250, - ["min"] = 36, - }, + ["max"] = 250, + ["min"] = 36, + }, ["Belt"] = { - ["max"] = 540, - ["min"] = 3, - }, + ["max"] = 540, + ["min"] = 3, + }, ["Ring"] = { - ["max"] = 300, - ["min"] = 80, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_809229260", - ["text"] = "+# to Armour", - ["type"] = "explicit", - }, - }, + ["max"] = 300, + ["min"] = 80, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_809229260", + ["text"] = "+# to Armour", + ["type"] = "explicit", + }, + }, ["1540_LocalBaseArmourAndEnergyShield"] = { ["Boots"] = { - ["max"] = 375, - ["min"] = 5, - }, + ["max"] = 375, + ["min"] = 5, + }, ["Chest"] = { - ["max"] = 375, - ["min"] = 5, - }, + ["max"] = 375, + ["min"] = 5, + }, ["Gloves"] = { - ["max"] = 375, - ["min"] = 5, - }, + ["max"] = 375, + ["min"] = 5, + }, ["Helmet"] = { - ["max"] = 375, - ["min"] = 5, - }, - ["sign"] = "", - ["specialCaseData"] = { - ["overrideModLine"] = "+# to Armour", - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3484657501", - ["text"] = "+# to Armour (Local)", - ["type"] = "explicit", - }, - }, + ["max"] = 375, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "+# to Armour", + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3484657501", + ["text"] = "+# to Armour (Local)", + ["type"] = "explicit", + }, + }, ["1540_LocalBaseArmourAndEvasionRating"] = { ["Boots"] = { - ["max"] = 375, - ["min"] = 5, - }, + ["max"] = 375, + ["min"] = 5, + }, ["Chest"] = { - ["max"] = 375, - ["min"] = 5, - }, + ["max"] = 375, + ["min"] = 5, + }, ["Gloves"] = { - ["max"] = 375, - ["min"] = 5, - }, + ["max"] = 375, + ["min"] = 5, + }, ["Helmet"] = { - ["max"] = 375, - ["min"] = 5, - }, - ["sign"] = "", - ["specialCaseData"] = { - ["overrideModLine"] = "+# to Armour", - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3484657501", - ["text"] = "+# to Armour (Local)", - ["type"] = "explicit", - }, - }, + ["max"] = 375, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "+# to Armour", + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3484657501", + ["text"] = "+# to Armour (Local)", + ["type"] = "explicit", + }, + }, ["1540_LocalBaseArmourAndLife"] = { ["Boots"] = { - ["max"] = 144, - ["min"] = 20, - }, + ["max"] = 144, + ["min"] = 20, + }, ["Chest"] = { - ["max"] = 144, - ["min"] = 20, - }, + ["max"] = 144, + ["min"] = 20, + }, ["Gloves"] = { - ["max"] = 144, - ["min"] = 20, - }, + ["max"] = 144, + ["min"] = 20, + }, ["Helmet"] = { - ["max"] = 144, - ["min"] = 20, - }, - ["sign"] = "", - ["specialCaseData"] = { - ["overrideModLine"] = "+# to Armour", - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3484657501", - ["text"] = "+# to Armour (Local)", - ["type"] = "explicit", - }, - }, + ["max"] = 144, + ["min"] = 20, + }, + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "+# to Armour", + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3484657501", + ["text"] = "+# to Armour (Local)", + ["type"] = "explicit", + }, + }, ["1540_LocalBaseArmourEnergyShieldAndLife"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - ["overrideModLine"] = "+# to Armour", - }, + ["overrideModLine"] = "+# to Armour", + }, ["tradeMod"] = { - ["id"] = "explicit.stat_3484657501", - ["text"] = "+# to Armour (Local)", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_3484657501", + ["text"] = "+# to Armour (Local)", + ["type"] = "explicit", + }, + }, ["1540_LocalBaseArmourEvasionRatingAndLife"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - ["overrideModLine"] = "+# to Armour", - }, + ["overrideModLine"] = "+# to Armour", + }, ["tradeMod"] = { - ["id"] = "explicit.stat_3484657501", - ["text"] = "+# to Armour (Local)", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_3484657501", + ["text"] = "+# to Armour (Local)", + ["type"] = "explicit", + }, + }, ["1540_LocalPhysicalDamageReductionRating"] = { ["Boots"] = { - ["max"] = 500, - ["min"] = 6, - }, + ["max"] = 500, + ["min"] = 6, + }, ["Chest"] = { - ["max"] = 500, - ["min"] = 6, - }, + ["max"] = 500, + ["min"] = 6, + }, ["Gloves"] = { - ["max"] = 500, - ["min"] = 6, - }, + ["max"] = 500, + ["min"] = 6, + }, ["Helmet"] = { - ["max"] = 500, - ["min"] = 6, - }, + ["max"] = 500, + ["min"] = 6, + }, ["Shield"] = { - ["max"] = 375, - ["min"] = 50, - }, - ["sign"] = "", - ["specialCaseData"] = { - ["overrideModLine"] = "+# to Armour", - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3484657501", - ["text"] = "+# to Armour (Local)", - ["type"] = "explicit", - }, - }, + ["max"] = 375, + ["min"] = 50, + }, + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "+# to Armour", + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3484657501", + ["text"] = "+# to Armour (Local)", + ["type"] = "explicit", + }, + }, ["1541_ArmourEnergyShieldForJewel"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_2866361420", - ["text"] = "#% increased Armour", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_2866361420", + ["text"] = "#% increased Armour", + ["type"] = "explicit", + }, + }, ["1541_ArmourEvasionForJewel"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_2866361420", - ["text"] = "#% increased Armour", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_2866361420", + ["text"] = "#% increased Armour", + ["type"] = "explicit", + }, + }, ["1541_GlobalPhysicalDamageReductionRatingPercent"] = { ["Amulet"] = { - ["max"] = 36, - ["min"] = 4, - }, + ["max"] = 36, + ["min"] = 4, + }, ["Belt"] = { - ["max"] = 15, - ["min"] = 7, - }, + ["max"] = 15, + ["min"] = 7, + }, ["Ring"] = { - ["max"] = 15, - ["min"] = 7, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2866361420", - ["text"] = "#% increased Armour", - ["type"] = "explicit", - }, - }, + ["max"] = 15, + ["min"] = 7, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2866361420", + ["text"] = "#% increased Armour", + ["type"] = "explicit", + }, + }, ["1541_IncreasedArmourForJewel"] = { ["AnyJewel"] = { - ["max"] = 18, - ["min"] = 14, - }, + ["max"] = 18, + ["min"] = 14, + }, ["BaseJewel"] = { - ["max"] = 18, - ["min"] = 14, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2866361420", - ["text"] = "#% increased Armour", - ["type"] = "explicit", - }, - }, + ["max"] = 18, + ["min"] = 14, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2866361420", + ["text"] = "#% increased Armour", + ["type"] = "explicit", + }, + }, ["1541_ReducedPhysicalDamageTakenMaven"] = { ["Boots"] = { - ["max"] = 20, - ["min"] = 15, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2866361420", - ["text"] = "#% increased Armour", - ["type"] = "explicit", - }, - }, + ["max"] = 20, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2866361420", + ["text"] = "#% increased Armour", + ["type"] = "explicit", + }, + }, ["1542_LocalIncreasedArmourAndLife"] = { ["Boots"] = { - ["max"] = 28, - ["min"] = 12, - }, + ["max"] = 28, + ["min"] = 12, + }, ["Chest"] = { - ["max"] = 28, - ["min"] = 12, - }, + ["max"] = 28, + ["min"] = 12, + }, ["Gloves"] = { - ["max"] = 28, - ["min"] = 12, - }, + ["max"] = 28, + ["min"] = 12, + }, ["Helmet"] = { - ["max"] = 28, - ["min"] = 12, - }, + ["max"] = 28, + ["min"] = 12, + }, ["Shield"] = { - ["max"] = 21, - ["min"] = 12, - }, - ["sign"] = "", - ["specialCaseData"] = { - ["overrideModLine"] = "#% increased Armour", - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1062208444", - ["text"] = "#% increased Armour (Local)", - ["type"] = "explicit", - }, - }, + ["max"] = 21, + ["min"] = 12, + }, + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "#% increased Armour", + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1062208444", + ["text"] = "#% increased Armour (Local)", + ["type"] = "explicit", + }, + }, ["1542_LocalPhysicalDamageReductionRatingAndStunRecoveryPercent"] = { ["Boots"] = { - ["max"] = 42, - ["min"] = 6, - }, + ["max"] = 42, + ["min"] = 6, + }, ["Chest"] = { - ["max"] = 42, - ["min"] = 6, - }, + ["max"] = 42, + ["min"] = 6, + }, ["Gloves"] = { - ["max"] = 42, - ["min"] = 6, - }, + ["max"] = 42, + ["min"] = 6, + }, ["Helmet"] = { - ["max"] = 42, - ["min"] = 6, - }, - ["sign"] = "", - ["specialCaseData"] = { - ["overrideModLine"] = "#% increased Armour", - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1062208444", - ["text"] = "#% increased Armour (Local)", - ["type"] = "explicit", - }, - }, + ["max"] = 42, + ["min"] = 6, + }, + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "#% increased Armour", + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1062208444", + ["text"] = "#% increased Armour (Local)", + ["type"] = "explicit", + }, + }, ["1542_LocalPhysicalDamageReductionRatingPercent"] = { ["Boots"] = { - ["max"] = 100, - ["min"] = 15, - }, + ["max"] = 100, + ["min"] = 15, + }, ["Chest"] = { - ["max"] = 110, - ["min"] = 15, - }, + ["max"] = 110, + ["min"] = 15, + }, ["Gloves"] = { - ["max"] = 100, - ["min"] = 15, - }, + ["max"] = 100, + ["min"] = 15, + }, ["Helmet"] = { - ["max"] = 100, - ["min"] = 15, - }, + ["max"] = 100, + ["min"] = 15, + }, ["Shield"] = { - ["max"] = 110, - ["min"] = 26, - }, - ["sign"] = "", - ["specialCaseData"] = { - ["overrideModLine"] = "#% increased Armour", - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1062208444", - ["text"] = "#% increased Armour (Local)", - ["type"] = "explicit", - }, - }, + ["max"] = 110, + ["min"] = 26, + }, + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "#% increased Armour", + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1062208444", + ["text"] = "#% increased Armour (Local)", + ["type"] = "explicit", + }, + }, ["1542_LocalPhysicalDamageReductionRatingPercentAndBlockChance"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - ["overrideModLine"] = "#% increased Armour", - }, + ["overrideModLine"] = "#% increased Armour", + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1062208444", - ["text"] = "#% increased Armour (Local)", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1062208444", + ["text"] = "#% increased Armour (Local)", + ["type"] = "explicit", + }, + }, ["1542_LocalPhysicalDamageReductionRatingPercentSuffix"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - ["overrideModLine"] = "#% increased Armour", - }, + ["overrideModLine"] = "#% increased Armour", + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1062208444", - ["text"] = "#% increased Armour (Local)", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1062208444", + ["text"] = "#% increased Armour (Local)", + ["type"] = "explicit", + }, + }, ["1544_EvasionRating"] = { ["AbyssJewel"] = { - ["max"] = 250, - ["min"] = 36, - }, + ["max"] = 250, + ["min"] = 36, + }, ["AnyJewel"] = { - ["max"] = 250, - ["min"] = 36, - }, + ["max"] = 250, + ["min"] = 36, + }, ["Belt"] = { - ["max"] = 180, - ["min"] = 36, - }, + ["max"] = 180, + ["min"] = 36, + }, ["Ring"] = { - ["max"] = 180, - ["min"] = 3, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2144192055", - ["text"] = "+# to Evasion Rating", - ["type"] = "explicit", - }, - }, + ["max"] = 180, + ["min"] = 3, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2144192055", + ["text"] = "+# to Evasion Rating", + ["type"] = "explicit", + }, + }, ["1544_EvasionRatingAndEnergyShield"] = { ["Belt"] = { - ["max"] = 400, - ["min"] = 105, - }, + ["max"] = 400, + ["min"] = 105, + }, ["Quiver"] = { - ["max"] = 400, - ["min"] = 105, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2144192055", - ["text"] = "+# to Evasion Rating", - ["type"] = "explicit", - }, - }, + ["max"] = 400, + ["min"] = 105, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2144192055", + ["text"] = "+# to Evasion Rating", + ["type"] = "explicit", + }, + }, ["1548_LocalBaseArmourAndEvasionRating"] = { ["Boots"] = { - ["max"] = 375, - ["min"] = 5, - }, + ["max"] = 375, + ["min"] = 5, + }, ["Chest"] = { - ["max"] = 375, - ["min"] = 5, - }, + ["max"] = 375, + ["min"] = 5, + }, ["Gloves"] = { - ["max"] = 375, - ["min"] = 5, - }, + ["max"] = 375, + ["min"] = 5, + }, ["Helmet"] = { - ["max"] = 375, - ["min"] = 5, - }, - ["sign"] = "", - ["specialCaseData"] = { - ["overrideModLine"] = "+# to Evasion Rating", - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_53045048", - ["text"] = "+# to Evasion Rating (Local)", - ["type"] = "explicit", - }, - }, + ["max"] = 375, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "+# to Evasion Rating", + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_53045048", + ["text"] = "+# to Evasion Rating (Local)", + ["type"] = "explicit", + }, + }, ["1548_LocalBaseArmourEvasionRatingAndLife"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - ["overrideModLine"] = "+# to Evasion Rating", - }, + ["overrideModLine"] = "+# to Evasion Rating", + }, ["tradeMod"] = { - ["id"] = "explicit.stat_53045048", - ["text"] = "+# to Evasion Rating (Local)", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_53045048", + ["text"] = "+# to Evasion Rating (Local)", + ["type"] = "explicit", + }, + }, ["1548_LocalBaseEvasionRatingAndEnergyShield"] = { ["Boots"] = { - ["max"] = 375, - ["min"] = 5, - }, + ["max"] = 375, + ["min"] = 5, + }, ["Chest"] = { - ["max"] = 375, - ["min"] = 5, - }, + ["max"] = 375, + ["min"] = 5, + }, ["Gloves"] = { - ["max"] = 375, - ["min"] = 5, - }, + ["max"] = 375, + ["min"] = 5, + }, ["Helmet"] = { - ["max"] = 375, - ["min"] = 5, - }, - ["sign"] = "", - ["specialCaseData"] = { - ["overrideModLine"] = "+# to Evasion Rating", - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_53045048", - ["text"] = "+# to Evasion Rating (Local)", - ["type"] = "explicit", - }, - }, + ["max"] = 375, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "+# to Evasion Rating", + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_53045048", + ["text"] = "+# to Evasion Rating (Local)", + ["type"] = "explicit", + }, + }, ["1548_LocalBaseEvasionRatingAndLife"] = { ["Boots"] = { - ["max"] = 120, - ["min"] = 14, - }, + ["max"] = 120, + ["min"] = 14, + }, ["Chest"] = { - ["max"] = 120, - ["min"] = 14, - }, + ["max"] = 120, + ["min"] = 14, + }, ["Gloves"] = { - ["max"] = 120, - ["min"] = 14, - }, + ["max"] = 120, + ["min"] = 14, + }, ["Helmet"] = { - ["max"] = 120, - ["min"] = 14, - }, - ["sign"] = "", - ["specialCaseData"] = { - ["overrideModLine"] = "+# to Evasion Rating", - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_53045048", - ["text"] = "+# to Evasion Rating (Local)", - ["type"] = "explicit", - }, - }, + ["max"] = 120, + ["min"] = 14, + }, + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "+# to Evasion Rating", + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_53045048", + ["text"] = "+# to Evasion Rating (Local)", + ["type"] = "explicit", + }, + }, ["1548_LocalBaseEvasionRatingEnergyShieldAndLife"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - ["overrideModLine"] = "+# to Evasion Rating", - }, + ["overrideModLine"] = "+# to Evasion Rating", + }, ["tradeMod"] = { - ["id"] = "explicit.stat_53045048", - ["text"] = "+# to Evasion Rating (Local)", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_53045048", + ["text"] = "+# to Evasion Rating (Local)", + ["type"] = "explicit", + }, + }, ["1548_LocalEvasionRating"] = { ["Boots"] = { - ["max"] = 500, - ["min"] = 6, - }, + ["max"] = 500, + ["min"] = 6, + }, ["Chest"] = { - ["max"] = 500, - ["min"] = 6, - }, + ["max"] = 500, + ["min"] = 6, + }, ["Gloves"] = { - ["max"] = 500, - ["min"] = 6, - }, + ["max"] = 500, + ["min"] = 6, + }, ["Helmet"] = { - ["max"] = 500, - ["min"] = 6, - }, + ["max"] = 500, + ["min"] = 6, + }, ["Shield"] = { - ["max"] = 375, - ["min"] = 50, - }, - ["sign"] = "", - ["specialCaseData"] = { - ["overrideModLine"] = "+# to Evasion Rating", - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_53045048", - ["text"] = "+# to Evasion Rating (Local)", - ["type"] = "explicit", - }, - }, + ["max"] = 375, + ["min"] = 50, + }, + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "+# to Evasion Rating", + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_53045048", + ["text"] = "+# to Evasion Rating (Local)", + ["type"] = "explicit", + }, + }, ["1549_ArmourEvasionForJewel"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_2106365538", - ["text"] = "#% increased Evasion Rating", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_2106365538", + ["text"] = "#% increased Evasion Rating", + ["type"] = "explicit", + }, + }, ["1549_EvasionEnergyShieldForJewel"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_2106365538", - ["text"] = "#% increased Evasion Rating", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_2106365538", + ["text"] = "#% increased Evasion Rating", + ["type"] = "explicit", + }, + }, ["1549_GlobalEvasionRatingPercent"] = { ["Amulet"] = { - ["max"] = 36, - ["min"] = 4, - }, + ["max"] = 36, + ["min"] = 4, + }, ["Belt"] = { - ["max"] = 15, - ["min"] = 7, - }, + ["max"] = 15, + ["min"] = 7, + }, ["Ring"] = { - ["max"] = 15, - ["min"] = 7, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2106365538", - ["text"] = "#% increased Evasion Rating", - ["type"] = "explicit", - }, - }, + ["max"] = 15, + ["min"] = 7, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2106365538", + ["text"] = "#% increased Evasion Rating", + ["type"] = "explicit", + }, + }, ["1549_IncreasedEvasionForJewel"] = { ["AnyJewel"] = { - ["max"] = 18, - ["min"] = 14, - }, + ["max"] = 18, + ["min"] = 14, + }, ["BaseJewel"] = { - ["max"] = 18, - ["min"] = 14, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2106365538", - ["text"] = "#% increased Evasion Rating", - ["type"] = "explicit", - }, - }, + ["max"] = 18, + ["min"] = 14, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2106365538", + ["text"] = "#% increased Evasion Rating", + ["type"] = "explicit", + }, + }, ["1550_LocalEvasionRatingAndStunRecoveryIncreasePercent"] = { ["Boots"] = { - ["max"] = 42, - ["min"] = 6, - }, + ["max"] = 42, + ["min"] = 6, + }, ["Chest"] = { - ["max"] = 42, - ["min"] = 6, - }, + ["max"] = 42, + ["min"] = 6, + }, ["Gloves"] = { - ["max"] = 42, - ["min"] = 6, - }, + ["max"] = 42, + ["min"] = 6, + }, ["Helmet"] = { - ["max"] = 42, - ["min"] = 6, - }, - ["sign"] = "", - ["specialCaseData"] = { - ["overrideModLine"] = "#% increased Evasion Rating", - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_124859000", - ["text"] = "#% increased Evasion Rating (Local)", - ["type"] = "explicit", - }, - }, + ["max"] = 42, + ["min"] = 6, + }, + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "#% increased Evasion Rating", + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_124859000", + ["text"] = "#% increased Evasion Rating (Local)", + ["type"] = "explicit", + }, + }, ["1550_LocalEvasionRatingIncreasePercent"] = { ["Boots"] = { - ["max"] = 100, - ["min"] = 15, - }, + ["max"] = 100, + ["min"] = 15, + }, ["Chest"] = { - ["max"] = 110, - ["min"] = 15, - }, + ["max"] = 110, + ["min"] = 15, + }, ["Gloves"] = { - ["max"] = 100, - ["min"] = 15, - }, + ["max"] = 100, + ["min"] = 15, + }, ["Helmet"] = { - ["max"] = 100, - ["min"] = 15, - }, + ["max"] = 100, + ["min"] = 15, + }, ["Shield"] = { - ["max"] = 110, - ["min"] = 26, - }, - ["sign"] = "", - ["specialCaseData"] = { - ["overrideModLine"] = "#% increased Evasion Rating", - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_124859000", - ["text"] = "#% increased Evasion Rating (Local)", - ["type"] = "explicit", - }, - }, + ["max"] = 110, + ["min"] = 26, + }, + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "#% increased Evasion Rating", + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_124859000", + ["text"] = "#% increased Evasion Rating (Local)", + ["type"] = "explicit", + }, + }, ["1550_LocalEvasionRatingIncreasePercentSuffix"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - ["overrideModLine"] = "#% increased Evasion Rating", - }, + ["overrideModLine"] = "#% increased Evasion Rating", + }, ["tradeMod"] = { - ["id"] = "explicit.stat_124859000", - ["text"] = "#% increased Evasion Rating (Local)", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_124859000", + ["text"] = "#% increased Evasion Rating (Local)", + ["type"] = "explicit", + }, + }, ["1550_LocalIncreasedEvasionAndLife"] = { ["Boots"] = { - ["max"] = 28, - ["min"] = 12, - }, + ["max"] = 28, + ["min"] = 12, + }, ["Chest"] = { - ["max"] = 28, - ["min"] = 12, - }, + ["max"] = 28, + ["min"] = 12, + }, ["Gloves"] = { - ["max"] = 28, - ["min"] = 12, - }, + ["max"] = 28, + ["min"] = 12, + }, ["Helmet"] = { - ["max"] = 28, - ["min"] = 12, - }, + ["max"] = 28, + ["min"] = 12, + }, ["Shield"] = { - ["max"] = 21, - ["min"] = 12, - }, - ["sign"] = "", - ["specialCaseData"] = { - ["overrideModLine"] = "#% increased Evasion Rating", - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_124859000", - ["text"] = "#% increased Evasion Rating (Local)", - ["type"] = "explicit", - }, - }, + ["max"] = 21, + ["min"] = 12, + }, + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "#% increased Evasion Rating", + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_124859000", + ["text"] = "#% increased Evasion Rating (Local)", + ["type"] = "explicit", + }, + }, ["1552_LocalArmourAndEnergyShield"] = { ["Boots"] = { - ["max"] = 100, - ["min"] = 15, - }, + ["max"] = 100, + ["min"] = 15, + }, ["Chest"] = { - ["max"] = 110, - ["min"] = 15, - }, + ["max"] = 110, + ["min"] = 15, + }, ["Gloves"] = { - ["max"] = 100, - ["min"] = 15, - }, + ["max"] = 100, + ["min"] = 15, + }, ["Helmet"] = { - ["max"] = 100, - ["min"] = 15, - }, + ["max"] = 100, + ["min"] = 15, + }, ["Shield"] = { - ["max"] = 110, - ["min"] = 26, - }, - ["sign"] = "", - ["specialCaseData"] = { - ["overrideModLine"] = "#% increased Armour and Energy Shield", - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3321629045", - ["text"] = "#% increased Armour and Energy Shield (Local)", - ["type"] = "explicit", - }, - }, + ["max"] = 110, + ["min"] = 26, + }, + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "#% increased Armour and Energy Shield", + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3321629045", + ["text"] = "#% increased Armour and Energy Shield (Local)", + ["type"] = "explicit", + }, + }, ["1552_LocalArmourAndEnergyShieldAndStunRecovery"] = { ["Boots"] = { - ["max"] = 42, - ["min"] = 6, - }, + ["max"] = 42, + ["min"] = 6, + }, ["Chest"] = { - ["max"] = 42, - ["min"] = 6, - }, + ["max"] = 42, + ["min"] = 6, + }, ["Gloves"] = { - ["max"] = 42, - ["min"] = 6, - }, + ["max"] = 42, + ["min"] = 6, + }, ["Helmet"] = { - ["max"] = 42, - ["min"] = 6, - }, - ["sign"] = "", - ["specialCaseData"] = { - ["overrideModLine"] = "#% increased Armour and Energy Shield", - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3321629045", - ["text"] = "#% increased Armour and Energy Shield (Local)", - ["type"] = "explicit", - }, - }, + ["max"] = 42, + ["min"] = 6, + }, + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "#% increased Armour and Energy Shield", + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3321629045", + ["text"] = "#% increased Armour and Energy Shield (Local)", + ["type"] = "explicit", + }, + }, ["1552_LocalArmourAndEnergyShieldSuffix"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - ["overrideModLine"] = "#% increased Armour and Energy Shield", - }, + ["overrideModLine"] = "#% increased Armour and Energy Shield", + }, ["tradeMod"] = { - ["id"] = "explicit.stat_3321629045", - ["text"] = "#% increased Armour and Energy Shield (Local)", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_3321629045", + ["text"] = "#% increased Armour and Energy Shield (Local)", + ["type"] = "explicit", + }, + }, ["1552_LocalIncreasedArmourAndEnergyShieldAndLife"] = { ["Boots"] = { - ["max"] = 28, - ["min"] = 12, - }, + ["max"] = 28, + ["min"] = 12, + }, ["Chest"] = { - ["max"] = 28, - ["min"] = 12, - }, + ["max"] = 28, + ["min"] = 12, + }, ["Gloves"] = { - ["max"] = 28, - ["min"] = 12, - }, + ["max"] = 28, + ["min"] = 12, + }, ["Helmet"] = { - ["max"] = 28, - ["min"] = 12, - }, + ["max"] = 28, + ["min"] = 12, + }, ["Shield"] = { - ["max"] = 21, - ["min"] = 12, - }, - ["sign"] = "", - ["specialCaseData"] = { - ["overrideModLine"] = "#% increased Armour and Energy Shield", - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3321629045", - ["text"] = "#% increased Armour and Energy Shield (Local)", - ["type"] = "explicit", - }, - }, + ["max"] = 21, + ["min"] = 12, + }, + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "#% increased Armour and Energy Shield", + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3321629045", + ["text"] = "#% increased Armour and Energy Shield (Local)", + ["type"] = "explicit", + }, + }, ["1553_LocalArmourAndEvasion"] = { ["Boots"] = { - ["max"] = 100, - ["min"] = 15, - }, + ["max"] = 100, + ["min"] = 15, + }, ["Chest"] = { - ["max"] = 110, - ["min"] = 15, - }, + ["max"] = 110, + ["min"] = 15, + }, ["Gloves"] = { - ["max"] = 100, - ["min"] = 15, - }, + ["max"] = 100, + ["min"] = 15, + }, ["Helmet"] = { - ["max"] = 100, - ["min"] = 15, - }, + ["max"] = 100, + ["min"] = 15, + }, ["Shield"] = { - ["max"] = 110, - ["min"] = 26, - }, - ["sign"] = "", - ["specialCaseData"] = { - ["overrideModLine"] = "#% increased Armour and Evasion", - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2451402625", - ["text"] = "#% increased Armour and Evasion (Local)", - ["type"] = "explicit", - }, - }, + ["max"] = 110, + ["min"] = 26, + }, + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "#% increased Armour and Evasion", + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2451402625", + ["text"] = "#% increased Armour and Evasion (Local)", + ["type"] = "explicit", + }, + }, ["1553_LocalArmourAndEvasionAndStunRecovery"] = { ["Boots"] = { - ["max"] = 42, - ["min"] = 6, - }, + ["max"] = 42, + ["min"] = 6, + }, ["Chest"] = { - ["max"] = 42, - ["min"] = 6, - }, + ["max"] = 42, + ["min"] = 6, + }, ["Gloves"] = { - ["max"] = 42, - ["min"] = 6, - }, + ["max"] = 42, + ["min"] = 6, + }, ["Helmet"] = { - ["max"] = 42, - ["min"] = 6, - }, - ["sign"] = "", - ["specialCaseData"] = { - ["overrideModLine"] = "#% increased Armour and Evasion", - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2451402625", - ["text"] = "#% increased Armour and Evasion (Local)", - ["type"] = "explicit", - }, - }, + ["max"] = 42, + ["min"] = 6, + }, + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "#% increased Armour and Evasion", + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2451402625", + ["text"] = "#% increased Armour and Evasion (Local)", + ["type"] = "explicit", + }, + }, ["1553_LocalArmourAndEvasionSuffix"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - ["overrideModLine"] = "#% increased Armour and Evasion", - }, + ["overrideModLine"] = "#% increased Armour and Evasion", + }, ["tradeMod"] = { - ["id"] = "explicit.stat_2451402625", - ["text"] = "#% increased Armour and Evasion (Local)", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_2451402625", + ["text"] = "#% increased Armour and Evasion (Local)", + ["type"] = "explicit", + }, + }, ["1553_LocalIncreasedArmourAndEvasionAndLife"] = { ["Boots"] = { - ["max"] = 28, - ["min"] = 12, - }, + ["max"] = 28, + ["min"] = 12, + }, ["Chest"] = { - ["max"] = 28, - ["min"] = 12, - }, + ["max"] = 28, + ["min"] = 12, + }, ["Gloves"] = { - ["max"] = 28, - ["min"] = 12, - }, + ["max"] = 28, + ["min"] = 12, + }, ["Helmet"] = { - ["max"] = 28, - ["min"] = 12, - }, + ["max"] = 28, + ["min"] = 12, + }, ["Shield"] = { - ["max"] = 21, - ["min"] = 12, - }, - ["sign"] = "", - ["specialCaseData"] = { - ["overrideModLine"] = "#% increased Armour and Evasion", - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2451402625", - ["text"] = "#% increased Armour and Evasion (Local)", - ["type"] = "explicit", - }, - }, + ["max"] = 21, + ["min"] = 12, + }, + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "#% increased Armour and Evasion", + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2451402625", + ["text"] = "#% increased Armour and Evasion (Local)", + ["type"] = "explicit", + }, + }, ["1554_LocalEvasionAndEnergyShield"] = { ["Boots"] = { - ["max"] = 74, - ["min"] = 26, - }, + ["max"] = 74, + ["min"] = 26, + }, ["Chest"] = { - ["max"] = 110, - ["min"] = 26, - }, + ["max"] = 110, + ["min"] = 26, + }, ["Gloves"] = { - ["max"] = 74, - ["min"] = 26, - }, + ["max"] = 74, + ["min"] = 26, + }, ["Helmet"] = { - ["max"] = 74, - ["min"] = 26, - }, + ["max"] = 74, + ["min"] = 26, + }, ["Shield"] = { - ["max"] = 110, - ["min"] = 26, - }, - ["sign"] = "", - ["specialCaseData"] = { - ["overrideModLine"] = "#% increased Evasion and Energy Shield", - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1999113824", - ["text"] = "#% increased Evasion and Energy Shield (Local)", - ["type"] = "explicit", - }, - }, + ["max"] = 110, + ["min"] = 26, + }, + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "#% increased Evasion and Energy Shield", + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1999113824", + ["text"] = "#% increased Evasion and Energy Shield (Local)", + ["type"] = "explicit", + }, + }, ["1554_LocalEvasionAndEnergyShieldAndStunRecovery"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - ["overrideModLine"] = "#% increased Evasion and Energy Shield", - }, + ["overrideModLine"] = "#% increased Evasion and Energy Shield", + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1999113824", - ["text"] = "#% increased Evasion and Energy Shield (Local)", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1999113824", + ["text"] = "#% increased Evasion and Energy Shield (Local)", + ["type"] = "explicit", + }, + }, ["1554_LocalEvasionAndEnergyShieldSuffix"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - ["overrideModLine"] = "#% increased Evasion and Energy Shield", - }, + ["overrideModLine"] = "#% increased Evasion and Energy Shield", + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1999113824", - ["text"] = "#% increased Evasion and Energy Shield (Local)", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1999113824", + ["text"] = "#% increased Evasion and Energy Shield (Local)", + ["type"] = "explicit", + }, + }, ["1554_LocalIncreasedEvasionAndEnergyShieldAndLife"] = { ["Boots"] = { - ["max"] = 21, - ["min"] = 12, - }, + ["max"] = 21, + ["min"] = 12, + }, ["Chest"] = { - ["max"] = 21, - ["min"] = 12, - }, + ["max"] = 21, + ["min"] = 12, + }, ["Gloves"] = { - ["max"] = 21, - ["min"] = 12, - }, + ["max"] = 21, + ["min"] = 12, + }, ["Helmet"] = { - ["max"] = 21, - ["min"] = 12, - }, + ["max"] = 21, + ["min"] = 12, + }, ["Shield"] = { - ["max"] = 21, - ["min"] = 12, - }, - ["sign"] = "", - ["specialCaseData"] = { - ["overrideModLine"] = "#% increased Evasion and Energy Shield", - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1999113824", - ["text"] = "#% increased Evasion and Energy Shield (Local)", - ["type"] = "explicit", - }, - }, + ["max"] = 21, + ["min"] = 12, + }, + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "#% increased Evasion and Energy Shield", + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1999113824", + ["text"] = "#% increased Evasion and Energy Shield (Local)", + ["type"] = "explicit", + }, + }, ["1555_LocalArmourAndEvasionAndEnergyShield"] = { ["Boots"] = { - ["max"] = 100, - ["min"] = 27, - }, + ["max"] = 100, + ["min"] = 27, + }, ["Chest"] = { - ["max"] = 110, - ["min"] = 27, - }, + ["max"] = 110, + ["min"] = 27, + }, ["Gloves"] = { - ["max"] = 100, - ["min"] = 27, - }, + ["max"] = 100, + ["min"] = 27, + }, ["Helmet"] = { - ["max"] = 100, - ["min"] = 27, - }, - ["sign"] = "", - ["specialCaseData"] = { - ["overrideModLine"] = "#% increased Armour, Evasion and Energy Shield", - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3523867985", - ["text"] = "#% increased Armour, Evasion and Energy Shield (Local)", - ["type"] = "explicit", - }, - }, + ["max"] = 100, + ["min"] = 27, + }, + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "#% increased Armour, Evasion and Energy Shield", + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3523867985", + ["text"] = "#% increased Armour, Evasion and Energy Shield (Local)", + ["type"] = "explicit", + }, + }, ["1555_LocalArmourAndEvasionAndEnergyShieldAndStunRecovery"] = { ["Boots"] = { - ["max"] = 42, - ["min"] = 6, - }, + ["max"] = 42, + ["min"] = 6, + }, ["Chest"] = { - ["max"] = 42, - ["min"] = 6, - }, + ["max"] = 42, + ["min"] = 6, + }, ["Gloves"] = { - ["max"] = 42, - ["min"] = 6, - }, + ["max"] = 42, + ["min"] = 6, + }, ["Helmet"] = { - ["max"] = 42, - ["min"] = 6, - }, - ["sign"] = "", - ["specialCaseData"] = { - ["overrideModLine"] = "#% increased Armour, Evasion and Energy Shield", - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3523867985", - ["text"] = "#% increased Armour, Evasion and Energy Shield (Local)", - ["type"] = "explicit", - }, - }, + ["max"] = 42, + ["min"] = 6, + }, + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "#% increased Armour, Evasion and Energy Shield", + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3523867985", + ["text"] = "#% increased Armour, Evasion and Energy Shield (Local)", + ["type"] = "explicit", + }, + }, ["1555_LocalArmourAndEvasionAndEnergyShieldSuffix"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - ["overrideModLine"] = "#% increased Armour, Evasion and Energy Shield", - }, + ["overrideModLine"] = "#% increased Armour, Evasion and Energy Shield", + }, ["tradeMod"] = { - ["id"] = "explicit.stat_3523867985", - ["text"] = "#% increased Armour, Evasion and Energy Shield (Local)", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_3523867985", + ["text"] = "#% increased Armour, Evasion and Energy Shield (Local)", + ["type"] = "explicit", + }, + }, ["1555_LocalIncreasedDefencesAndLife"] = { ["Boots"] = { - ["max"] = 28, - ["min"] = 12, - }, + ["max"] = 28, + ["min"] = 12, + }, ["Chest"] = { - ["max"] = 28, - ["min"] = 12, - }, + ["max"] = 28, + ["min"] = 12, + }, ["Gloves"] = { - ["max"] = 28, - ["min"] = 12, - }, + ["max"] = 28, + ["min"] = 12, + }, ["Helmet"] = { - ["max"] = 28, - ["min"] = 12, - }, + ["max"] = 28, + ["min"] = 12, + }, ["Shield"] = { - ["max"] = 21, - ["min"] = 12, - }, - ["sign"] = "", - ["specialCaseData"] = { - ["overrideModLine"] = "#% increased Armour, Evasion and Energy Shield", - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3523867985", - ["text"] = "#% increased Armour, Evasion and Energy Shield (Local)", - ["type"] = "explicit", - }, - }, + ["max"] = 21, + ["min"] = 12, + }, + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "#% increased Armour, Evasion and Energy Shield", + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3523867985", + ["text"] = "#% increased Armour, Evasion and Energy Shield (Local)", + ["type"] = "explicit", + }, + }, ["1558_ArmourAndEnergyShield"] = { ["Belt"] = { - ["max"] = 35, - ["min"] = 11, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3489782002", - ["text"] = "+# to maximum Energy Shield", - ["type"] = "explicit", - }, - }, + ["max"] = 35, + ["min"] = 11, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3489782002", + ["text"] = "+# to maximum Energy Shield", + ["type"] = "explicit", + }, + }, ["1558_EnergyShield"] = { ["AbyssJewel"] = { - ["max"] = 40, - ["min"] = 21, - }, + ["max"] = 40, + ["min"] = 21, + }, ["Amulet"] = { - ["max"] = 51, - ["min"] = 1, - }, + ["max"] = 51, + ["min"] = 1, + }, ["AnyJewel"] = { - ["max"] = 40, - ["min"] = 21, - }, + ["max"] = 40, + ["min"] = 21, + }, ["Belt"] = { - ["max"] = 51, - ["min"] = 1, - }, + ["max"] = 51, + ["min"] = 1, + }, ["Ring"] = { - ["max"] = 47, - ["min"] = 1, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3489782002", - ["text"] = "+# to maximum Energy Shield", - ["type"] = "explicit", - }, - }, + ["max"] = 47, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3489782002", + ["text"] = "+# to maximum Energy Shield", + ["type"] = "explicit", + }, + }, ["1558_EnergyShieldAndDegenGracePeriod"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_3489782002", - ["text"] = "+# to maximum Energy Shield", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_3489782002", + ["text"] = "+# to maximum Energy Shield", + ["type"] = "explicit", + }, + }, ["1558_EnergyShieldAndPercent"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_3489782002", - ["text"] = "+# to maximum Energy Shield", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_3489782002", + ["text"] = "+# to maximum Energy Shield", + ["type"] = "explicit", + }, + }, ["1558_EnergyShieldAndRegen"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_3489782002", - ["text"] = "+# to maximum Energy Shield", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_3489782002", + ["text"] = "+# to maximum Energy Shield", + ["type"] = "explicit", + }, + }, ["1558_EvasionRatingAndEnergyShield"] = { ["Belt"] = { - ["max"] = 35, - ["min"] = 11, - }, + ["max"] = 35, + ["min"] = 11, + }, ["Quiver"] = { - ["max"] = 35, - ["min"] = 11, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3489782002", - ["text"] = "+# to maximum Energy Shield", - ["type"] = "explicit", - }, - }, + ["max"] = 35, + ["min"] = 11, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3489782002", + ["text"] = "+# to maximum Energy Shield", + ["type"] = "explicit", + }, + }, ["1558_IncreasedEnergyShieldForJewel"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_3489782002", - ["text"] = "+# to maximum Energy Shield", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_3489782002", + ["text"] = "+# to maximum Energy Shield", + ["type"] = "explicit", + }, + }, ["1559_LocalBaseArmourAndEnergyShield"] = { ["Boots"] = { - ["max"] = 80, - ["min"] = 3, - }, + ["max"] = 80, + ["min"] = 3, + }, ["Chest"] = { - ["max"] = 80, - ["min"] = 3, - }, + ["max"] = 80, + ["min"] = 3, + }, ["Gloves"] = { - ["max"] = 80, - ["min"] = 3, - }, + ["max"] = 80, + ["min"] = 3, + }, ["Helmet"] = { - ["max"] = 80, - ["min"] = 3, - }, - ["sign"] = "", - ["specialCaseData"] = { - ["overrideModLine"] = "+# to maximum Energy Shield", - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4052037485", - ["text"] = "+# to maximum Energy Shield (Local)", - ["type"] = "explicit", - }, - }, + ["max"] = 80, + ["min"] = 3, + }, + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "+# to maximum Energy Shield", + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4052037485", + ["text"] = "+# to maximum Energy Shield (Local)", + ["type"] = "explicit", + }, + }, ["1559_LocalBaseArmourEnergyShieldAndLife"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - ["overrideModLine"] = "+# to maximum Energy Shield", - }, + ["overrideModLine"] = "+# to maximum Energy Shield", + }, ["tradeMod"] = { - ["id"] = "explicit.stat_4052037485", - ["text"] = "+# to maximum Energy Shield (Local)", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_4052037485", + ["text"] = "+# to maximum Energy Shield (Local)", + ["type"] = "explicit", + }, + }, ["1559_LocalBaseEnergyShieldAndLife"] = { ["Boots"] = { - ["max"] = 30, - ["min"] = 8, - }, + ["max"] = 30, + ["min"] = 8, + }, ["Chest"] = { - ["max"] = 30, - ["min"] = 8, - }, + ["max"] = 30, + ["min"] = 8, + }, ["Gloves"] = { - ["max"] = 30, - ["min"] = 8, - }, + ["max"] = 30, + ["min"] = 8, + }, ["Helmet"] = { - ["max"] = 30, - ["min"] = 8, - }, - ["sign"] = "", - ["specialCaseData"] = { - ["overrideModLine"] = "+# to maximum Energy Shield", - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4052037485", - ["text"] = "+# to maximum Energy Shield (Local)", - ["type"] = "explicit", - }, - }, + ["max"] = 30, + ["min"] = 8, + }, + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "+# to maximum Energy Shield", + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4052037485", + ["text"] = "+# to maximum Energy Shield (Local)", + ["type"] = "explicit", + }, + }, ["1559_LocalBaseEnergyShieldAndMana"] = { ["Boots"] = { - ["max"] = 30, - ["min"] = 8, - }, + ["max"] = 30, + ["min"] = 8, + }, ["Chest"] = { - ["max"] = 30, - ["min"] = 8, - }, + ["max"] = 30, + ["min"] = 8, + }, ["Gloves"] = { - ["max"] = 30, - ["min"] = 8, - }, + ["max"] = 30, + ["min"] = 8, + }, ["Helmet"] = { - ["max"] = 30, - ["min"] = 8, - }, - ["sign"] = "", - ["specialCaseData"] = { - ["overrideModLine"] = "+# to maximum Energy Shield", - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4052037485", - ["text"] = "+# to maximum Energy Shield (Local)", - ["type"] = "explicit", - }, - }, + ["max"] = 30, + ["min"] = 8, + }, + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "+# to maximum Energy Shield", + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4052037485", + ["text"] = "+# to maximum Energy Shield (Local)", + ["type"] = "explicit", + }, + }, ["1559_LocalBaseEvasionRatingAndEnergyShield"] = { ["Boots"] = { - ["max"] = 80, - ["min"] = 3, - }, + ["max"] = 80, + ["min"] = 3, + }, ["Chest"] = { - ["max"] = 80, - ["min"] = 3, - }, + ["max"] = 80, + ["min"] = 3, + }, ["Gloves"] = { - ["max"] = 80, - ["min"] = 3, - }, + ["max"] = 80, + ["min"] = 3, + }, ["Helmet"] = { - ["max"] = 80, - ["min"] = 3, - }, - ["sign"] = "", - ["specialCaseData"] = { - ["overrideModLine"] = "+# to maximum Energy Shield", - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4052037485", - ["text"] = "+# to maximum Energy Shield (Local)", - ["type"] = "explicit", - }, - }, + ["max"] = 80, + ["min"] = 3, + }, + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "+# to maximum Energy Shield", + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4052037485", + ["text"] = "+# to maximum Energy Shield (Local)", + ["type"] = "explicit", + }, + }, ["1559_LocalBaseEvasionRatingEnergyShieldAndLife"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - ["overrideModLine"] = "+# to maximum Energy Shield", - }, + ["overrideModLine"] = "+# to maximum Energy Shield", + }, ["tradeMod"] = { - ["id"] = "explicit.stat_4052037485", - ["text"] = "+# to maximum Energy Shield (Local)", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_4052037485", + ["text"] = "+# to maximum Energy Shield (Local)", + ["type"] = "explicit", + }, + }, ["1559_LocalEnergyShield"] = { ["Boots"] = { - ["max"] = 100, - ["min"] = 3, - }, + ["max"] = 100, + ["min"] = 3, + }, ["Chest"] = { - ["max"] = 100, - ["min"] = 3, - }, + ["max"] = 100, + ["min"] = 3, + }, ["Gloves"] = { - ["max"] = 100, - ["min"] = 3, - }, + ["max"] = 100, + ["min"] = 3, + }, ["Helmet"] = { - ["max"] = 100, - ["min"] = 3, - }, + ["max"] = 100, + ["min"] = 3, + }, ["Shield"] = { - ["max"] = 85, - ["min"] = 3, - }, - ["sign"] = "", - ["specialCaseData"] = { - ["overrideModLine"] = "+# to maximum Energy Shield", - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4052037485", - ["text"] = "+# to maximum Energy Shield (Local)", - ["type"] = "explicit", - }, - }, + ["max"] = 85, + ["min"] = 3, + }, + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "+# to maximum Energy Shield", + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4052037485", + ["text"] = "+# to maximum Energy Shield (Local)", + ["type"] = "explicit", + }, + }, ["1560_LocalEnergyShieldAndStunRecoveryPercent"] = { ["Boots"] = { - ["max"] = 42, - ["min"] = 6, - }, + ["max"] = 42, + ["min"] = 6, + }, ["Chest"] = { - ["max"] = 42, - ["min"] = 6, - }, + ["max"] = 42, + ["min"] = 6, + }, ["Gloves"] = { - ["max"] = 42, - ["min"] = 6, - }, + ["max"] = 42, + ["min"] = 6, + }, ["Helmet"] = { - ["max"] = 42, - ["min"] = 6, - }, - ["sign"] = "", - ["specialCaseData"] = { - ["overrideModLine"] = "#% increased Energy Shield", - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4015621042", - ["text"] = "#% increased Energy Shield (Local)", - ["type"] = "explicit", - }, - }, + ["max"] = 42, + ["min"] = 6, + }, + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "#% increased Energy Shield", + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4015621042", + ["text"] = "#% increased Energy Shield (Local)", + ["type"] = "explicit", + }, + }, ["1560_LocalEnergyShieldPercent"] = { ["Boots"] = { - ["max"] = 100, - ["min"] = 11, - }, + ["max"] = 100, + ["min"] = 11, + }, ["Chest"] = { - ["max"] = 110, - ["min"] = 11, - }, + ["max"] = 110, + ["min"] = 11, + }, ["Gloves"] = { - ["max"] = 100, - ["min"] = 11, - }, + ["max"] = 100, + ["min"] = 11, + }, ["Helmet"] = { - ["max"] = 100, - ["min"] = 11, - }, + ["max"] = 100, + ["min"] = 11, + }, ["Shield"] = { - ["max"] = 110, - ["min"] = 26, - }, - ["sign"] = "", - ["specialCaseData"] = { - ["overrideModLine"] = "#% increased Energy Shield", - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4015621042", - ["text"] = "#% increased Energy Shield (Local)", - ["type"] = "explicit", - }, - }, + ["max"] = 110, + ["min"] = 26, + }, + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "#% increased Energy Shield", + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4015621042", + ["text"] = "#% increased Energy Shield (Local)", + ["type"] = "explicit", + }, + }, ["1560_LocalEnergyShieldPercentSuffix"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - ["overrideModLine"] = "#% increased Energy Shield", - }, + ["overrideModLine"] = "#% increased Energy Shield", + }, ["tradeMod"] = { - ["id"] = "explicit.stat_4015621042", - ["text"] = "#% increased Energy Shield (Local)", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_4015621042", + ["text"] = "#% increased Energy Shield (Local)", + ["type"] = "explicit", + }, + }, ["1560_LocalIncreasedEnergyShieldAndLife"] = { ["Boots"] = { - ["max"] = 28, - ["min"] = 12, - }, + ["max"] = 28, + ["min"] = 12, + }, ["Chest"] = { - ["max"] = 28, - ["min"] = 12, - }, + ["max"] = 28, + ["min"] = 12, + }, ["Gloves"] = { - ["max"] = 28, - ["min"] = 12, - }, + ["max"] = 28, + ["min"] = 12, + }, ["Helmet"] = { - ["max"] = 28, - ["min"] = 12, - }, + ["max"] = 28, + ["min"] = 12, + }, ["Shield"] = { - ["max"] = 21, - ["min"] = 12, - }, - ["sign"] = "", - ["specialCaseData"] = { - ["overrideModLine"] = "#% increased Energy Shield", - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4015621042", - ["text"] = "#% increased Energy Shield (Local)", - ["type"] = "explicit", - }, - }, + ["max"] = 21, + ["min"] = 12, + }, + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "#% increased Energy Shield", + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4015621042", + ["text"] = "#% increased Energy Shield (Local)", + ["type"] = "explicit", + }, + }, ["1561_ArmourEnergyShieldForJewel"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_2482852589", - ["text"] = "#% increased maximum Energy Shield", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_2482852589", + ["text"] = "#% increased maximum Energy Shield", + ["type"] = "explicit", + }, + }, ["1561_EnergyShieldAndManaForJewel"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_2482852589", - ["text"] = "#% increased maximum Energy Shield", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_2482852589", + ["text"] = "#% increased maximum Energy Shield", + ["type"] = "explicit", + }, + }, ["1561_EnergyShieldAndPercent"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_2482852589", - ["text"] = "#% increased maximum Energy Shield", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_2482852589", + ["text"] = "#% increased maximum Energy Shield", + ["type"] = "explicit", + }, + }, ["1561_EnergyShieldForJewel"] = { ["AnyJewel"] = { - ["max"] = 8, - ["min"] = 6, - }, + ["max"] = 8, + ["min"] = 6, + }, ["BaseJewel"] = { - ["max"] = 8, - ["min"] = 6, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2482852589", - ["text"] = "#% increased maximum Energy Shield", - ["type"] = "explicit", - }, - }, + ["max"] = 8, + ["min"] = 6, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2482852589", + ["text"] = "#% increased maximum Energy Shield", + ["type"] = "explicit", + }, + }, ["1561_EvasionEnergyShieldForJewel"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_2482852589", - ["text"] = "#% increased maximum Energy Shield", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_2482852589", + ["text"] = "#% increased maximum Energy Shield", + ["type"] = "explicit", + }, + }, ["1561_GlobalEnergyShieldPercent"] = { ["Amulet"] = { - ["max"] = 22, - ["min"] = 2, - }, + ["max"] = 22, + ["min"] = 2, + }, ["Belt"] = { - ["max"] = 15, - ["min"] = 7, - }, + ["max"] = 15, + ["min"] = 7, + }, ["Ring"] = { - ["max"] = 15, - ["min"] = 7, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2482852589", - ["text"] = "#% increased maximum Energy Shield", - ["type"] = "explicit", - }, - }, + ["max"] = 15, + ["min"] = 7, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2482852589", + ["text"] = "#% increased maximum Energy Shield", + ["type"] = "explicit", + }, + }, ["1561_LifeAndEnergyShieldForJewel"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_2482852589", - ["text"] = "#% increased maximum Energy Shield", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_2482852589", + ["text"] = "#% increased maximum Energy Shield", + ["type"] = "explicit", + }, + }, ["1562_EnergyShieldDelay"] = { ["Boots"] = { - ["max"] = 66, - ["min"] = 27, - }, + ["max"] = 66, + ["min"] = 27, + }, ["Chest"] = { - ["max"] = 66, - ["min"] = 16, - }, + ["max"] = 66, + ["min"] = 16, + }, ["Gloves"] = { - ["max"] = 66, - ["min"] = 27, - }, + ["max"] = 66, + ["min"] = 27, + }, ["Helmet"] = { - ["max"] = 66, - ["min"] = 27, - }, + ["max"] = 66, + ["min"] = 27, + }, ["Shield"] = { - ["max"] = 25, - ["min"] = 16, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1782086450", - ["text"] = "#% faster start of Energy Shield Recharge", - ["type"] = "explicit", - }, - }, + ["max"] = 25, + ["min"] = 16, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1782086450", + ["text"] = "#% faster start of Energy Shield Recharge", + ["type"] = "explicit", + }, + }, ["1562_EnergyShieldDelayForJewel"] = { ["AnyJewel"] = { - ["max"] = 6, - ["min"] = 4, - }, + ["max"] = 6, + ["min"] = 4, + }, ["BaseJewel"] = { - ["max"] = 6, - ["min"] = 4, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1782086450", - ["text"] = "#% faster start of Energy Shield Recharge", - ["type"] = "explicit", - }, - }, + ["max"] = 6, + ["min"] = 4, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1782086450", + ["text"] = "#% faster start of Energy Shield Recharge", + ["type"] = "explicit", + }, + }, ["1565_EnergyShieldRechargeRateForJewel"] = { ["AnyJewel"] = { - ["max"] = 8, - ["min"] = 6, - }, + ["max"] = 8, + ["min"] = 6, + }, ["BaseJewel"] = { - ["max"] = 8, - ["min"] = 6, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2339757871", - ["text"] = "#% increased Energy Shield Recharge Rate", - ["type"] = "explicit", - }, - }, + ["max"] = 8, + ["min"] = 6, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2339757871", + ["text"] = "#% increased Energy Shield Recharge Rate", + ["type"] = "explicit", + }, + }, ["1565_EnergyShieldRegeneration"] = { ["Boots"] = { - ["max"] = 38, - ["min"] = 9, - }, + ["max"] = 38, + ["min"] = 9, + }, ["Chest"] = { - ["max"] = 38, - ["min"] = 24, - }, + ["max"] = 38, + ["min"] = 24, + }, ["Gloves"] = { - ["max"] = 38, - ["min"] = 9, - }, + ["max"] = 38, + ["min"] = 9, + }, ["Helmet"] = { - ["max"] = 38, - ["min"] = 9, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2339757871", - ["text"] = "#% increased Energy Shield Recharge Rate", - ["type"] = "explicit", - }, - }, + ["max"] = 38, + ["min"] = 9, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2339757871", + ["text"] = "#% increased Energy Shield Recharge Rate", + ["type"] = "explicit", + }, + }, ["1565_EnergyShieldRegenerationPerMinuteMaven"] = { ["Helmet"] = { - ["max"] = 25, - ["min"] = 15, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2339757871", - ["text"] = "#% increased Energy Shield Recharge Rate", - ["type"] = "explicit", - }, - }, + ["max"] = 25, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2339757871", + ["text"] = "#% increased Energy Shield Recharge Rate", + ["type"] = "explicit", + }, + }, ["1568_EnergyShieldRecoveryRate"] = { ["Belt"] = { - ["max"] = 12, - ["min"] = 7, - }, + ["max"] = 12, + ["min"] = 7, + }, ["Chest"] = { - ["max"] = 15, - ["min"] = 8, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_988575597", - ["text"] = "#% increased Energy Shield Recovery rate", - ["type"] = "explicit", - }, - }, + ["max"] = 15, + ["min"] = 8, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_988575597", + ["text"] = "#% increased Energy Shield Recovery rate", + ["type"] = "explicit", + }, + }, ["1568_EnergyShieldRecoveryRateMaven"] = { ["Chest"] = { - ["max"] = 15, - ["min"] = 12, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_988575597", - ["text"] = "#% increased Energy Shield Recovery rate", - ["type"] = "explicit", - }, - }, + ["max"] = 15, + ["min"] = 12, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_988575597", + ["text"] = "#% increased Energy Shield Recovery rate", + ["type"] = "explicit", + }, + }, ["1569_AbyssJewelLife"] = { ["AbyssJewel"] = { - ["max"] = 40, - ["min"] = 21, - }, + ["max"] = 40, + ["min"] = 21, + }, ["AnyJewel"] = { - ["max"] = 40, - ["min"] = 21, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3299347043", - ["text"] = "+# to maximum Life", - ["type"] = "explicit", - }, - }, + ["max"] = 40, + ["min"] = 21, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3299347043", + ["text"] = "+# to maximum Life", + ["type"] = "explicit", + }, + }, ["1569_BaseLifeAndMana"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_3299347043", - ["text"] = "+# to maximum Life", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_3299347043", + ["text"] = "+# to maximum Life", + ["type"] = "explicit", + }, + }, ["1569_BaseLifeAndManaDegenGracePeriod"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_3299347043", - ["text"] = "+# to maximum Life", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_3299347043", + ["text"] = "+# to maximum Life", + ["type"] = "explicit", + }, + }, ["1569_BaseLifeAndManaRegen"] = { ["Amulet"] = { - ["max"] = 60, - ["min"] = 28, - }, + ["max"] = 60, + ["min"] = 28, + }, ["Belt"] = { - ["max"] = 60, - ["min"] = 28, - }, + ["max"] = 60, + ["min"] = 28, + }, ["Boots"] = { - ["max"] = 60, - ["min"] = 28, - }, + ["max"] = 60, + ["min"] = 28, + }, ["Gloves"] = { - ["max"] = 60, - ["min"] = 28, - }, + ["max"] = 60, + ["min"] = 28, + }, ["Helmet"] = { - ["max"] = 60, - ["min"] = 28, - }, + ["max"] = 60, + ["min"] = 28, + }, ["Quiver"] = { - ["max"] = 60, - ["min"] = 28, - }, + ["max"] = 60, + ["min"] = 28, + }, ["Ring"] = { - ["max"] = 60, - ["min"] = 28, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3299347043", - ["text"] = "+# to maximum Life", - ["type"] = "explicit", - }, - }, + ["max"] = 60, + ["min"] = 28, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3299347043", + ["text"] = "+# to maximum Life", + ["type"] = "explicit", + }, + }, ["1569_IncreasedLife"] = { ["Amulet"] = { - ["max"] = 55, - ["min"] = 15, - }, + ["max"] = 55, + ["min"] = 15, + }, ["Belt"] = { - ["max"] = 55, - ["min"] = 15, - }, + ["max"] = 55, + ["min"] = 15, + }, ["Boots"] = { - ["max"] = 105, - ["min"] = 5, - }, + ["max"] = 105, + ["min"] = 5, + }, ["Chest"] = { - ["max"] = 189, - ["min"] = 10, - }, + ["max"] = 189, + ["min"] = 10, + }, ["Gloves"] = { - ["max"] = 105, - ["min"] = 5, - }, + ["max"] = 105, + ["min"] = 5, + }, ["Helmet"] = { - ["max"] = 105, - ["min"] = 5, - }, + ["max"] = 105, + ["min"] = 5, + }, ["Quiver"] = { - ["max"] = 55, - ["min"] = 15, - }, + ["max"] = 55, + ["min"] = 15, + }, ["Ring"] = { - ["max"] = 55, - ["min"] = 15, - }, + ["max"] = 55, + ["min"] = 15, + }, ["Shield"] = { - ["max"] = 159, - ["min"] = 10, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3299347043", - ["text"] = "+# to maximum Life", - ["type"] = "explicit", - }, - }, + ["max"] = 159, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3299347043", + ["text"] = "+# to maximum Life", + ["type"] = "explicit", + }, + }, ["1569_IncreasedLifeAndPercent"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_3299347043", - ["text"] = "+# to maximum Life", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_3299347043", + ["text"] = "+# to maximum Life", + ["type"] = "explicit", + }, + }, ["1569_IncreasedLifeForJewel"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_3299347043", - ["text"] = "+# to maximum Life", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_3299347043", + ["text"] = "+# to maximum Life", + ["type"] = "explicit", + }, + }, ["1569_LifeAndManaForJewel"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_3299347043", - ["text"] = "+# to maximum Life", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_3299347043", + ["text"] = "+# to maximum Life", + ["type"] = "explicit", + }, + }, ["1569_LifeAndPercentLife"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_3299347043", - ["text"] = "+# to maximum Life", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_3299347043", + ["text"] = "+# to maximum Life", + ["type"] = "explicit", + }, + }, ["1569_LocalBaseArmourAndLife"] = { ["Boots"] = { - ["max"] = 38, - ["min"] = 18, - }, + ["max"] = 38, + ["min"] = 18, + }, ["Chest"] = { - ["max"] = 38, - ["min"] = 18, - }, + ["max"] = 38, + ["min"] = 18, + }, ["Gloves"] = { - ["max"] = 38, - ["min"] = 18, - }, + ["max"] = 38, + ["min"] = 18, + }, ["Helmet"] = { - ["max"] = 38, - ["min"] = 18, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3299347043", - ["text"] = "+# to maximum Life", - ["type"] = "explicit", - }, - }, + ["max"] = 38, + ["min"] = 18, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3299347043", + ["text"] = "+# to maximum Life", + ["type"] = "explicit", + }, + }, ["1569_LocalBaseArmourEnergyShieldAndLife"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_3299347043", - ["text"] = "+# to maximum Life", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_3299347043", + ["text"] = "+# to maximum Life", + ["type"] = "explicit", + }, + }, ["1569_LocalBaseArmourEvasionRatingAndLife"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_3299347043", - ["text"] = "+# to maximum Life", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_3299347043", + ["text"] = "+# to maximum Life", + ["type"] = "explicit", + }, + }, ["1569_LocalBaseEnergyShieldAndLife"] = { ["Boots"] = { - ["max"] = 38, - ["min"] = 18, - }, + ["max"] = 38, + ["min"] = 18, + }, ["Chest"] = { - ["max"] = 38, - ["min"] = 18, - }, + ["max"] = 38, + ["min"] = 18, + }, ["Gloves"] = { - ["max"] = 38, - ["min"] = 18, - }, + ["max"] = 38, + ["min"] = 18, + }, ["Helmet"] = { - ["max"] = 38, - ["min"] = 18, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3299347043", - ["text"] = "+# to maximum Life", - ["type"] = "explicit", - }, - }, + ["max"] = 38, + ["min"] = 18, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3299347043", + ["text"] = "+# to maximum Life", + ["type"] = "explicit", + }, + }, ["1569_LocalBaseEvasionRatingAndLife"] = { ["Boots"] = { - ["max"] = 38, - ["min"] = 18, - }, + ["max"] = 38, + ["min"] = 18, + }, ["Chest"] = { - ["max"] = 38, - ["min"] = 18, - }, + ["max"] = 38, + ["min"] = 18, + }, ["Gloves"] = { - ["max"] = 38, - ["min"] = 18, - }, + ["max"] = 38, + ["min"] = 18, + }, ["Helmet"] = { - ["max"] = 38, - ["min"] = 18, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3299347043", - ["text"] = "+# to maximum Life", - ["type"] = "explicit", - }, - }, + ["max"] = 38, + ["min"] = 18, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3299347043", + ["text"] = "+# to maximum Life", + ["type"] = "explicit", + }, + }, ["1569_LocalBaseEvasionRatingEnergyShieldAndLife"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_3299347043", - ["text"] = "+# to maximum Life", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_3299347043", + ["text"] = "+# to maximum Life", + ["type"] = "explicit", + }, + }, ["1569_LocalBaseWardAndLife"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_3299347043", - ["text"] = "+# to maximum Life", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_3299347043", + ["text"] = "+# to maximum Life", + ["type"] = "explicit", + }, + }, ["1569_LocalIncreasedArmourAndEnergyShieldAndLife"] = { ["Boots"] = { - ["max"] = 26, - ["min"] = 8, - }, + ["max"] = 26, + ["min"] = 8, + }, ["Chest"] = { - ["max"] = 26, - ["min"] = 13, - }, + ["max"] = 26, + ["min"] = 13, + }, ["Gloves"] = { - ["max"] = 26, - ["min"] = 8, - }, + ["max"] = 26, + ["min"] = 8, + }, ["Helmet"] = { - ["max"] = 26, - ["min"] = 10, - }, + ["max"] = 26, + ["min"] = 10, + }, ["Shield"] = { - ["max"] = 16, - ["min"] = 10, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3299347043", - ["text"] = "+# to maximum Life", - ["type"] = "explicit", - }, - }, + ["max"] = 16, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3299347043", + ["text"] = "+# to maximum Life", + ["type"] = "explicit", + }, + }, ["1569_LocalIncreasedArmourAndEvasionAndLife"] = { ["Boots"] = { - ["max"] = 26, - ["min"] = 8, - }, + ["max"] = 26, + ["min"] = 8, + }, ["Chest"] = { - ["max"] = 26, - ["min"] = 13, - }, + ["max"] = 26, + ["min"] = 13, + }, ["Gloves"] = { - ["max"] = 26, - ["min"] = 8, - }, + ["max"] = 26, + ["min"] = 8, + }, ["Helmet"] = { - ["max"] = 26, - ["min"] = 10, - }, + ["max"] = 26, + ["min"] = 10, + }, ["Shield"] = { - ["max"] = 16, - ["min"] = 10, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3299347043", - ["text"] = "+# to maximum Life", - ["type"] = "explicit", - }, - }, + ["max"] = 16, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3299347043", + ["text"] = "+# to maximum Life", + ["type"] = "explicit", + }, + }, ["1569_LocalIncreasedArmourAndLife"] = { ["Boots"] = { - ["max"] = 26, - ["min"] = 8, - }, + ["max"] = 26, + ["min"] = 8, + }, ["Chest"] = { - ["max"] = 26, - ["min"] = 13, - }, + ["max"] = 26, + ["min"] = 13, + }, ["Gloves"] = { - ["max"] = 26, - ["min"] = 8, - }, + ["max"] = 26, + ["min"] = 8, + }, ["Helmet"] = { - ["max"] = 26, - ["min"] = 10, - }, + ["max"] = 26, + ["min"] = 10, + }, ["Shield"] = { - ["max"] = 16, - ["min"] = 10, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3299347043", - ["text"] = "+# to maximum Life", - ["type"] = "explicit", - }, - }, + ["max"] = 16, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3299347043", + ["text"] = "+# to maximum Life", + ["type"] = "explicit", + }, + }, ["1569_LocalIncreasedDefencesAndLife"] = { ["Boots"] = { - ["max"] = 26, - ["min"] = 8, - }, + ["max"] = 26, + ["min"] = 8, + }, ["Chest"] = { - ["max"] = 26, - ["min"] = 13, - }, + ["max"] = 26, + ["min"] = 13, + }, ["Gloves"] = { - ["max"] = 26, - ["min"] = 8, - }, + ["max"] = 26, + ["min"] = 8, + }, ["Helmet"] = { - ["max"] = 26, - ["min"] = 10, - }, + ["max"] = 26, + ["min"] = 10, + }, ["Shield"] = { - ["max"] = 16, - ["min"] = 10, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3299347043", - ["text"] = "+# to maximum Life", - ["type"] = "explicit", - }, - }, + ["max"] = 16, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3299347043", + ["text"] = "+# to maximum Life", + ["type"] = "explicit", + }, + }, ["1569_LocalIncreasedEnergyShieldAndLife"] = { ["Boots"] = { - ["max"] = 26, - ["min"] = 8, - }, + ["max"] = 26, + ["min"] = 8, + }, ["Chest"] = { - ["max"] = 26, - ["min"] = 13, - }, + ["max"] = 26, + ["min"] = 13, + }, ["Gloves"] = { - ["max"] = 26, - ["min"] = 8, - }, + ["max"] = 26, + ["min"] = 8, + }, ["Helmet"] = { - ["max"] = 26, - ["min"] = 10, - }, + ["max"] = 26, + ["min"] = 10, + }, ["Shield"] = { - ["max"] = 16, - ["min"] = 10, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3299347043", - ["text"] = "+# to maximum Life", - ["type"] = "explicit", - }, - }, + ["max"] = 16, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3299347043", + ["text"] = "+# to maximum Life", + ["type"] = "explicit", + }, + }, ["1569_LocalIncreasedEvasionAndEnergyShieldAndLife"] = { ["Boots"] = { - ["max"] = 14, - ["min"] = 8, - }, + ["max"] = 14, + ["min"] = 8, + }, ["Chest"] = { - ["max"] = 19, - ["min"] = 13, - }, + ["max"] = 19, + ["min"] = 13, + }, ["Gloves"] = { - ["max"] = 14, - ["min"] = 8, - }, + ["max"] = 14, + ["min"] = 8, + }, ["Helmet"] = { - ["max"] = 16, - ["min"] = 10, - }, + ["max"] = 16, + ["min"] = 10, + }, ["Shield"] = { - ["max"] = 16, - ["min"] = 10, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3299347043", - ["text"] = "+# to maximum Life", - ["type"] = "explicit", - }, - }, + ["max"] = 16, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3299347043", + ["text"] = "+# to maximum Life", + ["type"] = "explicit", + }, + }, ["1569_LocalIncreasedEvasionAndLife"] = { ["Boots"] = { - ["max"] = 26, - ["min"] = 8, - }, + ["max"] = 26, + ["min"] = 8, + }, ["Chest"] = { - ["max"] = 26, - ["min"] = 13, - }, + ["max"] = 26, + ["min"] = 13, + }, ["Gloves"] = { - ["max"] = 26, - ["min"] = 8, - }, + ["max"] = 26, + ["min"] = 8, + }, ["Helmet"] = { - ["max"] = 26, - ["min"] = 10, - }, + ["max"] = 26, + ["min"] = 10, + }, ["Shield"] = { - ["max"] = 16, - ["min"] = 10, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3299347043", - ["text"] = "+# to maximum Life", - ["type"] = "explicit", - }, - }, + ["max"] = 16, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3299347043", + ["text"] = "+# to maximum Life", + ["type"] = "explicit", + }, + }, ["1571_IncreasedLifeAndPercent"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_983749596", - ["text"] = "#% increased maximum Life", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_983749596", + ["text"] = "#% increased maximum Life", + ["type"] = "explicit", + }, + }, ["1571_LifeAndEnergyShieldForJewel"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_983749596", - ["text"] = "#% increased maximum Life", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_983749596", + ["text"] = "#% increased maximum Life", + ["type"] = "explicit", + }, + }, ["1571_LifeAndPercentLife"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_983749596", - ["text"] = "#% increased maximum Life", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_983749596", + ["text"] = "#% increased maximum Life", + ["type"] = "explicit", + }, + }, ["1571_MaximumLifeIncreasePercent"] = { ["Belt"] = { - ["max"] = 10, - ["min"] = 3, - }, + ["max"] = 10, + ["min"] = 3, + }, ["Chest"] = { - ["max"] = 15, - ["min"] = 5, - }, + ["max"] = 15, + ["min"] = 5, + }, ["Shield"] = { - ["max"] = 10, - ["min"] = 3, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_983749596", - ["text"] = "#% increased maximum Life", - ["type"] = "explicit", - }, - }, + ["max"] = 10, + ["min"] = 3, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_983749596", + ["text"] = "#% increased maximum Life", + ["type"] = "explicit", + }, + }, ["1571_PercentIncreasedLifeForJewel"] = { ["AnyJewel"] = { - ["max"] = 7, - ["min"] = 5, - }, + ["max"] = 7, + ["min"] = 5, + }, ["BaseJewel"] = { - ["max"] = 7, - ["min"] = 5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_983749596", - ["text"] = "#% increased maximum Life", - ["type"] = "explicit", - }, - }, + ["max"] = 7, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_983749596", + ["text"] = "#% increased maximum Life", + ["type"] = "explicit", + }, + }, ["1571_PercentageLifeAndMana"] = { ["Chest"] = { - ["max"] = 10, - ["min"] = 5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_983749596", - ["text"] = "#% increased maximum Life", - ["type"] = "explicit", - }, - }, + ["max"] = 10, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_983749596", + ["text"] = "#% increased maximum Life", + ["type"] = "explicit", + }, + }, ["1571_PercentageLifeAndManaForJewel"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_983749596", - ["text"] = "#% increased maximum Life", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_983749596", + ["text"] = "#% increased maximum Life", + ["type"] = "explicit", + }, + }, ["1574_BaseManaAndLifeRegen"] = { ["Amulet"] = { - ["max"] = 33.3, - ["min"] = 15, - }, + ["max"] = 33.3, + ["min"] = 15, + }, ["Belt"] = { - ["max"] = 33.3, - ["min"] = 15, - }, + ["max"] = 33.3, + ["min"] = 15, + }, ["Boots"] = { - ["max"] = 33.3, - ["min"] = 15, - }, + ["max"] = 33.3, + ["min"] = 15, + }, ["Gloves"] = { - ["max"] = 33.3, - ["min"] = 15, - }, + ["max"] = 33.3, + ["min"] = 15, + }, ["Helmet"] = { - ["max"] = 33.3, - ["min"] = 15, - }, + ["max"] = 33.3, + ["min"] = 15, + }, ["Quiver"] = { - ["max"] = 33.3, - ["min"] = 15, - }, + ["max"] = 33.3, + ["min"] = 15, + }, ["Ring"] = { - ["max"] = 33.3, - ["min"] = 15, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3325883026", - ["text"] = "Regenerate # Life per second", - ["type"] = "explicit", - }, - }, + ["max"] = 33.3, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3325883026", + ["text"] = "Regenerate # Life per second", + ["type"] = "explicit", + }, + }, ["1574_LifeRegeneration"] = { ["AbyssJewel"] = { - ["max"] = 20, - ["min"] = 9, - }, + ["max"] = 20, + ["min"] = 9, + }, ["Amulet"] = { - ["max"] = 64, - ["min"] = 1, - }, + ["max"] = 64, + ["min"] = 1, + }, ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 9, - }, + ["max"] = 20, + ["min"] = 9, + }, ["Chest"] = { - ["max"] = 176, - ["min"] = 128.1, - }, + ["max"] = 176, + ["min"] = 128.1, + }, ["Ring"] = { - ["max"] = 64, - ["min"] = 1, - }, + ["max"] = 64, + ["min"] = 1, + }, ["Shield"] = { - ["max"] = 152, - ["min"] = 128.1, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3325883026", - ["text"] = "Regenerate # Life per second", - ["type"] = "explicit", - }, - }, + ["max"] = 152, + ["min"] = 128.1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3325883026", + ["text"] = "Regenerate # Life per second", + ["type"] = "explicit", + }, + }, ["1574_LifeRegenerationAndManaRegeneration"] = { ["Amulet"] = { - ["max"] = 20, - ["min"] = 12, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3325883026", - ["text"] = "Regenerate # Life per second", - ["type"] = "explicit", - }, - }, + ["max"] = 20, + ["min"] = 12, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3325883026", + ["text"] = "Regenerate # Life per second", + ["type"] = "explicit", + }, + }, ["1574_LifeRegenerationAndPercent"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_3325883026", - ["text"] = "Regenerate # Life per second", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_3325883026", + ["text"] = "Regenerate # Life per second", + ["type"] = "explicit", + }, + }, ["1575_BaseManaAndLifeDegenGracePeriod"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_771127912", - ["text"] = "Lose # Life per second", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_771127912", + ["text"] = "Lose # Life per second", + ["type"] = "explicit", + }, + }, ["1575_LifeDegenerationAndPercentGracePeriod"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_771127912", - ["text"] = "Lose # Life per second", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_771127912", + ["text"] = "Lose # Life per second", + ["type"] = "explicit", + }, + }, ["1575_LifeDegenerationGracePeriod"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_771127912", - ["text"] = "Lose # Life per second", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_771127912", + ["text"] = "Lose # Life per second", + ["type"] = "explicit", + }, + }, ["1577_LifeRegenerationRate"] = { ["Boots"] = { - ["max"] = 21, - ["min"] = 5, - }, + ["max"] = 21, + ["min"] = 5, + }, ["Chest"] = { - ["max"] = 21, - ["min"] = 9, - }, + ["max"] = 21, + ["min"] = 9, + }, ["Gloves"] = { - ["max"] = 21, - ["min"] = 5, - }, + ["max"] = 21, + ["min"] = 5, + }, ["Helmet"] = { - ["max"] = 21, - ["min"] = 5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_44972811", - ["text"] = "#% increased Life Regeneration rate", - ["type"] = "explicit", - }, - }, + ["max"] = 21, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_44972811", + ["text"] = "#% increased Life Regeneration rate", + ["type"] = "explicit", + }, + }, ["1578_LifeRecoveryRate"] = { ["Belt"] = { - ["max"] = 12, - ["min"] = 7, - }, + ["max"] = 12, + ["min"] = 7, + }, ["Chest"] = { - ["max"] = 15, - ["min"] = 8, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3240073117", - ["text"] = "#% increased Life Recovery rate", - ["type"] = "explicit", - }, - }, + ["max"] = 15, + ["min"] = 8, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3240073117", + ["text"] = "#% increased Life Recovery rate", + ["type"] = "explicit", + }, + }, ["1578_LifeRecoveryRateMaven"] = { ["Chest"] = { - ["max"] = 15, - ["min"] = 12, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3240073117", - ["text"] = "#% increased Life Recovery rate", - ["type"] = "explicit", - }, - }, + ["max"] = 15, + ["min"] = 12, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3240073117", + ["text"] = "#% increased Life Recovery rate", + ["type"] = "explicit", + }, + }, ["1579_AbyssJewelMana"] = { ["AbyssJewel"] = { - ["max"] = 40, - ["min"] = 21, - }, + ["max"] = 40, + ["min"] = 21, + }, ["AnyJewel"] = { - ["max"] = 40, - ["min"] = 21, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1050105434", - ["text"] = "+# to maximum Mana", - ["type"] = "explicit", - }, - }, + ["max"] = 40, + ["min"] = 21, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1050105434", + ["text"] = "+# to maximum Mana", + ["type"] = "explicit", + }, + }, ["1579_BaseLifeAndMana"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1050105434", - ["text"] = "+# to maximum Mana", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1050105434", + ["text"] = "+# to maximum Mana", + ["type"] = "explicit", + }, + }, ["1579_BaseManaAndLifeDegenGracePeriod"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1050105434", - ["text"] = "+# to maximum Mana", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1050105434", + ["text"] = "+# to maximum Mana", + ["type"] = "explicit", + }, + }, ["1579_BaseManaAndLifeRegen"] = { ["Amulet"] = { - ["max"] = 60, - ["min"] = 28, - }, + ["max"] = 60, + ["min"] = 28, + }, ["Belt"] = { - ["max"] = 60, - ["min"] = 28, - }, + ["max"] = 60, + ["min"] = 28, + }, ["Boots"] = { - ["max"] = 60, - ["min"] = 28, - }, + ["max"] = 60, + ["min"] = 28, + }, ["Gloves"] = { - ["max"] = 60, - ["min"] = 28, - }, + ["max"] = 60, + ["min"] = 28, + }, ["Helmet"] = { - ["max"] = 60, - ["min"] = 28, - }, + ["max"] = 60, + ["min"] = 28, + }, ["Quiver"] = { - ["max"] = 60, - ["min"] = 28, - }, + ["max"] = 60, + ["min"] = 28, + }, ["Ring"] = { - ["max"] = 60, - ["min"] = 28, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1050105434", - ["text"] = "+# to maximum Mana", - ["type"] = "explicit", - }, - }, + ["max"] = 60, + ["min"] = 28, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1050105434", + ["text"] = "+# to maximum Mana", + ["type"] = "explicit", + }, + }, ["1579_IncreasedMana"] = { ["1HAxe"] = { - ["max"] = 74, - ["min"] = 35, - }, + ["max"] = 74, + ["min"] = 35, + }, ["1HMace"] = { - ["max"] = 159, - ["min"] = 30, - }, + ["max"] = 159, + ["min"] = 30, + }, ["1HSword"] = { - ["max"] = 74, - ["min"] = 35, - }, + ["max"] = 74, + ["min"] = 35, + }, ["1HWeapon"] = { - ["max"] = 159, - ["min"] = 30, - }, + ["max"] = 159, + ["min"] = 30, + }, ["2HAxe"] = { - ["max"] = 94, - ["min"] = 55, - }, + ["max"] = 94, + ["min"] = 55, + }, ["2HMace"] = { - ["max"] = 94, - ["min"] = 55, - }, + ["max"] = 94, + ["min"] = 55, + }, ["2HSword"] = { - ["max"] = 94, - ["min"] = 55, - }, + ["max"] = 94, + ["min"] = 55, + }, ["2HWeapon"] = { - ["max"] = 229, - ["min"] = 40, - }, + ["max"] = 229, + ["min"] = 40, + }, ["Amulet"] = { - ["max"] = 78, - ["min"] = 15, - }, + ["max"] = 78, + ["min"] = 15, + }, ["Belt"] = { - ["max"] = 68, - ["min"] = 15, - }, + ["max"] = 68, + ["min"] = 15, + }, ["Boots"] = { - ["max"] = 77, - ["min"] = 15, - }, + ["max"] = 77, + ["min"] = 15, + }, ["Bow"] = { - ["max"] = 74, - ["min"] = 35, - }, + ["max"] = 74, + ["min"] = 35, + }, ["Chest"] = { - ["max"] = 77, - ["min"] = 15, - }, + ["max"] = 77, + ["min"] = 15, + }, ["Claw"] = { - ["max"] = 159, - ["min"] = 30, - }, + ["max"] = 159, + ["min"] = 30, + }, ["Dagger"] = { - ["max"] = 159, - ["min"] = 30, - }, + ["max"] = 159, + ["min"] = 30, + }, ["Gloves"] = { - ["max"] = 77, - ["min"] = 15, - }, + ["max"] = 77, + ["min"] = 15, + }, ["Helmet"] = { - ["max"] = 77, - ["min"] = 15, - }, + ["max"] = 77, + ["min"] = 15, + }, ["Quiver"] = { - ["max"] = 54, - ["min"] = 25, - }, + ["max"] = 54, + ["min"] = 25, + }, ["Ring"] = { - ["max"] = 78, - ["min"] = 15, - }, + ["max"] = 78, + ["min"] = 15, + }, ["Shield"] = { - ["max"] = 54, - ["min"] = 25, - }, + ["max"] = 54, + ["min"] = 25, + }, ["Staff"] = { - ["max"] = 229, - ["min"] = 40, - }, + ["max"] = 229, + ["min"] = 40, + }, ["Wand"] = { - ["max"] = 159, - ["min"] = 30, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1050105434", - ["text"] = "+# to maximum Mana", - ["type"] = "explicit", - }, - }, + ["max"] = 159, + ["min"] = 30, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1050105434", + ["text"] = "+# to maximum Mana", + ["type"] = "explicit", + }, + }, ["1579_IncreasedManaAndBaseCost"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1050105434", - ["text"] = "+# to maximum Mana", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1050105434", + ["text"] = "+# to maximum Mana", + ["type"] = "explicit", + }, + }, ["1579_IncreasedManaAndCost"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1050105434", - ["text"] = "+# to maximum Mana", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1050105434", + ["text"] = "+# to maximum Mana", + ["type"] = "explicit", + }, + }, ["1579_IncreasedManaAndCostNew"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1050105434", - ["text"] = "+# to maximum Mana", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1050105434", + ["text"] = "+# to maximum Mana", + ["type"] = "explicit", + }, + }, ["1579_IncreasedManaAndDegenGracePeriod"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1050105434", - ["text"] = "+# to maximum Mana", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1050105434", + ["text"] = "+# to maximum Mana", + ["type"] = "explicit", + }, + }, ["1579_IncreasedManaAndOnHit"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1050105434", - ["text"] = "+# to maximum Mana", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1050105434", + ["text"] = "+# to maximum Mana", + ["type"] = "explicit", + }, + }, ["1579_IncreasedManaAndPercent"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1050105434", - ["text"] = "+# to maximum Mana", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1050105434", + ["text"] = "+# to maximum Mana", + ["type"] = "explicit", + }, + }, ["1579_IncreasedManaAndRegen"] = { ["Amulet"] = { - ["max"] = 55, - ["min"] = 26, - }, + ["max"] = 55, + ["min"] = 26, + }, ["Ring"] = { - ["max"] = 55, - ["min"] = 26, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1050105434", - ["text"] = "+# to maximum Mana", - ["type"] = "explicit", - }, - }, + ["max"] = 55, + ["min"] = 26, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1050105434", + ["text"] = "+# to maximum Mana", + ["type"] = "explicit", + }, + }, ["1579_IncreasedManaAndReservation"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1050105434", - ["text"] = "+# to maximum Mana", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1050105434", + ["text"] = "+# to maximum Mana", + ["type"] = "explicit", + }, + }, ["1579_IncreasedManaForJewel"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1050105434", - ["text"] = "+# to maximum Mana", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1050105434", + ["text"] = "+# to maximum Mana", + ["type"] = "explicit", + }, + }, ["1579_LifeAndManaForJewel"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1050105434", - ["text"] = "+# to maximum Mana", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1050105434", + ["text"] = "+# to maximum Mana", + ["type"] = "explicit", + }, + }, ["1579_LocalBaseEnergyShieldAndMana"] = { ["Boots"] = { - ["max"] = 25, - ["min"] = 11, - }, + ["max"] = 25, + ["min"] = 11, + }, ["Chest"] = { - ["max"] = 25, - ["min"] = 11, - }, + ["max"] = 25, + ["min"] = 11, + }, ["Gloves"] = { - ["max"] = 25, - ["min"] = 11, - }, + ["max"] = 25, + ["min"] = 11, + }, ["Helmet"] = { - ["max"] = 25, - ["min"] = 11, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1050105434", - ["text"] = "+# to maximum Mana", - ["type"] = "explicit", - }, - }, + ["max"] = 25, + ["min"] = 11, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1050105434", + ["text"] = "+# to maximum Mana", + ["type"] = "explicit", + }, + }, ["1579_ManaAndDamageTakenGoesToManaPercent"] = { ["Amulet"] = { - ["max"] = 55, - ["min"] = 26, - }, + ["max"] = 55, + ["min"] = 26, + }, ["Ring"] = { - ["max"] = 55, - ["min"] = 26, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1050105434", - ["text"] = "+# to maximum Mana", - ["type"] = "explicit", - }, - }, + ["max"] = 55, + ["min"] = 26, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1050105434", + ["text"] = "+# to maximum Mana", + ["type"] = "explicit", + }, + }, ["1579_ManaAndManaCostPercent"] = { ["Amulet"] = { - ["max"] = 55, - ["min"] = 26, - }, + ["max"] = 55, + ["min"] = 26, + }, ["Ring"] = { - ["max"] = 55, - ["min"] = 26, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1050105434", - ["text"] = "+# to maximum Mana", - ["type"] = "explicit", - }, - }, + ["max"] = 55, + ["min"] = 26, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1050105434", + ["text"] = "+# to maximum Mana", + ["type"] = "explicit", + }, + }, ["1579_MinionDamageOnWeaponAndMana"] = { ["1HWeapon"] = { - ["max"] = 45, - ["min"] = 17, - }, + ["max"] = 45, + ["min"] = 17, + }, ["Wand"] = { - ["max"] = 45, - ["min"] = 17, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1050105434", - ["text"] = "+# to maximum Mana", - ["type"] = "explicit", - }, - }, + ["max"] = 45, + ["min"] = 17, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1050105434", + ["text"] = "+# to maximum Mana", + ["type"] = "explicit", + }, + }, ["1579_TwoHandWeaponSpellDamageAndMana"] = { ["2HWeapon"] = { - ["max"] = 64, - ["min"] = 26, - }, + ["max"] = 64, + ["min"] = 26, + }, ["Staff"] = { - ["max"] = 64, - ["min"] = 26, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1050105434", - ["text"] = "+# to maximum Mana", - ["type"] = "explicit", - }, - }, + ["max"] = 64, + ["min"] = 26, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1050105434", + ["text"] = "+# to maximum Mana", + ["type"] = "explicit", + }, + }, ["1579_WeaponSpellDamageAndMana"] = { ["1HMace"] = { - ["max"] = 45, - ["min"] = 17, - }, + ["max"] = 45, + ["min"] = 17, + }, ["1HWeapon"] = { - ["max"] = 45, - ["min"] = 17, - }, + ["max"] = 45, + ["min"] = 17, + }, ["Dagger"] = { - ["max"] = 45, - ["min"] = 17, - }, + ["max"] = 45, + ["min"] = 17, + }, ["Wand"] = { - ["max"] = 45, - ["min"] = 17, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1050105434", - ["text"] = "+# to maximum Mana", - ["type"] = "explicit", - }, - }, + ["max"] = 45, + ["min"] = 17, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1050105434", + ["text"] = "+# to maximum Mana", + ["type"] = "explicit", + }, + }, ["1580_EnergyShieldAndManaForJewel"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_2748665614", - ["text"] = "#% increased maximum Mana", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_2748665614", + ["text"] = "#% increased maximum Mana", + ["type"] = "explicit", + }, + }, ["1580_IncreasedManaAndPercent"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_2748665614", - ["text"] = "#% increased maximum Mana", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_2748665614", + ["text"] = "#% increased maximum Mana", + ["type"] = "explicit", + }, + }, ["1580_MaximumManaIncreasePercent"] = { ["Chest"] = { - ["max"] = 18, - ["min"] = 9, - }, + ["max"] = 18, + ["min"] = 9, + }, ["Helmet"] = { - ["max"] = 18, - ["min"] = 9, - }, + ["max"] = 18, + ["min"] = 9, + }, ["Quiver"] = { - ["max"] = 30, - ["min"] = 20, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2748665614", - ["text"] = "#% increased maximum Mana", - ["type"] = "explicit", - }, - }, + ["max"] = 30, + ["min"] = 20, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2748665614", + ["text"] = "#% increased maximum Mana", + ["type"] = "explicit", + }, + }, ["1580_MaximumManaIncreasePercentMaven"] = { ["Helmet"] = { - ["max"] = 15, - ["min"] = 12, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2748665614", - ["text"] = "#% increased maximum Mana", - ["type"] = "explicit", - }, - }, + ["max"] = 15, + ["min"] = 12, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2748665614", + ["text"] = "#% increased maximum Mana", + ["type"] = "explicit", + }, + }, ["1580_MaximumManaIncreaseShaper"] = { ["Chest"] = { - ["max"] = 18, - ["min"] = 9, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2748665614", - ["text"] = "#% increased maximum Mana", - ["type"] = "explicit", - }, - }, + ["max"] = 18, + ["min"] = 9, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2748665614", + ["text"] = "#% increased maximum Mana", + ["type"] = "explicit", + }, + }, ["1580_PercentIncreasedManaForJewel"] = { ["AnyJewel"] = { - ["max"] = 10, - ["min"] = 8, - }, + ["max"] = 10, + ["min"] = 8, + }, ["BaseJewel"] = { - ["max"] = 10, - ["min"] = 8, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2748665614", - ["text"] = "#% increased maximum Mana", - ["type"] = "explicit", - }, - }, + ["max"] = 10, + ["min"] = 8, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2748665614", + ["text"] = "#% increased maximum Mana", + ["type"] = "explicit", + }, + }, ["1580_PercentageLifeAndMana"] = { ["Chest"] = { - ["max"] = 10, - ["min"] = 5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2748665614", - ["text"] = "#% increased maximum Mana", - ["type"] = "explicit", - }, - }, + ["max"] = 10, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2748665614", + ["text"] = "#% increased maximum Mana", + ["type"] = "explicit", + }, + }, ["1580_PercentageLifeAndManaForJewel"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_2748665614", - ["text"] = "#% increased maximum Mana", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_2748665614", + ["text"] = "#% increased maximum Mana", + ["type"] = "explicit", + }, + }, ["1581_BaseManaRegeneration"] = { ["1HMace"] = { - ["max"] = 0.4, - ["min"] = 0.3, - }, + ["max"] = 0.4, + ["min"] = 0.3, + }, ["1HWeapon"] = { - ["max"] = 0.4, - ["min"] = 0.3, - }, + ["max"] = 0.4, + ["min"] = 0.3, + }, ["2HWeapon"] = { - ["max"] = 0.8, - ["min"] = 0.7, - }, + ["max"] = 0.8, + ["min"] = 0.7, + }, ["Dagger"] = { - ["max"] = 0.4, - ["min"] = 0.3, - }, + ["max"] = 0.4, + ["min"] = 0.3, + }, ["Helmet"] = { - ["max"] = 0.5, - ["min"] = 0.5, - }, + ["max"] = 0.5, + ["min"] = 0.5, + }, ["Staff"] = { - ["max"] = 0.8, - ["min"] = 0.7, - }, + ["max"] = 0.8, + ["min"] = 0.7, + }, ["Wand"] = { - ["max"] = 0.4, - ["min"] = 0.3, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3188455409", - ["text"] = "Regenerate #% of Mana per second", - ["type"] = "explicit", - }, - }, + ["max"] = 0.4, + ["min"] = 0.3, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3188455409", + ["text"] = "Regenerate #% of Mana per second", + ["type"] = "explicit", + }, + }, ["1582_AddedManaRegeneration"] = { ["AbyssJewel"] = { - ["max"] = 4, - ["min"] = 1.1, - }, + ["max"] = 4, + ["min"] = 1.1, + }, ["AnyJewel"] = { - ["max"] = 4, - ["min"] = 1.1, - }, + ["max"] = 4, + ["min"] = 1.1, + }, ["Helmet"] = { - ["max"] = 8, - ["min"] = 3, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4291461939", - ["text"] = "Regenerate # Mana per second", - ["type"] = "explicit", - }, - }, + ["max"] = 8, + ["min"] = 3, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4291461939", + ["text"] = "Regenerate # Mana per second", + ["type"] = "explicit", + }, + }, ["1582_AddedManaRegenerationMaven"] = { ["Helmet"] = { - ["max"] = 8, - ["min"] = 6, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4291461939", - ["text"] = "Regenerate # Mana per second", - ["type"] = "explicit", - }, - }, + ["max"] = 8, + ["min"] = 6, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4291461939", + ["text"] = "Regenerate # Mana per second", + ["type"] = "explicit", + }, + }, ["1582_BaseLifeAndManaRegen"] = { ["Amulet"] = { - ["max"] = 5.3, - ["min"] = 2, - }, + ["max"] = 5.3, + ["min"] = 2, + }, ["Belt"] = { - ["max"] = 5.3, - ["min"] = 2, - }, + ["max"] = 5.3, + ["min"] = 2, + }, ["Boots"] = { - ["max"] = 5.3, - ["min"] = 2, - }, + ["max"] = 5.3, + ["min"] = 2, + }, ["Gloves"] = { - ["max"] = 5.3, - ["min"] = 2, - }, + ["max"] = 5.3, + ["min"] = 2, + }, ["Helmet"] = { - ["max"] = 5.3, - ["min"] = 2, - }, + ["max"] = 5.3, + ["min"] = 2, + }, ["Quiver"] = { - ["max"] = 5.3, - ["min"] = 2, - }, + ["max"] = 5.3, + ["min"] = 2, + }, ["Ring"] = { - ["max"] = 5.3, - ["min"] = 2, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4291461939", - ["text"] = "Regenerate # Mana per second", - ["type"] = "explicit", - }, - }, + ["max"] = 5.3, + ["min"] = 2, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4291461939", + ["text"] = "Regenerate # Mana per second", + ["type"] = "explicit", + }, + }, ["1582_IncreasedManaAndRegen"] = { ["Amulet"] = { - ["max"] = 5.3, - ["min"] = 2, - }, + ["max"] = 5.3, + ["min"] = 2, + }, ["Ring"] = { - ["max"] = 5.3, - ["min"] = 2, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4291461939", - ["text"] = "Regenerate # Mana per second", - ["type"] = "explicit", - }, - }, + ["max"] = 5.3, + ["min"] = 2, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4291461939", + ["text"] = "Regenerate # Mana per second", + ["type"] = "explicit", + }, + }, ["1582_LifeRegenerationAndManaRegeneration"] = { ["Amulet"] = { - ["max"] = 3, - ["min"] = 1.8, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4291461939", - ["text"] = "Regenerate # Mana per second", - ["type"] = "explicit", - }, - }, + ["max"] = 3, + ["min"] = 1.8, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4291461939", + ["text"] = "Regenerate # Mana per second", + ["type"] = "explicit", + }, + }, ["1583_BaseLifeAndManaDegenGracePeriod"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_838272676", - ["text"] = "Lose # Mana per second", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_838272676", + ["text"] = "Lose # Mana per second", + ["type"] = "explicit", + }, + }, ["1583_IncreasedManaAndDegenGracePeriod"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_838272676", - ["text"] = "Lose # Mana per second", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_838272676", + ["text"] = "Lose # Mana per second", + ["type"] = "explicit", + }, + }, ["1583_ManaDegenerationGracePeriod"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_838272676", - ["text"] = "Lose # Mana per second", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_838272676", + ["text"] = "Lose # Mana per second", + ["type"] = "explicit", + }, + }, ["1584_IncreasedManaRegenForJewel"] = { ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 12, - }, + ["max"] = 15, + ["min"] = 12, + }, ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 12, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_789117908", - ["text"] = "#% increased Mana Regeneration Rate", - ["type"] = "explicit", - }, - }, + ["max"] = 15, + ["min"] = 12, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_789117908", + ["text"] = "#% increased Mana Regeneration Rate", + ["type"] = "explicit", + }, + }, ["1584_ManaRegeneration"] = { ["1HAxe"] = { - ["max"] = 40, - ["min"] = 20, - }, + ["max"] = 40, + ["min"] = 20, + }, ["1HMace"] = { - ["max"] = 69, - ["min"] = 10, - }, + ["max"] = 69, + ["min"] = 10, + }, ["1HSword"] = { - ["max"] = 40, - ["min"] = 20, - }, + ["max"] = 40, + ["min"] = 20, + }, ["1HWeapon"] = { - ["max"] = 69, - ["min"] = 10, - }, + ["max"] = 69, + ["min"] = 10, + }, ["2HAxe"] = { - ["max"] = 60, - ["min"] = 30, - }, + ["max"] = 60, + ["min"] = 30, + }, ["2HMace"] = { - ["max"] = 60, - ["min"] = 30, - }, + ["max"] = 60, + ["min"] = 30, + }, ["2HSword"] = { - ["max"] = 60, - ["min"] = 30, - }, + ["max"] = 60, + ["min"] = 30, + }, ["2HWeapon"] = { - ["max"] = 105, - ["min"] = 20, - }, + ["max"] = 105, + ["min"] = 20, + }, ["Amulet"] = { - ["max"] = 76, - ["min"] = 10, - }, + ["max"] = 76, + ["min"] = 10, + }, ["Bow"] = { - ["max"] = 60, - ["min"] = 30, - }, + ["max"] = 60, + ["min"] = 30, + }, ["Claw"] = { - ["max"] = 69, - ["min"] = 10, - }, + ["max"] = 69, + ["min"] = 10, + }, ["Dagger"] = { - ["max"] = 69, - ["min"] = 10, - }, + ["max"] = 69, + ["min"] = 10, + }, ["Helmet"] = { - ["max"] = 70, - ["min"] = 41, - }, + ["max"] = 70, + ["min"] = 41, + }, ["Ring"] = { - ["max"] = 76, - ["min"] = 10, - }, + ["max"] = 76, + ["min"] = 10, + }, ["Shield"] = { - ["max"] = 76, - ["min"] = 10, - }, + ["max"] = 76, + ["min"] = 10, + }, ["Staff"] = { - ["max"] = 105, - ["min"] = 20, - }, + ["max"] = 105, + ["min"] = 20, + }, ["Wand"] = { - ["max"] = 69, - ["min"] = 10, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_789117908", - ["text"] = "#% increased Mana Regeneration Rate", - ["type"] = "explicit", - }, - }, + ["max"] = 69, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_789117908", + ["text"] = "#% increased Mana Regeneration Rate", + ["type"] = "explicit", + }, + }, ["1584_ManaRegenerationMaven"] = { ["Helmet"] = { - ["max"] = 70, - ["min"] = 56, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_789117908", - ["text"] = "#% increased Mana Regeneration Rate", - ["type"] = "explicit", - }, - }, + ["max"] = 70, + ["min"] = 56, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_789117908", + ["text"] = "#% increased Mana Regeneration Rate", + ["type"] = "explicit", + }, + }, ["1584_SpellDamageAndManaRegenerationRate"] = { ["1HAxe"] = { - ["max"] = 20, - ["min"] = 7, - }, + ["max"] = 20, + ["min"] = 7, + }, ["1HMace"] = { - ["max"] = 20, - ["min"] = 7, - }, + ["max"] = 20, + ["min"] = 7, + }, ["1HSword"] = { - ["max"] = 20, - ["min"] = 7, - }, + ["max"] = 20, + ["min"] = 7, + }, ["1HWeapon"] = { - ["max"] = 20, - ["min"] = 7, - }, + ["max"] = 20, + ["min"] = 7, + }, ["2HAxe"] = { - ["max"] = 40, - ["min"] = 16, - }, + ["max"] = 40, + ["min"] = 16, + }, ["2HMace"] = { - ["max"] = 40, - ["min"] = 16, - }, + ["max"] = 40, + ["min"] = 16, + }, ["2HSword"] = { - ["max"] = 40, - ["min"] = 16, - }, + ["max"] = 40, + ["min"] = 16, + }, ["2HWeapon"] = { - ["max"] = 40, - ["min"] = 16, - }, + ["max"] = 40, + ["min"] = 16, + }, ["Bow"] = { - ["max"] = 40, - ["min"] = 18, - }, + ["max"] = 40, + ["min"] = 18, + }, ["Claw"] = { - ["max"] = 20, - ["min"] = 7, - }, + ["max"] = 20, + ["min"] = 7, + }, ["Dagger"] = { - ["max"] = 20, - ["min"] = 7, - }, + ["max"] = 20, + ["min"] = 7, + }, ["Staff"] = { - ["max"] = 40, - ["min"] = 16, - }, + ["max"] = 40, + ["min"] = 16, + }, ["Wand"] = { - ["max"] = 20, - ["min"] = 7, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_789117908", - ["text"] = "#% increased Mana Regeneration Rate", - ["type"] = "explicit", - }, - }, + ["max"] = 20, + ["min"] = 7, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_789117908", + ["text"] = "#% increased Mana Regeneration Rate", + ["type"] = "explicit", + }, + }, ["1586_ManaRecoveryRate"] = { ["Amulet"] = { - ["max"] = 12, - ["min"] = 8, - }, + ["max"] = 12, + ["min"] = 8, + }, ["Belt"] = { - ["max"] = 12, - ["min"] = 7, - }, + ["max"] = 12, + ["min"] = 7, + }, ["Chest"] = { - ["max"] = 15, - ["min"] = 8, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3513180117", - ["text"] = "#% increased Mana Recovery rate", - ["type"] = "explicit", - }, - }, + ["max"] = 15, + ["min"] = 8, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3513180117", + ["text"] = "#% increased Mana Recovery rate", + ["type"] = "explicit", + }, + }, ["1586_ManaRecoveryRateMaven"] = { ["Chest"] = { - ["max"] = 15, - ["min"] = 12, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3513180117", - ["text"] = "#% increased Mana Recovery rate", - ["type"] = "explicit", - }, - }, + ["max"] = 15, + ["min"] = 12, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3513180117", + ["text"] = "#% increased Mana Recovery rate", + ["type"] = "explicit", + }, + }, ["158_DelveStrengthGemLevel"] = { ["1HAxe"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["1HMace"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["1HSword"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["1HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["2HAxe"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["2HMace"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["2HSword"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["2HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Boots"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Bow"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Chest"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Claw"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Dagger"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Gloves"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Helmet"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Staff"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Wand"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_916797432", - ["text"] = "+# to Level of Socketed Strength Gems", - ["type"] = "explicit", - }, - }, + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_916797432", + ["text"] = "+# to Level of Socketed Strength Gems", + ["type"] = "explicit", + }, + }, ["158_PercentageStrengthMaven"] = { ["Amulet"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Chest"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_916797432", - ["text"] = "+# to Level of Socketed Strength Gems", - ["type"] = "explicit", - }, - }, + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_916797432", + ["text"] = "+# to Level of Socketed Strength Gems", + ["type"] = "explicit", + }, + }, ["1592_ItemFoundQuantityIncrease"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_884586851", - ["text"] = "#% increased Quantity of Items found", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_884586851", + ["text"] = "#% increased Quantity of Items found", + ["type"] = "explicit", + }, + }, ["1596_ItemFoundRarityIncrease"] = { ["Amulet"] = { - ["max"] = 26, - ["min"] = 6, - }, + ["max"] = 26, + ["min"] = 6, + }, ["Boots"] = { - ["max"] = 14, - ["min"] = 6, - }, + ["max"] = 14, + ["min"] = 6, + }, ["Gloves"] = { - ["max"] = 14, - ["min"] = 6, - }, + ["max"] = 14, + ["min"] = 6, + }, ["Helmet"] = { - ["max"] = 26, - ["min"] = 6, - }, + ["max"] = 26, + ["min"] = 6, + }, ["Ring"] = { - ["max"] = 26, - ["min"] = 6, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3917489142", - ["text"] = "#% increased Rarity of Items found", - ["type"] = "explicit", - }, - }, + ["max"] = 26, + ["min"] = 6, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3917489142", + ["text"] = "#% increased Rarity of Items found", + ["type"] = "explicit", + }, + }, ["1596_ItemFoundRarityIncreasePrefix"] = { ["Amulet"] = { - ["max"] = 28, - ["min"] = 8, - }, + ["max"] = 28, + ["min"] = 8, + }, ["Boots"] = { - ["max"] = 18, - ["min"] = 8, - }, + ["max"] = 18, + ["min"] = 8, + }, ["Gloves"] = { - ["max"] = 18, - ["min"] = 8, - }, + ["max"] = 18, + ["min"] = 8, + }, ["Helmet"] = { - ["max"] = 24, - ["min"] = 8, - }, + ["max"] = 24, + ["min"] = 8, + }, ["Ring"] = { - ["max"] = 28, - ["min"] = 8, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3917489142", - ["text"] = "#% increased Rarity of Items found", - ["type"] = "explicit", - }, - }, + ["max"] = 28, + ["min"] = 8, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3917489142", + ["text"] = "#% increased Rarity of Items found", + ["type"] = "explicit", + }, + }, ["1596_ItemRarityForJewel"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_3917489142", - ["text"] = "#% increased Rarity of Items found", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_3917489142", + ["text"] = "#% increased Rarity of Items found", + ["type"] = "explicit", + }, + }, ["1603_ExperienceIncrease"] = { ["Ring"] = { - ["max"] = 3, - ["min"] = 2, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3666934677", - ["text"] = "#% increased Experience gain", - ["type"] = "explicit", - }, - }, + ["max"] = 3, + ["min"] = 2, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3666934677", + ["text"] = "#% increased Experience gain", + ["type"] = "explicit", + }, + }, ["1608_GlobalIncreaseSpellSkillGemLevel"] = { ["1HMace"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["1HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["2HWeapon"] = { - ["max"] = 2, - ["min"] = 1, - }, + ["max"] = 2, + ["min"] = 1, + }, ["Dagger"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Staff"] = { - ["max"] = 2, - ["min"] = 1, - }, + ["max"] = 2, + ["min"] = 1, + }, ["Wand"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_124131830", - ["text"] = "+# to Level of all Spell Skill Gems", - ["type"] = "explicit", - }, - }, + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_124131830", + ["text"] = "+# to Level of all Spell Skill Gems", + ["type"] = "explicit", + }, + }, ["1609_GlobalIncreasePhysicalSpellSkillGemLevel"] = { ["1HMace"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["1HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["2HWeapon"] = { - ["max"] = 3, - ["min"] = 1, - }, + ["max"] = 3, + ["min"] = 1, + }, ["Dagger"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Shield"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Staff"] = { - ["max"] = 3, - ["min"] = 1, - }, + ["max"] = 3, + ["min"] = 1, + }, ["Wand"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1600707273", - ["text"] = "+# to Level of all Physical Spell Skill Gems", - ["type"] = "explicit", - }, - }, + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1600707273", + ["text"] = "+# to Level of all Physical Spell Skill Gems", + ["type"] = "explicit", + }, + }, ["160_DelveDexterityGemLevel"] = { ["1HAxe"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["1HMace"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["1HSword"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["1HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["2HAxe"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["2HMace"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["2HSword"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["2HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Boots"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Bow"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Chest"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Claw"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Dagger"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Gloves"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Helmet"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Staff"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Wand"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2718698372", - ["text"] = "+# to Level of Socketed Dexterity Gems", - ["type"] = "explicit", - }, - }, + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2718698372", + ["text"] = "+# to Level of Socketed Dexterity Gems", + ["type"] = "explicit", + }, + }, ["160_PercentageDexterityMaven"] = { ["Amulet"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Chest"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2718698372", - ["text"] = "+# to Level of Socketed Dexterity Gems", - ["type"] = "explicit", - }, - }, + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2718698372", + ["text"] = "+# to Level of Socketed Dexterity Gems", + ["type"] = "explicit", + }, + }, ["1610_GlobalIncreaseFireSpellSkillGemLevel"] = { ["1HMace"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["1HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["2HWeapon"] = { - ["max"] = 3, - ["min"] = 1, - }, + ["max"] = 3, + ["min"] = 1, + }, ["Dagger"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Shield"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Staff"] = { - ["max"] = 3, - ["min"] = 1, - }, + ["max"] = 3, + ["min"] = 1, + }, ["Wand"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_591105508", - ["text"] = "+# to Level of all Fire Spell Skill Gems", - ["type"] = "explicit", - }, - }, + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_591105508", + ["text"] = "+# to Level of all Fire Spell Skill Gems", + ["type"] = "explicit", + }, + }, ["1611_GlobalIncreaseColdSpellSkillGemLevel"] = { ["1HMace"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["1HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["2HWeapon"] = { - ["max"] = 3, - ["min"] = 1, - }, + ["max"] = 3, + ["min"] = 1, + }, ["Dagger"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Shield"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Staff"] = { - ["max"] = 3, - ["min"] = 1, - }, + ["max"] = 3, + ["min"] = 1, + }, ["Wand"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2254480358", - ["text"] = "+# to Level of all Cold Spell Skill Gems", - ["type"] = "explicit", - }, - }, + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2254480358", + ["text"] = "+# to Level of all Cold Spell Skill Gems", + ["type"] = "explicit", + }, + }, ["1612_GlobalIncreaseLightningSpellSkillGemLevel"] = { ["1HMace"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["1HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["2HWeapon"] = { - ["max"] = 3, - ["min"] = 1, - }, + ["max"] = 3, + ["min"] = 1, + }, ["Dagger"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Shield"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Staff"] = { - ["max"] = 3, - ["min"] = 1, - }, + ["max"] = 3, + ["min"] = 1, + }, ["Wand"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1545858329", - ["text"] = "+# to Level of all Lightning Spell Skill Gems", - ["type"] = "explicit", - }, - }, + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1545858329", + ["text"] = "+# to Level of all Lightning Spell Skill Gems", + ["type"] = "explicit", + }, + }, ["1613_GlobalIncreaseChaosSpellSkillGemLevel"] = { ["1HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["2HWeapon"] = { - ["max"] = 3, - ["min"] = 1, - }, + ["max"] = 3, + ["min"] = 1, + }, ["Dagger"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Shield"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Staff"] = { - ["max"] = 3, - ["min"] = 1, - }, + ["max"] = 3, + ["min"] = 1, + }, ["Wand"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4226189338", - ["text"] = "+# to Level of all Chaos Spell Skill Gems", - ["type"] = "explicit", - }, - }, + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4226189338", + ["text"] = "+# to Level of all Chaos Spell Skill Gems", + ["type"] = "explicit", + }, + }, ["1614_GlobalIncreaseMinionSpellSkillGemLevel"] = { ["1HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Helmet"] = { - ["max"] = 2, - ["min"] = 1, - }, + ["max"] = 2, + ["min"] = 1, + }, ["Shield"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Wand"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2162097452", - ["text"] = "+# to Level of all Minion Skill Gems", - ["type"] = "explicit", - }, - }, + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2162097452", + ["text"] = "+# to Level of all Minion Skill Gems", + ["type"] = "explicit", + }, + }, ["1616_MinionGlobalSkillLevel"] = { ["Boots"] = { - ["max"] = 2, - ["min"] = 1, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3235814433", - ["text"] = "+# to Level of all Raise Spectre Gems", - ["type"] = "explicit", - }, - }, + ["max"] = 2, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.indexable_skill_29", + ["text"] = "+# to Level of all Raise Spectre Gems", + ["type"] = "explicit", + }, + }, ["1619_AllResistances"] = { ["Amulet"] = { - ["max"] = 18, - ["min"] = 3, - }, + ["max"] = 18, + ["min"] = 3, + }, ["Belt"] = { - ["max"] = 18, - ["min"] = 10, - }, + ["max"] = 18, + ["min"] = 10, + }, ["Chest"] = { - ["max"] = 18, - ["min"] = 10, - }, + ["max"] = 18, + ["min"] = 10, + }, ["Ring"] = { - ["max"] = 16, - ["min"] = 3, - }, + ["max"] = 16, + ["min"] = 3, + }, ["Shield"] = { - ["max"] = 18, - ["min"] = 3, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2901986750", - ["text"] = "+#% to all Elemental Resistances", - ["type"] = "explicit", - }, - }, + ["max"] = 18, + ["min"] = 3, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2901986750", + ["text"] = "+#% to all Elemental Resistances", + ["type"] = "explicit", + }, + }, ["1619_AllResistancesForJewel"] = { ["AbyssJewel"] = { - ["max"] = 10, - ["min"] = 8, - }, + ["max"] = 10, + ["min"] = 8, + }, ["AnyJewel"] = { - ["max"] = 10, - ["min"] = 8, - }, + ["max"] = 10, + ["min"] = 8, + }, ["BaseJewel"] = { - ["max"] = 10, - ["min"] = 8, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2901986750", - ["text"] = "+#% to all Elemental Resistances", - ["type"] = "explicit", - }, - }, + ["max"] = 10, + ["min"] = 8, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2901986750", + ["text"] = "+#% to all Elemental Resistances", + ["type"] = "explicit", + }, + }, ["1619_AllResistancesMaven"] = { ["Belt"] = { - ["max"] = 22, - ["min"] = 19, - }, + ["max"] = 22, + ["min"] = 19, + }, ["Chest"] = { - ["max"] = 22, - ["min"] = 19, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2901986750", - ["text"] = "+#% to all Elemental Resistances", - ["type"] = "explicit", - }, - }, + ["max"] = 22, + ["min"] = 19, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2901986750", + ["text"] = "+#% to all Elemental Resistances", + ["type"] = "explicit", + }, + }, ["1619_AllResistancesMinionResistances"] = { ["Amulet"] = { - ["max"] = 9, - ["min"] = 4, - }, + ["max"] = 9, + ["min"] = 4, + }, ["Ring"] = { - ["max"] = 9, - ["min"] = 4, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2901986750", - ["text"] = "+#% to all Elemental Resistances", - ["type"] = "explicit", - }, - }, + ["max"] = 9, + ["min"] = 4, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2901986750", + ["text"] = "+#% to all Elemental Resistances", + ["type"] = "explicit", + }, + }, ["161_DelveIntelligenceGemLevel"] = { ["1HAxe"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["1HMace"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["1HSword"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["1HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["2HAxe"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["2HMace"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["2HSword"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["2HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Boots"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Bow"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Chest"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Claw"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Dagger"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Gloves"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Helmet"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Staff"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Wand"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1719423857", - ["text"] = "+# to Level of Socketed Intelligence Gems", - ["type"] = "explicit", - }, - }, + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1719423857", + ["text"] = "+# to Level of Socketed Intelligence Gems", + ["type"] = "explicit", + }, + }, ["161_PercentageIntelligenceMaven"] = { ["Amulet"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Chest"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1719423857", - ["text"] = "+# to Level of Socketed Intelligence Gems", - ["type"] = "explicit", - }, - }, + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1719423857", + ["text"] = "+# to Level of Socketed Intelligence Gems", + ["type"] = "explicit", + }, + }, ["1623_MaximumFireResist"] = { ["Boots"] = { - ["max"] = 3, - ["min"] = 1, - }, + ["max"] = 3, + ["min"] = 1, + }, ["Shield"] = { - ["max"] = 3, - ["min"] = 1, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4095671657", - ["text"] = "+#% to maximum Fire Resistance", - ["type"] = "explicit", - }, - }, + ["max"] = 3, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4095671657", + ["text"] = "+#% to maximum Fire Resistance", + ["type"] = "explicit", + }, + }, ["1623_MaximumFireResistanceForJewel"] = { ["AnyJewel"] = { - ["max"] = 2, - ["min"] = 1, - }, + ["max"] = 2, + ["min"] = 1, + }, ["BaseJewel"] = { - ["max"] = 2, - ["min"] = 1, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4095671657", - ["text"] = "+#% to maximum Fire Resistance", - ["type"] = "explicit", - }, - }, + ["max"] = 2, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4095671657", + ["text"] = "+#% to maximum Fire Resistance", + ["type"] = "explicit", + }, + }, ["1625_FireDamageAvoidanceMaven"] = { ["Boots"] = { - ["max"] = 30, - ["min"] = 20, - }, + ["max"] = 30, + ["min"] = 20, + }, ["Shield"] = { - ["max"] = 30, - ["min"] = 20, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3372524247", - ["text"] = "+#% to Fire Resistance", - ["type"] = "explicit", - }, - }, + ["max"] = 30, + ["min"] = 20, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3372524247", + ["text"] = "+#% to Fire Resistance", + ["type"] = "explicit", + }, + }, ["1625_FireResistance"] = { ["Amulet"] = { - ["max"] = 48, - ["min"] = 6, - }, + ["max"] = 48, + ["min"] = 6, + }, ["Belt"] = { - ["max"] = 48, - ["min"] = 6, - }, + ["max"] = 48, + ["min"] = 6, + }, ["Boots"] = { - ["max"] = 48, - ["min"] = 12, - }, + ["max"] = 48, + ["min"] = 12, + }, ["Chest"] = { - ["max"] = 48, - ["min"] = 12, - }, + ["max"] = 48, + ["min"] = 12, + }, ["Gloves"] = { - ["max"] = 48, - ["min"] = 12, - }, + ["max"] = 48, + ["min"] = 12, + }, ["Helmet"] = { - ["max"] = 48, - ["min"] = 12, - }, + ["max"] = 48, + ["min"] = 12, + }, ["Quiver"] = { - ["max"] = 48, - ["min"] = 6, - }, + ["max"] = 48, + ["min"] = 6, + }, ["Ring"] = { - ["max"] = 48, - ["min"] = 6, - }, + ["max"] = 48, + ["min"] = 6, + }, ["Shield"] = { - ["max"] = 48, - ["min"] = 12, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3372524247", - ["text"] = "+#% to Fire Resistance", - ["type"] = "explicit", - }, - }, + ["max"] = 48, + ["min"] = 12, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3372524247", + ["text"] = "+#% to Fire Resistance", + ["type"] = "explicit", + }, + }, ["1625_FireResistanceAilments"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_3372524247", - ["text"] = "+#% to Fire Resistance", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_3372524247", + ["text"] = "+#% to Fire Resistance", + ["type"] = "explicit", + }, + }, ["1625_FireResistanceEnemyLeech"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_3372524247", - ["text"] = "+#% to Fire Resistance", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_3372524247", + ["text"] = "+#% to Fire Resistance", + ["type"] = "explicit", + }, + }, ["1625_FireResistanceForJewel"] = { ["AbyssJewel"] = { - ["max"] = 15, - ["min"] = 12, - }, + ["max"] = 15, + ["min"] = 12, + }, ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 12, - }, + ["max"] = 15, + ["min"] = 12, + }, ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 12, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3372524247", - ["text"] = "+#% to Fire Resistance", - ["type"] = "explicit", - }, - }, + ["max"] = 15, + ["min"] = 12, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3372524247", + ["text"] = "+#% to Fire Resistance", + ["type"] = "explicit", + }, + }, ["1625_FireResistanceLeech"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_3372524247", - ["text"] = "+#% to Fire Resistance", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_3372524247", + ["text"] = "+#% to Fire Resistance", + ["type"] = "explicit", + }, + }, ["1625_FireResistancePhysTakenAsFire"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_3372524247", - ["text"] = "+#% to Fire Resistance", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_3372524247", + ["text"] = "+#% to Fire Resistance", + ["type"] = "explicit", + }, + }, ["1625_FireResistancePrefix"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_3372524247", - ["text"] = "+#% to Fire Resistance", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_3372524247", + ["text"] = "+#% to Fire Resistance", + ["type"] = "explicit", + }, + }, ["1629_MaximumColdResist"] = { ["Gloves"] = { - ["max"] = 3, - ["min"] = 1, - }, + ["max"] = 3, + ["min"] = 1, + }, ["Shield"] = { - ["max"] = 3, - ["min"] = 1, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3676141501", - ["text"] = "+#% to maximum Cold Resistance", - ["type"] = "explicit", - }, - }, + ["max"] = 3, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3676141501", + ["text"] = "+#% to maximum Cold Resistance", + ["type"] = "explicit", + }, + }, ["1629_MaximumColdResistanceForJewel"] = { ["AnyJewel"] = { - ["max"] = 2, - ["min"] = 1, - }, + ["max"] = 2, + ["min"] = 1, + }, ["BaseJewel"] = { - ["max"] = 2, - ["min"] = 1, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3676141501", - ["text"] = "+#% to maximum Cold Resistance", - ["type"] = "explicit", - }, - }, + ["max"] = 2, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3676141501", + ["text"] = "+#% to maximum Cold Resistance", + ["type"] = "explicit", + }, + }, ["162_LocalIncreaseSocketedGemLevel"] = { ["1HAxe"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["1HMace"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["1HSword"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["1HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["2HAxe"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["2HMace"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["2HSword"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["2HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Bow"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Claw"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Dagger"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Staff"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Wand"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2843100721", - ["text"] = "+# to Level of Socketed Gems", - ["type"] = "explicit", - }, - }, + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2843100721", + ["text"] = "+# to Level of Socketed Gems", + ["type"] = "explicit", + }, + }, ["1631_ColdDamageAvoidanceMaven"] = { ["Boots"] = { - ["max"] = 30, - ["min"] = 20, - }, + ["max"] = 30, + ["min"] = 20, + }, ["Shield"] = { - ["max"] = 30, - ["min"] = 20, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4220027924", - ["text"] = "+#% to Cold Resistance", - ["type"] = "explicit", - }, - }, + ["max"] = 30, + ["min"] = 20, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4220027924", + ["text"] = "+#% to Cold Resistance", + ["type"] = "explicit", + }, + }, ["1631_ColdResistance"] = { ["Amulet"] = { - ["max"] = 48, - ["min"] = 6, - }, + ["max"] = 48, + ["min"] = 6, + }, ["Belt"] = { - ["max"] = 48, - ["min"] = 6, - }, + ["max"] = 48, + ["min"] = 6, + }, ["Boots"] = { - ["max"] = 48, - ["min"] = 6, - }, + ["max"] = 48, + ["min"] = 6, + }, ["Chest"] = { - ["max"] = 48, - ["min"] = 6, - }, + ["max"] = 48, + ["min"] = 6, + }, ["Gloves"] = { - ["max"] = 48, - ["min"] = 6, - }, + ["max"] = 48, + ["min"] = 6, + }, ["Helmet"] = { - ["max"] = 48, - ["min"] = 6, - }, + ["max"] = 48, + ["min"] = 6, + }, ["Quiver"] = { - ["max"] = 48, - ["min"] = 6, - }, + ["max"] = 48, + ["min"] = 6, + }, ["Ring"] = { - ["max"] = 48, - ["min"] = 6, - }, + ["max"] = 48, + ["min"] = 6, + }, ["Shield"] = { - ["max"] = 48, - ["min"] = 6, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4220027924", - ["text"] = "+#% to Cold Resistance", - ["type"] = "explicit", - }, - }, + ["max"] = 48, + ["min"] = 6, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4220027924", + ["text"] = "+#% to Cold Resistance", + ["type"] = "explicit", + }, + }, ["1631_ColdResistanceAilments"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_4220027924", - ["text"] = "+#% to Cold Resistance", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_4220027924", + ["text"] = "+#% to Cold Resistance", + ["type"] = "explicit", + }, + }, ["1631_ColdResistanceEnemyLeech"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_4220027924", - ["text"] = "+#% to Cold Resistance", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_4220027924", + ["text"] = "+#% to Cold Resistance", + ["type"] = "explicit", + }, + }, ["1631_ColdResistanceForJewel"] = { ["AbyssJewel"] = { - ["max"] = 15, - ["min"] = 12, - }, + ["max"] = 15, + ["min"] = 12, + }, ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 12, - }, + ["max"] = 15, + ["min"] = 12, + }, ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 12, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4220027924", - ["text"] = "+#% to Cold Resistance", - ["type"] = "explicit", - }, - }, + ["max"] = 15, + ["min"] = 12, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4220027924", + ["text"] = "+#% to Cold Resistance", + ["type"] = "explicit", + }, + }, ["1631_ColdResistanceLeech"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_4220027924", - ["text"] = "+#% to Cold Resistance", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_4220027924", + ["text"] = "+#% to Cold Resistance", + ["type"] = "explicit", + }, + }, ["1631_ColdResistancePhysTakenAsCold"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_4220027924", - ["text"] = "+#% to Cold Resistance", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_4220027924", + ["text"] = "+#% to Cold Resistance", + ["type"] = "explicit", + }, + }, ["1631_ColdResistancePrefix"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_4220027924", - ["text"] = "+#% to Cold Resistance", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_4220027924", + ["text"] = "+#% to Cold Resistance", + ["type"] = "explicit", + }, + }, ["1634_MaximumLightningResistance"] = { ["Helmet"] = { - ["max"] = 3, - ["min"] = 1, - }, + ["max"] = 3, + ["min"] = 1, + }, ["Shield"] = { - ["max"] = 3, - ["min"] = 1, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1011760251", - ["text"] = "+#% to maximum Lightning Resistance", - ["type"] = "explicit", - }, - }, + ["max"] = 3, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1011760251", + ["text"] = "+#% to maximum Lightning Resistance", + ["type"] = "explicit", + }, + }, ["1634_MaximumLightningResistanceForJewel"] = { ["AnyJewel"] = { - ["max"] = 2, - ["min"] = 1, - }, + ["max"] = 2, + ["min"] = 1, + }, ["BaseJewel"] = { - ["max"] = 2, - ["min"] = 1, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1011760251", - ["text"] = "+#% to maximum Lightning Resistance", - ["type"] = "explicit", - }, - }, + ["max"] = 2, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1011760251", + ["text"] = "+#% to maximum Lightning Resistance", + ["type"] = "explicit", + }, + }, ["1636_LightningDamageAvoidanceMaven"] = { ["Boots"] = { - ["max"] = 30, - ["min"] = 20, - }, + ["max"] = 30, + ["min"] = 20, + }, ["Shield"] = { - ["max"] = 30, - ["min"] = 20, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1671376347", - ["text"] = "+#% to Lightning Resistance", - ["type"] = "explicit", - }, - }, + ["max"] = 30, + ["min"] = 20, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1671376347", + ["text"] = "+#% to Lightning Resistance", + ["type"] = "explicit", + }, + }, ["1636_LightningResistance"] = { ["Amulet"] = { - ["max"] = 48, - ["min"] = 6, - }, + ["max"] = 48, + ["min"] = 6, + }, ["Belt"] = { - ["max"] = 48, - ["min"] = 6, - }, + ["max"] = 48, + ["min"] = 6, + }, ["Boots"] = { - ["max"] = 48, - ["min"] = 16, - }, + ["max"] = 48, + ["min"] = 16, + }, ["Chest"] = { - ["max"] = 48, - ["min"] = 16, - }, + ["max"] = 48, + ["min"] = 16, + }, ["Gloves"] = { - ["max"] = 48, - ["min"] = 16, - }, + ["max"] = 48, + ["min"] = 16, + }, ["Helmet"] = { - ["max"] = 48, - ["min"] = 16, - }, + ["max"] = 48, + ["min"] = 16, + }, ["Quiver"] = { - ["max"] = 48, - ["min"] = 6, - }, + ["max"] = 48, + ["min"] = 6, + }, ["Ring"] = { - ["max"] = 48, - ["min"] = 6, - }, + ["max"] = 48, + ["min"] = 6, + }, ["Shield"] = { - ["max"] = 48, - ["min"] = 16, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1671376347", - ["text"] = "+#% to Lightning Resistance", - ["type"] = "explicit", - }, - }, + ["max"] = 48, + ["min"] = 16, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1671376347", + ["text"] = "+#% to Lightning Resistance", + ["type"] = "explicit", + }, + }, ["1636_LightningResistanceAilments"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1671376347", - ["text"] = "+#% to Lightning Resistance", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1671376347", + ["text"] = "+#% to Lightning Resistance", + ["type"] = "explicit", + }, + }, ["1636_LightningResistanceEnemyLeech"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1671376347", - ["text"] = "+#% to Lightning Resistance", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1671376347", + ["text"] = "+#% to Lightning Resistance", + ["type"] = "explicit", + }, + }, ["1636_LightningResistanceForJewel"] = { ["AbyssJewel"] = { - ["max"] = 15, - ["min"] = 12, - }, + ["max"] = 15, + ["min"] = 12, + }, ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 12, - }, + ["max"] = 15, + ["min"] = 12, + }, ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 12, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1671376347", - ["text"] = "+#% to Lightning Resistance", - ["type"] = "explicit", - }, - }, + ["max"] = 15, + ["min"] = 12, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1671376347", + ["text"] = "+#% to Lightning Resistance", + ["type"] = "explicit", + }, + }, ["1636_LightningResistanceLeech"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1671376347", - ["text"] = "+#% to Lightning Resistance", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1671376347", + ["text"] = "+#% to Lightning Resistance", + ["type"] = "explicit", + }, + }, ["1636_LightningResistancePhysTakenAsLightning"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1671376347", - ["text"] = "+#% to Lightning Resistance", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1671376347", + ["text"] = "+#% to Lightning Resistance", + ["type"] = "explicit", + }, + }, ["1636_LightningResistancePrefix"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1671376347", - ["text"] = "+#% to Lightning Resistance", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1671376347", + ["text"] = "+#% to Lightning Resistance", + ["type"] = "explicit", + }, + }, ["1640_MaximumChaosResistance"] = { ["Shield"] = { - ["max"] = 3, - ["min"] = 1, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1301765461", - ["text"] = "+#% to maximum Chaos Resistance", - ["type"] = "explicit", - }, - }, + ["max"] = 3, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1301765461", + ["text"] = "+#% to maximum Chaos Resistance", + ["type"] = "explicit", + }, + }, ["1640_PhysicalDamageTakenAsChaosUberMaven"] = { ["Chest"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1301765461", - ["text"] = "+#% to maximum Chaos Resistance", - ["type"] = "explicit", - }, - }, + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1301765461", + ["text"] = "+#% to maximum Chaos Resistance", + ["type"] = "explicit", + }, + }, ["1641_ChaosResistance"] = { ["Amulet"] = { - ["max"] = 35, - ["min"] = 5, - }, + ["max"] = 35, + ["min"] = 5, + }, ["Belt"] = { - ["max"] = 35, - ["min"] = 5, - }, + ["max"] = 35, + ["min"] = 5, + }, ["Boots"] = { - ["max"] = 35, - ["min"] = 21, - }, + ["max"] = 35, + ["min"] = 21, + }, ["Chest"] = { - ["max"] = 35, - ["min"] = 21, - }, + ["max"] = 35, + ["min"] = 21, + }, ["Gloves"] = { - ["max"] = 35, - ["min"] = 21, - }, + ["max"] = 35, + ["min"] = 21, + }, ["Helmet"] = { - ["max"] = 35, - ["min"] = 21, - }, + ["max"] = 35, + ["min"] = 21, + }, ["Quiver"] = { - ["max"] = 35, - ["min"] = 5, - }, + ["max"] = 35, + ["min"] = 5, + }, ["Ring"] = { - ["max"] = 35, - ["min"] = 5, - }, + ["max"] = 35, + ["min"] = 5, + }, ["Shield"] = { - ["max"] = 35, - ["min"] = 21, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2923486259", - ["text"] = "+#% to Chaos Resistance", - ["type"] = "explicit", - }, - }, + ["max"] = 35, + ["min"] = 21, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2923486259", + ["text"] = "+#% to Chaos Resistance", + ["type"] = "explicit", + }, + }, ["1641_ChaosResistanceDamageOverTime"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_2923486259", - ["text"] = "+#% to Chaos Resistance", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_2923486259", + ["text"] = "+#% to Chaos Resistance", + ["type"] = "explicit", + }, + }, ["1641_ChaosResistanceForJewel"] = { ["AbyssJewel"] = { - ["max"] = 13, - ["min"] = 7, - }, + ["max"] = 13, + ["min"] = 7, + }, ["AnyJewel"] = { - ["max"] = 13, - ["min"] = 7, - }, + ["max"] = 13, + ["min"] = 7, + }, ["BaseJewel"] = { - ["max"] = 13, - ["min"] = 7, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2923486259", - ["text"] = "+#% to Chaos Resistance", - ["type"] = "explicit", - }, - }, + ["max"] = 13, + ["min"] = 7, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2923486259", + ["text"] = "+#% to Chaos Resistance", + ["type"] = "explicit", + }, + }, ["1641_ChaosResistancePrefix"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_2923486259", - ["text"] = "+#% to Chaos Resistance", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_2923486259", + ["text"] = "+#% to Chaos Resistance", + ["type"] = "explicit", + }, + }, ["1642_MaximumResistances"] = { ["Shield"] = { - ["max"] = 2, - ["min"] = 1, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_569299859", - ["text"] = "+#% to all maximum Resistances", - ["type"] = "explicit", - }, - }, + ["max"] = 2, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_569299859", + ["text"] = "+#% to all maximum Resistances", + ["type"] = "explicit", + }, + }, ["1643_AllResistancesMaven"] = { ["Belt"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Chest"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1978899297", - ["text"] = "+#% to all maximum Elemental Resistances", - ["type"] = "explicit", - }, - }, + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1978899297", + ["text"] = "+#% to all maximum Elemental Resistances", + ["type"] = "explicit", + }, + }, ["1645_ChillEffectivenessOnSelf"] = { ["AnyJewel"] = { - ["max"] = 35, - ["min"] = 30, - }, + ["max"] = 35, + ["min"] = 30, + }, ["BaseJewel"] = { - ["max"] = 35, - ["min"] = 30, - }, + ["max"] = 35, + ["min"] = 30, + }, ["Ring"] = { - ["max"] = 60, - ["min"] = 41, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1478653032", - ["text"] = "#% reduced Effect of Chill on you", - ["type"] = "explicit", - }, - }, + ["max"] = 60, + ["min"] = 41, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1478653032", + ["text"] = "#% reduced Effect of Chill on you", + ["type"] = "explicit", + }, + }, ["1647_LifeLeech"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_3593843976", - ["text"] = "#% of Physical Attack Damage Leeched as Life", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_3593843976", + ["text"] = "#% of Physical Attack Damage Leeched as Life", + ["type"] = "explicit", + }, + }, ["1648_EnemyLifeLeechPermyriad"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_2693705594", - ["text"] = "#% of Physical Attack Damage Leeched by Enemy as Life", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_2693705594", + ["text"] = "#% of Physical Attack Damage Leeched by Enemy as Life", + ["type"] = "explicit", + }, + }, ["1649_LifeLeechPermyriad"] = { ["Amulet"] = { - ["max"] = 1.2, - ["min"] = 0.2, - }, + ["max"] = 1.2, + ["min"] = 0.2, + }, ["Gloves"] = { - ["max"] = 0.5, - ["min"] = 0.2, - }, + ["max"] = 0.5, + ["min"] = 0.2, + }, ["Quiver"] = { - ["max"] = 1.3, - ["min"] = 0.2, - }, + ["max"] = 1.3, + ["min"] = 0.2, + }, ["Ring"] = { - ["max"] = 0.5, - ["min"] = 0.2, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3593843976", - ["text"] = "#% of Physical Attack Damage Leeched as Life", - ["type"] = "explicit", - }, - }, + ["max"] = 0.5, + ["min"] = 0.2, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3593843976", + ["text"] = "#% of Physical Attack Damage Leeched as Life", + ["type"] = "explicit", + }, + }, ["1649_LifeLeechPermyriadForJewel"] = { ["AnyJewel"] = { - ["max"] = 0.4, - ["min"] = 0.2, - }, + ["max"] = 0.4, + ["min"] = 0.2, + }, ["BaseJewel"] = { - ["max"] = 0.4, - ["min"] = 0.2, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3593843976", - ["text"] = "#% of Physical Attack Damage Leeched as Life", - ["type"] = "explicit", - }, - }, + ["max"] = 0.4, + ["min"] = 0.2, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3593843976", + ["text"] = "#% of Physical Attack Damage Leeched as Life", + ["type"] = "explicit", + }, + }, ["1651_LifeLeechLocalPermyriad"] = { ["1HAxe"] = { - ["max"] = 4.5, - ["min"] = 2, - }, + ["max"] = 4.5, + ["min"] = 2, + }, ["1HMace"] = { - ["max"] = 4.5, - ["min"] = 2, - }, + ["max"] = 4.5, + ["min"] = 2, + }, ["1HSword"] = { - ["max"] = 4.5, - ["min"] = 2, - }, + ["max"] = 4.5, + ["min"] = 2, + }, ["1HWeapon"] = { - ["max"] = 4.5, - ["min"] = 2, - }, + ["max"] = 4.5, + ["min"] = 2, + }, ["2HAxe"] = { - ["max"] = 4.5, - ["min"] = 2, - }, + ["max"] = 4.5, + ["min"] = 2, + }, ["2HMace"] = { - ["max"] = 4.5, - ["min"] = 2, - }, + ["max"] = 4.5, + ["min"] = 2, + }, ["2HSword"] = { - ["max"] = 4.5, - ["min"] = 2, - }, + ["max"] = 4.5, + ["min"] = 2, + }, ["2HWeapon"] = { - ["max"] = 4.5, - ["min"] = 2, - }, + ["max"] = 4.5, + ["min"] = 2, + }, ["Bow"] = { - ["max"] = 4.5, - ["min"] = 2, - }, + ["max"] = 4.5, + ["min"] = 2, + }, ["Claw"] = { - ["max"] = 4.5, - ["min"] = 2, - }, + ["max"] = 4.5, + ["min"] = 2, + }, ["Dagger"] = { - ["max"] = 4.5, - ["min"] = 2, - }, + ["max"] = 4.5, + ["min"] = 2, + }, ["Staff"] = { - ["max"] = 4.5, - ["min"] = 2, - }, + ["max"] = 4.5, + ["min"] = 2, + }, ["Wand"] = { - ["max"] = 4.5, - ["min"] = 2, - }, - ["sign"] = "", - ["specialCaseData"] = { - ["overrideModLine"] = "#% of Physical Attack Damage Leeched as Life", - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_55876295", - ["text"] = "#% of Physical Attack Damage Leeched as Life (Local)", - ["type"] = "explicit", - }, - }, + ["max"] = 4.5, + ["min"] = 2, + }, + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "#% of Physical Attack Damage Leeched as Life", + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_55876295", + ["text"] = "#% of Physical Attack Damage Leeched as Life (Local)", + ["type"] = "explicit", + }, + }, ["1651_LocalIncreasedPhysicalDamagePercentAndLeech"] = { ["1HAxe"] = { - ["max"] = 0.6, - ["min"] = 0.6, - }, + ["max"] = 0.6, + ["min"] = 0.6, + }, ["1HSword"] = { - ["max"] = 0.6, - ["min"] = 0.6, - }, + ["max"] = 0.6, + ["min"] = 0.6, + }, ["1HWeapon"] = { - ["max"] = 0.6, - ["min"] = 0.6, - }, + ["max"] = 0.6, + ["min"] = 0.6, + }, ["2HAxe"] = { - ["max"] = 0.6, - ["min"] = 0.6, - }, + ["max"] = 0.6, + ["min"] = 0.6, + }, ["2HSword"] = { - ["max"] = 0.6, - ["min"] = 0.6, - }, + ["max"] = 0.6, + ["min"] = 0.6, + }, ["2HWeapon"] = { - ["max"] = 0.6, - ["min"] = 0.6, - }, - ["sign"] = "", - ["specialCaseData"] = { - ["overrideModLine"] = "#% of Physical Attack Damage Leeched as Life", - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_55876295", - ["text"] = "#% of Physical Attack Damage Leeched as Life (Local)", - ["type"] = "explicit", - }, - }, + ["max"] = 0.6, + ["min"] = 0.6, + }, + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "#% of Physical Attack Damage Leeched as Life", + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_55876295", + ["text"] = "#% of Physical Attack Damage Leeched as Life (Local)", + ["type"] = "explicit", + }, + }, ["1664_LifeLeechFromAttacksPermyriad"] = { ["AbyssJewel"] = { - ["max"] = 0.3, - ["min"] = 0.3, - }, + ["max"] = 0.3, + ["min"] = 0.3, + }, ["AnyJewel"] = { - ["max"] = 0.3, - ["min"] = 0.3, - }, + ["max"] = 0.3, + ["min"] = 0.3, + }, ["BaseJewel"] = { - ["max"] = 0.3, - ["min"] = 0.3, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_141810208", - ["text"] = "#% of Attack Damage Leeched as Life", - ["type"] = "explicit", - }, - }, + ["max"] = 0.3, + ["min"] = 0.3, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_141810208", + ["text"] = "#% of Attack Damage Leeched as Life", + ["type"] = "explicit", + }, + }, ["1666_PhysicalDamageLifeLeechPermyriad"] = { ["Amulet"] = { - ["max"] = 0.5, - ["min"] = 0.3, - }, + ["max"] = 0.5, + ["min"] = 0.3, + }, ["Ring"] = { - ["max"] = 0.2, - ["min"] = 0.2, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3764265320", - ["text"] = "#% of Physical Damage Leeched as Life", - ["type"] = "explicit", - }, - }, + ["max"] = 0.2, + ["min"] = 0.2, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3764265320", + ["text"] = "#% of Physical Damage Leeched as Life", + ["type"] = "explicit", + }, + }, ["1667_EnemyPhysicalDamageLifeLeechPermyriad"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_3423022686", - ["text"] = "#% of Physical Damage Leeched by Enemy as Life", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_3423022686", + ["text"] = "#% of Physical Damage Leeched by Enemy as Life", + ["type"] = "explicit", + }, + }, ["1670_FireDamageLifeLeechPermyriad"] = { ["Amulet"] = { - ["max"] = 0.5, - ["min"] = 0.3, - }, + ["max"] = 0.5, + ["min"] = 0.3, + }, ["Ring"] = { - ["max"] = 0.2, - ["min"] = 0.2, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3848282610", - ["text"] = "#% of Fire Damage Leeched as Life", - ["type"] = "explicit", - }, - }, + ["max"] = 0.2, + ["min"] = 0.2, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3848282610", + ["text"] = "#% of Fire Damage Leeched as Life", + ["type"] = "explicit", + }, + }, ["1670_FireResistanceLeech"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_3848282610", - ["text"] = "#% of Fire Damage Leeched as Life", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_3848282610", + ["text"] = "#% of Fire Damage Leeched as Life", + ["type"] = "explicit", + }, + }, ["1671_EnemyFireDamageLifeLeechPermyriad"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_45548764", - ["text"] = "#% of Fire Damage Leeched by Enemy as Life", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_45548764", + ["text"] = "#% of Fire Damage Leeched by Enemy as Life", + ["type"] = "explicit", + }, + }, ["1671_FireResistanceEnemyLeech"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_45548764", - ["text"] = "#% of Fire Damage Leeched by Enemy as Life", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_45548764", + ["text"] = "#% of Fire Damage Leeched by Enemy as Life", + ["type"] = "explicit", + }, + }, ["1675_ColdDamageLifeLeechPermyriad"] = { ["Amulet"] = { - ["max"] = 0.5, - ["min"] = 0.3, - }, + ["max"] = 0.5, + ["min"] = 0.3, + }, ["Ring"] = { - ["max"] = 0.2, - ["min"] = 0.2, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3999401129", - ["text"] = "#% of Cold Damage Leeched as Life", - ["type"] = "explicit", - }, - }, + ["max"] = 0.2, + ["min"] = 0.2, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3999401129", + ["text"] = "#% of Cold Damage Leeched as Life", + ["type"] = "explicit", + }, + }, ["1675_ColdResistanceLeech"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_3999401129", - ["text"] = "#% of Cold Damage Leeched as Life", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_3999401129", + ["text"] = "#% of Cold Damage Leeched as Life", + ["type"] = "explicit", + }, + }, ["1676_ColdResistanceEnemyLeech"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_3271464175", - ["text"] = "#% of Cold Damage Leeched by Enemy as Life", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_3271464175", + ["text"] = "#% of Cold Damage Leeched by Enemy as Life", + ["type"] = "explicit", + }, + }, ["1676_EnemyColdDamageLifeLeechPermyriad"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_3271464175", - ["text"] = "#% of Cold Damage Leeched by Enemy as Life", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_3271464175", + ["text"] = "#% of Cold Damage Leeched by Enemy as Life", + ["type"] = "explicit", + }, + }, ["1679_LightningDamageLifeLeechPermyriad"] = { ["Amulet"] = { - ["max"] = 0.5, - ["min"] = 0.3, - }, + ["max"] = 0.5, + ["min"] = 0.3, + }, ["Ring"] = { - ["max"] = 0.2, - ["min"] = 0.2, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_80079005", - ["text"] = "#% of Lightning Damage Leeched as Life", - ["type"] = "explicit", - }, - }, + ["max"] = 0.2, + ["min"] = 0.2, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_80079005", + ["text"] = "#% of Lightning Damage Leeched as Life", + ["type"] = "explicit", + }, + }, ["1679_LightningResistanceLeech"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_80079005", - ["text"] = "#% of Lightning Damage Leeched as Life", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_80079005", + ["text"] = "#% of Lightning Damage Leeched as Life", + ["type"] = "explicit", + }, + }, ["167_LocalIncreaseSocketedFireGemLevel"] = { ["1HWeapon"] = { - ["max"] = 2, - ["min"] = 1, - }, + ["max"] = 2, + ["min"] = 1, + }, ["2HWeapon"] = { - ["max"] = 2, - ["min"] = 1, - }, + ["max"] = 2, + ["min"] = 1, + }, ["Boots"] = { - ["max"] = 2, - ["min"] = 2, - }, + ["max"] = 2, + ["min"] = 2, + }, ["Dagger"] = { - ["max"] = 2, - ["min"] = 1, - }, + ["max"] = 2, + ["min"] = 1, + }, ["Staff"] = { - ["max"] = 2, - ["min"] = 1, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_339179093", - ["text"] = "+# to Level of Socketed Fire Gems", - ["type"] = "explicit", - }, - }, + ["max"] = 2, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_339179093", + ["text"] = "+# to Level of Socketed Fire Gems", + ["type"] = "explicit", + }, + }, ["167_LocalIncreaseSocketedFireGemLevelMaven"] = { ["Boots"] = { - ["max"] = 2, - ["min"] = 2, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_339179093", - ["text"] = "+# to Level of Socketed Fire Gems", - ["type"] = "explicit", - }, - }, + ["max"] = 2, + ["min"] = 2, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_339179093", + ["text"] = "+# to Level of Socketed Fire Gems", + ["type"] = "explicit", + }, + }, ["1680_EnemyLightningDamageLifeLeechPermyriad"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_3925004212", - ["text"] = "#% of Lightning Damage Leeched by Enemy as Life", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_3925004212", + ["text"] = "#% of Lightning Damage Leeched by Enemy as Life", + ["type"] = "explicit", + }, + }, ["1680_LightningResistanceEnemyLeech"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_3925004212", - ["text"] = "#% of Lightning Damage Leeched by Enemy as Life", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_3925004212", + ["text"] = "#% of Lightning Damage Leeched by Enemy as Life", + ["type"] = "explicit", + }, + }, ["1682_ChaosDamageLifeLeechPermyriad"] = { ["Amulet"] = { - ["max"] = 0.5, - ["min"] = 0.3, - }, + ["max"] = 0.5, + ["min"] = 0.3, + }, ["Ring"] = { - ["max"] = 0.2, - ["min"] = 0.2, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_744082851", - ["text"] = "#% of Chaos Damage Leeched as Life", - ["type"] = "explicit", - }, - }, + ["max"] = 0.2, + ["min"] = 0.2, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_744082851", + ["text"] = "#% of Chaos Damage Leeched as Life", + ["type"] = "explicit", + }, + }, ["1683_EnemyChaosDamageLifeLeechPermyriad"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_334180828", - ["text"] = "#% of Chaos Damage Leeched by Enemy as Life", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_334180828", + ["text"] = "#% of Chaos Damage Leeched by Enemy as Life", + ["type"] = "explicit", + }, + }, ["168_LocalIncreaseSocketedColdGemLevel"] = { ["1HWeapon"] = { - ["max"] = 2, - ["min"] = 1, - }, + ["max"] = 2, + ["min"] = 1, + }, ["2HWeapon"] = { - ["max"] = 2, - ["min"] = 1, - }, + ["max"] = 2, + ["min"] = 1, + }, ["Boots"] = { - ["max"] = 2, - ["min"] = 2, - }, + ["max"] = 2, + ["min"] = 2, + }, ["Dagger"] = { - ["max"] = 2, - ["min"] = 1, - }, + ["max"] = 2, + ["min"] = 1, + }, ["Staff"] = { - ["max"] = 2, - ["min"] = 1, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1645459191", - ["text"] = "+# to Level of Socketed Cold Gems", - ["type"] = "explicit", - }, - }, + ["max"] = 2, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1645459191", + ["text"] = "+# to Level of Socketed Cold Gems", + ["type"] = "explicit", + }, + }, ["168_LocalIncreaseSocketedColdGemLevelMaven"] = { ["Boots"] = { - ["max"] = 2, - ["min"] = 2, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1645459191", - ["text"] = "+# to Level of Socketed Cold Gems", - ["type"] = "explicit", - }, - }, + ["max"] = 2, + ["min"] = 2, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1645459191", + ["text"] = "+# to Level of Socketed Cold Gems", + ["type"] = "explicit", + }, + }, ["1697_ManaLeech"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_3237948413", - ["text"] = "#% of Physical Attack Damage Leeched as Mana", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_3237948413", + ["text"] = "#% of Physical Attack Damage Leeched as Mana", + ["type"] = "explicit", + }, + }, ["1698_EnemyManaLeechPermyriad"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_407390981", - ["text"] = "#% of Physical Attack Damage Leeched by Enemy as Mana", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_407390981", + ["text"] = "#% of Physical Attack Damage Leeched by Enemy as Mana", + ["type"] = "explicit", + }, + }, ["1699_ManaLeechPermyriad"] = { ["Amulet"] = { - ["max"] = 0.8, - ["min"] = 0.2, - }, + ["max"] = 0.8, + ["min"] = 0.2, + }, ["Gloves"] = { - ["max"] = 0.4, - ["min"] = 0.2, - }, + ["max"] = 0.4, + ["min"] = 0.2, + }, ["Quiver"] = { - ["max"] = 1, - ["min"] = 0.2, - }, + ["max"] = 1, + ["min"] = 0.2, + }, ["Ring"] = { - ["max"] = 0.4, - ["min"] = 0.2, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3237948413", - ["text"] = "#% of Physical Attack Damage Leeched as Mana", - ["type"] = "explicit", - }, - }, + ["max"] = 0.4, + ["min"] = 0.2, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3237948413", + ["text"] = "#% of Physical Attack Damage Leeched as Mana", + ["type"] = "explicit", + }, + }, ["1699_ManaLeechPermyriadForJewel"] = { ["AnyJewel"] = { - ["max"] = 0.4, - ["min"] = 0.2, - }, + ["max"] = 0.4, + ["min"] = 0.2, + }, ["BaseJewel"] = { - ["max"] = 0.4, - ["min"] = 0.2, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3237948413", - ["text"] = "#% of Physical Attack Damage Leeched as Mana", - ["type"] = "explicit", - }, - }, + ["max"] = 0.4, + ["min"] = 0.2, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3237948413", + ["text"] = "#% of Physical Attack Damage Leeched as Mana", + ["type"] = "explicit", + }, + }, ["169_LocalIncreaseSocketedLightningGemLevel"] = { ["1HWeapon"] = { - ["max"] = 2, - ["min"] = 1, - }, + ["max"] = 2, + ["min"] = 1, + }, ["2HWeapon"] = { - ["max"] = 2, - ["min"] = 1, - }, + ["max"] = 2, + ["min"] = 1, + }, ["Boots"] = { - ["max"] = 2, - ["min"] = 2, - }, + ["max"] = 2, + ["min"] = 2, + }, ["Dagger"] = { - ["max"] = 2, - ["min"] = 1, - }, + ["max"] = 2, + ["min"] = 1, + }, ["Staff"] = { - ["max"] = 2, - ["min"] = 1, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4043416969", - ["text"] = "+# to Level of Socketed Lightning Gems", - ["type"] = "explicit", - }, - }, + ["max"] = 2, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4043416969", + ["text"] = "+# to Level of Socketed Lightning Gems", + ["type"] = "explicit", + }, + }, ["169_LocalIncreaseSocketedLightningGemLevelMaven"] = { ["Boots"] = { - ["max"] = 2, - ["min"] = 2, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4043416969", - ["text"] = "+# to Level of Socketed Lightning Gems", - ["type"] = "explicit", - }, - }, + ["max"] = 2, + ["min"] = 2, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4043416969", + ["text"] = "+# to Level of Socketed Lightning Gems", + ["type"] = "explicit", + }, + }, ["1701_ManaLeechLocalPermyriad"] = { ["1HAxe"] = { - ["max"] = 3.2, - ["min"] = 2, - }, + ["max"] = 3.2, + ["min"] = 2, + }, ["1HMace"] = { - ["max"] = 3.2, - ["min"] = 2, - }, + ["max"] = 3.2, + ["min"] = 2, + }, ["1HSword"] = { - ["max"] = 3.2, - ["min"] = 2, - }, + ["max"] = 3.2, + ["min"] = 2, + }, ["1HWeapon"] = { - ["max"] = 3.2, - ["min"] = 2, - }, + ["max"] = 3.2, + ["min"] = 2, + }, ["2HAxe"] = { - ["max"] = 3.2, - ["min"] = 2, - }, + ["max"] = 3.2, + ["min"] = 2, + }, ["2HMace"] = { - ["max"] = 3.2, - ["min"] = 2, - }, + ["max"] = 3.2, + ["min"] = 2, + }, ["2HSword"] = { - ["max"] = 3.2, - ["min"] = 2, - }, + ["max"] = 3.2, + ["min"] = 2, + }, ["2HWeapon"] = { - ["max"] = 3.2, - ["min"] = 2, - }, + ["max"] = 3.2, + ["min"] = 2, + }, ["Bow"] = { - ["max"] = 3.2, - ["min"] = 2, - }, + ["max"] = 3.2, + ["min"] = 2, + }, ["Claw"] = { - ["max"] = 3.2, - ["min"] = 2, - }, + ["max"] = 3.2, + ["min"] = 2, + }, ["Dagger"] = { - ["max"] = 3.2, - ["min"] = 2, - }, + ["max"] = 3.2, + ["min"] = 2, + }, ["Staff"] = { - ["max"] = 3.2, - ["min"] = 2, - }, + ["max"] = 3.2, + ["min"] = 2, + }, ["Wand"] = { - ["max"] = 3.2, - ["min"] = 2, - }, - ["sign"] = "", - ["specialCaseData"] = { - ["overrideModLine"] = "#% of Physical Attack Damage Leeched as Mana", - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_669069897", - ["text"] = "#% of Physical Attack Damage Leeched as Mana (Local)", - ["type"] = "explicit", - }, - }, + ["max"] = 3.2, + ["min"] = 2, + }, + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "#% of Physical Attack Damage Leeched as Mana", + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_669069897", + ["text"] = "#% of Physical Attack Damage Leeched as Mana (Local)", + ["type"] = "explicit", + }, + }, ["170_LocalIncreaseSocketedChaosGemLevel"] = { ["1HWeapon"] = { - ["max"] = 2, - ["min"] = 1, - }, + ["max"] = 2, + ["min"] = 1, + }, ["2HWeapon"] = { - ["max"] = 2, - ["min"] = 1, - }, + ["max"] = 2, + ["min"] = 1, + }, ["Boots"] = { - ["max"] = 2, - ["min"] = 2, - }, + ["max"] = 2, + ["min"] = 2, + }, ["Dagger"] = { - ["max"] = 2, - ["min"] = 1, - }, + ["max"] = 2, + ["min"] = 1, + }, ["Staff"] = { - ["max"] = 2, - ["min"] = 1, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2675603254", - ["text"] = "+# to Level of Socketed Chaos Gems", - ["type"] = "explicit", - }, - }, + ["max"] = 2, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2675603254", + ["text"] = "+# to Level of Socketed Chaos Gems", + ["type"] = "explicit", + }, + }, ["170_LocalIncreaseSocketedChaosGemLevelMaven"] = { ["Boots"] = { - ["max"] = 2, - ["min"] = 2, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2675603254", - ["text"] = "+# to Level of Socketed Chaos Gems", - ["type"] = "explicit", - }, - }, + ["max"] = 2, + ["min"] = 2, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2675603254", + ["text"] = "+# to Level of Socketed Chaos Gems", + ["type"] = "explicit", + }, + }, ["1722_EnergyShieldLeechPermyriad"] = { ["Boots"] = { - ["max"] = 0.3, - ["min"] = 0.3, - }, + ["max"] = 0.3, + ["min"] = 0.3, + }, ["Chest"] = { - ["max"] = 0.3, - ["min"] = 0.3, - }, + ["max"] = 0.3, + ["min"] = 0.3, + }, ["Gloves"] = { - ["max"] = 0.3, - ["min"] = 0.3, - }, + ["max"] = 0.3, + ["min"] = 0.3, + }, ["Helmet"] = { - ["max"] = 0.3, - ["min"] = 0.3, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_11106713", - ["text"] = "#% of Spell Damage Leeched as Energy Shield", - ["type"] = "explicit", - }, - }, + ["max"] = 0.3, + ["min"] = 0.3, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_11106713", + ["text"] = "#% of Spell Damage Leeched as Energy Shield", + ["type"] = "explicit", + }, + }, ["1731_MaximumLifeLeechRate"] = { ["Amulet"] = { - ["max"] = 25, - ["min"] = 15, - }, + ["max"] = 25, + ["min"] = 15, + }, ["Gloves"] = { - ["max"] = 20, - ["min"] = 10, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4118987751", - ["text"] = "#% increased Maximum total Life Recovery per second from Leech", - ["type"] = "explicit", - }, - }, + ["max"] = 20, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2916634441", + ["text"] = "#% increased Maximum total Life Recovery per second from Leech", + ["type"] = "explicit", + }, + }, ["1732_MaximumLifeLeechRateOldFix"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_4118987751", - ["text"] = "#% increased Maximum total Life Recovery per second from Leech", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_2916634441", + ["text"] = "#% increased Maximum total Life Recovery per second from Leech", + ["type"] = "explicit", + }, + }, ["1733_DisplaySupportedByManaLeechMaven"] = { ["Gloves"] = { - ["max"] = 30, - ["min"] = 20, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_96977651", - ["text"] = "#% increased Maximum total Mana Recovery per second from Leech", - ["type"] = "explicit", - }, - }, + ["max"] = 30, + ["min"] = 20, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_96977651", + ["text"] = "#% increased Maximum total Mana Recovery per second from Leech", + ["type"] = "explicit", + }, + }, ["1734_MaximumEnergyShieldLeechRate"] = { ["Amulet"] = { - ["max"] = 25, - ["min"] = 15, - }, + ["max"] = 25, + ["min"] = 15, + }, ["Gloves"] = { - ["max"] = 30, - ["min"] = 15, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2013799819", - ["text"] = "#% increased Maximum total Energy Shield Recovery per second from Leech", - ["type"] = "explicit", - }, - }, + ["max"] = 30, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2013799819", + ["text"] = "#% increased Maximum total Energy Shield Recovery per second from Leech", + ["type"] = "explicit", + }, + }, ["1738_LifeGainPerTargetLocal"] = { ["1HAxe"] = { - ["max"] = 30, - ["min"] = 2, - }, + ["max"] = 30, + ["min"] = 2, + }, ["1HMace"] = { - ["max"] = 30, - ["min"] = 2, - }, + ["max"] = 30, + ["min"] = 2, + }, ["1HSword"] = { - ["max"] = 30, - ["min"] = 2, - }, + ["max"] = 30, + ["min"] = 2, + }, ["1HWeapon"] = { - ["max"] = 30, - ["min"] = 2, - }, + ["max"] = 30, + ["min"] = 2, + }, ["2HAxe"] = { - ["max"] = 30, - ["min"] = 2, - }, + ["max"] = 30, + ["min"] = 2, + }, ["2HMace"] = { - ["max"] = 30, - ["min"] = 2, - }, + ["max"] = 30, + ["min"] = 2, + }, ["2HSword"] = { - ["max"] = 30, - ["min"] = 2, - }, + ["max"] = 30, + ["min"] = 2, + }, ["2HWeapon"] = { - ["max"] = 30, - ["min"] = 2, - }, + ["max"] = 30, + ["min"] = 2, + }, ["Bow"] = { - ["max"] = 30, - ["min"] = 2, - }, + ["max"] = 30, + ["min"] = 2, + }, ["Claw"] = { - ["max"] = 30, - ["min"] = 2, - }, + ["max"] = 30, + ["min"] = 2, + }, ["Dagger"] = { - ["max"] = 30, - ["min"] = 2, - }, + ["max"] = 30, + ["min"] = 2, + }, ["Staff"] = { - ["max"] = 30, - ["min"] = 2, - }, + ["max"] = 30, + ["min"] = 2, + }, ["Wand"] = { - ["max"] = 30, - ["min"] = 2, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_821021828", - ["text"] = "Grants # Life per Enemy Hit", - ["type"] = "explicit", - }, - }, + ["max"] = 30, + ["min"] = 2, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_821021828", + ["text"] = "Grants # Life per Enemy Hit", + ["type"] = "explicit", + }, + }, ["1739_LifeGainedOnSpellHit"] = { ["Ring"] = { - ["max"] = 15, - ["min"] = 8, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2018035324", - ["text"] = "Gain # Life per Enemy Hit with Spells", - ["type"] = "explicit", - }, - }, + ["max"] = 15, + ["min"] = 8, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2018035324", + ["text"] = "Gain # Life per Enemy Hit with Spells", + ["type"] = "explicit", + }, + }, ["1740_LifeGainPerTarget"] = { ["Amulet"] = { - ["max"] = 4, - ["min"] = 2, - }, + ["max"] = 4, + ["min"] = 2, + }, ["Gloves"] = { - ["max"] = 2, - ["min"] = 2, - }, + ["max"] = 2, + ["min"] = 2, + }, ["Ring"] = { - ["max"] = 20, - ["min"] = 2, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2797971005", - ["text"] = "Gain # Life per Enemy Hit with Attacks", - ["type"] = "explicit", - }, - }, + ["max"] = 20, + ["min"] = 2, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2797971005", + ["text"] = "Gain # Life per Enemy Hit with Attacks", + ["type"] = "explicit", + }, + }, ["1740_LifeGainPerTargetForJewel"] = { ["AnyJewel"] = { - ["max"] = 3, - ["min"] = 2, - }, + ["max"] = 3, + ["min"] = 2, + }, ["BaseJewel"] = { - ["max"] = 3, - ["min"] = 2, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2797971005", - ["text"] = "Gain # Life per Enemy Hit with Attacks", - ["type"] = "explicit", - }, - }, + ["max"] = 3, + ["min"] = 2, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2797971005", + ["text"] = "Gain # Life per Enemy Hit with Attacks", + ["type"] = "explicit", + }, + }, ["1743_LifeGainOnHitVsIgnitedEnemies"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_120895749", - ["text"] = "Gain # Life for each Ignited Enemy hit with Attacks", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_120895749", + ["text"] = "Gain # Life for each Ignited Enemy hit with Attacks", + ["type"] = "explicit", + }, + }, ["1744_IncreasedManaAndOnHit"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_820939409", - ["text"] = "Gain # Mana per Enemy Hit with Attacks", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_820939409", + ["text"] = "Gain # Mana per Enemy Hit with Attacks", + ["type"] = "explicit", + }, + }, ["1744_ManaGainPerTarget"] = { ["Gloves"] = { - ["max"] = 5, - ["min"] = 2, - }, + ["max"] = 5, + ["min"] = 2, + }, ["Quiver"] = { - ["max"] = 5, - ["min"] = 2, - }, + ["max"] = 5, + ["min"] = 2, + }, ["Ring"] = { - ["max"] = 3, - ["min"] = 2, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_820939409", - ["text"] = "Gain # Mana per Enemy Hit with Attacks", - ["type"] = "explicit", - }, - }, + ["max"] = 3, + ["min"] = 2, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_820939409", + ["text"] = "Gain # Mana per Enemy Hit with Attacks", + ["type"] = "explicit", + }, + }, ["1744_ManaGainPerTargetForJewel"] = { ["AnyJewel"] = { - ["max"] = 2, - ["min"] = 1, - }, + ["max"] = 2, + ["min"] = 1, + }, ["BaseJewel"] = { - ["max"] = 2, - ["min"] = 1, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_820939409", - ["text"] = "Gain # Mana per Enemy Hit with Attacks", - ["type"] = "explicit", - }, - }, + ["max"] = 2, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_820939409", + ["text"] = "Gain # Mana per Enemy Hit with Attacks", + ["type"] = "explicit", + }, + }, ["1744_ManaGainPerTargetMaven"] = { ["Gloves"] = { - ["max"] = 5, - ["min"] = 3, - }, + ["max"] = 5, + ["min"] = 3, + }, ["Quiver"] = { - ["max"] = 5, - ["min"] = 3, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_820939409", - ["text"] = "Gain # Mana per Enemy Hit with Attacks", - ["type"] = "explicit", - }, - }, + ["max"] = 5, + ["min"] = 3, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_820939409", + ["text"] = "Gain # Mana per Enemy Hit with Attacks", + ["type"] = "explicit", + }, + }, ["1747_EnergyShieldGainPerTargetForJewel"] = { ["AnyJewel"] = { - ["max"] = 3, - ["min"] = 2, - }, + ["max"] = 3, + ["min"] = 2, + }, ["BaseJewel"] = { - ["max"] = 3, - ["min"] = 2, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_211381198", - ["text"] = "Gain # Energy Shield per Enemy Hit with Attacks", - ["type"] = "explicit", - }, - }, + ["max"] = 3, + ["min"] = 2, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_211381198", + ["text"] = "Gain # Energy Shield per Enemy Hit with Attacks", + ["type"] = "explicit", + }, + }, ["1748_LifeGainedFromEnemyDeath"] = { ["1HAxe"] = { - ["max"] = 110, - ["min"] = 7, - }, + ["max"] = 110, + ["min"] = 7, + }, ["1HMace"] = { - ["max"] = 110, - ["min"] = 7, - }, + ["max"] = 110, + ["min"] = 7, + }, ["1HSword"] = { - ["max"] = 110, - ["min"] = 7, - }, + ["max"] = 110, + ["min"] = 7, + }, ["1HWeapon"] = { - ["max"] = 110, - ["min"] = 7, - }, + ["max"] = 110, + ["min"] = 7, + }, ["2HAxe"] = { - ["max"] = 110, - ["min"] = 7, - }, + ["max"] = 110, + ["min"] = 7, + }, ["2HMace"] = { - ["max"] = 110, - ["min"] = 7, - }, + ["max"] = 110, + ["min"] = 7, + }, ["2HSword"] = { - ["max"] = 110, - ["min"] = 7, - }, + ["max"] = 110, + ["min"] = 7, + }, ["2HWeapon"] = { - ["max"] = 110, - ["min"] = 7, - }, + ["max"] = 110, + ["min"] = 7, + }, ["Amulet"] = { - ["max"] = 110, - ["min"] = 7, - }, + ["max"] = 110, + ["min"] = 7, + }, ["Bow"] = { - ["max"] = 110, - ["min"] = 7, - }, + ["max"] = 110, + ["min"] = 7, + }, ["Claw"] = { - ["max"] = 110, - ["min"] = 7, - }, + ["max"] = 110, + ["min"] = 7, + }, ["Dagger"] = { - ["max"] = 110, - ["min"] = 7, - }, + ["max"] = 110, + ["min"] = 7, + }, ["Gloves"] = { - ["max"] = 110, - ["min"] = 7, - }, + ["max"] = 110, + ["min"] = 7, + }, ["Quiver"] = { - ["max"] = 110, - ["min"] = 7, - }, + ["max"] = 110, + ["min"] = 7, + }, ["Ring"] = { - ["max"] = 110, - ["min"] = 7, - }, + ["max"] = 110, + ["min"] = 7, + }, ["Staff"] = { - ["max"] = 110, - ["min"] = 7, - }, + ["max"] = 110, + ["min"] = 7, + }, ["Wand"] = { - ["max"] = 110, - ["min"] = 7, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3695891184", - ["text"] = "Gain # Life per Enemy Killed", - ["type"] = "explicit", - }, - }, + ["max"] = 110, + ["min"] = 7, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3695891184", + ["text"] = "Gain # Life per Enemy Killed", + ["type"] = "explicit", + }, + }, ["1749_MaximumLifeOnKillPercent"] = { ["Chest"] = { - ["max"] = 6, - ["min"] = 3, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2023107756", - ["text"] = "Recover #% of Life on Kill", - ["type"] = "explicit", - }, - }, + ["max"] = 6, + ["min"] = 3, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2023107756", + ["text"] = "Recover #% of Life on Kill", + ["type"] = "explicit", + }, + }, ["1749_MaximumLifeOnKillPercentMaven"] = { ["Chest"] = { - ["max"] = 6, - ["min"] = 5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2023107756", - ["text"] = "Recover #% of Life on Kill", - ["type"] = "explicit", - }, - }, + ["max"] = 6, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2023107756", + ["text"] = "Recover #% of Life on Kill", + ["type"] = "explicit", + }, + }, ["174_LocalIncreaseSocketedSpellGemLevel"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_446733281", - ["text"] = "+# to Level of Socketed Spell Gems", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_446733281", + ["text"] = "+# to Level of Socketed Spell Gems", + ["type"] = "explicit", + }, + }, ["1750_MaximumEnergyShieldOnKillPercent"] = { ["Chest"] = { - ["max"] = 6, - ["min"] = 3, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2406605753", - ["text"] = "Recover #% of Energy Shield on Kill", - ["type"] = "explicit", - }, - }, + ["max"] = 6, + ["min"] = 3, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2406605753", + ["text"] = "Recover #% of Energy Shield on Kill", + ["type"] = "explicit", + }, + }, ["1750_MaximumEnergyShieldOnKillPercentMaven"] = { ["Chest"] = { - ["max"] = 6, - ["min"] = 5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2406605753", - ["text"] = "Recover #% of Energy Shield on Kill", - ["type"] = "explicit", - }, - }, + ["max"] = 6, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2406605753", + ["text"] = "Recover #% of Energy Shield on Kill", + ["type"] = "explicit", + }, + }, ["1751_MaximumManaOnKillPercent"] = { ["Chest"] = { - ["max"] = 6, - ["min"] = 3, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1030153674", - ["text"] = "Recover #% of Mana on Kill", - ["type"] = "explicit", - }, - }, + ["max"] = 6, + ["min"] = 3, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1030153674", + ["text"] = "Recover #% of Mana on Kill", + ["type"] = "explicit", + }, + }, ["1751_MaximumManaOnKillPercentMaven"] = { ["Chest"] = { - ["max"] = 6, - ["min"] = 5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1030153674", - ["text"] = "Recover #% of Mana on Kill", - ["type"] = "explicit", - }, - }, + ["max"] = 6, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1030153674", + ["text"] = "Recover #% of Mana on Kill", + ["type"] = "explicit", + }, + }, ["1757_GainLifeOnBlock"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_762600725", - ["text"] = "# Life gained when you Block", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_762600725", + ["text"] = "# Life gained when you Block", + ["type"] = "explicit", + }, + }, ["1758_GainManaOnBlock"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_2122183138", - ["text"] = "# Mana gained when you Block", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_2122183138", + ["text"] = "# Mana gained when you Block", + ["type"] = "explicit", + }, + }, ["1763_ManaGainedFromEnemyDeath"] = { ["1HAxe"] = { - ["max"] = 50, - ["min"] = 4, - }, + ["max"] = 50, + ["min"] = 4, + }, ["1HMace"] = { - ["max"] = 50, - ["min"] = 4, - }, + ["max"] = 50, + ["min"] = 4, + }, ["1HSword"] = { - ["max"] = 50, - ["min"] = 4, - }, + ["max"] = 50, + ["min"] = 4, + }, ["1HWeapon"] = { - ["max"] = 50, - ["min"] = 4, - }, + ["max"] = 50, + ["min"] = 4, + }, ["2HAxe"] = { - ["max"] = 50, - ["min"] = 4, - }, + ["max"] = 50, + ["min"] = 4, + }, ["2HMace"] = { - ["max"] = 50, - ["min"] = 4, - }, + ["max"] = 50, + ["min"] = 4, + }, ["2HSword"] = { - ["max"] = 50, - ["min"] = 4, - }, + ["max"] = 50, + ["min"] = 4, + }, ["2HWeapon"] = { - ["max"] = 50, - ["min"] = 4, - }, + ["max"] = 50, + ["min"] = 4, + }, ["Amulet"] = { - ["max"] = 50, - ["min"] = 4, - }, + ["max"] = 50, + ["min"] = 4, + }, ["Bow"] = { - ["max"] = 50, - ["min"] = 4, - }, + ["max"] = 50, + ["min"] = 4, + }, ["Claw"] = { - ["max"] = 50, - ["min"] = 4, - }, + ["max"] = 50, + ["min"] = 4, + }, ["Dagger"] = { - ["max"] = 50, - ["min"] = 4, - }, + ["max"] = 50, + ["min"] = 4, + }, ["Gloves"] = { - ["max"] = 50, - ["min"] = 4, - }, + ["max"] = 50, + ["min"] = 4, + }, ["Quiver"] = { - ["max"] = 50, - ["min"] = 4, - }, + ["max"] = 50, + ["min"] = 4, + }, ["Ring"] = { - ["max"] = 50, - ["min"] = 4, - }, + ["max"] = 50, + ["min"] = 4, + }, ["Staff"] = { - ["max"] = 50, - ["min"] = 4, - }, + ["max"] = 50, + ["min"] = 4, + }, ["Wand"] = { - ["max"] = 50, - ["min"] = 4, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1368271171", - ["text"] = "Gain # Mana per Enemy Killed", - ["type"] = "explicit", - }, - }, + ["max"] = 50, + ["min"] = 4, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1368271171", + ["text"] = "Gain # Mana per Enemy Killed", + ["type"] = "explicit", + }, + }, ["1766_MaximumMinionCountAndMinionLife"] = { ["Helmet"] = { - ["max"] = 10, - ["min"] = 8, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_770672621", - ["text"] = "Minions have #% increased maximum Life", - ["type"] = "explicit", - }, - }, + ["max"] = 10, + ["min"] = 8, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_770672621", + ["text"] = "Minions have #% increased maximum Life", + ["type"] = "explicit", + }, + }, ["1766_MinionDamageAndMinionMaximumLife"] = { ["1HAxe"] = { - ["max"] = 59, - ["min"] = 16, - }, + ["max"] = 59, + ["min"] = 16, + }, ["1HMace"] = { - ["max"] = 59, - ["min"] = 16, - }, + ["max"] = 59, + ["min"] = 16, + }, ["1HSword"] = { - ["max"] = 59, - ["min"] = 16, - }, + ["max"] = 59, + ["min"] = 16, + }, ["1HWeapon"] = { - ["max"] = 59, - ["min"] = 16, - }, + ["max"] = 59, + ["min"] = 16, + }, ["2HAxe"] = { - ["max"] = 59, - ["min"] = 26, - }, + ["max"] = 59, + ["min"] = 26, + }, ["2HMace"] = { - ["max"] = 59, - ["min"] = 26, - }, + ["max"] = 59, + ["min"] = 26, + }, ["2HSword"] = { - ["max"] = 59, - ["min"] = 26, - }, + ["max"] = 59, + ["min"] = 26, + }, ["2HWeapon"] = { - ["max"] = 59, - ["min"] = 26, - }, + ["max"] = 59, + ["min"] = 26, + }, ["Bow"] = { - ["max"] = 59, - ["min"] = 26, - }, + ["max"] = 59, + ["min"] = 26, + }, ["Claw"] = { - ["max"] = 59, - ["min"] = 16, - }, + ["max"] = 59, + ["min"] = 16, + }, ["Dagger"] = { - ["max"] = 59, - ["min"] = 16, - }, + ["max"] = 59, + ["min"] = 16, + }, ["Staff"] = { - ["max"] = 59, - ["min"] = 26, - }, + ["max"] = 59, + ["min"] = 26, + }, ["Wand"] = { - ["max"] = 59, - ["min"] = 16, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_770672621", - ["text"] = "Minions have #% increased maximum Life", - ["type"] = "explicit", - }, - }, + ["max"] = 59, + ["min"] = 16, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_770672621", + ["text"] = "Minions have #% increased maximum Life", + ["type"] = "explicit", + }, + }, ["1766_MinionLife"] = { ["Belt"] = { - ["max"] = 30, - ["min"] = 13, - }, + ["max"] = 30, + ["min"] = 13, + }, ["Boots"] = { - ["max"] = 30, - ["min"] = 13, - }, + ["max"] = 30, + ["min"] = 13, + }, ["Chest"] = { - ["max"] = 30, - ["min"] = 13, - }, + ["max"] = 30, + ["min"] = 13, + }, ["Helmet"] = { - ["max"] = 35, - ["min"] = 21, - }, + ["max"] = 35, + ["min"] = 21, + }, ["Ring"] = { - ["max"] = 32, - ["min"] = 11, - }, + ["max"] = 32, + ["min"] = 11, + }, ["Shield"] = { - ["max"] = 40, - ["min"] = 11, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_770672621", - ["text"] = "Minions have #% increased maximum Life", - ["type"] = "explicit", - }, - }, + ["max"] = 40, + ["min"] = 11, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_770672621", + ["text"] = "Minions have #% increased maximum Life", + ["type"] = "explicit", + }, + }, ["1766_MinionLifeForJewel"] = { ["AbyssJewel"] = { - ["max"] = 12, - ["min"] = 8, - }, + ["max"] = 12, + ["min"] = 8, + }, ["AnyJewel"] = { - ["max"] = 12, - ["min"] = 8, - }, + ["max"] = 12, + ["min"] = 8, + }, ["BaseJewel"] = { - ["max"] = 12, - ["min"] = 8, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_770672621", - ["text"] = "Minions have #% increased maximum Life", - ["type"] = "explicit", - }, - }, + ["max"] = 12, + ["min"] = 8, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_770672621", + ["text"] = "Minions have #% increased maximum Life", + ["type"] = "explicit", + }, + }, ["1766_MinionLifeMaven"] = { ["Helmet"] = { - ["max"] = 40, - ["min"] = 36, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_770672621", - ["text"] = "Minions have #% increased maximum Life", - ["type"] = "explicit", - }, - }, + ["max"] = 40, + ["min"] = 36, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_770672621", + ["text"] = "Minions have #% increased maximum Life", + ["type"] = "explicit", + }, + }, ["1766_MinionLifeSupported"] = { ["Helmet"] = { - ["max"] = 25, - ["min"] = 15, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_770672621", - ["text"] = "Minions have #% increased maximum Life", - ["type"] = "explicit", - }, - }, + ["max"] = 25, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_770672621", + ["text"] = "Minions have #% increased maximum Life", + ["type"] = "explicit", + }, + }, ["1769_MinionMovementSpeed"] = { ["AbyssJewel"] = { - ["max"] = 10, - ["min"] = 6, - }, + ["max"] = 10, + ["min"] = 6, + }, ["AnyJewel"] = { - ["max"] = 10, - ["min"] = 6, - }, + ["max"] = 10, + ["min"] = 6, + }, ["Ring"] = { - ["max"] = 30, - ["min"] = 6, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_174664100", - ["text"] = "Minions have #% increased Movement Speed", - ["type"] = "explicit", - }, - }, + ["max"] = 30, + ["min"] = 6, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_174664100", + ["text"] = "Minions have #% increased Movement Speed", + ["type"] = "explicit", + }, + }, ["1769_MinionRunSpeed"] = { ["Amulet"] = { - ["max"] = 30, - ["min"] = 13, - }, + ["max"] = 30, + ["min"] = 13, + }, ["Quiver"] = { - ["max"] = 30, - ["min"] = 13, - }, + ["max"] = 30, + ["min"] = 13, + }, ["Ring"] = { - ["max"] = 30, - ["min"] = 13, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_174664100", - ["text"] = "Minions have #% increased Movement Speed", - ["type"] = "explicit", - }, - }, + ["max"] = 30, + ["min"] = 13, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_174664100", + ["text"] = "Minions have #% increased Movement Speed", + ["type"] = "explicit", + }, + }, ["176_SkillAreaOfEffectPercentAndAreaOfEffectGemLevel"] = { ["Helmet"] = { - ["max"] = 2, - ["min"] = 1, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2551600084", - ["text"] = "+# to Level of Socketed AoE Gems", - ["type"] = "explicit", - }, - }, + ["max"] = 2, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2551600084", + ["text"] = "+# to Level of Socketed AoE Gems", + ["type"] = "explicit", + }, + }, ["1774_TotemLifeForJewel"] = { ["AnyJewel"] = { - ["max"] = 12, - ["min"] = 8, - }, + ["max"] = 12, + ["min"] = 8, + }, ["BaseJewel"] = { - ["max"] = 12, - ["min"] = 8, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_686254215", - ["text"] = "#% increased Totem Life", - ["type"] = "explicit", - }, - }, + ["max"] = 12, + ["min"] = 8, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_686254215", + ["text"] = "#% increased Totem Life", + ["type"] = "explicit", + }, + }, ["177_ProjectilePierceAndProjectileGemLevel"] = { ["Helmet"] = { - ["max"] = 2, - ["min"] = 1, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2176571093", - ["text"] = "+# to Level of Socketed Projectile Gems", - ["type"] = "explicit", - }, - }, + ["max"] = 2, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2176571093", + ["text"] = "+# to Level of Socketed Projectile Gems", + ["type"] = "explicit", + }, + }, ["1781_CurseEffectReduceCurseDuration"] = { - ["inverseKey"] = "reduced", + ["inverseKey"] = "reduced", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_3824372849", - ["text"] = "#% increased Curse Duration", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_3824372849", + ["text"] = "#% increased Curse Duration", + ["type"] = "explicit", + }, + }, ["178_LocalIncreaseSocketedBowGemLevel"] = { ["2HWeapon"] = { - ["max"] = 2, - ["min"] = 1, - }, + ["max"] = 2, + ["min"] = 1, + }, ["Bow"] = { - ["max"] = 2, - ["min"] = 1, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2027269580", - ["text"] = "+# to Level of Socketed Bow Gems", - ["type"] = "explicit", - }, - }, + ["max"] = 2, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2027269580", + ["text"] = "+# to Level of Socketed Bow Gems", + ["type"] = "explicit", + }, + }, ["1790_AdditionalPierce"] = { ["1HWeapon"] = { - ["max"] = 2, - ["min"] = 1, - }, + ["max"] = 2, + ["min"] = 1, + }, ["2HWeapon"] = { - ["max"] = 2, - ["min"] = 1, - }, + ["max"] = 2, + ["min"] = 1, + }, ["Amulet"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Boots"] = { - ["max"] = 5, - ["min"] = 1, - }, + ["max"] = 5, + ["min"] = 1, + }, ["Bow"] = { - ["max"] = 2, - ["min"] = 1, - }, + ["max"] = 2, + ["min"] = 1, + }, ["Quiver"] = { - ["max"] = 2, - ["min"] = 1, - }, + ["max"] = 2, + ["min"] = 1, + }, ["Wand"] = { - ["max"] = 2, - ["min"] = 1, - }, - ["sign"] = "", - ["specialCaseData"] = { - ["overrideModLineSingular"] = "Projectiles Pierce an additional Target", - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2067062068", - ["text"] = "Projectiles Pierce # additional Targets", - ["type"] = "explicit", - }, - }, + ["max"] = 2, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLineSingular"] = "Projectiles Pierce an additional Target", + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2067062068", + ["text"] = "Projectiles Pierce # additional Targets", + ["type"] = "explicit", + }, + }, ["1790_LocalIncreasedPhysicalDamagePercentAndPierce"] = { ["1HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["2HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Bow"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Wand"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["sign"] = "", - ["specialCaseData"] = { - ["overrideModLineSingular"] = "Projectiles Pierce an additional Target", - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2067062068", - ["text"] = "Projectiles Pierce # additional Targets", - ["type"] = "explicit", - }, - }, + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLineSingular"] = "Projectiles Pierce an additional Target", + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2067062068", + ["text"] = "Projectiles Pierce # additional Targets", + ["type"] = "explicit", + }, + }, ["1790_ProjectilePierceAndProjectileGemLevel"] = { ["Helmet"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["sign"] = "", - ["specialCaseData"] = { - ["overrideModLineSingular"] = "Projectiles Pierce an additional Target", - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2067062068", - ["text"] = "Projectiles Pierce # additional Targets", - ["type"] = "explicit", - }, - }, + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLineSingular"] = "Projectiles Pierce an additional Target", + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2067062068", + ["text"] = "Projectiles Pierce # additional Targets", + ["type"] = "explicit", + }, + }, ["1792_AdditionalProjectiles"] = { ["2HAxe"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["2HSword"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["2HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Bow"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Staff"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_74338099", - ["text"] = "Skills fire an additional Projectile", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_74338099", + ["text"] = "Skills fire an additional Projectile", + ["type"] = "explicit", + }, + }, ["1794_AdditionalArrows"] = { ["2HWeapon"] = { - ["max"] = 2, - ["min"] = 1, - }, + ["max"] = 2, + ["min"] = 1, + }, ["Bow"] = { - ["max"] = 2, - ["min"] = 1, - }, + ["max"] = 2, + ["min"] = 1, + }, ["Quiver"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["sign"] = "", - ["specialCaseData"] = { - ["overrideModLineSingular"] = "Bow Attacks fire an additional Arrow", - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3885405204", - ["text"] = "Bow Attacks fire # additional Arrows", - ["type"] = "explicit", - }, - }, + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLineSingular"] = "Bow Attacks fire an additional Arrow", + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3885405204", + ["text"] = "Bow Attacks fire # additional Arrows", + ["type"] = "explicit", + }, + }, ["1796_IncreasedProjectileSpeedForJewel"] = { ["AnyJewel"] = { - ["max"] = 8, - ["min"] = 6, - }, + ["max"] = 8, + ["min"] = 6, + }, ["BaseJewel"] = { - ["max"] = 8, - ["min"] = 6, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3759663284", - ["text"] = "#% increased Projectile Speed", - ["type"] = "explicit", - }, - }, + ["max"] = 8, + ["min"] = 6, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3759663284", + ["text"] = "#% increased Projectile Speed", + ["type"] = "explicit", + }, + }, ["1796_LocalIncreasedPhysicalDamagePercentAndProjSpeed"] = { ["1HWeapon"] = { - ["max"] = 25, - ["min"] = 20, - }, + ["max"] = 25, + ["min"] = 20, + }, ["2HWeapon"] = { - ["max"] = 25, - ["min"] = 20, - }, + ["max"] = 25, + ["min"] = 20, + }, ["Bow"] = { - ["max"] = 25, - ["min"] = 20, - }, + ["max"] = 25, + ["min"] = 20, + }, ["Wand"] = { - ["max"] = 25, - ["min"] = 20, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3759663284", - ["text"] = "#% increased Projectile Speed", - ["type"] = "explicit", - }, - }, + ["max"] = 25, + ["min"] = 20, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3759663284", + ["text"] = "#% increased Projectile Speed", + ["type"] = "explicit", + }, + }, ["1796_ProjectileDamageAndProjectileSpeed"] = { ["Gloves"] = { - ["max"] = 25, - ["min"] = 10, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3759663284", - ["text"] = "#% increased Projectile Speed", - ["type"] = "explicit", - }, - }, + ["max"] = 25, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3759663284", + ["text"] = "#% increased Projectile Speed", + ["type"] = "explicit", + }, + }, ["1796_ProjectileSpeed"] = { ["1HWeapon"] = { - ["max"] = 52, - ["min"] = 34, - }, + ["max"] = 52, + ["min"] = 34, + }, ["Quiver"] = { - ["max"] = 52, - ["min"] = 10, - }, + ["max"] = 52, + ["min"] = 10, + }, ["Wand"] = { - ["max"] = 52, - ["min"] = 34, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3759663284", - ["text"] = "#% increased Projectile Speed", - ["type"] = "explicit", - }, - }, + ["max"] = 52, + ["min"] = 34, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3759663284", + ["text"] = "#% increased Projectile Speed", + ["type"] = "explicit", + }, + }, ["1796_ProjectileSpeedSupported"] = { ["Gloves"] = { - ["max"] = 30, - ["min"] = 15, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3759663284", - ["text"] = "#% increased Projectile Speed", - ["type"] = "explicit", - }, - }, + ["max"] = 30, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3759663284", + ["text"] = "#% increased Projectile Speed", + ["type"] = "explicit", + }, + }, ["1796_SupportedByVolleySpeed"] = { ["1HWeapon"] = { - ["max"] = 25, - ["min"] = 15, - }, + ["max"] = 25, + ["min"] = 15, + }, ["Wand"] = { - ["max"] = 25, - ["min"] = 15, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3759663284", - ["text"] = "#% increased Projectile Speed", - ["type"] = "explicit", - }, - }, + ["max"] = 25, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3759663284", + ["text"] = "#% increased Projectile Speed", + ["type"] = "explicit", + }, + }, ["1798_MovementVelocity"] = { ["2HAxe"] = { - ["max"] = 10, - ["min"] = 3, - }, + ["max"] = 10, + ["min"] = 3, + }, ["2HMace"] = { - ["max"] = 10, - ["min"] = 3, - }, + ["max"] = 10, + ["min"] = 3, + }, ["2HSword"] = { - ["max"] = 10, - ["min"] = 3, - }, + ["max"] = 10, + ["min"] = 3, + }, ["2HWeapon"] = { - ["max"] = 10, - ["min"] = 3, - }, + ["max"] = 10, + ["min"] = 3, + }, ["Amulet"] = { - ["max"] = 10, - ["min"] = 3, - }, + ["max"] = 10, + ["min"] = 3, + }, ["Boots"] = { - ["max"] = 35, - ["min"] = 10, - }, + ["max"] = 35, + ["min"] = 10, + }, ["Bow"] = { - ["max"] = 10, - ["min"] = 3, - }, + ["max"] = 10, + ["min"] = 3, + }, ["Quiver"] = { - ["max"] = 10, - ["min"] = 3, - }, + ["max"] = 10, + ["min"] = 3, + }, ["Staff"] = { - ["max"] = 10, - ["min"] = 3, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2250533757", - ["text"] = "#% increased Movement Speed", - ["type"] = "explicit", - }, - }, + ["max"] = 10, + ["min"] = 3, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2250533757", + ["text"] = "#% increased Movement Speed", + ["type"] = "explicit", + }, + }, ["1798_MovementVelocityAndCannotBeChilled"] = { ["Boots"] = { - ["max"] = 30, - ["min"] = 13, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2250533757", - ["text"] = "#% increased Movement Speed", - ["type"] = "explicit", - }, - }, + ["max"] = 30, + ["min"] = 13, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2250533757", + ["text"] = "#% increased Movement Speed", + ["type"] = "explicit", + }, + }, ["1798_MovementVelocityAndMovementVelocityIfNotHitRecently"] = { ["Boots"] = { - ["max"] = 30, - ["min"] = 13, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2250533757", - ["text"] = "#% increased Movement Speed", - ["type"] = "explicit", - }, - }, + ["max"] = 30, + ["min"] = 13, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2250533757", + ["text"] = "#% increased Movement Speed", + ["type"] = "explicit", + }, + }, ["1798_MovementVelocityAndOnslaughtOnKill"] = { ["Boots"] = { - ["max"] = 30, - ["min"] = 13, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2250533757", - ["text"] = "#% increased Movement Speed", - ["type"] = "explicit", - }, - }, + ["max"] = 30, + ["min"] = 13, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2250533757", + ["text"] = "#% increased Movement Speed", + ["type"] = "explicit", + }, + }, ["1798_MovementVelocityDodge"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_2250533757", - ["text"] = "#% increased Movement Speed", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_2250533757", + ["text"] = "#% increased Movement Speed", + ["type"] = "explicit", + }, + }, ["1798_MovementVelocitySpeed"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_2250533757", - ["text"] = "#% increased Movement Speed", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_2250533757", + ["text"] = "#% increased Movement Speed", + ["type"] = "explicit", + }, + }, ["1798_MovementVelocitySpellDodge"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_2250533757", - ["text"] = "#% increased Movement Speed", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_2250533757", + ["text"] = "#% increased Movement Speed", + ["type"] = "explicit", + }, + }, ["179_LocalIncreaseSocketedMeleeGemLevel"] = { ["1HAxe"] = { - ["max"] = 2, - ["min"] = 1, - }, + ["max"] = 2, + ["min"] = 1, + }, ["1HMace"] = { - ["max"] = 2, - ["min"] = 1, - }, + ["max"] = 2, + ["min"] = 1, + }, ["1HSword"] = { - ["max"] = 2, - ["min"] = 1, - }, + ["max"] = 2, + ["min"] = 1, + }, ["1HWeapon"] = { - ["max"] = 2, - ["min"] = 1, - }, + ["max"] = 2, + ["min"] = 1, + }, ["2HAxe"] = { - ["max"] = 2, - ["min"] = 1, - }, + ["max"] = 2, + ["min"] = 1, + }, ["2HMace"] = { - ["max"] = 2, - ["min"] = 1, - }, + ["max"] = 2, + ["min"] = 1, + }, ["2HSword"] = { - ["max"] = 2, - ["min"] = 1, - }, + ["max"] = 2, + ["min"] = 1, + }, ["2HWeapon"] = { - ["max"] = 2, - ["min"] = 1, - }, + ["max"] = 2, + ["min"] = 1, + }, ["Bow"] = { - ["max"] = 2, - ["min"] = 1, - }, + ["max"] = 2, + ["min"] = 1, + }, ["Claw"] = { - ["max"] = 2, - ["min"] = 1, - }, + ["max"] = 2, + ["min"] = 1, + }, ["Dagger"] = { - ["max"] = 2, - ["min"] = 1, - }, + ["max"] = 2, + ["min"] = 1, + }, ["Shield"] = { - ["max"] = 2, - ["min"] = 1, - }, + ["max"] = 2, + ["min"] = 1, + }, ["Staff"] = { - ["max"] = 2, - ["min"] = 1, - }, + ["max"] = 2, + ["min"] = 1, + }, ["Wand"] = { - ["max"] = 2, - ["min"] = 1, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_829382474", - ["text"] = "+# to Level of Socketed Melee Gems", - ["type"] = "explicit", - }, - }, + ["max"] = 2, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_829382474", + ["text"] = "+# to Level of Socketed Melee Gems", + ["type"] = "explicit", + }, + }, ["179_MeleeRangeAndMeleeGemLevel"] = { ["Helmet"] = { - ["max"] = 2, - ["min"] = 1, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_829382474", - ["text"] = "+# to Level of Socketed Melee Gems", - ["type"] = "explicit", - }, - }, + ["max"] = 2, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_829382474", + ["text"] = "+# to Level of Socketed Melee Gems", + ["type"] = "explicit", + }, + }, ["1802_FrenzyChargeOnHitChanceMaven"] = { ["Chest"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1541516339", - ["text"] = "#% increased Movement Speed per Frenzy Charge", - ["type"] = "explicit", - }, - }, + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1541516339", + ["text"] = "#% increased Movement Speed per Frenzy Charge", + ["type"] = "explicit", + }, + }, ["1803_MinimumEnduranceCharges"] = { ["Amulet"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Ring"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Shield"] = { - ["max"] = 2, - ["min"] = 1, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3706959521", - ["text"] = "+# to Minimum Endurance Charges", - ["type"] = "explicit", - }, - }, + ["max"] = 2, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3706959521", + ["text"] = "+# to Minimum Endurance Charges", + ["type"] = "explicit", + }, + }, ["1803_MinimumEnduranceChargesAndOnKillChance"] = { ["Amulet"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Ring"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3706959521", - ["text"] = "+# to Minimum Endurance Charges", - ["type"] = "explicit", - }, - }, + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3706959521", + ["text"] = "+# to Minimum Endurance Charges", + ["type"] = "explicit", + }, + }, ["1803_MinimumEnduranceChargesAndOnKillLose"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_3706959521", - ["text"] = "+# to Minimum Endurance Charges", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_3706959521", + ["text"] = "+# to Minimum Endurance Charges", + ["type"] = "explicit", + }, + }, ["1804_MaximumEnduranceCharges"] = { ["2HAxe"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["2HMace"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["2HSword"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["2HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Boots"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Staff"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1515657623", - ["text"] = "+# to Maximum Endurance Charges", - ["type"] = "explicit", - }, - }, + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1515657623", + ["text"] = "+# to Maximum Endurance Charges", + ["type"] = "explicit", + }, + }, ["1804_MaximumEnduranceChargesMaven"] = { ["Boots"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1515657623", - ["text"] = "+# to Maximum Endurance Charges", - ["type"] = "explicit", - }, - }, + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1515657623", + ["text"] = "+# to Maximum Endurance Charges", + ["type"] = "explicit", + }, + }, ["1808_MinimumFrenzyCharges"] = { ["Amulet"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Ring"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Shield"] = { - ["max"] = 2, - ["min"] = 1, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_658456881", - ["text"] = "+# to Minimum Frenzy Charges", - ["type"] = "explicit", - }, - }, + ["max"] = 2, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_658456881", + ["text"] = "+# to Minimum Frenzy Charges", + ["type"] = "explicit", + }, + }, ["1808_MinimumFrenzyChargesAndOnKillChance"] = { ["Amulet"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Ring"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_658456881", - ["text"] = "+# to Minimum Frenzy Charges", - ["type"] = "explicit", - }, - }, + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_658456881", + ["text"] = "+# to Minimum Frenzy Charges", + ["type"] = "explicit", + }, + }, ["1808_MinimumFrenzyChargesAndOnKillLose"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_658456881", - ["text"] = "+# to Minimum Frenzy Charges", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_658456881", + ["text"] = "+# to Minimum Frenzy Charges", + ["type"] = "explicit", + }, + }, ["1809_MaximumFrenzyCharges"] = { ["2HAxe"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["2HSword"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["2HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Bow"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Gloves"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4078695", - ["text"] = "+# to Maximum Frenzy Charges", - ["type"] = "explicit", - }, - }, + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4078695", + ["text"] = "+# to Maximum Frenzy Charges", + ["type"] = "explicit", + }, + }, ["1809_MaximumFrenzyChargesMaven"] = { ["Gloves"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4078695", - ["text"] = "+# to Maximum Frenzy Charges", - ["type"] = "explicit", - }, - }, + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4078695", + ["text"] = "+# to Maximum Frenzy Charges", + ["type"] = "explicit", + }, + }, ["180_LocalIncreaseSocketedMinionGemLevel"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_3604946673", - ["text"] = "+# to Level of Socketed Minion Gems", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_3604946673", + ["text"] = "+# to Level of Socketed Minion Gems", + ["type"] = "explicit", + }, + }, ["1813_MinimumPowerCharges"] = { ["Amulet"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Ring"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Shield"] = { - ["max"] = 2, - ["min"] = 1, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1999711879", - ["text"] = "+# to Minimum Power Charges", - ["type"] = "explicit", - }, - }, + ["max"] = 2, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1999711879", + ["text"] = "+# to Minimum Power Charges", + ["type"] = "explicit", + }, + }, ["1813_MinimumPowerChargesAndOnKillChance"] = { ["Amulet"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Ring"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1999711879", - ["text"] = "+# to Minimum Power Charges", - ["type"] = "explicit", - }, - }, + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1999711879", + ["text"] = "+# to Minimum Power Charges", + ["type"] = "explicit", + }, + }, ["1813_MinimumPowerChargesAndOnKillLose"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1999711879", - ["text"] = "+# to Minimum Power Charges", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1999711879", + ["text"] = "+# to Minimum Power Charges", + ["type"] = "explicit", + }, + }, ["1814_IncreasedMaximumPowerCharges"] = { ["2HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Helmet"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Staff"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_227523295", - ["text"] = "+# to Maximum Power Charges", - ["type"] = "explicit", - }, - }, + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_227523295", + ["text"] = "+# to Maximum Power Charges", + ["type"] = "explicit", + }, + }, ["1814_IncreasedMaximumPowerChargesMaven"] = { ["Helmet"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_227523295", - ["text"] = "+# to Maximum Power Charges", - ["type"] = "explicit", - }, - }, + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_227523295", + ["text"] = "+# to Maximum Power Charges", + ["type"] = "explicit", + }, + }, ["1819_GainEnduranceChargeOnCritUber"] = { ["1HAxe"] = { - ["max"] = 10, - ["min"] = 5, - }, + ["max"] = 10, + ["min"] = 5, + }, ["1HWeapon"] = { - ["max"] = 10, - ["min"] = 5, - }, + ["max"] = 10, + ["min"] = 5, + }, ["2HAxe"] = { - ["max"] = 10, - ["min"] = 5, - }, + ["max"] = 10, + ["min"] = 5, + }, ["2HWeapon"] = { - ["max"] = 10, - ["min"] = 5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2542650946", - ["text"] = "#% chance to gain an Endurance Charge on Critical Strike", - ["type"] = "explicit", - }, - }, + ["max"] = 10, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2542650946", + ["text"] = "#% chance to gain an Endurance Charge on Critical Strike", + ["type"] = "explicit", + }, + }, ["181_LocalIncreaseSocketedAuraLevel"] = { ["Helmet"] = { - ["max"] = 2, - ["min"] = 2, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2452998583", - ["text"] = "+# to Level of Socketed Aura Gems", - ["type"] = "explicit", - }, - }, + ["max"] = 2, + ["min"] = 2, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2452998583", + ["text"] = "+# to Level of Socketed Aura Gems", + ["type"] = "explicit", + }, + }, ["1824_GainPowerChargeOnKillingFrozenEnemy"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_3607154250", - ["text"] = "#% chance to gain a Power Charge on Killing a Frozen Enemy", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_3607154250", + ["text"] = "#% chance to gain a Power Charge on Killing a Frozen Enemy", + ["type"] = "explicit", + }, + }, ["1830_CriticalMultiplierSupportedTwoHanded"] = { ["2HWeapon"] = { - ["max"] = 10, - ["min"] = 5, - }, + ["max"] = 10, + ["min"] = 5, + }, ["Bow"] = { - ["max"] = 10, - ["min"] = 5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3814876985", - ["text"] = "#% chance to gain a Power Charge on Critical Strike", - ["type"] = "explicit", - }, - }, + ["max"] = 10, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3814876985", + ["text"] = "#% chance to gain a Power Charge on Critical Strike", + ["type"] = "explicit", + }, + }, ["1830_CriticalStrikeChanceSpellsTwoHandedPowerCharge"] = { ["2HWeapon"] = { - ["max"] = 10, - ["min"] = 10, - }, + ["max"] = 10, + ["min"] = 10, + }, ["Staff"] = { - ["max"] = 10, - ["min"] = 10, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3814876985", - ["text"] = "#% chance to gain a Power Charge on Critical Strike", - ["type"] = "explicit", - }, - }, + ["max"] = 10, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3814876985", + ["text"] = "#% chance to gain a Power Charge on Critical Strike", + ["type"] = "explicit", + }, + }, ["1830_PowerChargeOnCriticalStrikeChance"] = { ["Chest"] = { - ["max"] = 15, - ["min"] = 15, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3814876985", - ["text"] = "#% chance to gain a Power Charge on Critical Strike", - ["type"] = "explicit", - }, - }, + ["max"] = 15, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3814876985", + ["text"] = "#% chance to gain a Power Charge on Critical Strike", + ["type"] = "explicit", + }, + }, ["1830_PowerChargeOnCriticalStrikeChanceMaven"] = { ["Chest"] = { - ["max"] = 15, - ["min"] = 15, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3814876985", - ["text"] = "#% chance to gain a Power Charge on Critical Strike", - ["type"] = "explicit", - }, - }, + ["max"] = 15, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3814876985", + ["text"] = "#% chance to gain a Power Charge on Critical Strike", + ["type"] = "explicit", + }, + }, ["1833_FrenzyChargeOnHitChance"] = { ["Chest"] = { - ["max"] = 10, - ["min"] = 10, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2323242761", - ["text"] = "#% chance to gain a Frenzy Charge on Hit", - ["type"] = "explicit", - }, - }, + ["max"] = 10, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2323242761", + ["text"] = "#% chance to gain a Frenzy Charge on Hit", + ["type"] = "explicit", + }, + }, ["1833_FrenzyChargeOnHitChanceMaven"] = { ["Chest"] = { - ["max"] = 10, - ["min"] = 10, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2323242761", - ["text"] = "#% chance to gain a Frenzy Charge on Hit", - ["type"] = "explicit", - }, - }, + ["max"] = 10, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2323242761", + ["text"] = "#% chance to gain a Frenzy Charge on Hit", + ["type"] = "explicit", + }, + }, ["1838_CannotBeFrozen"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_876831634", - ["text"] = "Cannot be Frozen", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_876831634", + ["text"] = "Cannot be Frozen", + ["type"] = "explicit", + }, + }, ["1843_AvoidElementalStatusAilments"] = { ["Boots"] = { - ["max"] = 45, - ["min"] = 16, - }, + ["max"] = 45, + ["min"] = 16, + }, ["Shield"] = { - ["max"] = 35, - ["min"] = 16, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3005472710", - ["text"] = "#% chance to Avoid Elemental Ailments", - ["type"] = "explicit", - }, - }, + ["max"] = 35, + ["min"] = 16, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3005472710", + ["text"] = "#% chance to Avoid Elemental Ailments", + ["type"] = "explicit", + }, + }, ["1843_AvoidStunAndElementalStatusAilments"] = { ["Chest"] = { - ["max"] = 35, - ["min"] = 20, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3005472710", - ["text"] = "#% chance to Avoid Elemental Ailments", - ["type"] = "explicit", - }, - }, + ["max"] = 35, + ["min"] = 20, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3005472710", + ["text"] = "#% chance to Avoid Elemental Ailments", + ["type"] = "explicit", + }, + }, ["1844_AvoidChillForJewel"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_3483999943", - ["text"] = "#% chance to Avoid being Chilled", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_3483999943", + ["text"] = "#% chance to Avoid being Chilled", + ["type"] = "explicit", + }, + }, ["1844_AvoidFreezeAndChill"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_3483999943", - ["text"] = "#% chance to Avoid being Chilled", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_3483999943", + ["text"] = "#% chance to Avoid being Chilled", + ["type"] = "explicit", + }, + }, ["1844_MovementVelocityAndCannotBeChilled"] = { ["Boots"] = { - ["max"] = 100, - ["min"] = 100, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3483999943", - ["text"] = "#% chance to Avoid being Chilled", - ["type"] = "explicit", - }, - }, + ["max"] = 100, + ["min"] = 100, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3483999943", + ["text"] = "#% chance to Avoid being Chilled", + ["type"] = "explicit", + }, + }, ["1845_AvoidFreeze"] = { ["Boots"] = { - ["max"] = 100, - ["min"] = 51, - }, + ["max"] = 100, + ["min"] = 51, + }, ["Quiver"] = { - ["max"] = 80, - ["min"] = 51, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1514829491", - ["text"] = "#% chance to Avoid being Frozen", - ["type"] = "explicit", - }, - }, + ["max"] = 80, + ["min"] = 51, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1514829491", + ["text"] = "#% chance to Avoid being Frozen", + ["type"] = "explicit", + }, + }, ["1845_AvoidFreezeAndChill"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1514829491", - ["text"] = "#% chance to Avoid being Frozen", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1514829491", + ["text"] = "#% chance to Avoid being Frozen", + ["type"] = "explicit", + }, + }, ["1845_AvoidFreezeForJewel"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1514829491", - ["text"] = "#% chance to Avoid being Frozen", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1514829491", + ["text"] = "#% chance to Avoid being Frozen", + ["type"] = "explicit", + }, + }, ["1845_ChanceToAvoidFreezeAndChill"] = { ["AbyssJewel"] = { - ["max"] = 50, - ["min"] = 31, - }, + ["max"] = 50, + ["min"] = 31, + }, ["AnyJewel"] = { - ["max"] = 50, - ["min"] = 31, - }, + ["max"] = 50, + ["min"] = 31, + }, ["Belt"] = { - ["max"] = 60, - ["min"] = 39, - }, + ["max"] = 60, + ["min"] = 39, + }, ["Boots"] = { - ["max"] = 60, - ["min"] = 39, - }, + ["max"] = 60, + ["min"] = 39, + }, ["Helmet"] = { - ["max"] = 60, - ["min"] = 39, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1514829491", - ["text"] = "#% chance to Avoid being Frozen", - ["type"] = "explicit", - }, - }, + ["max"] = 60, + ["min"] = 39, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1514829491", + ["text"] = "#% chance to Avoid being Frozen", + ["type"] = "explicit", + }, + }, ["1845_DexterityAndAvoidFreeze"] = { ["Chest"] = { - ["max"] = 25, - ["min"] = 21, - }, + ["max"] = 25, + ["min"] = 21, + }, ["Shield"] = { - ["max"] = 25, - ["min"] = 21, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1514829491", - ["text"] = "#% chance to Avoid being Frozen", - ["type"] = "explicit", - }, - }, + ["max"] = 25, + ["min"] = 21, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1514829491", + ["text"] = "#% chance to Avoid being Frozen", + ["type"] = "explicit", + }, + }, ["1846_AvoidIgnite"] = { ["AbyssJewel"] = { - ["max"] = 50, - ["min"] = 31, - }, + ["max"] = 50, + ["min"] = 31, + }, ["AnyJewel"] = { - ["max"] = 50, - ["min"] = 31, - }, + ["max"] = 50, + ["min"] = 31, + }, ["Belt"] = { - ["max"] = 60, - ["min"] = 43, - }, + ["max"] = 60, + ["min"] = 43, + }, ["Boots"] = { - ["max"] = 80, - ["min"] = 43, - }, + ["max"] = 80, + ["min"] = 43, + }, ["Helmet"] = { - ["max"] = 60, - ["min"] = 43, - }, + ["max"] = 60, + ["min"] = 43, + }, ["Quiver"] = { - ["max"] = 80, - ["min"] = 51, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1783006896", - ["text"] = "#% chance to Avoid being Ignited", - ["type"] = "explicit", - }, - }, + ["max"] = 80, + ["min"] = 51, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1783006896", + ["text"] = "#% chance to Avoid being Ignited", + ["type"] = "explicit", + }, + }, ["1846_AvoidIgniteForJewel"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1783006896", - ["text"] = "#% chance to Avoid being Ignited", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1783006896", + ["text"] = "#% chance to Avoid being Ignited", + ["type"] = "explicit", + }, + }, ["1846_StrengthAndAvoidIgnite"] = { ["Chest"] = { - ["max"] = 25, - ["min"] = 21, - }, + ["max"] = 25, + ["min"] = 21, + }, ["Shield"] = { - ["max"] = 25, - ["min"] = 21, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1783006896", - ["text"] = "#% chance to Avoid being Ignited", - ["type"] = "explicit", - }, - }, + ["max"] = 25, + ["min"] = 21, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1783006896", + ["text"] = "#% chance to Avoid being Ignited", + ["type"] = "explicit", + }, + }, ["1848_AvoidShock"] = { ["Boots"] = { - ["max"] = 80, - ["min"] = 51, - }, + ["max"] = 80, + ["min"] = 51, + }, ["Quiver"] = { - ["max"] = 80, - ["min"] = 51, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1871765599", - ["text"] = "#% chance to Avoid being Shocked", - ["type"] = "explicit", - }, - }, + ["max"] = 80, + ["min"] = 51, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1871765599", + ["text"] = "#% chance to Avoid being Shocked", + ["type"] = "explicit", + }, + }, ["1848_AvoidShockForJewel"] = { ["AbyssJewel"] = { - ["max"] = 50, - ["min"] = 31, - }, + ["max"] = 50, + ["min"] = 31, + }, ["AnyJewel"] = { - ["max"] = 50, - ["min"] = 31, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1871765599", - ["text"] = "#% chance to Avoid being Shocked", - ["type"] = "explicit", - }, - }, + ["max"] = 50, + ["min"] = 31, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1871765599", + ["text"] = "#% chance to Avoid being Shocked", + ["type"] = "explicit", + }, + }, ["1848_IntelligenceAndAvoidShock"] = { ["Chest"] = { - ["max"] = 25, - ["min"] = 21, - }, + ["max"] = 25, + ["min"] = 21, + }, ["Shield"] = { - ["max"] = 25, - ["min"] = 21, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1871765599", - ["text"] = "#% chance to Avoid being Shocked", - ["type"] = "explicit", - }, - }, + ["max"] = 25, + ["min"] = 21, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1871765599", + ["text"] = "#% chance to Avoid being Shocked", + ["type"] = "explicit", + }, + }, ["1848_ReducedShockChance"] = { ["Belt"] = { - ["max"] = 60, - ["min"] = 35, - }, + ["max"] = 60, + ["min"] = 35, + }, ["Boots"] = { - ["max"] = 60, - ["min"] = 35, - }, + ["max"] = 60, + ["min"] = 35, + }, ["Helmet"] = { - ["max"] = 60, - ["min"] = 35, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1871765599", - ["text"] = "#% chance to Avoid being Shocked", - ["type"] = "explicit", - }, - }, + ["max"] = 60, + ["min"] = 35, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1871765599", + ["text"] = "#% chance to Avoid being Shocked", + ["type"] = "explicit", + }, + }, ["1849_AvoidBleedAndPoison"] = { ["Boots"] = { - ["max"] = 70, - ["min"] = 41, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4053951709", - ["text"] = "#% chance to Avoid being Poisoned", - ["type"] = "explicit", - }, - }, + ["max"] = 70, + ["min"] = 41, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4053951709", + ["text"] = "#% chance to Avoid being Poisoned", + ["type"] = "explicit", + }, + }, ["1849_ChanceToAvoidPoison"] = { ["AbyssJewel"] = { - ["max"] = 50, - ["min"] = 31, - }, + ["max"] = 50, + ["min"] = 31, + }, ["AnyJewel"] = { - ["max"] = 50, - ["min"] = 31, - }, + ["max"] = 50, + ["min"] = 31, + }, ["Boots"] = { - ["max"] = 50, - ["min"] = 50, - }, + ["max"] = 50, + ["min"] = 50, + }, ["Chest"] = { - ["max"] = 50, - ["min"] = 50, - }, + ["max"] = 50, + ["min"] = 50, + }, ["Helmet"] = { - ["max"] = 50, - ["min"] = 50, - }, + ["max"] = 50, + ["min"] = 50, + }, ["Shield"] = { - ["max"] = 50, - ["min"] = 50, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4053951709", - ["text"] = "#% chance to Avoid being Poisoned", - ["type"] = "explicit", - }, - }, + ["max"] = 50, + ["min"] = 50, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4053951709", + ["text"] = "#% chance to Avoid being Poisoned", + ["type"] = "explicit", + }, + }, ["1849_MovementVelocitySpellDodge"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_4053951709", - ["text"] = "#% chance to Avoid being Poisoned", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_4053951709", + ["text"] = "#% chance to Avoid being Poisoned", + ["type"] = "explicit", + }, + }, ["184_IncreaseSocketedCurseGemLevel"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_3691695237", - ["text"] = "+# to Level of Socketed Curse Gems", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_3691695237", + ["text"] = "+# to Level of Socketed Curse Gems", + ["type"] = "explicit", + }, + }, ["1851_AvoidStun"] = { ["AbyssJewel"] = { - ["max"] = 30, - ["min"] = 21, - }, + ["max"] = 30, + ["min"] = 21, + }, ["AnyJewel"] = { - ["max"] = 30, - ["min"] = 21, - }, + ["max"] = 30, + ["min"] = 21, + }, ["Boots"] = { - ["max"] = 50, - ["min"] = 23, - }, + ["max"] = 50, + ["min"] = 23, + }, ["Gloves"] = { - ["max"] = 50, - ["min"] = 15, - }, + ["max"] = 50, + ["min"] = 15, + }, ["Helmet"] = { - ["max"] = 44, - ["min"] = 15, - }, + ["max"] = 44, + ["min"] = 15, + }, ["Quiver"] = { - ["max"] = 50, - ["min"] = 31, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4262448838", - ["text"] = "#% chance to Avoid being Stunned", - ["type"] = "explicit", - }, - }, + ["max"] = 50, + ["min"] = 31, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4262448838", + ["text"] = "#% chance to Avoid being Stunned", + ["type"] = "explicit", + }, + }, ["1851_AvoidStunAndElementalStatusAilments"] = { ["Chest"] = { - ["max"] = 35, - ["min"] = 20, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4262448838", - ["text"] = "#% chance to Avoid being Stunned", - ["type"] = "explicit", - }, - }, + ["max"] = 35, + ["min"] = 20, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4262448838", + ["text"] = "#% chance to Avoid being Stunned", + ["type"] = "explicit", + }, + }, ["1851_AvoidStunForJewel"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_4262448838", - ["text"] = "#% chance to Avoid being Stunned", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_4262448838", + ["text"] = "#% chance to Avoid being Stunned", + ["type"] = "explicit", + }, + }, ["1856_ChillingConfluxMaven"] = { ["Helmet"] = { - ["max"] = 30, - ["min"] = 20, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3485067555", - ["text"] = "#% increased Chill Duration on Enemies", - ["type"] = "explicit", - }, - }, + ["max"] = 30, + ["min"] = 20, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3485067555", + ["text"] = "#% increased Chill Duration on Enemies", + ["type"] = "explicit", + }, + }, ["1857_ShockChanceAndDurationForJewel"] = { ["AnyJewel"] = { - ["max"] = 16, - ["min"] = 12, - }, + ["max"] = 16, + ["min"] = 12, + }, ["BaseJewel"] = { - ["max"] = 16, - ["min"] = 12, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3668351662", - ["text"] = "#% increased Shock Duration on Enemies", - ["type"] = "explicit", - }, - }, + ["max"] = 16, + ["min"] = 12, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3668351662", + ["text"] = "#% increased Shock Duration on Enemies", + ["type"] = "explicit", + }, + }, ["1857_ShockDurationForJewel"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_3668351662", - ["text"] = "#% increased Shock Duration on Enemies", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_3668351662", + ["text"] = "#% increased Shock Duration on Enemies", + ["type"] = "explicit", + }, + }, ["1857_ShockingConfluxMaven"] = { ["Helmet"] = { - ["max"] = 30, - ["min"] = 20, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3668351662", - ["text"] = "#% increased Shock Duration on Enemies", - ["type"] = "explicit", - }, - }, + ["max"] = 30, + ["min"] = 20, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3668351662", + ["text"] = "#% increased Shock Duration on Enemies", + ["type"] = "explicit", + }, + }, ["1858_FreezeChanceAndDuration"] = { ["Helmet"] = { - ["max"] = 15, - ["min"] = 8, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1073942215", - ["text"] = "#% increased Freeze Duration on Enemies", - ["type"] = "explicit", - }, - }, + ["max"] = 15, + ["min"] = 8, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1073942215", + ["text"] = "#% increased Freeze Duration on Enemies", + ["type"] = "explicit", + }, + }, ["1858_FreezeChanceAndDurationForJewel"] = { ["AnyJewel"] = { - ["max"] = 16, - ["min"] = 12, - }, + ["max"] = 16, + ["min"] = 12, + }, ["BaseJewel"] = { - ["max"] = 16, - ["min"] = 12, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1073942215", - ["text"] = "#% increased Freeze Duration on Enemies", - ["type"] = "explicit", - }, - }, + ["max"] = 16, + ["min"] = 12, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1073942215", + ["text"] = "#% increased Freeze Duration on Enemies", + ["type"] = "explicit", + }, + }, ["1859_BurnDurationForJewel"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1086147743", - ["text"] = "#% increased Ignite Duration on Enemies", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1086147743", + ["text"] = "#% increased Ignite Duration on Enemies", + ["type"] = "explicit", + }, + }, ["1859_FasterIgniteDamageMaven"] = { ["Boots"] = { - ["max"] = 20, - ["min"] = 10, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1086147743", - ["text"] = "#% increased Ignite Duration on Enemies", - ["type"] = "explicit", - }, - }, + ["max"] = 20, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1086147743", + ["text"] = "#% increased Ignite Duration on Enemies", + ["type"] = "explicit", + }, + }, ["1859_IgniteChanceAndDurationForJewel"] = { ["AnyJewel"] = { - ["max"] = 8, - ["min"] = 6, - }, + ["max"] = 8, + ["min"] = 6, + }, ["BaseJewel"] = { - ["max"] = 8, - ["min"] = 6, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1086147743", - ["text"] = "#% increased Ignite Duration on Enemies", - ["type"] = "explicit", - }, - }, + ["max"] = 8, + ["min"] = 6, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1086147743", + ["text"] = "#% increased Ignite Duration on Enemies", + ["type"] = "explicit", + }, + }, ["1859_IgniteDurationSupported"] = { ["Helmet"] = { - ["max"] = 20, - ["min"] = 8, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1086147743", - ["text"] = "#% increased Ignite Duration on Enemies", - ["type"] = "explicit", - }, - }, + ["max"] = 20, + ["min"] = 8, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1086147743", + ["text"] = "#% increased Ignite Duration on Enemies", + ["type"] = "explicit", + }, + }, ["1859_IgnitingConfluxMaven"] = { ["Helmet"] = { - ["max"] = 30, - ["min"] = 20, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1086147743", - ["text"] = "#% increased Ignite Duration on Enemies", - ["type"] = "explicit", - }, - }, + ["max"] = 30, + ["min"] = 20, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1086147743", + ["text"] = "#% increased Ignite Duration on Enemies", + ["type"] = "explicit", + }, + }, ["1860_IncreasedAilmentDuration"] = { ["Gloves"] = { - ["max"] = 15, - ["min"] = 10, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2419712247", - ["text"] = "#% increased Duration of Ailments on Enemies", - ["type"] = "explicit", - }, - }, + ["max"] = 15, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2419712247", + ["text"] = "#% increased Duration of Ailments on Enemies", + ["type"] = "explicit", + }, + }, ["1860_IncreasedAilmentDurationMaven"] = { ["Gloves"] = { - ["max"] = 15, - ["min"] = 13, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2419712247", - ["text"] = "#% increased Duration of Ailments on Enemies", - ["type"] = "explicit", - }, - }, + ["max"] = 15, + ["min"] = 13, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2419712247", + ["text"] = "#% increased Duration of Ailments on Enemies", + ["type"] = "explicit", + }, + }, ["1863_StunDurationAndThresholdUber"] = { ["1HMace"] = { - ["max"] = 20, - ["min"] = 11, - }, + ["max"] = 20, + ["min"] = 11, + }, ["1HWeapon"] = { - ["max"] = 20, - ["min"] = 11, - }, + ["max"] = 20, + ["min"] = 11, + }, ["2HMace"] = { - ["max"] = 30, - ["min"] = 11, - }, + ["max"] = 30, + ["min"] = 11, + }, ["2HWeapon"] = { - ["max"] = 30, - ["min"] = 11, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2517001139", - ["text"] = "#% increased Stun Duration on Enemies", - ["type"] = "explicit", - }, - }, + ["max"] = 30, + ["min"] = 11, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2517001139", + ["text"] = "#% increased Stun Duration on Enemies", + ["type"] = "explicit", + }, + }, ["1863_StunDurationForJewel"] = { ["AnyJewel"] = { - ["max"] = 14, - ["min"] = 10, - }, + ["max"] = 14, + ["min"] = 10, + }, ["BaseJewel"] = { - ["max"] = 14, - ["min"] = 10, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2517001139", - ["text"] = "#% increased Stun Duration on Enemies", - ["type"] = "explicit", - }, - }, + ["max"] = 14, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2517001139", + ["text"] = "#% increased Stun Duration on Enemies", + ["type"] = "explicit", + }, + }, ["1863_StunDurationIncreasePercent"] = { ["1HAxe"] = { - ["max"] = 35, - ["min"] = 11, - }, + ["max"] = 35, + ["min"] = 11, + }, ["1HMace"] = { - ["max"] = 35, - ["min"] = 11, - }, + ["max"] = 35, + ["min"] = 11, + }, ["1HSword"] = { - ["max"] = 35, - ["min"] = 11, - }, + ["max"] = 35, + ["min"] = 11, + }, ["1HWeapon"] = { - ["max"] = 35, - ["min"] = 11, - }, + ["max"] = 35, + ["min"] = 11, + }, ["2HAxe"] = { - ["max"] = 35, - ["min"] = 11, - }, + ["max"] = 35, + ["min"] = 11, + }, ["2HMace"] = { - ["max"] = 35, - ["min"] = 11, - }, + ["max"] = 35, + ["min"] = 11, + }, ["2HSword"] = { - ["max"] = 35, - ["min"] = 11, - }, + ["max"] = 35, + ["min"] = 11, + }, ["2HWeapon"] = { - ["max"] = 35, - ["min"] = 11, - }, + ["max"] = 35, + ["min"] = 11, + }, ["Belt"] = { - ["max"] = 39, - ["min"] = 11, - }, + ["max"] = 39, + ["min"] = 11, + }, ["Bow"] = { - ["max"] = 35, - ["min"] = 11, - }, + ["max"] = 35, + ["min"] = 11, + }, ["Claw"] = { - ["max"] = 35, - ["min"] = 11, - }, + ["max"] = 35, + ["min"] = 11, + }, ["Dagger"] = { - ["max"] = 35, - ["min"] = 11, - }, + ["max"] = 35, + ["min"] = 11, + }, ["Quiver"] = { - ["max"] = 35, - ["min"] = 11, - }, + ["max"] = 35, + ["min"] = 11, + }, ["Staff"] = { - ["max"] = 35, - ["min"] = 11, - }, + ["max"] = 35, + ["min"] = 11, + }, ["Wand"] = { - ["max"] = 35, - ["min"] = 11, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2517001139", - ["text"] = "#% increased Stun Duration on Enemies", - ["type"] = "explicit", - }, - }, + ["max"] = 35, + ["min"] = 11, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2517001139", + ["text"] = "#% increased Stun Duration on Enemies", + ["type"] = "explicit", + }, + }, ["1867_SelfStatusAilmentDuration"] = { ["Boots"] = { - ["max"] = 30, - ["min"] = 20, - }, + ["max"] = 30, + ["min"] = 20, + }, ["Chest"] = { - ["max"] = 30, - ["min"] = 20, - }, + ["max"] = 30, + ["min"] = 20, + }, ["Gloves"] = { - ["max"] = 30, - ["min"] = 20, - }, + ["max"] = 30, + ["min"] = 20, + }, ["Helmet"] = { - ["max"] = 30, - ["min"] = 20, - }, + ["max"] = 30, + ["min"] = 20, + }, ["Shield"] = { - ["max"] = 30, - ["min"] = 20, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1745952865", - ["text"] = "#% reduced Elemental Ailment Duration on you", - ["type"] = "explicit", - }, - }, + ["max"] = 30, + ["min"] = 20, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1745952865", + ["text"] = "#% reduced Elemental Ailment Duration on you", + ["type"] = "explicit", + }, + }, ["186_LocalIncreaseSocketedTrapGemLevel"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_407139870", - ["text"] = "+# to Level of Socketed Trap Gems", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_407139870", + ["text"] = "+# to Level of Socketed Trap Gems", + ["type"] = "explicit", + }, + }, ["1874_ReducedFreezeDuration"] = { ["Helmet"] = { - ["max"] = 60, - ["min"] = 51, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2160282525", - ["text"] = "#% reduced Freeze Duration on you", - ["type"] = "explicit", - }, - }, + ["max"] = 60, + ["min"] = 51, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2160282525", + ["text"] = "#% reduced Freeze Duration on you", + ["type"] = "explicit", + }, + }, ["1874_ReducedFreezeDurationMaven"] = { ["Helmet"] = { - ["max"] = 60, - ["min"] = 51, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2160282525", - ["text"] = "#% reduced Freeze Duration on you", - ["type"] = "explicit", - }, - }, + ["max"] = 60, + ["min"] = 51, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2160282525", + ["text"] = "#% reduced Freeze Duration on you", + ["type"] = "explicit", + }, + }, ["1875_ReducedBurnDuration"] = { ["Helmet"] = { - ["max"] = 60, - ["min"] = 51, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_986397080", - ["text"] = "#% reduced Ignite Duration on you", - ["type"] = "explicit", - }, - }, + ["max"] = 60, + ["min"] = 51, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_986397080", + ["text"] = "#% reduced Ignite Duration on you", + ["type"] = "explicit", + }, + }, ["1875_ReducedBurnDurationMaven"] = { ["Helmet"] = { - ["max"] = 60, - ["min"] = 51, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_986397080", - ["text"] = "#% reduced Ignite Duration on you", - ["type"] = "explicit", - }, - }, + ["max"] = 60, + ["min"] = 51, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_986397080", + ["text"] = "#% reduced Ignite Duration on you", + ["type"] = "explicit", + }, + }, ["1875_ReducedIgniteDurationOnSelf"] = { ["AnyJewel"] = { - ["max"] = 35, - ["min"] = 30, - }, + ["max"] = 35, + ["min"] = 30, + }, ["BaseJewel"] = { - ["max"] = 35, - ["min"] = 30, - }, + ["max"] = 35, + ["min"] = 30, + }, ["Ring"] = { - ["max"] = 60, - ["min"] = 41, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_986397080", - ["text"] = "#% reduced Ignite Duration on you", - ["type"] = "explicit", - }, - }, + ["max"] = 60, + ["min"] = 41, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_986397080", + ["text"] = "#% reduced Ignite Duration on you", + ["type"] = "explicit", + }, + }, ["1877_BurnDamage"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1175385867", - ["text"] = "#% increased Burning Damage", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1175385867", + ["text"] = "#% increased Burning Damage", + ["type"] = "explicit", + }, + }, ["1877_BurnDamagePrefix"] = { ["1HMace"] = { - ["max"] = 94, - ["min"] = 60, - }, + ["max"] = 94, + ["min"] = 60, + }, ["1HWeapon"] = { - ["max"] = 94, - ["min"] = 60, - }, + ["max"] = 94, + ["min"] = 60, + }, ["2HWeapon"] = { - ["max"] = 134, - ["min"] = 100, - }, + ["max"] = 134, + ["min"] = 100, + }, ["Staff"] = { - ["max"] = 134, - ["min"] = 100, - }, + ["max"] = 134, + ["min"] = 100, + }, ["Wand"] = { - ["max"] = 94, - ["min"] = 60, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1175385867", - ["text"] = "#% increased Burning Damage", - ["type"] = "explicit", - }, - }, + ["max"] = 94, + ["min"] = 60, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1175385867", + ["text"] = "#% increased Burning Damage", + ["type"] = "explicit", + }, + }, ["1877_BurningDamageForJewel"] = { ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 16, - }, + ["max"] = 20, + ["min"] = 16, + }, ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 16, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1175385867", - ["text"] = "#% increased Burning Damage", - ["type"] = "explicit", - }, - }, + ["max"] = 20, + ["min"] = 16, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1175385867", + ["text"] = "#% increased Burning Damage", + ["type"] = "explicit", + }, + }, ["1877_BurningDamageSupported"] = { ["Helmet"] = { - ["max"] = 35, - ["min"] = 20, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1175385867", - ["text"] = "#% increased Burning Damage", - ["type"] = "explicit", - }, - }, + ["max"] = 35, + ["min"] = 20, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1175385867", + ["text"] = "#% increased Burning Damage", + ["type"] = "explicit", + }, + }, ["1877_IgniteChanceAndDamage"] = { ["Helmet"] = { - ["max"] = 20, - ["min"] = 15, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1175385867", - ["text"] = "#% increased Burning Damage", - ["type"] = "explicit", - }, - }, + ["max"] = 20, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1175385867", + ["text"] = "#% increased Burning Damage", + ["type"] = "explicit", + }, + }, ["187_IncreasedSocketedTrapOrMineGemLevel"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_150668988", - ["text"] = "+# to Level of Socketed Trap or Mine Gems", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_150668988", + ["text"] = "+# to Level of Socketed Trap or Mine Gems", + ["type"] = "explicit", + }, + }, ["1880_AreaDamageAndAreaOfEffect"] = { ["Gloves"] = { - ["max"] = 16, - ["min"] = 6, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_280731498", - ["text"] = "#% increased Area of Effect", - ["type"] = "explicit", - }, - }, + ["max"] = 16, + ["min"] = 6, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_280731498", + ["text"] = "#% increased Area of Effect", + ["type"] = "explicit", + }, + }, ["1880_AreaOfEffect"] = { ["2HAxe"] = { - ["max"] = 20, - ["min"] = 5, - }, + ["max"] = 20, + ["min"] = 5, + }, ["2HMace"] = { - ["max"] = 20, - ["min"] = 5, - }, + ["max"] = 20, + ["min"] = 5, + }, ["2HSword"] = { - ["max"] = 20, - ["min"] = 5, - }, + ["max"] = 20, + ["min"] = 5, + }, ["2HWeapon"] = { - ["max"] = 20, - ["min"] = 5, - }, + ["max"] = 20, + ["min"] = 5, + }, ["Amulet"] = { - ["max"] = 15, - ["min"] = 7, - }, + ["max"] = 15, + ["min"] = 7, + }, ["Bow"] = { - ["max"] = 20, - ["min"] = 5, - }, + ["max"] = 20, + ["min"] = 5, + }, ["Chest"] = { - ["max"] = 25, - ["min"] = 25, - }, + ["max"] = 25, + ["min"] = 25, + }, ["Quiver"] = { - ["max"] = 15, - ["min"] = 7, - }, + ["max"] = 15, + ["min"] = 7, + }, ["Ring"] = { - ["max"] = 15, - ["min"] = 7, - }, + ["max"] = 15, + ["min"] = 7, + }, ["Shield"] = { - ["max"] = 15, - ["min"] = 7, - }, + ["max"] = 15, + ["min"] = 7, + }, ["Staff"] = { - ["max"] = 20, - ["min"] = 5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_280731498", - ["text"] = "#% increased Area of Effect", - ["type"] = "explicit", - }, - }, + ["max"] = 20, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_280731498", + ["text"] = "#% increased Area of Effect", + ["type"] = "explicit", + }, + }, ["1880_AreaOfEffectSupported"] = { ["Helmet"] = { - ["max"] = 15, - ["min"] = 7, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_280731498", - ["text"] = "#% increased Area of Effect", - ["type"] = "explicit", - }, - }, + ["max"] = 15, + ["min"] = 7, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_280731498", + ["text"] = "#% increased Area of Effect", + ["type"] = "explicit", + }, + }, ["1880_EnemiesExplodeOnDeathPhysicalChanceMaven"] = { ["Chest"] = { - ["max"] = 12, - ["min"] = 8, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_280731498", - ["text"] = "#% increased Area of Effect", - ["type"] = "explicit", - }, - }, + ["max"] = 12, + ["min"] = 8, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_280731498", + ["text"] = "#% increased Area of Effect", + ["type"] = "explicit", + }, + }, ["1880_EnemiesExplodeOnDeathPhysicalMaven"] = { ["Chest"] = { - ["max"] = 12, - ["min"] = 8, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_280731498", - ["text"] = "#% increased Area of Effect", - ["type"] = "explicit", - }, - }, + ["max"] = 12, + ["min"] = 8, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_280731498", + ["text"] = "#% increased Area of Effect", + ["type"] = "explicit", + }, + }, ["1880_LocalIncreasedPhysicalDamagePercentAndArea"] = { ["1HMace"] = { - ["max"] = 15, - ["min"] = 10, - }, + ["max"] = 15, + ["min"] = 10, + }, ["1HWeapon"] = { - ["max"] = 15, - ["min"] = 10, - }, + ["max"] = 15, + ["min"] = 10, + }, ["2HMace"] = { - ["max"] = 15, - ["min"] = 10, - }, + ["max"] = 15, + ["min"] = 10, + }, ["2HWeapon"] = { - ["max"] = 15, - ["min"] = 10, - }, + ["max"] = 15, + ["min"] = 10, + }, ["Staff"] = { - ["max"] = 15, - ["min"] = 10, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_280731498", - ["text"] = "#% increased Area of Effect", - ["type"] = "explicit", - }, - }, + ["max"] = 15, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_280731498", + ["text"] = "#% increased Area of Effect", + ["type"] = "explicit", + }, + }, ["1880_SkillAreaOfEffectPercentAndAreaOfEffectGemLevel"] = { ["Helmet"] = { - ["max"] = 10, - ["min"] = 8, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_280731498", - ["text"] = "#% increased Area of Effect", - ["type"] = "explicit", - }, - }, + ["max"] = 10, + ["min"] = 8, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_280731498", + ["text"] = "#% increased Area of Effect", + ["type"] = "explicit", + }, + }, ["1880_SupportedBySpellCascadeArea"] = { ["1HMace"] = { - ["max"] = 15, - ["min"] = 5, - }, + ["max"] = 15, + ["min"] = 5, + }, ["1HWeapon"] = { - ["max"] = 15, - ["min"] = 5, - }, + ["max"] = 15, + ["min"] = 5, + }, ["Dagger"] = { - ["max"] = 15, - ["min"] = 5, - }, + ["max"] = 15, + ["min"] = 5, + }, ["Wand"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_280731498", - ["text"] = "#% increased Area of Effect", - ["type"] = "explicit", - }, - }, + ["max"] = 15, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_280731498", + ["text"] = "#% increased Area of Effect", + ["type"] = "explicit", + }, + }, ["1880_SupportedBySpiritStrikeArea"] = { ["1HAxe"] = { - ["max"] = 15, - ["min"] = 5, - }, + ["max"] = 15, + ["min"] = 5, + }, ["1HMace"] = { - ["max"] = 15, - ["min"] = 5, - }, + ["max"] = 15, + ["min"] = 5, + }, ["1HSword"] = { - ["max"] = 15, - ["min"] = 5, - }, + ["max"] = 15, + ["min"] = 5, + }, ["1HWeapon"] = { - ["max"] = 15, - ["min"] = 5, - }, + ["max"] = 15, + ["min"] = 5, + }, ["2HAxe"] = { - ["max"] = 15, - ["min"] = 5, - }, + ["max"] = 15, + ["min"] = 5, + }, ["2HMace"] = { - ["max"] = 15, - ["min"] = 5, - }, + ["max"] = 15, + ["min"] = 5, + }, ["2HSword"] = { - ["max"] = 15, - ["min"] = 5, - }, + ["max"] = 15, + ["min"] = 5, + }, ["2HWeapon"] = { - ["max"] = 15, - ["min"] = 5, - }, + ["max"] = 15, + ["min"] = 5, + }, ["Claw"] = { - ["max"] = 15, - ["min"] = 5, - }, + ["max"] = 15, + ["min"] = 5, + }, ["Dagger"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_280731498", - ["text"] = "#% increased Area of Effect", - ["type"] = "explicit", - }, - }, + ["max"] = 15, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_280731498", + ["text"] = "#% increased Area of Effect", + ["type"] = "explicit", + }, + }, ["1883_ManaAndManaCostPercent"] = { ["Amulet"] = { - ["max"] = 7, - ["min"] = 3, - }, + ["max"] = 7, + ["min"] = 3, + }, ["Ring"] = { - ["max"] = 7, - ["min"] = 3, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_474294393", - ["text"] = "#% reduced Mana Cost of Skills", - ["type"] = "explicit", - }, - }, + ["max"] = 7, + ["min"] = 3, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_474294393", + ["text"] = "#% reduced Mana Cost of Skills", + ["type"] = "explicit", + }, + }, ["1883_ManaCostReduction"] = { ["Ring"] = { - ["max"] = 6, - ["min"] = 4, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_474294393", - ["text"] = "#% reduced Mana Cost of Skills", - ["type"] = "explicit", - }, - }, + ["max"] = 6, + ["min"] = 4, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_474294393", + ["text"] = "#% reduced Mana Cost of Skills", + ["type"] = "explicit", + }, + }, ["1883_ManaCostReductionForJewel"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_474294393", - ["text"] = "#% reduced Mana Cost of Skills", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_474294393", + ["text"] = "#% reduced Mana Cost of Skills", + ["type"] = "explicit", + }, + }, ["1891_IncreaseManaCostFlat"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_3736589033", - ["text"] = "+# to Total Mana Cost of Skills", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_3736589033", + ["text"] = "+# to Total Mana Cost of Skills", + ["type"] = "explicit", + }, + }, ["1891_IncreasedManaAndCost"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_3736589033", - ["text"] = "+# to Total Mana Cost of Skills", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_3736589033", + ["text"] = "+# to Total Mana Cost of Skills", + ["type"] = "explicit", + }, + }, ["1895_SkillEffectDurationSupported"] = { ["Boots"] = { - ["max"] = 15, - ["min"] = 10, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3377888098", - ["text"] = "#% increased Skill Effect Duration", - ["type"] = "explicit", - }, - }, + ["max"] = 15, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3377888098", + ["text"] = "#% increased Skill Effect Duration", + ["type"] = "explicit", + }, + }, ["1896_ChaosDamageAndChaosSkillDuration"] = { ["1HAxe"] = { - ["max"] = 30, - ["min"] = 7, - }, + ["max"] = 30, + ["min"] = 7, + }, ["1HMace"] = { - ["max"] = 30, - ["min"] = 7, - }, + ["max"] = 30, + ["min"] = 7, + }, ["1HSword"] = { - ["max"] = 30, - ["min"] = 7, - }, + ["max"] = 30, + ["min"] = 7, + }, ["1HWeapon"] = { - ["max"] = 30, - ["min"] = 7, - }, + ["max"] = 30, + ["min"] = 7, + }, ["2HAxe"] = { - ["max"] = 30, - ["min"] = 13, - }, + ["max"] = 30, + ["min"] = 13, + }, ["2HMace"] = { - ["max"] = 30, - ["min"] = 13, - }, + ["max"] = 30, + ["min"] = 13, + }, ["2HSword"] = { - ["max"] = 30, - ["min"] = 13, - }, + ["max"] = 30, + ["min"] = 13, + }, ["2HWeapon"] = { - ["max"] = 30, - ["min"] = 13, - }, + ["max"] = 30, + ["min"] = 13, + }, ["Bow"] = { - ["max"] = 30, - ["min"] = 13, - }, + ["max"] = 30, + ["min"] = 13, + }, ["Claw"] = { - ["max"] = 30, - ["min"] = 7, - }, + ["max"] = 30, + ["min"] = 7, + }, ["Dagger"] = { - ["max"] = 30, - ["min"] = 7, - }, + ["max"] = 30, + ["min"] = 7, + }, ["Staff"] = { - ["max"] = 30, - ["min"] = 13, - }, + ["max"] = 30, + ["min"] = 13, + }, ["Wand"] = { - ["max"] = 30, - ["min"] = 7, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_289885185", - ["text"] = "Chaos Skills have #% increased Skill Effect Duration", - ["type"] = "explicit", - }, - }, + ["max"] = 30, + ["min"] = 7, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_289885185", + ["text"] = "Chaos Skills have #% increased Skill Effect Duration", + ["type"] = "explicit", + }, + }, ["1898_AvoidInterruptionWhileCasting"] = { ["AbyssJewel"] = { - ["max"] = 20, - ["min"] = 15, - }, + ["max"] = 20, + ["min"] = 15, + }, ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 15, - }, + ["max"] = 20, + ["min"] = 15, + }, ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 15, - }, + ["max"] = 20, + ["min"] = 15, + }, ["Gloves"] = { - ["max"] = 60, - ["min"] = 15, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1916706958", - ["text"] = "#% chance to Ignore Stuns while Casting", - ["type"] = "explicit", - }, - }, + ["max"] = 60, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1916706958", + ["text"] = "#% chance to Ignore Stuns while Casting", + ["type"] = "explicit", + }, + }, ["1898_IncreasedCastSpeedTwoHandedAvoidInterruption"] = { ["2HWeapon"] = { - ["max"] = 35, - ["min"] = 15, - }, + ["max"] = 35, + ["min"] = 15, + }, ["Staff"] = { - ["max"] = 35, - ["min"] = 15, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1916706958", - ["text"] = "#% chance to Ignore Stuns while Casting", - ["type"] = "explicit", - }, - }, + ["max"] = 35, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1916706958", + ["text"] = "#% chance to Ignore Stuns while Casting", + ["type"] = "explicit", + }, + }, ["189_LocalIncreaseSocketedSupportGemLevel"] = { ["1HAxe"] = { - ["max"] = 2, - ["min"] = 1, - }, + ["max"] = 2, + ["min"] = 1, + }, ["1HMace"] = { - ["max"] = 2, - ["min"] = 1, - }, + ["max"] = 2, + ["min"] = 1, + }, ["1HSword"] = { - ["max"] = 2, - ["min"] = 1, - }, + ["max"] = 2, + ["min"] = 1, + }, ["1HWeapon"] = { - ["max"] = 2, - ["min"] = 1, - }, + ["max"] = 2, + ["min"] = 1, + }, ["2HAxe"] = { - ["max"] = 2, - ["min"] = 1, - }, + ["max"] = 2, + ["min"] = 1, + }, ["2HMace"] = { - ["max"] = 2, - ["min"] = 1, - }, + ["max"] = 2, + ["min"] = 1, + }, ["2HSword"] = { - ["max"] = 2, - ["min"] = 1, - }, + ["max"] = 2, + ["min"] = 1, + }, ["2HWeapon"] = { - ["max"] = 2, - ["min"] = 1, - }, + ["max"] = 2, + ["min"] = 1, + }, ["Bow"] = { - ["max"] = 2, - ["min"] = 1, - }, + ["max"] = 2, + ["min"] = 1, + }, ["Chest"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Claw"] = { - ["max"] = 2, - ["min"] = 1, - }, + ["max"] = 2, + ["min"] = 1, + }, ["Dagger"] = { - ["max"] = 2, - ["min"] = 1, - }, + ["max"] = 2, + ["min"] = 1, + }, ["Shield"] = { - ["max"] = 2, - ["min"] = 1, - }, + ["max"] = 2, + ["min"] = 1, + }, ["Staff"] = { - ["max"] = 2, - ["min"] = 1, - }, + ["max"] = 2, + ["min"] = 1, + }, ["Wand"] = { - ["max"] = 2, - ["min"] = 1, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4154259475", - ["text"] = "+# to Level of Socketed Support Gems", - ["type"] = "explicit", - }, - }, + ["max"] = 2, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4154259475", + ["text"] = "+# to Level of Socketed Support Gems", + ["type"] = "explicit", + }, + }, ["189_LocalIncreaseSocketedSupportGemLevelAndQuality"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_4154259475", - ["text"] = "+# to Level of Socketed Support Gems", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_4154259475", + ["text"] = "+# to Level of Socketed Support Gems", + ["type"] = "explicit", + }, + }, ["189_LocalIncreaseSocketedSupportGemLevelMaven"] = { ["Chest"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4154259475", - ["text"] = "+# to Level of Socketed Support Gems", - ["type"] = "explicit", - }, - }, + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4154259475", + ["text"] = "+# to Level of Socketed Support Gems", + ["type"] = "explicit", + }, + }, ["1902_LocalArmourAndEnergyShieldAndStunRecovery"] = { ["Boots"] = { - ["max"] = 17, - ["min"] = 6, - }, + ["max"] = 17, + ["min"] = 6, + }, ["Chest"] = { - ["max"] = 17, - ["min"] = 6, - }, + ["max"] = 17, + ["min"] = 6, + }, ["Gloves"] = { - ["max"] = 17, - ["min"] = 6, - }, + ["max"] = 17, + ["min"] = 6, + }, ["Helmet"] = { - ["max"] = 17, - ["min"] = 6, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2511217560", - ["text"] = "#% increased Stun and Block Recovery", - ["type"] = "explicit", - }, - }, + ["max"] = 17, + ["min"] = 6, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2511217560", + ["text"] = "#% increased Stun and Block Recovery", + ["type"] = "explicit", + }, + }, ["1902_LocalArmourAndEvasionAndEnergyShieldAndStunRecovery"] = { ["Boots"] = { - ["max"] = 17, - ["min"] = 6, - }, + ["max"] = 17, + ["min"] = 6, + }, ["Chest"] = { - ["max"] = 17, - ["min"] = 6, - }, + ["max"] = 17, + ["min"] = 6, + }, ["Gloves"] = { - ["max"] = 17, - ["min"] = 6, - }, + ["max"] = 17, + ["min"] = 6, + }, ["Helmet"] = { - ["max"] = 17, - ["min"] = 6, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2511217560", - ["text"] = "#% increased Stun and Block Recovery", - ["type"] = "explicit", - }, - }, + ["max"] = 17, + ["min"] = 6, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2511217560", + ["text"] = "#% increased Stun and Block Recovery", + ["type"] = "explicit", + }, + }, ["1902_LocalArmourAndEvasionAndStunRecovery"] = { ["Boots"] = { - ["max"] = 17, - ["min"] = 6, - }, + ["max"] = 17, + ["min"] = 6, + }, ["Chest"] = { - ["max"] = 17, - ["min"] = 6, - }, + ["max"] = 17, + ["min"] = 6, + }, ["Gloves"] = { - ["max"] = 17, - ["min"] = 6, - }, + ["max"] = 17, + ["min"] = 6, + }, ["Helmet"] = { - ["max"] = 17, - ["min"] = 6, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2511217560", - ["text"] = "#% increased Stun and Block Recovery", - ["type"] = "explicit", - }, - }, + ["max"] = 17, + ["min"] = 6, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2511217560", + ["text"] = "#% increased Stun and Block Recovery", + ["type"] = "explicit", + }, + }, ["1902_LocalEnergyShieldAndStunRecoveryPercent"] = { ["Boots"] = { - ["max"] = 17, - ["min"] = 6, - }, + ["max"] = 17, + ["min"] = 6, + }, ["Chest"] = { - ["max"] = 17, - ["min"] = 6, - }, + ["max"] = 17, + ["min"] = 6, + }, ["Gloves"] = { - ["max"] = 17, - ["min"] = 6, - }, + ["max"] = 17, + ["min"] = 6, + }, ["Helmet"] = { - ["max"] = 17, - ["min"] = 6, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2511217560", - ["text"] = "#% increased Stun and Block Recovery", - ["type"] = "explicit", - }, - }, + ["max"] = 17, + ["min"] = 6, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2511217560", + ["text"] = "#% increased Stun and Block Recovery", + ["type"] = "explicit", + }, + }, ["1902_LocalEvasionAndEnergyShieldAndStunRecovery"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_2511217560", - ["text"] = "#% increased Stun and Block Recovery", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_2511217560", + ["text"] = "#% increased Stun and Block Recovery", + ["type"] = "explicit", + }, + }, ["1902_LocalEvasionRatingAndStunRecoveryIncreasePercent"] = { ["Boots"] = { - ["max"] = 17, - ["min"] = 6, - }, + ["max"] = 17, + ["min"] = 6, + }, ["Chest"] = { - ["max"] = 17, - ["min"] = 6, - }, + ["max"] = 17, + ["min"] = 6, + }, ["Gloves"] = { - ["max"] = 17, - ["min"] = 6, - }, + ["max"] = 17, + ["min"] = 6, + }, ["Helmet"] = { - ["max"] = 17, - ["min"] = 6, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2511217560", - ["text"] = "#% increased Stun and Block Recovery", - ["type"] = "explicit", - }, - }, + ["max"] = 17, + ["min"] = 6, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2511217560", + ["text"] = "#% increased Stun and Block Recovery", + ["type"] = "explicit", + }, + }, ["1902_LocalPhysicalDamageReductionRatingAndStunRecoveryPercent"] = { ["Boots"] = { - ["max"] = 17, - ["min"] = 6, - }, + ["max"] = 17, + ["min"] = 6, + }, ["Chest"] = { - ["max"] = 17, - ["min"] = 6, - }, + ["max"] = 17, + ["min"] = 6, + }, ["Gloves"] = { - ["max"] = 17, - ["min"] = 6, - }, + ["max"] = 17, + ["min"] = 6, + }, ["Helmet"] = { - ["max"] = 17, - ["min"] = 6, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2511217560", - ["text"] = "#% increased Stun and Block Recovery", - ["type"] = "explicit", - }, - }, + ["max"] = 17, + ["min"] = 6, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2511217560", + ["text"] = "#% increased Stun and Block Recovery", + ["type"] = "explicit", + }, + }, ["1902_LocalWardAndStunRecoveryPercent"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_2511217560", - ["text"] = "#% increased Stun and Block Recovery", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_2511217560", + ["text"] = "#% increased Stun and Block Recovery", + ["type"] = "explicit", + }, + }, ["1902_StunRecovery"] = { ["Belt"] = { - ["max"] = 28, - ["min"] = 11, - }, + ["max"] = 28, + ["min"] = 11, + }, ["Shield"] = { - ["max"] = 34, - ["min"] = 20, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2511217560", - ["text"] = "#% increased Stun and Block Recovery", - ["type"] = "explicit", - }, - }, + ["max"] = 34, + ["min"] = 20, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2511217560", + ["text"] = "#% increased Stun and Block Recovery", + ["type"] = "explicit", + }, + }, ["1902_StunRecoveryForJewel"] = { ["AnyJewel"] = { - ["max"] = 35, - ["min"] = 25, - }, + ["max"] = 35, + ["min"] = 25, + }, ["BaseJewel"] = { - ["max"] = 35, - ["min"] = 25, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2511217560", - ["text"] = "#% increased Stun and Block Recovery", - ["type"] = "explicit", - }, - }, + ["max"] = 35, + ["min"] = 25, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2511217560", + ["text"] = "#% increased Stun and Block Recovery", + ["type"] = "explicit", + }, + }, ["190_LocalIncreaseSocketedActiveSkillGemLevel"] = { ["Chest"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_524797741", - ["text"] = "+# to Level of Socketed Skill Gems", - ["type"] = "explicit", - }, - }, + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_524797741", + ["text"] = "+# to Level of Socketed Skill Gems", + ["type"] = "explicit", + }, + }, ["190_LocalIncreaseSocketedActiveSkillGemLevelMaven"] = { ["Chest"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_524797741", - ["text"] = "+# to Level of Socketed Skill Gems", - ["type"] = "explicit", - }, - }, + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_524797741", + ["text"] = "+# to Level of Socketed Skill Gems", + ["type"] = "explicit", + }, + }, ["1923_TrapCooldownRecoveryAndDuration"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_2001530951", - ["text"] = "#% increased Trap Duration", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_2001530951", + ["text"] = "#% increased Trap Duration", + ["type"] = "explicit", + }, + }, ["1924_MineDetonationSpeedAndDuration"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_117667746", - ["text"] = "#% increased Mine Duration", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_117667746", + ["text"] = "#% increased Mine Duration", + ["type"] = "explicit", + }, + }, ["1927_TrapSpeedCooldownSupported"] = { ["Gloves"] = { - ["max"] = 20, - ["min"] = 8, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_118398748", - ["text"] = "#% increased Trap Throwing Speed", - ["type"] = "explicit", - }, - }, + ["max"] = 20, + ["min"] = 8, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_118398748", + ["text"] = "#% increased Trap Throwing Speed", + ["type"] = "explicit", + }, + }, ["1927_TrapThrowSpeed"] = { ["Amulet"] = { - ["max"] = 16, - ["min"] = 7, - }, + ["max"] = 16, + ["min"] = 7, + }, ["Belt"] = { - ["max"] = 16, - ["min"] = 7, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_118398748", - ["text"] = "#% increased Trap Throwing Speed", - ["type"] = "explicit", - }, - }, + ["max"] = 16, + ["min"] = 7, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_118398748", + ["text"] = "#% increased Trap Throwing Speed", + ["type"] = "explicit", + }, + }, ["1927_TrapThrowSpeedForJewel"] = { ["AnyJewel"] = { - ["max"] = 8, - ["min"] = 6, - }, + ["max"] = 8, + ["min"] = 6, + }, ["BaseJewel"] = { - ["max"] = 8, - ["min"] = 6, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_118398748", - ["text"] = "#% increased Trap Throwing Speed", - ["type"] = "explicit", - }, - }, + ["max"] = 8, + ["min"] = 6, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_118398748", + ["text"] = "#% increased Trap Throwing Speed", + ["type"] = "explicit", + }, + }, ["1927_TrapThrowSpeedOnWeapon"] = { ["1HAxe"] = { - ["max"] = 15, - ["min"] = 9, - }, + ["max"] = 15, + ["min"] = 9, + }, ["1HMace"] = { - ["max"] = 15, - ["min"] = 9, - }, + ["max"] = 15, + ["min"] = 9, + }, ["1HSword"] = { - ["max"] = 15, - ["min"] = 9, - }, + ["max"] = 15, + ["min"] = 9, + }, ["1HWeapon"] = { - ["max"] = 15, - ["min"] = 9, - }, + ["max"] = 15, + ["min"] = 9, + }, ["2HAxe"] = { - ["max"] = 23, - ["min"] = 17, - }, + ["max"] = 23, + ["min"] = 17, + }, ["2HMace"] = { - ["max"] = 23, - ["min"] = 17, - }, + ["max"] = 23, + ["min"] = 17, + }, ["2HSword"] = { - ["max"] = 23, - ["min"] = 17, - }, + ["max"] = 23, + ["min"] = 17, + }, ["2HWeapon"] = { - ["max"] = 23, - ["min"] = 17, - }, + ["max"] = 23, + ["min"] = 17, + }, ["Bow"] = { - ["max"] = 23, - ["min"] = 17, - }, + ["max"] = 23, + ["min"] = 17, + }, ["Claw"] = { - ["max"] = 15, - ["min"] = 9, - }, + ["max"] = 15, + ["min"] = 9, + }, ["Dagger"] = { - ["max"] = 15, - ["min"] = 9, - }, + ["max"] = 15, + ["min"] = 9, + }, ["Staff"] = { - ["max"] = 23, - ["min"] = 17, - }, + ["max"] = 23, + ["min"] = 17, + }, ["Wand"] = { - ["max"] = 15, - ["min"] = 9, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_118398748", - ["text"] = "#% increased Trap Throwing Speed", - ["type"] = "explicit", - }, - }, + ["max"] = 15, + ["min"] = 9, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_118398748", + ["text"] = "#% increased Trap Throwing Speed", + ["type"] = "explicit", + }, + }, ["1928_MineLaySpeedForJewel"] = { ["AnyJewel"] = { - ["max"] = 8, - ["min"] = 6, - }, + ["max"] = 8, + ["min"] = 6, + }, ["BaseJewel"] = { - ["max"] = 8, - ["min"] = 6, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1896971621", - ["text"] = "#% increased Mine Throwing Speed", - ["type"] = "explicit", - }, - }, + ["max"] = 8, + ["min"] = 6, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1896971621", + ["text"] = "#% increased Mine Throwing Speed", + ["type"] = "explicit", + }, + }, ["1928_MineLayingSpeed"] = { ["Amulet"] = { - ["max"] = 16, - ["min"] = 7, - }, + ["max"] = 16, + ["min"] = 7, + }, ["Helmet"] = { - ["max"] = 16, - ["min"] = 7, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1896971621", - ["text"] = "#% increased Mine Throwing Speed", - ["type"] = "explicit", - }, - }, + ["max"] = 16, + ["min"] = 7, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1896971621", + ["text"] = "#% increased Mine Throwing Speed", + ["type"] = "explicit", + }, + }, ["1928_MineLayingSpeedOnWeapon"] = { ["1HAxe"] = { - ["max"] = 15, - ["min"] = 9, - }, + ["max"] = 15, + ["min"] = 9, + }, ["1HMace"] = { - ["max"] = 15, - ["min"] = 9, - }, + ["max"] = 15, + ["min"] = 9, + }, ["1HSword"] = { - ["max"] = 15, - ["min"] = 9, - }, + ["max"] = 15, + ["min"] = 9, + }, ["1HWeapon"] = { - ["max"] = 15, - ["min"] = 9, - }, + ["max"] = 15, + ["min"] = 9, + }, ["2HAxe"] = { - ["max"] = 23, - ["min"] = 17, - }, + ["max"] = 23, + ["min"] = 17, + }, ["2HMace"] = { - ["max"] = 23, - ["min"] = 17, - }, + ["max"] = 23, + ["min"] = 17, + }, ["2HSword"] = { - ["max"] = 23, - ["min"] = 17, - }, + ["max"] = 23, + ["min"] = 17, + }, ["2HWeapon"] = { - ["max"] = 23, - ["min"] = 17, - }, + ["max"] = 23, + ["min"] = 17, + }, ["Bow"] = { - ["max"] = 23, - ["min"] = 17, - }, + ["max"] = 23, + ["min"] = 17, + }, ["Claw"] = { - ["max"] = 15, - ["min"] = 9, - }, + ["max"] = 15, + ["min"] = 9, + }, ["Dagger"] = { - ["max"] = 15, - ["min"] = 9, - }, + ["max"] = 15, + ["min"] = 9, + }, ["Staff"] = { - ["max"] = 23, - ["min"] = 17, - }, + ["max"] = 23, + ["min"] = 17, + }, ["Wand"] = { - ["max"] = 15, - ["min"] = 9, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1896971621", - ["text"] = "#% increased Mine Throwing Speed", - ["type"] = "explicit", - }, - }, + ["max"] = 15, + ["min"] = 9, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1896971621", + ["text"] = "#% increased Mine Throwing Speed", + ["type"] = "explicit", + }, + }, ["1931_SelfPhysAsExtraFireTaken"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_248982637", - ["text"] = "Hits against you gain #% of Physical Damage as Extra Fire Damage", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_248982637", + ["text"] = "Hits against you gain #% of Physical Damage as Extra Fire Damage", + ["type"] = "explicit", + }, + }, ["1932_ConvertPhysicalToFireMaven"] = { ["Gloves"] = { - ["max"] = 5, - ["min"] = 3, - }, + ["max"] = 5, + ["min"] = 3, + }, ["Quiver"] = { - ["max"] = 5, - ["min"] = 3, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_369494213", - ["text"] = "Gain #% of Physical Damage as Extra Fire Damage", - ["type"] = "explicit", - }, - }, + ["max"] = 5, + ["min"] = 3, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_369494213", + ["text"] = "Gain #% of Physical Damage as Extra Fire Damage", + ["type"] = "explicit", + }, + }, ["1932_FireDamageAsPortionOfDamage"] = { ["Quiver"] = { - ["max"] = 15, - ["min"] = 15, - }, + ["max"] = 15, + ["min"] = 15, + }, ["Ring"] = { - ["max"] = 10, - ["min"] = 10, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_369494213", - ["text"] = "Gain #% of Physical Damage as Extra Fire Damage", - ["type"] = "explicit", - }, - }, + ["max"] = 10, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_369494213", + ["text"] = "Gain #% of Physical Damage as Extra Fire Damage", + ["type"] = "explicit", + }, + }, ["1932_PhysicalAddedAsFire"] = { ["1HAxe"] = { - ["max"] = 20, - ["min"] = 7, - }, + ["max"] = 20, + ["min"] = 7, + }, ["1HMace"] = { - ["max"] = 20, - ["min"] = 7, - }, + ["max"] = 20, + ["min"] = 7, + }, ["1HSword"] = { - ["max"] = 20, - ["min"] = 7, - }, + ["max"] = 20, + ["min"] = 7, + }, ["1HWeapon"] = { - ["max"] = 20, - ["min"] = 7, - }, + ["max"] = 20, + ["min"] = 7, + }, ["2HAxe"] = { - ["max"] = 30, - ["min"] = 7, - }, + ["max"] = 30, + ["min"] = 7, + }, ["2HMace"] = { - ["max"] = 30, - ["min"] = 7, - }, + ["max"] = 30, + ["min"] = 7, + }, ["2HSword"] = { - ["max"] = 30, - ["min"] = 7, - }, + ["max"] = 30, + ["min"] = 7, + }, ["2HWeapon"] = { - ["max"] = 30, - ["min"] = 7, - }, + ["max"] = 30, + ["min"] = 7, + }, ["Amulet"] = { - ["max"] = 15, - ["min"] = 5, - }, + ["max"] = 15, + ["min"] = 5, + }, ["Boots"] = { - ["max"] = 11, - ["min"] = 3, - }, + ["max"] = 11, + ["min"] = 3, + }, ["Quiver"] = { - ["max"] = 15, - ["min"] = 5, - }, + ["max"] = 15, + ["min"] = 5, + }, ["Staff"] = { - ["max"] = 30, - ["min"] = 7, - }, + ["max"] = 30, + ["min"] = 7, + }, ["Wand"] = { - ["max"] = 20, - ["min"] = 7, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_369494213", - ["text"] = "Gain #% of Physical Damage as Extra Fire Damage", - ["type"] = "explicit", - }, - }, + ["max"] = 20, + ["min"] = 7, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_369494213", + ["text"] = "Gain #% of Physical Damage as Extra Fire Damage", + ["type"] = "explicit", + }, + }, ["1933_ConvertPhysicalToColdMaven"] = { ["Gloves"] = { - ["max"] = 5, - ["min"] = 3, - }, + ["max"] = 5, + ["min"] = 3, + }, ["Quiver"] = { - ["max"] = 5, - ["min"] = 3, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_979246511", - ["text"] = "Gain #% of Physical Damage as Extra Cold Damage", - ["type"] = "explicit", - }, - }, + ["max"] = 5, + ["min"] = 3, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_979246511", + ["text"] = "Gain #% of Physical Damage as Extra Cold Damage", + ["type"] = "explicit", + }, + }, ["1933_PhysicalAddedAsCold"] = { ["1HAxe"] = { - ["max"] = 20, - ["min"] = 7, - }, + ["max"] = 20, + ["min"] = 7, + }, ["1HMace"] = { - ["max"] = 20, - ["min"] = 7, - }, + ["max"] = 20, + ["min"] = 7, + }, ["1HSword"] = { - ["max"] = 20, - ["min"] = 7, - }, + ["max"] = 20, + ["min"] = 7, + }, ["1HWeapon"] = { - ["max"] = 20, - ["min"] = 7, - }, + ["max"] = 20, + ["min"] = 7, + }, ["2HAxe"] = { - ["max"] = 30, - ["min"] = 7, - }, + ["max"] = 30, + ["min"] = 7, + }, ["2HSword"] = { - ["max"] = 30, - ["min"] = 7, - }, + ["max"] = 30, + ["min"] = 7, + }, ["2HWeapon"] = { - ["max"] = 30, - ["min"] = 7, - }, + ["max"] = 30, + ["min"] = 7, + }, ["Amulet"] = { - ["max"] = 15, - ["min"] = 5, - }, + ["max"] = 15, + ["min"] = 5, + }, ["Boots"] = { - ["max"] = 11, - ["min"] = 3, - }, + ["max"] = 11, + ["min"] = 3, + }, ["Bow"] = { - ["max"] = 20, - ["min"] = 7, - }, + ["max"] = 20, + ["min"] = 7, + }, ["Claw"] = { - ["max"] = 20, - ["min"] = 7, - }, + ["max"] = 20, + ["min"] = 7, + }, ["Dagger"] = { - ["max"] = 20, - ["min"] = 7, - }, + ["max"] = 20, + ["min"] = 7, + }, ["Quiver"] = { - ["max"] = 15, - ["min"] = 5, - }, + ["max"] = 15, + ["min"] = 5, + }, ["Wand"] = { - ["max"] = 20, - ["min"] = 7, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_979246511", - ["text"] = "Gain #% of Physical Damage as Extra Cold Damage", - ["type"] = "explicit", - }, - }, + ["max"] = 20, + ["min"] = 7, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_979246511", + ["text"] = "Gain #% of Physical Damage as Extra Cold Damage", + ["type"] = "explicit", + }, + }, ["1934_ConvertPhysicalToLightningMaven"] = { ["Gloves"] = { - ["max"] = 5, - ["min"] = 3, - }, + ["max"] = 5, + ["min"] = 3, + }, ["Quiver"] = { - ["max"] = 5, - ["min"] = 3, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_219391121", - ["text"] = "Gain #% of Physical Damage as Extra Lightning Damage", - ["type"] = "explicit", - }, - }, + ["max"] = 5, + ["min"] = 3, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_219391121", + ["text"] = "Gain #% of Physical Damage as Extra Lightning Damage", + ["type"] = "explicit", + }, + }, ["1934_PhysicalAddedAsLightning"] = { ["1HMace"] = { - ["max"] = 20, - ["min"] = 7, - }, + ["max"] = 20, + ["min"] = 7, + }, ["1HWeapon"] = { - ["max"] = 20, - ["min"] = 7, - }, + ["max"] = 20, + ["min"] = 7, + }, ["2HWeapon"] = { - ["max"] = 30, - ["min"] = 7, - }, + ["max"] = 30, + ["min"] = 7, + }, ["Amulet"] = { - ["max"] = 15, - ["min"] = 5, - }, + ["max"] = 15, + ["min"] = 5, + }, ["Boots"] = { - ["max"] = 11, - ["min"] = 3, - }, + ["max"] = 11, + ["min"] = 3, + }, ["Claw"] = { - ["max"] = 20, - ["min"] = 7, - }, + ["max"] = 20, + ["min"] = 7, + }, ["Dagger"] = { - ["max"] = 20, - ["min"] = 7, - }, + ["max"] = 20, + ["min"] = 7, + }, ["Quiver"] = { - ["max"] = 15, - ["min"] = 5, - }, + ["max"] = 15, + ["min"] = 5, + }, ["Staff"] = { - ["max"] = 30, - ["min"] = 7, - }, + ["max"] = 30, + ["min"] = 7, + }, ["Wand"] = { - ["max"] = 20, - ["min"] = 7, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_219391121", - ["text"] = "Gain #% of Physical Damage as Extra Lightning Damage", - ["type"] = "explicit", - }, - }, + ["max"] = 20, + ["min"] = 7, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_219391121", + ["text"] = "Gain #% of Physical Damage as Extra Lightning Damage", + ["type"] = "explicit", + }, + }, ["1935_LocalPhysicalDamagePercentAddedAsChaos"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_3319896421", - ["text"] = "Gain #% of Physical Damage as Extra Chaos Damage", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_3319896421", + ["text"] = "Gain #% of Physical Damage as Extra Chaos Damage", + ["type"] = "explicit", + }, + }, ["1935_PhysicalAddedAsChaos"] = { ["1HAxe"] = { - ["max"] = 8, - ["min"] = 5, - }, + ["max"] = 8, + ["min"] = 5, + }, ["1HMace"] = { - ["max"] = 8, - ["min"] = 5, - }, + ["max"] = 8, + ["min"] = 5, + }, ["1HSword"] = { - ["max"] = 8, - ["min"] = 5, - }, + ["max"] = 8, + ["min"] = 5, + }, ["1HWeapon"] = { - ["max"] = 8, - ["min"] = 5, - }, + ["max"] = 8, + ["min"] = 5, + }, ["2HAxe"] = { - ["max"] = 16, - ["min"] = 11, - }, + ["max"] = 16, + ["min"] = 11, + }, ["2HMace"] = { - ["max"] = 16, - ["min"] = 11, - }, + ["max"] = 16, + ["min"] = 11, + }, ["2HSword"] = { - ["max"] = 16, - ["min"] = 11, - }, + ["max"] = 16, + ["min"] = 11, + }, ["2HWeapon"] = { - ["max"] = 16, - ["min"] = 11, - }, + ["max"] = 16, + ["min"] = 11, + }, ["Bow"] = { - ["max"] = 16, - ["min"] = 11, - }, + ["max"] = 16, + ["min"] = 11, + }, ["Claw"] = { - ["max"] = 8, - ["min"] = 5, - }, + ["max"] = 8, + ["min"] = 5, + }, ["Dagger"] = { - ["max"] = 8, - ["min"] = 5, - }, + ["max"] = 8, + ["min"] = 5, + }, ["Shield"] = { - ["max"] = 8, - ["min"] = 5, - }, + ["max"] = 8, + ["min"] = 5, + }, ["Staff"] = { - ["max"] = 16, - ["min"] = 11, - }, + ["max"] = 16, + ["min"] = 11, + }, ["Wand"] = { - ["max"] = 8, - ["min"] = 5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3319896421", - ["text"] = "Gain #% of Physical Damage as Extra Chaos Damage", - ["type"] = "explicit", - }, - }, + ["max"] = 8, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3319896421", + ["text"] = "Gain #% of Physical Damage as Extra Chaos Damage", + ["type"] = "explicit", + }, + }, ["1938_ChaosDamageAsPortionOfLightningDamage"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_2402136583", - ["text"] = "Gain #% of Lightning Damage as Extra Chaos Damage", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_2402136583", + ["text"] = "Gain #% of Lightning Damage as Extra Chaos Damage", + ["type"] = "explicit", + }, + }, ["1938_LightningAddedAsChaos"] = { ["1HAxe"] = { - ["max"] = 8, - ["min"] = 5, - }, + ["max"] = 8, + ["min"] = 5, + }, ["1HMace"] = { - ["max"] = 8, - ["min"] = 5, - }, + ["max"] = 8, + ["min"] = 5, + }, ["1HSword"] = { - ["max"] = 8, - ["min"] = 5, - }, + ["max"] = 8, + ["min"] = 5, + }, ["1HWeapon"] = { - ["max"] = 8, - ["min"] = 5, - }, + ["max"] = 8, + ["min"] = 5, + }, ["2HAxe"] = { - ["max"] = 16, - ["min"] = 11, - }, + ["max"] = 16, + ["min"] = 11, + }, ["2HMace"] = { - ["max"] = 16, - ["min"] = 11, - }, + ["max"] = 16, + ["min"] = 11, + }, ["2HSword"] = { - ["max"] = 16, - ["min"] = 11, - }, + ["max"] = 16, + ["min"] = 11, + }, ["2HWeapon"] = { - ["max"] = 16, - ["min"] = 11, - }, + ["max"] = 16, + ["min"] = 11, + }, ["Bow"] = { - ["max"] = 16, - ["min"] = 11, - }, + ["max"] = 16, + ["min"] = 11, + }, ["Claw"] = { - ["max"] = 8, - ["min"] = 5, - }, + ["max"] = 8, + ["min"] = 5, + }, ["Dagger"] = { - ["max"] = 8, - ["min"] = 5, - }, + ["max"] = 8, + ["min"] = 5, + }, ["Shield"] = { - ["max"] = 8, - ["min"] = 5, - }, + ["max"] = 8, + ["min"] = 5, + }, ["Staff"] = { - ["max"] = 16, - ["min"] = 11, - }, + ["max"] = 16, + ["min"] = 11, + }, ["Wand"] = { - ["max"] = 8, - ["min"] = 5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2402136583", - ["text"] = "Gain #% of Lightning Damage as Extra Chaos Damage", - ["type"] = "explicit", - }, - }, + ["max"] = 8, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2402136583", + ["text"] = "Gain #% of Lightning Damage as Extra Chaos Damage", + ["type"] = "explicit", + }, + }, ["1940_ChaosDamageAsPortionOfColdDamage"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_2915373966", - ["text"] = "Gain #% of Cold Damage as Extra Chaos Damage", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_2915373966", + ["text"] = "Gain #% of Cold Damage as Extra Chaos Damage", + ["type"] = "explicit", + }, + }, ["1940_ColdAddedAsChaos"] = { ["1HAxe"] = { - ["max"] = 8, - ["min"] = 5, - }, + ["max"] = 8, + ["min"] = 5, + }, ["1HMace"] = { - ["max"] = 8, - ["min"] = 5, - }, + ["max"] = 8, + ["min"] = 5, + }, ["1HSword"] = { - ["max"] = 8, - ["min"] = 5, - }, + ["max"] = 8, + ["min"] = 5, + }, ["1HWeapon"] = { - ["max"] = 8, - ["min"] = 5, - }, + ["max"] = 8, + ["min"] = 5, + }, ["2HAxe"] = { - ["max"] = 16, - ["min"] = 11, - }, + ["max"] = 16, + ["min"] = 11, + }, ["2HMace"] = { - ["max"] = 16, - ["min"] = 11, - }, + ["max"] = 16, + ["min"] = 11, + }, ["2HSword"] = { - ["max"] = 16, - ["min"] = 11, - }, + ["max"] = 16, + ["min"] = 11, + }, ["2HWeapon"] = { - ["max"] = 16, - ["min"] = 11, - }, + ["max"] = 16, + ["min"] = 11, + }, ["Bow"] = { - ["max"] = 16, - ["min"] = 11, - }, + ["max"] = 16, + ["min"] = 11, + }, ["Claw"] = { - ["max"] = 8, - ["min"] = 5, - }, + ["max"] = 8, + ["min"] = 5, + }, ["Dagger"] = { - ["max"] = 8, - ["min"] = 5, - }, + ["max"] = 8, + ["min"] = 5, + }, ["Shield"] = { - ["max"] = 8, - ["min"] = 5, - }, + ["max"] = 8, + ["min"] = 5, + }, ["Staff"] = { - ["max"] = 16, - ["min"] = 11, - }, + ["max"] = 16, + ["min"] = 11, + }, ["Wand"] = { - ["max"] = 8, - ["min"] = 5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2915373966", - ["text"] = "Gain #% of Cold Damage as Extra Chaos Damage", - ["type"] = "explicit", - }, - }, + ["max"] = 8, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2915373966", + ["text"] = "Gain #% of Cold Damage as Extra Chaos Damage", + ["type"] = "explicit", + }, + }, ["1941_ChaosDamageAsPortionOfFireDamage"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1599775597", - ["text"] = "Gain #% of Fire Damage as Extra Chaos Damage", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1599775597", + ["text"] = "Gain #% of Fire Damage as Extra Chaos Damage", + ["type"] = "explicit", + }, + }, ["1941_FireAddedAsChaos"] = { ["1HAxe"] = { - ["max"] = 8, - ["min"] = 5, - }, + ["max"] = 8, + ["min"] = 5, + }, ["1HMace"] = { - ["max"] = 8, - ["min"] = 5, - }, + ["max"] = 8, + ["min"] = 5, + }, ["1HSword"] = { - ["max"] = 8, - ["min"] = 5, - }, + ["max"] = 8, + ["min"] = 5, + }, ["1HWeapon"] = { - ["max"] = 8, - ["min"] = 5, - }, + ["max"] = 8, + ["min"] = 5, + }, ["2HAxe"] = { - ["max"] = 16, - ["min"] = 11, - }, + ["max"] = 16, + ["min"] = 11, + }, ["2HMace"] = { - ["max"] = 16, - ["min"] = 11, - }, + ["max"] = 16, + ["min"] = 11, + }, ["2HSword"] = { - ["max"] = 16, - ["min"] = 11, - }, + ["max"] = 16, + ["min"] = 11, + }, ["2HWeapon"] = { - ["max"] = 16, - ["min"] = 11, - }, + ["max"] = 16, + ["min"] = 11, + }, ["Bow"] = { - ["max"] = 16, - ["min"] = 11, - }, + ["max"] = 16, + ["min"] = 11, + }, ["Claw"] = { - ["max"] = 8, - ["min"] = 5, - }, + ["max"] = 8, + ["min"] = 5, + }, ["Dagger"] = { - ["max"] = 8, - ["min"] = 5, - }, + ["max"] = 8, + ["min"] = 5, + }, ["Shield"] = { - ["max"] = 8, - ["min"] = 5, - }, + ["max"] = 8, + ["min"] = 5, + }, ["Staff"] = { - ["max"] = 16, - ["min"] = 11, - }, + ["max"] = 16, + ["min"] = 11, + }, ["Wand"] = { - ["max"] = 8, - ["min"] = 5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1599775597", - ["text"] = "Gain #% of Fire Damage as Extra Chaos Damage", - ["type"] = "explicit", - }, - }, + ["max"] = 8, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1599775597", + ["text"] = "Gain #% of Fire Damage as Extra Chaos Damage", + ["type"] = "explicit", + }, + }, ["1942_ElementalDamagePercentAddedAsChaos"] = { ["1HMace"] = { - ["max"] = 8, - ["min"] = 5, - }, + ["max"] = 8, + ["min"] = 5, + }, ["1HWeapon"] = { - ["max"] = 8, - ["min"] = 5, - }, + ["max"] = 8, + ["min"] = 5, + }, ["2HWeapon"] = { - ["max"] = 15, - ["min"] = 10, - }, + ["max"] = 15, + ["min"] = 10, + }, ["Dagger"] = { - ["max"] = 8, - ["min"] = 5, - }, + ["max"] = 8, + ["min"] = 5, + }, ["Staff"] = { - ["max"] = 15, - ["min"] = 10, - }, + ["max"] = 15, + ["min"] = 10, + }, ["Wand"] = { - ["max"] = 8, - ["min"] = 5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3495544060", - ["text"] = "Gain #% of Elemental Damage as Extra Chaos Damage", - ["type"] = "explicit", - }, - }, + ["max"] = 8, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3495544060", + ["text"] = "Gain #% of Elemental Damage as Extra Chaos Damage", + ["type"] = "explicit", + }, + }, ["1943_LifeDegenerationAndPercentGracePeriod"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1661347488", - ["text"] = "Lose #% of Life per second", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1661347488", + ["text"] = "Lose #% of Life per second", + ["type"] = "explicit", + }, + }, ["1944_LifeRegenerationAndPercent"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_836936635", - ["text"] = "Regenerate #% of Life per second", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_836936635", + ["text"] = "Regenerate #% of Life per second", + ["type"] = "explicit", + }, + }, ["1944_LifeRegenerationRatePercentage"] = { ["AbyssJewel"] = { - ["max"] = 0.3, - ["min"] = 0.3, - }, + ["max"] = 0.3, + ["min"] = 0.3, + }, ["Amulet"] = { - ["max"] = 3, - ["min"] = 2.1, - }, + ["max"] = 3, + ["min"] = 2.1, + }, ["AnyJewel"] = { - ["max"] = 0.3, - ["min"] = 0.3, - }, + ["max"] = 0.3, + ["min"] = 0.3, + }, ["BaseJewel"] = { - ["max"] = 0.3, - ["min"] = 0.3, - }, + ["max"] = 0.3, + ["min"] = 0.3, + }, ["Boots"] = { - ["max"] = 2, - ["min"] = 1, - }, + ["max"] = 2, + ["min"] = 1, + }, ["Chest"] = { - ["max"] = 3, - ["min"] = 1, - }, + ["max"] = 3, + ["min"] = 1, + }, ["Gloves"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Helmet"] = { - ["max"] = 2, - ["min"] = 1, - }, + ["max"] = 2, + ["min"] = 1, + }, ["Quiver"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Shield"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_836936635", - ["text"] = "Regenerate #% of Life per second", - ["type"] = "explicit", - }, - }, + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_836936635", + ["text"] = "Regenerate #% of Life per second", + ["type"] = "explicit", + }, + }, ["1948_ChaosDamageOverTimeTaken"] = { ["Chest"] = { - ["max"] = 25, - ["min"] = 25, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3762784591", - ["text"] = "#% reduced Chaos Damage taken over time", - ["type"] = "explicit", - }, - }, + ["max"] = 25, + ["min"] = 25, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3762784591", + ["text"] = "#% reduced Chaos Damage taken over time", + ["type"] = "explicit", + }, + }, ["1948_ChaosResistanceDamageOverTime"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_3762784591", - ["text"] = "#% reduced Chaos Damage taken over time", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_3762784591", + ["text"] = "#% reduced Chaos Damage taken over time", + ["type"] = "explicit", + }, + }, ["1955_ConvertPhysicalToFire"] = { ["1HAxe"] = { - ["max"] = 30, - ["min"] = 23, - }, + ["max"] = 30, + ["min"] = 23, + }, ["1HMace"] = { - ["max"] = 30, - ["min"] = 23, - }, + ["max"] = 30, + ["min"] = 23, + }, ["1HSword"] = { - ["max"] = 30, - ["min"] = 23, - }, + ["max"] = 30, + ["min"] = 23, + }, ["1HWeapon"] = { - ["max"] = 30, - ["min"] = 23, - }, + ["max"] = 30, + ["min"] = 23, + }, ["2HAxe"] = { - ["max"] = 30, - ["min"] = 23, - }, + ["max"] = 30, + ["min"] = 23, + }, ["2HMace"] = { - ["max"] = 30, - ["min"] = 23, - }, + ["max"] = 30, + ["min"] = 23, + }, ["2HSword"] = { - ["max"] = 30, - ["min"] = 23, - }, + ["max"] = 30, + ["min"] = 23, + }, ["2HWeapon"] = { - ["max"] = 30, - ["min"] = 23, - }, + ["max"] = 30, + ["min"] = 23, + }, ["Gloves"] = { - ["max"] = 35, - ["min"] = 18, - }, + ["max"] = 35, + ["min"] = 18, + }, ["Quiver"] = { - ["max"] = 25, - ["min"] = 18, - }, + ["max"] = 25, + ["min"] = 18, + }, ["Staff"] = { - ["max"] = 30, - ["min"] = 23, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1533563525", - ["text"] = "#% of Physical Damage Converted to Fire Damage", - ["type"] = "explicit", - }, - }, + ["max"] = 30, + ["min"] = 23, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1533563525", + ["text"] = "#% of Physical Damage Converted to Fire Damage", + ["type"] = "explicit", + }, + }, ["1955_ConvertPhysicalToFireMaven"] = { ["Gloves"] = { - ["max"] = 25, - ["min"] = 22, - }, + ["max"] = 25, + ["min"] = 22, + }, ["Quiver"] = { - ["max"] = 25, - ["min"] = 22, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1533563525", - ["text"] = "#% of Physical Damage Converted to Fire Damage", - ["type"] = "explicit", - }, - }, + ["max"] = 25, + ["min"] = 22, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1533563525", + ["text"] = "#% of Physical Damage Converted to Fire Damage", + ["type"] = "explicit", + }, + }, ["1955_FireDamagePhysConvertedToFire"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1533563525", - ["text"] = "#% of Physical Damage Converted to Fire Damage", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1533563525", + ["text"] = "#% of Physical Damage Converted to Fire Damage", + ["type"] = "explicit", + }, + }, ["1957_ColdDamagePhysConvertedToCold"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_2133341901", - ["text"] = "#% of Physical Damage Converted to Cold Damage", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_2133341901", + ["text"] = "#% of Physical Damage Converted to Cold Damage", + ["type"] = "explicit", + }, + }, ["1957_ConvertPhysicalToCold"] = { ["1HAxe"] = { - ["max"] = 30, - ["min"] = 23, - }, + ["max"] = 30, + ["min"] = 23, + }, ["1HMace"] = { - ["max"] = 30, - ["min"] = 23, - }, + ["max"] = 30, + ["min"] = 23, + }, ["1HSword"] = { - ["max"] = 30, - ["min"] = 23, - }, + ["max"] = 30, + ["min"] = 23, + }, ["1HWeapon"] = { - ["max"] = 30, - ["min"] = 23, - }, + ["max"] = 30, + ["min"] = 23, + }, ["2HAxe"] = { - ["max"] = 30, - ["min"] = 23, - }, + ["max"] = 30, + ["min"] = 23, + }, ["2HSword"] = { - ["max"] = 30, - ["min"] = 23, - }, + ["max"] = 30, + ["min"] = 23, + }, ["2HWeapon"] = { - ["max"] = 30, - ["min"] = 23, - }, + ["max"] = 30, + ["min"] = 23, + }, ["Claw"] = { - ["max"] = 30, - ["min"] = 23, - }, + ["max"] = 30, + ["min"] = 23, + }, ["Dagger"] = { - ["max"] = 30, - ["min"] = 23, - }, + ["max"] = 30, + ["min"] = 23, + }, ["Gloves"] = { - ["max"] = 35, - ["min"] = 18, - }, + ["max"] = 35, + ["min"] = 18, + }, ["Quiver"] = { - ["max"] = 25, - ["min"] = 18, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2133341901", - ["text"] = "#% of Physical Damage Converted to Cold Damage", - ["type"] = "explicit", - }, - }, + ["max"] = 25, + ["min"] = 18, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2133341901", + ["text"] = "#% of Physical Damage Converted to Cold Damage", + ["type"] = "explicit", + }, + }, ["1957_ConvertPhysicalToColdMaven"] = { ["Gloves"] = { - ["max"] = 25, - ["min"] = 22, - }, + ["max"] = 25, + ["min"] = 22, + }, ["Quiver"] = { - ["max"] = 25, - ["min"] = 22, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2133341901", - ["text"] = "#% of Physical Damage Converted to Cold Damage", - ["type"] = "explicit", - }, - }, + ["max"] = 25, + ["min"] = 22, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2133341901", + ["text"] = "#% of Physical Damage Converted to Cold Damage", + ["type"] = "explicit", + }, + }, ["1959_ConvertPhysicalToLightning"] = { ["1HMace"] = { - ["max"] = 30, - ["min"] = 23, - }, + ["max"] = 30, + ["min"] = 23, + }, ["1HWeapon"] = { - ["max"] = 30, - ["min"] = 23, - }, + ["max"] = 30, + ["min"] = 23, + }, ["2HWeapon"] = { - ["max"] = 30, - ["min"] = 23, - }, + ["max"] = 30, + ["min"] = 23, + }, ["Claw"] = { - ["max"] = 30, - ["min"] = 23, - }, + ["max"] = 30, + ["min"] = 23, + }, ["Dagger"] = { - ["max"] = 30, - ["min"] = 23, - }, + ["max"] = 30, + ["min"] = 23, + }, ["Gloves"] = { - ["max"] = 35, - ["min"] = 18, - }, + ["max"] = 35, + ["min"] = 18, + }, ["Quiver"] = { - ["max"] = 25, - ["min"] = 18, - }, + ["max"] = 25, + ["min"] = 18, + }, ["Staff"] = { - ["max"] = 30, - ["min"] = 23, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3240769289", - ["text"] = "#% of Physical Damage Converted to Lightning Damage", - ["type"] = "explicit", - }, - }, + ["max"] = 30, + ["min"] = 23, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3240769289", + ["text"] = "#% of Physical Damage Converted to Lightning Damage", + ["type"] = "explicit", + }, + }, ["1959_ConvertPhysicalToLightningMaven"] = { ["Gloves"] = { - ["max"] = 25, - ["min"] = 22, - }, + ["max"] = 25, + ["min"] = 22, + }, ["Quiver"] = { - ["max"] = 25, - ["min"] = 22, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3240769289", - ["text"] = "#% of Physical Damage Converted to Lightning Damage", - ["type"] = "explicit", - }, - }, + ["max"] = 25, + ["min"] = 22, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3240769289", + ["text"] = "#% of Physical Damage Converted to Lightning Damage", + ["type"] = "explicit", + }, + }, ["1959_LightningDamagePhysConvertedToLightning"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_3240769289", - ["text"] = "#% of Physical Damage Converted to Lightning Damage", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_3240769289", + ["text"] = "#% of Physical Damage Converted to Lightning Damage", + ["type"] = "explicit", + }, + }, ["1962_PhysicalDamageConvertedToChaos"] = { ["1HAxe"] = { - ["max"] = 25, - ["min"] = 10, - }, + ["max"] = 25, + ["min"] = 10, + }, ["1HMace"] = { - ["max"] = 25, - ["min"] = 10, - }, + ["max"] = 25, + ["min"] = 10, + }, ["1HSword"] = { - ["max"] = 25, - ["min"] = 10, - }, + ["max"] = 25, + ["min"] = 10, + }, ["1HWeapon"] = { - ["max"] = 25, - ["min"] = 10, - }, + ["max"] = 25, + ["min"] = 10, + }, ["2HAxe"] = { - ["max"] = 25, - ["min"] = 10, - }, + ["max"] = 25, + ["min"] = 10, + }, ["2HMace"] = { - ["max"] = 25, - ["min"] = 10, - }, + ["max"] = 25, + ["min"] = 10, + }, ["2HSword"] = { - ["max"] = 25, - ["min"] = 10, - }, + ["max"] = 25, + ["min"] = 10, + }, ["2HWeapon"] = { - ["max"] = 25, - ["min"] = 10, - }, + ["max"] = 25, + ["min"] = 10, + }, ["Bow"] = { - ["max"] = 25, - ["min"] = 10, - }, + ["max"] = 25, + ["min"] = 10, + }, ["Claw"] = { - ["max"] = 25, - ["min"] = 10, - }, + ["max"] = 25, + ["min"] = 10, + }, ["Dagger"] = { - ["max"] = 25, - ["min"] = 10, - }, + ["max"] = 25, + ["min"] = 10, + }, ["Staff"] = { - ["max"] = 25, - ["min"] = 10, - }, + ["max"] = 25, + ["min"] = 10, + }, ["Wand"] = { - ["max"] = 25, - ["min"] = 10, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_490098963", - ["text"] = "#% of Physical Damage Converted to Chaos Damage", - ["type"] = "explicit", - }, - }, + ["max"] = 25, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_490098963", + ["text"] = "#% of Physical Damage Converted to Chaos Damage", + ["type"] = "explicit", + }, + }, ["1973_MinionDamage"] = { ["AbyssJewel"] = { - ["max"] = 16, - ["min"] = 14, - }, + ["max"] = 16, + ["min"] = 14, + }, ["AnyJewel"] = { - ["max"] = 16, - ["min"] = 14, - }, + ["max"] = 16, + ["min"] = 14, + }, ["Gloves"] = { - ["max"] = 45, - ["min"] = 10, - }, + ["max"] = 45, + ["min"] = 10, + }, ["Helmet"] = { - ["max"] = 30, - ["min"] = 13, - }, + ["max"] = 30, + ["min"] = 13, + }, ["Ring"] = { - ["max"] = 42, - ["min"] = 5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1589917703", - ["text"] = "Minions deal #% increased Damage", - ["type"] = "explicit", - }, - }, + ["max"] = 42, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1589917703", + ["text"] = "Minions deal #% increased Damage", + ["type"] = "explicit", + }, + }, ["1973_MinionDamageAndMinionMaximumLife"] = { ["1HAxe"] = { - ["max"] = 59, - ["min"] = 16, - }, + ["max"] = 59, + ["min"] = 16, + }, ["1HMace"] = { - ["max"] = 59, - ["min"] = 16, - }, + ["max"] = 59, + ["min"] = 16, + }, ["1HSword"] = { - ["max"] = 59, - ["min"] = 16, - }, + ["max"] = 59, + ["min"] = 16, + }, ["1HWeapon"] = { - ["max"] = 59, - ["min"] = 16, - }, + ["max"] = 59, + ["min"] = 16, + }, ["2HAxe"] = { - ["max"] = 59, - ["min"] = 26, - }, + ["max"] = 59, + ["min"] = 26, + }, ["2HMace"] = { - ["max"] = 59, - ["min"] = 26, - }, + ["max"] = 59, + ["min"] = 26, + }, ["2HSword"] = { - ["max"] = 59, - ["min"] = 26, - }, + ["max"] = 59, + ["min"] = 26, + }, ["2HWeapon"] = { - ["max"] = 59, - ["min"] = 26, - }, + ["max"] = 59, + ["min"] = 26, + }, ["Bow"] = { - ["max"] = 59, - ["min"] = 26, - }, + ["max"] = 59, + ["min"] = 26, + }, ["Claw"] = { - ["max"] = 59, - ["min"] = 16, - }, + ["max"] = 59, + ["min"] = 16, + }, ["Dagger"] = { - ["max"] = 59, - ["min"] = 16, - }, + ["max"] = 59, + ["min"] = 16, + }, ["Staff"] = { - ["max"] = 59, - ["min"] = 26, - }, + ["max"] = 59, + ["min"] = 26, + }, ["Wand"] = { - ["max"] = 59, - ["min"] = 16, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1589917703", - ["text"] = "Minions deal #% increased Damage", - ["type"] = "explicit", - }, - }, + ["max"] = 59, + ["min"] = 16, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1589917703", + ["text"] = "Minions deal #% increased Damage", + ["type"] = "explicit", + }, + }, ["1973_MinionDamageForJewel"] = { ["AnyJewel"] = { - ["max"] = 16, - ["min"] = 14, - }, + ["max"] = 16, + ["min"] = 14, + }, ["BaseJewel"] = { - ["max"] = 16, - ["min"] = 14, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1589917703", - ["text"] = "Minions deal #% increased Damage", - ["type"] = "explicit", - }, - }, + ["max"] = 16, + ["min"] = 14, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1589917703", + ["text"] = "Minions deal #% increased Damage", + ["type"] = "explicit", + }, + }, ["1973_MinionDamageOnWeapon"] = { ["1HAxe"] = { - ["max"] = 94, - ["min"] = 20, - }, + ["max"] = 94, + ["min"] = 20, + }, ["1HMace"] = { - ["max"] = 94, - ["min"] = 20, - }, + ["max"] = 94, + ["min"] = 20, + }, ["1HSword"] = { - ["max"] = 94, - ["min"] = 20, - }, + ["max"] = 94, + ["min"] = 20, + }, ["1HWeapon"] = { - ["max"] = 109, - ["min"] = 10, - }, + ["max"] = 109, + ["min"] = 10, + }, ["2HAxe"] = { - ["max"] = 144, - ["min"] = 30, - }, + ["max"] = 144, + ["min"] = 30, + }, ["2HMace"] = { - ["max"] = 144, - ["min"] = 30, - }, + ["max"] = 144, + ["min"] = 30, + }, ["2HSword"] = { - ["max"] = 144, - ["min"] = 30, - }, + ["max"] = 144, + ["min"] = 30, + }, ["2HWeapon"] = { - ["max"] = 144, - ["min"] = 30, - }, + ["max"] = 144, + ["min"] = 30, + }, ["Bow"] = { - ["max"] = 144, - ["min"] = 30, - }, + ["max"] = 144, + ["min"] = 30, + }, ["Claw"] = { - ["max"] = 94, - ["min"] = 20, - }, + ["max"] = 94, + ["min"] = 20, + }, ["Dagger"] = { - ["max"] = 94, - ["min"] = 20, - }, + ["max"] = 94, + ["min"] = 20, + }, ["Shield"] = { - ["max"] = 109, - ["min"] = 10, - }, + ["max"] = 109, + ["min"] = 10, + }, ["Staff"] = { - ["max"] = 144, - ["min"] = 30, - }, + ["max"] = 144, + ["min"] = 30, + }, ["Wand"] = { - ["max"] = 109, - ["min"] = 10, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1589917703", - ["text"] = "Minions deal #% increased Damage", - ["type"] = "explicit", - }, - }, + ["max"] = 109, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1589917703", + ["text"] = "Minions deal #% increased Damage", + ["type"] = "explicit", + }, + }, ["1973_MinionDamageOnWeaponAndMana"] = { ["1HWeapon"] = { - ["max"] = 39, - ["min"] = 5, - }, + ["max"] = 39, + ["min"] = 5, + }, ["Wand"] = { - ["max"] = 39, - ["min"] = 5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1589917703", - ["text"] = "Minions deal #% increased Damage", - ["type"] = "explicit", - }, - }, + ["max"] = 39, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1589917703", + ["text"] = "Minions deal #% increased Damage", + ["type"] = "explicit", + }, + }, ["1973_MinionDamageOnWeaponDoubleDamage"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1589917703", - ["text"] = "Minions deal #% increased Damage", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1589917703", + ["text"] = "Minions deal #% increased Damage", + ["type"] = "explicit", + }, + }, ["1973_MinionDamageSupported"] = { ["Helmet"] = { - ["max"] = 25, - ["min"] = 15, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1589917703", - ["text"] = "Minions deal #% increased Damage", - ["type"] = "explicit", - }, - }, + ["max"] = 25, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1589917703", + ["text"] = "Minions deal #% increased Damage", + ["type"] = "explicit", + }, + }, ["1974_MinionDamageIfMinionSkillUsedRecently"] = { ["AbyssJewel"] = { - ["max"] = 20, - ["min"] = 15, - }, + ["max"] = 20, + ["min"] = 15, + }, ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 15, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_412745376", - ["text"] = "Minions deal #% increased Damage if you've used a Minion Skill Recently", - ["type"] = "explicit", - }, - }, + ["max"] = 20, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_412745376", + ["text"] = "Minions deal #% increased Damage if you've used a Minion Skill Recently", + ["type"] = "explicit", + }, + }, ["1980_ElementalDamagePercent"] = { ["1HAxe"] = { - ["max"] = 49, - ["min"] = 19, - }, + ["max"] = 49, + ["min"] = 19, + }, ["1HMace"] = { - ["max"] = 49, - ["min"] = 19, - }, + ["max"] = 49, + ["min"] = 19, + }, ["1HSword"] = { - ["max"] = 49, - ["min"] = 19, - }, + ["max"] = 49, + ["min"] = 19, + }, ["1HWeapon"] = { - ["max"] = 49, - ["min"] = 19, - }, + ["max"] = 49, + ["min"] = 19, + }, ["2HAxe"] = { - ["max"] = 94, - ["min"] = 37, - }, + ["max"] = 94, + ["min"] = 37, + }, ["2HMace"] = { - ["max"] = 94, - ["min"] = 37, - }, + ["max"] = 94, + ["min"] = 37, + }, ["2HSword"] = { - ["max"] = 94, - ["min"] = 37, - }, + ["max"] = 94, + ["min"] = 37, + }, ["2HWeapon"] = { - ["max"] = 94, - ["min"] = 37, - }, + ["max"] = 94, + ["min"] = 37, + }, ["Belt"] = { - ["max"] = 30, - ["min"] = 11, - }, + ["max"] = 30, + ["min"] = 11, + }, ["Bow"] = { - ["max"] = 94, - ["min"] = 37, - }, + ["max"] = 94, + ["min"] = 37, + }, ["Claw"] = { - ["max"] = 49, - ["min"] = 19, - }, + ["max"] = 49, + ["min"] = 19, + }, ["Dagger"] = { - ["max"] = 49, - ["min"] = 19, - }, + ["max"] = 49, + ["min"] = 19, + }, ["Helmet"] = { - ["max"] = 22, - ["min"] = 12, - }, + ["max"] = 22, + ["min"] = 12, + }, ["Ring"] = { - ["max"] = 30, - ["min"] = 25, - }, + ["max"] = 30, + ["min"] = 25, + }, ["Staff"] = { - ["max"] = 94, - ["min"] = 37, - }, + ["max"] = 94, + ["min"] = 37, + }, ["Wand"] = { - ["max"] = 49, - ["min"] = 19, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3141070085", - ["text"] = "#% increased Elemental Damage", - ["type"] = "explicit", - }, - }, + ["max"] = 49, + ["min"] = 19, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3141070085", + ["text"] = "#% increased Elemental Damage", + ["type"] = "explicit", + }, + }, ["1980_ElementalDamagePercentMaven"] = { ["Helmet"] = { - ["max"] = 22, - ["min"] = 19, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3141070085", - ["text"] = "#% increased Elemental Damage", - ["type"] = "explicit", - }, - }, + ["max"] = 22, + ["min"] = 19, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3141070085", + ["text"] = "#% increased Elemental Damage", + ["type"] = "explicit", + }, + }, ["1980_ElementalDamagePrefixElementalFocus"] = { ["1HMace"] = { - ["max"] = 60, - ["min"] = 45, - }, + ["max"] = 60, + ["min"] = 45, + }, ["1HWeapon"] = { - ["max"] = 60, - ["min"] = 45, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3141070085", - ["text"] = "#% increased Elemental Damage", - ["type"] = "explicit", - }, - }, + ["max"] = 60, + ["min"] = 45, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3141070085", + ["text"] = "#% increased Elemental Damage", + ["type"] = "explicit", + }, + }, ["1988_BlockPercentMaven"] = { ["Gloves"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4124805414", - ["text"] = "+#% to maximum Chance to Block Attack Damage", - ["type"] = "explicit", - }, - }, + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4124805414", + ["text"] = "+#% to maximum Chance to Block Attack Damage", + ["type"] = "explicit", + }, + }, ["1988_MaximumBlockChance"] = { ["Amulet"] = { - ["max"] = 2, - ["min"] = 2, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4124805414", - ["text"] = "+#% to maximum Chance to Block Attack Damage", - ["type"] = "explicit", - }, - }, + ["max"] = 2, + ["min"] = 2, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4124805414", + ["text"] = "+#% to maximum Chance to Block Attack Damage", + ["type"] = "explicit", + }, + }, ["1989_MaximumSpellBlockChance"] = { ["Amulet"] = { - ["max"] = 2, - ["min"] = 2, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2388574377", - ["text"] = "+#% to maximum Chance to Block Spell Damage", - ["type"] = "explicit", - }, - }, + ["max"] = 2, + ["min"] = 2, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2388574377", + ["text"] = "+#% to maximum Chance to Block Spell Damage", + ["type"] = "explicit", + }, + }, ["1989_SpellBlockPercentageMaven"] = { ["Helmet"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2388574377", - ["text"] = "+#% to maximum Chance to Block Spell Damage", - ["type"] = "explicit", - }, - }, + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2388574377", + ["text"] = "+#% to maximum Chance to Block Spell Damage", + ["type"] = "explicit", + }, + }, ["1995_KnockbackChanceForJewel"] = { ["AnyJewel"] = { - ["max"] = 6, - ["min"] = 4, - }, + ["max"] = 6, + ["min"] = 4, + }, ["BaseJewel"] = { - ["max"] = 6, - ["min"] = 4, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_977908611", - ["text"] = "#% chance to Knock Enemies Back on hit", - ["type"] = "explicit", - }, - }, + ["max"] = 6, + ["min"] = 4, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_977908611", + ["text"] = "#% chance to Knock Enemies Back on hit", + ["type"] = "explicit", + }, + }, ["1996_ProjectileDamageAndProjectileSpeed"] = { ["Gloves"] = { - ["max"] = 20, - ["min"] = 9, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1839076647", - ["text"] = "#% increased Projectile Damage", - ["type"] = "explicit", - }, - }, + ["max"] = 20, + ["min"] = 9, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1839076647", + ["text"] = "#% increased Projectile Damage", + ["type"] = "explicit", + }, + }, ["1996_ProjectileDamageForJewel"] = { ["AnyJewel"] = { - ["max"] = 12, - ["min"] = 10, - }, + ["max"] = 12, + ["min"] = 10, + }, ["BaseJewel"] = { - ["max"] = 12, - ["min"] = 10, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1839076647", - ["text"] = "#% increased Projectile Damage", - ["type"] = "explicit", - }, - }, + ["max"] = 12, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1839076647", + ["text"] = "#% increased Projectile Damage", + ["type"] = "explicit", + }, + }, ["1996_ProjectileDamageSupported"] = { ["Gloves"] = { - ["max"] = 25, - ["min"] = 15, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1839076647", - ["text"] = "#% increased Projectile Damage", - ["type"] = "explicit", - }, - }, + ["max"] = 25, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1839076647", + ["text"] = "#% increased Projectile Damage", + ["type"] = "explicit", + }, + }, ["1996_SupportedByLesserMultipleProjectilesDamage"] = { ["1HWeapon"] = { - ["max"] = 30, - ["min"] = 15, - }, + ["max"] = 30, + ["min"] = 15, + }, ["Wand"] = { - ["max"] = 30, - ["min"] = 15, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1839076647", - ["text"] = "#% increased Projectile Damage", - ["type"] = "explicit", - }, - }, + ["max"] = 30, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1839076647", + ["text"] = "#% increased Projectile Damage", + ["type"] = "explicit", + }, + }, ["1997_ProjectileAttackDamage"] = { ["Gloves"] = { - ["max"] = 38, - ["min"] = 18, - }, + ["max"] = 38, + ["min"] = 18, + }, ["Ring"] = { - ["max"] = 25, - ["min"] = 15, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2162876159", - ["text"] = "#% increased Projectile Attack Damage", - ["type"] = "explicit", - }, - }, + ["max"] = 25, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2162876159", + ["text"] = "#% increased Projectile Attack Damage", + ["type"] = "explicit", + }, + }, ["19_ItemGenerationCannotChangePrefixes"] = { ["1HAxe"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["1HMace"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["1HSword"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["1HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["2HAxe"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["2HMace"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["2HSword"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["2HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Amulet"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Belt"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Boots"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Bow"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Chest"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Claw"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Dagger"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Gloves"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Helmet"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Quiver"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Ring"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Shield"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Staff"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Wand"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_2879723104", - ["text"] = "Prefixes Cannot Be Changed", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_2879723104", + ["text"] = "Prefixes Cannot Be Changed", + ["type"] = "explicit", + }, + }, ["1_DamageOfYouAndMinionsCannotBeReflectedPercent"] = { ["Ring"] = { - ["max"] = 60, - ["min"] = 60, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1567747544", - ["text"] = "#% of Hit Damage from you and your Minions cannot be Reflected", - ["type"] = "explicit", - }, - }, + ["max"] = 60, + ["min"] = 60, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1567747544", + ["text"] = "#% of Hit Damage from you and your Minions cannot be Reflected", + ["type"] = "explicit", + }, + }, ["2024_LocalAccuracyRating"] = { ["1HAxe"] = { - ["max"] = 780, - ["min"] = 80, - }, + ["max"] = 780, + ["min"] = 80, + }, ["1HMace"] = { - ["max"] = 780, - ["min"] = 80, - }, + ["max"] = 780, + ["min"] = 80, + }, ["1HSword"] = { - ["max"] = 780, - ["min"] = 80, - }, + ["max"] = 780, + ["min"] = 80, + }, ["1HWeapon"] = { - ["max"] = 780, - ["min"] = 80, - }, + ["max"] = 780, + ["min"] = 80, + }, ["2HAxe"] = { - ["max"] = 780, - ["min"] = 80, - }, + ["max"] = 780, + ["min"] = 80, + }, ["2HMace"] = { - ["max"] = 780, - ["min"] = 80, - }, + ["max"] = 780, + ["min"] = 80, + }, ["2HSword"] = { - ["max"] = 780, - ["min"] = 80, - }, + ["max"] = 780, + ["min"] = 80, + }, ["2HWeapon"] = { - ["max"] = 780, - ["min"] = 80, - }, + ["max"] = 780, + ["min"] = 80, + }, ["Bow"] = { - ["max"] = 780, - ["min"] = 80, - }, + ["max"] = 780, + ["min"] = 80, + }, ["Claw"] = { - ["max"] = 780, - ["min"] = 80, - }, + ["max"] = 780, + ["min"] = 80, + }, ["Dagger"] = { - ["max"] = 780, - ["min"] = 80, - }, + ["max"] = 780, + ["min"] = 80, + }, ["Staff"] = { - ["max"] = 780, - ["min"] = 80, - }, + ["max"] = 780, + ["min"] = 80, + }, ["Wand"] = { - ["max"] = 780, - ["min"] = 80, - }, - ["sign"] = "", - ["specialCaseData"] = { - ["overrideModLine"] = "+# to Accuracy Rating", - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_691932474", - ["text"] = "+# to Accuracy Rating (Local)", - ["type"] = "explicit", - }, - }, + ["max"] = 780, + ["min"] = 80, + }, + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "+# to Accuracy Rating", + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_691932474", + ["text"] = "+# to Accuracy Rating (Local)", + ["type"] = "explicit", + }, + }, ["2024_LocalAccuracyRatingAndLocalItemQuality"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - ["overrideModLine"] = "+# to Accuracy Rating", - }, + ["overrideModLine"] = "+# to Accuracy Rating", + }, ["tradeMod"] = { - ["id"] = "explicit.stat_691932474", - ["text"] = "+# to Accuracy Rating (Local)", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_691932474", + ["text"] = "+# to Accuracy Rating (Local)", + ["type"] = "explicit", + }, + }, ["2024_LocalAccuracyRatingStrengthDexterity"] = { ["1HAxe"] = { - ["max"] = 350, - ["min"] = 161, - }, + ["max"] = 350, + ["min"] = 161, + }, ["1HMace"] = { - ["max"] = 350, - ["min"] = 161, - }, + ["max"] = 350, + ["min"] = 161, + }, ["1HSword"] = { - ["max"] = 350, - ["min"] = 161, - }, + ["max"] = 350, + ["min"] = 161, + }, ["1HWeapon"] = { - ["max"] = 350, - ["min"] = 161, - }, + ["max"] = 350, + ["min"] = 161, + }, ["2HAxe"] = { - ["max"] = 350, - ["min"] = 161, - }, + ["max"] = 350, + ["min"] = 161, + }, ["2HMace"] = { - ["max"] = 350, - ["min"] = 161, - }, + ["max"] = 350, + ["min"] = 161, + }, ["2HSword"] = { - ["max"] = 350, - ["min"] = 161, - }, + ["max"] = 350, + ["min"] = 161, + }, ["2HWeapon"] = { - ["max"] = 350, - ["min"] = 161, - }, + ["max"] = 350, + ["min"] = 161, + }, ["Bow"] = { - ["max"] = 350, - ["min"] = 161, - }, + ["max"] = 350, + ["min"] = 161, + }, ["Claw"] = { - ["max"] = 350, - ["min"] = 161, - }, + ["max"] = 350, + ["min"] = 161, + }, ["Dagger"] = { - ["max"] = 350, - ["min"] = 161, - }, + ["max"] = 350, + ["min"] = 161, + }, ["Staff"] = { - ["max"] = 350, - ["min"] = 161, - }, + ["max"] = 350, + ["min"] = 161, + }, ["Wand"] = { - ["max"] = 350, - ["min"] = 161, - }, - ["sign"] = "", - ["specialCaseData"] = { - ["overrideModLine"] = "+# to Accuracy Rating", - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_691932474", - ["text"] = "+# to Accuracy Rating (Local)", - ["type"] = "explicit", - }, - }, + ["max"] = 350, + ["min"] = 161, + }, + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "+# to Accuracy Rating", + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_691932474", + ["text"] = "+# to Accuracy Rating (Local)", + ["type"] = "explicit", + }, + }, ["2024_LocalIncreasedPhysicalDamagePercentAndAccuracyRating"] = { ["1HAxe"] = { - ["max"] = 200, - ["min"] = 16, - }, + ["max"] = 200, + ["min"] = 16, + }, ["1HMace"] = { - ["max"] = 200, - ["min"] = 16, - }, + ["max"] = 200, + ["min"] = 16, + }, ["1HSword"] = { - ["max"] = 200, - ["min"] = 16, - }, + ["max"] = 200, + ["min"] = 16, + }, ["1HWeapon"] = { - ["max"] = 200, - ["min"] = 16, - }, + ["max"] = 200, + ["min"] = 16, + }, ["2HAxe"] = { - ["max"] = 200, - ["min"] = 16, - }, + ["max"] = 200, + ["min"] = 16, + }, ["2HMace"] = { - ["max"] = 200, - ["min"] = 16, - }, + ["max"] = 200, + ["min"] = 16, + }, ["2HSword"] = { - ["max"] = 200, - ["min"] = 16, - }, + ["max"] = 200, + ["min"] = 16, + }, ["2HWeapon"] = { - ["max"] = 200, - ["min"] = 16, - }, + ["max"] = 200, + ["min"] = 16, + }, ["Bow"] = { - ["max"] = 200, - ["min"] = 16, - }, + ["max"] = 200, + ["min"] = 16, + }, ["Claw"] = { - ["max"] = 200, - ["min"] = 16, - }, + ["max"] = 200, + ["min"] = 16, + }, ["Dagger"] = { - ["max"] = 200, - ["min"] = 16, - }, + ["max"] = 200, + ["min"] = 16, + }, ["Staff"] = { - ["max"] = 200, - ["min"] = 16, - }, + ["max"] = 200, + ["min"] = 16, + }, ["Wand"] = { - ["max"] = 200, - ["min"] = 16, - }, - ["sign"] = "", - ["specialCaseData"] = { - ["overrideModLine"] = "+# to Accuracy Rating", - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_691932474", - ["text"] = "+# to Accuracy Rating (Local)", - ["type"] = "explicit", - }, - }, + ["max"] = 200, + ["min"] = 16, + }, + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "+# to Accuracy Rating", + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_691932474", + ["text"] = "+# to Accuracy Rating (Local)", + ["type"] = "explicit", + }, + }, ["2024_LocalLightRadiusAndAccuracy"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - ["overrideModLine"] = "+# to Accuracy Rating", - }, + ["overrideModLine"] = "+# to Accuracy Rating", + }, ["tradeMod"] = { - ["id"] = "explicit.stat_691932474", - ["text"] = "+# to Accuracy Rating (Local)", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_691932474", + ["text"] = "+# to Accuracy Rating (Local)", + ["type"] = "explicit", + }, + }, ["2026_ChanceToIgnite"] = { ["1HMace"] = { - ["max"] = 40, - ["min"] = 18, - }, + ["max"] = 40, + ["min"] = 18, + }, ["1HWeapon"] = { - ["max"] = 40, - ["min"] = 18, - }, + ["max"] = 40, + ["min"] = 18, + }, ["2HWeapon"] = { - ["max"] = 55, - ["min"] = 25, - }, + ["max"] = 55, + ["min"] = 25, + }, ["Staff"] = { - ["max"] = 55, - ["min"] = 25, - }, + ["max"] = 55, + ["min"] = 25, + }, ["Wand"] = { - ["max"] = 40, - ["min"] = 18, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1335054179", - ["text"] = "#% chance to Ignite", - ["type"] = "explicit", - }, - }, + ["max"] = 40, + ["min"] = 18, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1335054179", + ["text"] = "#% chance to Ignite", + ["type"] = "explicit", + }, + }, ["2026_ChanceToIgniteForJewel"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1335054179", - ["text"] = "#% chance to Ignite", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1335054179", + ["text"] = "#% chance to Ignite", + ["type"] = "explicit", + }, + }, ["2026_FireDamageAndChanceToIgnite"] = { ["1HAxe"] = { - ["max"] = 40, - ["min"] = 13, - }, + ["max"] = 40, + ["min"] = 13, + }, ["1HMace"] = { - ["max"] = 40, - ["min"] = 13, - }, + ["max"] = 40, + ["min"] = 13, + }, ["1HSword"] = { - ["max"] = 40, - ["min"] = 13, - }, + ["max"] = 40, + ["min"] = 13, + }, ["1HWeapon"] = { - ["max"] = 40, - ["min"] = 13, - }, + ["max"] = 40, + ["min"] = 13, + }, ["2HAxe"] = { - ["max"] = 40, - ["min"] = 21, - }, + ["max"] = 40, + ["min"] = 21, + }, ["2HMace"] = { - ["max"] = 40, - ["min"] = 21, - }, + ["max"] = 40, + ["min"] = 21, + }, ["2HSword"] = { - ["max"] = 40, - ["min"] = 21, - }, + ["max"] = 40, + ["min"] = 21, + }, ["2HWeapon"] = { - ["max"] = 40, - ["min"] = 21, - }, + ["max"] = 40, + ["min"] = 21, + }, ["Bow"] = { - ["max"] = 40, - ["min"] = 21, - }, + ["max"] = 40, + ["min"] = 21, + }, ["Claw"] = { - ["max"] = 40, - ["min"] = 13, - }, + ["max"] = 40, + ["min"] = 13, + }, ["Dagger"] = { - ["max"] = 40, - ["min"] = 13, - }, + ["max"] = 40, + ["min"] = 13, + }, ["Staff"] = { - ["max"] = 40, - ["min"] = 21, - }, + ["max"] = 40, + ["min"] = 21, + }, ["Wand"] = { - ["max"] = 40, - ["min"] = 13, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1335054179", - ["text"] = "#% chance to Ignite", - ["type"] = "explicit", - }, - }, + ["max"] = 40, + ["min"] = 13, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1335054179", + ["text"] = "#% chance to Ignite", + ["type"] = "explicit", + }, + }, ["2026_IgniteChanceAndDamage"] = { ["Helmet"] = { - ["max"] = 8, - ["min"] = 6, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1335054179", - ["text"] = "#% chance to Ignite", - ["type"] = "explicit", - }, - }, + ["max"] = 8, + ["min"] = 6, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1335054179", + ["text"] = "#% chance to Ignite", + ["type"] = "explicit", + }, + }, ["2026_IgniteChanceAndDamageMaven"] = { ["Helmet"] = { - ["max"] = 15, - ["min"] = 10, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1335054179", - ["text"] = "#% chance to Ignite", - ["type"] = "explicit", - }, - }, + ["max"] = 15, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1335054179", + ["text"] = "#% chance to Ignite", + ["type"] = "explicit", + }, + }, ["2026_IgniteChanceAndDurationForJewel"] = { ["AnyJewel"] = { - ["max"] = 5, - ["min"] = 3, - }, + ["max"] = 5, + ["min"] = 3, + }, ["BaseJewel"] = { - ["max"] = 5, - ["min"] = 3, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1335054179", - ["text"] = "#% chance to Ignite", - ["type"] = "explicit", - }, - }, + ["max"] = 5, + ["min"] = 3, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1335054179", + ["text"] = "#% chance to Ignite", + ["type"] = "explicit", + }, + }, ["2029_ChanceToFreeze"] = { ["1HMace"] = { - ["max"] = 40, - ["min"] = 18, - }, + ["max"] = 40, + ["min"] = 18, + }, ["1HWeapon"] = { - ["max"] = 40, - ["min"] = 18, - }, + ["max"] = 40, + ["min"] = 18, + }, ["2HWeapon"] = { - ["max"] = 55, - ["min"] = 25, - }, + ["max"] = 55, + ["min"] = 25, + }, ["Staff"] = { - ["max"] = 55, - ["min"] = 25, - }, + ["max"] = 55, + ["min"] = 25, + }, ["Wand"] = { - ["max"] = 40, - ["min"] = 18, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2309614417", - ["text"] = "#% chance to Freeze", - ["type"] = "explicit", - }, - }, + ["max"] = 40, + ["min"] = 18, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2309614417", + ["text"] = "#% chance to Freeze", + ["type"] = "explicit", + }, + }, ["2029_ChanceToFreezeForJewel"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_2309614417", - ["text"] = "#% chance to Freeze", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_2309614417", + ["text"] = "#% chance to Freeze", + ["type"] = "explicit", + }, + }, ["2029_ColdDamageAndBaseChanceToFreeze"] = { ["1HAxe"] = { - ["max"] = 40, - ["min"] = 13, - }, + ["max"] = 40, + ["min"] = 13, + }, ["1HMace"] = { - ["max"] = 40, - ["min"] = 13, - }, + ["max"] = 40, + ["min"] = 13, + }, ["1HSword"] = { - ["max"] = 40, - ["min"] = 13, - }, + ["max"] = 40, + ["min"] = 13, + }, ["1HWeapon"] = { - ["max"] = 40, - ["min"] = 13, - }, + ["max"] = 40, + ["min"] = 13, + }, ["2HAxe"] = { - ["max"] = 40, - ["min"] = 21, - }, + ["max"] = 40, + ["min"] = 21, + }, ["2HMace"] = { - ["max"] = 40, - ["min"] = 21, - }, + ["max"] = 40, + ["min"] = 21, + }, ["2HSword"] = { - ["max"] = 40, - ["min"] = 21, - }, + ["max"] = 40, + ["min"] = 21, + }, ["2HWeapon"] = { - ["max"] = 40, - ["min"] = 21, - }, + ["max"] = 40, + ["min"] = 21, + }, ["Bow"] = { - ["max"] = 40, - ["min"] = 21, - }, + ["max"] = 40, + ["min"] = 21, + }, ["Claw"] = { - ["max"] = 40, - ["min"] = 13, - }, + ["max"] = 40, + ["min"] = 13, + }, ["Dagger"] = { - ["max"] = 40, - ["min"] = 13, - }, + ["max"] = 40, + ["min"] = 13, + }, ["Staff"] = { - ["max"] = 40, - ["min"] = 21, - }, + ["max"] = 40, + ["min"] = 21, + }, ["Wand"] = { - ["max"] = 40, - ["min"] = 13, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2309614417", - ["text"] = "#% chance to Freeze", - ["type"] = "explicit", - }, - }, + ["max"] = 40, + ["min"] = 13, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2309614417", + ["text"] = "#% chance to Freeze", + ["type"] = "explicit", + }, + }, ["2029_FreezeChanceAndDuration"] = { ["Helmet"] = { - ["max"] = 8, - ["min"] = 6, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2309614417", - ["text"] = "#% chance to Freeze", - ["type"] = "explicit", - }, - }, + ["max"] = 8, + ["min"] = 6, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2309614417", + ["text"] = "#% chance to Freeze", + ["type"] = "explicit", + }, + }, ["2029_FreezeChanceAndDurationForJewel"] = { ["AnyJewel"] = { - ["max"] = 5, - ["min"] = 3, - }, + ["max"] = 5, + ["min"] = 3, + }, ["BaseJewel"] = { - ["max"] = 5, - ["min"] = 3, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2309614417", - ["text"] = "#% chance to Freeze", - ["type"] = "explicit", - }, - }, + ["max"] = 5, + ["min"] = 3, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2309614417", + ["text"] = "#% chance to Freeze", + ["type"] = "explicit", + }, + }, ["2029_FreezeChanceAndDurationMaven"] = { ["Helmet"] = { - ["max"] = 15, - ["min"] = 10, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2309614417", - ["text"] = "#% chance to Freeze", - ["type"] = "explicit", - }, - }, + ["max"] = 15, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2309614417", + ["text"] = "#% chance to Freeze", + ["type"] = "explicit", + }, + }, ["2033_ChanceToShock"] = { ["1HMace"] = { - ["max"] = 40, - ["min"] = 18, - }, + ["max"] = 40, + ["min"] = 18, + }, ["1HWeapon"] = { - ["max"] = 40, - ["min"] = 18, - }, + ["max"] = 40, + ["min"] = 18, + }, ["2HWeapon"] = { - ["max"] = 55, - ["min"] = 25, - }, + ["max"] = 55, + ["min"] = 25, + }, ["Staff"] = { - ["max"] = 55, - ["min"] = 25, - }, + ["max"] = 55, + ["min"] = 25, + }, ["Wand"] = { - ["max"] = 40, - ["min"] = 18, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1538773178", - ["text"] = "#% chance to Shock", - ["type"] = "explicit", - }, - }, + ["max"] = 40, + ["min"] = 18, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1538773178", + ["text"] = "#% chance to Shock", + ["type"] = "explicit", + }, + }, ["2033_ChanceToShockForJewel"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1538773178", - ["text"] = "#% chance to Shock", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1538773178", + ["text"] = "#% chance to Shock", + ["type"] = "explicit", + }, + }, ["2033_LightningDamageAndChanceToShock"] = { ["1HAxe"] = { - ["max"] = 40, - ["min"] = 13, - }, + ["max"] = 40, + ["min"] = 13, + }, ["1HMace"] = { - ["max"] = 40, - ["min"] = 13, - }, + ["max"] = 40, + ["min"] = 13, + }, ["1HSword"] = { - ["max"] = 40, - ["min"] = 13, - }, + ["max"] = 40, + ["min"] = 13, + }, ["1HWeapon"] = { - ["max"] = 40, - ["min"] = 13, - }, + ["max"] = 40, + ["min"] = 13, + }, ["2HAxe"] = { - ["max"] = 40, - ["min"] = 21, - }, + ["max"] = 40, + ["min"] = 21, + }, ["2HMace"] = { - ["max"] = 40, - ["min"] = 21, - }, + ["max"] = 40, + ["min"] = 21, + }, ["2HSword"] = { - ["max"] = 40, - ["min"] = 21, - }, + ["max"] = 40, + ["min"] = 21, + }, ["2HWeapon"] = { - ["max"] = 40, - ["min"] = 21, - }, + ["max"] = 40, + ["min"] = 21, + }, ["Bow"] = { - ["max"] = 40, - ["min"] = 21, - }, + ["max"] = 40, + ["min"] = 21, + }, ["Claw"] = { - ["max"] = 40, - ["min"] = 13, - }, + ["max"] = 40, + ["min"] = 13, + }, ["Dagger"] = { - ["max"] = 40, - ["min"] = 13, - }, + ["max"] = 40, + ["min"] = 13, + }, ["Staff"] = { - ["max"] = 40, - ["min"] = 21, - }, + ["max"] = 40, + ["min"] = 21, + }, ["Wand"] = { - ["max"] = 40, - ["min"] = 13, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1538773178", - ["text"] = "#% chance to Shock", - ["type"] = "explicit", - }, - }, + ["max"] = 40, + ["min"] = 13, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1538773178", + ["text"] = "#% chance to Shock", + ["type"] = "explicit", + }, + }, ["2033_ShockChanceAndDurationForJewel"] = { ["AnyJewel"] = { - ["max"] = 5, - ["min"] = 3, - }, + ["max"] = 5, + ["min"] = 3, + }, ["BaseJewel"] = { - ["max"] = 5, - ["min"] = 3, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1538773178", - ["text"] = "#% chance to Shock", - ["type"] = "explicit", - }, - }, + ["max"] = 5, + ["min"] = 3, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1538773178", + ["text"] = "#% chance to Shock", + ["type"] = "explicit", + }, + }, ["2033_ShockChanceAndEffect"] = { ["Helmet"] = { - ["max"] = 8, - ["min"] = 6, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1538773178", - ["text"] = "#% chance to Shock", - ["type"] = "explicit", - }, - }, + ["max"] = 8, + ["min"] = 6, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1538773178", + ["text"] = "#% chance to Shock", + ["type"] = "explicit", + }, + }, ["2033_ShockChanceAndEffectMaven"] = { ["Helmet"] = { - ["max"] = 15, - ["min"] = 10, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1538773178", - ["text"] = "#% chance to Shock", - ["type"] = "explicit", - }, - }, + ["max"] = 15, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1538773178", + ["text"] = "#% chance to Shock", + ["type"] = "explicit", + }, + }, ["2035_AreaDamageAndAreaOfEffect"] = { ["Gloves"] = { - ["max"] = 20, - ["min"] = 9, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4251717817", - ["text"] = "#% increased Area Damage", - ["type"] = "explicit", - }, - }, + ["max"] = 20, + ["min"] = 9, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4251717817", + ["text"] = "#% increased Area Damage", + ["type"] = "explicit", + }, + }, ["2035_AreaDamageForJewel"] = { ["AnyJewel"] = { - ["max"] = 12, - ["min"] = 10, - }, + ["max"] = 12, + ["min"] = 10, + }, ["BaseJewel"] = { - ["max"] = 12, - ["min"] = 10, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4251717817", - ["text"] = "#% increased Area Damage", - ["type"] = "explicit", - }, - }, + ["max"] = 12, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4251717817", + ["text"] = "#% increased Area Damage", + ["type"] = "explicit", + }, + }, ["2035_AreaDamageSupported"] = { ["Helmet"] = { - ["max"] = 25, - ["min"] = 15, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4251717817", - ["text"] = "#% increased Area Damage", - ["type"] = "explicit", - }, - }, + ["max"] = 25, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4251717817", + ["text"] = "#% increased Area Damage", + ["type"] = "explicit", + }, + }, ["2035_SupportedByIncreasedAreaOfEffectDamage"] = { ["1HMace"] = { - ["max"] = 37, - ["min"] = 23, - }, + ["max"] = 37, + ["min"] = 23, + }, ["1HWeapon"] = { - ["max"] = 37, - ["min"] = 23, - }, + ["max"] = 37, + ["min"] = 23, + }, ["Dagger"] = { - ["max"] = 37, - ["min"] = 23, - }, + ["max"] = 37, + ["min"] = 23, + }, ["Wand"] = { - ["max"] = 37, - ["min"] = 23, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4251717817", - ["text"] = "#% increased Area Damage", - ["type"] = "explicit", - }, - }, + ["max"] = 37, + ["min"] = 23, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4251717817", + ["text"] = "#% increased Area Damage", + ["type"] = "explicit", + }, + }, ["2035_SupportedByMeleeSplashDamage"] = { ["1HAxe"] = { - ["max"] = 37, - ["min"] = 23, - }, + ["max"] = 37, + ["min"] = 23, + }, ["1HMace"] = { - ["max"] = 37, - ["min"] = 23, - }, + ["max"] = 37, + ["min"] = 23, + }, ["1HSword"] = { - ["max"] = 37, - ["min"] = 23, - }, + ["max"] = 37, + ["min"] = 23, + }, ["1HWeapon"] = { - ["max"] = 37, - ["min"] = 23, - }, + ["max"] = 37, + ["min"] = 23, + }, ["2HAxe"] = { - ["max"] = 37, - ["min"] = 23, - }, + ["max"] = 37, + ["min"] = 23, + }, ["2HMace"] = { - ["max"] = 37, - ["min"] = 23, - }, + ["max"] = 37, + ["min"] = 23, + }, ["2HSword"] = { - ["max"] = 37, - ["min"] = 23, - }, + ["max"] = 37, + ["min"] = 23, + }, ["2HWeapon"] = { - ["max"] = 37, - ["min"] = 23, - }, + ["max"] = 37, + ["min"] = 23, + }, ["Claw"] = { - ["max"] = 37, - ["min"] = 23, - }, + ["max"] = 37, + ["min"] = 23, + }, ["Dagger"] = { - ["max"] = 37, - ["min"] = 23, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4251717817", - ["text"] = "#% increased Area Damage", - ["type"] = "explicit", - }, - }, + ["max"] = 37, + ["min"] = 23, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4251717817", + ["text"] = "#% increased Area Damage", + ["type"] = "explicit", + }, + }, ["2039_CullingStrike"] = { ["2HAxe"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["2HMace"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["2HSword"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["2HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Bow"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Gloves"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Staff"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_2524254339", - ["text"] = "Culling Strike", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_2524254339", + ["text"] = "Culling Strike", + ["type"] = "explicit", + }, + }, ["2039_CullingStrikeMaven"] = { ["2HAxe"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["2HMace"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["2HSword"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["2HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Bow"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Gloves"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Staff"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_2524254339", - ["text"] = "Culling Strike", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_2524254339", + ["text"] = "Culling Strike", + ["type"] = "explicit", + }, + }, ["2043_AlwaysHits"] = { ["1HAxe"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["1HMace"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["1HSword"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["1HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["2HAxe"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["2HMace"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["2HSword"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["2HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Claw"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Dagger"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Staff"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_4126210832", - ["text"] = "Hits can't be Evaded", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_4126210832", + ["text"] = "Hits can't be Evaded", + ["type"] = "explicit", + }, + }, ["2046_AttackAndCastSpeed"] = { ["Amulet"] = { - ["max"] = 8, - ["min"] = 3, - }, + ["max"] = 8, + ["min"] = 3, + }, ["Quiver"] = { - ["max"] = 8, - ["min"] = 3, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2672805335", - ["text"] = "#% increased Attack and Cast Speed", - ["type"] = "explicit", - }, - }, + ["max"] = 8, + ["min"] = 3, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2672805335", + ["text"] = "#% increased Attack and Cast Speed", + ["type"] = "explicit", + }, + }, ["2046_AttackAndCastSpeedForJewel"] = { ["AnyJewel"] = { - ["max"] = 4, - ["min"] = 2, - }, + ["max"] = 4, + ["min"] = 2, + }, ["BaseJewel"] = { - ["max"] = 4, - ["min"] = 2, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2672805335", - ["text"] = "#% increased Attack and Cast Speed", - ["type"] = "explicit", - }, - }, + ["max"] = 4, + ["min"] = 2, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2672805335", + ["text"] = "#% increased Attack and Cast Speed", + ["type"] = "explicit", + }, + }, ["2046_IncreasedAttackAndCastSpeedSupported"] = { ["Gloves"] = { - ["max"] = 14, - ["min"] = 7, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2672805335", - ["text"] = "#% increased Attack and Cast Speed", - ["type"] = "explicit", - }, - }, + ["max"] = 14, + ["min"] = 7, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2672805335", + ["text"] = "#% increased Attack and Cast Speed", + ["type"] = "explicit", + }, + }, ["2046_IncreasedAttackAndCastSpeedSupportedMaven"] = { ["Gloves"] = { - ["max"] = 14, - ["min"] = 13, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2672805335", - ["text"] = "#% increased Attack and Cast Speed", - ["type"] = "explicit", - }, - }, + ["max"] = 14, + ["min"] = 13, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2672805335", + ["text"] = "#% increased Attack and Cast Speed", + ["type"] = "explicit", + }, + }, ["204_SocketedGemQuality"] = { ["1HAxe"] = { - ["max"] = 8, - ["min"] = 6, - }, + ["max"] = 8, + ["min"] = 6, + }, ["1HMace"] = { - ["max"] = 8, - ["min"] = 6, - }, + ["max"] = 8, + ["min"] = 6, + }, ["1HSword"] = { - ["max"] = 8, - ["min"] = 6, - }, + ["max"] = 8, + ["min"] = 6, + }, ["1HWeapon"] = { - ["max"] = 8, - ["min"] = 6, - }, + ["max"] = 8, + ["min"] = 6, + }, ["2HAxe"] = { - ["max"] = 8, - ["min"] = 6, - }, + ["max"] = 8, + ["min"] = 6, + }, ["2HMace"] = { - ["max"] = 8, - ["min"] = 6, - }, + ["max"] = 8, + ["min"] = 6, + }, ["2HSword"] = { - ["max"] = 8, - ["min"] = 6, - }, + ["max"] = 8, + ["min"] = 6, + }, ["2HWeapon"] = { - ["max"] = 8, - ["min"] = 6, - }, + ["max"] = 8, + ["min"] = 6, + }, ["Bow"] = { - ["max"] = 8, - ["min"] = 6, - }, + ["max"] = 8, + ["min"] = 6, + }, ["Claw"] = { - ["max"] = 8, - ["min"] = 6, - }, + ["max"] = 8, + ["min"] = 6, + }, ["Dagger"] = { - ["max"] = 8, - ["min"] = 6, - }, + ["max"] = 8, + ["min"] = 6, + }, ["Shield"] = { - ["max"] = 8, - ["min"] = 6, - }, + ["max"] = 8, + ["min"] = 6, + }, ["Staff"] = { - ["max"] = 8, - ["min"] = 6, - }, + ["max"] = 8, + ["min"] = 6, + }, ["Wand"] = { - ["max"] = 8, - ["min"] = 6, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3828613551", - ["text"] = "+#% to Quality of Socketed Gems", - ["type"] = "explicit", - }, - }, + ["max"] = 8, + ["min"] = 6, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3828613551", + ["text"] = "+#% to Quality of Socketed Gems", + ["type"] = "explicit", + }, + }, ["2050_AccuracyRatingPerFrenzyChargeUber"] = { ["1HSword"] = { - ["max"] = 5, - ["min"] = 5, - }, + ["max"] = 5, + ["min"] = 5, + }, ["1HWeapon"] = { - ["max"] = 5, - ["min"] = 5, - }, + ["max"] = 5, + ["min"] = 5, + }, ["2HSword"] = { - ["max"] = 5, - ["min"] = 5, - }, + ["max"] = 5, + ["min"] = 5, + }, ["2HWeapon"] = { - ["max"] = 5, - ["min"] = 5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3700381193", - ["text"] = "#% increased Accuracy Rating per Frenzy Charge", - ["type"] = "explicit", - }, - }, + ["max"] = 5, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3700381193", + ["text"] = "#% increased Accuracy Rating per Frenzy Charge", + ["type"] = "explicit", + }, + }, ["2059_GlobalFlaskLifeRecovery"] = { ["Amulet"] = { - ["max"] = 30, - ["min"] = 20, - }, + ["max"] = 30, + ["min"] = 20, + }, ["Belt"] = { - ["max"] = 30, - ["min"] = 20, - }, + ["max"] = 30, + ["min"] = 20, + }, ["Ring"] = { - ["max"] = 30, - ["min"] = 20, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_821241191", - ["text"] = "#% increased Life Recovery from Flasks", - ["type"] = "explicit", - }, - }, + ["max"] = 30, + ["min"] = 20, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_821241191", + ["text"] = "#% increased Life Recovery from Flasks", + ["type"] = "explicit", + }, + }, ["205_IncreaseSocketedSupportGemQuality"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1328548975", - ["text"] = "+#% to Quality of Socketed Support Gems", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1328548975", + ["text"] = "+#% to Quality of Socketed Support Gems", + ["type"] = "explicit", + }, + }, ["205_LocalIncreaseSocketedSupportGemLevelAndQuality"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1328548975", - ["text"] = "+#% to Quality of Socketed Support Gems", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1328548975", + ["text"] = "+#% to Quality of Socketed Support Gems", + ["type"] = "explicit", + }, + }, ["205_LocalIncreaseSocketedSupportGemLevelMaven"] = { ["Chest"] = { - ["max"] = 10, - ["min"] = 5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1328548975", - ["text"] = "+#% to Quality of Socketed Support Gems", - ["type"] = "explicit", - }, - }, + ["max"] = 10, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1328548975", + ["text"] = "+#% to Quality of Socketed Support Gems", + ["type"] = "explicit", + }, + }, ["2060_ManaRecoveryRateMaven"] = { ["Chest"] = { - ["max"] = 35, - ["min"] = 20, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2222186378", - ["text"] = "#% increased Mana Recovery from Flasks", - ["type"] = "explicit", - }, - }, + ["max"] = 35, + ["min"] = 20, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2222186378", + ["text"] = "#% increased Mana Recovery from Flasks", + ["type"] = "explicit", + }, + }, ["2069_AddedPhysicalDamageWithAxes"] = { ["AbyssJewel"] = { - ["max"] = 9, - ["min"] = 2.5, - }, + ["max"] = 9, + ["min"] = 2.5, + }, ["AnyJewel"] = { - ["max"] = 9, - ["min"] = 2.5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_311030839", - ["text"] = "# to # Added Physical Damage with Axe Attacks", - ["type"] = "explicit", - }, - }, + ["max"] = 9, + ["min"] = 2.5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_311030839", + ["text"] = "# to # Added Physical Damage with Axe Attacks", + ["type"] = "explicit", + }, + }, ["206_LocalIncreaseSocketedActiveSkillGemLevelMaven"] = { ["Chest"] = { - ["max"] = 10, - ["min"] = 5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1325783255", - ["text"] = "+#% to Quality of Socketed Skill Gems", - ["type"] = "explicit", - }, - }, + ["max"] = 10, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1325783255", + ["text"] = "+#% to Quality of Socketed Skill Gems", + ["type"] = "explicit", + }, + }, ["2070_PhysicalDamageWithBowsJewel"] = { ["AbyssJewel"] = { - ["max"] = 9, - ["min"] = 2.5, - }, + ["max"] = 9, + ["min"] = 2.5, + }, ["AnyJewel"] = { - ["max"] = 9, - ["min"] = 2.5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1760576992", - ["text"] = "# to # Added Physical Damage with Bow Attacks", - ["type"] = "explicit", - }, - }, + ["max"] = 9, + ["min"] = 2.5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1760576992", + ["text"] = "# to # Added Physical Damage with Bow Attacks", + ["type"] = "explicit", + }, + }, ["2071_AddedPhysicalDamageWithClaws"] = { ["AbyssJewel"] = { - ["max"] = 9, - ["min"] = 2.5, - }, + ["max"] = 9, + ["min"] = 2.5, + }, ["AnyJewel"] = { - ["max"] = 9, - ["min"] = 2.5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3303015", - ["text"] = "# to # Added Physical Damage with Claw Attacks", - ["type"] = "explicit", - }, - }, + ["max"] = 9, + ["min"] = 2.5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3303015", + ["text"] = "# to # Added Physical Damage with Claw Attacks", + ["type"] = "explicit", + }, + }, ["2072_AddedPhysicalDamageWithDaggers"] = { ["AbyssJewel"] = { - ["max"] = 9, - ["min"] = 2.5, - }, + ["max"] = 9, + ["min"] = 2.5, + }, ["AnyJewel"] = { - ["max"] = 9, - ["min"] = 2.5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1298238534", - ["text"] = "# to # Added Physical Damage with Dagger Attacks", - ["type"] = "explicit", - }, - }, + ["max"] = 9, + ["min"] = 2.5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1298238534", + ["text"] = "# to # Added Physical Damage with Dagger Attacks", + ["type"] = "explicit", + }, + }, ["2073_AddedPhysicalDamageWithMaces"] = { ["AbyssJewel"] = { - ["max"] = 9, - ["min"] = 2.5, - }, + ["max"] = 9, + ["min"] = 2.5, + }, ["AnyJewel"] = { - ["max"] = 9, - ["min"] = 2.5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3882662078", - ["text"] = "# to # Added Physical Damage with Mace or Sceptre Attacks", - ["type"] = "explicit", - }, - }, + ["max"] = 9, + ["min"] = 2.5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3882662078", + ["text"] = "# to # Added Physical Damage with Mace or Sceptre Attacks", + ["type"] = "explicit", + }, + }, ["2074_AddedPhysicalDamageWithStaves"] = { ["AbyssJewel"] = { - ["max"] = 9, - ["min"] = 2.5, - }, + ["max"] = 9, + ["min"] = 2.5, + }, ["AnyJewel"] = { - ["max"] = 9, - ["min"] = 2.5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_69898010", - ["text"] = "# to # Added Physical Damage with Staff Attacks", - ["type"] = "explicit", - }, - }, + ["max"] = 9, + ["min"] = 2.5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_69898010", + ["text"] = "# to # Added Physical Damage with Staff Attacks", + ["type"] = "explicit", + }, + }, ["2075_AddedPhysicalDamageWithSwords"] = { ["AbyssJewel"] = { - ["max"] = 9, - ["min"] = 2.5, - }, + ["max"] = 9, + ["min"] = 2.5, + }, ["AnyJewel"] = { - ["max"] = 9, - ["min"] = 2.5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1040189894", - ["text"] = "# to # Added Physical Damage with Sword Attacks", - ["type"] = "explicit", - }, - }, + ["max"] = 9, + ["min"] = 2.5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1040189894", + ["text"] = "# to # Added Physical Damage with Sword Attacks", + ["type"] = "explicit", + }, + }, ["2076_AddedPhysicalDamageWithWands"] = { ["AbyssJewel"] = { - ["max"] = 9, - ["min"] = 2.5, - }, + ["max"] = 9, + ["min"] = 2.5, + }, ["AnyJewel"] = { - ["max"] = 9, - ["min"] = 2.5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_133683091", - ["text"] = "# to # Added Physical Damage with Wand Attacks", - ["type"] = "explicit", - }, - }, + ["max"] = 9, + ["min"] = 2.5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_133683091", + ["text"] = "# to # Added Physical Damage with Wand Attacks", + ["type"] = "explicit", + }, + }, ["2079_AddedFireDamageWithAxes"] = { ["AbyssJewel"] = { - ["max"] = 25, - ["min"] = 8, - }, + ["max"] = 25, + ["min"] = 8, + }, ["AnyJewel"] = { - ["max"] = 25, - ["min"] = 8, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2461965653", - ["text"] = "# to # Added Fire Damage with Axe Attacks", - ["type"] = "explicit", - }, - }, + ["max"] = 25, + ["min"] = 8, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2461965653", + ["text"] = "# to # Added Fire Damage with Axe Attacks", + ["type"] = "explicit", + }, + }, ["2080_FireDamageWithBowsJewel"] = { ["AbyssJewel"] = { - ["max"] = 25, - ["min"] = 8, - }, + ["max"] = 25, + ["min"] = 8, + }, ["AnyJewel"] = { - ["max"] = 25, - ["min"] = 8, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3120164895", - ["text"] = "# to # Added Fire Damage with Bow Attacks", - ["type"] = "explicit", - }, - }, + ["max"] = 25, + ["min"] = 8, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3120164895", + ["text"] = "# to # Added Fire Damage with Bow Attacks", + ["type"] = "explicit", + }, + }, ["2081_AddedFireDamageWithClaws"] = { ["AbyssJewel"] = { - ["max"] = 25, - ["min"] = 8, - }, + ["max"] = 25, + ["min"] = 8, + }, ["AnyJewel"] = { - ["max"] = 25, - ["min"] = 8, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2154290807", - ["text"] = "# to # Added Fire Damage with Claw Attacks", - ["type"] = "explicit", - }, - }, + ["max"] = 25, + ["min"] = 8, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2154290807", + ["text"] = "# to # Added Fire Damage with Claw Attacks", + ["type"] = "explicit", + }, + }, ["2082_AddedFireDamageWithDaggers"] = { ["AbyssJewel"] = { - ["max"] = 25, - ["min"] = 8, - }, + ["max"] = 25, + ["min"] = 8, + }, ["AnyJewel"] = { - ["max"] = 25, - ["min"] = 8, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1910361436", - ["text"] = "# to # Added Fire Damage with Dagger Attacks", - ["type"] = "explicit", - }, - }, + ["max"] = 25, + ["min"] = 8, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1910361436", + ["text"] = "# to # Added Fire Damage with Dagger Attacks", + ["type"] = "explicit", + }, + }, ["2083_AddedFireDamageWithMaces"] = { ["AbyssJewel"] = { - ["max"] = 25, - ["min"] = 8, - }, + ["max"] = 25, + ["min"] = 8, + }, ["AnyJewel"] = { - ["max"] = 25, - ["min"] = 8, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3146788701", - ["text"] = "# to # Added Fire Damage with Mace or Sceptre Attacks", - ["type"] = "explicit", - }, - }, + ["max"] = 25, + ["min"] = 8, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3146788701", + ["text"] = "# to # Added Fire Damage with Mace or Sceptre Attacks", + ["type"] = "explicit", + }, + }, ["2084_AddedFireDamageWithStaves"] = { ["AbyssJewel"] = { - ["max"] = 25, - ["min"] = 8, - }, + ["max"] = 25, + ["min"] = 8, + }, ["AnyJewel"] = { - ["max"] = 25, - ["min"] = 8, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3220927448", - ["text"] = "# to # Added Fire Damage with Staff Attacks", - ["type"] = "explicit", - }, - }, + ["max"] = 25, + ["min"] = 8, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3220927448", + ["text"] = "# to # Added Fire Damage with Staff Attacks", + ["type"] = "explicit", + }, + }, ["2085_AddedFireDamageWithSwords"] = { ["AbyssJewel"] = { - ["max"] = 25, - ["min"] = 8, - }, + ["max"] = 25, + ["min"] = 8, + }, ["AnyJewel"] = { - ["max"] = 25, - ["min"] = 8, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_601249293", - ["text"] = "# to # Added Fire Damage with Sword Attacks", - ["type"] = "explicit", - }, - }, + ["max"] = 25, + ["min"] = 8, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_601249293", + ["text"] = "# to # Added Fire Damage with Sword Attacks", + ["type"] = "explicit", + }, + }, ["2086_AddedFireDamageWithWands"] = { ["AbyssJewel"] = { - ["max"] = 25, - ["min"] = 8, - }, + ["max"] = 25, + ["min"] = 8, + }, ["AnyJewel"] = { - ["max"] = 25, - ["min"] = 8, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_87098247", - ["text"] = "# to # Added Fire Damage with Wand Attacks", - ["type"] = "explicit", - }, - }, + ["max"] = 25, + ["min"] = 8, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_87098247", + ["text"] = "# to # Added Fire Damage with Wand Attacks", + ["type"] = "explicit", + }, + }, ["2087_AddedColdDamageWithAxes"] = { ["AbyssJewel"] = { - ["max"] = 21.5, - ["min"] = 6.5, - }, + ["max"] = 21.5, + ["min"] = 6.5, + }, ["AnyJewel"] = { - ["max"] = 21.5, - ["min"] = 6.5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1782176131", - ["text"] = "# to # Added Cold Damage with Axe Attacks", - ["type"] = "explicit", - }, - }, + ["max"] = 21.5, + ["min"] = 6.5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1782176131", + ["text"] = "# to # Added Cold Damage with Axe Attacks", + ["type"] = "explicit", + }, + }, ["2088_AddedColdDamageWithBows"] = { ["AbyssJewel"] = { - ["max"] = 21.5, - ["min"] = 6.5, - }, + ["max"] = 21.5, + ["min"] = 6.5, + }, ["AnyJewel"] = { - ["max"] = 21.5, - ["min"] = 6.5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_215124030", - ["text"] = "# to # Added Cold Damage with Bow Attacks", - ["type"] = "explicit", - }, - }, + ["max"] = 21.5, + ["min"] = 6.5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_215124030", + ["text"] = "# to # Added Cold Damage with Bow Attacks", + ["type"] = "explicit", + }, + }, ["2089_AddedColdDamageWithClaws"] = { ["AbyssJewel"] = { - ["max"] = 21.5, - ["min"] = 6.5, - }, + ["max"] = 21.5, + ["min"] = 6.5, + }, ["AnyJewel"] = { - ["max"] = 21.5, - ["min"] = 6.5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2848646243", - ["text"] = "# to # Added Cold Damage with Claw Attacks", - ["type"] = "explicit", - }, - }, + ["max"] = 21.5, + ["min"] = 6.5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2848646243", + ["text"] = "# to # Added Cold Damage with Claw Attacks", + ["type"] = "explicit", + }, + }, ["2090_AddedColdDamageWithDaggers"] = { ["AbyssJewel"] = { - ["max"] = 21.5, - ["min"] = 6.5, - }, + ["max"] = 21.5, + ["min"] = 6.5, + }, ["AnyJewel"] = { - ["max"] = 21.5, - ["min"] = 6.5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1263342750", - ["text"] = "# to # Added Cold Damage with Dagger Attacks", - ["type"] = "explicit", - }, - }, + ["max"] = 21.5, + ["min"] = 6.5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1263342750", + ["text"] = "# to # Added Cold Damage with Dagger Attacks", + ["type"] = "explicit", + }, + }, ["2091_AddedColdDamageWithMaces"] = { ["AbyssJewel"] = { - ["max"] = 21.5, - ["min"] = 6.5, - }, + ["max"] = 21.5, + ["min"] = 6.5, + }, ["AnyJewel"] = { - ["max"] = 21.5, - ["min"] = 6.5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_187418672", - ["text"] = "# to # Added Cold Damage with Mace or Sceptre Attacks", - ["type"] = "explicit", - }, - }, + ["max"] = 21.5, + ["min"] = 6.5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_187418672", + ["text"] = "# to # Added Cold Damage with Mace or Sceptre Attacks", + ["type"] = "explicit", + }, + }, ["2092_AddedColdDamageWithStaves"] = { ["AbyssJewel"] = { - ["max"] = 21.5, - ["min"] = 6.5, - }, + ["max"] = 21.5, + ["min"] = 6.5, + }, ["AnyJewel"] = { - ["max"] = 21.5, - ["min"] = 6.5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1261958804", - ["text"] = "# to # Added Cold Damage with Staff Attacks", - ["type"] = "explicit", - }, - }, + ["max"] = 21.5, + ["min"] = 6.5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1261958804", + ["text"] = "# to # Added Cold Damage with Staff Attacks", + ["type"] = "explicit", + }, + }, ["2093_AddedColdDamageWithSwords"] = { ["AbyssJewel"] = { - ["max"] = 21.5, - ["min"] = 6.5, - }, + ["max"] = 21.5, + ["min"] = 6.5, + }, ["AnyJewel"] = { - ["max"] = 21.5, - ["min"] = 6.5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_972201717", - ["text"] = "# to # Added Cold Damage with Sword Attacks", - ["type"] = "explicit", - }, - }, + ["max"] = 21.5, + ["min"] = 6.5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_972201717", + ["text"] = "# to # Added Cold Damage with Sword Attacks", + ["type"] = "explicit", + }, + }, ["2094_AddedColdDamageWithWands"] = { ["AbyssJewel"] = { - ["max"] = 21.5, - ["min"] = 6.5, - }, + ["max"] = 21.5, + ["min"] = 6.5, + }, ["AnyJewel"] = { - ["max"] = 21.5, - ["min"] = 6.5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2383797932", - ["text"] = "# to # Added Cold Damage with Wand Attacks", - ["type"] = "explicit", - }, - }, + ["max"] = 21.5, + ["min"] = 6.5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2383797932", + ["text"] = "# to # Added Cold Damage with Wand Attacks", + ["type"] = "explicit", + }, + }, ["2095_AddedLightningDamageWithAxes"] = { ["AbyssJewel"] = { - ["max"] = 27.5, - ["min"] = 10, - }, + ["max"] = 27.5, + ["min"] = 10, + }, ["AnyJewel"] = { - ["max"] = 27.5, - ["min"] = 10, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1582068183", - ["text"] = "# to # Added Lightning Damage with Axe Attacks", - ["type"] = "explicit", - }, - }, + ["max"] = 27.5, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1582068183", + ["text"] = "# to # Added Lightning Damage with Axe Attacks", + ["type"] = "explicit", + }, + }, ["2096_AddedLightningDamageWithBows"] = { ["AbyssJewel"] = { - ["max"] = 27.5, - ["min"] = 10, - }, + ["max"] = 27.5, + ["min"] = 10, + }, ["AnyJewel"] = { - ["max"] = 27.5, - ["min"] = 10, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1040269876", - ["text"] = "# to # Added Lightning Damage with Bow Attacks", - ["type"] = "explicit", - }, - }, + ["max"] = 27.5, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1040269876", + ["text"] = "# to # Added Lightning Damage with Bow Attacks", + ["type"] = "explicit", + }, + }, ["2097_AddedLightningDamageWithClaws"] = { ["AbyssJewel"] = { - ["max"] = 27.5, - ["min"] = 10, - }, + ["max"] = 27.5, + ["min"] = 10, + }, ["AnyJewel"] = { - ["max"] = 27.5, - ["min"] = 10, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4231842891", - ["text"] = "# to # Added Lightning Damage with Claw Attacks", - ["type"] = "explicit", - }, - }, + ["max"] = 27.5, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4231842891", + ["text"] = "# to # Added Lightning Damage with Claw Attacks", + ["type"] = "explicit", + }, + }, ["2098_AddedLightningDamageWithDaggers"] = { ["AbyssJewel"] = { - ["max"] = 27.5, - ["min"] = 10, - }, + ["max"] = 27.5, + ["min"] = 10, + }, ["AnyJewel"] = { - ["max"] = 27.5, - ["min"] = 10, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3479683016", - ["text"] = "# to # Added Lightning Damage with Dagger Attacks", - ["type"] = "explicit", - }, - }, + ["max"] = 27.5, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3479683016", + ["text"] = "# to # Added Lightning Damage with Dagger Attacks", + ["type"] = "explicit", + }, + }, ["2099_AddedLightningDamageWithMaces"] = { ["AbyssJewel"] = { - ["max"] = 27.5, - ["min"] = 10, - }, + ["max"] = 27.5, + ["min"] = 10, + }, ["AnyJewel"] = { - ["max"] = 27.5, - ["min"] = 10, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2096159630", - ["text"] = "# to # Added Lightning Damage with Mace or Sceptre Attacks", - ["type"] = "explicit", - }, - }, + ["max"] = 27.5, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2096159630", + ["text"] = "# to # Added Lightning Damage with Mace or Sceptre Attacks", + ["type"] = "explicit", + }, + }, ["2100_AddedLightningDamageWithStaves"] = { ["AbyssJewel"] = { - ["max"] = 27.5, - ["min"] = 10, - }, + ["max"] = 27.5, + ["min"] = 10, + }, ["AnyJewel"] = { - ["max"] = 27.5, - ["min"] = 10, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3212481075", - ["text"] = "# to # Added Lightning Damage with Staff Attacks", - ["type"] = "explicit", - }, - }, + ["max"] = 27.5, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3212481075", + ["text"] = "# to # Added Lightning Damage with Staff Attacks", + ["type"] = "explicit", + }, + }, ["2101_AddedLightningDamageWithSwords"] = { ["AbyssJewel"] = { - ["max"] = 27.5, - ["min"] = 10, - }, + ["max"] = 27.5, + ["min"] = 10, + }, ["AnyJewel"] = { - ["max"] = 27.5, - ["min"] = 10, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1237708713", - ["text"] = "# to # Added Lightning Damage with Sword Attacks", - ["type"] = "explicit", - }, - }, + ["max"] = 27.5, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1237708713", + ["text"] = "# to # Added Lightning Damage with Sword Attacks", + ["type"] = "explicit", + }, + }, ["2102_AddedLightningDamageWithWands"] = { ["AbyssJewel"] = { - ["max"] = 27.5, - ["min"] = 10, - }, + ["max"] = 27.5, + ["min"] = 10, + }, ["AnyJewel"] = { - ["max"] = 27.5, - ["min"] = 10, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2787733863", - ["text"] = "# to # Added Lightning Damage with Wand Attacks", - ["type"] = "explicit", - }, - }, + ["max"] = 27.5, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2787733863", + ["text"] = "# to # Added Lightning Damage with Wand Attacks", + ["type"] = "explicit", + }, + }, ["2103_AddedChaosDamageWithBows"] = { ["AbyssJewel"] = { - ["max"] = 18.5, - ["min"] = 6.5, - }, + ["max"] = 18.5, + ["min"] = 6.5, + }, ["AnyJewel"] = { - ["max"] = 18.5, - ["min"] = 6.5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3478075311", - ["text"] = "# to # Added Chaos Damage with Bow Attacks", - ["type"] = "explicit", - }, - }, + ["max"] = 18.5, + ["min"] = 6.5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3478075311", + ["text"] = "# to # Added Chaos Damage with Bow Attacks", + ["type"] = "explicit", + }, + }, ["2104_AddedChaosDamageWithClaws"] = { ["AbyssJewel"] = { - ["max"] = 18.5, - ["min"] = 6.5, - }, + ["max"] = 18.5, + ["min"] = 6.5, + }, ["AnyJewel"] = { - ["max"] = 18.5, - ["min"] = 6.5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4191067677", - ["text"] = "# to # Added Chaos Damage with Claw Attacks", - ["type"] = "explicit", - }, - }, + ["max"] = 18.5, + ["min"] = 6.5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4191067677", + ["text"] = "# to # Added Chaos Damage with Claw Attacks", + ["type"] = "explicit", + }, + }, ["2105_AddedChaosDamageWithDaggers"] = { ["AbyssJewel"] = { - ["max"] = 18.5, - ["min"] = 6.5, - }, + ["max"] = 18.5, + ["min"] = 6.5, + }, ["AnyJewel"] = { - ["max"] = 18.5, - ["min"] = 6.5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3248691197", - ["text"] = "# to # Added Chaos Damage with Dagger Attacks", - ["type"] = "explicit", - }, - }, + ["max"] = 18.5, + ["min"] = 6.5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3248691197", + ["text"] = "# to # Added Chaos Damage with Dagger Attacks", + ["type"] = "explicit", + }, + }, ["2106_SpellAddedChaosDamageWhileDualWielding"] = { ["AbyssJewel"] = { - ["max"] = 20.5, - ["min"] = 2, - }, + ["max"] = 20.5, + ["min"] = 2, + }, ["AnyJewel"] = { - ["max"] = 20.5, - ["min"] = 2, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1865428306", - ["text"] = "# to # Added Spell Chaos Damage while Dual Wielding", - ["type"] = "explicit", - }, - }, + ["max"] = 20.5, + ["min"] = 2, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1865428306", + ["text"] = "# to # Added Spell Chaos Damage while Dual Wielding", + ["type"] = "explicit", + }, + }, ["2107_SpellAddedChaosDamageWhileHoldingAShield"] = { ["AbyssJewel"] = { - ["max"] = 20.5, - ["min"] = 2, - }, + ["max"] = 20.5, + ["min"] = 2, + }, ["AnyJewel"] = { - ["max"] = 20.5, - ["min"] = 2, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1181129483", - ["text"] = "# to # Added Spell Chaos Damage while holding a Shield", - ["type"] = "explicit", - }, - }, + ["max"] = 20.5, + ["min"] = 2, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1181129483", + ["text"] = "# to # Added Spell Chaos Damage while holding a Shield", + ["type"] = "explicit", + }, + }, ["2108_SpellAddedChaosDamageWhileWieldingTwoHandedWeapon"] = { ["AbyssJewel"] = { - ["max"] = 20.5, - ["min"] = 2, - }, + ["max"] = 20.5, + ["min"] = 2, + }, ["AnyJewel"] = { - ["max"] = 20.5, - ["min"] = 2, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1743759111", - ["text"] = "# to # Added Spell Chaos Damage while wielding a Two Handed Weapon", - ["type"] = "explicit", - }, - }, + ["max"] = 20.5, + ["min"] = 2, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1743759111", + ["text"] = "# to # Added Spell Chaos Damage while wielding a Two Handed Weapon", + ["type"] = "explicit", + }, + }, ["2109_SpellAddedColdDamageWhileDualWielding"] = { ["AbyssJewel"] = { - ["max"] = 29.5, - ["min"] = 3.5, - }, + ["max"] = 29.5, + ["min"] = 3.5, + }, ["AnyJewel"] = { - ["max"] = 29.5, - ["min"] = 3.5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3376452528", - ["text"] = "# to # Added Spell Cold Damage while Dual Wielding", - ["type"] = "explicit", - }, - }, + ["max"] = 29.5, + ["min"] = 3.5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3376452528", + ["text"] = "# to # Added Spell Cold Damage while Dual Wielding", + ["type"] = "explicit", + }, + }, ["210_LocalIncreaseSocketedChaosGemLevelMaven"] = { ["Boots"] = { - ["max"] = 7, - ["min"] = 3, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2062835769", - ["text"] = "+#% to Quality of Socketed Chaos Gems", - ["type"] = "explicit", - }, - }, + ["max"] = 7, + ["min"] = 3, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2062835769", + ["text"] = "+#% to Quality of Socketed Chaos Gems", + ["type"] = "explicit", + }, + }, ["2110_SpellAddedColdDamageWhileHoldingAShield"] = { ["AbyssJewel"] = { - ["max"] = 29.5, - ["min"] = 3.5, - }, + ["max"] = 29.5, + ["min"] = 3.5, + }, ["AnyJewel"] = { - ["max"] = 29.5, - ["min"] = 3.5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2671663397", - ["text"] = "# to # Added Spell Cold Damage while holding a Shield", - ["type"] = "explicit", - }, - }, + ["max"] = 29.5, + ["min"] = 3.5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2671663397", + ["text"] = "# to # Added Spell Cold Damage while holding a Shield", + ["type"] = "explicit", + }, + }, ["2111_SpellAddedColdDamageWhileWieldingTwoHandedWeapon"] = { ["AbyssJewel"] = { - ["max"] = 29.5, - ["min"] = 3.5, - }, + ["max"] = 29.5, + ["min"] = 3.5, + }, ["AnyJewel"] = { - ["max"] = 29.5, - ["min"] = 3.5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2464689927", - ["text"] = "# to # Added Spell Cold Damage while wielding a Two Handed Weapon", - ["type"] = "explicit", - }, - }, + ["max"] = 29.5, + ["min"] = 3.5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2464689927", + ["text"] = "# to # Added Spell Cold Damage while wielding a Two Handed Weapon", + ["type"] = "explicit", + }, + }, ["2112_SpellAddedFireDamageWhileDualWielding"] = { ["AbyssJewel"] = { - ["max"] = 29.5, - ["min"] = 3.5, - }, + ["max"] = 29.5, + ["min"] = 3.5, + }, ["AnyJewel"] = { - ["max"] = 29.5, - ["min"] = 3.5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_662691280", - ["text"] = "# to # Added Spell Fire Damage while Dual Wielding", - ["type"] = "explicit", - }, - }, + ["max"] = 29.5, + ["min"] = 3.5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_662691280", + ["text"] = "# to # Added Spell Fire Damage while Dual Wielding", + ["type"] = "explicit", + }, + }, ["2113_SpellAddedFireDamageWhileHoldingAShield"] = { ["AbyssJewel"] = { - ["max"] = 29.5, - ["min"] = 3.5, - }, + ["max"] = 29.5, + ["min"] = 3.5, + }, ["AnyJewel"] = { - ["max"] = 29.5, - ["min"] = 3.5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_44182350", - ["text"] = "# to # Added Spell Fire Damage while holding a Shield", - ["type"] = "explicit", - }, - }, + ["max"] = 29.5, + ["min"] = 3.5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_44182350", + ["text"] = "# to # Added Spell Fire Damage while holding a Shield", + ["type"] = "explicit", + }, + }, ["2114_SpellAddedFireDamageWhileWieldingTwoHandedWeapon"] = { ["AbyssJewel"] = { - ["max"] = 29.5, - ["min"] = 3.5, - }, + ["max"] = 29.5, + ["min"] = 3.5, + }, ["AnyJewel"] = { - ["max"] = 29.5, - ["min"] = 3.5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2135335407", - ["text"] = "# to # Added Spell Fire Damage while wielding a Two Handed Weapon", - ["type"] = "explicit", - }, - }, + ["max"] = 29.5, + ["min"] = 3.5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2135335407", + ["text"] = "# to # Added Spell Fire Damage while wielding a Two Handed Weapon", + ["type"] = "explicit", + }, + }, ["2115_SpellAddedLightningDamageWhileDualWielding"] = { ["AbyssJewel"] = { - ["max"] = 28.5, - ["min"] = 3.5, - }, + ["max"] = 28.5, + ["min"] = 3.5, + }, ["AnyJewel"] = { - ["max"] = 28.5, - ["min"] = 3.5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3352373076", - ["text"] = "# to # Added Spell Lightning Damage while Dual Wielding", - ["type"] = "explicit", - }, - }, + ["max"] = 28.5, + ["min"] = 3.5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3352373076", + ["text"] = "# to # Added Spell Lightning Damage while Dual Wielding", + ["type"] = "explicit", + }, + }, ["2116_SpellAddedLightningDamageWhileHoldingAShield"] = { ["AbyssJewel"] = { - ["max"] = 28.5, - ["min"] = 3.5, - }, + ["max"] = 28.5, + ["min"] = 3.5, + }, ["AnyJewel"] = { - ["max"] = 28.5, - ["min"] = 3.5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1801889979", - ["text"] = "# to # Added Spell Lightning Damage while holding a Shield", - ["type"] = "explicit", - }, - }, + ["max"] = 28.5, + ["min"] = 3.5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1801889979", + ["text"] = "# to # Added Spell Lightning Damage while holding a Shield", + ["type"] = "explicit", + }, + }, ["2117_SpellAddedLightningDamageWhileWieldingTwoHandedWeapon"] = { ["AbyssJewel"] = { - ["max"] = 28.5, - ["min"] = 3.5, - }, + ["max"] = 28.5, + ["min"] = 3.5, + }, ["AnyJewel"] = { - ["max"] = 28.5, - ["min"] = 3.5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2398198236", - ["text"] = "# to # Added Spell Lightning Damage while wielding a Two Handed Weapon", - ["type"] = "explicit", - }, - }, + ["max"] = 28.5, + ["min"] = 3.5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2398198236", + ["text"] = "# to # Added Spell Lightning Damage while wielding a Two Handed Weapon", + ["type"] = "explicit", + }, + }, ["2118_SpellAddedPhysicalDamageWhileDualWielding"] = { ["AbyssJewel"] = { - ["max"] = 20.5, - ["min"] = 2, - }, + ["max"] = 20.5, + ["min"] = 2, + }, ["AnyJewel"] = { - ["max"] = 20.5, - ["min"] = 2, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4255924189", - ["text"] = "# to # Added Spell Physical Damage while Dual Wielding", - ["type"] = "explicit", - }, - }, + ["max"] = 20.5, + ["min"] = 2, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4255924189", + ["text"] = "# to # Added Spell Physical Damage while Dual Wielding", + ["type"] = "explicit", + }, + }, ["2119_SpellAddedPhysicalDamageWhileHoldingAShield"] = { ["AbyssJewel"] = { - ["max"] = 20.5, - ["min"] = 2, - }, + ["max"] = 20.5, + ["min"] = 2, + }, ["AnyJewel"] = { - ["max"] = 20.5, - ["min"] = 2, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3954157711", - ["text"] = "# to # Added Spell Physical Damage while holding a Shield", - ["type"] = "explicit", - }, - }, + ["max"] = 20.5, + ["min"] = 2, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3954157711", + ["text"] = "# to # Added Spell Physical Damage while holding a Shield", + ["type"] = "explicit", + }, + }, ["211_LocalIncreaseSocketedColdGemLevelMaven"] = { ["Boots"] = { - ["max"] = 7, - ["min"] = 3, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1164882313", - ["text"] = "+#% to Quality of Socketed Cold Gems", - ["type"] = "explicit", - }, - }, + ["max"] = 7, + ["min"] = 3, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1164882313", + ["text"] = "+#% to Quality of Socketed Cold Gems", + ["type"] = "explicit", + }, + }, ["2120_SpellAddedPhysicalDamageWhileWieldingTwoHandedWeapon"] = { ["AbyssJewel"] = { - ["max"] = 20.5, - ["min"] = 2, - }, + ["max"] = 20.5, + ["min"] = 2, + }, ["AnyJewel"] = { - ["max"] = 20.5, - ["min"] = 2, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2921084940", - ["text"] = "# to # Added Spell Physical Damage while wielding a Two Handed Weapon", - ["type"] = "explicit", - }, - }, + ["max"] = 20.5, + ["min"] = 2, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2921084940", + ["text"] = "# to # Added Spell Physical Damage while wielding a Two Handed Weapon", + ["type"] = "explicit", + }, + }, ["2124_AdditionalBlockChancePerEnduranceChargeUber"] = { ["1HSword"] = { - ["max"] = 25, - ["min"] = 20, - }, + ["max"] = 25, + ["min"] = 20, + }, ["1HWeapon"] = { - ["max"] = 25, - ["min"] = 20, - }, + ["max"] = 25, + ["min"] = 20, + }, ["2HSword"] = { - ["max"] = 25, - ["min"] = 20, - }, + ["max"] = 25, + ["min"] = 20, + }, ["2HWeapon"] = { - ["max"] = 25, - ["min"] = 20, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_417188801", - ["text"] = "#% chance to gain an Endurance Charge when you Block", - ["type"] = "explicit", - }, - }, + ["max"] = 25, + ["min"] = 20, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_417188801", + ["text"] = "#% chance to gain an Endurance Charge when you Block", + ["type"] = "explicit", + }, + }, ["2125_EnduranceChargeDurationForJewel"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1170174456", - ["text"] = "#% increased Endurance Charge Duration", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1170174456", + ["text"] = "#% increased Endurance Charge Duration", + ["type"] = "explicit", + }, + }, ["2125_EnduranceChargeOnKillChanceMaven"] = { ["1HAxe"] = { - ["max"] = 50, - ["min"] = 50, - }, + ["max"] = 50, + ["min"] = 50, + }, ["1HMace"] = { - ["max"] = 50, - ["min"] = 50, - }, + ["max"] = 50, + ["min"] = 50, + }, ["1HSword"] = { - ["max"] = 50, - ["min"] = 50, - }, + ["max"] = 50, + ["min"] = 50, + }, ["1HWeapon"] = { - ["max"] = 50, - ["min"] = 50, - }, + ["max"] = 50, + ["min"] = 50, + }, ["2HAxe"] = { - ["max"] = 50, - ["min"] = 50, - }, + ["max"] = 50, + ["min"] = 50, + }, ["2HMace"] = { - ["max"] = 50, - ["min"] = 50, - }, + ["max"] = 50, + ["min"] = 50, + }, ["2HSword"] = { - ["max"] = 50, - ["min"] = 50, - }, + ["max"] = 50, + ["min"] = 50, + }, ["2HWeapon"] = { - ["max"] = 50, - ["min"] = 50, - }, + ["max"] = 50, + ["min"] = 50, + }, ["Boots"] = { - ["max"] = 50, - ["min"] = 50, - }, + ["max"] = 50, + ["min"] = 50, + }, ["Staff"] = { - ["max"] = 50, - ["min"] = 50, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1170174456", - ["text"] = "#% increased Endurance Charge Duration", - ["type"] = "explicit", - }, - }, + ["max"] = 50, + ["min"] = 50, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1170174456", + ["text"] = "#% increased Endurance Charge Duration", + ["type"] = "explicit", + }, + }, ["2127_FrenzyChargeDurationForJewel"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_3338298622", - ["text"] = "#% increased Frenzy Charge Duration", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_3338298622", + ["text"] = "#% increased Frenzy Charge Duration", + ["type"] = "explicit", + }, + }, ["2127_FrenzyChargeOnKillChanceMaven"] = { ["1HAxe"] = { - ["max"] = 50, - ["min"] = 50, - }, + ["max"] = 50, + ["min"] = 50, + }, ["1HSword"] = { - ["max"] = 50, - ["min"] = 50, - }, + ["max"] = 50, + ["min"] = 50, + }, ["1HWeapon"] = { - ["max"] = 50, - ["min"] = 50, - }, + ["max"] = 50, + ["min"] = 50, + }, ["2HAxe"] = { - ["max"] = 50, - ["min"] = 50, - }, + ["max"] = 50, + ["min"] = 50, + }, ["2HSword"] = { - ["max"] = 50, - ["min"] = 50, - }, + ["max"] = 50, + ["min"] = 50, + }, ["2HWeapon"] = { - ["max"] = 50, - ["min"] = 50, - }, + ["max"] = 50, + ["min"] = 50, + }, ["Bow"] = { - ["max"] = 50, - ["min"] = 50, - }, + ["max"] = 50, + ["min"] = 50, + }, ["Claw"] = { - ["max"] = 50, - ["min"] = 50, - }, + ["max"] = 50, + ["min"] = 50, + }, ["Dagger"] = { - ["max"] = 50, - ["min"] = 50, - }, + ["max"] = 50, + ["min"] = 50, + }, ["Gloves"] = { - ["max"] = 50, - ["min"] = 50, - }, + ["max"] = 50, + ["min"] = 50, + }, ["Quiver"] = { - ["max"] = 50, - ["min"] = 50, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3338298622", - ["text"] = "#% increased Frenzy Charge Duration", - ["type"] = "explicit", - }, - }, + ["max"] = 50, + ["min"] = 50, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3338298622", + ["text"] = "#% increased Frenzy Charge Duration", + ["type"] = "explicit", + }, + }, ["2135_DamageOverTimeWhileDualWielding"] = { ["AbyssJewel"] = { - ["max"] = 18, - ["min"] = 10, - }, + ["max"] = 18, + ["min"] = 10, + }, ["AnyJewel"] = { - ["max"] = 18, - ["min"] = 10, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_214001793", - ["text"] = "#% increased Damage over Time while Dual Wielding", - ["type"] = "explicit", - }, - }, + ["max"] = 18, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_214001793", + ["text"] = "#% increased Damage over Time while Dual Wielding", + ["type"] = "explicit", + }, + }, ["2136_DamageOverTimeWhileHoldingAShield"] = { ["AbyssJewel"] = { - ["max"] = 18, - ["min"] = 10, - }, + ["max"] = 18, + ["min"] = 10, + }, ["AnyJewel"] = { - ["max"] = 18, - ["min"] = 10, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1244360317", - ["text"] = "#% increased Damage over Time while holding a Shield", - ["type"] = "explicit", - }, - }, + ["max"] = 18, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1244360317", + ["text"] = "#% increased Damage over Time while holding a Shield", + ["type"] = "explicit", + }, + }, ["2137_DamageOverTimeWhileWieldingTwoHandedWeapon"] = { ["AbyssJewel"] = { - ["max"] = 18, - ["min"] = 10, - }, + ["max"] = 18, + ["min"] = 10, + }, ["AnyJewel"] = { - ["max"] = 18, - ["min"] = 10, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4193088553", - ["text"] = "#% increased Damage over Time while wielding a Two Handed Weapon", - ["type"] = "explicit", - }, - }, + ["max"] = 18, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4193088553", + ["text"] = "#% increased Damage over Time while wielding a Two Handed Weapon", + ["type"] = "explicit", + }, + }, ["2142_PowerChargeDurationForJewel"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_3872306017", - ["text"] = "#% increased Power Charge Duration", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_3872306017", + ["text"] = "#% increased Power Charge Duration", + ["type"] = "explicit", + }, + }, ["2142_PowerChargeOnKillChanceMaven"] = { ["1HMace"] = { - ["max"] = 50, - ["min"] = 50, - }, + ["max"] = 50, + ["min"] = 50, + }, ["1HWeapon"] = { - ["max"] = 50, - ["min"] = 50, - }, + ["max"] = 50, + ["min"] = 50, + }, ["2HWeapon"] = { - ["max"] = 50, - ["min"] = 50, - }, + ["max"] = 50, + ["min"] = 50, + }, ["Claw"] = { - ["max"] = 50, - ["min"] = 50, - }, + ["max"] = 50, + ["min"] = 50, + }, ["Dagger"] = { - ["max"] = 50, - ["min"] = 50, - }, + ["max"] = 50, + ["min"] = 50, + }, ["Helmet"] = { - ["max"] = 50, - ["min"] = 50, - }, + ["max"] = 50, + ["min"] = 50, + }, ["Staff"] = { - ["max"] = 50, - ["min"] = 50, - }, + ["max"] = 50, + ["min"] = 50, + }, ["Wand"] = { - ["max"] = 50, - ["min"] = 50, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3872306017", - ["text"] = "#% increased Power Charge Duration", - ["type"] = "explicit", - }, - }, + ["max"] = 50, + ["min"] = 50, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3872306017", + ["text"] = "#% increased Power Charge Duration", + ["type"] = "explicit", + }, + }, ["214_LocalIncreaseSocketedFireGemLevelMaven"] = { ["Boots"] = { - ["max"] = 7, - ["min"] = 3, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3422008440", - ["text"] = "+#% to Quality of Socketed Fire Gems", - ["type"] = "explicit", - }, - }, + ["max"] = 7, + ["min"] = 3, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3422008440", + ["text"] = "+#% to Quality of Socketed Fire Gems", + ["type"] = "explicit", + }, + }, ["2157_IncreasedLifeLeechRate"] = { ["Amulet"] = { - ["max"] = 150, - ["min"] = 150, - }, + ["max"] = 150, + ["min"] = 150, + }, ["Ring"] = { - ["max"] = 50, - ["min"] = 35, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2633745731", - ["text"] = "#% increased total Recovery per second from Life Leech", - ["type"] = "explicit", - }, - }, + ["max"] = 50, + ["min"] = 35, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2633745731", + ["text"] = "#% increased total Recovery per second from Life Leech", + ["type"] = "explicit", + }, + }, ["2157_LifeLeechSpeed"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_2633745731", - ["text"] = "#% increased total Recovery per second from Life Leech", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_2633745731", + ["text"] = "#% increased total Recovery per second from Life Leech", + ["type"] = "explicit", + }, + }, ["2160_MaximumMinionCount"] = { ["Amulet"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Helmet"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_966747987", - ["text"] = "+# to maximum number of Raised Zombies", - ["type"] = "explicit", - }, - }, + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_966747987", + ["text"] = "+# to maximum number of Raised Zombies", + ["type"] = "explicit", + }, + }, ["2160_MaximumMinionCountAndMinionLife"] = { ["Helmet"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_966747987", - ["text"] = "+# to maximum number of Raised Zombies", - ["type"] = "explicit", - }, - }, + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_966747987", + ["text"] = "+# to maximum number of Raised Zombies", + ["type"] = "explicit", + }, + }, ["2161_MaximumMinionCount"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_125218179", - ["text"] = "+# to maximum number of Spectres", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_125218179", + ["text"] = "+# to maximum number of Spectres", + ["type"] = "explicit", + }, + }, ["2161_MaximumSpectreCount"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_125218179", - ["text"] = "+# to maximum number of Spectres", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_125218179", + ["text"] = "+# to maximum number of Spectres", + ["type"] = "explicit", + }, + }, ["2162_MaximumMinionCount"] = { ["Amulet"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Helmet"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1225383362", - ["text"] = "+# to maximum number of Skeletons", - ["type"] = "explicit", - }, - }, + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1225383362", + ["text"] = "+# to maximum number of Skeletons", + ["type"] = "explicit", + }, + }, ["2162_MaximumMinionCountAndMinionLife"] = { ["Helmet"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1225383362", - ["text"] = "+# to maximum number of Skeletons", - ["type"] = "explicit", - }, - }, + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1225383362", + ["text"] = "+# to maximum number of Skeletons", + ["type"] = "explicit", + }, + }, ["2168_AdditionalCurseOnEnemies"] = { ["Chest"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["sign"] = "", - ["specialCaseData"] = { - ["overrideModLineSingular"] = "You can apply an additional Curse", - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_30642521", - ["text"] = "You can apply # additional Curses", - ["type"] = "explicit", - }, - }, + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLineSingular"] = "You can apply an additional Curse", + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_30642521", + ["text"] = "You can apply # additional Curses", + ["type"] = "explicit", + }, + }, ["2168_AdditionalCurseOnEnemiesMaven"] = { ["Chest"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["sign"] = "", - ["specialCaseData"] = { - ["overrideModLineSingular"] = "You can apply an additional Curse", - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_30642521", - ["text"] = "You can apply # additional Curses", - ["type"] = "explicit", - }, - }, + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLineSingular"] = "You can apply an additional Curse", + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_30642521", + ["text"] = "You can apply # additional Curses", + ["type"] = "explicit", + }, + }, ["2168_OLDAdditionalCurseOnEnemiesMaven"] = { ["Chest"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["sign"] = "", - ["specialCaseData"] = { - ["overrideModLineSingular"] = "You can apply an additional Curse", - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_30642521", - ["text"] = "You can apply # additional Curses", - ["type"] = "explicit", - }, - }, + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLineSingular"] = "You can apply an additional Curse", + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_30642521", + ["text"] = "You can apply # additional Curses", + ["type"] = "explicit", + }, + }, ["216_LocalIncreaseSocketedLightningGemLevelMaven"] = { ["Boots"] = { - ["max"] = 7, - ["min"] = 3, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1065580342", - ["text"] = "+#% to Quality of Socketed Lightning Gems", - ["type"] = "explicit", - }, - }, + ["max"] = 7, + ["min"] = 3, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1065580342", + ["text"] = "+#% to Quality of Socketed Lightning Gems", + ["type"] = "explicit", + }, + }, ["2170_CurseEffectOnYouJewel"] = { ["AnyJewel"] = { - ["max"] = 30, - ["min"] = 25, - }, + ["max"] = 30, + ["min"] = 25, + }, ["BaseJewel"] = { - ["max"] = 30, - ["min"] = 25, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3407849389", - ["text"] = "#% reduced Effect of Curses on you", - ["type"] = "explicit", - }, - }, + ["max"] = 30, + ["min"] = 25, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3407849389", + ["text"] = "#% reduced Effect of Curses on you", + ["type"] = "explicit", + }, + }, ["2170_ReducedCurseEffect"] = { ["Ring"] = { - ["max"] = 40, - ["min"] = 16, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3407849389", - ["text"] = "#% reduced Effect of Curses on you", - ["type"] = "explicit", - }, - }, + ["max"] = 40, + ["min"] = 16, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3407849389", + ["text"] = "#% reduced Effect of Curses on you", + ["type"] = "explicit", + }, + }, ["2181_IgnoreArmourMovementPenalties"] = { ["Helmet"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1311723478", - ["text"] = "Ignore all Movement Penalties from Armour", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1311723478", + ["text"] = "Ignore all Movement Penalties from Armour", + ["type"] = "explicit", + }, + }, ["2183_BeltIncreasedFlaskChargesGained"] = { ["Belt"] = { - ["max"] = 40, - ["min"] = 5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1452809865", - ["text"] = "#% increased Flask Charges gained", - ["type"] = "explicit", - }, - }, + ["max"] = 40, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1452809865", + ["text"] = "#% increased Flask Charges gained", + ["type"] = "explicit", + }, + }, ["2183_FlaskEffectAndFlaskChargesGained"] = { ["Belt"] = { - ["max"] = -20, - ["min"] = -33, - }, - ["inverseKey"] = "reduced", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1452809865", - ["text"] = "#% increased Flask Charges gained", - ["type"] = "explicit", - }, - }, + ["max"] = -20, + ["min"] = -33, + }, + ["inverseKey"] = "reduced", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1452809865", + ["text"] = "#% increased Flask Charges gained", + ["type"] = "explicit", + }, + }, ["2184_BeltReducedFlaskChargesUsed"] = { ["Belt"] = { - ["max"] = 20, - ["min"] = 10, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_644456512", - ["text"] = "#% reduced Flask Charges used", - ["type"] = "explicit", - }, - }, + ["max"] = 20, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_644456512", + ["text"] = "#% reduced Flask Charges used", + ["type"] = "explicit", + }, + }, ["2187_BeltIncreasedFlaskDuration"] = { ["AnyJewel"] = { - ["max"] = 10, - ["min"] = 6, - }, + ["max"] = 10, + ["min"] = 6, + }, ["BaseJewel"] = { - ["max"] = 10, - ["min"] = 6, - }, + ["max"] = 10, + ["min"] = 6, + }, ["Belt"] = { - ["max"] = 33, - ["min"] = 4, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3741323227", - ["text"] = "#% increased Flask Effect Duration", - ["type"] = "explicit", - }, - }, + ["max"] = 33, + ["min"] = 4, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3741323227", + ["text"] = "#% increased Flask Effect Duration", + ["type"] = "explicit", + }, + }, ["2189_BeltFlaskLifeRecoveryRate"] = { ["Belt"] = { - ["max"] = 40, - ["min"] = 5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_51994685", - ["text"] = "#% increased Flask Life Recovery rate", - ["type"] = "explicit", - }, - }, + ["max"] = 40, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_51994685", + ["text"] = "#% increased Flask Life Recovery rate", + ["type"] = "explicit", + }, + }, ["2190_BeltFlaskManaRecoveryRate"] = { ["Belt"] = { - ["max"] = 40, - ["min"] = 5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1412217137", - ["text"] = "#% increased Flask Mana Recovery rate", - ["type"] = "explicit", - }, - }, + ["max"] = 40, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1412217137", + ["text"] = "#% increased Flask Mana Recovery rate", + ["type"] = "explicit", + }, + }, ["2202_AttackerTakesDamageNoRange"] = { ["Belt"] = { - ["max"] = 200, - ["min"] = 1, - }, + ["max"] = 200, + ["min"] = 1, + }, ["Boots"] = { - ["max"] = 200, - ["min"] = 1, - }, + ["max"] = 200, + ["min"] = 1, + }, ["Chest"] = { - ["max"] = 200, - ["min"] = 1, - }, + ["max"] = 200, + ["min"] = 1, + }, ["Helmet"] = { - ["max"] = 200, - ["min"] = 1, - }, + ["max"] = 200, + ["min"] = 1, + }, ["Shield"] = { - ["max"] = 200, - ["min"] = 1, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3767873853", - ["text"] = "Reflects # Physical Damage to Melee Attackers", - ["type"] = "explicit", - }, - }, + ["max"] = 200, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3767873853", + ["text"] = "Reflects # Physical Damage to Melee Attackers", + ["type"] = "explicit", + }, + }, ["2214_CurseCastSpeedForJewel"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_2378065031", - ["text"] = "Curse Skills have #% increased Cast Speed", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_2378065031", + ["text"] = "Curse Skills have #% increased Cast Speed", + ["type"] = "explicit", + }, + }, ["2224_AuraRadiusForJewel"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_895264825", - ["text"] = "#% increased Area of Effect of Aura Skills", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_895264825", + ["text"] = "#% increased Area of Effect of Aura Skills", + ["type"] = "explicit", + }, + }, ["2225_CurseAreaOfEffect"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_153777645", - ["text"] = "#% increased Area of Effect of Hex Skills", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_153777645", + ["text"] = "#% increased Area of Effect of Hex Skills", + ["type"] = "explicit", + }, + }, ["2225_CurseRadiusForJewel"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_153777645", - ["text"] = "#% increased Area of Effect of Hex Skills", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_153777645", + ["text"] = "#% increased Area of Effect of Hex Skills", + ["type"] = "explicit", + }, + }, ["2226_LifeReservationEfficiency"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_635485889", - ["text"] = "#% increased Life Reservation Efficiency of Skills", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_635485889", + ["text"] = "#% increased Life Reservation Efficiency of Skills", + ["type"] = "explicit", + }, + }, ["2228_ManaReservationEfficiency"] = { ["Amulet"] = { - ["max"] = 14, - ["min"] = 4, - }, + ["max"] = 14, + ["min"] = 4, + }, ["AnyJewel"] = { - ["max"] = 3, - ["min"] = 2, - }, + ["max"] = 3, + ["min"] = 2, + }, ["BaseJewel"] = { - ["max"] = 3, - ["min"] = 2, - }, + ["max"] = 3, + ["min"] = 2, + }, ["Chest"] = { - ["max"] = 10, - ["min"] = 3, - }, + ["max"] = 10, + ["min"] = 3, + }, ["Helmet"] = { - ["max"] = 14, - ["min"] = 3, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4237190083", - ["text"] = "#% increased Mana Reservation Efficiency of Skills", - ["type"] = "explicit", - }, - }, + ["max"] = 14, + ["min"] = 3, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1269219558", + ["text"] = "#% increased Mana Reservation Efficiency of Skills", + ["type"] = "explicit", + }, + }, ["2232_IncreasedManaAndReservation"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_4237190083", - ["text"] = "#% increased Mana Reservation Efficiency of Skills", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1269219558", + ["text"] = "#% increased Mana Reservation Efficiency of Skills", + ["type"] = "explicit", + }, + }, ["2232_ReducedReservation"] = { ["Amulet"] = { - ["max"] = 14, - ["min"] = 12, - }, + ["max"] = 14, + ["min"] = 12, + }, ["Helmet"] = { - ["max"] = 14, - ["min"] = 8, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4237190083", - ["text"] = "#% increased Mana Reservation Efficiency of Skills", - ["type"] = "explicit", - }, - }, + ["max"] = 14, + ["min"] = 8, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1269219558", + ["text"] = "#% increased Mana Reservation Efficiency of Skills", + ["type"] = "explicit", + }, + }, ["2234_PhysicalAttackDamageTaken"] = { ["Belt"] = { - ["max"] = 36, - ["min"] = 35, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3441651621", - ["text"] = "+# Physical Damage taken from Attack Hits", - ["type"] = "explicit", - }, - }, + ["max"] = 36, + ["min"] = 35, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3441651621", + ["text"] = "+# Physical Damage taken from Attack Hits", + ["type"] = "explicit", + }, + }, ["2235_FlatPhysicalDamageTaken"] = { ["Chest"] = { - ["max"] = 50, - ["min"] = 34, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_321765853", - ["text"] = "+# Physical Damage taken from Hits", - ["type"] = "explicit", - }, - }, + ["max"] = 50, + ["min"] = 34, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_321765853", + ["text"] = "+# Physical Damage taken from Hits", + ["type"] = "explicit", + }, + }, ["2241_PhysicalDamageOfYouAndMinionsCannotBeReflectedPercentMaven"] = { ["Chest"] = { - ["max"] = -3, - ["min"] = -5, - }, - ["inverseKey"] = "reduced", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3853018505", - ["text"] = "#% increased Physical Damage taken", - ["type"] = "explicit", - }, - }, + ["max"] = -3, + ["min"] = -5, + }, + ["inverseKey"] = "reduced", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3853018505", + ["text"] = "#% increased Physical Damage taken", + ["type"] = "explicit", + }, + }, ["2241_ReducedPhysicalReflectTakenMaven"] = { ["Chest"] = { - ["max"] = -3, - ["min"] = -5, - }, - ["inverseKey"] = "reduced", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3853018505", - ["text"] = "#% increased Physical Damage taken", - ["type"] = "explicit", - }, - }, + ["max"] = -3, + ["min"] = -5, + }, + ["inverseKey"] = "reduced", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3853018505", + ["text"] = "#% increased Physical Damage taken", + ["type"] = "explicit", + }, + }, ["2242_FireDamageTaken"] = { - ["inverseKey"] = "reduced", + ["inverseKey"] = "reduced", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_3743301799", - ["text"] = "#% increased Fire Damage taken", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_3743301799", + ["text"] = "#% increased Fire Damage taken", + ["type"] = "explicit", + }, + }, ["2243_ChaosDamageTakenPercentage"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_2960683632", - ["text"] = "#% reduced Chaos Damage taken", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_2960683632", + ["text"] = "#% reduced Chaos Damage taken", + ["type"] = "explicit", + }, + }, ["2245_DegenDamageTaken"] = { ["Shield"] = { - ["max"] = 10, - ["min"] = 4, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1101403182", - ["text"] = "#% reduced Damage taken from Damage Over Time", - ["type"] = "explicit", - }, - }, + ["max"] = 10, + ["min"] = 4, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1101403182", + ["text"] = "#% reduced Damage taken from Damage Over Time", + ["type"] = "explicit", + }, + }, ["2249_IncreasedShieldBlockPercentage"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - ["overrideModLine"] = "+#% Chance to Block", - }, + ["overrideModLine"] = "+#% Chance to Block", + }, ["tradeMod"] = { - ["id"] = "explicit.stat_4253454700", - ["text"] = "+#% Chance to Block (Shields)", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_4253454700", + ["text"] = "+#% Chance to Block (Shields)", + ["type"] = "explicit", + }, + }, ["2249_LocalPhysicalDamageReductionRatingPercentAndBlockChance"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - ["overrideModLine"] = "+#% Chance to Block", - }, + ["overrideModLine"] = "+#% Chance to Block", + }, ["tradeMod"] = { - ["id"] = "explicit.stat_4253454700", - ["text"] = "+#% Chance to Block (Shields)", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_4253454700", + ["text"] = "+#% Chance to Block (Shields)", + ["type"] = "explicit", + }, + }, ["224_AreaOfEffectSupported"] = { ["Helmet"] = { - ["max"] = 25, - ["min"] = 16, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3720936304", - ["text"] = "Socketed Gems are Supported by Level # Increased Area of Effect", - ["type"] = "explicit", - }, - }, + ["max"] = 25, + ["min"] = 16, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.indexable_support_69", + ["text"] = "Socketed Gems are Supported by Level # Increased Area of Effect", + ["type"] = "explicit", + }, + }, ["224_SupportedByIncreasedAreaOfEffectDamage"] = { ["1HMace"] = { - ["max"] = 20, - ["min"] = 16, - }, + ["max"] = 20, + ["min"] = 16, + }, ["1HWeapon"] = { - ["max"] = 20, - ["min"] = 16, - }, + ["max"] = 20, + ["min"] = 16, + }, ["Dagger"] = { - ["max"] = 20, - ["min"] = 16, - }, + ["max"] = 20, + ["min"] = 16, + }, ["Wand"] = { - ["max"] = 20, - ["min"] = 16, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3720936304", - ["text"] = "Socketed Gems are Supported by Level # Increased Area of Effect", - ["type"] = "explicit", - }, - }, + ["max"] = 20, + ["min"] = 16, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.indexable_support_69", + ["text"] = "Socketed Gems are Supported by Level # Increased Area of Effect", + ["type"] = "explicit", + }, + }, ["2254_AdditionalTotems"] = { ["Shield"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_429867172", - ["text"] = "+# to maximum number of Summoned Totems", - ["type"] = "explicit", - }, - }, + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_429867172", + ["text"] = "+# to maximum number of Summoned Totems", + ["type"] = "explicit", + }, + }, ["2263_LocalIncreasedPhysicalDamageAndBlindChance"] = { ["1HAxe"] = { - ["max"] = 25, - ["min"] = 13, - }, + ["max"] = 25, + ["min"] = 13, + }, ["1HMace"] = { - ["max"] = 25, - ["min"] = 13, - }, + ["max"] = 25, + ["min"] = 13, + }, ["1HSword"] = { - ["max"] = 25, - ["min"] = 13, - }, + ["max"] = 25, + ["min"] = 13, + }, ["1HWeapon"] = { - ["max"] = 25, - ["min"] = 13, - }, + ["max"] = 25, + ["min"] = 13, + }, ["2HAxe"] = { - ["max"] = 25, - ["min"] = 13, - }, + ["max"] = 25, + ["min"] = 13, + }, ["2HMace"] = { - ["max"] = 25, - ["min"] = 13, - }, + ["max"] = 25, + ["min"] = 13, + }, ["2HSword"] = { - ["max"] = 25, - ["min"] = 13, - }, + ["max"] = 25, + ["min"] = 13, + }, ["2HWeapon"] = { - ["max"] = 25, - ["min"] = 13, - }, + ["max"] = 25, + ["min"] = 13, + }, ["Bow"] = { - ["max"] = 25, - ["min"] = 13, - }, + ["max"] = 25, + ["min"] = 13, + }, ["Claw"] = { - ["max"] = 25, - ["min"] = 13, - }, + ["max"] = 25, + ["min"] = 13, + }, ["Dagger"] = { - ["max"] = 25, - ["min"] = 13, - }, + ["max"] = 25, + ["min"] = 13, + }, ["Staff"] = { - ["max"] = 25, - ["min"] = 13, - }, + ["max"] = 25, + ["min"] = 13, + }, ["Wand"] = { - ["max"] = 25, - ["min"] = 13, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2301191210", - ["text"] = "#% chance to Blind Enemies on hit", - ["type"] = "explicit", - }, - }, + ["max"] = 25, + ["min"] = 13, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2301191210", + ["text"] = "#% chance to Blind Enemies on hit", + ["type"] = "explicit", + }, + }, ["226_ArcaneSurgeAndSpellDamage"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_2287264161", - ["text"] = "Socketed Gems are Supported by Level # Arcane Surge", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.indexable_support_123", + ["text"] = "Socketed Gems are Supported by Level # Arcane Surge", + ["type"] = "explicit", + }, + }, ["226_SupportedByArcaneSurge"] = { ["Chest"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2287264161", - ["text"] = "Socketed Gems are Supported by Level # Arcane Surge", - ["type"] = "explicit", - }, - }, + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.indexable_support_123", + ["text"] = "Socketed Gems are Supported by Level # Arcane Surge", + ["type"] = "explicit", + }, + }, ["226_SupportedByArcaneSurgeWeapon"] = { ["2HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Staff"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2287264161", - ["text"] = "Socketed Gems are Supported by Level # Arcane Surge", - ["type"] = "explicit", - }, - }, + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.indexable_support_123", + ["text"] = "Socketed Gems are Supported by Level # Arcane Surge", + ["type"] = "explicit", + }, + }, ["226_WeaponSpellDamageArcaneSurge"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_2287264161", - ["text"] = "Socketed Gems are Supported by Level # Arcane Surge", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.indexable_support_123", + ["text"] = "Socketed Gems are Supported by Level # Arcane Surge", + ["type"] = "explicit", + }, + }, ["2273_ReducedPhysicalDamageTaken"] = { ["Boots"] = { - ["max"] = 8, - ["min"] = 4, - }, + ["max"] = 8, + ["min"] = 4, + }, ["Chest"] = { - ["max"] = 8, - ["min"] = 2, - }, + ["max"] = 8, + ["min"] = 2, + }, ["Gloves"] = { - ["max"] = 8, - ["min"] = 4, - }, + ["max"] = 8, + ["min"] = 4, + }, ["Helmet"] = { - ["max"] = 8, - ["min"] = 4, - }, + ["max"] = 8, + ["min"] = 4, + }, ["Quiver"] = { - ["max"] = 5, - ["min"] = 3, - }, + ["max"] = 5, + ["min"] = 3, + }, ["Shield"] = { - ["max"] = 5, - ["min"] = 2, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3771516363", - ["text"] = "#% additional Physical Damage Reduction", - ["type"] = "explicit", - }, - }, + ["max"] = 5, + ["min"] = 2, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3771516363", + ["text"] = "#% additional Physical Damage Reduction", + ["type"] = "explicit", + }, + }, ["2273_ReducedPhysicalDamageTakenMaven"] = { ["Boots"] = { - ["max"] = 4, - ["min"] = 2, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3771516363", - ["text"] = "#% additional Physical Damage Reduction", - ["type"] = "explicit", - }, - }, + ["max"] = 4, + ["min"] = 2, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3771516363", + ["text"] = "#% additional Physical Damage Reduction", + ["type"] = "explicit", + }, + }, ["2274_MinionPhysicalDamageReduction"] = { ["Shield"] = { - ["max"] = 15, - ["min"] = 7, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3119612865", - ["text"] = "Minions have #% additional Physical Damage Reduction", - ["type"] = "explicit", - }, - }, + ["max"] = 15, + ["min"] = 7, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3119612865", + ["text"] = "Minions have #% additional Physical Damage Reduction", + ["type"] = "explicit", + }, + }, ["237_LocalPhysicalDamagePercentBrutality"] = { ["1HAxe"] = { - ["max"] = 20, - ["min"] = 16, - }, + ["max"] = 20, + ["min"] = 16, + }, ["1HMace"] = { - ["max"] = 20, - ["min"] = 16, - }, + ["max"] = 20, + ["min"] = 16, + }, ["1HSword"] = { - ["max"] = 20, - ["min"] = 16, - }, + ["max"] = 20, + ["min"] = 16, + }, ["1HWeapon"] = { - ["max"] = 20, - ["min"] = 16, - }, + ["max"] = 20, + ["min"] = 16, + }, ["2HAxe"] = { - ["max"] = 20, - ["min"] = 16, - }, + ["max"] = 20, + ["min"] = 16, + }, ["2HMace"] = { - ["max"] = 20, - ["min"] = 16, - }, + ["max"] = 20, + ["min"] = 16, + }, ["2HSword"] = { - ["max"] = 20, - ["min"] = 16, - }, + ["max"] = 20, + ["min"] = 16, + }, ["2HWeapon"] = { - ["max"] = 20, - ["min"] = 16, - }, + ["max"] = 20, + ["min"] = 16, + }, ["Claw"] = { - ["max"] = 20, - ["min"] = 16, - }, + ["max"] = 20, + ["min"] = 16, + }, ["Dagger"] = { - ["max"] = 20, - ["min"] = 16, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_715256302", - ["text"] = "Socketed Gems are Supported by Level # Brutality", - ["type"] = "explicit", - }, - }, + ["max"] = 20, + ["min"] = 16, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.indexable_support_114", + ["text"] = "Socketed Gems are Supported by Level # Brutality", + ["type"] = "explicit", + }, + }, ["239_SupportedByCastOnDamageTaken"] = { ["Shield"] = { - ["max"] = 5, - ["min"] = 5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3036440332", - ["text"] = "Socketed Gems are Supported by Level # Cast when Damage Taken", - ["type"] = "explicit", - }, - }, + ["max"] = 5, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.indexable_support_112", + ["text"] = "Socketed Gems are Supported by Level # Cast when Damage Taken", + ["type"] = "explicit", + }, + }, ["23_ItemGenerationCannotChangeSuffixes"] = { ["1HAxe"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["1HMace"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["1HSword"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["1HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["2HAxe"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["2HMace"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["2HSword"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["2HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Amulet"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Belt"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Boots"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Bow"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Chest"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Claw"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Dagger"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Gloves"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Helmet"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Quiver"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Ring"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Shield"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Staff"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Wand"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_3464137628", - ["text"] = "Suffixes Cannot Be Changed", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_3464137628", + ["text"] = "Suffixes Cannot Be Changed", + ["type"] = "explicit", + }, + }, ["240_SupportedByCastOnMeleeKillWeapon"] = { ["2HAxe"] = { - ["max"] = 20, - ["min"] = 18, - }, + ["max"] = 20, + ["min"] = 18, + }, ["2HMace"] = { - ["max"] = 20, - ["min"] = 18, - }, + ["max"] = 20, + ["min"] = 18, + }, ["2HSword"] = { - ["max"] = 20, - ["min"] = 18, - }, + ["max"] = 20, + ["min"] = 18, + }, ["2HWeapon"] = { - ["max"] = 20, - ["min"] = 18, - }, + ["max"] = 20, + ["min"] = 18, + }, ["Staff"] = { - ["max"] = 20, - ["min"] = 18, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3312593243", - ["text"] = "Socketed Gems are Supported by Level # Cast On Melee Kill", - ["type"] = "explicit", - }, - }, + ["max"] = 20, + ["min"] = 18, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3312593243", + ["text"] = "Socketed Gems are Supported by Level # Cast On Melee Kill", + ["type"] = "explicit", + }, + }, ["242_CastWhileChannelingAndSpellDamage"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1316646496", - ["text"] = "Socketed Gems are Supported by Level # Cast While Channelling", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1316646496", + ["text"] = "Socketed Gems are Supported by Level # Cast While Channelling", + ["type"] = "explicit", + }, + }, ["242_SupportedByCastWhileChannellingWeapon"] = { ["2HWeapon"] = { - ["max"] = 20, - ["min"] = 18, - }, + ["max"] = 20, + ["min"] = 18, + }, ["Staff"] = { - ["max"] = 20, - ["min"] = 18, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1316646496", - ["text"] = "Socketed Gems are Supported by Level # Cast While Channelling", - ["type"] = "explicit", - }, - }, + ["max"] = 20, + ["min"] = 18, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1316646496", + ["text"] = "Socketed Gems are Supported by Level # Cast While Channelling", + ["type"] = "explicit", + }, + }, ["2447_FireResistancePhysTakenAsFire"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_3342989455", - ["text"] = "#% of Physical Damage from Hits taken as Fire Damage", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_3342989455", + ["text"] = "#% of Physical Damage from Hits taken as Fire Damage", + ["type"] = "explicit", + }, + }, ["2447_PhysicalDamageTakenAsFireAndLightningPercent"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_3342989455", - ["text"] = "#% of Physical Damage from Hits taken as Fire Damage", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_3342989455", + ["text"] = "#% of Physical Damage from Hits taken as Fire Damage", + ["type"] = "explicit", + }, + }, ["2447_PhysicalDamageTakenAsFirePercent"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_3342989455", - ["text"] = "#% of Physical Damage from Hits taken as Fire Damage", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_3342989455", + ["text"] = "#% of Physical Damage from Hits taken as Fire Damage", + ["type"] = "explicit", + }, + }, ["2447_PhysicalDamageTakenAsFireUber"] = { ["Chest"] = { - ["max"] = 15, - ["min"] = 8, - }, + ["max"] = 15, + ["min"] = 8, + }, ["Helmet"] = { - ["max"] = 13, - ["min"] = 4, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3342989455", - ["text"] = "#% of Physical Damage from Hits taken as Fire Damage", - ["type"] = "explicit", - }, - }, + ["max"] = 13, + ["min"] = 4, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3342989455", + ["text"] = "#% of Physical Damage from Hits taken as Fire Damage", + ["type"] = "explicit", + }, + }, ["2447_PhysicalDamageTakenAsFireUberMaven"] = { ["Chest"] = { - ["max"] = 18, - ["min"] = 16, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3342989455", - ["text"] = "#% of Physical Damage from Hits taken as Fire Damage", - ["type"] = "explicit", - }, - }, + ["max"] = 18, + ["min"] = 16, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3342989455", + ["text"] = "#% of Physical Damage from Hits taken as Fire Damage", + ["type"] = "explicit", + }, + }, ["2448_ColdResistancePhysTakenAsCold"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1871056256", - ["text"] = "#% of Physical Damage from Hits taken as Cold Damage", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1871056256", + ["text"] = "#% of Physical Damage from Hits taken as Cold Damage", + ["type"] = "explicit", + }, + }, ["2448_PhysicalDamageTakenAsCold"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1871056256", - ["text"] = "#% of Physical Damage from Hits taken as Cold Damage", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1871056256", + ["text"] = "#% of Physical Damage from Hits taken as Cold Damage", + ["type"] = "explicit", + }, + }, ["2448_PhysicalDamageTakenAsColdUber"] = { ["Chest"] = { - ["max"] = 15, - ["min"] = 8, - }, + ["max"] = 15, + ["min"] = 8, + }, ["Helmet"] = { - ["max"] = 13, - ["min"] = 4, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1871056256", - ["text"] = "#% of Physical Damage from Hits taken as Cold Damage", - ["type"] = "explicit", - }, - }, + ["max"] = 13, + ["min"] = 4, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1871056256", + ["text"] = "#% of Physical Damage from Hits taken as Cold Damage", + ["type"] = "explicit", + }, + }, ["2448_PhysicalDamageTakenAsColdUberMaven"] = { ["Chest"] = { - ["max"] = 18, - ["min"] = 16, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1871056256", - ["text"] = "#% of Physical Damage from Hits taken as Cold Damage", - ["type"] = "explicit", - }, - }, + ["max"] = 18, + ["min"] = 16, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1871056256", + ["text"] = "#% of Physical Damage from Hits taken as Cold Damage", + ["type"] = "explicit", + }, + }, ["2449_LightningResistancePhysTakenAsLightning"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_425242359", - ["text"] = "#% of Physical Damage from Hits taken as Lightning Damage", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_425242359", + ["text"] = "#% of Physical Damage from Hits taken as Lightning Damage", + ["type"] = "explicit", + }, + }, ["2449_PhysicalDamageTakenAsFireAndLightningPercent"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_425242359", - ["text"] = "#% of Physical Damage from Hits taken as Lightning Damage", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_425242359", + ["text"] = "#% of Physical Damage from Hits taken as Lightning Damage", + ["type"] = "explicit", + }, + }, ["2449_PhysicalDamageTakenAsLightningUber"] = { ["Chest"] = { - ["max"] = 15, - ["min"] = 8, - }, + ["max"] = 15, + ["min"] = 8, + }, ["Helmet"] = { - ["max"] = 13, - ["min"] = 4, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_425242359", - ["text"] = "#% of Physical Damage from Hits taken as Lightning Damage", - ["type"] = "explicit", - }, - }, + ["max"] = 13, + ["min"] = 4, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_425242359", + ["text"] = "#% of Physical Damage from Hits taken as Lightning Damage", + ["type"] = "explicit", + }, + }, ["2449_PhysicalDamageTakenAsLightningUberMaven"] = { ["Chest"] = { - ["max"] = 18, - ["min"] = 16, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_425242359", - ["text"] = "#% of Physical Damage from Hits taken as Lightning Damage", - ["type"] = "explicit", - }, - }, + ["max"] = 18, + ["min"] = 16, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_425242359", + ["text"] = "#% of Physical Damage from Hits taken as Lightning Damage", + ["type"] = "explicit", + }, + }, ["244_BleedingDamageSupported"] = { ["Gloves"] = { - ["max"] = 25, - ["min"] = 16, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4197676934", - ["text"] = "Socketed Gems are Supported by Level # Chance To Bleed", - ["type"] = "explicit", - }, - }, + ["max"] = 25, + ["min"] = 16, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4197676934", + ["text"] = "Socketed Gems are Supported by Level # Chance To Bleed", + ["type"] = "explicit", + }, + }, ["244_ChanceToBleedSupported"] = { ["1HAxe"] = { - ["max"] = 20, - ["min"] = 18, - }, + ["max"] = 20, + ["min"] = 18, + }, ["1HMace"] = { - ["max"] = 20, - ["min"] = 18, - }, + ["max"] = 20, + ["min"] = 18, + }, ["1HSword"] = { - ["max"] = 20, - ["min"] = 18, - }, + ["max"] = 20, + ["min"] = 18, + }, ["1HWeapon"] = { - ["max"] = 20, - ["min"] = 18, - }, + ["max"] = 20, + ["min"] = 18, + }, ["2HAxe"] = { - ["max"] = 20, - ["min"] = 18, - }, + ["max"] = 20, + ["min"] = 18, + }, ["2HMace"] = { - ["max"] = 20, - ["min"] = 18, - }, + ["max"] = 20, + ["min"] = 18, + }, ["2HSword"] = { - ["max"] = 20, - ["min"] = 18, - }, + ["max"] = 20, + ["min"] = 18, + }, ["2HWeapon"] = { - ["max"] = 20, - ["min"] = 18, - }, + ["max"] = 20, + ["min"] = 18, + }, ["Claw"] = { - ["max"] = 20, - ["min"] = 18, - }, + ["max"] = 20, + ["min"] = 18, + }, ["Dagger"] = { - ["max"] = 20, - ["min"] = 18, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4197676934", - ["text"] = "Socketed Gems are Supported by Level # Chance To Bleed", - ["type"] = "explicit", - }, - }, + ["max"] = 20, + ["min"] = 18, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4197676934", + ["text"] = "Socketed Gems are Supported by Level # Chance To Bleed", + ["type"] = "explicit", + }, + }, ["2451_PhysicalDamageTakenAsChaosUber"] = { ["Chest"] = { - ["max"] = 15, - ["min"] = 8, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4129825612", - ["text"] = "#% of Physical Damage from Hits taken as Chaos Damage", - ["type"] = "explicit", - }, - }, + ["max"] = 15, + ["min"] = 8, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4129825612", + ["text"] = "#% of Physical Damage from Hits taken as Chaos Damage", + ["type"] = "explicit", + }, + }, ["2451_PhysicalDamageTakenAsChaosUberMaven"] = { ["Chest"] = { - ["max"] = 18, - ["min"] = 16, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4129825612", - ["text"] = "#% of Physical Damage from Hits taken as Chaos Damage", - ["type"] = "explicit", - }, - }, + ["max"] = 18, + ["min"] = 16, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4129825612", + ["text"] = "#% of Physical Damage from Hits taken as Chaos Damage", + ["type"] = "explicit", + }, + }, ["2455_ManaAndDamageTakenGoesToManaPercent"] = { ["Amulet"] = { - ["max"] = 8, - ["min"] = 4, - }, + ["max"] = 8, + ["min"] = 4, + }, ["Ring"] = { - ["max"] = 8, - ["min"] = 4, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_472520716", - ["text"] = "#% of Damage taken Recouped as Mana", - ["type"] = "explicit", - }, - }, + ["max"] = 8, + ["min"] = 4, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_472520716", + ["text"] = "#% of Damage taken Recouped as Mana", + ["type"] = "explicit", + }, + }, ["2455_PercentDamageGoesToMana"] = { ["AbyssJewel"] = { - ["max"] = 3, - ["min"] = 2, - }, + ["max"] = 3, + ["min"] = 2, + }, ["AnyJewel"] = { - ["max"] = 3, - ["min"] = 2, - }, + ["max"] = 3, + ["min"] = 2, + }, ["BaseJewel"] = { - ["max"] = 3, - ["min"] = 2, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_472520716", - ["text"] = "#% of Damage taken Recouped as Mana", - ["type"] = "explicit", - }, - }, + ["max"] = 3, + ["min"] = 2, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_472520716", + ["text"] = "#% of Damage taken Recouped as Mana", + ["type"] = "explicit", + }, + }, ["2464_BlockVsProjectiles"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_3416410609", - ["text"] = "+#% chance to Block Projectile Attack Damage", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_3416410609", + ["text"] = "+#% chance to Block Projectile Attack Damage", + ["type"] = "explicit", + }, + }, ["2467_RecoverEnergyShieldPercentOnBlock"] = { ["Shield"] = { - ["max"] = 5, - ["min"] = 3, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1606263610", - ["text"] = "Recover #% of Energy Shield when you Block", - ["type"] = "explicit", - }, - }, + ["max"] = 5, + ["min"] = 3, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1606263610", + ["text"] = "Recover #% of Energy Shield when you Block", + ["type"] = "explicit", + }, + }, ["2481_CausesBleeding25PercentChance"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1519615863", - ["text"] = "#% chance to cause Bleeding on Hit", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1519615863", + ["text"] = "#% chance to cause Bleeding on Hit", + ["type"] = "explicit", + }, + }, ["2483_CausesBleedingChance"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1519615863", - ["text"] = "#% chance to cause Bleeding on Hit", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1519615863", + ["text"] = "#% chance to cause Bleeding on Hit", + ["type"] = "explicit", + }, + }, ["2483_ChanceToBleedSupported"] = { ["1HAxe"] = { - ["max"] = 15, - ["min"] = 10, - }, + ["max"] = 15, + ["min"] = 10, + }, ["1HMace"] = { - ["max"] = 15, - ["min"] = 10, - }, + ["max"] = 15, + ["min"] = 10, + }, ["1HSword"] = { - ["max"] = 15, - ["min"] = 10, - }, + ["max"] = 15, + ["min"] = 10, + }, ["1HWeapon"] = { - ["max"] = 15, - ["min"] = 10, - }, + ["max"] = 15, + ["min"] = 10, + }, ["2HAxe"] = { - ["max"] = 15, - ["min"] = 10, - }, + ["max"] = 15, + ["min"] = 10, + }, ["2HMace"] = { - ["max"] = 15, - ["min"] = 10, - }, + ["max"] = 15, + ["min"] = 10, + }, ["2HSword"] = { - ["max"] = 15, - ["min"] = 10, - }, + ["max"] = 15, + ["min"] = 10, + }, ["2HWeapon"] = { - ["max"] = 15, - ["min"] = 10, - }, + ["max"] = 15, + ["min"] = 10, + }, ["Claw"] = { - ["max"] = 15, - ["min"] = 10, - }, + ["max"] = 15, + ["min"] = 10, + }, ["Dagger"] = { - ["max"] = 15, - ["min"] = 10, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1519615863", - ["text"] = "#% chance to cause Bleeding on Hit", - ["type"] = "explicit", - }, - }, + ["max"] = 15, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1519615863", + ["text"] = "#% chance to cause Bleeding on Hit", + ["type"] = "explicit", + }, + }, ["2483_LocalAddedPhysicalDamageAndCausesBleeding"] = { ["1HAxe"] = { - ["max"] = 40, - ["min"] = 35, - }, + ["max"] = 40, + ["min"] = 35, + }, ["1HMace"] = { - ["max"] = 40, - ["min"] = 35, - }, + ["max"] = 40, + ["min"] = 35, + }, ["1HSword"] = { - ["max"] = 40, - ["min"] = 35, - }, + ["max"] = 40, + ["min"] = 35, + }, ["1HWeapon"] = { - ["max"] = 40, - ["min"] = 35, - }, + ["max"] = 40, + ["min"] = 35, + }, ["2HAxe"] = { - ["max"] = 40, - ["min"] = 35, - }, + ["max"] = 40, + ["min"] = 35, + }, ["2HMace"] = { - ["max"] = 40, - ["min"] = 35, - }, + ["max"] = 40, + ["min"] = 35, + }, ["2HSword"] = { - ["max"] = 40, - ["min"] = 35, - }, + ["max"] = 40, + ["min"] = 35, + }, ["2HWeapon"] = { - ["max"] = 40, - ["min"] = 35, - }, + ["max"] = 40, + ["min"] = 35, + }, ["Bow"] = { - ["max"] = 40, - ["min"] = 35, - }, + ["max"] = 40, + ["min"] = 35, + }, ["Claw"] = { - ["max"] = 40, - ["min"] = 35, - }, + ["max"] = 40, + ["min"] = 35, + }, ["Dagger"] = { - ["max"] = 40, - ["min"] = 35, - }, + ["max"] = 40, + ["min"] = 35, + }, ["Staff"] = { - ["max"] = 40, - ["min"] = 35, - }, + ["max"] = 40, + ["min"] = 35, + }, ["Wand"] = { - ["max"] = 40, - ["min"] = 35, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1519615863", - ["text"] = "#% chance to cause Bleeding on Hit", - ["type"] = "explicit", - }, - }, + ["max"] = 40, + ["min"] = 35, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1519615863", + ["text"] = "#% chance to cause Bleeding on Hit", + ["type"] = "explicit", + }, + }, ["2483_LocalChanceToBleed"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1519615863", - ["text"] = "#% chance to cause Bleeding on Hit", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1519615863", + ["text"] = "#% chance to cause Bleeding on Hit", + ["type"] = "explicit", + }, + }, ["2483_LocalIncreasedPhysicalDamageAndBleedChance"] = { ["1HAxe"] = { - ["max"] = 25, - ["min"] = 13, - }, + ["max"] = 25, + ["min"] = 13, + }, ["1HMace"] = { - ["max"] = 25, - ["min"] = 13, - }, + ["max"] = 25, + ["min"] = 13, + }, ["1HSword"] = { - ["max"] = 25, - ["min"] = 13, - }, + ["max"] = 25, + ["min"] = 13, + }, ["1HWeapon"] = { - ["max"] = 25, - ["min"] = 13, - }, + ["max"] = 25, + ["min"] = 13, + }, ["2HAxe"] = { - ["max"] = 25, - ["min"] = 13, - }, + ["max"] = 25, + ["min"] = 13, + }, ["2HMace"] = { - ["max"] = 25, - ["min"] = 13, - }, + ["max"] = 25, + ["min"] = 13, + }, ["2HSword"] = { - ["max"] = 25, - ["min"] = 13, - }, + ["max"] = 25, + ["min"] = 13, + }, ["2HWeapon"] = { - ["max"] = 25, - ["min"] = 13, - }, + ["max"] = 25, + ["min"] = 13, + }, ["Bow"] = { - ["max"] = 25, - ["min"] = 13, - }, + ["max"] = 25, + ["min"] = 13, + }, ["Claw"] = { - ["max"] = 25, - ["min"] = 13, - }, + ["max"] = 25, + ["min"] = 13, + }, ["Dagger"] = { - ["max"] = 25, - ["min"] = 13, - }, + ["max"] = 25, + ["min"] = 13, + }, ["Staff"] = { - ["max"] = 25, - ["min"] = 13, - }, + ["max"] = 25, + ["min"] = 13, + }, ["Wand"] = { - ["max"] = 25, - ["min"] = 13, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1519615863", - ["text"] = "#% chance to cause Bleeding on Hit", - ["type"] = "explicit", - }, - }, + ["max"] = 25, + ["min"] = 13, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1519615863", + ["text"] = "#% chance to cause Bleeding on Hit", + ["type"] = "explicit", + }, + }, ["2489_BleedChanceAndDurationForJewel"] = { ["AnyJewel"] = { - ["max"] = 5, - ["min"] = 3, - }, + ["max"] = 5, + ["min"] = 3, + }, ["BaseJewel"] = { - ["max"] = 5, - ["min"] = 3, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1923879260", - ["text"] = "Attacks have #% chance to cause Bleeding", - ["type"] = "explicit", - }, - }, + ["max"] = 5, + ["min"] = 3, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1923879260", + ["text"] = "Attacks have #% chance to cause Bleeding", + ["type"] = "explicit", + }, + }, ["2489_BleedOnHitAndDamage"] = { ["Quiver"] = { - ["max"] = 15, - ["min"] = 10, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1923879260", - ["text"] = "Attacks have #% chance to cause Bleeding", - ["type"] = "explicit", - }, - }, + ["max"] = 15, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1923879260", + ["text"] = "Attacks have #% chance to cause Bleeding", + ["type"] = "explicit", + }, + }, ["2489_BleedingDamageChance"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1923879260", - ["text"] = "Attacks have #% chance to cause Bleeding", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1923879260", + ["text"] = "Attacks have #% chance to cause Bleeding", + ["type"] = "explicit", + }, + }, ["2489_BleedingDamageChanceWeaponSuffix"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1923879260", - ["text"] = "Attacks have #% chance to cause Bleeding", - ["type"] = "explicit", - }, - }, - ["2489_ChanceToBleed"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1923879260", - ["text"] = "Attacks have #% chance to cause Bleeding", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1923879260", + ["text"] = "Attacks have #% chance to cause Bleeding", + ["type"] = "explicit", + }, + }, ["2490_AbyssMinionAttacksBleedOnHitChance"] = { ["AbyssJewel"] = { - ["max"] = 15, - ["min"] = 10, - }, + ["max"] = 15, + ["min"] = 10, + }, ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 10, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3998967779", - ["text"] = "Minions have #% chance to cause Bleeding with Attacks", - ["type"] = "explicit", - }, - }, + ["max"] = 15, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3998967779", + ["text"] = "Minions have #% chance to cause Bleeding with Attacks", + ["type"] = "explicit", + }, + }, ["2494_AddedPhysicalDamageVsBleedingEnemies"] = { ["Gloves"] = { - ["max"] = 14.5, - ["min"] = 9.5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1244003614", - ["text"] = "Adds # to # Physical Damage against Bleeding Enemies", - ["type"] = "explicit", - }, - }, + ["max"] = 14.5, + ["min"] = 9.5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1244003614", + ["text"] = "Adds # to # Physical Damage against Bleeding Enemies", + ["type"] = "explicit", + }, + }, ["24_ItemGenerationCannotRollCasterAffixes"] = { ["1HAxe"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["1HMace"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["1HSword"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["1HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["2HAxe"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["2HMace"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["2HSword"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["2HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Amulet"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Belt"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Boots"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Bow"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Chest"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Claw"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Dagger"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Gloves"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Helmet"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Quiver"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Ring"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Shield"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Staff"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Wand"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1149326139", - ["text"] = "Cannot roll Caster Modifiers", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1149326139", + ["text"] = "Cannot roll Caster Modifiers", + ["type"] = "explicit", + }, + }, ["2500_LightRadiusAndAccuracy"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1263695895", - ["text"] = "#% increased Light Radius", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1263695895", + ["text"] = "#% increased Light Radius", + ["type"] = "explicit", + }, + }, ["2500_LightRadiusAndAccuracyPercent"] = { ["Helmet"] = { - ["max"] = 15, - ["min"] = 5, - }, + ["max"] = 15, + ["min"] = 5, + }, ["Ring"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1263695895", - ["text"] = "#% increased Light Radius", - ["type"] = "explicit", - }, - }, + ["max"] = 15, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1263695895", + ["text"] = "#% increased Light Radius", + ["type"] = "explicit", + }, + }, ["2500_LocalLightRadiusAndAccuracy"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1263695895", - ["text"] = "#% increased Light Radius", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1263695895", + ["text"] = "#% increased Light Radius", + ["type"] = "explicit", + }, + }, ["2500_LocalLightRadiusAndAccuracyPercent"] = { ["1HAxe"] = { - ["max"] = 15, - ["min"] = 5, - }, + ["max"] = 15, + ["min"] = 5, + }, ["1HMace"] = { - ["max"] = 15, - ["min"] = 5, - }, + ["max"] = 15, + ["min"] = 5, + }, ["1HSword"] = { - ["max"] = 15, - ["min"] = 5, - }, + ["max"] = 15, + ["min"] = 5, + }, ["1HWeapon"] = { - ["max"] = 15, - ["min"] = 5, - }, + ["max"] = 15, + ["min"] = 5, + }, ["2HAxe"] = { - ["max"] = 15, - ["min"] = 5, - }, + ["max"] = 15, + ["min"] = 5, + }, ["2HMace"] = { - ["max"] = 15, - ["min"] = 5, - }, + ["max"] = 15, + ["min"] = 5, + }, ["2HSword"] = { - ["max"] = 15, - ["min"] = 5, - }, + ["max"] = 15, + ["min"] = 5, + }, ["2HWeapon"] = { - ["max"] = 15, - ["min"] = 5, - }, + ["max"] = 15, + ["min"] = 5, + }, ["Bow"] = { - ["max"] = 15, - ["min"] = 5, - }, + ["max"] = 15, + ["min"] = 5, + }, ["Claw"] = { - ["max"] = 15, - ["min"] = 5, - }, + ["max"] = 15, + ["min"] = 5, + }, ["Dagger"] = { - ["max"] = 15, - ["min"] = 5, - }, + ["max"] = 15, + ["min"] = 5, + }, ["Staff"] = { - ["max"] = 15, - ["min"] = 5, - }, + ["max"] = 15, + ["min"] = 5, + }, ["Wand"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1263695895", - ["text"] = "#% increased Light Radius", - ["type"] = "explicit", - }, - }, + ["max"] = 15, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1263695895", + ["text"] = "#% increased Light Radius", + ["type"] = "explicit", + }, + }, ["2508_ManaRegenerationWhileShocked"] = { ["Boots"] = { - ["max"] = 70, - ["min"] = 70, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2076519255", - ["text"] = "#% increased Mana Regeneration Rate while Shocked", - ["type"] = "explicit", - }, - }, + ["max"] = 70, + ["min"] = 70, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2076519255", + ["text"] = "#% increased Mana Regeneration Rate while Shocked", + ["type"] = "explicit", + }, + }, ["2523_CurseOnHitLevelVulnerabilityMod"] = { ["Ring"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_3967845372", - ["text"] = "Curse Enemies with Vulnerability on Hit", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_3967845372", + ["text"] = "Curse Enemies with Vulnerability on Hit", + ["type"] = "explicit", + }, + }, ["2524_CurseLevel10VulnerabilityOnHit"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_2213584313", - ["text"] = "#% chance to Curse Enemies with Vulnerability on Hit", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_2213584313", + ["text"] = "#% chance to Curse Enemies with Vulnerability on Hit", + ["type"] = "explicit", + }, + }, ["2525_CurseOnHitLevelElementalWeaknessMod"] = { ["Ring"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_2028847114", - ["text"] = "Curse Enemies with Elemental Weakness on Hit", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_2028847114", + ["text"] = "Curse Enemies with Elemental Weakness on Hit", + ["type"] = "explicit", + }, + }, ["2527_ConductivityOnHitLevel"] = { ["1HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Ring"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Wand"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_710372469", - ["text"] = "Curse Enemies with Conductivity on Hit", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_710372469", + ["text"] = "Curse Enemies with Conductivity on Hit", + ["type"] = "explicit", + }, + }, ["2528_CurseOnHitDespair"] = { ["1HAxe"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["1HMace"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["1HSword"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["1HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["2HAxe"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["2HMace"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["2HSword"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["2HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Bow"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Claw"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Dagger"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Staff"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Wand"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_2764915899", - ["text"] = "Curse Enemies with Despair on Hit", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_2764915899", + ["text"] = "Curse Enemies with Despair on Hit", + ["type"] = "explicit", + }, + }, ["2528_CurseOnHitDespairMod"] = { ["Ring"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_2764915899", - ["text"] = "Curse Enemies with Despair on Hit", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_2764915899", + ["text"] = "Curse Enemies with Despair on Hit", + ["type"] = "explicit", + }, + }, ["2530_FlammabilityOnHitLevel"] = { ["1HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Ring"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Wand"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_338121249", - ["text"] = "Curse Enemies with Flammability on Hit", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_338121249", + ["text"] = "Curse Enemies with Flammability on Hit", + ["type"] = "explicit", + }, + }, ["2531_FrostbiteOnHitLevel"] = { ["1HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Ring"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Wand"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_426847518", - ["text"] = "Curse Enemies with Frostbite on Hit", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_426847518", + ["text"] = "Curse Enemies with Frostbite on Hit", + ["type"] = "explicit", + }, + }, ["2534_MeleeDamageAndMeleeRange"] = { ["Gloves"] = { - ["max"] = 0.4, - ["min"] = 0.1, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2264295449", - ["text"] = "+# metres to Melee Strike Range", - ["type"] = "explicit", - }, - }, + ["max"] = 0.4, + ["min"] = 0.1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2264295449", + ["text"] = "+# metres to Melee Strike Range", + ["type"] = "explicit", + }, + }, ["2534_MeleeRangeAndMeleeGemLevel"] = { ["Helmet"] = { - ["max"] = 0.2, - ["min"] = 0.2, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2264295449", - ["text"] = "+# metres to Melee Strike Range", - ["type"] = "explicit", - }, - }, + ["max"] = 0.2, + ["min"] = 0.2, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2264295449", + ["text"] = "+# metres to Melee Strike Range", + ["type"] = "explicit", + }, + }, ["2534_MeleeWeaponAndUnarmedRange"] = { ["Gloves"] = { - ["max"] = 0.4, - ["min"] = 0.2, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2264295449", - ["text"] = "+# metres to Melee Strike Range", - ["type"] = "explicit", - }, - }, + ["max"] = 0.4, + ["min"] = 0.2, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2264295449", + ["text"] = "+# metres to Melee Strike Range", + ["type"] = "explicit", + }, + }, ["2552_GlobalItemAttributeRequirements"] = { ["Amulet"] = { - ["max"] = -5, - ["min"] = -15, - }, - ["inverseKey"] = "reduced", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_752930724", - ["text"] = "Items and Gems have #% increased Attribute Requirements", - ["type"] = "explicit", - }, - }, + ["max"] = -5, + ["min"] = -15, + }, + ["inverseKey"] = "reduced", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_752930724", + ["text"] = "Items and Gems have #% increased Attribute Requirements", + ["type"] = "explicit", + }, + }, ["2564_FasterIgniteDamage"] = { ["1HMace"] = { - ["max"] = 15, - ["min"] = 8, - }, + ["max"] = 15, + ["min"] = 8, + }, ["1HWeapon"] = { - ["max"] = 15, - ["min"] = 8, - }, + ["max"] = 15, + ["min"] = 8, + }, ["2HWeapon"] = { - ["max"] = 25, - ["min"] = 18, - }, + ["max"] = 25, + ["min"] = 18, + }, ["Boots"] = { - ["max"] = 12, - ["min"] = 7, - }, + ["max"] = 12, + ["min"] = 7, + }, ["Staff"] = { - ["max"] = 25, - ["min"] = 18, - }, + ["max"] = 25, + ["min"] = 18, + }, ["Wand"] = { - ["max"] = 15, - ["min"] = 8, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2443492284", - ["text"] = "Ignites you inflict deal Damage #% faster", - ["type"] = "explicit", - }, - }, + ["max"] = 15, + ["min"] = 8, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2443492284", + ["text"] = "Ignites you inflict deal Damage #% faster", + ["type"] = "explicit", + }, + }, ["2564_FasterIgniteDamageMaven"] = { ["Boots"] = { - ["max"] = 15, - ["min"] = 11, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2443492284", - ["text"] = "Ignites you inflict deal Damage #% faster", - ["type"] = "explicit", - }, - }, + ["max"] = 15, + ["min"] = 11, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2443492284", + ["text"] = "Ignites you inflict deal Damage #% faster", + ["type"] = "explicit", + }, + }, ["2564_IgniteChanceAndDamageMaven"] = { ["Helmet"] = { - ["max"] = 15, - ["min"] = 10, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2443492284", - ["text"] = "Ignites you inflict deal Damage #% faster", - ["type"] = "explicit", - }, - }, + ["max"] = 15, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2443492284", + ["text"] = "Ignites you inflict deal Damage #% faster", + ["type"] = "explicit", + }, + }, ["2578_SummonTotemCastSpeed"] = { ["Amulet"] = { - ["max"] = 40, - ["min"] = 18, - }, + ["max"] = 40, + ["min"] = 18, + }, ["Boots"] = { - ["max"] = 40, - ["min"] = 18, - }, + ["max"] = 40, + ["min"] = 18, + }, ["Chest"] = { - ["max"] = 45, - ["min"] = 21, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3374165039", - ["text"] = "#% increased Totem Placement speed", - ["type"] = "explicit", - }, - }, + ["max"] = 45, + ["min"] = 21, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3374165039", + ["text"] = "#% increased Totem Placement speed", + ["type"] = "explicit", + }, + }, ["2578_TotemSpeedAttackSupported"] = { ["Boots"] = { - ["max"] = 20, - ["min"] = 8, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3374165039", - ["text"] = "#% increased Totem Placement speed", - ["type"] = "explicit", - }, - }, + ["max"] = 20, + ["min"] = 8, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3374165039", + ["text"] = "#% increased Totem Placement speed", + ["type"] = "explicit", + }, + }, ["2578_TotemSpeedSpellSupported"] = { ["Boots"] = { - ["max"] = 20, - ["min"] = 8, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3374165039", - ["text"] = "#% increased Totem Placement speed", - ["type"] = "explicit", - }, - }, + ["max"] = 20, + ["min"] = 8, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3374165039", + ["text"] = "#% increased Totem Placement speed", + ["type"] = "explicit", + }, + }, ["2596_CurseEffectReduceCurseDuration"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_2353576063", - ["text"] = "#% increased Effect of your Curses", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_2353576063", + ["text"] = "#% increased Effect of your Curses", + ["type"] = "explicit", + }, + }, ["2596_CurseEffectiveness"] = { ["Shield"] = { - ["max"] = 12, - ["min"] = 4, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2353576063", - ["text"] = "#% increased Effect of your Curses", - ["type"] = "explicit", - }, - }, + ["max"] = 12, + ["min"] = 4, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2353576063", + ["text"] = "#% increased Effect of your Curses", + ["type"] = "explicit", + }, + }, ["2598_MarkEffect"] = { ["Quiver"] = { - ["max"] = 25, - ["min"] = 25, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_803185500", - ["text"] = "#% increased Effect of your Marks", - ["type"] = "explicit", - }, - }, + ["max"] = 25, + ["min"] = 25, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_803185500", + ["text"] = "#% increased Effect of your Marks", + ["type"] = "explicit", + }, + }, ["25_ItemGenerationCannotRollAttackAffixes"] = { ["1HAxe"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["1HMace"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["1HSword"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["1HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["2HAxe"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["2HMace"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["2HSword"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["2HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Amulet"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Belt"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Boots"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Bow"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Chest"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Claw"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Dagger"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Gloves"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Helmet"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Quiver"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Ring"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Shield"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Staff"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Wand"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_4122424929", - ["text"] = "Cannot roll Attack Modifiers", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_4122424929", + ["text"] = "Cannot roll Attack Modifiers", + ["type"] = "explicit", + }, + }, ["2620_MapExtraInvasionBosses"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_279246355", - ["text"] = "Area is inhabited by an additional Invasion Boss", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_279246355", + ["text"] = "Area is inhabited by an additional Invasion Boss", + ["type"] = "explicit", + }, + }, ["2629_EnduranceChargeOnKillChance"] = { ["1HAxe"] = { - ["max"] = 10, - ["min"] = 4, - }, + ["max"] = 10, + ["min"] = 4, + }, ["1HMace"] = { - ["max"] = 10, - ["min"] = 4, - }, + ["max"] = 10, + ["min"] = 4, + }, ["1HSword"] = { - ["max"] = 10, - ["min"] = 4, - }, + ["max"] = 10, + ["min"] = 4, + }, ["1HWeapon"] = { - ["max"] = 10, - ["min"] = 4, - }, + ["max"] = 10, + ["min"] = 4, + }, ["2HAxe"] = { - ["max"] = 10, - ["min"] = 4, - }, + ["max"] = 10, + ["min"] = 4, + }, ["2HMace"] = { - ["max"] = 10, - ["min"] = 4, - }, + ["max"] = 10, + ["min"] = 4, + }, ["2HSword"] = { - ["max"] = 10, - ["min"] = 4, - }, + ["max"] = 10, + ["min"] = 4, + }, ["2HWeapon"] = { - ["max"] = 10, - ["min"] = 4, - }, + ["max"] = 10, + ["min"] = 4, + }, ["Boots"] = { - ["max"] = 10, - ["min"] = 4, - }, + ["max"] = 10, + ["min"] = 4, + }, ["Staff"] = { - ["max"] = 10, - ["min"] = 4, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1054322244", - ["text"] = "#% chance to gain an Endurance Charge on Kill", - ["type"] = "explicit", - }, - }, + ["max"] = 10, + ["min"] = 4, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1054322244", + ["text"] = "#% chance to gain an Endurance Charge on Kill", + ["type"] = "explicit", + }, + }, ["2629_EnduranceChargeOnKillChanceMaven"] = { ["1HAxe"] = { - ["max"] = 10, - ["min"] = 7, - }, + ["max"] = 10, + ["min"] = 7, + }, ["1HMace"] = { - ["max"] = 10, - ["min"] = 7, - }, + ["max"] = 10, + ["min"] = 7, + }, ["1HSword"] = { - ["max"] = 10, - ["min"] = 7, - }, + ["max"] = 10, + ["min"] = 7, + }, ["1HWeapon"] = { - ["max"] = 10, - ["min"] = 7, - }, + ["max"] = 10, + ["min"] = 7, + }, ["2HAxe"] = { - ["max"] = 10, - ["min"] = 7, - }, + ["max"] = 10, + ["min"] = 7, + }, ["2HMace"] = { - ["max"] = 10, - ["min"] = 7, - }, + ["max"] = 10, + ["min"] = 7, + }, ["2HSword"] = { - ["max"] = 10, - ["min"] = 7, - }, + ["max"] = 10, + ["min"] = 7, + }, ["2HWeapon"] = { - ["max"] = 10, - ["min"] = 7, - }, + ["max"] = 10, + ["min"] = 7, + }, ["Boots"] = { - ["max"] = 10, - ["min"] = 7, - }, + ["max"] = 10, + ["min"] = 7, + }, ["Staff"] = { - ["max"] = 10, - ["min"] = 7, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1054322244", - ["text"] = "#% chance to gain an Endurance Charge on Kill", - ["type"] = "explicit", - }, - }, + ["max"] = 10, + ["min"] = 7, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1054322244", + ["text"] = "#% chance to gain an Endurance Charge on Kill", + ["type"] = "explicit", + }, + }, ["2629_MinimumEnduranceChargesAndOnKillChance"] = { ["Amulet"] = { - ["max"] = 4, - ["min"] = 3, - }, + ["max"] = 4, + ["min"] = 3, + }, ["Ring"] = { - ["max"] = 4, - ["min"] = 3, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1054322244", - ["text"] = "#% chance to gain an Endurance Charge on Kill", - ["type"] = "explicit", - }, - }, + ["max"] = 4, + ["min"] = 3, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1054322244", + ["text"] = "#% chance to gain an Endurance Charge on Kill", + ["type"] = "explicit", + }, + }, ["2630_MinimumEnduranceChargesAndOnKillLose"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_627015097", - ["text"] = "#% chance to lose an Endurance Charge on Kill", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_627015097", + ["text"] = "#% chance to lose an Endurance Charge on Kill", + ["type"] = "explicit", + }, + }, ["2631_FrenzyChargeOnKillChance"] = { ["1HAxe"] = { - ["max"] = 10, - ["min"] = 4, - }, + ["max"] = 10, + ["min"] = 4, + }, ["1HSword"] = { - ["max"] = 10, - ["min"] = 4, - }, + ["max"] = 10, + ["min"] = 4, + }, ["1HWeapon"] = { - ["max"] = 10, - ["min"] = 4, - }, + ["max"] = 10, + ["min"] = 4, + }, ["2HAxe"] = { - ["max"] = 10, - ["min"] = 4, - }, + ["max"] = 10, + ["min"] = 4, + }, ["2HSword"] = { - ["max"] = 10, - ["min"] = 4, - }, + ["max"] = 10, + ["min"] = 4, + }, ["2HWeapon"] = { - ["max"] = 10, - ["min"] = 4, - }, + ["max"] = 10, + ["min"] = 4, + }, ["Bow"] = { - ["max"] = 10, - ["min"] = 4, - }, + ["max"] = 10, + ["min"] = 4, + }, ["Claw"] = { - ["max"] = 10, - ["min"] = 4, - }, + ["max"] = 10, + ["min"] = 4, + }, ["Dagger"] = { - ["max"] = 10, - ["min"] = 4, - }, + ["max"] = 10, + ["min"] = 4, + }, ["Gloves"] = { - ["max"] = 10, - ["min"] = 4, - }, + ["max"] = 10, + ["min"] = 4, + }, ["Quiver"] = { - ["max"] = 10, - ["min"] = 4, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1826802197", - ["text"] = "#% chance to gain a Frenzy Charge on Kill", - ["type"] = "explicit", - }, - }, + ["max"] = 10, + ["min"] = 4, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1826802197", + ["text"] = "#% chance to gain a Frenzy Charge on Kill", + ["type"] = "explicit", + }, + }, ["2631_FrenzyChargeOnKillChanceMaven"] = { ["1HAxe"] = { - ["max"] = 10, - ["min"] = 7, - }, + ["max"] = 10, + ["min"] = 7, + }, ["1HSword"] = { - ["max"] = 10, - ["min"] = 7, - }, + ["max"] = 10, + ["min"] = 7, + }, ["1HWeapon"] = { - ["max"] = 10, - ["min"] = 7, - }, + ["max"] = 10, + ["min"] = 7, + }, ["2HAxe"] = { - ["max"] = 10, - ["min"] = 7, - }, + ["max"] = 10, + ["min"] = 7, + }, ["2HSword"] = { - ["max"] = 10, - ["min"] = 7, - }, + ["max"] = 10, + ["min"] = 7, + }, ["2HWeapon"] = { - ["max"] = 10, - ["min"] = 7, - }, + ["max"] = 10, + ["min"] = 7, + }, ["Bow"] = { - ["max"] = 10, - ["min"] = 7, - }, + ["max"] = 10, + ["min"] = 7, + }, ["Claw"] = { - ["max"] = 10, - ["min"] = 7, - }, + ["max"] = 10, + ["min"] = 7, + }, ["Dagger"] = { - ["max"] = 10, - ["min"] = 7, - }, + ["max"] = 10, + ["min"] = 7, + }, ["Gloves"] = { - ["max"] = 10, - ["min"] = 7, - }, + ["max"] = 10, + ["min"] = 7, + }, ["Quiver"] = { - ["max"] = 10, - ["min"] = 7, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1826802197", - ["text"] = "#% chance to gain a Frenzy Charge on Kill", - ["type"] = "explicit", - }, - }, + ["max"] = 10, + ["min"] = 7, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1826802197", + ["text"] = "#% chance to gain a Frenzy Charge on Kill", + ["type"] = "explicit", + }, + }, ["2631_MinimumFrenzyChargesAndOnKillChance"] = { ["Amulet"] = { - ["max"] = 4, - ["min"] = 3, - }, + ["max"] = 4, + ["min"] = 3, + }, ["Ring"] = { - ["max"] = 4, - ["min"] = 3, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1826802197", - ["text"] = "#% chance to gain a Frenzy Charge on Kill", - ["type"] = "explicit", - }, - }, + ["max"] = 4, + ["min"] = 3, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1826802197", + ["text"] = "#% chance to gain a Frenzy Charge on Kill", + ["type"] = "explicit", + }, + }, ["2632_MinimumFrenzyChargesAndOnKillLose"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_2142803347", - ["text"] = "#% chance to lose a Frenzy Charge on Kill", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_2142803347", + ["text"] = "#% chance to lose a Frenzy Charge on Kill", + ["type"] = "explicit", + }, + }, ["2633_MinimumPowerChargesAndOnKillChance"] = { ["Amulet"] = { - ["max"] = 4, - ["min"] = 3, - }, + ["max"] = 4, + ["min"] = 3, + }, ["Ring"] = { - ["max"] = 4, - ["min"] = 3, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2483795307", - ["text"] = "#% chance to gain a Power Charge on Kill", - ["type"] = "explicit", - }, - }, + ["max"] = 4, + ["min"] = 3, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2483795307", + ["text"] = "#% chance to gain a Power Charge on Kill", + ["type"] = "explicit", + }, + }, ["2633_PowerChargeOnKillChance"] = { ["1HMace"] = { - ["max"] = 10, - ["min"] = 4, - }, + ["max"] = 10, + ["min"] = 4, + }, ["1HWeapon"] = { - ["max"] = 10, - ["min"] = 4, - }, + ["max"] = 10, + ["min"] = 4, + }, ["2HWeapon"] = { - ["max"] = 10, - ["min"] = 4, - }, + ["max"] = 10, + ["min"] = 4, + }, ["Claw"] = { - ["max"] = 10, - ["min"] = 4, - }, + ["max"] = 10, + ["min"] = 4, + }, ["Dagger"] = { - ["max"] = 10, - ["min"] = 4, - }, + ["max"] = 10, + ["min"] = 4, + }, ["Helmet"] = { - ["max"] = 10, - ["min"] = 4, - }, + ["max"] = 10, + ["min"] = 4, + }, ["Staff"] = { - ["max"] = 10, - ["min"] = 4, - }, + ["max"] = 10, + ["min"] = 4, + }, ["Wand"] = { - ["max"] = 10, - ["min"] = 4, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2483795307", - ["text"] = "#% chance to gain a Power Charge on Kill", - ["type"] = "explicit", - }, - }, + ["max"] = 10, + ["min"] = 4, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2483795307", + ["text"] = "#% chance to gain a Power Charge on Kill", + ["type"] = "explicit", + }, + }, ["2633_PowerChargeOnKillChanceMaven"] = { ["1HMace"] = { - ["max"] = 15, - ["min"] = 11, - }, + ["max"] = 15, + ["min"] = 11, + }, ["1HWeapon"] = { - ["max"] = 15, - ["min"] = 11, - }, + ["max"] = 15, + ["min"] = 11, + }, ["2HWeapon"] = { - ["max"] = 15, - ["min"] = 11, - }, + ["max"] = 15, + ["min"] = 11, + }, ["Claw"] = { - ["max"] = 15, - ["min"] = 11, - }, + ["max"] = 15, + ["min"] = 11, + }, ["Dagger"] = { - ["max"] = 15, - ["min"] = 11, - }, + ["max"] = 15, + ["min"] = 11, + }, ["Helmet"] = { - ["max"] = 15, - ["min"] = 11, - }, + ["max"] = 15, + ["min"] = 11, + }, ["Staff"] = { - ["max"] = 15, - ["min"] = 11, - }, + ["max"] = 15, + ["min"] = 11, + }, ["Wand"] = { - ["max"] = 15, - ["min"] = 11, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2483795307", - ["text"] = "#% chance to gain a Power Charge on Kill", - ["type"] = "explicit", - }, - }, + ["max"] = 15, + ["min"] = 11, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2483795307", + ["text"] = "#% chance to gain a Power Charge on Kill", + ["type"] = "explicit", + }, + }, ["2634_MinimumPowerChargesAndOnKillLose"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_2939195168", - ["text"] = "#% chance to lose a Power Charge on Kill", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_2939195168", + ["text"] = "#% chance to lose a Power Charge on Kill", + ["type"] = "explicit", + }, + }, ["2645_EnergyShieldRecoveryRateMaven"] = { ["Chest"] = { - ["max"] = 100, - ["min"] = 50, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2561836520", - ["text"] = "Regenerate # Energy Shield per second", - ["type"] = "explicit", - }, - }, + ["max"] = 100, + ["min"] = 50, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1330109706", + ["text"] = "Regenerate # Energy Shield per second", + ["type"] = "explicit", + }, + }, ["2646_EnergyShieldAndRegen"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_3594640492", - ["text"] = "Regenerate #% of Energy Shield per second", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_3594640492", + ["text"] = "Regenerate #% of Energy Shield per second", + ["type"] = "explicit", + }, + }, ["2646_EnergyShieldRegenerationPerMinute"] = { ["Boots"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Chest"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Gloves"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Helmet"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3594640492", - ["text"] = "Regenerate #% of Energy Shield per second", - ["type"] = "explicit", - }, - }, + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3594640492", + ["text"] = "Regenerate #% of Energy Shield per second", + ["type"] = "explicit", + }, + }, ["2646_EnergyShieldRegenerationPerMinuteMaven"] = { ["Helmet"] = { - ["max"] = 1.5, - ["min"] = 1, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3594640492", - ["text"] = "Regenerate #% of Energy Shield per second", - ["type"] = "explicit", - }, - }, + ["max"] = 1.5, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3594640492", + ["text"] = "Regenerate #% of Energy Shield per second", + ["type"] = "explicit", + }, + }, ["2647_EnergyShieldAndDegenGracePeriod"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_761102773", - ["text"] = "Lose #% of Energy Shield per second", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_761102773", + ["text"] = "Lose #% of Energy Shield per second", + ["type"] = "explicit", + }, + }, ["265_WeaponSpellDamageEfficacy"] = { ["1HMace"] = { - ["max"] = 20, - ["min"] = 16, - }, + ["max"] = 20, + ["min"] = 16, + }, ["1HWeapon"] = { - ["max"] = 20, - ["min"] = 16, - }, + ["max"] = 20, + ["min"] = 16, + }, ["Dagger"] = { - ["max"] = 20, - ["min"] = 16, - }, + ["max"] = 20, + ["min"] = 16, + }, ["Wand"] = { - ["max"] = 20, - ["min"] = 16, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3924539382", - ["text"] = "Socketed Gems are Supported by Level # Efficacy", - ["type"] = "explicit", - }, - }, + ["max"] = 20, + ["min"] = 16, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.indexable_support_91", + ["text"] = "Socketed Gems are Supported by Level # Efficacy", + ["type"] = "explicit", + }, + }, ["267_ElementalDamagePrefixElementalFocus"] = { ["1HMace"] = { - ["max"] = 20, - ["min"] = 16, - }, + ["max"] = 20, + ["min"] = 16, + }, ["1HWeapon"] = { - ["max"] = 20, - ["min"] = 16, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1169422227", - ["text"] = "Socketed Gems are Supported by Level # Elemental Focus", - ["type"] = "explicit", - }, - }, + ["max"] = 20, + ["min"] = 16, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.indexable_support_90", + ["text"] = "Socketed Gems are Supported by Level # Elemental Focus", + ["type"] = "explicit", + }, + }, ["2699_DamageRemovedFromManaBeforeLife"] = { ["Chest"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_458438597", - ["text"] = "#% of Damage is taken from Mana before Life", - ["type"] = "explicit", - }, - }, + ["max"] = 15, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_458438597", + ["text"] = "#% of Damage is taken from Mana before Life", + ["type"] = "explicit", + }, + }, ["269_SupportedByEmpower"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_3581578643", - ["text"] = "Socketed Gems are Supported by Level # Empower", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_3581578643", + ["text"] = "Socketed Gems are Supported by Level # Empower", + ["type"] = "explicit", + }, + }, ["26_ItemGenerationCanHaveMultipleCraftedMods"] = { ["1HAxe"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["1HMace"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["1HSword"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["1HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["2HAxe"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["2HMace"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["2HSword"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["2HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Amulet"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Belt"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Boots"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Bow"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Chest"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Claw"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Dagger"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Gloves"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Helmet"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Quiver"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Ring"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Shield"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Staff"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Wand"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1859333175", - ["text"] = "Can have up to 3 Crafted Modifiers", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1859333175", + ["text"] = "Can have up to 3 Crafted Modifiers", + ["type"] = "explicit", + }, + }, ["2706_EnemiesExplodeOnDeath"] = { ["1HMace"] = { - ["max"] = 5, - ["min"] = 5, - }, + ["max"] = 5, + ["min"] = 5, + }, ["1HWeapon"] = { - ["max"] = 5, - ["min"] = 5, - }, + ["max"] = 5, + ["min"] = 5, + }, ["2HMace"] = { - ["max"] = 5, - ["min"] = 5, - }, + ["max"] = 5, + ["min"] = 5, + }, ["2HWeapon"] = { - ["max"] = 5, - ["min"] = 5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3457687358", - ["text"] = "Enemies Killed with Attack or Spell Hits Explode, dealing #% of their Life as Fire Damage", - ["type"] = "explicit", - }, - }, + ["max"] = 5, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3457687358", + ["text"] = "Enemies Killed with Attack or Spell Hits Explode, dealing #% of their Life as Fire Damage", + ["type"] = "explicit", + }, + }, ["271_SupportedByEnhance"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_2556436882", - ["text"] = "Socketed Gems are Supported by Level # Enhance", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_2556436882", + ["text"] = "Socketed Gems are Supported by Level # Enhance", + ["type"] = "explicit", + }, + }, ["272_SupportedByEnlighten"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_2065361612", - ["text"] = "Socketed Gems are Supported by Level # Enlighten", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_2065361612", + ["text"] = "Socketed Gems are Supported by Level # Enlighten", + ["type"] = "explicit", + }, + }, ["2738_SpellDamagePer10Intelligence"] = { ["2HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Staff"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2818518881", - ["text"] = "#% increased Spell Damage per 10 Intelligence", - ["type"] = "explicit", - }, - }, + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2818518881", + ["text"] = "#% increased Spell Damage per 10 Intelligence", + ["type"] = "explicit", + }, + }, ["2741_LightRadiusScalesWithEnergyShield"] = { ["Helmet"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Ring"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_3836017971", - ["text"] = "Light Radius is based on Energy Shield instead of Life", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_3836017971", + ["text"] = "Light Radius is based on Energy Shield instead of Life", + ["type"] = "explicit", + }, + }, ["2742_FlaskEffect"] = { ["Belt"] = { - ["max"] = 12, - ["min"] = 4, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_114734841", - ["text"] = "Flasks applied to you have #% increased Effect", - ["type"] = "explicit", - }, - }, + ["max"] = 12, + ["min"] = 4, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_114734841", + ["text"] = "Flasks applied to you have #% increased Effect", + ["type"] = "explicit", + }, + }, ["2742_FlaskEffectAndFlaskChargesGained"] = { ["Belt"] = { - ["max"] = 18, - ["min"] = 8, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_114734841", - ["text"] = "Flasks applied to you have #% increased Effect", - ["type"] = "explicit", - }, - }, + ["max"] = 18, + ["min"] = 8, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_114734841", + ["text"] = "Flasks applied to you have #% increased Effect", + ["type"] = "explicit", + }, + }, ["2743_MagicUtilityFlaskEffect"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_2564857472", - ["text"] = "Magic Utility Flasks applied to you have #% increased Effect", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_2564857472", + ["text"] = "Magic Utility Flasks applied to you have #% increased Effect", + ["type"] = "explicit", + }, + }, ["2745_LocalMeleeWeaponRange"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_350598685", - ["text"] = "+# metres to Weapon Range", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_350598685", + ["text"] = "+# metres to Weapon Range", + ["type"] = "explicit", + }, + }, ["2745_LocalWeaponRangeUber"] = { ["2HAxe"] = { - ["max"] = 0.3, - ["min"] = 0.1, - }, + ["max"] = 0.3, + ["min"] = 0.1, + }, ["2HMace"] = { - ["max"] = 0.3, - ["min"] = 0.1, - }, + ["max"] = 0.3, + ["min"] = 0.1, + }, ["2HSword"] = { - ["max"] = 0.3, - ["min"] = 0.1, - }, + ["max"] = 0.3, + ["min"] = 0.1, + }, ["2HWeapon"] = { - ["max"] = 0.3, - ["min"] = 0.1, - }, + ["max"] = 0.3, + ["min"] = 0.1, + }, ["Staff"] = { - ["max"] = 0.3, - ["min"] = 0.1, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_350598685", - ["text"] = "+# metres to Weapon Range", - ["type"] = "explicit", - }, - }, + ["max"] = 0.3, + ["min"] = 0.1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_350598685", + ["text"] = "+# metres to Weapon Range", + ["type"] = "explicit", + }, + }, ["2756_RarityDuringFlaskEffect"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_301625329", - ["text"] = "#% increased Rarity of Items found during any Flask Effect", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_301625329", + ["text"] = "#% increased Rarity of Items found during any Flask Effect", + ["type"] = "explicit", + }, + }, ["277_FireDamagePrefixFirePenetration"] = { ["1HMace"] = { - ["max"] = 20, - ["min"] = 16, - }, + ["max"] = 20, + ["min"] = 16, + }, ["1HWeapon"] = { - ["max"] = 20, - ["min"] = 16, - }, + ["max"] = 20, + ["min"] = 16, + }, ["Wand"] = { - ["max"] = 20, - ["min"] = 16, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3265951306", - ["text"] = "Socketed Gems are Supported by Level # Fire Penetration", - ["type"] = "explicit", - }, - }, + ["max"] = 20, + ["min"] = 16, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.indexable_support_82", + ["text"] = "Socketed Gems are Supported by Level # Fire Penetration", + ["type"] = "explicit", + }, + }, ["2787_TotemElementalResistancesForJewel"] = { ["AnyJewel"] = { - ["max"] = 10, - ["min"] = 6, - }, + ["max"] = 10, + ["min"] = 6, + }, ["BaseJewel"] = { - ["max"] = 10, - ["min"] = 6, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1809006367", - ["text"] = "Totems gain +#% to all Elemental Resistances", - ["type"] = "explicit", - }, - }, + ["max"] = 10, + ["min"] = 6, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1809006367", + ["text"] = "Totems gain +#% to all Elemental Resistances", + ["type"] = "explicit", + }, + }, ["2798_FireAndColdResistance"] = { ["Amulet"] = { - ["max"] = 16, - ["min"] = 10, - }, + ["max"] = 16, + ["min"] = 10, + }, ["Belt"] = { - ["max"] = 20, - ["min"] = 10, - }, + ["max"] = 20, + ["min"] = 10, + }, ["Boots"] = { - ["max"] = 20, - ["min"] = 10, - }, + ["max"] = 20, + ["min"] = 10, + }, ["Chest"] = { - ["max"] = 20, - ["min"] = 10, - }, + ["max"] = 20, + ["min"] = 10, + }, ["Gloves"] = { - ["max"] = 20, - ["min"] = 10, - }, + ["max"] = 20, + ["min"] = 10, + }, ["Helmet"] = { - ["max"] = 20, - ["min"] = 10, - }, + ["max"] = 20, + ["min"] = 10, + }, ["Quiver"] = { - ["max"] = 20, - ["min"] = 10, - }, + ["max"] = 20, + ["min"] = 10, + }, ["Ring"] = { - ["max"] = 16, - ["min"] = 10, - }, + ["max"] = 16, + ["min"] = 10, + }, ["Shield"] = { - ["max"] = 20, - ["min"] = 10, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2915988346", - ["text"] = "+#% to Fire and Cold Resistances", - ["type"] = "explicit", - }, - }, + ["max"] = 20, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2915988346", + ["text"] = "+#% to Fire and Cold Resistances", + ["type"] = "explicit", + }, + }, ["2798_FireColdResistanceForJewel"] = { ["AbyssJewel"] = { - ["max"] = 12, - ["min"] = 10, - }, + ["max"] = 12, + ["min"] = 10, + }, ["AnyJewel"] = { - ["max"] = 12, - ["min"] = 10, - }, + ["max"] = 12, + ["min"] = 10, + }, ["BaseJewel"] = { - ["max"] = 12, - ["min"] = 10, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2915988346", - ["text"] = "+#% to Fire and Cold Resistances", - ["type"] = "explicit", - }, - }, + ["max"] = 12, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2915988346", + ["text"] = "+#% to Fire and Cold Resistances", + ["type"] = "explicit", + }, + }, ["2799_FireAndLightningResistance"] = { ["Amulet"] = { - ["max"] = 16, - ["min"] = 10, - }, + ["max"] = 16, + ["min"] = 10, + }, ["Belt"] = { - ["max"] = 20, - ["min"] = 10, - }, + ["max"] = 20, + ["min"] = 10, + }, ["Boots"] = { - ["max"] = 20, - ["min"] = 10, - }, + ["max"] = 20, + ["min"] = 10, + }, ["Chest"] = { - ["max"] = 20, - ["min"] = 10, - }, + ["max"] = 20, + ["min"] = 10, + }, ["Gloves"] = { - ["max"] = 20, - ["min"] = 10, - }, + ["max"] = 20, + ["min"] = 10, + }, ["Helmet"] = { - ["max"] = 20, - ["min"] = 10, - }, + ["max"] = 20, + ["min"] = 10, + }, ["Quiver"] = { - ["max"] = 20, - ["min"] = 10, - }, + ["max"] = 20, + ["min"] = 10, + }, ["Ring"] = { - ["max"] = 16, - ["min"] = 10, - }, + ["max"] = 16, + ["min"] = 10, + }, ["Shield"] = { - ["max"] = 20, - ["min"] = 10, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3441501978", - ["text"] = "+#% to Fire and Lightning Resistances", - ["type"] = "explicit", - }, - }, + ["max"] = 20, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3441501978", + ["text"] = "+#% to Fire and Lightning Resistances", + ["type"] = "explicit", + }, + }, ["2799_FireLightningResistanceForJewel"] = { ["AbyssJewel"] = { - ["max"] = 12, - ["min"] = 10, - }, + ["max"] = 12, + ["min"] = 10, + }, ["AnyJewel"] = { - ["max"] = 12, - ["min"] = 10, - }, + ["max"] = 12, + ["min"] = 10, + }, ["BaseJewel"] = { - ["max"] = 12, - ["min"] = 10, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3441501978", - ["text"] = "+#% to Fire and Lightning Resistances", - ["type"] = "explicit", - }, - }, + ["max"] = 12, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3441501978", + ["text"] = "+#% to Fire and Lightning Resistances", + ["type"] = "explicit", + }, + }, ["2800_ColdAndLightningResistance"] = { ["Amulet"] = { - ["max"] = 16, - ["min"] = 10, - }, + ["max"] = 16, + ["min"] = 10, + }, ["Belt"] = { - ["max"] = 20, - ["min"] = 10, - }, + ["max"] = 20, + ["min"] = 10, + }, ["Boots"] = { - ["max"] = 20, - ["min"] = 10, - }, + ["max"] = 20, + ["min"] = 10, + }, ["Chest"] = { - ["max"] = 20, - ["min"] = 10, - }, + ["max"] = 20, + ["min"] = 10, + }, ["Gloves"] = { - ["max"] = 20, - ["min"] = 10, - }, + ["max"] = 20, + ["min"] = 10, + }, ["Helmet"] = { - ["max"] = 20, - ["min"] = 10, - }, + ["max"] = 20, + ["min"] = 10, + }, ["Quiver"] = { - ["max"] = 20, - ["min"] = 10, - }, + ["max"] = 20, + ["min"] = 10, + }, ["Ring"] = { - ["max"] = 16, - ["min"] = 10, - }, + ["max"] = 16, + ["min"] = 10, + }, ["Shield"] = { - ["max"] = 20, - ["min"] = 10, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4277795662", - ["text"] = "+#% to Cold and Lightning Resistances", - ["type"] = "explicit", - }, - }, + ["max"] = 20, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4277795662", + ["text"] = "+#% to Cold and Lightning Resistances", + ["type"] = "explicit", + }, + }, ["2800_ColdLightningResistanceForJewel"] = { ["AbyssJewel"] = { - ["max"] = 12, - ["min"] = 10, - }, + ["max"] = 12, + ["min"] = 10, + }, ["AnyJewel"] = { - ["max"] = 12, - ["min"] = 10, - }, + ["max"] = 12, + ["min"] = 10, + }, ["BaseJewel"] = { - ["max"] = 12, - ["min"] = 10, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4277795662", - ["text"] = "+#% to Cold and Lightning Resistances", - ["type"] = "explicit", - }, - }, + ["max"] = 12, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4277795662", + ["text"] = "+#% to Cold and Lightning Resistances", + ["type"] = "explicit", + }, + }, ["2801_ChanceToFreezeShockIgniteProliferation"] = { ["1HMace"] = { - ["max"] = 10, - ["min"] = 5, - }, + ["max"] = 10, + ["min"] = 5, + }, ["1HWeapon"] = { - ["max"] = 10, - ["min"] = 5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_800141891", - ["text"] = "#% chance to Freeze, Shock and Ignite", - ["type"] = "explicit", - }, - }, + ["max"] = 10, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_800141891", + ["text"] = "#% chance to Freeze, Shock and Ignite", + ["type"] = "explicit", + }, + }, ["2801_ChanceToFreezeShockIgniteUnboundAilments"] = { ["1HMace"] = { - ["max"] = 10, - ["min"] = 5, - }, + ["max"] = 10, + ["min"] = 5, + }, ["1HWeapon"] = { - ["max"] = 10, - ["min"] = 5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_800141891", - ["text"] = "#% chance to Freeze, Shock and Ignite", - ["type"] = "explicit", - }, - }, + ["max"] = 10, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_800141891", + ["text"] = "#% chance to Freeze, Shock and Ignite", + ["type"] = "explicit", + }, + }, ["2811_GlobalChanceToBlindOnHitMaven"] = { ["Gloves"] = { - ["max"] = 30, - ["min"] = 20, - }, + ["max"] = 30, + ["min"] = 20, + }, ["Quiver"] = { - ["max"] = 30, - ["min"] = 20, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3503466234", - ["text"] = "#% increased Damage with Hits and Ailments against Blinded Enemies", - ["type"] = "explicit", - }, - }, + ["max"] = 30, + ["min"] = 20, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3503466234", + ["text"] = "#% increased Damage with Hits and Ailments against Blinded Enemies", + ["type"] = "explicit", + }, + }, ["2827_OnslaughtWhenHitForDuration"] = { ["Chest"] = { - ["max"] = 6, - ["min"] = 6, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2764164760", - ["text"] = "You gain Onslaught for # seconds when Hit", - ["type"] = "explicit", - }, - }, + ["max"] = 6, + ["min"] = 6, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2764164760", + ["text"] = "You gain Onslaught for # seconds when Hit", + ["type"] = "explicit", + }, + }, ["2833_AllDefences"] = { ["AbyssJewel"] = { - ["max"] = 6, - ["min"] = 4, - }, + ["max"] = 6, + ["min"] = 4, + }, ["AnyJewel"] = { - ["max"] = 6, - ["min"] = 4, - }, + ["max"] = 6, + ["min"] = 4, + }, ["BaseJewel"] = { - ["max"] = 6, - ["min"] = 4, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1389153006", - ["text"] = "#% increased Global Defences", - ["type"] = "explicit", - }, - }, + ["max"] = 6, + ["min"] = 4, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1389153006", + ["text"] = "#% increased Global Defences", + ["type"] = "explicit", + }, + }, ["2833_IncreasedDefensesForJewel"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1389153006", - ["text"] = "#% increased Global Defences", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1389153006", + ["text"] = "#% increased Global Defences", + ["type"] = "explicit", + }, + }, ["2844_FishingLineStrength"] = { ["FishingRod"] = { - ["max"] = 40, - ["min"] = 20, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1842038569", - ["text"] = "#% increased Fishing Line Strength", - ["type"] = "explicit", - }, - }, + ["max"] = 40, + ["min"] = 20, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1842038569", + ["text"] = "#% increased Fishing Line Strength", + ["type"] = "explicit", + }, + }, ["2845_FishingPoolConsumption"] = { ["FishingRod"] = { - ["max"] = 30, - ["min"] = 15, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1550221644", - ["text"] = "#% reduced Fishing Pool Consumption", - ["type"] = "explicit", - }, - }, + ["max"] = 30, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1550221644", + ["text"] = "#% reduced Fishing Pool Consumption", + ["type"] = "explicit", + }, + }, ["2846_FishingLureType"] = { ["FishingRod"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_3360430812", - ["text"] = "Rhoa Feather Lure", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_3360430812", + ["text"] = "Rhoa Feather Lure", + ["type"] = "explicit", + }, + }, ["2847_FishingHookType"] = { ["FishingRod"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_2054162825", - ["text"] = "Karui Stone Hook", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_2054162825", + ["text"] = "Karui Stone Hook", + ["type"] = "explicit", + }, + }, ["2848_FishingCastDistance"] = { ["FishingRod"] = { - ["max"] = 50, - ["min"] = 30, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_170497091", - ["text"] = "#% increased Fishing Range", - ["type"] = "explicit", - }, - }, + ["max"] = 50, + ["min"] = 30, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_170497091", + ["text"] = "#% increased Fishing Range", + ["type"] = "explicit", + }, + }, ["2849_FishingQuantity"] = { ["FishingRod"] = { - ["max"] = 20, - ["min"] = 15, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3802667447", - ["text"] = "#% increased Quantity of Fish Caught", - ["type"] = "explicit", - }, - }, + ["max"] = 20, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3802667447", + ["text"] = "#% increased Quantity of Fish Caught", + ["type"] = "explicit", + }, + }, ["2850_FishingRarity"] = { ["FishingRod"] = { - ["max"] = 40, - ["min"] = 25, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3310914132", - ["text"] = "#% increased Rarity of Fish Caught", - ["type"] = "explicit", - }, - }, + ["max"] = 40, + ["min"] = 25, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3310914132", + ["text"] = "#% increased Rarity of Fish Caught", + ["type"] = "explicit", + }, + }, ["2871_AllColdDamageCanIgnite"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_3573591118", - ["text"] = "Your Cold Damage can Ignite", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1888494262", + ["text"] = "Your Cold Damage can Ignite", + ["type"] = "explicit", + }, + }, ["2876_AllFireDamageCanShock"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_932096321", - ["text"] = "Your Fire Damage can Shock", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_932096321", + ["text"] = "Your Fire Damage can Shock", + ["type"] = "explicit", + }, + }, ["2883_AllLightningDamageCanFreeze"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_380759151", - ["text"] = "Your Lightning Damage can Freeze", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_380759151", + ["text"] = "Your Lightning Damage can Freeze", + ["type"] = "explicit", + }, + }, ["2903_MinionBlockForJewel"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_3374054207", - ["text"] = "Minions have +#% Chance to Block Attack Damage", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_3374054207", + ["text"] = "Minions have +#% Chance to Block Attack Damage", + ["type"] = "explicit", + }, + }, ["2907_MinionAttackAndCastSpeed"] = { ["AbyssJewel"] = { - ["max"] = 6, - ["min"] = 4, - }, + ["max"] = 6, + ["min"] = 4, + }, ["AnyJewel"] = { - ["max"] = 6, - ["min"] = 4, - }, + ["max"] = 6, + ["min"] = 4, + }, ["BaseJewel"] = { - ["max"] = 6, - ["min"] = 4, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3375935924", - ["text"] = "Minions have #% increased Attack Speed", - ["type"] = "explicit", - }, - }, + ["max"] = 6, + ["min"] = 4, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3375935924", + ["text"] = "Minions have #% increased Attack Speed", + ["type"] = "explicit", + }, + }, ["2907_MinionAttackAndCastSpeedOnWeapon"] = { ["1HAxe"] = { - ["max"] = 38, - ["min"] = 10, - }, + ["max"] = 38, + ["min"] = 10, + }, ["1HMace"] = { - ["max"] = 38, - ["min"] = 10, - }, + ["max"] = 38, + ["min"] = 10, + }, ["1HSword"] = { - ["max"] = 38, - ["min"] = 10, - }, + ["max"] = 38, + ["min"] = 10, + }, ["1HWeapon"] = { - ["max"] = 38, - ["min"] = 10, - }, + ["max"] = 38, + ["min"] = 10, + }, ["2HAxe"] = { - ["max"] = 38, - ["min"] = 18, - }, + ["max"] = 38, + ["min"] = 18, + }, ["2HMace"] = { - ["max"] = 38, - ["min"] = 18, - }, + ["max"] = 38, + ["min"] = 18, + }, ["2HSword"] = { - ["max"] = 38, - ["min"] = 18, - }, + ["max"] = 38, + ["min"] = 18, + }, ["2HWeapon"] = { - ["max"] = 38, - ["min"] = 18, - }, + ["max"] = 38, + ["min"] = 18, + }, ["Bow"] = { - ["max"] = 38, - ["min"] = 18, - }, + ["max"] = 38, + ["min"] = 18, + }, ["Claw"] = { - ["max"] = 38, - ["min"] = 10, - }, + ["max"] = 38, + ["min"] = 10, + }, ["Dagger"] = { - ["max"] = 38, - ["min"] = 10, - }, + ["max"] = 38, + ["min"] = 10, + }, ["Staff"] = { - ["max"] = 38, - ["min"] = 18, - }, + ["max"] = 38, + ["min"] = 18, + }, ["Wand"] = { - ["max"] = 38, - ["min"] = 10, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3375935924", - ["text"] = "Minions have #% increased Attack Speed", - ["type"] = "explicit", - }, - }, + ["max"] = 38, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3375935924", + ["text"] = "Minions have #% increased Attack Speed", + ["type"] = "explicit", + }, + }, ["2908_MinionAttackAndCastSpeed"] = { ["AbyssJewel"] = { - ["max"] = 6, - ["min"] = 4, - }, + ["max"] = 6, + ["min"] = 4, + }, ["AnyJewel"] = { - ["max"] = 6, - ["min"] = 4, - }, + ["max"] = 6, + ["min"] = 4, + }, ["BaseJewel"] = { - ["max"] = 6, - ["min"] = 4, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4000101551", - ["text"] = "Minions have #% increased Cast Speed", - ["type"] = "explicit", - }, - }, + ["max"] = 6, + ["min"] = 4, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4000101551", + ["text"] = "Minions have #% increased Cast Speed", + ["type"] = "explicit", + }, + }, ["2908_MinionAttackAndCastSpeedOnWeapon"] = { ["1HAxe"] = { - ["max"] = 38, - ["min"] = 10, - }, + ["max"] = 38, + ["min"] = 10, + }, ["1HMace"] = { - ["max"] = 38, - ["min"] = 10, - }, + ["max"] = 38, + ["min"] = 10, + }, ["1HSword"] = { - ["max"] = 38, - ["min"] = 10, - }, + ["max"] = 38, + ["min"] = 10, + }, ["1HWeapon"] = { - ["max"] = 38, - ["min"] = 10, - }, + ["max"] = 38, + ["min"] = 10, + }, ["2HAxe"] = { - ["max"] = 38, - ["min"] = 18, - }, + ["max"] = 38, + ["min"] = 18, + }, ["2HMace"] = { - ["max"] = 38, - ["min"] = 18, - }, + ["max"] = 38, + ["min"] = 18, + }, ["2HSword"] = { - ["max"] = 38, - ["min"] = 18, - }, + ["max"] = 38, + ["min"] = 18, + }, ["2HWeapon"] = { - ["max"] = 38, - ["min"] = 18, - }, + ["max"] = 38, + ["min"] = 18, + }, ["Bow"] = { - ["max"] = 38, - ["min"] = 18, - }, + ["max"] = 38, + ["min"] = 18, + }, ["Claw"] = { - ["max"] = 38, - ["min"] = 10, - }, + ["max"] = 38, + ["min"] = 10, + }, ["Dagger"] = { - ["max"] = 38, - ["min"] = 10, - }, + ["max"] = 38, + ["min"] = 10, + }, ["Staff"] = { - ["max"] = 38, - ["min"] = 18, - }, + ["max"] = 38, + ["min"] = 18, + }, ["Wand"] = { - ["max"] = 38, - ["min"] = 10, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4000101551", - ["text"] = "Minions have #% increased Cast Speed", - ["type"] = "explicit", - }, - }, + ["max"] = 38, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4000101551", + ["text"] = "Minions have #% increased Cast Speed", + ["type"] = "explicit", + }, + }, ["2910_MinionLifeLeech"] = { ["AbyssJewel"] = { - ["max"] = 0.5, - ["min"] = 0.3, - }, + ["max"] = 0.5, + ["min"] = 0.3, + }, ["AnyJewel"] = { - ["max"] = 0.5, - ["min"] = 0.3, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2770782267", - ["text"] = "Minions Leech #% of Damage as Life", - ["type"] = "explicit", - }, - }, + ["max"] = 0.5, + ["min"] = 0.3, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2770782267", + ["text"] = "Minions Leech #% of Damage as Life", + ["type"] = "explicit", + }, + }, ["2911_MinionLifeMaven"] = { ["Helmet"] = { - ["max"] = 1.5, - ["min"] = 1, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2479683456", - ["text"] = "Minions Regenerate #% of Life per second", - ["type"] = "explicit", - }, - }, + ["max"] = 1.5, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2479683456", + ["text"] = "Minions Regenerate #% of Life per second", + ["type"] = "explicit", + }, + }, ["2911_MinionLifeRegeneration"] = { ["AbyssJewel"] = { - ["max"] = 0.8, - ["min"] = 0.4, - }, + ["max"] = 0.8, + ["min"] = 0.4, + }, ["AnyJewel"] = { - ["max"] = 0.8, - ["min"] = 0.4, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2479683456", - ["text"] = "Minions Regenerate #% of Life per second", - ["type"] = "explicit", - }, - }, + ["max"] = 0.8, + ["min"] = 0.4, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2479683456", + ["text"] = "Minions Regenerate #% of Life per second", + ["type"] = "explicit", + }, + }, ["2912_AllResistancesMinionResistances"] = { ["Amulet"] = { - ["max"] = 12, - ["min"] = 5, - }, + ["max"] = 12, + ["min"] = 5, + }, ["Ring"] = { - ["max"] = 12, - ["min"] = 5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1423639565", - ["text"] = "Minions have +#% to all Elemental Resistances", - ["type"] = "explicit", - }, - }, + ["max"] = 12, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1423639565", + ["text"] = "Minions have +#% to all Elemental Resistances", + ["type"] = "explicit", + }, + }, ["2912_MinionElementalResistance"] = { ["Ring"] = { - ["max"] = 30, - ["min"] = 11, - }, + ["max"] = 30, + ["min"] = 11, + }, ["Shield"] = { - ["max"] = 30, - ["min"] = 11, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1423639565", - ["text"] = "Minions have +#% to all Elemental Resistances", - ["type"] = "explicit", - }, - }, + ["max"] = 30, + ["min"] = 11, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1423639565", + ["text"] = "Minions have +#% to all Elemental Resistances", + ["type"] = "explicit", + }, + }, ["2912_MinionElementalResistancesForJewel"] = { ["AbyssJewel"] = { - ["max"] = 10, - ["min"] = 6, - }, + ["max"] = 10, + ["min"] = 6, + }, ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 6, - }, + ["max"] = 15, + ["min"] = 6, + }, ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 11, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1423639565", - ["text"] = "Minions have +#% to all Elemental Resistances", - ["type"] = "explicit", - }, - }, + ["max"] = 15, + ["min"] = 11, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1423639565", + ["text"] = "Minions have +#% to all Elemental Resistances", + ["type"] = "explicit", + }, + }, ["2913_MinionChaosResistance"] = { ["AbyssJewel"] = { - ["max"] = 11, - ["min"] = 7, - }, + ["max"] = 11, + ["min"] = 7, + }, ["AnyJewel"] = { - ["max"] = 11, - ["min"] = 7, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3837707023", - ["text"] = "Minions have +#% to Chaos Resistance", - ["type"] = "explicit", - }, - }, + ["max"] = 11, + ["min"] = 7, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3837707023", + ["text"] = "Minions have +#% to Chaos Resistance", + ["type"] = "explicit", + }, + }, ["2936_PhysicalDamageAddedAsRandomElement"] = { ["1HMace"] = { - ["max"] = 15, - ["min"] = 7, - }, + ["max"] = 15, + ["min"] = 7, + }, ["1HWeapon"] = { - ["max"] = 15, - ["min"] = 7, - }, + ["max"] = 15, + ["min"] = 7, + }, ["2HWeapon"] = { - ["max"] = 15, - ["min"] = 7, - }, + ["max"] = 15, + ["min"] = 7, + }, ["Bow"] = { - ["max"] = 15, - ["min"] = 7, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3753703249", - ["text"] = "Gain #% of Physical Damage as Extra Damage of a random Element", - ["type"] = "explicit", - }, - }, + ["max"] = 15, + ["min"] = 7, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3753703249", + ["text"] = "Gain #% of Physical Damage as Extra Damage of a random Element", + ["type"] = "explicit", + }, + }, ["2943_IncreasedWandDamageForJewel"] = { ["AnyJewel"] = { - ["max"] = 16, - ["min"] = 14, - }, + ["max"] = 16, + ["min"] = 14, + }, ["BaseJewel"] = { - ["max"] = 16, - ["min"] = 14, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_379328644", - ["text"] = "#% increased Damage with Wands", - ["type"] = "explicit", - }, - }, + ["max"] = 16, + ["min"] = 14, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_379328644", + ["text"] = "#% increased Damage with Wands", + ["type"] = "explicit", + }, + }, ["2958_BlindOnHitSupported"] = { ["Gloves"] = { - ["max"] = 10, - ["min"] = 5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2221570601", - ["text"] = "#% Global chance to Blind Enemies on hit", - ["type"] = "explicit", - }, - }, + ["max"] = 10, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2221570601", + ["text"] = "#% Global chance to Blind Enemies on hit", + ["type"] = "explicit", + }, + }, ["2958_GlobalChanceToBlindOnHit"] = { ["Boots"] = { - ["max"] = 6, - ["min"] = 4, - }, + ["max"] = 6, + ["min"] = 4, + }, ["Chest"] = { - ["max"] = 6, - ["min"] = 4, - }, + ["max"] = 6, + ["min"] = 4, + }, ["Gloves"] = { - ["max"] = 15, - ["min"] = 4, - }, + ["max"] = 15, + ["min"] = 4, + }, ["Helmet"] = { - ["max"] = 6, - ["min"] = 4, - }, + ["max"] = 6, + ["min"] = 4, + }, ["Quiver"] = { - ["max"] = 15, - ["min"] = 8, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2221570601", - ["text"] = "#% Global chance to Blind Enemies on hit", - ["type"] = "explicit", - }, - }, + ["max"] = 15, + ["min"] = 8, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2221570601", + ["text"] = "#% Global chance to Blind Enemies on hit", + ["type"] = "explicit", + }, + }, ["2958_GlobalChanceToBlindOnHitMaven"] = { ["Gloves"] = { - ["max"] = 15, - ["min"] = 12, - }, + ["max"] = 15, + ["min"] = 12, + }, ["Quiver"] = { - ["max"] = 15, - ["min"] = 12, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2221570601", - ["text"] = "#% Global chance to Blind Enemies on hit", - ["type"] = "explicit", - }, - }, - ["2974_ImmunityToBlind"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1436284579", - ["text"] = "Cannot be Blinded", - ["type"] = "explicit", - }, - }, + ["max"] = 15, + ["min"] = 12, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2221570601", + ["text"] = "#% Global chance to Blind Enemies on hit", + ["type"] = "explicit", + }, + }, ["2974_NearbyEnemiesAreBlindedMaven"] = { ["Chest"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1436284579", - ["text"] = "Cannot be Blinded", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1436284579", + ["text"] = "Cannot be Blinded", + ["type"] = "explicit", + }, + }, ["2980_ElementalPenetration"] = { ["1HAxe"] = { - ["max"] = 6, - ["min"] = 4, - }, + ["max"] = 6, + ["min"] = 4, + }, ["1HMace"] = { - ["max"] = 6, - ["min"] = 4, - }, + ["max"] = 6, + ["min"] = 4, + }, ["1HSword"] = { - ["max"] = 6, - ["min"] = 4, - }, + ["max"] = 6, + ["min"] = 4, + }, ["1HWeapon"] = { - ["max"] = 6, - ["min"] = 4, - }, + ["max"] = 6, + ["min"] = 4, + }, ["2HAxe"] = { - ["max"] = 12, - ["min"] = 4, - }, + ["max"] = 12, + ["min"] = 4, + }, ["2HMace"] = { - ["max"] = 12, - ["min"] = 4, - }, + ["max"] = 12, + ["min"] = 4, + }, ["2HSword"] = { - ["max"] = 12, - ["min"] = 4, - }, + ["max"] = 12, + ["min"] = 4, + }, ["2HWeapon"] = { - ["max"] = 12, - ["min"] = 4, - }, + ["max"] = 12, + ["min"] = 4, + }, ["AbyssJewel"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Amulet"] = { - ["max"] = 7, - ["min"] = 3, - }, + ["max"] = 7, + ["min"] = 3, + }, ["AnyJewel"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["BaseJewel"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Bow"] = { - ["max"] = 12, - ["min"] = 7, - }, + ["max"] = 12, + ["min"] = 7, + }, ["Claw"] = { - ["max"] = 6, - ["min"] = 4, - }, + ["max"] = 6, + ["min"] = 4, + }, ["Dagger"] = { - ["max"] = 6, - ["min"] = 4, - }, + ["max"] = 6, + ["min"] = 4, + }, ["Quiver"] = { - ["max"] = 5, - ["min"] = 3, - }, + ["max"] = 5, + ["min"] = 3, + }, ["Staff"] = { - ["max"] = 12, - ["min"] = 7, - }, + ["max"] = 12, + ["min"] = 7, + }, ["Wand"] = { - ["max"] = 6, - ["min"] = 4, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2101383955", - ["text"] = "Damage Penetrates #% Elemental Resistances", - ["type"] = "explicit", - }, - }, + ["max"] = 6, + ["min"] = 4, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2101383955", + ["text"] = "Damage Penetrates #% Elemental Resistances", + ["type"] = "explicit", + }, + }, ["2981_FireResistancePenetration"] = { ["1HAxe"] = { - ["max"] = 8, - ["min"] = 4, - }, + ["max"] = 8, + ["min"] = 4, + }, ["1HMace"] = { - ["max"] = 8, - ["min"] = 4, - }, + ["max"] = 8, + ["min"] = 4, + }, ["1HSword"] = { - ["max"] = 8, - ["min"] = 4, - }, + ["max"] = 8, + ["min"] = 4, + }, ["1HWeapon"] = { - ["max"] = 8, - ["min"] = 4, - }, + ["max"] = 8, + ["min"] = 4, + }, ["2HAxe"] = { - ["max"] = 16, - ["min"] = 7, - }, + ["max"] = 16, + ["min"] = 7, + }, ["2HMace"] = { - ["max"] = 16, - ["min"] = 7, - }, + ["max"] = 16, + ["min"] = 7, + }, ["2HSword"] = { - ["max"] = 16, - ["min"] = 7, - }, + ["max"] = 16, + ["min"] = 7, + }, ["2HWeapon"] = { - ["max"] = 16, - ["min"] = 7, - }, + ["max"] = 16, + ["min"] = 7, + }, ["AbyssJewel"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Amulet"] = { - ["max"] = 10, - ["min"] = 4, - }, + ["max"] = 10, + ["min"] = 4, + }, ["AnyJewel"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["BaseJewel"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Bow"] = { - ["max"] = 16, - ["min"] = 7, - }, + ["max"] = 16, + ["min"] = 7, + }, ["Claw"] = { - ["max"] = 8, - ["min"] = 4, - }, + ["max"] = 8, + ["min"] = 4, + }, ["Dagger"] = { - ["max"] = 8, - ["min"] = 4, - }, + ["max"] = 8, + ["min"] = 4, + }, ["Staff"] = { - ["max"] = 16, - ["min"] = 7, - }, + ["max"] = 16, + ["min"] = 7, + }, ["Wand"] = { - ["max"] = 8, - ["min"] = 4, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2653955271", - ["text"] = "Damage Penetrates #% Fire Resistance", - ["type"] = "explicit", - }, - }, + ["max"] = 8, + ["min"] = 4, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2653955271", + ["text"] = "Damage Penetrates #% Fire Resistance", + ["type"] = "explicit", + }, + }, ["2981_SpellAddedFireDamagePenetrationHybrid"] = { ["1HMace"] = { - ["max"] = 4, - ["min"] = 4, - }, + ["max"] = 4, + ["min"] = 4, + }, ["1HWeapon"] = { - ["max"] = 4, - ["min"] = 4, - }, + ["max"] = 4, + ["min"] = 4, + }, ["2HWeapon"] = { - ["max"] = 7, - ["min"] = 5, - }, + ["max"] = 7, + ["min"] = 5, + }, ["Dagger"] = { - ["max"] = 4, - ["min"] = 4, - }, + ["max"] = 4, + ["min"] = 4, + }, ["Staff"] = { - ["max"] = 7, - ["min"] = 5, - }, + ["max"] = 7, + ["min"] = 5, + }, ["Wand"] = { - ["max"] = 4, - ["min"] = 4, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2653955271", - ["text"] = "Damage Penetrates #% Fire Resistance", - ["type"] = "explicit", - }, - }, + ["max"] = 4, + ["min"] = 4, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2653955271", + ["text"] = "Damage Penetrates #% Fire Resistance", + ["type"] = "explicit", + }, + }, ["2983_ColdResistancePenetration"] = { ["1HAxe"] = { - ["max"] = 8, - ["min"] = 3, - }, + ["max"] = 8, + ["min"] = 3, + }, ["1HMace"] = { - ["max"] = 8, - ["min"] = 3, - }, + ["max"] = 8, + ["min"] = 3, + }, ["1HSword"] = { - ["max"] = 8, - ["min"] = 3, - }, + ["max"] = 8, + ["min"] = 3, + }, ["1HWeapon"] = { - ["max"] = 8, - ["min"] = 3, - }, + ["max"] = 8, + ["min"] = 3, + }, ["2HAxe"] = { - ["max"] = 16, - ["min"] = 5, - }, + ["max"] = 16, + ["min"] = 5, + }, ["2HMace"] = { - ["max"] = 16, - ["min"] = 5, - }, + ["max"] = 16, + ["min"] = 5, + }, ["2HSword"] = { - ["max"] = 16, - ["min"] = 5, - }, + ["max"] = 16, + ["min"] = 5, + }, ["2HWeapon"] = { - ["max"] = 16, - ["min"] = 5, - }, + ["max"] = 16, + ["min"] = 5, + }, ["AbyssJewel"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Amulet"] = { - ["max"] = 10, - ["min"] = 4, - }, + ["max"] = 10, + ["min"] = 4, + }, ["AnyJewel"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["BaseJewel"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Bow"] = { - ["max"] = 16, - ["min"] = 5, - }, + ["max"] = 16, + ["min"] = 5, + }, ["Claw"] = { - ["max"] = 8, - ["min"] = 3, - }, + ["max"] = 8, + ["min"] = 3, + }, ["Dagger"] = { - ["max"] = 8, - ["min"] = 3, - }, + ["max"] = 8, + ["min"] = 3, + }, ["Staff"] = { - ["max"] = 16, - ["min"] = 5, - }, + ["max"] = 16, + ["min"] = 5, + }, ["Wand"] = { - ["max"] = 8, - ["min"] = 3, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3417711605", - ["text"] = "Damage Penetrates #% Cold Resistance", - ["type"] = "explicit", - }, - }, + ["max"] = 8, + ["min"] = 3, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3417711605", + ["text"] = "Damage Penetrates #% Cold Resistance", + ["type"] = "explicit", + }, + }, ["2983_SpellAddedColdDamagePenetrationHybrid"] = { ["1HMace"] = { - ["max"] = 4, - ["min"] = 4, - }, + ["max"] = 4, + ["min"] = 4, + }, ["1HWeapon"] = { - ["max"] = 4, - ["min"] = 4, - }, + ["max"] = 4, + ["min"] = 4, + }, ["2HWeapon"] = { - ["max"] = 7, - ["min"] = 5, - }, + ["max"] = 7, + ["min"] = 5, + }, ["Dagger"] = { - ["max"] = 4, - ["min"] = 4, - }, + ["max"] = 4, + ["min"] = 4, + }, ["Staff"] = { - ["max"] = 7, - ["min"] = 5, - }, + ["max"] = 7, + ["min"] = 5, + }, ["Wand"] = { - ["max"] = 4, - ["min"] = 4, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3417711605", - ["text"] = "Damage Penetrates #% Cold Resistance", - ["type"] = "explicit", - }, - }, + ["max"] = 4, + ["min"] = 4, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3417711605", + ["text"] = "Damage Penetrates #% Cold Resistance", + ["type"] = "explicit", + }, + }, ["2984_LightningResistancePenetration"] = { ["1HAxe"] = { - ["max"] = 8, - ["min"] = 5, - }, + ["max"] = 8, + ["min"] = 5, + }, ["1HMace"] = { - ["max"] = 8, - ["min"] = 5, - }, + ["max"] = 8, + ["min"] = 5, + }, ["1HSword"] = { - ["max"] = 8, - ["min"] = 5, - }, + ["max"] = 8, + ["min"] = 5, + }, ["1HWeapon"] = { - ["max"] = 8, - ["min"] = 5, - }, + ["max"] = 8, + ["min"] = 5, + }, ["2HAxe"] = { - ["max"] = 16, - ["min"] = 9, - }, + ["max"] = 16, + ["min"] = 9, + }, ["2HMace"] = { - ["max"] = 16, - ["min"] = 9, - }, + ["max"] = 16, + ["min"] = 9, + }, ["2HSword"] = { - ["max"] = 16, - ["min"] = 9, - }, + ["max"] = 16, + ["min"] = 9, + }, ["2HWeapon"] = { - ["max"] = 16, - ["min"] = 9, - }, + ["max"] = 16, + ["min"] = 9, + }, ["AbyssJewel"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Amulet"] = { - ["max"] = 10, - ["min"] = 4, - }, + ["max"] = 10, + ["min"] = 4, + }, ["AnyJewel"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["BaseJewel"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Bow"] = { - ["max"] = 16, - ["min"] = 9, - }, + ["max"] = 16, + ["min"] = 9, + }, ["Claw"] = { - ["max"] = 8, - ["min"] = 5, - }, + ["max"] = 8, + ["min"] = 5, + }, ["Dagger"] = { - ["max"] = 8, - ["min"] = 5, - }, + ["max"] = 8, + ["min"] = 5, + }, ["Staff"] = { - ["max"] = 16, - ["min"] = 9, - }, + ["max"] = 16, + ["min"] = 9, + }, ["Wand"] = { - ["max"] = 8, - ["min"] = 5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_818778753", - ["text"] = "Damage Penetrates #% Lightning Resistance", - ["type"] = "explicit", - }, - }, + ["max"] = 8, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_818778753", + ["text"] = "Damage Penetrates #% Lightning Resistance", + ["type"] = "explicit", + }, + }, ["2984_SpellAddedLightningDamagePenetrationHybrid"] = { ["1HMace"] = { - ["max"] = 4, - ["min"] = 4, - }, + ["max"] = 4, + ["min"] = 4, + }, ["1HWeapon"] = { - ["max"] = 4, - ["min"] = 4, - }, + ["max"] = 4, + ["min"] = 4, + }, ["2HWeapon"] = { - ["max"] = 7, - ["min"] = 5, - }, + ["max"] = 7, + ["min"] = 5, + }, ["Dagger"] = { - ["max"] = 4, - ["min"] = 4, - }, + ["max"] = 4, + ["min"] = 4, + }, ["Staff"] = { - ["max"] = 7, - ["min"] = 5, - }, + ["max"] = 7, + ["min"] = 5, + }, ["Wand"] = { - ["max"] = 4, - ["min"] = 4, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_818778753", - ["text"] = "Damage Penetrates #% Lightning Resistance", - ["type"] = "explicit", - }, - }, + ["max"] = 4, + ["min"] = 4, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_818778753", + ["text"] = "Damage Penetrates #% Lightning Resistance", + ["type"] = "explicit", + }, + }, ["2993_ChanceToGainOnslaughtOnKill"] = { ["1HAxe"] = { - ["max"] = 10, - ["min"] = 10, - }, + ["max"] = 10, + ["min"] = 10, + }, ["1HMace"] = { - ["max"] = 10, - ["min"] = 10, - }, + ["max"] = 10, + ["min"] = 10, + }, ["1HSword"] = { - ["max"] = 10, - ["min"] = 10, - }, + ["max"] = 10, + ["min"] = 10, + }, ["1HWeapon"] = { - ["max"] = 10, - ["min"] = 10, - }, + ["max"] = 10, + ["min"] = 10, + }, ["2HAxe"] = { - ["max"] = 20, - ["min"] = 20, - }, + ["max"] = 20, + ["min"] = 20, + }, ["2HMace"] = { - ["max"] = 20, - ["min"] = 20, - }, + ["max"] = 20, + ["min"] = 20, + }, ["2HSword"] = { - ["max"] = 20, - ["min"] = 20, - }, + ["max"] = 20, + ["min"] = 20, + }, ["2HWeapon"] = { - ["max"] = 20, - ["min"] = 20, - }, + ["max"] = 20, + ["min"] = 20, + }, ["Boots"] = { - ["max"] = 10, - ["min"] = 5, - }, + ["max"] = 10, + ["min"] = 5, + }, ["Bow"] = { - ["max"] = 20, - ["min"] = 20, - }, + ["max"] = 20, + ["min"] = 20, + }, ["Claw"] = { - ["max"] = 10, - ["min"] = 10, - }, + ["max"] = 10, + ["min"] = 10, + }, ["Dagger"] = { - ["max"] = 10, - ["min"] = 10, - }, + ["max"] = 10, + ["min"] = 10, + }, ["Quiver"] = { - ["max"] = 10, - ["min"] = 5, - }, + ["max"] = 10, + ["min"] = 5, + }, ["Shield"] = { - ["max"] = 10, - ["min"] = 10, - }, + ["max"] = 10, + ["min"] = 10, + }, ["Staff"] = { - ["max"] = 20, - ["min"] = 20, - }, + ["max"] = 20, + ["min"] = 20, + }, ["Wand"] = { - ["max"] = 10, - ["min"] = 10, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3023957681", - ["text"] = "#% chance to gain Onslaught for 4 seconds on Kill", - ["type"] = "explicit", - }, - }, + ["max"] = 10, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2453026567", + ["text"] = "#% chance to gain Onslaught for 10 seconds on Kill", + ["type"] = "explicit", + }, + }, ["2993_ChanceToGainOnslaughtOnKillMaven"] = { ["Boots"] = { - ["max"] = 10, - ["min"] = 8, - }, + ["max"] = 10, + ["min"] = 8, + }, ["Quiver"] = { - ["max"] = 10, - ["min"] = 8, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3023957681", - ["text"] = "#% chance to gain Onslaught for 4 seconds on Kill", - ["type"] = "explicit", - }, - }, + ["max"] = 10, + ["min"] = 8, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2453026567", + ["text"] = "#% chance to gain Onslaught for 10 seconds on Kill", + ["type"] = "explicit", + }, + }, ["2993_IncreasedAttackAndCastSpeedSupportedMaven"] = { ["Gloves"] = { - ["max"] = 10, - ["min"] = 5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3023957681", - ["text"] = "#% chance to gain Onslaught for 4 seconds on Kill", - ["type"] = "explicit", - }, - }, + ["max"] = 10, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2453026567", + ["text"] = "#% chance to gain Onslaught for 10 seconds on Kill", + ["type"] = "explicit", + }, + }, ["2993_MovementVelocityAndOnslaughtOnKill"] = { ["Boots"] = { - ["max"] = 16, - ["min"] = 8, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3023957681", - ["text"] = "#% chance to gain Onslaught for 4 seconds on Kill", - ["type"] = "explicit", - }, - }, + ["max"] = 16, + ["min"] = 8, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2453026567", + ["text"] = "#% chance to gain Onslaught for 10 seconds on Kill", + ["type"] = "explicit", + }, + }, ["2_ElementalDamageOfYouAndMinionsCannotBeReflectedPercent"] = { ["Chest"] = { - ["max"] = 100, - ["min"] = 100, - }, + ["max"] = 100, + ["min"] = 100, + }, ["Ring"] = { - ["max"] = 75, - ["min"] = 40, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3408683611", - ["text"] = "#% of Elemental Hit Damage from you and your Minions cannot be Reflected", - ["type"] = "explicit", - }, - }, + ["max"] = 75, + ["min"] = 40, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3408683611", + ["text"] = "#% of Elemental Hit Damage from you and your Minions cannot be Reflected", + ["type"] = "explicit", + }, + }, ["2_ElementalDamageOfYouAndMinionsCannotBeReflectedPercentMaven"] = { ["Chest"] = { - ["max"] = 100, - ["min"] = 100, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3408683611", - ["text"] = "#% of Elemental Hit Damage from you and your Minions cannot be Reflected", - ["type"] = "explicit", - }, - }, + ["max"] = 100, + ["min"] = 100, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3408683611", + ["text"] = "#% of Elemental Hit Damage from you and your Minions cannot be Reflected", + ["type"] = "explicit", + }, + }, ["3015_IncreasedDamagePerCurse"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1818773442", - ["text"] = "#% increased Damage with Hits and Ailments per Curse on Enemy", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1818773442", + ["text"] = "#% increased Damage with Hits and Ailments per Curse on Enemy", + ["type"] = "explicit", + }, + }, ["3024_MinionAreaOfEffect"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_3811191316", - ["text"] = "Minions have #% increased Area of Effect", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_3811191316", + ["text"] = "Minions have #% increased Area of Effect", + ["type"] = "explicit", + }, + }, ["3060_RecoverLifePercentOnBlock"] = { ["Shield"] = { - ["max"] = 5, - ["min"] = 3, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2442647190", - ["text"] = "Recover #% of Life when you Block", - ["type"] = "explicit", - }, - }, + ["max"] = 5, + ["min"] = 3, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2442647190", + ["text"] = "Recover #% of Life when you Block", + ["type"] = "explicit", + }, + }, ["3063_DamageWhileLeeching"] = { ["1HSword"] = { - ["max"] = 30, - ["min"] = 18, - }, + ["max"] = 30, + ["min"] = 18, + }, ["1HWeapon"] = { - ["max"] = 30, - ["min"] = 18, - }, + ["max"] = 30, + ["min"] = 18, + }, ["2HSword"] = { - ["max"] = 45, - ["min"] = 18, - }, + ["max"] = 45, + ["min"] = 18, + }, ["2HWeapon"] = { - ["max"] = 45, - ["min"] = 18, - }, + ["max"] = 45, + ["min"] = 18, + }, ["Amulet"] = { - ["max"] = 43, - ["min"] = 31, - }, + ["max"] = 43, + ["min"] = 31, + }, ["Gloves"] = { - ["max"] = 43, - ["min"] = 31, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_310246444", - ["text"] = "#% increased Damage while Leeching", - ["type"] = "explicit", - }, - }, + ["max"] = 43, + ["min"] = 31, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_310246444", + ["text"] = "#% increased Damage while Leeching", + ["type"] = "explicit", + }, + }, ["3083_ChanceToGainUnholyMightOnKillAbyss"] = { ["AbyssJewel"] = { - ["max"] = 5, - ["min"] = 2, - }, + ["max"] = 5, + ["min"] = 2, + }, ["AnyJewel"] = { - ["max"] = 5, - ["min"] = 2, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3166317791", - ["text"] = "#% chance to Gain Unholy Might for 4 seconds on Melee Kill", - ["type"] = "explicit", - }, - }, + ["max"] = 5, + ["min"] = 2, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3166317791", + ["text"] = "#% chance to Gain Unholy Might for 4 seconds on Melee Kill", + ["type"] = "explicit", + }, + }, ["3095_VaalSkillDamage"] = { ["Belt"] = { - ["max"] = 40, - ["min"] = 20, - }, + ["max"] = 40, + ["min"] = 20, + }, ["Gloves"] = { - ["max"] = 60, - ["min"] = 20, - }, + ["max"] = 60, + ["min"] = 20, + }, ["Ring"] = { - ["max"] = 40, - ["min"] = 20, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2257141320", - ["text"] = "#% increased Damage with Vaal Skills", - ["type"] = "explicit", - }, - }, + ["max"] = 40, + ["min"] = 20, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2257141320", + ["text"] = "#% increased Damage with Vaal Skills", + ["type"] = "explicit", + }, + }, ["309_IgniteDurationSupported"] = { ["Helmet"] = { - ["max"] = 25, - ["min"] = 16, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2420410470", - ["text"] = "Socketed Gems are Supported by Level # Immolate", - ["type"] = "explicit", - }, - }, + ["max"] = 25, + ["min"] = 16, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.indexable_support_71", + ["text"] = "Socketed Gems are Supported by Level # Immolate", + ["type"] = "explicit", + }, + }, ["3104_AdditionalVaalSoulOnKill"] = { ["AbyssJewel"] = { - ["max"] = 5, - ["min"] = 3, - }, + ["max"] = 5, + ["min"] = 3, + }, ["AnyJewel"] = { - ["max"] = 5, - ["min"] = 3, - }, + ["max"] = 5, + ["min"] = 3, + }, ["BaseJewel"] = { - ["max"] = 5, - ["min"] = 3, - }, + ["max"] = 5, + ["min"] = 3, + }, ["Boots"] = { - ["max"] = 8, - ["min"] = 5, - }, + ["max"] = 8, + ["min"] = 5, + }, ["Chest"] = { - ["max"] = 8, - ["min"] = 5, - }, + ["max"] = 8, + ["min"] = 5, + }, ["Helmet"] = { - ["max"] = 8, - ["min"] = 5, - }, + ["max"] = 8, + ["min"] = 5, + }, ["Shield"] = { - ["max"] = 8, - ["min"] = 5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1962922582", - ["text"] = "#% chance to gain an additional Vaal Soul on Kill", - ["type"] = "explicit", - }, - }, + ["max"] = 8, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1962922582", + ["text"] = "#% chance to gain an additional Vaal Soul on Kill", + ["type"] = "explicit", + }, + }, ["3105_VaalSkillDuration"] = { ["Amulet"] = { - ["max"] = 25, - ["min"] = 15, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_547412107", - ["text"] = "Vaal Skills have #% increased Skill Effect Duration", - ["type"] = "explicit", - }, - }, + ["max"] = 25, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_547412107", + ["text"] = "Vaal Skills have #% increased Skill Effect Duration", + ["type"] = "explicit", + }, + }, ["3107_VaalSkillCriticalStrikeChance"] = { ["Gloves"] = { - ["max"] = 120, - ["min"] = 80, - }, + ["max"] = 120, + ["min"] = 80, + }, ["Quiver"] = { - ["max"] = 120, - ["min"] = 80, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3165492062", - ["text"] = "#% increased Vaal Skill Critical Strike Chance", - ["type"] = "explicit", - }, - }, + ["max"] = 120, + ["min"] = 80, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3165492062", + ["text"] = "#% increased Vaal Skill Critical Strike Chance", + ["type"] = "explicit", + }, + }, ["312_BurningDamageSupported"] = { ["Helmet"] = { - ["max"] = 25, - ["min"] = 16, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2680613507", - ["text"] = "Socketed Gems are Supported by Level # Burning Damage", - ["type"] = "explicit", - }, - }, + ["max"] = 25, + ["min"] = 16, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.indexable_support_68", + ["text"] = "Socketed Gems are Supported by Level # Burning Damage", + ["type"] = "explicit", + }, + }, ["313_CriticalStrikeChanceSpellsSupported"] = { ["1HMace"] = { - ["max"] = 20, - ["min"] = 18, - }, + ["max"] = 20, + ["min"] = 18, + }, ["1HWeapon"] = { - ["max"] = 20, - ["min"] = 18, - }, + ["max"] = 20, + ["min"] = 18, + }, ["Dagger"] = { - ["max"] = 20, - ["min"] = 18, - }, + ["max"] = 20, + ["min"] = 18, + }, ["Wand"] = { - ["max"] = 20, - ["min"] = 18, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2259700079", - ["text"] = "Socketed Gems are Supported by Level # Increased Critical Strikes", - ["type"] = "explicit", - }, - }, + ["max"] = 20, + ["min"] = 18, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.indexable_support_66", + ["text"] = "Socketed Gems are Supported by Level # Increased Critical Strikes", + ["type"] = "explicit", + }, + }, ["313_CriticalStrikeChanceSupported"] = { ["1HAxe"] = { - ["max"] = 20, - ["min"] = 18, - }, + ["max"] = 20, + ["min"] = 18, + }, ["1HMace"] = { - ["max"] = 20, - ["min"] = 18, - }, + ["max"] = 20, + ["min"] = 18, + }, ["1HSword"] = { - ["max"] = 20, - ["min"] = 18, - }, + ["max"] = 20, + ["min"] = 18, + }, ["1HWeapon"] = { - ["max"] = 20, - ["min"] = 18, - }, + ["max"] = 20, + ["min"] = 18, + }, ["2HAxe"] = { - ["max"] = 20, - ["min"] = 18, - }, + ["max"] = 20, + ["min"] = 18, + }, ["2HMace"] = { - ["max"] = 20, - ["min"] = 18, - }, + ["max"] = 20, + ["min"] = 18, + }, ["2HSword"] = { - ["max"] = 20, - ["min"] = 18, - }, + ["max"] = 20, + ["min"] = 18, + }, ["2HWeapon"] = { - ["max"] = 20, - ["min"] = 18, - }, + ["max"] = 20, + ["min"] = 18, + }, ["Claw"] = { - ["max"] = 20, - ["min"] = 18, - }, + ["max"] = 20, + ["min"] = 18, + }, ["Dagger"] = { - ["max"] = 20, - ["min"] = 18, - }, + ["max"] = 20, + ["min"] = 18, + }, ["Wand"] = { - ["max"] = 20, - ["min"] = 18, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2259700079", - ["text"] = "Socketed Gems are Supported by Level # Increased Critical Strikes", - ["type"] = "explicit", - }, - }, + ["max"] = 20, + ["min"] = 18, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.indexable_support_66", + ["text"] = "Socketed Gems are Supported by Level # Increased Critical Strikes", + ["type"] = "explicit", + }, + }, ["3140_ChillEnemiesWhenHit"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_2459809121", - ["text"] = "Chill Enemy for # second when Hit, reducing their Action Speed by 30%", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_2459809121", + ["text"] = "Chill Enemy for # second when Hit, reducing their Action Speed by 30%", + ["type"] = "explicit", + }, + }, ["314_SkillEffectDurationSupported"] = { ["Boots"] = { - ["max"] = 20, - ["min"] = 15, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_407317553", - ["text"] = "Socketed Gems are Supported by Level # More Duration", - ["type"] = "explicit", - }, - }, + ["max"] = 20, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.indexable_support_65", + ["text"] = "Socketed Gems are Supported by Level # More Duration", + ["type"] = "explicit", + }, + }, ["3169_BleedDamageAndDuration"] = { ["Ring"] = { - ["max"] = 22, - ["min"] = 8, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1294118672", - ["text"] = "#% increased Damage with Bleeding", - ["type"] = "explicit", - }, - }, + ["max"] = 22, + ["min"] = 8, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1294118672", + ["text"] = "#% increased Damage with Bleeding", + ["type"] = "explicit", + }, + }, ["3169_BleedDamageForJewel"] = { ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 16, - }, + ["max"] = 20, + ["min"] = 16, + }, ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 16, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1294118672", - ["text"] = "#% increased Damage with Bleeding", - ["type"] = "explicit", - }, - }, + ["max"] = 20, + ["min"] = 16, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1294118672", + ["text"] = "#% increased Damage with Bleeding", + ["type"] = "explicit", + }, + }, ["3169_BleedOnHitAndDamage"] = { ["Quiver"] = { - ["max"] = 30, - ["min"] = 15, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1294118672", - ["text"] = "#% increased Damage with Bleeding", - ["type"] = "explicit", - }, - }, + ["max"] = 30, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1294118672", + ["text"] = "#% increased Damage with Bleeding", + ["type"] = "explicit", + }, + }, ["3169_BleedingDamageChance"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1294118672", - ["text"] = "#% increased Damage with Bleeding", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1294118672", + ["text"] = "#% increased Damage with Bleeding", + ["type"] = "explicit", + }, + }, ["3169_BleedingDamageChanceWeaponSuffix"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1294118672", - ["text"] = "#% increased Damage with Bleeding", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1294118672", + ["text"] = "#% increased Damage with Bleeding", + ["type"] = "explicit", + }, + }, ["3169_BleedingDamageSupported"] = { ["Gloves"] = { - ["max"] = 35, - ["min"] = 20, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1294118672", - ["text"] = "#% increased Damage with Bleeding", - ["type"] = "explicit", - }, - }, + ["max"] = 35, + ["min"] = 20, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1294118672", + ["text"] = "#% increased Damage with Bleeding", + ["type"] = "explicit", + }, + }, ["3170_FasterPoisonDamageMaven"] = { ["Boots"] = { - ["max"] = 20, - ["min"] = 10, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2011656677", - ["text"] = "#% increased Poison Duration", - ["type"] = "explicit", - }, - }, + ["max"] = 20, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2011656677", + ["text"] = "#% increased Poison Duration", + ["type"] = "explicit", + }, + }, ["3170_PoisonChanceAndDurationForJewel"] = { ["AnyJewel"] = { - ["max"] = 8, - ["min"] = 6, - }, + ["max"] = 8, + ["min"] = 6, + }, ["BaseJewel"] = { - ["max"] = 8, - ["min"] = 6, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2011656677", - ["text"] = "#% increased Poison Duration", - ["type"] = "explicit", - }, - }, + ["max"] = 8, + ["min"] = 6, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2011656677", + ["text"] = "#% increased Poison Duration", + ["type"] = "explicit", + }, + }, ["3170_PoisonDamageAndDuration"] = { ["Ring"] = { - ["max"] = 10, - ["min"] = 5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2011656677", - ["text"] = "#% increased Poison Duration", - ["type"] = "explicit", - }, - }, + ["max"] = 10, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2011656677", + ["text"] = "#% increased Poison Duration", + ["type"] = "explicit", + }, + }, ["3170_PoisonDuration"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_2011656677", - ["text"] = "#% increased Poison Duration", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_2011656677", + ["text"] = "#% increased Poison Duration", + ["type"] = "explicit", + }, + }, ["3170_PoisonDurationChaosDamage"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_2011656677", - ["text"] = "#% increased Poison Duration", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_2011656677", + ["text"] = "#% increased Poison Duration", + ["type"] = "explicit", + }, + }, ["3170_PoisonDurationSupported"] = { ["Gloves"] = { - ["max"] = 20, - ["min"] = 17, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2011656677", - ["text"] = "#% increased Poison Duration", - ["type"] = "explicit", - }, - }, + ["max"] = 20, + ["min"] = 17, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2011656677", + ["text"] = "#% increased Poison Duration", + ["type"] = "explicit", + }, + }, ["3170_PoisonDurationWeaponSupported"] = { ["1HWeapon"] = { - ["max"] = 14, - ["min"] = 6, - }, + ["max"] = 14, + ["min"] = 6, + }, ["Dagger"] = { - ["max"] = 14, - ["min"] = 6, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2011656677", - ["text"] = "#% increased Poison Duration", - ["type"] = "explicit", - }, - }, + ["max"] = 14, + ["min"] = 6, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2011656677", + ["text"] = "#% increased Poison Duration", + ["type"] = "explicit", + }, + }, ["3173_PoisonChanceAndDurationForJewel"] = { ["AnyJewel"] = { - ["max"] = 5, - ["min"] = 3, - }, + ["max"] = 5, + ["min"] = 3, + }, ["BaseJewel"] = { - ["max"] = 5, - ["min"] = 3, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_795138349", - ["text"] = "#% chance to Poison on Hit", - ["type"] = "explicit", - }, - }, - ["3173_PoisonOnHit"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_795138349", - ["text"] = "#% chance to Poison on Hit", - ["type"] = "explicit", - }, - }, + ["max"] = 5, + ["min"] = 3, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_795138349", + ["text"] = "#% chance to Poison on Hit", + ["type"] = "explicit", + }, + }, ["3173_PoisonOnHitAndDamage"] = { ["Quiver"] = { - ["max"] = 20, - ["min"] = 15, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_795138349", - ["text"] = "#% chance to Poison on Hit", - ["type"] = "explicit", - }, - }, + ["max"] = 20, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_795138349", + ["text"] = "#% chance to Poison on Hit", + ["type"] = "explicit", + }, + }, ["3174_AbyssMinionPoisonOnHitChance"] = { ["AbyssJewel"] = { - ["max"] = 15, - ["min"] = 10, - }, + ["max"] = 15, + ["min"] = 10, + }, ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 10, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1974445926", - ["text"] = "Minions have #% chance to Poison Enemies on Hit", - ["type"] = "explicit", - }, - }, + ["max"] = 15, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1974445926", + ["text"] = "Minions have #% chance to Poison Enemies on Hit", + ["type"] = "explicit", + }, + }, ["3174_MinionsPoisonEnemiesOnHit"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1974445926", - ["text"] = "Minions have #% chance to Poison Enemies on Hit", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1974445926", + ["text"] = "Minions have #% chance to Poison Enemies on Hit", + ["type"] = "explicit", + }, + }, ["3181_PoisonDamage"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1290399200", - ["text"] = "#% increased Damage with Poison", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1290399200", + ["text"] = "#% increased Damage with Poison", + ["type"] = "explicit", + }, + }, ["3181_PoisonDamageAddedChaosToAttacks"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1290399200", - ["text"] = "#% increased Damage with Poison", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1290399200", + ["text"] = "#% increased Damage with Poison", + ["type"] = "explicit", + }, + }, ["3181_PoisonDamageAddedChaosToSpells"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1290399200", - ["text"] = "#% increased Damage with Poison", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1290399200", + ["text"] = "#% increased Damage with Poison", + ["type"] = "explicit", + }, + }, ["3181_PoisonDamageAndDuration"] = { ["Ring"] = { - ["max"] = 22, - ["min"] = 8, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1290399200", - ["text"] = "#% increased Damage with Poison", - ["type"] = "explicit", - }, - }, + ["max"] = 22, + ["min"] = 8, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1290399200", + ["text"] = "#% increased Damage with Poison", + ["type"] = "explicit", + }, + }, ["3181_PoisonDamageAndLocalChanceOnHit"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1290399200", - ["text"] = "#% increased Damage with Poison", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1290399200", + ["text"] = "#% increased Damage with Poison", + ["type"] = "explicit", + }, + }, ["3181_PoisonDamageForJewel"] = { ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 16, - }, + ["max"] = 20, + ["min"] = 16, + }, ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 16, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1290399200", - ["text"] = "#% increased Damage with Poison", - ["type"] = "explicit", - }, - }, + ["max"] = 20, + ["min"] = 16, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1290399200", + ["text"] = "#% increased Damage with Poison", + ["type"] = "explicit", + }, + }, ["3181_PoisonDamageSupported"] = { ["Gloves"] = { - ["max"] = 35, - ["min"] = 20, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1290399200", - ["text"] = "#% increased Damage with Poison", - ["type"] = "explicit", - }, - }, + ["max"] = 35, + ["min"] = 20, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1290399200", + ["text"] = "#% increased Damage with Poison", + ["type"] = "explicit", + }, + }, ["3181_PoisonDamageWeaponSupported"] = { ["1HWeapon"] = { - ["max"] = 26, - ["min"] = 19, - }, + ["max"] = 26, + ["min"] = 19, + }, ["Dagger"] = { - ["max"] = 26, - ["min"] = 19, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1290399200", - ["text"] = "#% increased Damage with Poison", - ["type"] = "explicit", - }, - }, + ["max"] = 26, + ["min"] = 19, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1290399200", + ["text"] = "#% increased Damage with Poison", + ["type"] = "explicit", + }, + }, ["3181_PoisonOnHitAndDamage"] = { ["Quiver"] = { - ["max"] = 30, - ["min"] = 15, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1290399200", - ["text"] = "#% increased Damage with Poison", - ["type"] = "explicit", - }, - }, + ["max"] = 30, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1290399200", + ["text"] = "#% increased Damage with Poison", + ["type"] = "explicit", + }, + }, ["3186_MovementSpeedDuringFlaskEffect"] = { ["Belt"] = { - ["max"] = 10, - ["min"] = 6, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_304970526", - ["text"] = "#% increased Movement Speed during any Flask Effect", - ["type"] = "explicit", - }, - }, + ["max"] = 10, + ["min"] = 6, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_304970526", + ["text"] = "#% increased Movement Speed during any Flask Effect", + ["type"] = "explicit", + }, + }, ["3192_NoExtraBleedDamageWhileMoving"] = { ["Quiver"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Shield"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_935326447", - ["text"] = "Moving while Bleeding doesn't cause you to take extra Damage", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_935326447", + ["text"] = "Moving while Bleeding doesn't cause you to take extra Damage", + ["type"] = "explicit", + }, + }, ["3192_NoExtraDamageFromBleedMoving"] = { ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_935326447", - ["text"] = "Moving while Bleeding doesn't cause you to take extra Damage", - ["type"] = "explicit", - }, - }, - ["3196_MovementCannotBeSlowedBelowBase"] = { - ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_3875592188", - ["text"] = "Movement Speed cannot be modified to below Base Value", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_935326447", + ["text"] = "Moving while Bleeding doesn't cause you to take extra Damage", + ["type"] = "explicit", + }, + }, ["3199_DamagePerEnduranceCharge"] = { ["1HAxe"] = { - ["max"] = 6, - ["min"] = 3, - }, + ["max"] = 6, + ["min"] = 3, + }, ["1HMace"] = { - ["max"] = 10, - ["min"] = 3, - }, + ["max"] = 10, + ["min"] = 3, + }, ["1HSword"] = { - ["max"] = 6, - ["min"] = 3, - }, + ["max"] = 6, + ["min"] = 3, + }, ["1HWeapon"] = { - ["max"] = 10, - ["min"] = 3, - }, + ["max"] = 10, + ["min"] = 3, + }, ["2HAxe"] = { - ["max"] = 8, - ["min"] = 5, - }, + ["max"] = 8, + ["min"] = 5, + }, ["2HMace"] = { - ["max"] = 8, - ["min"] = 5, - }, + ["max"] = 8, + ["min"] = 5, + }, ["2HSword"] = { - ["max"] = 8, - ["min"] = 5, - }, + ["max"] = 8, + ["min"] = 5, + }, ["2HWeapon"] = { - ["max"] = 17, - ["min"] = 5, - }, + ["max"] = 17, + ["min"] = 5, + }, ["Amulet"] = { - ["max"] = 6, - ["min"] = 3, - }, + ["max"] = 6, + ["min"] = 3, + }, ["Bow"] = { - ["max"] = 8, - ["min"] = 5, - }, + ["max"] = 8, + ["min"] = 5, + }, ["Claw"] = { - ["max"] = 6, - ["min"] = 3, - }, + ["max"] = 6, + ["min"] = 3, + }, ["Dagger"] = { - ["max"] = 6, - ["min"] = 3, - }, + ["max"] = 6, + ["min"] = 3, + }, ["Staff"] = { - ["max"] = 17, - ["min"] = 5, - }, + ["max"] = 17, + ["min"] = 5, + }, ["Wand"] = { - ["max"] = 6, - ["min"] = 3, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3515686789", - ["text"] = "#% increased Damage per Endurance Charge", - ["type"] = "explicit", - }, - }, + ["max"] = 6, + ["min"] = 3, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3515686789", + ["text"] = "#% increased Damage per Endurance Charge", + ["type"] = "explicit", + }, + }, ["319_LocalIncreasedPhysicalDamagePercentIronGrip"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_251446805", - ["text"] = "Socketed Gems are Supported by Level # Iron Grip", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.indexable_support_59", + ["text"] = "Socketed Gems are Supported by Level # Iron Grip", + ["type"] = "explicit", + }, + }, ["3215_AttackSpeedWithFortify"] = { ["1HSword"] = { - ["max"] = 15, - ["min"] = 10, - }, + ["max"] = 15, + ["min"] = 10, + }, ["1HWeapon"] = { - ["max"] = 15, - ["min"] = 10, - }, + ["max"] = 15, + ["min"] = 10, + }, ["2HSword"] = { - ["max"] = 25, - ["min"] = 10, - }, + ["max"] = 25, + ["min"] = 10, + }, ["2HWeapon"] = { - ["max"] = 25, - ["min"] = 10, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_122450405", - ["text"] = "#% increased Attack Speed while Fortified", - ["type"] = "explicit", - }, - }, + ["max"] = 25, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_122450405", + ["text"] = "#% increased Attack Speed while Fortified", + ["type"] = "explicit", + }, + }, ["3216_ChanceToBlockIfDamagedRecently"] = { ["2HWeapon"] = { - ["max"] = 15, - ["min"] = 10, - }, + ["max"] = 15, + ["min"] = 10, + }, ["AbyssJewel"] = { - ["max"] = 4, - ["min"] = 3, - }, + ["max"] = 4, + ["min"] = 3, + }, ["AnyJewel"] = { - ["max"] = 4, - ["min"] = 3, - }, + ["max"] = 4, + ["min"] = 3, + }, ["Staff"] = { - ["max"] = 15, - ["min"] = 10, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_852195286", - ["text"] = "+#% Chance to Block Attack Damage if you were Damaged by a Hit Recently", - ["type"] = "explicit", - }, - }, + ["max"] = 15, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_852195286", + ["text"] = "+#% Chance to Block Attack Damage if you were Damaged by a Hit Recently", + ["type"] = "explicit", + }, + }, ["321_SupportedByItemRarityUnique"] = { ["Chest"] = { - ["max"] = 20, - ["min"] = 10, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3587013273", - ["text"] = "Socketed Gems are Supported by Level # Item Rarity", - ["type"] = "explicit", - }, - }, + ["max"] = 20, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.indexable_support_57", + ["text"] = "Socketed Gems are Supported by Level # Item Rarity", + ["type"] = "explicit", + }, + }, ["3223_MovementVelocityAndMovementVelocityIfNotHitRecently"] = { ["Boots"] = { - ["max"] = 12, - ["min"] = 6, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1177358866", - ["text"] = "#% increased Movement Speed if you haven't been Hit Recently", - ["type"] = "explicit", - }, - }, + ["max"] = 12, + ["min"] = 6, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1177358866", + ["text"] = "#% increased Movement Speed if you haven't been Hit Recently", + ["type"] = "explicit", + }, + }, ["3243_MovementVelocitySpeed"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1177358866", - ["text"] = "#% increased Movement Speed if you haven't been Hit Recently", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1177358866", + ["text"] = "#% increased Movement Speed if you haven't been Hit Recently", + ["type"] = "explicit", + }, + }, ["326_LightningDamagePrefixLightningPenetration"] = { ["1HMace"] = { - ["max"] = 20, - ["min"] = 16, - }, + ["max"] = 20, + ["min"] = 16, + }, ["1HWeapon"] = { - ["max"] = 20, - ["min"] = 16, - }, + ["max"] = 20, + ["min"] = 16, + }, ["Dagger"] = { - ["max"] = 20, - ["min"] = 16, - }, + ["max"] = 20, + ["min"] = 16, + }, ["Wand"] = { - ["max"] = 20, - ["min"] = 16, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3354027870", - ["text"] = "Socketed Gems are Supported by Level # Lightning Penetration", - ["type"] = "explicit", - }, - }, + ["max"] = 20, + ["min"] = 16, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.indexable_support_51", + ["text"] = "Socketed Gems are Supported by Level # Lightning Penetration", + ["type"] = "explicit", + }, + }, ["3272_IncreasedStunThreshold"] = { ["Chest"] = { - ["max"] = 60, - ["min"] = 31, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_680068163", - ["text"] = "#% increased Stun Threshold", - ["type"] = "explicit", - }, - }, + ["max"] = 60, + ["min"] = 31, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_680068163", + ["text"] = "#% increased Stun Threshold", + ["type"] = "explicit", + }, + }, ["3277_WarcrySpeed"] = { ["Amulet"] = { - ["max"] = 35, - ["min"] = 15, - }, + ["max"] = 35, + ["min"] = 15, + }, ["Helmet"] = { - ["max"] = 35, - ["min"] = 15, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1316278494", - ["text"] = "#% increased Warcry Speed", - ["type"] = "explicit", - }, - }, + ["max"] = 35, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1316278494", + ["text"] = "#% increased Warcry Speed", + ["type"] = "explicit", + }, + }, ["3286_DamagePerFrenzyCharge"] = { ["1HAxe"] = { - ["max"] = 6, - ["min"] = 3, - }, + ["max"] = 6, + ["min"] = 3, + }, ["1HMace"] = { - ["max"] = 6, - ["min"] = 3, - }, + ["max"] = 6, + ["min"] = 3, + }, ["1HSword"] = { - ["max"] = 6, - ["min"] = 3, - }, + ["max"] = 6, + ["min"] = 3, + }, ["1HWeapon"] = { - ["max"] = 10, - ["min"] = 3, - }, + ["max"] = 10, + ["min"] = 3, + }, ["2HAxe"] = { - ["max"] = 8, - ["min"] = 5, - }, + ["max"] = 8, + ["min"] = 5, + }, ["2HMace"] = { - ["max"] = 8, - ["min"] = 5, - }, + ["max"] = 8, + ["min"] = 5, + }, ["2HSword"] = { - ["max"] = 8, - ["min"] = 5, - }, + ["max"] = 8, + ["min"] = 5, + }, ["2HWeapon"] = { - ["max"] = 8, - ["min"] = 5, - }, + ["max"] = 8, + ["min"] = 5, + }, ["Amulet"] = { - ["max"] = 6, - ["min"] = 3, - }, + ["max"] = 6, + ["min"] = 3, + }, ["Bow"] = { - ["max"] = 8, - ["min"] = 5, - }, + ["max"] = 8, + ["min"] = 5, + }, ["Claw"] = { - ["max"] = 6, - ["min"] = 3, - }, + ["max"] = 6, + ["min"] = 3, + }, ["Dagger"] = { - ["max"] = 10, - ["min"] = 3, - }, + ["max"] = 10, + ["min"] = 3, + }, ["Staff"] = { - ["max"] = 8, - ["min"] = 5, - }, + ["max"] = 8, + ["min"] = 5, + }, ["Wand"] = { - ["max"] = 6, - ["min"] = 3, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_902747843", - ["text"] = "#% increased Damage per Frenzy Charge", - ["type"] = "explicit", - }, - }, + ["max"] = 6, + ["min"] = 3, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_902747843", + ["text"] = "#% increased Damage per Frenzy Charge", + ["type"] = "explicit", + }, + }, ["3288_ArcaneSurgeEffect"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_3015437071", - ["text"] = "#% increased Effect of Arcane Surge on you", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_3015437071", + ["text"] = "#% increased Effect of Arcane Surge on you", + ["type"] = "explicit", + }, + }, ["3290_OnslaughtEffect"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_3151397056", - ["text"] = "#% increased Effect of Onslaught on you", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_3151397056", + ["text"] = "#% increased Effect of Onslaught on you", + ["type"] = "explicit", + }, + }, ["3292_CriticalStrikeChanceAgainstPoisonedEnemies"] = { ["1HWeapon"] = { - ["max"] = 100, - ["min"] = 80, - }, + ["max"] = 100, + ["min"] = 80, + }, ["Dagger"] = { - ["max"] = 100, - ["min"] = 80, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1345659139", - ["text"] = "#% increased Critical Strike Chance against Poisoned Enemies", - ["type"] = "explicit", - }, - }, + ["max"] = 100, + ["min"] = 80, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1345659139", + ["text"] = "#% increased Critical Strike Chance against Poisoned Enemies", + ["type"] = "explicit", + }, + }, ["3293_ElementalDamageOfYouAndMinionsCannotBeReflectedPercentMaven"] = { ["Chest"] = { - ["max"] = -3, - ["min"] = -5, - }, - ["inverseKey"] = "reduced", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2734809852", - ["text"] = "#% increased Elemental Damage taken", - ["type"] = "explicit", - }, - }, + ["max"] = -3, + ["min"] = -5, + }, + ["inverseKey"] = "reduced", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2734809852", + ["text"] = "#% increased Elemental Damage taken", + ["type"] = "explicit", + }, + }, ["3293_ReducedElementalReflectTakenMaven"] = { ["Chest"] = { - ["max"] = -3, - ["min"] = -5, - }, - ["inverseKey"] = "reduced", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2734809852", - ["text"] = "#% increased Elemental Damage taken", - ["type"] = "explicit", - }, - }, + ["max"] = -3, + ["min"] = -5, + }, + ["inverseKey"] = "reduced", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2734809852", + ["text"] = "#% increased Elemental Damage taken", + ["type"] = "explicit", + }, + }, ["3300_AttackSpeedDuringFlaskEffect"] = { ["Belt"] = { - ["max"] = 14, - ["min"] = 8, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1365052901", - ["text"] = "#% increased Attack Speed during any Flask Effect", - ["type"] = "explicit", - }, - }, + ["max"] = 14, + ["min"] = 8, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1365052901", + ["text"] = "#% increased Attack Speed during any Flask Effect", + ["type"] = "explicit", + }, + }, ["3301_ChaosResistanceWhileUsingFlask"] = { ["Belt"] = { - ["max"] = 50, - ["min"] = 20, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_392168009", - ["text"] = "+#% to Chaos Resistance during any Flask Effect", - ["type"] = "explicit", - }, - }, + ["max"] = 50, + ["min"] = 20, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_392168009", + ["text"] = "+#% to Chaos Resistance during any Flask Effect", + ["type"] = "explicit", + }, + }, ["3304_EnemiesExplodeOnDeathPhysicalChance"] = { ["Chest"] = { - ["max"] = 30, - ["min"] = 11, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3295179224", - ["text"] = "Enemies you Kill have a #% chance to Explode, dealing a tenth of their maximum Life as Physical Damage", - ["type"] = "explicit", - }, - }, + ["max"] = 30, + ["min"] = 11, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3295179224", + ["text"] = "Enemies you Kill have a #% chance to Explode, dealing a tenth of their maximum Life as Physical Damage", + ["type"] = "explicit", + }, + }, ["3304_EnemiesExplodeOnDeathPhysicalChanceMaven"] = { ["Chest"] = { - ["max"] = 35, - ["min"] = 31, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3295179224", - ["text"] = "Enemies you Kill have a #% chance to Explode, dealing a tenth of their maximum Life as Physical Damage", - ["type"] = "explicit", - }, - }, + ["max"] = 35, + ["min"] = 31, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3295179224", + ["text"] = "Enemies you Kill have a #% chance to Explode, dealing a tenth of their maximum Life as Physical Damage", + ["type"] = "explicit", + }, + }, ["3305_ObliterationExplodeOnKillChaos"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1776945532", - ["text"] = "Enemies you Kill have a #% chance to Explode, dealing a quarter of their maximum Life as Chaos Damage", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1776945532", + ["text"] = "Enemies you Kill have a #% chance to Explode, dealing a quarter of their maximum Life as Chaos Damage", + ["type"] = "explicit", + }, + }, ["331_ChanceToMaimSupported"] = { ["1HAxe"] = { - ["max"] = 20, - ["min"] = 18, - }, + ["max"] = 20, + ["min"] = 18, + }, ["1HMace"] = { - ["max"] = 20, - ["min"] = 18, - }, + ["max"] = 20, + ["min"] = 18, + }, ["1HSword"] = { - ["max"] = 20, - ["min"] = 18, - }, + ["max"] = 20, + ["min"] = 18, + }, ["1HWeapon"] = { - ["max"] = 20, - ["min"] = 18, - }, + ["max"] = 20, + ["min"] = 18, + }, ["2HAxe"] = { - ["max"] = 20, - ["min"] = 18, - }, + ["max"] = 20, + ["min"] = 18, + }, ["2HMace"] = { - ["max"] = 20, - ["min"] = 18, - }, + ["max"] = 20, + ["min"] = 18, + }, ["2HSword"] = { - ["max"] = 20, - ["min"] = 18, - }, + ["max"] = 20, + ["min"] = 18, + }, ["2HWeapon"] = { - ["max"] = 20, - ["min"] = 18, - }, + ["max"] = 20, + ["min"] = 18, + }, ["Claw"] = { - ["max"] = 20, - ["min"] = 18, - }, + ["max"] = 20, + ["min"] = 18, + }, ["Dagger"] = { - ["max"] = 20, - ["min"] = 18, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3826977109", - ["text"] = "Socketed Gems are Supported by Level # Maim", - ["type"] = "explicit", - }, - }, + ["max"] = 20, + ["min"] = 18, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.indexable_support_50", + ["text"] = "Socketed Gems are Supported by Level # Maim", + ["type"] = "explicit", + }, + }, ["331_SupportedByMaim"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_3826977109", - ["text"] = "Socketed Gems are Supported by Level # Maim", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.indexable_support_50", + ["text"] = "Socketed Gems are Supported by Level # Maim", + ["type"] = "explicit", + }, + }, ["3329_WarcryCooldownSpeed"] = { ["1HAxe"] = { - ["max"] = 25, - ["min"] = 17, - }, + ["max"] = 25, + ["min"] = 17, + }, ["1HWeapon"] = { - ["max"] = 25, - ["min"] = 17, - }, + ["max"] = 25, + ["min"] = 17, + }, ["2HAxe"] = { - ["max"] = 45, - ["min"] = 17, - }, + ["max"] = 45, + ["min"] = 17, + }, ["2HMace"] = { - ["max"] = 45, - ["min"] = 35, - }, + ["max"] = 45, + ["min"] = 35, + }, ["2HSword"] = { - ["max"] = 45, - ["min"] = 35, - }, + ["max"] = 45, + ["min"] = 35, + }, ["2HWeapon"] = { - ["max"] = 45, - ["min"] = 17, - }, + ["max"] = 45, + ["min"] = 17, + }, ["Shield"] = { - ["max"] = 45, - ["min"] = 35, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4159248054", - ["text"] = "#% increased Warcry Cooldown Recovery Rate", - ["type"] = "explicit", - }, - }, + ["max"] = 45, + ["min"] = 35, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4159248054", + ["text"] = "#% increased Warcry Cooldown Recovery Rate", + ["type"] = "explicit", + }, + }, ["3335_IncreasedOneHandedMeleeDamageForJewel"] = { ["AnyJewel"] = { - ["max"] = 14, - ["min"] = 12, - }, + ["max"] = 14, + ["min"] = 12, + }, ["BaseJewel"] = { - ["max"] = 14, - ["min"] = 12, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1010549321", - ["text"] = "#% increased Damage with One Handed Weapons", - ["type"] = "explicit", - }, - }, + ["max"] = 14, + ["min"] = 12, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1010549321", + ["text"] = "#% increased Damage with One Handed Weapons", + ["type"] = "explicit", + }, + }, ["3336_IncreasedTwoHandedMeleeDamageForJewel"] = { ["AnyJewel"] = { - ["max"] = 14, - ["min"] = 12, - }, + ["max"] = 14, + ["min"] = 12, + }, ["BaseJewel"] = { - ["max"] = 14, - ["min"] = 12, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1836374041", - ["text"] = "#% increased Damage with Two Handed Weapons", - ["type"] = "explicit", - }, - }, + ["max"] = 14, + ["min"] = 12, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1836374041", + ["text"] = "#% increased Damage with Two Handed Weapons", + ["type"] = "explicit", + }, + }, ["3356_AngerAuraEffect"] = { ["1HMace"] = { - ["max"] = 40, - ["min"] = 28, - }, + ["max"] = 40, + ["min"] = 28, + }, ["1HWeapon"] = { - ["max"] = 40, - ["min"] = 28, - }, + ["max"] = 40, + ["min"] = 28, + }, ["2HWeapon"] = { - ["max"] = 60, - ["min"] = 48, - }, + ["max"] = 60, + ["min"] = 48, + }, ["Dagger"] = { - ["max"] = 40, - ["min"] = 28, - }, + ["max"] = 40, + ["min"] = 28, + }, ["Staff"] = { - ["max"] = 60, - ["min"] = 48, - }, + ["max"] = 60, + ["min"] = 48, + }, ["Wand"] = { - ["max"] = 40, - ["min"] = 28, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1592278124", - ["text"] = "Anger has #% increased Aura Effect", - ["type"] = "explicit", - }, - }, + ["max"] = 40, + ["min"] = 28, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1592278124", + ["text"] = "Anger has #% increased Aura Effect", + ["type"] = "explicit", + }, + }, ["3361_WrathAuraEffect"] = { ["1HMace"] = { - ["max"] = 40, - ["min"] = 28, - }, + ["max"] = 40, + ["min"] = 28, + }, ["1HWeapon"] = { - ["max"] = 40, - ["min"] = 28, - }, + ["max"] = 40, + ["min"] = 28, + }, ["2HWeapon"] = { - ["max"] = 60, - ["min"] = 48, - }, + ["max"] = 60, + ["min"] = 48, + }, ["Dagger"] = { - ["max"] = 40, - ["min"] = 28, - }, + ["max"] = 40, + ["min"] = 28, + }, ["Staff"] = { - ["max"] = 60, - ["min"] = 48, - }, + ["max"] = 60, + ["min"] = 48, + }, ["Wand"] = { - ["max"] = 40, - ["min"] = 28, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2181791238", - ["text"] = "Wrath has #% increased Aura Effect", - ["type"] = "explicit", - }, - }, + ["max"] = 40, + ["min"] = 28, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2181791238", + ["text"] = "Wrath has #% increased Aura Effect", + ["type"] = "explicit", + }, + }, ["3362_BannerEffect"] = { ["Chest"] = { - ["max"] = 20, - ["min"] = 12, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2729804981", - ["text"] = "Banner Skills have #% increased Aura Effect", - ["type"] = "explicit", - }, - }, + ["max"] = 20, + ["min"] = 12, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2729804981", + ["text"] = "Banner Skills have #% increased Aura Effect", + ["type"] = "explicit", + }, + }, ["3366_HatredAuraEffect"] = { ["1HMace"] = { - ["max"] = 40, - ["min"] = 28, - }, + ["max"] = 40, + ["min"] = 28, + }, ["1HWeapon"] = { - ["max"] = 40, - ["min"] = 28, - }, + ["max"] = 40, + ["min"] = 28, + }, ["2HWeapon"] = { - ["max"] = 60, - ["min"] = 48, - }, + ["max"] = 60, + ["min"] = 48, + }, ["Dagger"] = { - ["max"] = 40, - ["min"] = 28, - }, + ["max"] = 40, + ["min"] = 28, + }, ["Staff"] = { - ["max"] = 60, - ["min"] = 48, - }, + ["max"] = 60, + ["min"] = 48, + }, ["Wand"] = { - ["max"] = 40, - ["min"] = 28, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3742945352", - ["text"] = "Hatred has #% increased Aura Effect", - ["type"] = "explicit", - }, - }, + ["max"] = 40, + ["min"] = 28, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3742945352", + ["text"] = "Hatred has #% increased Aura Effect", + ["type"] = "explicit", + }, + }, ["3369_CannotBePoisoned"] = { ["Boots"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_3835551335", - ["text"] = "Cannot be Poisoned", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_3835551335", + ["text"] = "Cannot be Poisoned", + ["type"] = "explicit", + }, + }, ["3371_PhysicalDamageAvoidance"] = { ["Quiver"] = { - ["max"] = 10, - ["min"] = 5, - }, + ["max"] = 10, + ["min"] = 5, + }, ["Shield"] = { - ["max"] = 10, - ["min"] = 5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2415497478", - ["text"] = "#% chance to Avoid Physical Damage from Hits", - ["type"] = "explicit", - }, - }, + ["max"] = 10, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2415497478", + ["text"] = "#% chance to Avoid Physical Damage from Hits", + ["type"] = "explicit", + }, + }, ["3373_FireDamageAvoidance"] = { ["Boots"] = { - ["max"] = 10, - ["min"] = 5, - }, + ["max"] = 10, + ["min"] = 5, + }, ["Chest"] = { - ["max"] = 10, - ["min"] = 6, - }, + ["max"] = 10, + ["min"] = 6, + }, ["Quiver"] = { - ["max"] = 10, - ["min"] = 8, - }, + ["max"] = 10, + ["min"] = 8, + }, ["Shield"] = { - ["max"] = 10, - ["min"] = 5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_42242677", - ["text"] = "#% chance to Avoid Fire Damage from Hits", - ["type"] = "explicit", - }, - }, + ["max"] = 10, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_42242677", + ["text"] = "#% chance to Avoid Fire Damage from Hits", + ["type"] = "explicit", + }, + }, ["3373_FireDamageAvoidanceMaven"] = { ["Boots"] = { - ["max"] = 10, - ["min"] = 8, - }, + ["max"] = 10, + ["min"] = 8, + }, ["Shield"] = { - ["max"] = 10, - ["min"] = 8, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_42242677", - ["text"] = "#% chance to Avoid Fire Damage from Hits", - ["type"] = "explicit", - }, - }, + ["max"] = 10, + ["min"] = 8, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_42242677", + ["text"] = "#% chance to Avoid Fire Damage from Hits", + ["type"] = "explicit", + }, + }, ["3374_ColdDamageAvoidance"] = { ["Boots"] = { - ["max"] = 10, - ["min"] = 5, - }, + ["max"] = 10, + ["min"] = 5, + }, ["Chest"] = { - ["max"] = 10, - ["min"] = 5, - }, + ["max"] = 10, + ["min"] = 5, + }, ["Quiver"] = { - ["max"] = 10, - ["min"] = 6, - }, + ["max"] = 10, + ["min"] = 6, + }, ["Shield"] = { - ["max"] = 10, - ["min"] = 5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3743375737", - ["text"] = "#% chance to Avoid Cold Damage from Hits", - ["type"] = "explicit", - }, - }, + ["max"] = 10, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3743375737", + ["text"] = "#% chance to Avoid Cold Damage from Hits", + ["type"] = "explicit", + }, + }, ["3374_ColdDamageAvoidanceMaven"] = { ["Boots"] = { - ["max"] = 10, - ["min"] = 8, - }, + ["max"] = 10, + ["min"] = 8, + }, ["Shield"] = { - ["max"] = 10, - ["min"] = 8, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3743375737", - ["text"] = "#% chance to Avoid Cold Damage from Hits", - ["type"] = "explicit", - }, - }, + ["max"] = 10, + ["min"] = 8, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3743375737", + ["text"] = "#% chance to Avoid Cold Damage from Hits", + ["type"] = "explicit", + }, + }, ["3375_LightningDamageAvoidance"] = { ["Boots"] = { - ["max"] = 10, - ["min"] = 5, - }, + ["max"] = 10, + ["min"] = 5, + }, ["Chest"] = { - ["max"] = 10, - ["min"] = 4, - }, + ["max"] = 10, + ["min"] = 4, + }, ["Quiver"] = { - ["max"] = 10, - ["min"] = 6, - }, + ["max"] = 10, + ["min"] = 6, + }, ["Shield"] = { - ["max"] = 10, - ["min"] = 4, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2889664727", - ["text"] = "#% chance to Avoid Lightning Damage from Hits", - ["type"] = "explicit", - }, - }, + ["max"] = 10, + ["min"] = 4, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2889664727", + ["text"] = "#% chance to Avoid Lightning Damage from Hits", + ["type"] = "explicit", + }, + }, ["3375_LightningDamageAvoidanceMaven"] = { ["Boots"] = { - ["max"] = 10, - ["min"] = 8, - }, + ["max"] = 10, + ["min"] = 8, + }, ["Shield"] = { - ["max"] = 10, - ["min"] = 8, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2889664727", - ["text"] = "#% chance to Avoid Lightning Damage from Hits", - ["type"] = "explicit", - }, - }, + ["max"] = 10, + ["min"] = 8, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2889664727", + ["text"] = "#% chance to Avoid Lightning Damage from Hits", + ["type"] = "explicit", + }, + }, ["3377_UnholyMightOnKillPercentChance"] = { ["1HWeapon"] = { - ["max"] = 25, - ["min"] = 5, - }, + ["max"] = 25, + ["min"] = 5, + }, ["2HWeapon"] = { - ["max"] = 25, - ["min"] = 5, - }, + ["max"] = 25, + ["min"] = 5, + }, ["Claw"] = { - ["max"] = 25, - ["min"] = 5, - }, + ["max"] = 25, + ["min"] = 5, + }, ["Staff"] = { - ["max"] = 25, - ["min"] = 5, - }, + ["max"] = 25, + ["min"] = 5, + }, ["Wand"] = { - ["max"] = 25, - ["min"] = 15, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3562211447", - ["text"] = "#% chance to gain Unholy Might for 3 seconds on Kill", - ["type"] = "explicit", - }, - }, + ["max"] = 25, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3562211447", + ["text"] = "#% chance to gain Unholy Might for 3 seconds on Kill", + ["type"] = "explicit", + }, + }, ["3380_OnslaugtOnKillPercentChance"] = { ["1HAxe"] = { - ["max"] = 25, - ["min"] = 5, - }, + ["max"] = 25, + ["min"] = 5, + }, ["1HSword"] = { - ["max"] = 25, - ["min"] = 5, - }, + ["max"] = 25, + ["min"] = 5, + }, ["1HWeapon"] = { - ["max"] = 25, - ["min"] = 5, - }, + ["max"] = 25, + ["min"] = 5, + }, ["2HAxe"] = { - ["max"] = 25, - ["min"] = 5, - }, + ["max"] = 25, + ["min"] = 5, + }, ["2HSword"] = { - ["max"] = 25, - ["min"] = 5, - }, + ["max"] = 25, + ["min"] = 5, + }, ["2HWeapon"] = { - ["max"] = 25, - ["min"] = 5, - }, + ["max"] = 25, + ["min"] = 5, + }, ["Bow"] = { - ["max"] = 25, - ["min"] = 5, - }, + ["max"] = 25, + ["min"] = 5, + }, ["Claw"] = { - ["max"] = 25, - ["min"] = 5, - }, + ["max"] = 25, + ["min"] = 5, + }, ["Dagger"] = { - ["max"] = 25, - ["min"] = 15, - }, + ["max"] = 25, + ["min"] = 15, + }, ["Quiver"] = { - ["max"] = 10, - ["min"] = 5, - }, + ["max"] = 10, + ["min"] = 5, + }, ["Wand"] = { - ["max"] = 25, - ["min"] = 15, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3023957681", - ["text"] = "#% chance to gain Onslaught for 4 seconds on Kill", - ["type"] = "explicit", - }, - }, + ["max"] = 25, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2453026567", + ["text"] = "#% chance to gain Onslaught for 10 seconds on Kill", + ["type"] = "explicit", + }, + }, ["3388_LightningDamageTaken"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1276918229", - ["text"] = "#% reduced Lightning Damage taken", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1276918229", + ["text"] = "#% reduced Lightning Damage taken", + ["type"] = "explicit", + }, + }, ["3389_ColdDamageTakenPercentage"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_3303114033", - ["text"] = "#% reduced Cold Damage taken", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_3303114033", + ["text"] = "#% reduced Cold Damage taken", + ["type"] = "explicit", + }, + }, ["3391_FlaskChargeOnCrit"] = { ["Belt"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1546046884", - ["text"] = "Gain a Flask Charge when you deal a Critical Strike", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1546046884", + ["text"] = "Gain a Flask Charge when you deal a Critical Strike", + ["type"] = "explicit", + }, + }, ["3396_NearbyEnemiesAreBlinded"] = { ["Chest"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_2826979740", - ["text"] = "Nearby Enemies are Blinded", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_2826979740", + ["text"] = "Nearby Enemies are Blinded", + ["type"] = "explicit", + }, + }, ["3396_NearbyEnemiesAreBlindedMaven"] = { ["Chest"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_2826979740", - ["text"] = "Nearby Enemies are Blinded", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_2826979740", + ["text"] = "Nearby Enemies are Blinded", + ["type"] = "explicit", + }, + }, ["3406_CriticalChanceAgainstBlindedEnemies"] = { ["1HWeapon"] = { - ["max"] = 100, - ["min"] = 80, - }, + ["max"] = 100, + ["min"] = 80, + }, ["Claw"] = { - ["max"] = 100, - ["min"] = 80, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1939202111", - ["text"] = "#% increased Critical Strike Chance against Blinded Enemies", - ["type"] = "explicit", - }, - }, + ["max"] = 100, + ["min"] = 80, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1939202111", + ["text"] = "#% increased Critical Strike Chance against Blinded Enemies", + ["type"] = "explicit", + }, + }, ["341_IncreasedCastSpeedSpellEcho"] = { ["1HMace"] = { - ["max"] = 20, - ["min"] = 18, - }, + ["max"] = 20, + ["min"] = 18, + }, ["1HWeapon"] = { - ["max"] = 20, - ["min"] = 18, - }, + ["max"] = 20, + ["min"] = 18, + }, ["Dagger"] = { - ["max"] = 20, - ["min"] = 18, - }, + ["max"] = 20, + ["min"] = 18, + }, ["Wand"] = { - ["max"] = 20, - ["min"] = 18, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_438778966", - ["text"] = "Socketed Gems are Supported by Level # Spell Echo", - ["type"] = "explicit", - }, - }, + ["max"] = 20, + ["min"] = 18, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.indexable_support_42", + ["text"] = "Socketed Gems are Supported by Level # Spell Echo", + ["type"] = "explicit", + }, + }, ["3431_MinionAttacksTauntOnHitChance"] = { ["AbyssJewel"] = { - ["max"] = 8, - ["min"] = 3, - }, + ["max"] = 8, + ["min"] = 3, + }, ["AnyJewel"] = { - ["max"] = 8, - ["min"] = 3, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2911442053", - ["text"] = "Minions have #% chance to Taunt on Hit with Attacks", - ["type"] = "explicit", - }, - }, + ["max"] = 8, + ["min"] = 3, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2911442053", + ["text"] = "Minions have #% chance to Taunt on Hit with Attacks", + ["type"] = "explicit", + }, + }, ["3433_CriticalStrikeMultiplierAgainstEnemiesOnFullLife"] = { ["1HWeapon"] = { - ["max"] = 60, - ["min"] = 41, - }, + ["max"] = 60, + ["min"] = 41, + }, ["Dagger"] = { - ["max"] = 60, - ["min"] = 41, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2355615476", - ["text"] = "+#% to Critical Strike Multiplier against Enemies that are on Full Life", - ["type"] = "explicit", - }, - }, + ["max"] = 60, + ["min"] = 41, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2355615476", + ["text"] = "+#% to Critical Strike Multiplier against Enemies that are on Full Life", + ["type"] = "explicit", + }, + }, ["344_LocalIncreasedAttackSpeedOnslaught"] = { ["1HWeapon"] = { - ["max"] = 20, - ["min"] = 18, - }, + ["max"] = 20, + ["min"] = 18, + }, ["Wand"] = { - ["max"] = 20, - ["min"] = 18, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3237923082", - ["text"] = "Socketed Gems are Supported by Level # Momentum", - ["type"] = "explicit", - }, - }, + ["max"] = 20, + ["min"] = 18, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.indexable_support_37", + ["text"] = "Socketed Gems are Supported by Level # Momentum", + ["type"] = "explicit", + }, + }, ["344_LocalPhysicalDamagePercentOnslaught"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_3237923082", - ["text"] = "Socketed Gems are Supported by Level # Momentum", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.indexable_support_37", + ["text"] = "Socketed Gems are Supported by Level # Momentum", + ["type"] = "explicit", + }, + }, ["344_SupportedByOnslaughtWeapon"] = { ["2HAxe"] = { - ["max"] = 10, - ["min"] = 10, - }, + ["max"] = 10, + ["min"] = 10, + }, ["2HSword"] = { - ["max"] = 10, - ["min"] = 10, - }, + ["max"] = 10, + ["min"] = 10, + }, ["2HWeapon"] = { - ["max"] = 10, - ["min"] = 10, - }, + ["max"] = 10, + ["min"] = 10, + }, ["Bow"] = { - ["max"] = 10, - ["min"] = 10, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3237923082", - ["text"] = "Socketed Gems are Supported by Level # Momentum", - ["type"] = "explicit", - }, - }, + ["max"] = 10, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.indexable_support_37", + ["text"] = "Socketed Gems are Supported by Level # Momentum", + ["type"] = "explicit", + }, + }, ["3458_IncreasedDamageFromAuras"] = { ["1HAxe"] = { - ["max"] = 2, - ["min"] = 2, - }, + ["max"] = 2, + ["min"] = 2, + }, ["1HMace"] = { - ["max"] = 2, - ["min"] = 2, - }, + ["max"] = 2, + ["min"] = 2, + }, ["1HSword"] = { - ["max"] = 2, - ["min"] = 2, - }, + ["max"] = 2, + ["min"] = 2, + }, ["1HWeapon"] = { - ["max"] = 2, - ["min"] = 2, - }, + ["max"] = 2, + ["min"] = 2, + }, ["2HAxe"] = { - ["max"] = 4, - ["min"] = 2, - }, + ["max"] = 4, + ["min"] = 2, + }, ["2HMace"] = { - ["max"] = 4, - ["min"] = 2, - }, + ["max"] = 4, + ["min"] = 2, + }, ["2HSword"] = { - ["max"] = 4, - ["min"] = 2, - }, + ["max"] = 4, + ["min"] = 2, + }, ["2HWeapon"] = { - ["max"] = 4, - ["min"] = 2, - }, + ["max"] = 4, + ["min"] = 2, + }, ["Bow"] = { - ["max"] = 4, - ["min"] = 4, - }, + ["max"] = 4, + ["min"] = 4, + }, ["Claw"] = { - ["max"] = 2, - ["min"] = 2, - }, + ["max"] = 2, + ["min"] = 2, + }, ["Dagger"] = { - ["max"] = 2, - ["min"] = 2, - }, + ["max"] = 2, + ["min"] = 2, + }, ["Staff"] = { - ["max"] = 4, - ["min"] = 4, - }, + ["max"] = 4, + ["min"] = 4, + }, ["Wand"] = { - ["max"] = 2, - ["min"] = 2, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3729445224", - ["text"] = "Auras from your Skills grant #% increased Damage to you and Allies", - ["type"] = "explicit", - }, - }, + ["max"] = 2, + ["min"] = 2, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3729445224", + ["text"] = "Auras from your Skills grant #% increased Damage to you and Allies", + ["type"] = "explicit", + }, + }, ["3461_TrapCooldownRecoveryAndDuration"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_3417757416", - ["text"] = "#% increased Cooldown Recovery Rate for throwing Traps", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_3417757416", + ["text"] = "#% increased Cooldown Recovery Rate for throwing Traps", + ["type"] = "explicit", + }, + }, ["3465_ChancetoGainPhasingOnKill"] = { ["1HWeapon"] = { - ["max"] = 25, - ["min"] = 15, - }, + ["max"] = 25, + ["min"] = 15, + }, ["2HWeapon"] = { - ["max"] = 25, - ["min"] = 15, - }, + ["max"] = 25, + ["min"] = 15, + }, ["AbyssJewel"] = { - ["max"] = 8, - ["min"] = 3, - }, + ["max"] = 8, + ["min"] = 3, + }, ["AnyJewel"] = { - ["max"] = 8, - ["min"] = 3, - }, + ["max"] = 8, + ["min"] = 3, + }, ["Bow"] = { - ["max"] = 25, - ["min"] = 15, - }, + ["max"] = 25, + ["min"] = 15, + }, ["Quiver"] = { - ["max"] = 10, - ["min"] = 5, - }, + ["max"] = 10, + ["min"] = 5, + }, ["Wand"] = { - ["max"] = 25, - ["min"] = 15, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2918708827", - ["text"] = "#% chance to gain Phasing for 4 seconds on Kill", - ["type"] = "explicit", - }, - }, + ["max"] = 25, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2918708827", + ["text"] = "#% chance to gain Phasing for 4 seconds on Kill", + ["type"] = "explicit", + }, + }, ["3474_ChanceToLoseManaOnSkillUse"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_2858930612", - ["text"] = "#% chance to lose 10% of Mana when you use a Skill", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_2858930612", + ["text"] = "#% chance to lose 10% of Mana when you use a Skill", + ["type"] = "explicit", + }, + }, ["3475_ChanceToRecoverManaOnSkillUse"] = { ["Amulet"] = { - ["max"] = 10, - ["min"] = 10, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_308309328", - ["text"] = "#% chance to Recover 10% of Mana when you use a Skill", - ["type"] = "explicit", - }, - }, + ["max"] = 10, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_308309328", + ["text"] = "#% chance to Recover 10% of Mana when you use a Skill", + ["type"] = "explicit", + }, + }, ["3479_TrapAreaOfEffect"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_4050593908", - ["text"] = "Skills used by Traps have #% increased Area of Effect", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_4050593908", + ["text"] = "Skills used by Traps have #% increased Area of Effect", + ["type"] = "explicit", + }, + }, ["350_SupportedByVolleySpeed"] = { ["1HWeapon"] = { - ["max"] = 20, - ["min"] = 16, - }, + ["max"] = 20, + ["min"] = 16, + }, ["Wand"] = { - ["max"] = 20, - ["min"] = 16, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2696557965", - ["text"] = "Socketed Gems are Supported by Level # Volley", - ["type"] = "explicit", - }, - }, + ["max"] = 20, + ["min"] = 16, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.indexable_support_36", + ["text"] = "Socketed Gems are Supported by Level # Volley", + ["type"] = "explicit", + }, + }, ["351_LocalIncreasedPhysicalDamagePercentProjectileAttackDamage"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_2513293614", - ["text"] = "Socketed Gems are Supported by Level # Vicious Projectiles", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.indexable_support_35", + ["text"] = "Socketed Gems are Supported by Level # Vicious Projectiles", + ["type"] = "explicit", + }, + }, ["3549_AdditionalMinesPlacedSupported"] = { ["Helmet"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_2395088636", - ["text"] = "Throw an additional Mine", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_2395088636", + ["text"] = "Throw an additional Mine", + ["type"] = "explicit", + }, + }, ["3559_ElementalDamagePercentMaven"] = { ["Helmet"] = { - ["max"] = 3, - ["min"] = 2, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_697807915", - ["text"] = "Damage Penetrates #% of Enemy Elemental Resistances", - ["type"] = "explicit", - }, - }, + ["max"] = 3, + ["min"] = 2, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_697807915", + ["text"] = "Damage Penetrates #% of Enemy Elemental Resistances", + ["type"] = "explicit", + }, + }, ["355_PoisonDurationWeaponSupported"] = { ["1HWeapon"] = { - ["max"] = 20, - ["min"] = 18, - }, + ["max"] = 20, + ["min"] = 18, + }, ["Dagger"] = { - ["max"] = 20, - ["min"] = 18, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2228279620", - ["text"] = "Socketed Gems are Supported by Level # Critical Strike Affliction", - ["type"] = "explicit", - }, - }, + ["max"] = 20, + ["min"] = 18, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.indexable_support_31", + ["text"] = "Socketed Gems are Supported by Level # Critical Strike Affliction", + ["type"] = "explicit", + }, + }, ["3564_ChanceForDoubleStunDuration"] = { ["1HMace"] = { - ["max"] = 15, - ["min"] = 7, - }, + ["max"] = 15, + ["min"] = 7, + }, ["1HWeapon"] = { - ["max"] = 15, - ["min"] = 7, - }, + ["max"] = 15, + ["min"] = 7, + }, ["2HMace"] = { - ["max"] = 25, - ["min"] = 7, - }, + ["max"] = 25, + ["min"] = 7, + }, ["2HWeapon"] = { - ["max"] = 25, - ["min"] = 7, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2622251413", - ["text"] = "#% chance to double Stun Duration", - ["type"] = "explicit", - }, - }, + ["max"] = 25, + ["min"] = 7, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2622251413", + ["text"] = "#% chance to double Stun Duration", + ["type"] = "explicit", + }, + }, ["3566_AuraEffect"] = { ["Chest"] = { - ["max"] = 30, - ["min"] = 15, - }, + ["max"] = 30, + ["min"] = 15, + }, ["Shield"] = { - ["max"] = 10, - ["min"] = 5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1880071428", - ["text"] = "#% increased effect of Non-Curse Auras from your Skills", - ["type"] = "explicit", - }, - }, + ["max"] = 10, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1880071428", + ["text"] = "#% increased effect of Non-Curse Auras from your Skills", + ["type"] = "explicit", + }, + }, ["3567_AuraEffectOnEnemies"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1636209393", - ["text"] = "#% increased Effect of Non-Curse Auras from your Skills on Enemies", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1636209393", + ["text"] = "#% increased Effect of Non-Curse Auras from your Skills on Enemies", + ["type"] = "explicit", + }, + }, ["356_LocalIncreasedPhysicalDamagePercentPowerChargeOnCrit"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_4015918489", - ["text"] = "Socketed Gems are Supported by Level # Power Charge On Critical Strike", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_4015918489", + ["text"] = "Socketed Gems are Supported by Level # Power Charge On Critical Strike", + ["type"] = "explicit", + }, + }, ["356_SupportedByPowerChargeOnCritWeapon"] = { ["2HWeapon"] = { - ["max"] = 10, - ["min"] = 10, - }, + ["max"] = 10, + ["min"] = 10, + }, ["Staff"] = { - ["max"] = 10, - ["min"] = 10, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4015918489", - ["text"] = "Socketed Gems are Supported by Level # Power Charge On Critical Strike", - ["type"] = "explicit", - }, - }, + ["max"] = 10, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4015918489", + ["text"] = "Socketed Gems are Supported by Level # Power Charge On Critical Strike", + ["type"] = "explicit", + }, + }, ["356_WeaponSpellDamagePowerChargeOnCrit"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_4015918489", - ["text"] = "Socketed Gems are Supported by Level # Power Charge On Critical Strike", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_4015918489", + ["text"] = "Socketed Gems are Supported by Level # Power Charge On Critical Strike", + ["type"] = "explicit", + }, + }, ["3612_PowerFrenzyOrEnduranceChargeOnKill"] = { ["1HAxe"] = { - ["max"] = 16, - ["min"] = 16, - }, + ["max"] = 16, + ["min"] = 16, + }, ["1HMace"] = { - ["max"] = 16, - ["min"] = 16, - }, + ["max"] = 16, + ["min"] = 16, + }, ["1HSword"] = { - ["max"] = 16, - ["min"] = 16, - }, + ["max"] = 16, + ["min"] = 16, + }, ["1HWeapon"] = { - ["max"] = 16, - ["min"] = 16, - }, + ["max"] = 16, + ["min"] = 16, + }, ["2HAxe"] = { - ["max"] = 16, - ["min"] = 16, - }, + ["max"] = 16, + ["min"] = 16, + }, ["2HMace"] = { - ["max"] = 16, - ["min"] = 16, - }, + ["max"] = 16, + ["min"] = 16, + }, ["2HSword"] = { - ["max"] = 16, - ["min"] = 16, - }, + ["max"] = 16, + ["min"] = 16, + }, ["2HWeapon"] = { - ["max"] = 16, - ["min"] = 16, - }, + ["max"] = 16, + ["min"] = 16, + }, ["Amulet"] = { - ["max"] = 10, - ["min"] = 3, - }, + ["max"] = 10, + ["min"] = 3, + }, ["Bow"] = { - ["max"] = 16, - ["min"] = 16, - }, + ["max"] = 16, + ["min"] = 16, + }, ["Claw"] = { - ["max"] = 16, - ["min"] = 16, - }, + ["max"] = 16, + ["min"] = 16, + }, ["Dagger"] = { - ["max"] = 16, - ["min"] = 16, - }, + ["max"] = 16, + ["min"] = 16, + }, ["Staff"] = { - ["max"] = 16, - ["min"] = 16, - }, + ["max"] = 16, + ["min"] = 16, + }, ["Wand"] = { - ["max"] = 16, - ["min"] = 16, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_498214257", - ["text"] = "#% chance to gain a Power, Frenzy or Endurance Charge on Kill", - ["type"] = "explicit", - }, - }, + ["max"] = 16, + ["min"] = 16, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_498214257", + ["text"] = "#% chance to gain a Power, Frenzy or Endurance Charge on Kill", + ["type"] = "explicit", + }, + }, ["362_TotemDamageAttackSupported"] = { ["Boots"] = { - ["max"] = 25, - ["min"] = 18, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3030692053", - ["text"] = "Socketed Gems are Supported by Level # Ballista Totem", - ["type"] = "explicit", - }, - }, + ["max"] = 25, + ["min"] = 18, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.indexable_support_27", + ["text"] = "Socketed Gems are Supported by Level # Ballista Totem", + ["type"] = "explicit", + }, + }, ["362_TotemSpeedAttackSupported"] = { ["Boots"] = { - ["max"] = 25, - ["min"] = 18, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3030692053", - ["text"] = "Socketed Gems are Supported by Level # Ballista Totem", - ["type"] = "explicit", - }, - }, + ["max"] = 25, + ["min"] = 18, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.indexable_support_27", + ["text"] = "Socketed Gems are Supported by Level # Ballista Totem", + ["type"] = "explicit", + }, + }, ["365_SupportedByLessDuration"] = { ["Helmet"] = { - ["max"] = 25, - ["min"] = 20, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2487643588", - ["text"] = "Socketed Gems are Supported by Level # Less Duration", - ["type"] = "explicit", - }, - }, + ["max"] = 25, + ["min"] = 20, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.indexable_support_25", + ["text"] = "Socketed Gems are Supported by Level # Less Duration", + ["type"] = "explicit", + }, + }, ["370_LocalPhysicalDamagePercentRuthless"] = { ["1HAxe"] = { - ["max"] = 20, - ["min"] = 16, - }, + ["max"] = 20, + ["min"] = 16, + }, ["1HMace"] = { - ["max"] = 20, - ["min"] = 16, - }, + ["max"] = 20, + ["min"] = 16, + }, ["1HSword"] = { - ["max"] = 20, - ["min"] = 16, - }, + ["max"] = 20, + ["min"] = 16, + }, ["1HWeapon"] = { - ["max"] = 20, - ["min"] = 16, - }, + ["max"] = 20, + ["min"] = 16, + }, ["2HAxe"] = { - ["max"] = 20, - ["min"] = 16, - }, + ["max"] = 20, + ["min"] = 16, + }, ["2HMace"] = { - ["max"] = 20, - ["min"] = 16, - }, + ["max"] = 20, + ["min"] = 16, + }, ["2HSword"] = { - ["max"] = 20, - ["min"] = 16, - }, + ["max"] = 20, + ["min"] = 16, + }, ["2HWeapon"] = { - ["max"] = 20, - ["min"] = 16, - }, + ["max"] = 20, + ["min"] = 16, + }, ["Claw"] = { - ["max"] = 20, - ["min"] = 16, - }, + ["max"] = 20, + ["min"] = 16, + }, ["Dagger"] = { - ["max"] = 20, - ["min"] = 16, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3796013729", - ["text"] = "Socketed Gems are Supported by Level # Ruthless", - ["type"] = "explicit", - }, - }, + ["max"] = 20, + ["min"] = 16, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.indexable_support_21", + ["text"] = "Socketed Gems are Supported by Level # Ruthless", + ["type"] = "explicit", + }, + }, ["3750_MinionDamageAlsoAffectsYou"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1631928082", - ["text"] = "Increases and Reductions to Minion Damage also affect you", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1631928082", + ["text"] = "Increases and Reductions to Minion Damage also affect you", + ["type"] = "explicit", + }, + }, ["3752_MinionAttackSpeedAlsoAffectsYou"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_2293111154", - ["text"] = "Increases and Reductions to Minion Attack Speed also affect you", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_2293111154", + ["text"] = "Increases and Reductions to Minion Attack Speed also affect you", + ["type"] = "explicit", + }, + }, ["3753_MinionCastSpeedAlsoAffectsYou"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_2284852387", - ["text"] = "Increases and Reductions to Minion Cast Speed also affect you", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_2284852387", + ["text"] = "Increases and Reductions to Minion Cast Speed also affect you", + ["type"] = "explicit", + }, + }, ["3761_LocalAttackReduceEnemyElementalResistance"] = { ["1HAxe"] = { - ["max"] = 16, - ["min"] = 6, - }, + ["max"] = 16, + ["min"] = 6, + }, ["1HMace"] = { - ["max"] = 16, - ["min"] = 6, - }, + ["max"] = 16, + ["min"] = 6, + }, ["1HSword"] = { - ["max"] = 16, - ["min"] = 6, - }, + ["max"] = 16, + ["min"] = 6, + }, ["1HWeapon"] = { - ["max"] = 16, - ["min"] = 6, - }, + ["max"] = 16, + ["min"] = 6, + }, ["2HAxe"] = { - ["max"] = 16, - ["min"] = 6, - }, + ["max"] = 16, + ["min"] = 6, + }, ["2HMace"] = { - ["max"] = 16, - ["min"] = 6, - }, + ["max"] = 16, + ["min"] = 6, + }, ["2HSword"] = { - ["max"] = 16, - ["min"] = 6, - }, + ["max"] = 16, + ["min"] = 6, + }, ["2HWeapon"] = { - ["max"] = 16, - ["min"] = 6, - }, + ["max"] = 16, + ["min"] = 6, + }, ["Bow"] = { - ["max"] = 16, - ["min"] = 6, - }, + ["max"] = 16, + ["min"] = 6, + }, ["Claw"] = { - ["max"] = 16, - ["min"] = 6, - }, + ["max"] = 16, + ["min"] = 6, + }, ["Dagger"] = { - ["max"] = 16, - ["min"] = 6, - }, + ["max"] = 16, + ["min"] = 6, + }, ["Staff"] = { - ["max"] = 16, - ["min"] = 6, - }, + ["max"] = 16, + ["min"] = 6, + }, ["Wand"] = { - ["max"] = 16, - ["min"] = 6, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4064396395", - ["text"] = "Attacks with this Weapon Penetrate #% Elemental Resistances", - ["type"] = "explicit", - }, - }, + ["max"] = 16, + ["min"] = 6, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4064396395", + ["text"] = "Attacks with this Weapon Penetrate #% Elemental Resistances", + ["type"] = "explicit", + }, + }, ["3761_LocalElementalPenetration"] = { ["1HAxe"] = { - ["max"] = 12, - ["min"] = 6, - }, + ["max"] = 12, + ["min"] = 6, + }, ["1HMace"] = { - ["max"] = 12, - ["min"] = 6, - }, + ["max"] = 12, + ["min"] = 6, + }, ["1HSword"] = { - ["max"] = 12, - ["min"] = 6, - }, + ["max"] = 12, + ["min"] = 6, + }, ["1HWeapon"] = { - ["max"] = 12, - ["min"] = 6, - }, + ["max"] = 12, + ["min"] = 6, + }, ["2HAxe"] = { - ["max"] = 12, - ["min"] = 6, - }, + ["max"] = 12, + ["min"] = 6, + }, ["2HMace"] = { - ["max"] = 12, - ["min"] = 6, - }, + ["max"] = 12, + ["min"] = 6, + }, ["2HSword"] = { - ["max"] = 12, - ["min"] = 6, - }, + ["max"] = 12, + ["min"] = 6, + }, ["2HWeapon"] = { - ["max"] = 12, - ["min"] = 6, - }, + ["max"] = 12, + ["min"] = 6, + }, ["Bow"] = { - ["max"] = 12, - ["min"] = 6, - }, + ["max"] = 12, + ["min"] = 6, + }, ["Claw"] = { - ["max"] = 12, - ["min"] = 6, - }, + ["max"] = 12, + ["min"] = 6, + }, ["Dagger"] = { - ["max"] = 12, - ["min"] = 6, - }, + ["max"] = 12, + ["min"] = 6, + }, ["Staff"] = { - ["max"] = 12, - ["min"] = 6, - }, + ["max"] = 12, + ["min"] = 6, + }, ["Wand"] = { - ["max"] = 12, - ["min"] = 6, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4064396395", - ["text"] = "Attacks with this Weapon Penetrate #% Elemental Resistances", - ["type"] = "explicit", - }, - }, + ["max"] = 12, + ["min"] = 6, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4064396395", + ["text"] = "Attacks with this Weapon Penetrate #% Elemental Resistances", + ["type"] = "explicit", + }, + }, ["3762_LocalFireDamageAndPen"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_3398283493", - ["text"] = "Attacks with this Weapon Penetrate #% Fire Resistance", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_3398283493", + ["text"] = "Attacks with this Weapon Penetrate #% Fire Resistance", + ["type"] = "explicit", + }, + }, ["3762_LocalFireDamagePenetrationHybrid"] = { ["1HAxe"] = { - ["max"] = 7, - ["min"] = 5, - }, + ["max"] = 7, + ["min"] = 5, + }, ["1HMace"] = { - ["max"] = 7, - ["min"] = 5, - }, + ["max"] = 7, + ["min"] = 5, + }, ["1HSword"] = { - ["max"] = 7, - ["min"] = 5, - }, + ["max"] = 7, + ["min"] = 5, + }, ["1HWeapon"] = { - ["max"] = 7, - ["min"] = 5, - }, + ["max"] = 7, + ["min"] = 5, + }, ["2HAxe"] = { - ["max"] = 7, - ["min"] = 5, - }, + ["max"] = 7, + ["min"] = 5, + }, ["2HMace"] = { - ["max"] = 7, - ["min"] = 5, - }, + ["max"] = 7, + ["min"] = 5, + }, ["2HSword"] = { - ["max"] = 7, - ["min"] = 5, - }, + ["max"] = 7, + ["min"] = 5, + }, ["2HWeapon"] = { - ["max"] = 7, - ["min"] = 5, - }, + ["max"] = 7, + ["min"] = 5, + }, ["Bow"] = { - ["max"] = 7, - ["min"] = 5, - }, + ["max"] = 7, + ["min"] = 5, + }, ["Claw"] = { - ["max"] = 7, - ["min"] = 5, - }, + ["max"] = 7, + ["min"] = 5, + }, ["Dagger"] = { - ["max"] = 7, - ["min"] = 5, - }, + ["max"] = 7, + ["min"] = 5, + }, ["Staff"] = { - ["max"] = 7, - ["min"] = 5, - }, + ["max"] = 7, + ["min"] = 5, + }, ["Wand"] = { - ["max"] = 7, - ["min"] = 5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3398283493", - ["text"] = "Attacks with this Weapon Penetrate #% Fire Resistance", - ["type"] = "explicit", - }, - }, + ["max"] = 7, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3398283493", + ["text"] = "Attacks with this Weapon Penetrate #% Fire Resistance", + ["type"] = "explicit", + }, + }, ["3762_LocalFireDamageTwoHandAndPen"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_3398283493", - ["text"] = "Attacks with this Weapon Penetrate #% Fire Resistance", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_3398283493", + ["text"] = "Attacks with this Weapon Penetrate #% Fire Resistance", + ["type"] = "explicit", + }, + }, ["3762_LocalFirePenetration"] = { ["1HAxe"] = { - ["max"] = 15, - ["min"] = 9, - }, + ["max"] = 15, + ["min"] = 9, + }, ["1HMace"] = { - ["max"] = 15, - ["min"] = 9, - }, + ["max"] = 15, + ["min"] = 9, + }, ["1HSword"] = { - ["max"] = 15, - ["min"] = 9, - }, + ["max"] = 15, + ["min"] = 9, + }, ["1HWeapon"] = { - ["max"] = 15, - ["min"] = 9, - }, + ["max"] = 15, + ["min"] = 9, + }, ["2HAxe"] = { - ["max"] = 15, - ["min"] = 9, - }, + ["max"] = 15, + ["min"] = 9, + }, ["2HMace"] = { - ["max"] = 15, - ["min"] = 9, - }, + ["max"] = 15, + ["min"] = 9, + }, ["2HSword"] = { - ["max"] = 15, - ["min"] = 9, - }, + ["max"] = 15, + ["min"] = 9, + }, ["2HWeapon"] = { - ["max"] = 15, - ["min"] = 9, - }, + ["max"] = 15, + ["min"] = 9, + }, ["Bow"] = { - ["max"] = 15, - ["min"] = 9, - }, + ["max"] = 15, + ["min"] = 9, + }, ["Claw"] = { - ["max"] = 15, - ["min"] = 9, - }, + ["max"] = 15, + ["min"] = 9, + }, ["Dagger"] = { - ["max"] = 15, - ["min"] = 9, - }, + ["max"] = 15, + ["min"] = 9, + }, ["Staff"] = { - ["max"] = 15, - ["min"] = 9, - }, + ["max"] = 15, + ["min"] = 9, + }, ["Wand"] = { - ["max"] = 15, - ["min"] = 9, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3398283493", - ["text"] = "Attacks with this Weapon Penetrate #% Fire Resistance", - ["type"] = "explicit", - }, - }, + ["max"] = 15, + ["min"] = 9, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3398283493", + ["text"] = "Attacks with this Weapon Penetrate #% Fire Resistance", + ["type"] = "explicit", + }, + }, ["3763_LocalColdDamageAndPen"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1740229525", - ["text"] = "Attacks with this Weapon Penetrate #% Cold Resistance", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1740229525", + ["text"] = "Attacks with this Weapon Penetrate #% Cold Resistance", + ["type"] = "explicit", + }, + }, ["3763_LocalColdDamagePenetrationHybrid"] = { ["1HAxe"] = { - ["max"] = 7, - ["min"] = 5, - }, + ["max"] = 7, + ["min"] = 5, + }, ["1HMace"] = { - ["max"] = 7, - ["min"] = 5, - }, + ["max"] = 7, + ["min"] = 5, + }, ["1HSword"] = { - ["max"] = 7, - ["min"] = 5, - }, + ["max"] = 7, + ["min"] = 5, + }, ["1HWeapon"] = { - ["max"] = 7, - ["min"] = 5, - }, + ["max"] = 7, + ["min"] = 5, + }, ["2HAxe"] = { - ["max"] = 7, - ["min"] = 5, - }, + ["max"] = 7, + ["min"] = 5, + }, ["2HMace"] = { - ["max"] = 7, - ["min"] = 5, - }, + ["max"] = 7, + ["min"] = 5, + }, ["2HSword"] = { - ["max"] = 7, - ["min"] = 5, - }, + ["max"] = 7, + ["min"] = 5, + }, ["2HWeapon"] = { - ["max"] = 7, - ["min"] = 5, - }, + ["max"] = 7, + ["min"] = 5, + }, ["Bow"] = { - ["max"] = 7, - ["min"] = 5, - }, + ["max"] = 7, + ["min"] = 5, + }, ["Claw"] = { - ["max"] = 7, - ["min"] = 5, - }, + ["max"] = 7, + ["min"] = 5, + }, ["Dagger"] = { - ["max"] = 7, - ["min"] = 5, - }, + ["max"] = 7, + ["min"] = 5, + }, ["Staff"] = { - ["max"] = 7, - ["min"] = 5, - }, + ["max"] = 7, + ["min"] = 5, + }, ["Wand"] = { - ["max"] = 7, - ["min"] = 5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1740229525", - ["text"] = "Attacks with this Weapon Penetrate #% Cold Resistance", - ["type"] = "explicit", - }, - }, + ["max"] = 7, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1740229525", + ["text"] = "Attacks with this Weapon Penetrate #% Cold Resistance", + ["type"] = "explicit", + }, + }, ["3763_LocalColdDamageTwoHandAndPen"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1740229525", - ["text"] = "Attacks with this Weapon Penetrate #% Cold Resistance", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1740229525", + ["text"] = "Attacks with this Weapon Penetrate #% Cold Resistance", + ["type"] = "explicit", + }, + }, ["3763_LocalColdPenetration"] = { ["1HAxe"] = { - ["max"] = 15, - ["min"] = 9, - }, + ["max"] = 15, + ["min"] = 9, + }, ["1HMace"] = { - ["max"] = 15, - ["min"] = 9, - }, + ["max"] = 15, + ["min"] = 9, + }, ["1HSword"] = { - ["max"] = 15, - ["min"] = 9, - }, + ["max"] = 15, + ["min"] = 9, + }, ["1HWeapon"] = { - ["max"] = 15, - ["min"] = 9, - }, + ["max"] = 15, + ["min"] = 9, + }, ["2HAxe"] = { - ["max"] = 15, - ["min"] = 9, - }, + ["max"] = 15, + ["min"] = 9, + }, ["2HMace"] = { - ["max"] = 15, - ["min"] = 9, - }, + ["max"] = 15, + ["min"] = 9, + }, ["2HSword"] = { - ["max"] = 15, - ["min"] = 9, - }, + ["max"] = 15, + ["min"] = 9, + }, ["2HWeapon"] = { - ["max"] = 15, - ["min"] = 9, - }, + ["max"] = 15, + ["min"] = 9, + }, ["Bow"] = { - ["max"] = 15, - ["min"] = 9, - }, + ["max"] = 15, + ["min"] = 9, + }, ["Claw"] = { - ["max"] = 15, - ["min"] = 9, - }, + ["max"] = 15, + ["min"] = 9, + }, ["Dagger"] = { - ["max"] = 15, - ["min"] = 9, - }, + ["max"] = 15, + ["min"] = 9, + }, ["Staff"] = { - ["max"] = 15, - ["min"] = 9, - }, + ["max"] = 15, + ["min"] = 9, + }, ["Wand"] = { - ["max"] = 15, - ["min"] = 9, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1740229525", - ["text"] = "Attacks with this Weapon Penetrate #% Cold Resistance", - ["type"] = "explicit", - }, - }, + ["max"] = 15, + ["min"] = 9, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1740229525", + ["text"] = "Attacks with this Weapon Penetrate #% Cold Resistance", + ["type"] = "explicit", + }, + }, ["3764_LocalLightningDamageAndPen"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_2387539034", - ["text"] = "Attacks with this Weapon Penetrate #% Lightning Resistance", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_2387539034", + ["text"] = "Attacks with this Weapon Penetrate #% Lightning Resistance", + ["type"] = "explicit", + }, + }, ["3764_LocalLightningDamagePenetrationHybrid"] = { ["1HAxe"] = { - ["max"] = 7, - ["min"] = 5, - }, + ["max"] = 7, + ["min"] = 5, + }, ["1HMace"] = { - ["max"] = 7, - ["min"] = 5, - }, + ["max"] = 7, + ["min"] = 5, + }, ["1HSword"] = { - ["max"] = 7, - ["min"] = 5, - }, + ["max"] = 7, + ["min"] = 5, + }, ["1HWeapon"] = { - ["max"] = 7, - ["min"] = 5, - }, + ["max"] = 7, + ["min"] = 5, + }, ["2HAxe"] = { - ["max"] = 7, - ["min"] = 5, - }, + ["max"] = 7, + ["min"] = 5, + }, ["2HMace"] = { - ["max"] = 7, - ["min"] = 5, - }, + ["max"] = 7, + ["min"] = 5, + }, ["2HSword"] = { - ["max"] = 7, - ["min"] = 5, - }, + ["max"] = 7, + ["min"] = 5, + }, ["2HWeapon"] = { - ["max"] = 7, - ["min"] = 5, - }, + ["max"] = 7, + ["min"] = 5, + }, ["Bow"] = { - ["max"] = 7, - ["min"] = 5, - }, + ["max"] = 7, + ["min"] = 5, + }, ["Claw"] = { - ["max"] = 7, - ["min"] = 5, - }, + ["max"] = 7, + ["min"] = 5, + }, ["Dagger"] = { - ["max"] = 7, - ["min"] = 5, - }, + ["max"] = 7, + ["min"] = 5, + }, ["Staff"] = { - ["max"] = 7, - ["min"] = 5, - }, + ["max"] = 7, + ["min"] = 5, + }, ["Wand"] = { - ["max"] = 7, - ["min"] = 5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2387539034", - ["text"] = "Attacks with this Weapon Penetrate #% Lightning Resistance", - ["type"] = "explicit", - }, - }, + ["max"] = 7, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2387539034", + ["text"] = "Attacks with this Weapon Penetrate #% Lightning Resistance", + ["type"] = "explicit", + }, + }, ["3764_LocalLightningDamageTwoHandAndPen"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_2387539034", - ["text"] = "Attacks with this Weapon Penetrate #% Lightning Resistance", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_2387539034", + ["text"] = "Attacks with this Weapon Penetrate #% Lightning Resistance", + ["type"] = "explicit", + }, + }, ["3764_LocalLightningPenetration"] = { ["1HAxe"] = { - ["max"] = 15, - ["min"] = 9, - }, + ["max"] = 15, + ["min"] = 9, + }, ["1HMace"] = { - ["max"] = 15, - ["min"] = 9, - }, + ["max"] = 15, + ["min"] = 9, + }, ["1HSword"] = { - ["max"] = 15, - ["min"] = 9, - }, + ["max"] = 15, + ["min"] = 9, + }, ["1HWeapon"] = { - ["max"] = 15, - ["min"] = 9, - }, + ["max"] = 15, + ["min"] = 9, + }, ["2HAxe"] = { - ["max"] = 15, - ["min"] = 9, - }, + ["max"] = 15, + ["min"] = 9, + }, ["2HMace"] = { - ["max"] = 15, - ["min"] = 9, - }, + ["max"] = 15, + ["min"] = 9, + }, ["2HSword"] = { - ["max"] = 15, - ["min"] = 9, - }, + ["max"] = 15, + ["min"] = 9, + }, ["2HWeapon"] = { - ["max"] = 15, - ["min"] = 9, - }, + ["max"] = 15, + ["min"] = 9, + }, ["Bow"] = { - ["max"] = 15, - ["min"] = 9, - }, + ["max"] = 15, + ["min"] = 9, + }, ["Claw"] = { - ["max"] = 15, - ["min"] = 9, - }, + ["max"] = 15, + ["min"] = 9, + }, ["Dagger"] = { - ["max"] = 15, - ["min"] = 9, - }, + ["max"] = 15, + ["min"] = 9, + }, ["Staff"] = { - ["max"] = 15, - ["min"] = 9, - }, + ["max"] = 15, + ["min"] = 9, + }, ["Wand"] = { - ["max"] = 15, - ["min"] = 9, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2387539034", - ["text"] = "Attacks with this Weapon Penetrate #% Lightning Resistance", - ["type"] = "explicit", - }, - }, + ["max"] = 15, + ["min"] = 9, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2387539034", + ["text"] = "Attacks with this Weapon Penetrate #% Lightning Resistance", + ["type"] = "explicit", + }, + }, ["3769_MinionAddedChaosDamage"] = { ["AbyssJewel"] = { - ["max"] = 32.5, - ["min"] = 3.5, - }, + ["max"] = 32.5, + ["min"] = 3.5, + }, ["AnyJewel"] = { - ["max"] = 32.5, - ["min"] = 3.5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2889601781", - ["text"] = "Minions deal # to # additional Chaos Damage", - ["type"] = "explicit", - }, - }, + ["max"] = 32.5, + ["min"] = 3.5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2889601781", + ["text"] = "Minions deal # to # additional Chaos Damage", + ["type"] = "explicit", + }, + }, ["3770_MinionAddedColdDamage"] = { ["AbyssJewel"] = { - ["max"] = 43, - ["min"] = 5.5, - }, + ["max"] = 43, + ["min"] = 5.5, + }, ["AnyJewel"] = { - ["max"] = 43, - ["min"] = 5.5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3152982863", - ["text"] = "Minions deal # to # additional Cold Damage", - ["type"] = "explicit", - }, - }, + ["max"] = 43, + ["min"] = 5.5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3152982863", + ["text"] = "Minions deal # to # additional Cold Damage", + ["type"] = "explicit", + }, + }, ["3771_MinionAddedFireDamage"] = { ["AbyssJewel"] = { - ["max"] = 43, - ["min"] = 5.5, - }, + ["max"] = 43, + ["min"] = 5.5, + }, ["AnyJewel"] = { - ["max"] = 43, - ["min"] = 5.5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3351784991", - ["text"] = "Minions deal # to # additional Fire Damage", - ["type"] = "explicit", - }, - }, + ["max"] = 43, + ["min"] = 5.5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3351784991", + ["text"] = "Minions deal # to # additional Fire Damage", + ["type"] = "explicit", + }, + }, ["3772_MinionAddedLightningDamage"] = { ["AbyssJewel"] = { - ["max"] = 41.5, - ["min"] = 5, - }, + ["max"] = 41.5, + ["min"] = 5, + }, ["AnyJewel"] = { - ["max"] = 41.5, - ["min"] = 5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2930653471", - ["text"] = "Minions deal # to # additional Lightning Damage", - ["type"] = "explicit", - }, - }, + ["max"] = 41.5, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2930653471", + ["text"] = "Minions deal # to # additional Lightning Damage", + ["type"] = "explicit", + }, + }, ["3773_MinionAddedPhysicalDamage"] = { ["AbyssJewel"] = { - ["max"] = 32.5, - ["min"] = 3.5, - }, + ["max"] = 32.5, + ["min"] = 3.5, + }, ["AnyJewel"] = { - ["max"] = 32.5, - ["min"] = 3.5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1172029298", - ["text"] = "Minions deal # to # additional Physical Damage", - ["type"] = "explicit", - }, - }, + ["max"] = 32.5, + ["min"] = 3.5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1172029298", + ["text"] = "Minions deal # to # additional Physical Damage", + ["type"] = "explicit", + }, + }, ["377_ProjectileDamageSupported"] = { ["Gloves"] = { - ["max"] = 25, - ["min"] = 16, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1390285657", - ["text"] = "Socketed Gems are Supported by Level # Slower Projectiles", - ["type"] = "explicit", - }, - }, + ["max"] = 25, + ["min"] = 16, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.indexable_support_18", + ["text"] = "Socketed Gems are Supported by Level # Slower Projectiles", + ["type"] = "explicit", + }, + }, ["3786_RegenerateLifeOver1Second"] = { ["Chest"] = { - ["max"] = 25, - ["min"] = 15, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1242155304", - ["text"] = "Every 4 seconds, Regenerate #% of Life over one second", - ["type"] = "explicit", - }, - }, + ["max"] = 25, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1242155304", + ["text"] = "Every 4 seconds, Regenerate #% of Life over one second", + ["type"] = "explicit", + }, + }, ["379_SupportedBySpellCascadeArea"] = { ["1HMace"] = { - ["max"] = 20, - ["min"] = 16, - }, + ["max"] = 20, + ["min"] = 16, + }, ["1HWeapon"] = { - ["max"] = 20, - ["min"] = 16, - }, + ["max"] = 20, + ["min"] = 16, + }, ["Dagger"] = { - ["max"] = 20, - ["min"] = 16, - }, + ["max"] = 20, + ["min"] = 16, + }, ["Wand"] = { - ["max"] = 20, - ["min"] = 16, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_503990161", - ["text"] = "Socketed Gems are Supported by Level # Spell Cascade", - ["type"] = "explicit", - }, - }, + ["max"] = 20, + ["min"] = 16, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.indexable_support_17", + ["text"] = "Socketed Gems are Supported by Level # Spell Cascade", + ["type"] = "explicit", + }, + }, ["382_SupportedBySpiritStrikeArea"] = { ["1HAxe"] = { - ["max"] = 20, - ["min"] = 16, - }, + ["max"] = 20, + ["min"] = 16, + }, ["1HMace"] = { - ["max"] = 20, - ["min"] = 16, - }, + ["max"] = 20, + ["min"] = 16, + }, ["1HSword"] = { - ["max"] = 20, - ["min"] = 16, - }, + ["max"] = 20, + ["min"] = 16, + }, ["1HWeapon"] = { - ["max"] = 20, - ["min"] = 16, - }, + ["max"] = 20, + ["min"] = 16, + }, ["2HAxe"] = { - ["max"] = 20, - ["min"] = 16, - }, + ["max"] = 20, + ["min"] = 16, + }, ["2HMace"] = { - ["max"] = 20, - ["min"] = 16, - }, + ["max"] = 20, + ["min"] = 16, + }, ["2HSword"] = { - ["max"] = 20, - ["min"] = 16, - }, + ["max"] = 20, + ["min"] = 16, + }, ["2HWeapon"] = { - ["max"] = 20, - ["min"] = 16, - }, + ["max"] = 20, + ["min"] = 16, + }, ["Claw"] = { - ["max"] = 20, - ["min"] = 16, - }, + ["max"] = 20, + ["min"] = 16, + }, ["Dagger"] = { - ["max"] = 20, - ["min"] = 16, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_696805682", - ["text"] = "Socketed Gems are Supported by Level # Ancestral Call", - ["type"] = "explicit", - }, - }, + ["max"] = 20, + ["min"] = 16, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.indexable_support_14", + ["text"] = "Socketed Gems are Supported by Level # Ancestral Call", + ["type"] = "explicit", + }, + }, ["390_TrapDamageCooldownSupported"] = { ["Gloves"] = { - ["max"] = 25, - ["min"] = 16, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3839163699", - ["text"] = "Socketed Gems are Supported by Level # Advanced Traps", - ["type"] = "explicit", - }, - }, + ["max"] = 25, + ["min"] = 16, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.indexable_support_6", + ["text"] = "Socketed Gems are Supported by Level # Advanced Traps", + ["type"] = "explicit", + }, + }, ["390_TrapSpeedCooldownSupported"] = { ["Gloves"] = { - ["max"] = 25, - ["min"] = 16, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3839163699", - ["text"] = "Socketed Gems are Supported by Level # Advanced Traps", - ["type"] = "explicit", - }, - }, + ["max"] = 25, + ["min"] = 16, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.indexable_support_6", + ["text"] = "Socketed Gems are Supported by Level # Advanced Traps", + ["type"] = "explicit", + }, + }, ["393_ChanceToFreezeShockIgniteUnboundAilments"] = { ["1HMace"] = { - ["max"] = 20, - ["min"] = 18, - }, + ["max"] = 20, + ["min"] = 18, + }, ["1HWeapon"] = { - ["max"] = 20, - ["min"] = 18, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3699494172", - ["text"] = "Socketed Gems are Supported by Level # Unbound Ailments", - ["type"] = "explicit", - }, - }, + ["max"] = 20, + ["min"] = 18, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.indexable_support_5", + ["text"] = "Socketed Gems are Supported by Level # Unbound Ailments", + ["type"] = "explicit", + }, + }, ["3_PhysicalDamageOfYouAndMinionsCannotBeReflectedPercent"] = { ["Chest"] = { - ["max"] = 100, - ["min"] = 100, - }, + ["max"] = 100, + ["min"] = 100, + }, ["Ring"] = { - ["max"] = 75, - ["min"] = 40, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1818622832", - ["text"] = "#% of Physical Hit Damage from you and your Minions cannot be Reflected", - ["type"] = "explicit", - }, - }, + ["max"] = 75, + ["min"] = 40, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1818622832", + ["text"] = "#% of Physical Hit Damage from you and your Minions cannot be Reflected", + ["type"] = "explicit", + }, + }, ["3_PhysicalDamageOfYouAndMinionsCannotBeReflectedPercentMaven"] = { ["Chest"] = { - ["max"] = 100, - ["min"] = 100, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1818622832", - ["text"] = "#% of Physical Hit Damage from you and your Minions cannot be Reflected", - ["type"] = "explicit", - }, - }, + ["max"] = 100, + ["min"] = 100, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1818622832", + ["text"] = "#% of Physical Hit Damage from you and your Minions cannot be Reflected", + ["type"] = "explicit", + }, + }, ["4063_OfferingEffect"] = { ["Chest"] = { - ["max"] = 35, - ["min"] = 16, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3191479793", - ["text"] = "#% increased effect of Offerings", - ["type"] = "explicit", - }, - }, + ["max"] = 35, + ["min"] = 16, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3191479793", + ["text"] = "#% increased effect of Offerings", + ["type"] = "explicit", + }, + }, ["4082_DamageDuringFlaskEffect"] = { ["Gloves"] = { - ["max"] = 28, - ["min"] = 19, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2947215268", - ["text"] = "#% increased Damage during any Flask Effect", - ["type"] = "explicit", - }, - }, + ["max"] = 28, + ["min"] = 19, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2947215268", + ["text"] = "#% increased Damage during any Flask Effect", + ["type"] = "explicit", + }, + }, ["409_SocketedTriggeredSkillsDoubleDamage"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_4021083819", - ["text"] = "Socketed Triggered Skills deal Double Damage", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_4021083819", + ["text"] = "Socketed Triggered Skills deal Double Damage", + ["type"] = "explicit", + }, + }, ["4216_AvoidBleedAndPoison"] = { ["Boots"] = { - ["max"] = 70, - ["min"] = 41, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1618589784", - ["text"] = "#% chance to Avoid Bleeding", - ["type"] = "explicit", - }, - }, + ["max"] = 70, + ["min"] = 41, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1618589784", + ["text"] = "#% chance to Avoid Bleeding", + ["type"] = "explicit", + }, + }, ["4216_ChanceToAvoidBleeding"] = { ["AbyssJewel"] = { - ["max"] = 50, - ["min"] = 31, - }, + ["max"] = 50, + ["min"] = 31, + }, ["AnyJewel"] = { - ["max"] = 50, - ["min"] = 31, - }, + ["max"] = 50, + ["min"] = 31, + }, ["Boots"] = { - ["max"] = 60, - ["min"] = 41, - }, + ["max"] = 60, + ["min"] = 41, + }, ["Chest"] = { - ["max"] = 50, - ["min"] = 50, - }, + ["max"] = 50, + ["min"] = 50, + }, ["Helmet"] = { - ["max"] = 50, - ["min"] = 50, - }, + ["max"] = 50, + ["min"] = 50, + }, ["Shield"] = { - ["max"] = 50, - ["min"] = 50, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1618589784", - ["text"] = "#% chance to Avoid Bleeding", - ["type"] = "explicit", - }, - }, + ["max"] = 50, + ["min"] = 50, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1618589784", + ["text"] = "#% chance to Avoid Bleeding", + ["type"] = "explicit", + }, + }, ["4216_MovementVelocityDodge"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1618589784", - ["text"] = "#% chance to Avoid Bleeding", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1618589784", + ["text"] = "#% chance to Avoid Bleeding", + ["type"] = "explicit", + }, + }, ["4219_AreaOfEffectIfKilledRecently"] = { ["1HMace"] = { - ["max"] = 25, - ["min"] = 17, - }, + ["max"] = 25, + ["min"] = 17, + }, ["1HWeapon"] = { - ["max"] = 25, - ["min"] = 17, - }, + ["max"] = 25, + ["min"] = 17, + }, ["2HMace"] = { - ["max"] = 35, - ["min"] = 17, - }, + ["max"] = 35, + ["min"] = 17, + }, ["2HWeapon"] = { - ["max"] = 35, - ["min"] = 17, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3481736410", - ["text"] = "#% increased Area of Effect if you've Killed Recently", - ["type"] = "explicit", - }, - }, + ["max"] = 35, + ["min"] = 17, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3481736410", + ["text"] = "#% increased Area of Effect if you've Killed Recently", + ["type"] = "explicit", + }, + }, ["4230_FlaskChanceToNotConsumeCharges"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_311641062", - ["text"] = "#% chance for Flasks you use to not consume Charges", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_311641062", + ["text"] = "#% chance for Flasks you use to not consume Charges", + ["type"] = "explicit", + }, + }, ["4239_MaximumEnduranceChargesMaven"] = { ["Boots"] = { - ["max"] = 10, - ["min"] = 10, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2713233613", - ["text"] = "#% chance that if you would gain Endurance Charges, you instead gain up to maximum Endurance Charges", - ["type"] = "explicit", - }, - }, + ["max"] = 10, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2713233613", + ["text"] = "#% chance that if you would gain Endurance Charges, you instead gain up to maximum Endurance Charges", + ["type"] = "explicit", + }, + }, ["4253_DamageIfConsumedCorpse"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_2118708619", - ["text"] = "#% increased Damage if you have Consumed a corpse Recently", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_2118708619", + ["text"] = "#% increased Damage if you have Consumed a corpse Recently", + ["type"] = "explicit", + }, + }, ["4261_MovementSpeedIfEnemySlainRecently"] = { ["AbyssJewel"] = { - ["max"] = 4, - ["min"] = 2, - }, + ["max"] = 4, + ["min"] = 2, + }, ["AnyJewel"] = { - ["max"] = 4, - ["min"] = 2, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_279227559", - ["text"] = "#% increased Movement Speed if you've Killed Recently", - ["type"] = "explicit", - }, - }, + ["max"] = 4, + ["min"] = 2, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_279227559", + ["text"] = "#% increased Movement Speed if you've Killed Recently", + ["type"] = "explicit", + }, + }, ["4264_DualWieldingCritMultiplierForJewel"] = { ["AnyJewel"] = { - ["max"] = 18, - ["min"] = 15, - }, + ["max"] = 18, + ["min"] = 15, + }, ["BaseJewel"] = { - ["max"] = 18, - ["min"] = 15, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2546185479", - ["text"] = "+#% to Critical Strike Multiplier while Dual Wielding", - ["type"] = "explicit", - }, - }, + ["max"] = 18, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2546185479", + ["text"] = "+#% to Critical Strike Multiplier while Dual Wielding", + ["type"] = "explicit", + }, + }, ["4266_ArmourAndEvasionRating"] = { ["Belt"] = { - ["max"] = 400, - ["min"] = 105, - }, + ["max"] = 400, + ["min"] = 105, + }, ["Quiver"] = { - ["max"] = 400, - ["min"] = 105, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2316658489", - ["text"] = "+# to Armour and Evasion Rating", - ["type"] = "explicit", - }, - }, + ["max"] = 400, + ["min"] = 105, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2316658489", + ["text"] = "+# to Armour and Evasion Rating", + ["type"] = "explicit", + }, + }, ["4267_ElementalPenetrationDuringFlaskEffect"] = { ["Belt"] = { - ["max"] = 5, - ["min"] = 5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3392890360", - ["text"] = "Damage Penetrates #% Elemental Resistances during any Flask Effect", - ["type"] = "explicit", - }, - }, + ["max"] = 5, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3392890360", + ["text"] = "Damage Penetrates #% Elemental Resistances during any Flask Effect", + ["type"] = "explicit", + }, + }, ["4268_AdditionalPhysicalDamageReductionDuringFlaskEffect"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_2693266036", - ["text"] = "#% additional Physical Damage Reduction during any Flask Effect", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_2693266036", + ["text"] = "#% additional Physical Damage Reduction during any Flask Effect", + ["type"] = "explicit", + }, + }, ["4270_PowerChargeOnBlock"] = { ["Shield"] = { - ["max"] = 25, - ["min"] = 25, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3945147290", - ["text"] = "#% chance to gain a Power Charge when you Block", - ["type"] = "explicit", - }, - }, + ["max"] = 25, + ["min"] = 25, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3945147290", + ["text"] = "#% chance to gain a Power Charge when you Block", + ["type"] = "explicit", + }, + }, ["4270_PowerChargeOnBlockUber"] = { ["2HWeapon"] = { - ["max"] = 25, - ["min"] = 25, - }, + ["max"] = 25, + ["min"] = 25, + }, ["Staff"] = { - ["max"] = 25, - ["min"] = 25, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3945147290", - ["text"] = "#% chance to gain a Power Charge when you Block", - ["type"] = "explicit", - }, - }, + ["max"] = 25, + ["min"] = 25, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3945147290", + ["text"] = "#% chance to gain a Power Charge when you Block", + ["type"] = "explicit", + }, + }, ["4271_NearbyEnemiesChilledOnBlock"] = { ["Shield"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_583277599", - ["text"] = "Chill Nearby Enemies when you Block", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_583277599", + ["text"] = "Chill Nearby Enemies when you Block", + ["type"] = "explicit", + }, + }, ["4272_SelfColdDamageTakenPerFrenzy"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_178386603", - ["text"] = "Adds # to # Cold Damage to Hits against you per Frenzy Charge", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_178386603", + ["text"] = "Adds # to # Cold Damage to Hits against you per Frenzy Charge", + ["type"] = "explicit", + }, + }, ["4273_AddedColdDamagePerFrenzyCharge"] = { ["Quiver"] = { - ["max"] = 10, - ["min"] = 10, - }, + ["max"] = 10, + ["min"] = 10, + }, ["Ring"] = { - ["max"] = 5.5, - ["min"] = 3, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3648858570", - ["text"] = "# to # Added Cold Damage per Frenzy Charge", - ["type"] = "explicit", - }, - }, + ["max"] = 5.5, + ["min"] = 3, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3648858570", + ["text"] = "# to # Added Cold Damage per Frenzy Charge", + ["type"] = "explicit", + }, + }, ["4275_AddedFireDamageIfBlockedRecently"] = { ["Shield"] = { - ["max"] = 80, - ["min"] = 80, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3623716321", - ["text"] = "Adds # to # Fire Damage if you've Blocked Recently", - ["type"] = "explicit", - }, - }, + ["max"] = 80, + ["min"] = 80, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3623716321", + ["text"] = "Adds # to # Fire Damage if you've Blocked Recently", + ["type"] = "explicit", + }, + }, ["4281_ElusiveOnCriticalStrike"] = { ["Boots"] = { - ["max"] = 10, - ["min"] = 5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2896192589", - ["text"] = "#% chance to gain Elusive on Critical Strike", - ["type"] = "explicit", - }, - }, + ["max"] = 10, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2896192589", + ["text"] = "#% chance to gain Elusive on Critical Strike", + ["type"] = "explicit", + }, + }, ["4281_ElusiveOnCriticalStrikeMaven"] = { ["Boots"] = { - ["max"] = 20, - ["min"] = 11, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2896192589", - ["text"] = "#% chance to gain Elusive on Critical Strike", - ["type"] = "explicit", - }, - }, + ["max"] = 20, + ["min"] = 11, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2896192589", + ["text"] = "#% chance to gain Elusive on Critical Strike", + ["type"] = "explicit", + }, + }, ["4308_IncreaseProjectileAttackDamagePerAccuracy"] = { ["2HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Bow"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4157767905", - ["text"] = "#% increased Projectile Attack Damage per 200 Accuracy Rating", - ["type"] = "explicit", - }, - }, + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4157767905", + ["text"] = "#% increased Projectile Attack Damage per 200 Accuracy Rating", + ["type"] = "explicit", + }, + }, ["4312_ElementalDamageTakenWhileStationary"] = { ["Boots"] = { - ["max"] = 5, - ["min"] = 5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3859593448", - ["text"] = "#% reduced Elemental Damage Taken while stationary", - ["type"] = "explicit", - }, - }, + ["max"] = 5, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3859593448", + ["text"] = "#% reduced Elemental Damage Taken while stationary", + ["type"] = "explicit", + }, + }, ["4313_PhysicalDamageReductionWhileNotMoving"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_2181129193", - ["text"] = "#% additional Physical Damage Reduction while stationary", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_2181129193", + ["text"] = "#% additional Physical Damage Reduction while stationary", + ["type"] = "explicit", + }, + }, ["4316_ManaRegenerationMaven"] = { ["Helmet"] = { - ["max"] = 20, - ["min"] = 20, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3308030688", - ["text"] = "#% increased Mana Regeneration Rate while stationary", - ["type"] = "explicit", - }, - }, + ["max"] = 20, + ["min"] = 20, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3308030688", + ["text"] = "#% increased Mana Regeneration Rate while stationary", + ["type"] = "explicit", + }, + }, ["4499_GainArmourIfBlockedRecently"] = { ["Shield"] = { - ["max"] = 800, - ["min"] = 500, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4091848539", - ["text"] = "+# Armour if you've Blocked Recently", - ["type"] = "explicit", - }, - }, - ["4516_AccuracyPer2Dexterity"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_773731062", - ["text"] = "+# to Accuracy Rating per 2 Dexterity", - ["type"] = "explicit", - }, - }, + ["max"] = 800, + ["min"] = 500, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4091848539", + ["text"] = "+# Armour if you've Blocked Recently", + ["type"] = "explicit", + }, + }, ["4520_AccuracyIfNoEnemySlainRecently"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_2806435316", - ["text"] = "#% increased Accuracy Rating if you haven't Killed Recently", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_2806435316", + ["text"] = "#% increased Accuracy Rating if you haven't Killed Recently", + ["type"] = "explicit", + }, + }, ["4530_FrenzyChargeWhenHit"] = { ["Chest"] = { - ["max"] = 20, - ["min"] = 15, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_881914531", - ["text"] = "#% chance to gain a Frenzy Charge when Hit", - ["type"] = "explicit", - }, - }, + ["max"] = 20, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_881914531", + ["text"] = "#% chance to gain a Frenzy Charge when Hit", + ["type"] = "explicit", + }, + }, ["453_AreaDamageSupported"] = { ["Helmet"] = { - ["max"] = 25, - ["min"] = 16, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2388360415", - ["text"] = "Socketed Gems are Supported by Level # Concentrated Effect", - ["type"] = "explicit", - }, - }, + ["max"] = 25, + ["min"] = 16, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.indexable_support_98", + ["text"] = "Socketed Gems are Supported by Level # Concentrated Effect", + ["type"] = "explicit", + }, + }, ["4542_AdditionalBlockChancePerEnduranceChargeUber"] = { ["1HSword"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["1HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["2HSword"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["2HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3039589351", - ["text"] = "+#% Chance to Block Attack Damage per Endurance Charge", - ["type"] = "explicit", - }, - }, + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2355741828", + ["text"] = "+#% Chance to Block Attack Damage per Endurance Charge", + ["type"] = "explicit", + }, + }, ["4546_AdditionalBlockWith5NearbyEnemies"] = { ["Shield"] = { - ["max"] = 5, - ["min"] = 2, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1214532298", - ["text"] = "+#% Chance to Block Attack Damage if there are at least 5 nearby Enemies", - ["type"] = "explicit", - }, - }, + ["max"] = 5, + ["min"] = 2, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1214532298", + ["text"] = "+#% Chance to Block Attack Damage if there are at least 5 nearby Enemies", + ["type"] = "explicit", + }, + }, ["454_AdditionalTrapsThrownSupported"] = { ["Gloves"] = { - ["max"] = 25, - ["min"] = 25, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1122134690", - ["text"] = "Socketed Gems are Supported by Level # Trap", - ["type"] = "explicit", - }, - }, + ["max"] = 25, + ["min"] = 25, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.indexable_support_8", + ["text"] = "Socketed Gems are Supported by Level # Trap", + ["type"] = "explicit", + }, + }, ["454_TrapDamageSupported"] = { ["Gloves"] = { - ["max"] = 25, - ["min"] = 18, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1122134690", - ["text"] = "Socketed Gems are Supported by Level # Trap", - ["type"] = "explicit", - }, - }, + ["max"] = 25, + ["min"] = 18, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.indexable_support_8", + ["text"] = "Socketed Gems are Supported by Level # Trap", + ["type"] = "explicit", + }, + }, ["4551_AddCritPerExert"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_3528761893", - ["text"] = "Skills have +#% to Critical Strike Chance for each Warcry Exerting them", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_3528761893", + ["text"] = "Skills have +#% to Critical Strike Chance for each Warcry Exerting them", + ["type"] = "explicit", + }, + }, ["4572_PhysicalDamageReductionDuringFocus"] = { ["Gloves"] = { - ["max"] = 15, - ["min"] = 8, - }, + ["max"] = 15, + ["min"] = 8, + }, ["Helmet"] = { - ["max"] = 15, - ["min"] = 8, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3753650187", - ["text"] = "#% additional Physical Damage Reduction while Focused", - ["type"] = "explicit", - }, - }, + ["max"] = 15, + ["min"] = 8, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3753650187", + ["text"] = "#% additional Physical Damage Reduction while Focused", + ["type"] = "explicit", + }, + }, ["4574_ReducedPhysicalDamageTakenIfNotHitRecently"] = { ["AbyssJewel"] = { - ["max"] = 2, - ["min"] = 2, - }, + ["max"] = 2, + ["min"] = 2, + }, ["AnyJewel"] = { - ["max"] = 2, - ["min"] = 2, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3603666270", - ["text"] = "#% additional Physical Damage Reduction if you weren't Damaged by a Hit Recently", - ["type"] = "explicit", - }, - }, + ["max"] = 2, + ["min"] = 2, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3603666270", + ["text"] = "#% additional Physical Damage Reduction if you weren't Damaged by a Hit Recently", + ["type"] = "explicit", + }, + }, ["4578_ReducedPhysicalDamageTakenVsAbyssMonsters"] = { ["AbyssJewel"] = { - ["max"] = 6, - ["min"] = 4, - }, + ["max"] = 6, + ["min"] = 4, + }, ["AnyJewel"] = { - ["max"] = 6, - ["min"] = 4, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_287491423", - ["text"] = "#% additional Physical Damage Reduction against Abyssal Monsters", - ["type"] = "explicit", - }, - }, + ["max"] = 6, + ["min"] = 4, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_287491423", + ["text"] = "#% additional Physical Damage Reduction against Abyssal Monsters", + ["type"] = "explicit", + }, + }, ["457_MineDamageTrapSupported"] = { ["Helmet"] = { - ["max"] = 25, - ["min"] = 16, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3814066599", - ["text"] = "Socketed Gems are Supported by Level # Trap And Mine Damage", - ["type"] = "explicit", - }, - }, + ["max"] = 25, + ["min"] = 16, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3814066599", + ["text"] = "Socketed Gems are Supported by Level # Trap And Mine Damage", + ["type"] = "explicit", + }, + }, ["457_TrapDamageMineSupported"] = { ["Gloves"] = { - ["max"] = 25, - ["min"] = 16, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3814066599", - ["text"] = "Socketed Gems are Supported by Level # Trap And Mine Damage", - ["type"] = "explicit", - }, - }, + ["max"] = 25, + ["min"] = 16, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3814066599", + ["text"] = "Socketed Gems are Supported by Level # Trap And Mine Damage", + ["type"] = "explicit", + }, + }, ["4584_AdditionalPhysicalDamageReductionWhileMoving"] = { ["Boots"] = { - ["max"] = 5, - ["min"] = 3, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2713357573", - ["text"] = "#% additional Physical Damage Reduction while moving", - ["type"] = "explicit", - }, - }, + ["max"] = 5, + ["min"] = 3, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2713357573", + ["text"] = "#% additional Physical Damage Reduction while moving", + ["type"] = "explicit", + }, + }, ["4603_MaximumManaIncreasePercentMaven"] = { ["Helmet"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_2571899044", - ["text"] = "Transfiguration of Mind", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_2571899044", + ["text"] = "Transfiguration of Mind", + ["type"] = "explicit", + }, + }, ["4619_AilmentDoubleDamage"] = { ["1HAxe"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["1HMace"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["1HSword"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["1HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["2HAxe"] = { - ["max"] = 2, - ["min"] = 2, - }, + ["max"] = 2, + ["min"] = 2, + }, ["2HMace"] = { - ["max"] = 2, - ["min"] = 2, - }, + ["max"] = 2, + ["min"] = 2, + }, ["2HSword"] = { - ["max"] = 2, - ["min"] = 2, - }, + ["max"] = 2, + ["min"] = 2, + }, ["2HWeapon"] = { - ["max"] = 2, - ["min"] = 2, - }, + ["max"] = 2, + ["min"] = 2, + }, ["Bow"] = { - ["max"] = 2, - ["min"] = 2, - }, + ["max"] = 2, + ["min"] = 2, + }, ["Claw"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Dagger"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Staff"] = { - ["max"] = 2, - ["min"] = 2, - }, + ["max"] = 2, + ["min"] = 2, + }, ["Wand"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1916537902", - ["text"] = "#% chance to deal Double Damage against Enemies for each type of Ailment you have inflicted on them", - ["type"] = "explicit", - }, - }, + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1916537902", + ["text"] = "#% chance to deal Double Damage against Enemies for each type of Ailment you have inflicted on them", + ["type"] = "explicit", + }, + }, ["462_LocalPhysicalDamagePercentAddedFireDamage"] = { ["1HAxe"] = { - ["max"] = 20, - ["min"] = 16, - }, + ["max"] = 20, + ["min"] = 16, + }, ["1HMace"] = { - ["max"] = 20, - ["min"] = 16, - }, + ["max"] = 20, + ["min"] = 16, + }, ["1HSword"] = { - ["max"] = 20, - ["min"] = 16, - }, + ["max"] = 20, + ["min"] = 16, + }, ["1HWeapon"] = { - ["max"] = 20, - ["min"] = 16, - }, + ["max"] = 20, + ["min"] = 16, + }, ["2HAxe"] = { - ["max"] = 20, - ["min"] = 16, - }, + ["max"] = 20, + ["min"] = 16, + }, ["2HMace"] = { - ["max"] = 20, - ["min"] = 16, - }, + ["max"] = 20, + ["min"] = 16, + }, ["2HSword"] = { - ["max"] = 20, - ["min"] = 16, - }, + ["max"] = 20, + ["min"] = 16, + }, ["2HWeapon"] = { - ["max"] = 20, - ["min"] = 16, - }, + ["max"] = 20, + ["min"] = 16, + }, ["Claw"] = { - ["max"] = 20, - ["min"] = 16, - }, + ["max"] = 20, + ["min"] = 16, + }, ["Dagger"] = { - ["max"] = 20, - ["min"] = 16, - }, + ["max"] = 20, + ["min"] = 16, + }, ["Wand"] = { - ["max"] = 20, - ["min"] = 16, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2572192375", - ["text"] = "Socketed Gems are Supported by Level # Added Fire Damage", - ["type"] = "explicit", - }, - }, + ["max"] = 20, + ["min"] = 16, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.indexable_support_126", + ["text"] = "Socketed Gems are Supported by Level # Added Fire Damage", + ["type"] = "explicit", + }, + }, ["4634_GlobalSkillGemLevel"] = { ["Amulet"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4283407333", - ["text"] = "+# to Level of all Skill Gems", - ["type"] = "explicit", - }, - }, + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4283407333", + ["text"] = "+# to Level of all Skill Gems", + ["type"] = "explicit", + }, + }, ["4636_Allow2Offerings"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_3639765866", - ["text"] = "You can have two Offerings of different types", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_3639765866", + ["text"] = "You can have two Offerings of different types", + ["type"] = "explicit", + }, + }, ["464_TotemDamageSpellSupported"] = { ["Boots"] = { - ["max"] = 25, - ["min"] = 18, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2962840349", - ["text"] = "Socketed Gems are Supported by Level # Spell Totem", - ["type"] = "explicit", - }, - }, + ["max"] = 25, + ["min"] = 18, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.indexable_support_15", + ["text"] = "Socketed Gems are Supported by Level # Spell Totem", + ["type"] = "explicit", + }, + }, ["464_TotemSpeedSpellSupported"] = { ["Boots"] = { - ["max"] = 25, - ["min"] = 18, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2962840349", - ["text"] = "Socketed Gems are Supported by Level # Spell Totem", - ["type"] = "explicit", - }, - }, + ["max"] = 25, + ["min"] = 18, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.indexable_support_15", + ["text"] = "Socketed Gems are Supported by Level # Spell Totem", + ["type"] = "explicit", + }, + }, ["466_ChanceToFreezeShockIgniteProliferation"] = { ["1HMace"] = { - ["max"] = 20, - ["min"] = 18, - }, + ["max"] = 20, + ["min"] = 18, + }, ["1HWeapon"] = { - ["max"] = 20, - ["min"] = 18, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2929101122", - ["text"] = "Socketed Gems are Supported by Level # Elemental Proliferation", - ["type"] = "explicit", - }, - }, + ["max"] = 20, + ["min"] = 18, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.indexable_support_89", + ["text"] = "Socketed Gems are Supported by Level # Elemental Proliferation", + ["type"] = "explicit", + }, + }, ["4686_AngerReservation"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_2549369799", - ["text"] = "Anger has #% increased Mana Reservation Efficiency", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_2549369799", + ["text"] = "Anger has #% increased Mana Reservation Efficiency", + ["type"] = "explicit", + }, + }, ["4687_AngerReservationEfficiency"] = { ["Amulet"] = { - ["max"] = 50, - ["min"] = 40, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2549369799", - ["text"] = "Anger has #% increased Mana Reservation Efficiency", - ["type"] = "explicit", - }, - }, + ["max"] = 50, + ["min"] = 40, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2549369799", + ["text"] = "Anger has #% increased Mana Reservation Efficiency", + ["type"] = "explicit", + }, + }, ["468_LocalPhysicalDamagePercentMeleePhysicalDamage"] = { ["1HAxe"] = { - ["max"] = 20, - ["min"] = 16, - }, + ["max"] = 20, + ["min"] = 16, + }, ["1HMace"] = { - ["max"] = 20, - ["min"] = 16, - }, + ["max"] = 20, + ["min"] = 16, + }, ["1HSword"] = { - ["max"] = 20, - ["min"] = 16, - }, + ["max"] = 20, + ["min"] = 16, + }, ["1HWeapon"] = { - ["max"] = 20, - ["min"] = 16, - }, + ["max"] = 20, + ["min"] = 16, + }, ["2HAxe"] = { - ["max"] = 20, - ["min"] = 16, - }, + ["max"] = 20, + ["min"] = 16, + }, ["2HMace"] = { - ["max"] = 20, - ["min"] = 16, - }, + ["max"] = 20, + ["min"] = 16, + }, ["2HSword"] = { - ["max"] = 20, - ["min"] = 16, - }, + ["max"] = 20, + ["min"] = 16, + }, ["2HWeapon"] = { - ["max"] = 20, - ["min"] = 16, - }, + ["max"] = 20, + ["min"] = 16, + }, ["Claw"] = { - ["max"] = 20, - ["min"] = 16, - }, + ["max"] = 20, + ["min"] = 16, + }, ["Dagger"] = { - ["max"] = 20, - ["min"] = 16, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2985291457", - ["text"] = "Socketed Gems are Supported by Level # Melee Physical Damage", - ["type"] = "explicit", - }, - }, + ["max"] = 20, + ["min"] = 16, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.indexable_support_46", + ["text"] = "Socketed Gems are Supported by Level # Melee Physical Damage", + ["type"] = "explicit", + }, + }, ["469_IncreasedAttackSpeedSupported"] = { ["Gloves"] = { - ["max"] = 25, - ["min"] = 16, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_928701213", - ["text"] = "Socketed Gems are Supported by Level # Faster Attacks", - ["type"] = "explicit", - }, - }, + ["max"] = 25, + ["min"] = 16, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.indexable_support_86", + ["text"] = "Socketed Gems are Supported by Level # Faster Attacks", + ["type"] = "explicit", + }, + }, ["469_LocalIncreasedAttackSpeedFasterAttacks"] = { ["1HAxe"] = { - ["max"] = 20, - ["min"] = 18, - }, + ["max"] = 20, + ["min"] = 18, + }, ["1HMace"] = { - ["max"] = 20, - ["min"] = 18, - }, + ["max"] = 20, + ["min"] = 18, + }, ["1HSword"] = { - ["max"] = 20, - ["min"] = 18, - }, + ["max"] = 20, + ["min"] = 18, + }, ["1HWeapon"] = { - ["max"] = 20, - ["min"] = 18, - }, + ["max"] = 20, + ["min"] = 18, + }, ["2HAxe"] = { - ["max"] = 20, - ["min"] = 18, - }, + ["max"] = 20, + ["min"] = 18, + }, ["2HMace"] = { - ["max"] = 20, - ["min"] = 18, - }, + ["max"] = 20, + ["min"] = 18, + }, ["2HSword"] = { - ["max"] = 20, - ["min"] = 18, - }, + ["max"] = 20, + ["min"] = 18, + }, ["2HWeapon"] = { - ["max"] = 20, - ["min"] = 18, - }, + ["max"] = 20, + ["min"] = 18, + }, ["Claw"] = { - ["max"] = 20, - ["min"] = 18, - }, + ["max"] = 20, + ["min"] = 18, + }, ["Dagger"] = { - ["max"] = 20, - ["min"] = 18, - }, + ["max"] = 20, + ["min"] = 18, + }, ["Wand"] = { - ["max"] = 20, - ["min"] = 18, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_928701213", - ["text"] = "Socketed Gems are Supported by Level # Faster Attacks", - ["type"] = "explicit", - }, - }, + ["max"] = 20, + ["min"] = 18, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.indexable_support_86", + ["text"] = "Socketed Gems are Supported by Level # Faster Attacks", + ["type"] = "explicit", + }, + }, ["470_BlindOnHitSupported"] = { ["Gloves"] = { - ["max"] = 25, - ["min"] = 16, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2223640518", - ["text"] = "Socketed Gems are supported by Level # Blind", - ["type"] = "explicit", - }, - }, + ["max"] = 25, + ["min"] = 16, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2223640518", + ["text"] = "Socketed Gems are supported by Level # Blind", + ["type"] = "explicit", + }, + }, ["4714_ArcticArmourReservationCost"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_2351239732", - ["text"] = "Arctic Armour has #% increased Mana Reservation Efficiency", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_2351239732", + ["text"] = "Arctic Armour has #% increased Mana Reservation Efficiency", + ["type"] = "explicit", + }, + }, ["4715_ArcticArmourReservationEfficiency"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_2351239732", - ["text"] = "Arctic Armour has #% increased Mana Reservation Efficiency", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_2351239732", + ["text"] = "Arctic Armour has #% increased Mana Reservation Efficiency", + ["type"] = "explicit", + }, + }, ["471_SupportedByMeleeSplashDamage"] = { ["1HAxe"] = { - ["max"] = 20, - ["min"] = 16, - }, + ["max"] = 20, + ["min"] = 16, + }, ["1HMace"] = { - ["max"] = 20, - ["min"] = 16, - }, + ["max"] = 20, + ["min"] = 16, + }, ["1HSword"] = { - ["max"] = 20, - ["min"] = 16, - }, + ["max"] = 20, + ["min"] = 16, + }, ["1HWeapon"] = { - ["max"] = 20, - ["min"] = 16, - }, + ["max"] = 20, + ["min"] = 16, + }, ["2HAxe"] = { - ["max"] = 20, - ["min"] = 16, - }, + ["max"] = 20, + ["min"] = 16, + }, ["2HMace"] = { - ["max"] = 20, - ["min"] = 16, - }, + ["max"] = 20, + ["min"] = 16, + }, ["2HSword"] = { - ["max"] = 20, - ["min"] = 16, - }, + ["max"] = 20, + ["min"] = 16, + }, ["2HWeapon"] = { - ["max"] = 20, - ["min"] = 16, - }, + ["max"] = 20, + ["min"] = 16, + }, ["Claw"] = { - ["max"] = 20, - ["min"] = 16, - }, + ["max"] = 20, + ["min"] = 16, + }, ["Dagger"] = { - ["max"] = 20, - ["min"] = 16, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1811422871", - ["text"] = "Socketed Gems are supported by Level # Melee Splash", - ["type"] = "explicit", - }, - }, + ["max"] = 20, + ["min"] = 16, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1811422871", + ["text"] = "Socketed Gems are supported by Level # Melee Splash", + ["type"] = "explicit", + }, + }, ["4723_SingleProjAOE"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_2379109976", - ["text"] = "#% more Area of Effect with Bow Attacks that fire a single Projectile", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_2379109976", + ["text"] = "#% more Area of Effect with Bow Attacks that fire a single Projectile", + ["type"] = "explicit", + }, + }, ["4725_CullingStrikeMaven"] = { ["2HAxe"] = { - ["max"] = 25, - ["min"] = 15, - }, + ["max"] = 25, + ["min"] = 15, + }, ["2HMace"] = { - ["max"] = 25, - ["min"] = 15, - }, + ["max"] = 25, + ["min"] = 15, + }, ["2HSword"] = { - ["max"] = 25, - ["min"] = 15, - }, + ["max"] = 25, + ["min"] = 15, + }, ["2HWeapon"] = { - ["max"] = 25, - ["min"] = 15, - }, + ["max"] = 25, + ["min"] = 15, + }, ["Bow"] = { - ["max"] = 25, - ["min"] = 15, - }, + ["max"] = 25, + ["min"] = 15, + }, ["Gloves"] = { - ["max"] = 25, - ["min"] = 15, - }, + ["max"] = 25, + ["min"] = 15, + }, ["Staff"] = { - ["max"] = 25, - ["min"] = 15, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1785568076", - ["text"] = "#% increased Area of Effect if you've dealt a Culling Strike Recently", - ["type"] = "explicit", - }, - }, + ["max"] = 25, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1785568076", + ["text"] = "#% increased Area of Effect if you've dealt a Culling Strike Recently", + ["type"] = "explicit", + }, + }, ["4728_AreaOfEffectIfStunnedEnemyRecently"] = { ["1HMace"] = { - ["max"] = 35, - ["min"] = 25, - }, + ["max"] = 35, + ["min"] = 25, + }, ["1HWeapon"] = { - ["max"] = 35, - ["min"] = 25, - }, + ["max"] = 35, + ["min"] = 25, + }, ["2HMace"] = { - ["max"] = 45, - ["min"] = 25, - }, + ["max"] = 45, + ["min"] = 25, + }, ["2HWeapon"] = { - ["max"] = 45, - ["min"] = 25, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_430248187", - ["text"] = "#% increased Area of Effect if you have Stunned an Enemy Recently", - ["type"] = "explicit", - }, - }, + ["max"] = 45, + ["min"] = 25, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_430248187", + ["text"] = "#% increased Area of Effect if you have Stunned an Enemy Recently", + ["type"] = "explicit", + }, + }, ["472_CastOnCritAndSpellDamage"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_2325632050", - ["text"] = "Socketed Gems are supported by Level # Cast On Critical Strike", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_2325632050", + ["text"] = "Socketed Gems are supported by Level # Cast On Critical Strike", + ["type"] = "explicit", + }, + }, ["472_SupportedByCastOnCritWeapon"] = { ["2HAxe"] = { - ["max"] = 20, - ["min"] = 18, - }, + ["max"] = 20, + ["min"] = 18, + }, ["2HSword"] = { - ["max"] = 20, - ["min"] = 18, - }, + ["max"] = 20, + ["min"] = 18, + }, ["2HWeapon"] = { - ["max"] = 20, - ["min"] = 18, - }, + ["max"] = 20, + ["min"] = 18, + }, ["Bow"] = { - ["max"] = 20, - ["min"] = 18, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2325632050", - ["text"] = "Socketed Gems are supported by Level # Cast On Critical Strike", - ["type"] = "explicit", - }, - }, + ["max"] = 20, + ["min"] = 18, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2325632050", + ["text"] = "Socketed Gems are supported by Level # Cast On Critical Strike", + ["type"] = "explicit", + }, + }, ["4731_AreaOfEffectPer50Strength"] = { ["1HMace"] = { - ["max"] = 3, - ["min"] = 3, - }, + ["max"] = 3, + ["min"] = 3, + }, ["1HWeapon"] = { - ["max"] = 3, - ["min"] = 3, - }, + ["max"] = 3, + ["min"] = 3, + }, ["2HMace"] = { - ["max"] = 3, - ["min"] = 3, - }, + ["max"] = 3, + ["min"] = 3, + }, ["2HWeapon"] = { - ["max"] = 3, - ["min"] = 3, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2611023406", - ["text"] = "#% increased Area of Effect per 50 Strength", - ["type"] = "explicit", - }, - }, + ["max"] = 3, + ["min"] = 3, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2611023406", + ["text"] = "#% increased Area of Effect per 50 Strength", + ["type"] = "explicit", + }, + }, ["4733_AreaOfEffectPerEnduranceCharge"] = { ["2HMace"] = { - ["max"] = 5, - ["min"] = 5, - }, + ["max"] = 5, + ["min"] = 5, + }, ["2HWeapon"] = { - ["max"] = 5, - ["min"] = 5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2448279015", - ["text"] = "#% increased Area of Effect per Endurance Charge", - ["type"] = "explicit", - }, - }, + ["max"] = 5, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2448279015", + ["text"] = "#% increased Area of Effect per Endurance Charge", + ["type"] = "explicit", + }, + }, ["4733_EnduranceChargeIfHitRecentlyMaven"] = { ["Chest"] = { - ["max"] = 3, - ["min"] = 3, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2448279015", - ["text"] = "#% increased Area of Effect per Endurance Charge", - ["type"] = "explicit", - }, - }, + ["max"] = 3, + ["min"] = 3, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2448279015", + ["text"] = "#% increased Area of Effect per Endurance Charge", + ["type"] = "explicit", + }, + }, ["4749_ArmourAppliesElementalHitsIfBlockedRecently"] = { ["Shield"] = { - ["max"] = 4, - ["min"] = 2, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1239225602", - ["text"] = "#% of Armour applies to Fire, Cold and Lightning Damage taken from Hits if you have Blocked Recently", - ["type"] = "explicit", - }, - }, + ["max"] = 4, + ["min"] = 2, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1239225602", + ["text"] = "#% of Armour applies to Fire, Cold and Lightning Damage taken from Hits if you have Blocked Recently", + ["type"] = "explicit", + }, + }, ["4763_ArmourIncreasedByUncappedFireResistance"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_2129352930", - ["text"] = "Armour is increased by Overcapped Fire Resistance", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_2129352930", + ["text"] = "Armour is increased by Overcapped Fire Resistance", + ["type"] = "explicit", + }, + }, ["4767_FortifyEffectMaven"] = { ["Helmet"] = { - ["max"] = 500, - ["min"] = 500, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_153004860", - ["text"] = "+# to Armour while Fortified", - ["type"] = "explicit", - }, - }, + ["max"] = 500, + ["min"] = 500, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_153004860", + ["text"] = "+# to Armour while Fortified", + ["type"] = "explicit", + }, + }, ["4768_IncreasedArmourIfNoEnemySlainRecently"] = { ["AbyssJewel"] = { - ["max"] = 30, - ["min"] = 20, - }, + ["max"] = 30, + ["min"] = 20, + }, ["AnyJewel"] = { - ["max"] = 30, - ["min"] = 20, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2424133568", - ["text"] = "#% increased Armour if you haven't Killed Recently", - ["type"] = "explicit", - }, - }, + ["max"] = 30, + ["min"] = 20, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2424133568", + ["text"] = "#% increased Armour if you haven't Killed Recently", + ["type"] = "explicit", + }, + }, ["4792_AdditionalCriticalStrikeChanceWithAttacks"] = { ["Chest"] = { - ["max"] = 2, - ["min"] = 0.5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2572042788", - ["text"] = "Attacks have +#% to Critical Strike Chance", - ["type"] = "explicit", - }, - }, + ["max"] = 2, + ["min"] = 0.5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2572042788", + ["text"] = "Attacks have +#% to Critical Strike Chance", + ["type"] = "explicit", + }, + }, ["4806_AttackAndCastSpeedIfCorpseConsumedRecently"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_672563185", - ["text"] = "#% increased Attack and Cast Speed if you've Consumed a Corpse Recently", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_672563185", + ["text"] = "#% increased Attack and Cast Speed if you've Consumed a Corpse Recently", + ["type"] = "explicit", + }, + }, ["4808_AttackCastSpeedPerNearbyEnemy"] = { ["Gloves"] = { - ["max"] = 5, - ["min"] = 5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1027670161", - ["text"] = "#% increased Attack and Cast Speed for each nearby Enemy, up to a maximum of 30%", - ["type"] = "explicit", - }, - }, + ["max"] = 5, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1027670161", + ["text"] = "#% increased Attack and Cast Speed for each nearby Enemy, up to a maximum of 30%", + ["type"] = "explicit", + }, + }, ["480_IncreasedAccuracyPercentSupported"] = { ["Gloves"] = { - ["max"] = 25, - ["min"] = 16, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1567462963", - ["text"] = "Socketed Gems are supported by Level # Additional Accuracy", - ["type"] = "explicit", - }, - }, + ["max"] = 25, + ["min"] = 16, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1567462963", + ["text"] = "Socketed Gems are supported by Level # Additional Accuracy", + ["type"] = "explicit", + }, + }, ["4815_AttackAndCastSpeedIfHitRecently"] = { ["Gloves"] = { - ["max"] = 10, - ["min"] = 5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1483753325", - ["text"] = "#% increased Attack and Cast Speed if you've Hit an Enemy Recently", - ["type"] = "explicit", - }, - }, + ["max"] = 10, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1483753325", + ["text"] = "#% increased Attack and Cast Speed if you've Hit an Enemy Recently", + ["type"] = "explicit", + }, + }, ["4816_AdditionalChanceToEvadeMaven"] = { ["Gloves"] = { - ["max"] = 12, - ["min"] = 7, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_223937937", - ["text"] = "#% increased Attack and Cast Speed if you haven't been Hit Recently", - ["type"] = "explicit", - }, - }, + ["max"] = 12, + ["min"] = 7, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_223937937", + ["text"] = "#% increased Attack and Cast Speed if you haven't been Hit Recently", + ["type"] = "explicit", + }, + }, ["481_LocalIncreasedAttackSpeedMultistrike"] = { ["1HAxe"] = { - ["max"] = 20, - ["min"] = 18, - }, + ["max"] = 20, + ["min"] = 18, + }, ["1HMace"] = { - ["max"] = 20, - ["min"] = 18, - }, + ["max"] = 20, + ["min"] = 18, + }, ["1HSword"] = { - ["max"] = 20, - ["min"] = 18, - }, + ["max"] = 20, + ["min"] = 18, + }, ["1HWeapon"] = { - ["max"] = 20, - ["min"] = 18, - }, + ["max"] = 20, + ["min"] = 18, + }, ["2HAxe"] = { - ["max"] = 20, - ["min"] = 18, - }, + ["max"] = 20, + ["min"] = 18, + }, ["2HMace"] = { - ["max"] = 20, - ["min"] = 18, - }, + ["max"] = 20, + ["min"] = 18, + }, ["2HSword"] = { - ["max"] = 20, - ["min"] = 18, - }, + ["max"] = 20, + ["min"] = 18, + }, ["2HWeapon"] = { - ["max"] = 20, - ["min"] = 18, - }, + ["max"] = 20, + ["min"] = 18, + }, ["Claw"] = { - ["max"] = 20, - ["min"] = 18, - }, + ["max"] = 20, + ["min"] = 18, + }, ["Dagger"] = { - ["max"] = 20, - ["min"] = 18, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2501237765", - ["text"] = "Socketed Gems are supported by Level # Multistrike", - ["type"] = "explicit", - }, - }, + ["max"] = 20, + ["min"] = 18, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2501237765", + ["text"] = "Socketed Gems are supported by Level # Multistrike", + ["type"] = "explicit", + }, + }, ["4822_AttackAndCastSpeedWhileFocused"] = { ["Gloves"] = { - ["max"] = 50, - ["min"] = 22, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2628163981", - ["text"] = "#% increased Attack and Cast Speed while Focused", - ["type"] = "explicit", - }, - }, + ["max"] = 50, + ["min"] = 22, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2628163981", + ["text"] = "#% increased Attack and Cast Speed while Focused", + ["type"] = "explicit", + }, + }, ["482_LocalIncreasedPhysicalDamagePercentFasterProjectiles"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_99089516", - ["text"] = "Socketed Gems are supported by Level # Faster Projectiles", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_99089516", + ["text"] = "Socketed Gems are supported by Level # Faster Projectiles", + ["type"] = "explicit", + }, + }, ["482_ProjectileSpeedSupported"] = { ["Gloves"] = { - ["max"] = 25, - ["min"] = 16, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_99089516", - ["text"] = "Socketed Gems are supported by Level # Faster Projectiles", - ["type"] = "explicit", - }, - }, + ["max"] = 25, + ["min"] = 16, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_99089516", + ["text"] = "Socketed Gems are supported by Level # Faster Projectiles", + ["type"] = "explicit", + }, + }, ["4839_ChanceToGainOnslaughtOnKillMaven"] = { ["Boots"] = { - ["max"] = 10, - ["min"] = 3, - }, + ["max"] = 10, + ["min"] = 3, + }, ["Quiver"] = { - ["max"] = 10, - ["min"] = 3, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_879520319", - ["text"] = "#% increased Attack, Cast and Movement Speed while you have Onslaught", - ["type"] = "explicit", - }, - }, + ["max"] = 10, + ["min"] = 3, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_879520319", + ["text"] = "#% increased Attack, Cast and Movement Speed while you have Onslaught", + ["type"] = "explicit", + }, + }, ["483_SupportedByLifeLeech"] = { ["Boots"] = { - ["max"] = 20, - ["min"] = 15, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_891277550", - ["text"] = "Socketed Gems are supported by Level # Life Leech", - ["type"] = "explicit", - }, - }, + ["max"] = 20, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_891277550", + ["text"] = "Socketed Gems are supported by Level # Life Leech", + ["type"] = "explicit", + }, + }, ["485_CriticalStrikeMultiplierSupported"] = { ["1HAxe"] = { - ["max"] = 20, - ["min"] = 18, - }, + ["max"] = 20, + ["min"] = 18, + }, ["1HMace"] = { - ["max"] = 20, - ["min"] = 18, - }, + ["max"] = 20, + ["min"] = 18, + }, ["1HSword"] = { - ["max"] = 20, - ["min"] = 18, - }, + ["max"] = 20, + ["min"] = 18, + }, ["1HWeapon"] = { - ["max"] = 20, - ["min"] = 18, - }, + ["max"] = 20, + ["min"] = 18, + }, ["2HAxe"] = { - ["max"] = 20, - ["min"] = 18, - }, + ["max"] = 20, + ["min"] = 18, + }, ["2HMace"] = { - ["max"] = 20, - ["min"] = 18, - }, + ["max"] = 20, + ["min"] = 18, + }, ["2HSword"] = { - ["max"] = 20, - ["min"] = 18, - }, + ["max"] = 20, + ["min"] = 18, + }, ["2HWeapon"] = { - ["max"] = 20, - ["min"] = 18, - }, + ["max"] = 20, + ["min"] = 18, + }, ["Claw"] = { - ["max"] = 20, - ["min"] = 18, - }, + ["max"] = 20, + ["min"] = 18, + }, ["Dagger"] = { - ["max"] = 20, - ["min"] = 18, - }, + ["max"] = 20, + ["min"] = 18, + }, ["Wand"] = { - ["max"] = 20, - ["min"] = 18, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1108755349", - ["text"] = "Socketed Gems are supported by Level # Increased Critical Damage", - ["type"] = "explicit", - }, - }, + ["max"] = 20, + ["min"] = 18, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1108755349", + ["text"] = "Socketed Gems are supported by Level # Increased Critical Damage", + ["type"] = "explicit", + }, + }, ["4869_AddedFireDamagePerStrength"] = { ["1HAxe"] = { - ["max"] = 3, - ["min"] = 2, - }, + ["max"] = 3, + ["min"] = 2, + }, ["1HMace"] = { - ["max"] = 3, - ["min"] = 2, - }, + ["max"] = 3, + ["min"] = 2, + }, ["1HSword"] = { - ["max"] = 3, - ["min"] = 2, - }, + ["max"] = 3, + ["min"] = 2, + }, ["1HWeapon"] = { - ["max"] = 3, - ["min"] = 2, - }, + ["max"] = 3, + ["min"] = 2, + }, ["2HAxe"] = { - ["max"] = 4, - ["min"] = 2, - }, + ["max"] = 4, + ["min"] = 2, + }, ["2HMace"] = { - ["max"] = 4, - ["min"] = 2, - }, + ["max"] = 4, + ["min"] = 2, + }, ["2HSword"] = { - ["max"] = 4, - ["min"] = 2, - }, + ["max"] = 4, + ["min"] = 2, + }, ["2HWeapon"] = { - ["max"] = 4, - ["min"] = 2, - }, + ["max"] = 4, + ["min"] = 2, + }, ["Staff"] = { - ["max"] = 4, - ["min"] = 3, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1060540099", - ["text"] = "Adds # to # Fire Damage to Attacks with this Weapon per 10 Strength", - ["type"] = "explicit", - }, - }, + ["max"] = 4, + ["min"] = 3, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1060540099", + ["text"] = "Adds # to # Fire Damage to Attacks with this Weapon per 10 Strength", + ["type"] = "explicit", + }, + }, ["4872_AddedLightningDamagePerIntelligence"] = { ["1HMace"] = { - ["max"] = 3.5, - ["min"] = 3, - }, + ["max"] = 3.5, + ["min"] = 3, + }, ["1HWeapon"] = { - ["max"] = 3.5, - ["min"] = 3, - }, + ["max"] = 3.5, + ["min"] = 3, + }, ["2HWeapon"] = { - ["max"] = 4.5, - ["min"] = 4, - }, + ["max"] = 4.5, + ["min"] = 4, + }, ["Claw"] = { - ["max"] = 3.5, - ["min"] = 3, - }, + ["max"] = 3.5, + ["min"] = 3, + }, ["Dagger"] = { - ["max"] = 3.5, - ["min"] = 3, - }, + ["max"] = 3.5, + ["min"] = 3, + }, ["Staff"] = { - ["max"] = 4.5, - ["min"] = 4, - }, + ["max"] = 4.5, + ["min"] = 4, + }, ["Wand"] = { - ["max"] = 3.5, - ["min"] = 3, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3390848861", - ["text"] = "Adds # to # Lightning Damage to Attacks with this Weapon per 10 Intelligence", - ["type"] = "explicit", - }, - }, + ["max"] = 3.5, + ["min"] = 3, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3390848861", + ["text"] = "Adds # to # Lightning Damage to Attacks with this Weapon per 10 Intelligence", + ["type"] = "explicit", + }, + }, ["487_IncreasedWeaponElementalDamagePercentSupported"] = { ["1HAxe"] = { - ["max"] = 20, - ["min"] = 18, - }, + ["max"] = 20, + ["min"] = 18, + }, ["1HMace"] = { - ["max"] = 20, - ["min"] = 18, - }, + ["max"] = 20, + ["min"] = 18, + }, ["1HSword"] = { - ["max"] = 20, - ["min"] = 18, - }, + ["max"] = 20, + ["min"] = 18, + }, ["1HWeapon"] = { - ["max"] = 20, - ["min"] = 18, - }, + ["max"] = 20, + ["min"] = 18, + }, ["2HAxe"] = { - ["max"] = 20, - ["min"] = 18, - }, + ["max"] = 20, + ["min"] = 18, + }, ["2HMace"] = { - ["max"] = 20, - ["min"] = 18, - }, + ["max"] = 20, + ["min"] = 18, + }, ["2HSword"] = { - ["max"] = 20, - ["min"] = 18, - }, + ["max"] = 20, + ["min"] = 18, + }, ["2HWeapon"] = { - ["max"] = 20, - ["min"] = 18, - }, + ["max"] = 20, + ["min"] = 18, + }, ["Claw"] = { - ["max"] = 20, - ["min"] = 18, - }, + ["max"] = 20, + ["min"] = 18, + }, ["Dagger"] = { - ["max"] = 20, - ["min"] = 18, - }, + ["max"] = 20, + ["min"] = 18, + }, ["Wand"] = { - ["max"] = 20, - ["min"] = 18, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2532625478", - ["text"] = "Socketed Gems are supported by Level # Elemental Damage with Attacks", - ["type"] = "explicit", - }, - }, + ["max"] = 20, + ["min"] = 18, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2532625478", + ["text"] = "Socketed Gems are supported by Level # Elemental Damage with Attacks", + ["type"] = "explicit", + }, + }, ["4894_AttackSpeedIfEnemyKilledRecently"] = { ["1HAxe"] = { - ["max"] = 20, - ["min"] = 13, - }, + ["max"] = 20, + ["min"] = 13, + }, ["1HWeapon"] = { - ["max"] = 20, - ["min"] = 13, - }, + ["max"] = 20, + ["min"] = 13, + }, ["2HAxe"] = { - ["max"] = 30, - ["min"] = 13, - }, + ["max"] = 30, + ["min"] = 13, + }, ["2HWeapon"] = { - ["max"] = 30, - ["min"] = 13, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1507059769", - ["text"] = "#% increased Attack Speed if you've Killed Recently", - ["type"] = "explicit", - }, - }, + ["max"] = 30, + ["min"] = 13, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1507059769", + ["text"] = "#% increased Attack Speed if you've Killed Recently", + ["type"] = "explicit", + }, + }, ["4894_AttackSpeedKilledRecently"] = { ["2HAxe"] = { - ["max"] = 20, - ["min"] = 20, - }, + ["max"] = 20, + ["min"] = 20, + }, ["2HMace"] = { - ["max"] = 20, - ["min"] = 20, - }, + ["max"] = 20, + ["min"] = 20, + }, ["2HSword"] = { - ["max"] = 20, - ["min"] = 20, - }, + ["max"] = 20, + ["min"] = 20, + }, ["2HWeapon"] = { - ["max"] = 20, - ["min"] = 20, - }, + ["max"] = 20, + ["min"] = 20, + }, ["Bow"] = { - ["max"] = 20, - ["min"] = 20, - }, + ["max"] = 20, + ["min"] = 20, + }, ["Staff"] = { - ["max"] = 20, - ["min"] = 20, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1507059769", - ["text"] = "#% increased Attack Speed if you've Killed Recently", - ["type"] = "explicit", - }, - }, + ["max"] = 20, + ["min"] = 20, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1507059769", + ["text"] = "#% increased Attack Speed if you've Killed Recently", + ["type"] = "explicit", + }, + }, ["4895_AttackSpeedHitRecently"] = { ["Ring"] = { - ["max"] = 12, - ["min"] = 8, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4137521191", - ["text"] = "#% increased Attack Speed if you've been Hit Recently", - ["type"] = "explicit", - }, - }, + ["max"] = 12, + ["min"] = 8, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4137521191", + ["text"] = "#% increased Attack Speed if you've been Hit Recently", + ["type"] = "explicit", + }, + }, ["4897_AttackSpeedIfCriticalStrikeDealtRecently"] = { ["AbyssJewel"] = { - ["max"] = 8, - ["min"] = 6, - }, + ["max"] = 8, + ["min"] = 6, + }, ["AnyJewel"] = { - ["max"] = 8, - ["min"] = 6, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1585344030", - ["text"] = "#% increased Attack Speed if you've dealt a Critical Strike Recently", - ["type"] = "explicit", - }, - }, + ["max"] = 8, + ["min"] = 6, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1585344030", + ["text"] = "#% increased Attack Speed if you've dealt a Critical Strike Recently", + ["type"] = "explicit", + }, + }, ["4900_AttackSpeedPercentIfRareOrUniqueEnemyNearby"] = { ["1HAxe"] = { - ["max"] = 15, - ["min"] = 7, - }, + ["max"] = 15, + ["min"] = 7, + }, ["1HMace"] = { - ["max"] = 15, - ["min"] = 7, - }, + ["max"] = 15, + ["min"] = 7, + }, ["1HSword"] = { - ["max"] = 15, - ["min"] = 7, - }, + ["max"] = 15, + ["min"] = 7, + }, ["1HWeapon"] = { - ["max"] = 15, - ["min"] = 7, - }, + ["max"] = 15, + ["min"] = 7, + }, ["2HAxe"] = { - ["max"] = 30, - ["min"] = 14, - }, + ["max"] = 30, + ["min"] = 14, + }, ["2HMace"] = { - ["max"] = 30, - ["min"] = 14, - }, + ["max"] = 30, + ["min"] = 14, + }, ["2HSword"] = { - ["max"] = 30, - ["min"] = 14, - }, + ["max"] = 30, + ["min"] = 14, + }, ["2HWeapon"] = { - ["max"] = 30, - ["min"] = 14, - }, + ["max"] = 30, + ["min"] = 14, + }, ["Bow"] = { - ["max"] = 30, - ["min"] = 14, - }, + ["max"] = 30, + ["min"] = 14, + }, ["Claw"] = { - ["max"] = 15, - ["min"] = 7, - }, + ["max"] = 15, + ["min"] = 7, + }, ["Dagger"] = { - ["max"] = 15, - ["min"] = 7, - }, + ["max"] = 15, + ["min"] = 7, + }, ["Staff"] = { - ["max"] = 30, - ["min"] = 14, - }, + ["max"] = 30, + ["min"] = 14, + }, ["Wand"] = { - ["max"] = 15, - ["min"] = 7, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_314741699", - ["text"] = "#% increased Attack Speed while a Rare or Unique Enemy is Nearby", - ["type"] = "explicit", - }, - }, + ["max"] = 15, + ["min"] = 7, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_314741699", + ["text"] = "#% increased Attack Speed while a Rare or Unique Enemy is Nearby", + ["type"] = "explicit", + }, + }, ["4902_IncreasedAttackSpeedPerDexterity"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_889691035", - ["text"] = "#% increased Attack Speed per 10 Dexterity", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_889691035", + ["text"] = "#% increased Attack Speed per 10 Dexterity", + ["type"] = "explicit", + }, + }, ["4906_ManaGainPerTargetMaven"] = { ["Gloves"] = { - ["max"] = 20, - ["min"] = 10, - }, + ["max"] = 20, + ["min"] = 10, + }, ["Quiver"] = { - ["max"] = 20, - ["min"] = 10, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_779663446", - ["text"] = "#% increased Attack Speed while not on Low Mana", - ["type"] = "explicit", - }, - }, + ["max"] = 20, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_779663446", + ["text"] = "#% increased Attack Speed while not on Low Mana", + ["type"] = "explicit", + }, + }, ["4915_AttacksBlindOnHitChance"] = { ["1HAxe"] = { - ["max"] = 25, - ["min"] = 5, - }, + ["max"] = 25, + ["min"] = 5, + }, ["1HSword"] = { - ["max"] = 25, - ["min"] = 5, - }, + ["max"] = 25, + ["min"] = 5, + }, ["1HWeapon"] = { - ["max"] = 25, - ["min"] = 5, - }, + ["max"] = 25, + ["min"] = 5, + }, ["2HAxe"] = { - ["max"] = 25, - ["min"] = 5, - }, + ["max"] = 25, + ["min"] = 5, + }, ["2HSword"] = { - ["max"] = 25, - ["min"] = 5, - }, + ["max"] = 25, + ["min"] = 5, + }, ["2HWeapon"] = { - ["max"] = 25, - ["min"] = 5, - }, + ["max"] = 25, + ["min"] = 5, + }, ["AbyssJewel"] = { - ["max"] = 6, - ["min"] = 3, - }, + ["max"] = 6, + ["min"] = 3, + }, ["AnyJewel"] = { - ["max"] = 6, - ["min"] = 3, - }, + ["max"] = 6, + ["min"] = 3, + }, ["Bow"] = { - ["max"] = 25, - ["min"] = 5, - }, + ["max"] = 25, + ["min"] = 5, + }, ["Claw"] = { - ["max"] = 25, - ["min"] = 5, - }, + ["max"] = 25, + ["min"] = 5, + }, ["Dagger"] = { - ["max"] = 25, - ["min"] = 15, - }, + ["max"] = 25, + ["min"] = 15, + }, ["Quiver"] = { - ["max"] = 10, - ["min"] = 5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_318953428", - ["text"] = "#% chance to Blind Enemies on Hit with Attacks", - ["type"] = "explicit", - }, - }, + ["max"] = 10, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_318953428", + ["text"] = "#% chance to Blind Enemies on Hit with Attacks", + ["type"] = "explicit", + }, + }, ["4916_AttacksTauntOnHitChance"] = { ["1HAxe"] = { - ["max"] = 10, - ["min"] = 5, - }, + ["max"] = 10, + ["min"] = 5, + }, ["1HWeapon"] = { - ["max"] = 10, - ["min"] = 5, - }, + ["max"] = 10, + ["min"] = 5, + }, ["2HAxe"] = { - ["max"] = 10, - ["min"] = 5, - }, + ["max"] = 10, + ["min"] = 5, + }, ["2HWeapon"] = { - ["max"] = 10, - ["min"] = 5, - }, + ["max"] = 10, + ["min"] = 5, + }, ["AbyssJewel"] = { - ["max"] = 8, - ["min"] = 3, - }, + ["max"] = 8, + ["min"] = 3, + }, ["AnyJewel"] = { - ["max"] = 8, - ["min"] = 3, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_280213220", - ["text"] = "#% chance to Taunt Enemies on Hit with Attacks", - ["type"] = "explicit", - }, - }, + ["max"] = 8, + ["min"] = 3, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_280213220", + ["text"] = "#% chance to Taunt Enemies on Hit with Attacks", + ["type"] = "explicit", + }, + }, ["4918_AttackImpaleChance"] = { ["Gloves"] = { - ["max"] = 20, - ["min"] = 13, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3739863694", - ["text"] = "#% chance to Impale Enemies on Hit with Attacks", - ["type"] = "explicit", - }, - }, + ["max"] = 20, + ["min"] = 13, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3739863694", + ["text"] = "#% chance to Impale Enemies on Hit with Attacks", + ["type"] = "explicit", + }, + }, ["4918_AttackImpaleChanceMaven"] = { ["Gloves"] = { - ["max"] = 25, - ["min"] = 21, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3739863694", - ["text"] = "#% chance to Impale Enemies on Hit with Attacks", - ["type"] = "explicit", - }, - }, + ["max"] = 25, + ["min"] = 21, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3739863694", + ["text"] = "#% chance to Impale Enemies on Hit with Attacks", + ["type"] = "explicit", + }, + }, ["4918_ImpaleChanceForJewel"] = { ["AnyJewel"] = { - ["max"] = 7, - ["min"] = 5, - }, + ["max"] = 7, + ["min"] = 5, + }, ["BaseJewel"] = { - ["max"] = 7, - ["min"] = 5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3739863694", - ["text"] = "#% chance to Impale Enemies on Hit with Attacks", - ["type"] = "explicit", - }, - }, - ["4920_IntimidateOnHit"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3438201750", - ["text"] = "#% chance to Intimidate Enemies for 4 seconds on Hit with Attacks", - ["type"] = "explicit", - }, - }, + ["max"] = 7, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3739863694", + ["text"] = "#% chance to Impale Enemies on Hit with Attacks", + ["type"] = "explicit", + }, + }, ["4924_AddedColdDamagePerDexterity"] = { ["1HAxe"] = { - ["max"] = 3, - ["min"] = 2, - }, + ["max"] = 3, + ["min"] = 2, + }, ["1HSword"] = { - ["max"] = 3, - ["min"] = 2, - }, + ["max"] = 3, + ["min"] = 2, + }, ["1HWeapon"] = { - ["max"] = 3, - ["min"] = 2, - }, + ["max"] = 3, + ["min"] = 2, + }, ["2HAxe"] = { - ["max"] = 4, - ["min"] = 2, - }, + ["max"] = 4, + ["min"] = 2, + }, ["2HSword"] = { - ["max"] = 4, - ["min"] = 2, - }, + ["max"] = 4, + ["min"] = 2, + }, ["2HWeapon"] = { - ["max"] = 4, - ["min"] = 2, - }, + ["max"] = 4, + ["min"] = 2, + }, ["Bow"] = { - ["max"] = 3, - ["min"] = 2, - }, + ["max"] = 3, + ["min"] = 2, + }, ["Claw"] = { - ["max"] = 3, - ["min"] = 2, - }, + ["max"] = 3, + ["min"] = 2, + }, ["Dagger"] = { - ["max"] = 3, - ["min"] = 2, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_149574107", - ["text"] = "Adds # to # Cold Damage to Attacks with this Weapon per 10 Dexterity", - ["type"] = "explicit", - }, - }, + ["max"] = 3, + ["min"] = 2, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_149574107", + ["text"] = "Adds # to # Cold Damage to Attacks with this Weapon per 10 Dexterity", + ["type"] = "explicit", + }, + }, ["4941_EnchantmentElusive"] = { ["AbyssJewel"] = { - ["max"] = 10, - ["min"] = 8, - }, + ["max"] = 10, + ["min"] = 8, + }, ["AnyJewel"] = { - ["max"] = 10, - ["min"] = 8, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2662268382", - ["text"] = "#% chance to Avoid Elemental Ailments while you have Elusive", - ["type"] = "explicit", - }, - }, + ["max"] = 10, + ["min"] = 8, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2662268382", + ["text"] = "#% chance to Avoid Elemental Ailments while you have Elusive", + ["type"] = "explicit", + }, + }, ["4943_AvoidElementalDamageChanceDuringSoulGainPrevention"] = { ["Chest"] = { - ["max"] = 12, - ["min"] = 6, - }, + ["max"] = 12, + ["min"] = 6, + }, ["Helmet"] = { - ["max"] = 12, - ["min"] = 6, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_720398262", - ["text"] = "#% chance to Avoid Elemental Damage from Hits during Soul Gain Prevention", - ["type"] = "explicit", - }, - }, + ["max"] = 12, + ["min"] = 6, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_720398262", + ["text"] = "#% chance to Avoid Elemental Damage from Hits during Soul Gain Prevention", + ["type"] = "explicit", + }, + }, ["494_SupportedByInspirationWeapon"] = { ["2HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Staff"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_749770518", - ["text"] = "Socketed Gems are Supported by Level # Inspiration", - ["type"] = "explicit", - }, - }, + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.indexable_support_24", + ["text"] = "Socketed Gems are Supported by Level # Inspiration", + ["type"] = "explicit", + }, + }, ["494_WeaponSpellDamageReducedMana"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_749770518", - ["text"] = "Socketed Gems are Supported by Level # Inspiration", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.indexable_support_24", + ["text"] = "Socketed Gems are Supported by Level # Inspiration", + ["type"] = "explicit", + }, + }, ["4950_ChanceToAvoidProjectilesMaven"] = { ["Boots"] = { - ["max"] = 15, - ["min"] = 11, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3114696875", - ["text"] = "#% chance to avoid Projectiles if you've taken Projectile Damage Recently", - ["type"] = "explicit", - }, - }, + ["max"] = 15, + ["min"] = 11, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3114696875", + ["text"] = "#% chance to avoid Projectiles if you've taken Projectile Damage Recently", + ["type"] = "explicit", + }, + }, ["496_DisplaySocketedGemsSupportedByFortify"] = { ["Boots"] = { - ["max"] = 25, - ["min"] = 20, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_107118693", - ["text"] = "Socketed Gems are Supported by Level # Fortify", - ["type"] = "explicit", - }, - }, + ["max"] = 25, + ["min"] = 20, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.indexable_support_79", + ["text"] = "Socketed Gems are Supported by Level # Fortify", + ["type"] = "explicit", + }, + }, ["496_LocalPhysicalDamagePercentFortify"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_107118693", - ["text"] = "Socketed Gems are Supported by Level # Fortify", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.indexable_support_79", + ["text"] = "Socketed Gems are Supported by Level # Fortify", + ["type"] = "explicit", + }, + }, ["496_SupportedByFortifyWeapon"] = { ["2HAxe"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["2HMace"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["2HSword"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["2HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Staff"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_107118693", - ["text"] = "Socketed Gems are Supported by Level # Fortify", - ["type"] = "explicit", - }, - }, + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.indexable_support_79", + ["text"] = "Socketed Gems are Supported by Level # Fortify", + ["type"] = "explicit", + }, + }, ["497_AdditionalMinesPlacedSupported"] = { ["Helmet"] = { - ["max"] = 25, - ["min"] = 25, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1710508327", - ["text"] = "Socketed Gems are Supported by Level # Blastchain Mine", - ["type"] = "explicit", - }, - }, + ["max"] = 25, + ["min"] = 25, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.indexable_support_23", + ["text"] = "Socketed Gems are Supported by Level # Blastchain Mine", + ["type"] = "explicit", + }, + }, ["497_MineDamageSupported"] = { ["Helmet"] = { - ["max"] = 25, - ["min"] = 18, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1710508327", - ["text"] = "Socketed Gems are Supported by Level # Blastchain Mine", - ["type"] = "explicit", - }, - }, + ["max"] = 25, + ["min"] = 18, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.indexable_support_23", + ["text"] = "Socketed Gems are Supported by Level # Blastchain Mine", + ["type"] = "explicit", + }, + }, ["4983_AilmentDamage"] = { ["AbyssJewel"] = { - ["max"] = 20, - ["min"] = 15, - }, + ["max"] = 20, + ["min"] = 15, + }, ["Amulet"] = { - ["max"] = 40, - ["min"] = 30, - }, + ["max"] = 40, + ["min"] = 30, + }, ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 15, - }, + ["max"] = 20, + ["min"] = 15, + }, ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 15, - }, + ["max"] = 20, + ["min"] = 15, + }, ["Belt"] = { - ["max"] = 40, - ["min"] = 30, - }, + ["max"] = 40, + ["min"] = 30, + }, ["Quiver"] = { - ["max"] = 40, - ["min"] = 30, - }, + ["max"] = 40, + ["min"] = 30, + }, ["Ring"] = { - ["max"] = 40, - ["min"] = 30, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_690707482", - ["text"] = "#% increased Damage with Ailments", - ["type"] = "explicit", - }, - }, + ["max"] = 40, + ["min"] = 30, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_690707482", + ["text"] = "#% increased Damage with Ailments", + ["type"] = "explicit", + }, + }, ["4984_AilmentDurationIfNotAppliedThatAilmentRecently"] = { ["Amulet"] = { - ["max"] = 60, - ["min"] = 40, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_967840105", - ["text"] = "#% increased Duration of Ailments of types you haven't inflicted Recently", - ["type"] = "explicit", - }, - }, + ["max"] = 60, + ["min"] = 40, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_967840105", + ["text"] = "#% increased Duration of Ailments of types you haven't inflicted Recently", + ["type"] = "explicit", + }, + }, ["4993_ChanceToAvoidProjectiles"] = { ["Boots"] = { - ["max"] = 12, - ["min"] = 6, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3452269808", - ["text"] = "#% chance to avoid Projectiles", - ["type"] = "explicit", - }, - }, + ["max"] = 12, + ["min"] = 6, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3452269808", + ["text"] = "#% chance to avoid Projectiles", + ["type"] = "explicit", + }, + }, ["4993_ChanceToAvoidProjectilesMaven"] = { ["Boots"] = { - ["max"] = 12, - ["min"] = 10, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3452269808", - ["text"] = "#% chance to avoid Projectiles", - ["type"] = "explicit", - }, - }, + ["max"] = 12, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3452269808", + ["text"] = "#% chance to avoid Projectiles", + ["type"] = "explicit", + }, + }, ["4994_BleedChanceAndDurationForJewel"] = { ["AnyJewel"] = { - ["max"] = 16, - ["min"] = 12, - }, + ["max"] = 16, + ["min"] = 12, + }, ["BaseJewel"] = { - ["max"] = 16, - ["min"] = 12, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1459321413", - ["text"] = "#% increased Bleeding Duration", - ["type"] = "explicit", - }, - }, + ["max"] = 16, + ["min"] = 12, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1459321413", + ["text"] = "#% increased Bleeding Duration", + ["type"] = "explicit", + }, + }, ["4994_BleedDamageAndDuration"] = { ["Ring"] = { - ["max"] = 10, - ["min"] = 5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1459321413", - ["text"] = "#% increased Bleeding Duration", - ["type"] = "explicit", - }, - }, + ["max"] = 10, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1459321413", + ["text"] = "#% increased Bleeding Duration", + ["type"] = "explicit", + }, + }, ["4994_BleedDuration"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1459321413", - ["text"] = "#% increased Bleeding Duration", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1459321413", + ["text"] = "#% increased Bleeding Duration", + ["type"] = "explicit", + }, + }, ["4994_FasterBleedDamageMaven"] = { ["Boots"] = { - ["max"] = 20, - ["min"] = 10, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1459321413", - ["text"] = "#% increased Bleeding Duration", - ["type"] = "explicit", - }, - }, + ["max"] = 20, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1459321413", + ["text"] = "#% increased Bleeding Duration", + ["type"] = "explicit", + }, + }, ["5005_GlobalCooldownRecovery"] = { ["AbyssJewel"] = { - ["max"] = 3, - ["min"] = 2, - }, + ["max"] = 3, + ["min"] = 2, + }, ["AnyJewel"] = { - ["max"] = 3, - ["min"] = 2, - }, + ["max"] = 3, + ["min"] = 2, + }, ["Belt"] = { - ["max"] = 20, - ["min"] = 6, - }, + ["max"] = 20, + ["min"] = 6, + }, ["Boots"] = { - ["max"] = 20, - ["min"] = 6, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1004011302", - ["text"] = "#% increased Cooldown Recovery Rate", - ["type"] = "explicit", - }, - }, + ["max"] = 20, + ["min"] = 6, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1004011302", + ["text"] = "#% increased Cooldown Recovery Rate", + ["type"] = "explicit", + }, + }, ["500_IncreasedCastSpeedFasterCasting"] = { ["1HMace"] = { - ["max"] = 20, - ["min"] = 18, - }, + ["max"] = 20, + ["min"] = 18, + }, ["1HWeapon"] = { - ["max"] = 20, - ["min"] = 18, - }, + ["max"] = 20, + ["min"] = 18, + }, ["Dagger"] = { - ["max"] = 20, - ["min"] = 18, - }, + ["max"] = 20, + ["min"] = 18, + }, ["Wand"] = { - ["max"] = 20, - ["min"] = 18, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2169938251", - ["text"] = "Socketed Gems are Supported by Level # Faster Casting", - ["type"] = "explicit", - }, - }, + ["max"] = 20, + ["min"] = 18, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.indexable_support_85", + ["text"] = "Socketed Gems are Supported by Level # Faster Casting", + ["type"] = "explicit", + }, + }, ["500_IncreasedCastSpeedSupported"] = { ["Gloves"] = { - ["max"] = 25, - ["min"] = 16, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2169938251", - ["text"] = "Socketed Gems are Supported by Level # Faster Casting", - ["type"] = "explicit", - }, - }, + ["max"] = 25, + ["min"] = 16, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.indexable_support_85", + ["text"] = "Socketed Gems are Supported by Level # Faster Casting", + ["type"] = "explicit", + }, + }, ["5014_ColdDamageESLeech"] = { ["Amulet"] = { - ["max"] = 0.4, - ["min"] = 0.2, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1939452467", - ["text"] = "#% of Cold Damage Leeched as Energy Shield", - ["type"] = "explicit", - }, - }, + ["max"] = 0.4, + ["min"] = 0.2, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1939452467", + ["text"] = "#% of Cold Damage Leeched as Energy Shield", + ["type"] = "explicit", + }, + }, ["5016_FireDamageESLeech"] = { ["Amulet"] = { - ["max"] = 0.4, - ["min"] = 0.2, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3885409671", - ["text"] = "#% of Fire Damage Leeched as Energy Shield", - ["type"] = "explicit", - }, - }, + ["max"] = 0.4, + ["min"] = 0.2, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3885409671", + ["text"] = "#% of Fire Damage Leeched as Energy Shield", + ["type"] = "explicit", + }, + }, ["5017_LightningDamageESLeech"] = { ["Amulet"] = { - ["max"] = 0.4, - ["min"] = 0.2, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_308127151", - ["text"] = "#% of Lightning Damage Leeched as Energy Shield", - ["type"] = "explicit", - }, - }, + ["max"] = 0.4, + ["min"] = 0.2, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_308127151", + ["text"] = "#% of Lightning Damage Leeched as Energy Shield", + ["type"] = "explicit", + }, + }, ["5020_BaseFrozenEffectOnSelf"] = { ["Helmet"] = { - ["max"] = -11, - ["min"] = -20, - }, - ["inverseKey"] = "reduced", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2069161757", - ["text"] = "#% increased Effect of Freeze on you", - ["type"] = "explicit", - }, - }, + ["max"] = -11, + ["min"] = -20, + }, + ["inverseKey"] = "reduced", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2069161757", + ["text"] = "#% increased Effect of Freeze on you", + ["type"] = "explicit", + }, + }, ["5026_ColdExposureOnHit"] = { ["1HMace"] = { - ["max"] = 20, - ["min"] = 11, - }, + ["max"] = 20, + ["min"] = 11, + }, ["1HWeapon"] = { - ["max"] = 20, - ["min"] = 11, - }, + ["max"] = 20, + ["min"] = 11, + }, ["2HWeapon"] = { - ["max"] = 20, - ["min"] = 11, - }, + ["max"] = 20, + ["min"] = 11, + }, ["Dagger"] = { - ["max"] = 20, - ["min"] = 11, - }, + ["max"] = 20, + ["min"] = 11, + }, ["Staff"] = { - ["max"] = 20, - ["min"] = 11, - }, + ["max"] = 20, + ["min"] = 11, + }, ["Wand"] = { - ["max"] = 20, - ["min"] = 11, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2630708439", - ["text"] = "#% chance to inflict Cold Exposure on Hit", - ["type"] = "explicit", - }, - }, + ["max"] = 20, + ["min"] = 11, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2630708439", + ["text"] = "#% chance to inflict Cold Exposure on Hit", + ["type"] = "explicit", + }, + }, ["5027_FireExposureOnHit"] = { ["1HMace"] = { - ["max"] = 20, - ["min"] = 11, - }, + ["max"] = 20, + ["min"] = 11, + }, ["1HWeapon"] = { - ["max"] = 20, - ["min"] = 11, - }, + ["max"] = 20, + ["min"] = 11, + }, ["2HWeapon"] = { - ["max"] = 20, - ["min"] = 11, - }, + ["max"] = 20, + ["min"] = 11, + }, ["Dagger"] = { - ["max"] = 20, - ["min"] = 11, - }, + ["max"] = 20, + ["min"] = 11, + }, ["Staff"] = { - ["max"] = 20, - ["min"] = 11, - }, + ["max"] = 20, + ["min"] = 11, + }, ["Wand"] = { - ["max"] = 20, - ["min"] = 11, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3602667353", - ["text"] = "#% chance to inflict Fire Exposure on Hit", - ["type"] = "explicit", - }, - }, + ["max"] = 20, + ["min"] = 11, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3602667353", + ["text"] = "#% chance to inflict Fire Exposure on Hit", + ["type"] = "explicit", + }, + }, ["5028_LightningExposureOnHit"] = { ["1HMace"] = { - ["max"] = 20, - ["min"] = 11, - }, + ["max"] = 20, + ["min"] = 11, + }, ["1HWeapon"] = { - ["max"] = 20, - ["min"] = 11, - }, + ["max"] = 20, + ["min"] = 11, + }, ["2HWeapon"] = { - ["max"] = 20, - ["min"] = 11, - }, + ["max"] = 20, + ["min"] = 11, + }, ["Dagger"] = { - ["max"] = 20, - ["min"] = 11, - }, + ["max"] = 20, + ["min"] = 11, + }, ["Staff"] = { - ["max"] = 20, - ["min"] = 11, - }, + ["max"] = 20, + ["min"] = 11, + }, ["Wand"] = { - ["max"] = 20, - ["min"] = 11, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4265906483", - ["text"] = "#% chance to inflict Lightning Exposure on Hit", - ["type"] = "explicit", - }, - }, + ["max"] = 20, + ["min"] = 11, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4265906483", + ["text"] = "#% chance to inflict Lightning Exposure on Hit", + ["type"] = "explicit", + }, + }, ["5032_MinionDuration"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_999511066", - ["text"] = "#% increased Minion Duration", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_999511066", + ["text"] = "#% increased Minion Duration", + ["type"] = "explicit", + }, + }, ["5041_PhysicalDamageOverTimeTaken"] = { ["AbyssJewel"] = { - ["max"] = 2, - ["min"] = 1, - }, + ["max"] = 2, + ["min"] = 1, + }, ["AnyJewel"] = { - ["max"] = 2, - ["min"] = 1, - }, + ["max"] = 2, + ["min"] = 1, + }, ["BaseJewel"] = { - ["max"] = 2, - ["min"] = 1, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_511024200", - ["text"] = "#% reduced Physical Damage taken over time", - ["type"] = "explicit", - }, - }, + ["max"] = 2, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_511024200", + ["text"] = "#% reduced Physical Damage taken over time", + ["type"] = "explicit", + }, + }, ["504_MinionLifeSupported"] = { ["Helmet"] = { - ["max"] = 25, - ["min"] = 16, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1337327984", - ["text"] = "Socketed Gems are Supported by Level # Minion Life", - ["type"] = "explicit", - }, - }, + ["max"] = 25, + ["min"] = 16, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.indexable_support_63", + ["text"] = "Socketed Gems are Supported by Level # Minion Life", + ["type"] = "explicit", + }, + }, ["5055_DesecratedGroundEffectEffectivenessMaven"] = { ["Boots"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1953432004", - ["text"] = "Unaffected by Poison", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1953432004", + ["text"] = "Unaffected by Poison", + ["type"] = "explicit", + }, + }, ["505_SupportedByLesserMultipleProjectilesDamage"] = { ["1HWeapon"] = { - ["max"] = 20, - ["min"] = 16, - }, + ["max"] = 20, + ["min"] = 16, + }, ["Wand"] = { - ["max"] = 20, - ["min"] = 16, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_584144941", - ["text"] = "Socketed Gems are Supported by Level # Multiple Projectiles", - ["type"] = "explicit", - }, - }, + ["max"] = 20, + ["min"] = 16, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.indexable_support_55", + ["text"] = "Socketed Gems are Supported by Level # Multiple Projectiles", + ["type"] = "explicit", + }, + }, ["506_MinionDamageSupported"] = { ["Helmet"] = { - ["max"] = 25, - ["min"] = 16, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_808939569", - ["text"] = "Socketed Gems are Supported by Level # Minion Damage", - ["type"] = "explicit", - }, - }, + ["max"] = 25, + ["min"] = 16, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.indexable_support_64", + ["text"] = "Socketed Gems are Supported by Level # Minion Damage", + ["type"] = "explicit", + }, + }, ["511_ChillEffectSupported"] = { ["Helmet"] = { - ["max"] = 25, - ["min"] = 16, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_13669281", - ["text"] = "Socketed Gems are Supported by Level # Hypothermia", - ["type"] = "explicit", - }, - }, + ["max"] = 25, + ["min"] = 16, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.indexable_support_74", + ["text"] = "Socketed Gems are Supported by Level # Hypothermia", + ["type"] = "explicit", + }, + }, ["513_ColdDamagePrefixColdPenetration"] = { ["1HWeapon"] = { - ["max"] = 20, - ["min"] = 16, - }, + ["max"] = 20, + ["min"] = 16, + }, ["Dagger"] = { - ["max"] = 20, - ["min"] = 16, - }, + ["max"] = 20, + ["min"] = 16, + }, ["Wand"] = { - ["max"] = 20, - ["min"] = 16, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1991958615", - ["text"] = "Socketed Gems are Supported by Level # Cold Penetration", - ["type"] = "explicit", - }, - }, + ["max"] = 20, + ["min"] = 16, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.indexable_support_100", + ["text"] = "Socketed Gems are Supported by Level # Cold Penetration", + ["type"] = "explicit", + }, + }, ["514_DisplaySupportedByManaLeech"] = { ["Gloves"] = { - ["max"] = 15, - ["min"] = 15, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2608615082", - ["text"] = "Socketed Gems are Supported by Level # Mana Leech", - ["type"] = "explicit", - }, - }, + ["max"] = 15, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.indexable_support_49", + ["text"] = "Socketed Gems are Supported by Level # Mana Leech", + ["type"] = "explicit", + }, + }, ["514_DisplaySupportedByManaLeechMaven"] = { ["Gloves"] = { - ["max"] = 20, - ["min"] = 20, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2608615082", - ["text"] = "Socketed Gems are Supported by Level # Mana Leech", - ["type"] = "explicit", - }, - }, + ["max"] = 20, + ["min"] = 20, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.indexable_support_49", + ["text"] = "Socketed Gems are Supported by Level # Mana Leech", + ["type"] = "explicit", + }, + }, ["5216_OnHitBlindChilledEnemies"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_3450276548", - ["text"] = "Blind Chilled Enemies on Hit", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_3450276548", + ["text"] = "Blind Chilled Enemies on Hit", + ["type"] = "explicit", + }, + }, ["521_ShockEffectSupported"] = { ["Helmet"] = { - ["max"] = 25, - ["min"] = 16, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1106668565", - ["text"] = "Socketed Gems are Supported by Level # Innervate", - ["type"] = "explicit", - }, - }, + ["max"] = 25, + ["min"] = 16, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.indexable_support_60", + ["text"] = "Socketed Gems are Supported by Level # Innervate", + ["type"] = "explicit", + }, + }, ["5223_ClonesInheritGloves"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_3148879215", - ["text"] = "Your Blink and Mirror arrow clones use your Gloves", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_3148879215", + ["text"] = "Your Blink and Mirror arrow clones use your Gloves", + ["type"] = "explicit", + }, + }, ["5230_AttackBlockIfBlockedAttackRecently"] = { ["Shield"] = { - ["max"] = 8, - ["min"] = 5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3789765926", - ["text"] = "+#% Chance to Block Attack Damage if you have Blocked Attack Damage Recently", - ["type"] = "explicit", - }, - }, + ["max"] = 8, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3789765926", + ["text"] = "+#% Chance to Block Attack Damage if you have Blocked Attack Damage Recently", + ["type"] = "explicit", + }, + }, ["523_ChanceToPoisonSupported"] = { ["1HAxe"] = { - ["max"] = 20, - ["min"] = 18, - }, + ["max"] = 20, + ["min"] = 18, + }, ["1HMace"] = { - ["max"] = 20, - ["min"] = 18, - }, + ["max"] = 20, + ["min"] = 18, + }, ["1HSword"] = { - ["max"] = 20, - ["min"] = 18, - }, + ["max"] = 20, + ["min"] = 18, + }, ["1HWeapon"] = { - ["max"] = 20, - ["min"] = 18, - }, + ["max"] = 20, + ["min"] = 18, + }, ["2HAxe"] = { - ["max"] = 20, - ["min"] = 18, - }, + ["max"] = 20, + ["min"] = 18, + }, ["2HMace"] = { - ["max"] = 20, - ["min"] = 18, - }, + ["max"] = 20, + ["min"] = 18, + }, ["2HSword"] = { - ["max"] = 20, - ["min"] = 18, - }, + ["max"] = 20, + ["min"] = 18, + }, ["2HWeapon"] = { - ["max"] = 20, - ["min"] = 18, - }, + ["max"] = 20, + ["min"] = 18, + }, ["Claw"] = { - ["max"] = 20, - ["min"] = 18, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_228165595", - ["text"] = "Socketed Gems are Supported by Level # Chance to Poison", - ["type"] = "explicit", - }, - }, + ["max"] = 20, + ["min"] = 18, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.indexable_support_54", + ["text"] = "Socketed Gems are Supported by Level # Chance to Poison", + ["type"] = "explicit", + }, + }, ["523_PoisonDamageSupported"] = { ["Gloves"] = { - ["max"] = 25, - ["min"] = 16, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_228165595", - ["text"] = "Socketed Gems are Supported by Level # Chance to Poison", - ["type"] = "explicit", - }, - }, + ["max"] = 25, + ["min"] = 16, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.indexable_support_54", + ["text"] = "Socketed Gems are Supported by Level # Chance to Poison", + ["type"] = "explicit", + }, + }, ["523_PoisonDamageWeaponSupported"] = { ["1HWeapon"] = { - ["max"] = 20, - ["min"] = 18, - }, + ["max"] = 20, + ["min"] = 18, + }, ["Dagger"] = { - ["max"] = 20, - ["min"] = 18, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_228165595", - ["text"] = "Socketed Gems are Supported by Level # Chance to Poison", - ["type"] = "explicit", - }, - }, + ["max"] = 20, + ["min"] = 18, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.indexable_support_54", + ["text"] = "Socketed Gems are Supported by Level # Chance to Poison", + ["type"] = "explicit", + }, + }, ["523_PoisonDurationSupported"] = { ["Gloves"] = { - ["max"] = 25, - ["min"] = 25, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_228165595", - ["text"] = "Socketed Gems are Supported by Level # Chance to Poison", - ["type"] = "explicit", - }, - }, + ["max"] = 25, + ["min"] = 25, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.indexable_support_54", + ["text"] = "Socketed Gems are Supported by Level # Chance to Poison", + ["type"] = "explicit", + }, + }, ["525_WeaponSpellDamageControlledDestruction"] = { ["1HMace"] = { - ["max"] = 20, - ["min"] = 16, - }, + ["max"] = 20, + ["min"] = 16, + }, ["1HWeapon"] = { - ["max"] = 20, - ["min"] = 16, - }, + ["max"] = 20, + ["min"] = 16, + }, ["Dagger"] = { - ["max"] = 20, - ["min"] = 16, - }, + ["max"] = 20, + ["min"] = 16, + }, ["Wand"] = { - ["max"] = 20, - ["min"] = 16, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3718597497", - ["text"] = "Socketed Gems are Supported by Level # Controlled Destruction", - ["type"] = "explicit", - }, - }, + ["max"] = 20, + ["min"] = 16, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.indexable_support_97", + ["text"] = "Socketed Gems are Supported by Level # Controlled Destruction", + ["type"] = "explicit", + }, + }, ["526_LocalPhysicalDamagePercentEnduranceChargeOnStun"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_3375208082", - ["text"] = "Socketed Gems are Supported by Level # Endurance Charge on Melee Stun", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.indexable_support_88", + ["text"] = "Socketed Gems are Supported by Level # Endurance Charge on Melee Stun", + ["type"] = "explicit", + }, + }, ["526_SupportedByEnduranceChargeOnStunWeapon"] = { ["2HAxe"] = { - ["max"] = 10, - ["min"] = 10, - }, + ["max"] = 10, + ["min"] = 10, + }, ["2HMace"] = { - ["max"] = 10, - ["min"] = 10, - }, + ["max"] = 10, + ["min"] = 10, + }, ["2HSword"] = { - ["max"] = 10, - ["min"] = 10, - }, + ["max"] = 10, + ["min"] = 10, + }, ["2HWeapon"] = { - ["max"] = 10, - ["min"] = 10, - }, + ["max"] = 10, + ["min"] = 10, + }, ["Staff"] = { - ["max"] = 10, - ["min"] = 10, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3375208082", - ["text"] = "Socketed Gems are Supported by Level # Endurance Charge on Melee Stun", - ["type"] = "explicit", - }, - }, + ["max"] = 10, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.indexable_support_88", + ["text"] = "Socketed Gems are Supported by Level # Endurance Charge on Melee Stun", + ["type"] = "explicit", + }, + }, ["528_DisplaySocketedGemsGetReducedReservation"] = { ["Shield"] = { - ["max"] = 30, - ["min"] = 20, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3289633055", - ["text"] = "Socketed Gems have #% increased Reservation Efficiency", - ["type"] = "explicit", - }, - }, + ["max"] = 30, + ["min"] = 20, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3289633055", + ["text"] = "Socketed Gems have #% increased Reservation Efficiency", + ["type"] = "explicit", + }, + }, ["534_DisplaySupportedSkillsHaveAChanceToIgnite"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_3984519770", - ["text"] = "Socketed Gems have #% chance to Ignite", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_3984519770", + ["text"] = "Socketed Gems have #% chance to Ignite", + ["type"] = "explicit", + }, + }, ["5396_CannotBeChilledOrFrozenWhileMoving"] = { ["Amulet"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_628032624", - ["text"] = "Cannot be Chilled or Frozen while moving", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_628032624", + ["text"] = "Cannot be Chilled or Frozen while moving", + ["type"] = "explicit", + }, + }, ["5408_CorruptedBloodImmunity"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1658498488", - ["text"] = "Corrupted Blood cannot be inflicted on you", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1658498488", + ["text"] = "Corrupted Blood cannot be inflicted on you", + ["type"] = "explicit", + }, + }, ["540_DisplaySocketedSkillsChain"] = { ["2HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Bow"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2788729902", - ["text"] = "Socketed Gems Chain # additional times", - ["type"] = "explicit", - }, - }, + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2788729902", + ["text"] = "Socketed Gems Chain # additional times", + ["type"] = "explicit", + }, + }, ["5412_CannotBeShockedOrIgnitedWhileMoving"] = { ["Ring"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_3592330380", - ["text"] = "Cannot be Shocked or Ignited while moving", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_3592330380", + ["text"] = "Cannot be Shocked or Ignited while moving", + ["type"] = "explicit", + }, + }, ["541_SocketedSkillsCriticalChance"] = { ["Gloves"] = { - ["max"] = 3.5, - ["min"] = 3.5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1681904129", - ["text"] = "Socketed Gems have +#% Critical Strike Chance", - ["type"] = "explicit", - }, - }, + ["max"] = 3.5, + ["min"] = 3.5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1681904129", + ["text"] = "Socketed Gems have +#% Critical Strike Chance", + ["type"] = "explicit", + }, + }, ["5465_MinionSkillCastSpeed"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1516375869", - ["text"] = "#% increased Cast Speed with Minion Skills", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1516375869", + ["text"] = "#% increased Cast Speed with Minion Skills", + ["type"] = "explicit", + }, + }, ["5466_CastSpeedDuringFlaskEffect"] = { ["Belt"] = { - ["max"] = 14, - ["min"] = 8, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_252194507", - ["text"] = "#% increased Cast Speed during any Flask Effect", - ["type"] = "explicit", - }, - }, + ["max"] = 14, + ["min"] = 8, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_252194507", + ["text"] = "#% increased Cast Speed during any Flask Effect", + ["type"] = "explicit", + }, + }, ["5467_CastSpeedIfEnemyKilledRecently"] = { ["1HMace"] = { - ["max"] = 20, - ["min"] = 13, - }, + ["max"] = 20, + ["min"] = 13, + }, ["1HWeapon"] = { - ["max"] = 20, - ["min"] = 13, - }, + ["max"] = 20, + ["min"] = 13, + }, ["2HWeapon"] = { - ["max"] = 30, - ["min"] = 23, - }, + ["max"] = 30, + ["min"] = 23, + }, ["Dagger"] = { - ["max"] = 20, - ["min"] = 13, - }, + ["max"] = 20, + ["min"] = 13, + }, ["Staff"] = { - ["max"] = 30, - ["min"] = 23, - }, + ["max"] = 30, + ["min"] = 23, + }, ["Wand"] = { - ["max"] = 20, - ["min"] = 13, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2072625596", - ["text"] = "#% increased Cast Speed if you've Killed Recently", - ["type"] = "explicit", - }, - }, + ["max"] = 20, + ["min"] = 13, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2072625596", + ["text"] = "#% increased Cast Speed if you've Killed Recently", + ["type"] = "explicit", + }, + }, ["5467_IncreasedCastSpeedTwoHandedKilledRecently"] = { ["2HWeapon"] = { - ["max"] = 20, - ["min"] = 20, - }, + ["max"] = 20, + ["min"] = 20, + }, ["Staff"] = { - ["max"] = 20, - ["min"] = 20, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2072625596", - ["text"] = "#% increased Cast Speed if you've Killed Recently", - ["type"] = "explicit", - }, - }, + ["max"] = 20, + ["min"] = 20, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2072625596", + ["text"] = "#% increased Cast Speed if you've Killed Recently", + ["type"] = "explicit", + }, + }, ["5468_CastSpeedIfCriticalStrikeDealtRecently"] = { ["AbyssJewel"] = { - ["max"] = 7, - ["min"] = 5, - }, + ["max"] = 7, + ["min"] = 5, + }, ["AnyJewel"] = { - ["max"] = 7, - ["min"] = 5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1174076861", - ["text"] = "#% increased Cast Speed if you've dealt a Critical Strike Recently", - ["type"] = "explicit", - }, - }, + ["max"] = 7, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1174076861", + ["text"] = "#% increased Cast Speed if you've dealt a Critical Strike Recently", + ["type"] = "explicit", + }, + }, ["5469_CastSpeedIfMinionKilledRecently"] = { ["AbyssJewel"] = { - ["max"] = 10, - ["min"] = 7, - }, + ["max"] = 10, + ["min"] = 7, + }, ["AnyJewel"] = { - ["max"] = 10, - ["min"] = 7, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3110907148", - ["text"] = "#% increased Cast Speed if a Minion has been Killed Recently", - ["type"] = "explicit", - }, - }, + ["max"] = 10, + ["min"] = 7, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3110907148", + ["text"] = "#% increased Cast Speed if a Minion has been Killed Recently", + ["type"] = "explicit", + }, + }, ["546_SocketedAttacksDamageFinal"] = { ["1HAxe"] = { - ["max"] = 40, - ["min"] = 40, - }, + ["max"] = 40, + ["min"] = 40, + }, ["1HMace"] = { - ["max"] = 40, - ["min"] = 40, - }, + ["max"] = 40, + ["min"] = 40, + }, ["1HSword"] = { - ["max"] = 40, - ["min"] = 40, - }, + ["max"] = 40, + ["min"] = 40, + }, ["1HWeapon"] = { - ["max"] = 40, - ["min"] = 40, - }, + ["max"] = 40, + ["min"] = 40, + }, ["2HAxe"] = { - ["max"] = 40, - ["min"] = 20, - }, + ["max"] = 40, + ["min"] = 20, + }, ["2HMace"] = { - ["max"] = 40, - ["min"] = 20, - }, + ["max"] = 40, + ["min"] = 20, + }, ["2HSword"] = { - ["max"] = 40, - ["min"] = 20, - }, + ["max"] = 40, + ["min"] = 20, + }, ["2HWeapon"] = { - ["max"] = 40, - ["min"] = 20, - }, + ["max"] = 40, + ["min"] = 20, + }, ["Bow"] = { - ["max"] = 20, - ["min"] = 20, - }, + ["max"] = 20, + ["min"] = 20, + }, ["Claw"] = { - ["max"] = 40, - ["min"] = 40, - }, + ["max"] = 40, + ["min"] = 40, + }, ["Dagger"] = { - ["max"] = 40, - ["min"] = 40, - }, + ["max"] = 40, + ["min"] = 40, + }, ["Staff"] = { - ["max"] = 20, - ["min"] = 20, - }, + ["max"] = 20, + ["min"] = 20, + }, ["Wand"] = { - ["max"] = 40, - ["min"] = 40, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1970781345", - ["text"] = "Socketed Skills deal #% more Attack Damage", - ["type"] = "explicit", - }, - }, + ["max"] = 40, + ["min"] = 40, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1970781345", + ["text"] = "Socketed Skills deal #% more Attack Damage", + ["type"] = "explicit", + }, + }, ["547_SocketedAttackCriticalStrikeChance"] = { ["Helmet"] = { - ["max"] = 4, - ["min"] = 1, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2867348718", - ["text"] = "Socketed Attacks have +#% to Critical Strike Chance", - ["type"] = "explicit", - }, - }, + ["max"] = 4, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2867348718", + ["text"] = "Socketed Attacks have +#% to Critical Strike Chance", + ["type"] = "explicit", + }, + }, ["548_SocketedAttackCriticalMultiplier"] = { ["Gloves"] = { - ["max"] = 90, - ["min"] = 30, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_356456977", - ["text"] = "Socketed Attacks have +#% to Critical Strike Multiplier", - ["type"] = "explicit", - }, - }, + ["max"] = 90, + ["min"] = 30, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_356456977", + ["text"] = "Socketed Attacks have +#% to Critical Strike Multiplier", + ["type"] = "explicit", + }, + }, ["549_SocketedAttacksManaCost"] = { ["Boots"] = { - ["max"] = 15, - ["min"] = 15, - }, + ["max"] = 15, + ["min"] = 15, + }, ["Chest"] = { - ["max"] = 15, - ["min"] = 15, - }, + ["max"] = 15, + ["min"] = 15, + }, ["Helmet"] = { - ["max"] = 15, - ["min"] = 15, - }, + ["max"] = 15, + ["min"] = 15, + }, ["Shield"] = { - ["max"] = 15, - ["min"] = 15, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2264586521", - ["text"] = "Socketed Attacks have +# to Total Mana Cost", - ["type"] = "explicit", - }, - }, + ["max"] = 15, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2264586521", + ["text"] = "Socketed Attacks have +# to Total Mana Cost", + ["type"] = "explicit", + }, + }, ["549_SocketedAttacksManaCostMaven"] = { ["Chest"] = { - ["max"] = 20, - ["min"] = 20, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2264586521", - ["text"] = "Socketed Attacks have +# to Total Mana Cost", - ["type"] = "explicit", - }, - }, + ["max"] = 20, + ["min"] = 20, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2264586521", + ["text"] = "Socketed Attacks have +# to Total Mana Cost", + ["type"] = "explicit", + }, + }, ["550_SocketedGemsHaveMoreAttackAndCastSpeed"] = { ["Gloves"] = { - ["max"] = 16, - ["min"] = 16, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_346351023", - ["text"] = "Socketed Gems have #% more Attack and Cast Speed", - ["type"] = "explicit", - }, - }, + ["max"] = 16, + ["min"] = 16, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_346351023", + ["text"] = "Socketed Gems have #% more Attack and Cast Speed", + ["type"] = "explicit", + }, + }, ["552_DisplaySupportedSkillsDealDamageOnLowLife"] = { ["Helmet"] = { - ["max"] = 30, - ["min"] = 30, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1235873320", - ["text"] = "Socketed Gems deal #% more Damage while on Low Life", - ["type"] = "explicit", - }, - }, + ["max"] = 30, + ["min"] = 30, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1235873320", + ["text"] = "Socketed Gems deal #% more Damage while on Low Life", + ["type"] = "explicit", + }, + }, ["553_SocketedGemsDealMoreElementalDamage"] = { ["Helmet"] = { - ["max"] = 30, - ["min"] = 30, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3835899275", - ["text"] = "Socketed Gems deal #% more Elemental Damage", - ["type"] = "explicit", - }, - }, + ["max"] = 30, + ["min"] = 30, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3835899275", + ["text"] = "Socketed Gems deal #% more Elemental Damage", + ["type"] = "explicit", + }, + }, ["556_SocketedGemsDealAdditionalFireDamage"] = { ["Gloves"] = { - ["max"] = 200, - ["min"] = 200, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1289910726", - ["text"] = "Socketed Gems deal # to # Added Fire Damage", - ["type"] = "explicit", - }, - }, + ["max"] = 200, + ["min"] = 200, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1289910726", + ["text"] = "Socketed Gems deal # to # Added Fire Damage", + ["type"] = "explicit", + }, + }, ["557_SocketedGemsAddPercentageOfPhysicalAsLightning"] = { ["Helmet"] = { - ["max"] = 50, - ["min"] = 50, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1859937391", - ["text"] = "Socketed Gems gain #% of Physical Damage as extra Lightning Damage", - ["type"] = "explicit", - }, - }, + ["max"] = 50, + ["min"] = 50, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1859937391", + ["text"] = "Socketed Gems gain #% of Physical Damage as extra Lightning Damage", + ["type"] = "explicit", + }, + }, ["560_DisplayMovementSkillsCostNoMana"] = { ["1HSword"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["1HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["2HSword"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["2HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_3263216405", - ["text"] = "Socketed Movement Skills Cost no Mana", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_3263216405", + ["text"] = "Socketed Movement Skills Cost no Mana", + ["type"] = "explicit", + }, + }, ["561_SocketedSkillsAttackSpeed"] = { ["Gloves"] = { - ["max"] = 18, - ["min"] = 18, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2881124988", - ["text"] = "Socketed Skills have #% increased Attack Speed", - ["type"] = "explicit", - }, - }, + ["max"] = 18, + ["min"] = 18, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2881124988", + ["text"] = "Socketed Skills have #% increased Attack Speed", + ["type"] = "explicit", + }, + }, ["562_SocketedSkillsCastSpeed"] = { ["Gloves"] = { - ["max"] = 18, - ["min"] = 18, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3425934849", - ["text"] = "Socketed Skills have #% increased Cast Speed", - ["type"] = "explicit", - }, - }, + ["max"] = 18, + ["min"] = 18, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3425934849", + ["text"] = "Socketed Skills have #% increased Cast Speed", + ["type"] = "explicit", + }, + }, ["564_DisplaySocketedSkillsFork"] = { ["2HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Bow"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1519665289", - ["text"] = "Projectiles from Socketed Gems Fork", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1519665289", + ["text"] = "Projectiles from Socketed Gems Fork", + ["type"] = "explicit", + }, + }, ["5651_SpellBlockChanceIfHitRecently"] = { ["2HWeapon"] = { - ["max"] = 15, - ["min"] = 10, - }, + ["max"] = 15, + ["min"] = 10, + }, ["AbyssJewel"] = { - ["max"] = 4, - ["min"] = 2, - }, + ["max"] = 4, + ["min"] = 2, + }, ["AnyJewel"] = { - ["max"] = 4, - ["min"] = 2, - }, + ["max"] = 4, + ["min"] = 2, + }, ["Staff"] = { - ["max"] = 15, - ["min"] = 10, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1101206134", - ["text"] = "+#% Chance to Block Spell Damage if you were Damaged by a Hit Recently", - ["type"] = "explicit", - }, - }, + ["max"] = 15, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1101206134", + ["text"] = "+#% Chance to Block Spell Damage if you were Damaged by a Hit Recently", + ["type"] = "explicit", + }, + }, ["5655_CrushOnHitChance"] = { ["Amulet"] = { - ["max"] = 25, - ["min"] = 15, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2228892313", - ["text"] = "#% chance to Crush on Hit", - ["type"] = "explicit", - }, - }, + ["max"] = 25, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2228892313", + ["text"] = "#% chance to Crush on Hit", + ["type"] = "explicit", + }, + }, ["5659_AttackSpeedDoubleDamage"] = { ["2HAxe"] = { - ["max"] = 6, - ["min"] = 4, - }, + ["max"] = 6, + ["min"] = 4, + }, ["2HMace"] = { - ["max"] = 6, - ["min"] = 4, - }, + ["max"] = 6, + ["min"] = 4, + }, ["2HSword"] = { - ["max"] = 6, - ["min"] = 4, - }, + ["max"] = 6, + ["min"] = 4, + }, ["2HWeapon"] = { - ["max"] = 6, - ["min"] = 4, - }, + ["max"] = 6, + ["min"] = 4, + }, ["Bow"] = { - ["max"] = 6, - ["min"] = 4, - }, + ["max"] = 6, + ["min"] = 4, + }, ["Staff"] = { - ["max"] = 6, - ["min"] = 4, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1172810729", - ["text"] = "#% chance to deal Double Damage", - ["type"] = "explicit", - }, - }, + ["max"] = 6, + ["min"] = 4, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1172810729", + ["text"] = "#% chance to deal Double Damage", + ["type"] = "explicit", + }, + }, ["5659_DoubleDamageChance"] = { ["1HAxe"] = { - ["max"] = 7, - ["min"] = 3, - }, + ["max"] = 7, + ["min"] = 3, + }, ["1HMace"] = { - ["max"] = 7, - ["min"] = 3, - }, + ["max"] = 7, + ["min"] = 3, + }, ["1HSword"] = { - ["max"] = 7, - ["min"] = 3, - }, + ["max"] = 7, + ["min"] = 3, + }, ["1HWeapon"] = { - ["max"] = 7, - ["min"] = 3, - }, + ["max"] = 7, + ["min"] = 3, + }, ["2HAxe"] = { - ["max"] = 14, - ["min"] = 6, - }, + ["max"] = 14, + ["min"] = 6, + }, ["2HMace"] = { - ["max"] = 14, - ["min"] = 6, - }, + ["max"] = 14, + ["min"] = 6, + }, ["2HSword"] = { - ["max"] = 14, - ["min"] = 6, - }, + ["max"] = 14, + ["min"] = 6, + }, ["2HWeapon"] = { - ["max"] = 14, - ["min"] = 6, - }, + ["max"] = 14, + ["min"] = 6, + }, ["Bow"] = { - ["max"] = 14, - ["min"] = 6, - }, + ["max"] = 14, + ["min"] = 6, + }, ["Claw"] = { - ["max"] = 7, - ["min"] = 3, - }, + ["max"] = 7, + ["min"] = 3, + }, ["Dagger"] = { - ["max"] = 7, - ["min"] = 3, - }, + ["max"] = 7, + ["min"] = 3, + }, ["Shield"] = { - ["max"] = 7, - ["min"] = 3, - }, + ["max"] = 7, + ["min"] = 3, + }, ["Staff"] = { - ["max"] = 14, - ["min"] = 6, - }, + ["max"] = 14, + ["min"] = 6, + }, ["Wand"] = { - ["max"] = 7, - ["min"] = 3, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1172810729", - ["text"] = "#% chance to deal Double Damage", - ["type"] = "explicit", - }, - }, + ["max"] = 7, + ["min"] = 3, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1172810729", + ["text"] = "#% chance to deal Double Damage", + ["type"] = "explicit", + }, + }, ["565_SocketedSpellsDamageFinal"] = { ["1HAxe"] = { - ["max"] = 40, - ["min"] = 40, - }, + ["max"] = 40, + ["min"] = 40, + }, ["1HMace"] = { - ["max"] = 40, - ["min"] = 40, - }, + ["max"] = 40, + ["min"] = 40, + }, ["1HSword"] = { - ["max"] = 40, - ["min"] = 40, - }, + ["max"] = 40, + ["min"] = 40, + }, ["1HWeapon"] = { - ["max"] = 40, - ["min"] = 40, - }, + ["max"] = 40, + ["min"] = 40, + }, ["2HAxe"] = { - ["max"] = 20, - ["min"] = 20, - }, + ["max"] = 20, + ["min"] = 20, + }, ["2HMace"] = { - ["max"] = 20, - ["min"] = 20, - }, + ["max"] = 20, + ["min"] = 20, + }, ["2HSword"] = { - ["max"] = 20, - ["min"] = 20, - }, + ["max"] = 20, + ["min"] = 20, + }, ["2HWeapon"] = { - ["max"] = 20, - ["min"] = 20, - }, + ["max"] = 20, + ["min"] = 20, + }, ["Bow"] = { - ["max"] = 20, - ["min"] = 20, - }, + ["max"] = 20, + ["min"] = 20, + }, ["Claw"] = { - ["max"] = 40, - ["min"] = 40, - }, + ["max"] = 40, + ["min"] = 40, + }, ["Dagger"] = { - ["max"] = 40, - ["min"] = 40, - }, + ["max"] = 40, + ["min"] = 40, + }, ["Staff"] = { - ["max"] = 20, - ["min"] = 20, - }, + ["max"] = 20, + ["min"] = 20, + }, ["Wand"] = { - ["max"] = 40, - ["min"] = 40, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2964800094", - ["text"] = "Socketed Skills deal #% more Spell Damage", - ["type"] = "explicit", - }, - }, + ["max"] = 40, + ["min"] = 40, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2964800094", + ["text"] = "Socketed Skills deal #% more Spell Damage", + ["type"] = "explicit", + }, + }, ["5661_DoubleDamageStunnedRecently"] = { ["Amulet"] = { - ["max"] = 10, - ["min"] = 5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4224978303", - ["text"] = "#% chance to deal Double Damage if you have Stunned an Enemy Recently", - ["type"] = "explicit", - }, - }, + ["max"] = 10, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4224978303", + ["text"] = "#% chance to deal Double Damage if you have Stunned an Enemy Recently", + ["type"] = "explicit", + }, + }, ["5666_ChanceToDealDoubleDamageWhileFocused"] = { ["1HAxe"] = { - ["max"] = 20, - ["min"] = 7, - }, + ["max"] = 20, + ["min"] = 7, + }, ["1HMace"] = { - ["max"] = 20, - ["min"] = 7, - }, + ["max"] = 20, + ["min"] = 7, + }, ["1HSword"] = { - ["max"] = 20, - ["min"] = 7, - }, + ["max"] = 20, + ["min"] = 7, + }, ["1HWeapon"] = { - ["max"] = 20, - ["min"] = 7, - }, + ["max"] = 20, + ["min"] = 7, + }, ["2HAxe"] = { - ["max"] = 40, - ["min"] = 16, - }, + ["max"] = 40, + ["min"] = 16, + }, ["2HMace"] = { - ["max"] = 40, - ["min"] = 16, - }, + ["max"] = 40, + ["min"] = 16, + }, ["2HSword"] = { - ["max"] = 40, - ["min"] = 16, - }, + ["max"] = 40, + ["min"] = 16, + }, ["2HWeapon"] = { - ["max"] = 40, - ["min"] = 16, - }, + ["max"] = 40, + ["min"] = 16, + }, ["Bow"] = { - ["max"] = 40, - ["min"] = 16, - }, + ["max"] = 40, + ["min"] = 16, + }, ["Claw"] = { - ["max"] = 20, - ["min"] = 7, - }, + ["max"] = 20, + ["min"] = 7, + }, ["Dagger"] = { - ["max"] = 20, - ["min"] = 7, - }, + ["max"] = 20, + ["min"] = 7, + }, ["Shield"] = { - ["max"] = 20, - ["min"] = 7, - }, + ["max"] = 20, + ["min"] = 7, + }, ["Staff"] = { - ["max"] = 40, - ["min"] = 16, - }, + ["max"] = 40, + ["min"] = 16, + }, ["Wand"] = { - ["max"] = 20, - ["min"] = 7, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2908886986", - ["text"] = "#% chance to deal Double Damage while Focused", - ["type"] = "explicit", - }, - }, + ["max"] = 20, + ["min"] = 7, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2908886986", + ["text"] = "#% chance to deal Double Damage while Focused", + ["type"] = "explicit", + }, + }, ["566_SocketedSpellCriticalStrikeChance"] = { ["Helmet"] = { - ["max"] = 4, - ["min"] = 1, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_135378852", - ["text"] = "Socketed Spells have +#% to Critical Strike Chance", - ["type"] = "explicit", - }, - }, + ["max"] = 4, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_135378852", + ["text"] = "Socketed Spells have +#% to Critical Strike Chance", + ["type"] = "explicit", + }, + }, ["5671_ChanceWhenHitForArmourToBeDoubled"] = { ["Amulet"] = { - ["max"] = 20, - ["min"] = 20, - }, + ["max"] = 20, + ["min"] = 20, + }, ["Belt"] = { - ["max"] = 30, - ["min"] = 11, - }, + ["max"] = 30, + ["min"] = 11, + }, ["Boots"] = { - ["max"] = 20, - ["min"] = 10, - }, + ["max"] = 20, + ["min"] = 10, + }, ["Chest"] = { - ["max"] = 20, - ["min"] = 10, - }, + ["max"] = 20, + ["min"] = 10, + }, ["Gloves"] = { - ["max"] = 20, - ["min"] = 10, - }, + ["max"] = 20, + ["min"] = 10, + }, ["Helmet"] = { - ["max"] = 20, - ["min"] = 10, - }, + ["max"] = 20, + ["min"] = 10, + }, ["Ring"] = { - ["max"] = 20, - ["min"] = 20, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_327253797", - ["text"] = "#% chance to Defend with 200% of Armour", - ["type"] = "explicit", - }, - }, + ["max"] = 20, + ["min"] = 20, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_327253797", + ["text"] = "#% chance to Defend with 200% of Armour", + ["type"] = "explicit", + }, + }, ["5673_AdditionalChanceToEvade"] = { ["Amulet"] = { - ["max"] = 2, - ["min"] = 1, - }, + ["max"] = 2, + ["min"] = 1, + }, ["Belt"] = { - ["max"] = 2, - ["min"] = 1, - }, + ["max"] = 2, + ["min"] = 1, + }, ["Quiver"] = { - ["max"] = 2, - ["min"] = 1, - }, + ["max"] = 2, + ["min"] = 1, + }, ["Ring"] = { - ["max"] = 2, - ["min"] = 1, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2021058489", - ["text"] = "+#% chance to Evade Attack Hits", - ["type"] = "explicit", - }, - }, + ["max"] = 2, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2021058489", + ["text"] = "+#% chance to Evade Attack Hits", + ["type"] = "explicit", + }, + }, ["5673_AdditionalChanceToEvadeMaven"] = { ["Gloves"] = { - ["max"] = 4, - ["min"] = 2, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2021058489", - ["text"] = "+#% chance to Evade Attack Hits", - ["type"] = "explicit", - }, - }, + ["max"] = 4, + ["min"] = 2, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2021058489", + ["text"] = "+#% chance to Evade Attack Hits", + ["type"] = "explicit", + }, + }, ["5678_FortifyOnMeleeStun"] = { ["Belt"] = { - ["max"] = 12, - ["min"] = 8, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3206381437", - ["text"] = "Melee Hits which Stun have #% chance to Fortify", - ["type"] = "explicit", - }, - }, + ["max"] = 12, + ["min"] = 8, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3206381437", + ["text"] = "Melee Hits which Stun have #% chance to Fortify", + ["type"] = "explicit", + }, + }, ["5678_GainFortifyOnStunChance"] = { ["1HMace"] = { - ["max"] = 20, - ["min"] = 10, - }, + ["max"] = 20, + ["min"] = 10, + }, ["1HWeapon"] = { - ["max"] = 20, - ["min"] = 10, - }, + ["max"] = 20, + ["min"] = 10, + }, ["2HMace"] = { - ["max"] = 20, - ["min"] = 10, - }, + ["max"] = 20, + ["min"] = 10, + }, ["2HWeapon"] = { - ["max"] = 20, - ["min"] = 10, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3206381437", - ["text"] = "Melee Hits which Stun have #% chance to Fortify", - ["type"] = "explicit", - }, - }, + ["max"] = 20, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3206381437", + ["text"] = "Melee Hits which Stun have #% chance to Fortify", + ["type"] = "explicit", + }, + }, ["567_SocketedSpellCriticalMultiplier"] = { ["Gloves"] = { - ["max"] = 90, - ["min"] = 30, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2828710986", - ["text"] = "Socketed Spells have +#% to Critical Strike Multiplier", - ["type"] = "explicit", - }, - }, + ["max"] = 90, + ["min"] = 30, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2828710986", + ["text"] = "Socketed Spells have +#% to Critical Strike Multiplier", + ["type"] = "explicit", + }, + }, ["5686_GainEnduranceChargeOnHittingBleedingEnemy"] = { ["1HAxe"] = { - ["max"] = 10, - ["min"] = 5, - }, + ["max"] = 10, + ["min"] = 5, + }, ["1HWeapon"] = { - ["max"] = 10, - ["min"] = 5, - }, + ["max"] = 10, + ["min"] = 5, + }, ["2HAxe"] = { - ["max"] = 10, - ["min"] = 5, - }, + ["max"] = 10, + ["min"] = 5, + }, ["2HWeapon"] = { - ["max"] = 10, - ["min"] = 5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1536266147", - ["text"] = "#% chance to gain an Endurance Charge when you Hit a Bleeding Enemy", - ["type"] = "explicit", - }, - }, + ["max"] = 10, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1536266147", + ["text"] = "#% chance to gain an Endurance Charge when you Hit a Bleeding Enemy", + ["type"] = "explicit", + }, + }, ["5688_GainEnduranceChargeOnTauntingEnemies"] = { ["2HAxe"] = { - ["max"] = 30, - ["min"] = 15, - }, + ["max"] = 30, + ["min"] = 15, + }, ["2HWeapon"] = { - ["max"] = 30, - ["min"] = 15, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1657549833", - ["text"] = "#% chance to gain an Endurance Charge when you Taunt an Enemy", - ["type"] = "explicit", - }, - }, + ["max"] = 30, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1657549833", + ["text"] = "#% chance to gain an Endurance Charge when you Taunt an Enemy", + ["type"] = "explicit", + }, + }, ["568_SocketedSpellsManaCost"] = { ["Boots"] = { - ["max"] = 20, - ["min"] = 20, - }, + ["max"] = 20, + ["min"] = 20, + }, ["Helmet"] = { - ["max"] = 20, - ["min"] = 20, - }, + ["max"] = 20, + ["min"] = 20, + }, ["Shield"] = { - ["max"] = 20, - ["min"] = 20, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1688834903", - ["text"] = "Socketed Spells have #% reduced Mana Cost", - ["type"] = "explicit", - }, - }, + ["max"] = 20, + ["min"] = 20, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1688834903", + ["text"] = "Socketed Spells have #% reduced Mana Cost", + ["type"] = "explicit", + }, + }, ["5690_AccuracyRatingPerFrenzyChargeUber"] = { ["1HSword"] = { - ["max"] = 25, - ["min"] = 20, - }, + ["max"] = 25, + ["min"] = 20, + }, ["1HWeapon"] = { - ["max"] = 25, - ["min"] = 20, - }, + ["max"] = 25, + ["min"] = 20, + }, ["2HSword"] = { - ["max"] = 25, - ["min"] = 20, - }, + ["max"] = 25, + ["min"] = 20, + }, ["2HWeapon"] = { - ["max"] = 25, - ["min"] = 20, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3769211656", - ["text"] = "#% chance to gain a Frenzy Charge when you Block", - ["type"] = "explicit", - }, - }, + ["max"] = 25, + ["min"] = 20, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3769211656", + ["text"] = "#% chance to gain a Frenzy Charge when you Block", + ["type"] = "explicit", + }, + }, ["5693_ChanceToGainOnslaughtOnFlaskUse"] = { ["AbyssJewel"] = { - ["max"] = 10, - ["min"] = 5, - }, + ["max"] = 10, + ["min"] = 5, + }, ["AnyJewel"] = { - ["max"] = 10, - ["min"] = 5, - }, + ["max"] = 10, + ["min"] = 5, + }, ["BaseJewel"] = { - ["max"] = 10, - ["min"] = 5, - }, + ["max"] = 10, + ["min"] = 5, + }, ["Belt"] = { - ["max"] = 20, - ["min"] = 15, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1324450398", - ["text"] = "#% chance to gain Onslaught when you use a Flask", - ["type"] = "explicit", - }, - }, + ["max"] = 20, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1324450398", + ["text"] = "#% chance to gain Onslaught when you use a Flask", + ["type"] = "explicit", + }, + }, ["5715_ChanceToIntimidateOnHit"] = { ["Gloves"] = { - ["max"] = 10, - ["min"] = 4, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2089652545", - ["text"] = "#% chance to Intimidate Enemies for 4 seconds on Hit", - ["type"] = "explicit", - }, - }, + ["max"] = 10, + ["min"] = 4, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2089652545", + ["text"] = "#% chance to Intimidate Enemies for 4 seconds on Hit", + ["type"] = "explicit", + }, + }, ["5725_ChanceToUnnerveOnHit"] = { ["1HMace"] = { - ["max"] = 15, - ["min"] = 7, - }, + ["max"] = 15, + ["min"] = 7, + }, ["1HWeapon"] = { - ["max"] = 15, - ["min"] = 7, - }, + ["max"] = 15, + ["min"] = 7, + }, ["2HWeapon"] = { - ["max"] = 15, - ["min"] = 7, - }, + ["max"] = 15, + ["min"] = 7, + }, ["Dagger"] = { - ["max"] = 15, - ["min"] = 7, - }, + ["max"] = 15, + ["min"] = 7, + }, ["Gloves"] = { - ["max"] = 10, - ["min"] = 4, - }, + ["max"] = 10, + ["min"] = 4, + }, ["Staff"] = { - ["max"] = 15, - ["min"] = 7, - }, + ["max"] = 15, + ["min"] = 7, + }, ["Wand"] = { - ["max"] = 15, - ["min"] = 7, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_763611529", - ["text"] = "#% chance to Unnerve Enemies for 4 seconds on Hit", - ["type"] = "explicit", - }, - }, - ["5726_SpellUnnerveOnHit"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_220991810", - ["text"] = "#% chance to Unnerve Enemies for 4 seconds on Hit with Spells", - ["type"] = "explicit", - }, - }, + ["max"] = 15, + ["min"] = 7, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_763611529", + ["text"] = "#% chance to Unnerve Enemies for 4 seconds on Hit", + ["type"] = "explicit", + }, + }, ["5729_ChaosDamageDoesNotBypassESNotLowLifeOrMana"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_887556907", - ["text"] = "Chaos Damage taken does not bypass Energy Shield while not on Low Life", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_887556907", + ["text"] = "Chaos Damage taken does not bypass Energy Shield while not on Low Life", + ["type"] = "explicit", + }, + }, ["5734_ChaosResistanceAgainstDamageOverTime"] = { ["Belt"] = { - ["max"] = 43, - ["min"] = 31, - }, + ["max"] = 43, + ["min"] = 31, + }, ["Chest"] = { - ["max"] = 40, - ["min"] = 30, - }, + ["max"] = 40, + ["min"] = 30, + }, ["Quiver"] = { - ["max"] = 40, - ["min"] = 30, - }, + ["max"] = 40, + ["min"] = 30, + }, ["Shield"] = { - ["max"] = 40, - ["min"] = 30, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2266636761", - ["text"] = "+#% Chaos Resistance against Damage Over Time", - ["type"] = "explicit", - }, - }, + ["max"] = 40, + ["min"] = 30, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2266636761", + ["text"] = "+#% Chaos Resistance against Damage Over Time", + ["type"] = "explicit", + }, + }, ["5756_GlobalChaosGemLevel"] = { ["Amulet"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_67169579", - ["text"] = "+# to Level of all Chaos Skill Gems", - ["type"] = "explicit", - }, - }, + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_67169579", + ["text"] = "+# to Level of all Chaos Skill Gems", + ["type"] = "explicit", + }, + }, ["5766_ChanceToChillAttackersOnBlock"] = { ["2HWeapon"] = { - ["max"] = 50, - ["min"] = 25, - }, + ["max"] = 50, + ["min"] = 25, + }, ["Shield"] = { - ["max"] = 50, - ["min"] = 25, - }, + ["max"] = 50, + ["min"] = 25, + }, ["Staff"] = { - ["max"] = 50, - ["min"] = 25, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_864879045", - ["text"] = "#% chance to Chill Attackers for 4 seconds on Block", - ["type"] = "explicit", - }, - }, + ["max"] = 50, + ["min"] = 25, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_864879045", + ["text"] = "#% chance to Chill Attackers for 4 seconds on Block", + ["type"] = "explicit", + }, + }, ["5777_CurseEffectChillingAreas"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_608898129", - ["text"] = "Curses on Enemies in your Chilling Areas have #% increased Effect", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_608898129", + ["text"] = "Curses on Enemies in your Chilling Areas have #% increased Effect", + ["type"] = "explicit", + }, + }, ["5796_ColdAilmentDuration"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_3571964448", - ["text"] = "#% increased Duration of Cold Ailments", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_3571964448", + ["text"] = "#% increased Duration of Cold Ailments", + ["type"] = "explicit", + }, + }, ["5798_AbyssJewelChillEffect"] = { ["AbyssJewel"] = { - ["max"] = 15, - ["min"] = 10, - }, + ["max"] = 15, + ["min"] = 10, + }, ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 10, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1793818220", - ["text"] = "#% increased Effect of Cold Ailments", - ["type"] = "explicit", - }, - }, + ["max"] = 15, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1793818220", + ["text"] = "#% increased Effect of Cold Ailments", + ["type"] = "explicit", + }, + }, ["5798_ChillEffectSupported"] = { ["Helmet"] = { - ["max"] = 20, - ["min"] = 8, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1793818220", - ["text"] = "#% increased Effect of Cold Ailments", - ["type"] = "explicit", - }, - }, + ["max"] = 20, + ["min"] = 8, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1793818220", + ["text"] = "#% increased Effect of Cold Ailments", + ["type"] = "explicit", + }, + }, ["5800_ColdAndChaosDamageResistance"] = { ["Amulet"] = { - ["max"] = 20, - ["min"] = 9, - }, + ["max"] = 20, + ["min"] = 9, + }, ["Belt"] = { - ["max"] = 20, - ["min"] = 9, - }, + ["max"] = 20, + ["min"] = 9, + }, ["Boots"] = { - ["max"] = 20, - ["min"] = 9, - }, + ["max"] = 20, + ["min"] = 9, + }, ["Chest"] = { - ["max"] = 20, - ["min"] = 9, - }, + ["max"] = 20, + ["min"] = 9, + }, ["Gloves"] = { - ["max"] = 20, - ["min"] = 9, - }, + ["max"] = 20, + ["min"] = 9, + }, ["Helmet"] = { - ["max"] = 20, - ["min"] = 9, - }, + ["max"] = 20, + ["min"] = 9, + }, ["Quiver"] = { - ["max"] = 20, - ["min"] = 9, - }, + ["max"] = 20, + ["min"] = 9, + }, ["Ring"] = { - ["max"] = 20, - ["min"] = 9, - }, + ["max"] = 20, + ["min"] = 9, + }, ["Shield"] = { - ["max"] = 20, - ["min"] = 9, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3393628375", - ["text"] = "+#% to Cold and Chaos Resistances", - ["type"] = "explicit", - }, - }, + ["max"] = 20, + ["min"] = 9, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3393628375", + ["text"] = "+#% to Cold and Chaos Resistances", + ["type"] = "explicit", + }, + }, ["5818_PhysicalDamageTakenAsColdUberMaven"] = { ["Chest"] = { - ["max"] = 10, - ["min"] = 7, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3679418014", - ["text"] = "#% of Cold Damage taken Recouped as Life", - ["type"] = "explicit", - }, - }, - ["5833_ColdResistanceCannotBePenetrated"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1864616755", - ["text"] = "Cold Resistance cannot be Penetrated", - ["type"] = "explicit", - }, - }, + ["max"] = 10, + ["min"] = 7, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3679418014", + ["text"] = "#% of Cold Damage taken Recouped as Life", + ["type"] = "explicit", + }, + }, ["5836_GlobalColdGemLevel"] = { ["Amulet"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1078455967", - ["text"] = "+# to Level of all Cold Skill Gems", - ["type"] = "explicit", - }, - }, + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1078455967", + ["text"] = "+# to Level of all Cold Skill Gems", + ["type"] = "explicit", + }, + }, ["5856_ConsecratedGroundStationary"] = { ["Chest"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_880970200", - ["text"] = "You have Consecrated Ground around you while stationary", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_880970200", + ["text"] = "You have Consecrated Ground around you while stationary", + ["type"] = "explicit", + }, + }, ["5856_ConsecratedGroundStationaryMaven"] = { ["Chest"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_880970200", - ["text"] = "You have Consecrated Ground around you while stationary", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_880970200", + ["text"] = "You have Consecrated Ground around you while stationary", + ["type"] = "explicit", + }, + }, ["5913_CritChanceShockedEnemies"] = { ["Belt"] = { - ["max"] = 45, - ["min"] = 30, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_276103140", - ["text"] = "#% increased Critical Strike Chance against Shocked Enemies", - ["type"] = "explicit", - }, - }, + ["max"] = 45, + ["min"] = 30, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_276103140", + ["text"] = "#% increased Critical Strike Chance against Shocked Enemies", + ["type"] = "explicit", + }, + }, ["5913_LightningResistanceAilments"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_276103140", - ["text"] = "#% increased Critical Strike Chance against Shocked Enemies", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_276103140", + ["text"] = "#% increased Critical Strike Chance against Shocked Enemies", + ["type"] = "explicit", + }, + }, ["5919_CriticalChanceIncreasedByUncappedLightningResistance"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_2478752719", - ["text"] = "Critical Strike Chance is increased by Overcapped Lightning Resistance", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_2478752719", + ["text"] = "Critical Strike Chance is increased by Overcapped Lightning Resistance", + ["type"] = "explicit", + }, + }, ["5925_CriticalStrikeChanceIfKilledRecently"] = { ["1HAxe"] = { - ["max"] = 100, - ["min"] = 80, - }, + ["max"] = 100, + ["min"] = 80, + }, ["1HWeapon"] = { - ["max"] = 100, - ["min"] = 31, - }, + ["max"] = 100, + ["min"] = 31, + }, ["2HAxe"] = { - ["max"] = 100, - ["min"] = 80, - }, + ["max"] = 100, + ["min"] = 80, + }, ["2HWeapon"] = { - ["max"] = 100, - ["min"] = 80, - }, + ["max"] = 100, + ["min"] = 80, + }, ["Claw"] = { - ["max"] = 50, - ["min"] = 31, - }, + ["max"] = 50, + ["min"] = 31, + }, ["Dagger"] = { - ["max"] = 50, - ["min"] = 31, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3914638685", - ["text"] = "#% increased Critical Strike Chance if you have Killed Recently", - ["type"] = "explicit", - }, - }, + ["max"] = 50, + ["min"] = 31, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3914638685", + ["text"] = "#% increased Critical Strike Chance if you have Killed Recently", + ["type"] = "explicit", + }, + }, ["5925_CriticalStrikeChanceTwoHandedCritChanceRecently"] = { ["2HAxe"] = { - ["max"] = 50, - ["min"] = 50, - }, + ["max"] = 50, + ["min"] = 50, + }, ["2HMace"] = { - ["max"] = 50, - ["min"] = 50, - }, + ["max"] = 50, + ["min"] = 50, + }, ["2HSword"] = { - ["max"] = 50, - ["min"] = 50, - }, + ["max"] = 50, + ["min"] = 50, + }, ["2HWeapon"] = { - ["max"] = 50, - ["min"] = 50, - }, + ["max"] = 50, + ["min"] = 50, + }, ["Bow"] = { - ["max"] = 50, - ["min"] = 50, - }, + ["max"] = 50, + ["min"] = 50, + }, ["Staff"] = { - ["max"] = 50, - ["min"] = 50, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3914638685", - ["text"] = "#% increased Critical Strike Chance if you have Killed Recently", - ["type"] = "explicit", - }, - }, + ["max"] = 50, + ["min"] = 50, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3914638685", + ["text"] = "#% increased Critical Strike Chance if you have Killed Recently", + ["type"] = "explicit", + }, + }, ["5926_ReducedShockEffectOnSelfMaven"] = { ["Helmet"] = { - ["max"] = 75, - ["min"] = 45, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1434381067", - ["text"] = "#% increased Critical Strike Chance if you've been Shocked Recently", - ["type"] = "explicit", - }, - }, + ["max"] = 75, + ["min"] = 45, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1434381067", + ["text"] = "#% increased Critical Strike Chance if you've been Shocked Recently", + ["type"] = "explicit", + }, + }, ["5927_CriticalStrikeChanceIfNoCriticalStrikeDealtRecently"] = { ["AbyssJewel"] = { - ["max"] = 30, - ["min"] = 20, - }, + ["max"] = 30, + ["min"] = 20, + }, ["AnyJewel"] = { - ["max"] = 30, - ["min"] = 20, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2856328513", - ["text"] = "#% increased Critical Strike Chance if you haven't dealt a Critical Strike Recently", - ["type"] = "explicit", - }, - }, + ["max"] = 30, + ["min"] = 20, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2856328513", + ["text"] = "#% increased Critical Strike Chance if you haven't dealt a Critical Strike Recently", + ["type"] = "explicit", + }, + }, ["5927_CriticalStrikeChanceIfNoCriticalStrikeDealtRecentlyUber"] = { ["2HWeapon"] = { - ["max"] = 100, - ["min"] = 80, - }, + ["max"] = 100, + ["min"] = 80, + }, ["Staff"] = { - ["max"] = 100, - ["min"] = 80, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2856328513", - ["text"] = "#% increased Critical Strike Chance if you haven't dealt a Critical Strike Recently", - ["type"] = "explicit", - }, - }, + ["max"] = 100, + ["min"] = 80, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2856328513", + ["text"] = "#% increased Critical Strike Chance if you haven't dealt a Critical Strike Recently", + ["type"] = "explicit", + }, + }, ["5930_GainAccuracyEqualToStrengthMaven"] = { ["Helmet"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2511370818", - ["text"] = "#% increased Critical Strike Chance per 10 Strength", - ["type"] = "explicit", - }, - }, + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2511370818", + ["text"] = "#% increased Critical Strike Chance per 10 Strength", + ["type"] = "explicit", + }, + }, ["5957_CriticalStrikeMultiplierIfEnemySlainRecently"] = { ["1HWeapon"] = { - ["max"] = 35, - ["min"] = 26, - }, + ["max"] = 35, + ["min"] = 26, + }, ["AbyssJewel"] = { - ["max"] = 14, - ["min"] = 8, - }, + ["max"] = 14, + ["min"] = 8, + }, ["AnyJewel"] = { - ["max"] = 14, - ["min"] = 8, - }, + ["max"] = 14, + ["min"] = 8, + }, ["Claw"] = { - ["max"] = 35, - ["min"] = 26, - }, + ["max"] = 35, + ["min"] = 26, + }, ["Dagger"] = { - ["max"] = 35, - ["min"] = 26, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2937483991", - ["text"] = "+#% to Critical Strike Multiplier if you've Killed Recently", - ["type"] = "explicit", - }, - }, + ["max"] = 35, + ["min"] = 26, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2937483991", + ["text"] = "+#% to Critical Strike Multiplier if you've Killed Recently", + ["type"] = "explicit", + }, + }, ["5958_CritChanceAndCriticalStrikeMultiplierIfEnemyShatteredRecently"] = { ["Ring"] = { - ["max"] = 23, - ["min"] = 18, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_536929014", - ["text"] = "+#% to Critical Strike Multiplier if you've Shattered an Enemy Recently", - ["type"] = "explicit", - }, - }, + ["max"] = 23, + ["min"] = 18, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_536929014", + ["text"] = "+#% to Critical Strike Multiplier if you've Shattered an Enemy Recently", + ["type"] = "explicit", + }, + }, ["5960_CriticalStrikeChanceTwoHandedCritMultiRecently"] = { ["2HAxe"] = { - ["max"] = 50, - ["min"] = 50, - }, + ["max"] = 50, + ["min"] = 50, + }, ["2HMace"] = { - ["max"] = 50, - ["min"] = 50, - }, + ["max"] = 50, + ["min"] = 50, + }, ["2HSword"] = { - ["max"] = 50, - ["min"] = 50, - }, + ["max"] = 50, + ["min"] = 50, + }, ["2HWeapon"] = { - ["max"] = 50, - ["min"] = 50, - }, + ["max"] = 50, + ["min"] = 50, + }, ["Bow"] = { - ["max"] = 50, - ["min"] = 50, - }, + ["max"] = 50, + ["min"] = 50, + }, ["Staff"] = { - ["max"] = 50, - ["min"] = 50, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1478247313", - ["text"] = "+#% to Critical Strike Multiplier if you haven't dealt a Critical Strike Recently", - ["type"] = "explicit", - }, - }, + ["max"] = 50, + ["min"] = 50, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1478247313", + ["text"] = "+#% to Critical Strike Multiplier if you haven't dealt a Critical Strike Recently", + ["type"] = "explicit", + }, + }, ["5961_CriticalStrikeMultiplierIfRareOrUniqueEnemyNearby"] = { ["1HAxe"] = { - ["max"] = 40, - ["min"] = 17, - }, + ["max"] = 40, + ["min"] = 17, + }, ["1HMace"] = { - ["max"] = 40, - ["min"] = 17, - }, + ["max"] = 40, + ["min"] = 17, + }, ["1HSword"] = { - ["max"] = 40, - ["min"] = 17, - }, + ["max"] = 40, + ["min"] = 17, + }, ["1HWeapon"] = { - ["max"] = 40, - ["min"] = 17, - }, + ["max"] = 40, + ["min"] = 17, + }, ["2HAxe"] = { - ["max"] = 60, - ["min"] = 25, - }, + ["max"] = 60, + ["min"] = 25, + }, ["2HMace"] = { - ["max"] = 60, - ["min"] = 25, - }, + ["max"] = 60, + ["min"] = 25, + }, ["2HSword"] = { - ["max"] = 60, - ["min"] = 25, - }, + ["max"] = 60, + ["min"] = 25, + }, ["2HWeapon"] = { - ["max"] = 60, - ["min"] = 25, - }, + ["max"] = 60, + ["min"] = 25, + }, ["Bow"] = { - ["max"] = 60, - ["min"] = 25, - }, + ["max"] = 60, + ["min"] = 25, + }, ["Claw"] = { - ["max"] = 40, - ["min"] = 17, - }, + ["max"] = 40, + ["min"] = 17, + }, ["Dagger"] = { - ["max"] = 40, - ["min"] = 17, - }, + ["max"] = 40, + ["min"] = 17, + }, ["Staff"] = { - ["max"] = 60, - ["min"] = 25, - }, + ["max"] = 60, + ["min"] = 25, + }, ["Wand"] = { - ["max"] = 40, - ["min"] = 17, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3992439283", - ["text"] = "+#% Critical Strike Multiplier while a Rare or Unique Enemy is Nearby", - ["type"] = "explicit", - }, - }, + ["max"] = 40, + ["min"] = 17, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3992439283", + ["text"] = "+#% Critical Strike Multiplier while a Rare or Unique Enemy is Nearby", + ["type"] = "explicit", + }, + }, ["5963_CriticalStrikeMultiplierIfBlockedRecentlyUber"] = { ["2HWeapon"] = { - ["max"] = 45, - ["min"] = 35, - }, + ["max"] = 45, + ["min"] = 35, + }, ["Staff"] = { - ["max"] = 45, - ["min"] = 35, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3527458221", - ["text"] = "+#% to Critical Strike Multiplier if you have Blocked Recently", - ["type"] = "explicit", - }, - }, + ["max"] = 45, + ["min"] = 35, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3527458221", + ["text"] = "+#% to Critical Strike Multiplier if you have Blocked Recently", + ["type"] = "explicit", + }, + }, ["5994_OLDAdditionalCurseOnEnemiesMaven"] = { ["Chest"] = { - ["max"] = 20, - ["min"] = 20, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_443165947", - ["text"] = "#% increased Mana Reservation Efficiency of Curse Aura Skills", - ["type"] = "explicit", - }, - }, + ["max"] = 20, + ["min"] = 20, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_443165947", + ["text"] = "#% increased Mana Reservation Efficiency of Curse Aura Skills", + ["type"] = "explicit", + }, + }, ["5995_AdditionalCurseOnEnemiesMaven"] = { ["Chest"] = { - ["max"] = 20, - ["min"] = 20, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_443165947", - ["text"] = "#% increased Mana Reservation Efficiency of Curse Aura Skills", - ["type"] = "explicit", - }, - }, + ["max"] = 20, + ["min"] = 20, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_443165947", + ["text"] = "#% increased Mana Reservation Efficiency of Curse Aura Skills", + ["type"] = "explicit", + }, + }, ["5996_EnchantmentConsecratedGround"] = { ["AbyssJewel"] = { - ["max"] = -10, - ["min"] = -15, - }, + ["max"] = -10, + ["min"] = -15, + }, ["AnyJewel"] = { - ["max"] = -10, - ["min"] = -15, - }, - ["inverseKey"] = "reduced", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3444629796", - ["text"] = "#% increased Effect of Curses on you while on Consecrated Ground", - ["type"] = "explicit", - }, - }, + ["max"] = -10, + ["min"] = -15, + }, + ["inverseKey"] = "reduced", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3444629796", + ["text"] = "#% increased Effect of Curses on you while on Consecrated Ground", + ["type"] = "explicit", + }, + }, ["6000_CurseDuration"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1435748744", - ["text"] = "Curse Skills have #% increased Skill Effect Duration", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1435748744", + ["text"] = "Curse Skills have #% increased Skill Effect Duration", + ["type"] = "explicit", + }, + }, ["6020_DamageWithBowSkills"] = { ["Quiver"] = { - ["max"] = 50, - ["min"] = 5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1241625305", - ["text"] = "#% increased Damage with Bow Skills", - ["type"] = "explicit", - }, - }, + ["max"] = 50, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1241625305", + ["text"] = "#% increased Damage with Bow Skills", + ["type"] = "explicit", + }, + }, ["602_SupportDamageOverTime"] = { ["Gloves"] = { - ["max"] = 30, - ["min"] = 30, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3846088475", - ["text"] = "Socketed Gems deal #% more Damage over Time", - ["type"] = "explicit", - }, - }, + ["max"] = 30, + ["min"] = 30, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3846088475", + ["text"] = "Socketed Gems deal #% more Damage over Time", + ["type"] = "explicit", + }, + }, ["6032_DamagePenetratesElementalResistancesIfNoEnemySlainRecently"] = { ["AbyssJewel"] = { - ["max"] = 2, - ["min"] = 2, - }, + ["max"] = 2, + ["min"] = 2, + }, ["AnyJewel"] = { - ["max"] = 2, - ["min"] = 2, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_455556407", - ["text"] = "Damage Penetrates #% Elemental Resistances if you haven't Killed Recently", - ["type"] = "explicit", - }, - }, + ["max"] = 2, + ["min"] = 2, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_455556407", + ["text"] = "Damage Penetrates #% Elemental Resistances if you haven't Killed Recently", + ["type"] = "explicit", + }, + }, ["6042_DamageIfEnemySlainRecently"] = { ["AbyssJewel"] = { - ["max"] = 20, - ["min"] = 15, - }, + ["max"] = 20, + ["min"] = 15, + }, ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 15, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1072119541", - ["text"] = "#% increased Damage if you've Killed Recently", - ["type"] = "explicit", - }, - }, + ["max"] = 20, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1072119541", + ["text"] = "#% increased Damage if you've Killed Recently", + ["type"] = "explicit", + }, + }, ["6045_ReducedBurnDurationMaven"] = { ["Helmet"] = { - ["max"] = 50, - ["min"] = 36, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_430821956", - ["text"] = "#% increased Damage if you've been Ignited Recently", - ["type"] = "explicit", - }, - }, + ["max"] = 50, + ["min"] = 36, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_430821956", + ["text"] = "#% increased Damage if you've been Ignited Recently", + ["type"] = "explicit", + }, + }, ["6056_DamagePer15Dexterity"] = { ["Amulet"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2062174346", - ["text"] = "#% increased Damage per 15 Dexterity", - ["type"] = "explicit", - }, - }, + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2062174346", + ["text"] = "#% increased Damage per 15 Dexterity", + ["type"] = "explicit", + }, + }, ["6057_DamagePer15Intelligence"] = { ["Amulet"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3801128794", - ["text"] = "#% increased Damage per 15 Intelligence", - ["type"] = "explicit", - }, - }, + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3801128794", + ["text"] = "#% increased Damage per 15 Intelligence", + ["type"] = "explicit", + }, + }, ["6058_DamagePer15Strength"] = { ["Amulet"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3948776386", - ["text"] = "#% increased Damage per 15 Strength", - ["type"] = "explicit", - }, - }, + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3948776386", + ["text"] = "#% increased Damage per 15 Strength", + ["type"] = "explicit", + }, + }, ["6059_DamagePerBlockChance"] = { ["Shield"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3400437584", - ["text"] = "#% increased Damage per 1% Chance to Block Attack Damage", - ["type"] = "explicit", - }, - }, + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3400437584", + ["text"] = "#% increased Damage per 1% Chance to Block Attack Damage", + ["type"] = "explicit", + }, + }, ["6066_IncreasedDamagePerPowerCharge"] = { ["1HAxe"] = { - ["max"] = 6, - ["min"] = 3, - }, + ["max"] = 6, + ["min"] = 3, + }, ["1HMace"] = { - ["max"] = 10, - ["min"] = 3, - }, + ["max"] = 10, + ["min"] = 3, + }, ["1HSword"] = { - ["max"] = 6, - ["min"] = 3, - }, + ["max"] = 6, + ["min"] = 3, + }, ["1HWeapon"] = { - ["max"] = 10, - ["min"] = 3, - }, + ["max"] = 10, + ["min"] = 3, + }, ["2HAxe"] = { - ["max"] = 8, - ["min"] = 5, - }, + ["max"] = 8, + ["min"] = 5, + }, ["2HMace"] = { - ["max"] = 8, - ["min"] = 5, - }, + ["max"] = 8, + ["min"] = 5, + }, ["2HSword"] = { - ["max"] = 8, - ["min"] = 5, - }, + ["max"] = 8, + ["min"] = 5, + }, ["2HWeapon"] = { - ["max"] = 17, - ["min"] = 5, - }, + ["max"] = 17, + ["min"] = 5, + }, ["Amulet"] = { - ["max"] = 6, - ["min"] = 3, - }, + ["max"] = 6, + ["min"] = 3, + }, ["Bow"] = { - ["max"] = 8, - ["min"] = 5, - }, + ["max"] = 8, + ["min"] = 5, + }, ["Claw"] = { - ["max"] = 6, - ["min"] = 3, - }, + ["max"] = 6, + ["min"] = 3, + }, ["Dagger"] = { - ["max"] = 10, - ["min"] = 3, - }, + ["max"] = 10, + ["min"] = 3, + }, ["Staff"] = { - ["max"] = 17, - ["min"] = 5, - }, + ["max"] = 17, + ["min"] = 5, + }, ["Wand"] = { - ["max"] = 10, - ["min"] = 3, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2034658008", - ["text"] = "#% increased Damage per Power Charge", - ["type"] = "explicit", - }, - }, + ["max"] = 10, + ["min"] = 3, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2034658008", + ["text"] = "#% increased Damage per Power Charge", + ["type"] = "explicit", + }, + }, ["6066_PowerChargeOnCriticalStrikeChanceMaven"] = { ["Chest"] = { - ["max"] = 3, - ["min"] = 3, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2034658008", - ["text"] = "#% increased Damage per Power Charge", - ["type"] = "explicit", - }, - }, + ["max"] = 3, + ["min"] = 3, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2034658008", + ["text"] = "#% increased Damage per Power Charge", + ["type"] = "explicit", + }, + }, ["6069_DamageVSAbyssMonsters"] = { ["AbyssJewel"] = { - ["max"] = 40, - ["min"] = 30, - }, + ["max"] = 40, + ["min"] = 30, + }, ["AnyJewel"] = { - ["max"] = 40, - ["min"] = 30, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3257279374", - ["text"] = "#% increased Damage with Hits and Ailments against Abyssal Monsters", - ["type"] = "explicit", - }, - }, + ["max"] = 40, + ["min"] = 30, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3257279374", + ["text"] = "#% increased Damage with Hits and Ailments against Abyssal Monsters", + ["type"] = "explicit", + }, + }, ["6070_ColdResistanceAilments"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_2805714016", - ["text"] = "#% increased Damage with Hits against Chilled Enemies", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_2805714016", + ["text"] = "#% increased Damage with Hits against Chilled Enemies", + ["type"] = "explicit", + }, + }, ["6070_DamageChilledEnemies"] = { ["Belt"] = { - ["max"] = 40, - ["min"] = 26, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2805714016", - ["text"] = "#% increased Damage with Hits against Chilled Enemies", - ["type"] = "explicit", - }, - }, + ["max"] = 40, + ["min"] = 26, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2805714016", + ["text"] = "#% increased Damage with Hits against Chilled Enemies", + ["type"] = "explicit", + }, + }, ["6074_DamageOnFullLife"] = { ["1HAxe"] = { - ["max"] = 120, - ["min"] = 50, - }, + ["max"] = 120, + ["min"] = 50, + }, ["1HMace"] = { - ["max"] = 120, - ["min"] = 50, - }, + ["max"] = 120, + ["min"] = 50, + }, ["1HSword"] = { - ["max"] = 120, - ["min"] = 50, - }, + ["max"] = 120, + ["min"] = 50, + }, ["1HWeapon"] = { - ["max"] = 120, - ["min"] = 50, - }, + ["max"] = 120, + ["min"] = 50, + }, ["2HAxe"] = { - ["max"] = 120, - ["min"] = 50, - }, + ["max"] = 120, + ["min"] = 50, + }, ["2HMace"] = { - ["max"] = 120, - ["min"] = 50, - }, + ["max"] = 120, + ["min"] = 50, + }, ["2HSword"] = { - ["max"] = 120, - ["min"] = 50, - }, + ["max"] = 120, + ["min"] = 50, + }, ["2HWeapon"] = { - ["max"] = 120, - ["min"] = 50, - }, + ["max"] = 120, + ["min"] = 50, + }, ["Bow"] = { - ["max"] = 120, - ["min"] = 50, - }, + ["max"] = 120, + ["min"] = 50, + }, ["Claw"] = { - ["max"] = 120, - ["min"] = 50, - }, + ["max"] = 120, + ["min"] = 50, + }, ["Dagger"] = { - ["max"] = 120, - ["min"] = 50, - }, + ["max"] = 120, + ["min"] = 50, + }, ["Staff"] = { - ["max"] = 120, - ["min"] = 50, - }, + ["max"] = 120, + ["min"] = 50, + }, ["Wand"] = { - ["max"] = 120, - ["min"] = 50, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_592020238", - ["text"] = "#% increased Damage when on Full Life", - ["type"] = "explicit", - }, - }, + ["max"] = 120, + ["min"] = 50, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_592020238", + ["text"] = "#% increased Damage when on Full Life", + ["type"] = "explicit", + }, + }, ["6084_DamageWithNonVaalSkillsDuringSoulGainPrevention"] = { ["Boots"] = { - ["max"] = 80, - ["min"] = 30, - }, + ["max"] = 80, + ["min"] = 30, + }, ["Gloves"] = { - ["max"] = 80, - ["min"] = 30, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1583385065", - ["text"] = "#% increased Damage with Non-Vaal Skills during Soul Gain Prevention", - ["type"] = "explicit", - }, - }, + ["max"] = 80, + ["min"] = 30, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1583385065", + ["text"] = "#% increased Damage with Non-Vaal Skills during Soul Gain Prevention", + ["type"] = "explicit", + }, + }, ["6089_DamageRemovedFromManaBeforeLifeWhileFocused"] = { ["Chest"] = { - ["max"] = 22, - ["min"] = 11, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1588539856", - ["text"] = "#% of Damage is taken from Mana before Life while Focused", - ["type"] = "explicit", - }, - }, + ["max"] = 22, + ["min"] = 11, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1588539856", + ["text"] = "#% of Damage is taken from Mana before Life while Focused", + ["type"] = "explicit", + }, + }, ["6105_DamageTakenGainedAsLife"] = { ["Ring"] = { - ["max"] = 15, - ["min"] = 4, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1444556985", - ["text"] = "#% of Damage taken Recouped as Life", - ["type"] = "explicit", - }, - }, + ["max"] = 15, + ["min"] = 4, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1444556985", + ["text"] = "#% of Damage taken Recouped as Life", + ["type"] = "explicit", + }, + }, ["6105_LifeRecoupForJewel"] = { ["AnyJewel"] = { - ["max"] = 6, - ["min"] = 4, - }, + ["max"] = 6, + ["min"] = 4, + }, ["BaseJewel"] = { - ["max"] = 6, - ["min"] = 4, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1444556985", - ["text"] = "#% of Damage taken Recouped as Life", - ["type"] = "explicit", - }, - }, + ["max"] = 6, + ["min"] = 4, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1444556985", + ["text"] = "#% of Damage taken Recouped as Life", + ["type"] = "explicit", + }, + }, ["6117_ReducedFreezeDurationMaven"] = { ["Helmet"] = { - ["max"] = -4, - ["min"] = -7, - }, - ["inverseKey"] = "reduced", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3616645755", - ["text"] = "#% increased Damage taken if you've been Frozen Recently", - ["type"] = "explicit", - }, - }, + ["max"] = -4, + ["min"] = -7, + }, + ["inverseKey"] = "reduced", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3616645755", + ["text"] = "#% increased Damage taken if you've been Frozen Recently", + ["type"] = "explicit", + }, + }, ["6124_RecoupWhileFrozen"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_2585984986", - ["text"] = "#% of Damage taken while Frozen Recouped as Life", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_2585984986", + ["text"] = "#% of Damage taken while Frozen Recouped as Life", + ["type"] = "explicit", + }, + }, ["6127_FasterAilmentDamageForJewel"] = { ["AnyJewel"] = { - ["max"] = 6, - ["min"] = 4, - }, + ["max"] = 6, + ["min"] = 4, + }, ["BaseJewel"] = { - ["max"] = 6, - ["min"] = 4, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_538241406", - ["text"] = "Damaging Ailments deal damage #% faster", - ["type"] = "explicit", - }, - }, + ["max"] = 6, + ["min"] = 4, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_538241406", + ["text"] = "Damaging Ailments deal damage #% faster", + ["type"] = "explicit", + }, + }, ["6151_SelfDebilitate"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1238227257", - ["text"] = "Debuffs on you expire #% faster", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1238227257", + ["text"] = "Debuffs on you expire #% faster", + ["type"] = "explicit", + }, + }, ["6161_MalevolenceAuraEffect"] = { ["1HMace"] = { - ["max"] = 40, - ["min"] = 28, - }, + ["max"] = 40, + ["min"] = 28, + }, ["1HWeapon"] = { - ["max"] = 40, - ["min"] = 28, - }, + ["max"] = 40, + ["min"] = 28, + }, ["2HWeapon"] = { - ["max"] = 60, - ["min"] = 48, - }, + ["max"] = 60, + ["min"] = 48, + }, ["Dagger"] = { - ["max"] = 40, - ["min"] = 28, - }, + ["max"] = 40, + ["min"] = 28, + }, ["Staff"] = { - ["max"] = 60, - ["min"] = 48, - }, + ["max"] = 60, + ["min"] = 48, + }, ["Wand"] = { - ["max"] = 40, - ["min"] = 28, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4175197580", - ["text"] = "Malevolence has #% increased Aura Effect", - ["type"] = "explicit", - }, - }, + ["max"] = 40, + ["min"] = 28, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4175197580", + ["text"] = "Malevolence has #% increased Aura Effect", + ["type"] = "explicit", + }, + }, ["6172_DeterminationReservation"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_325889252", - ["text"] = "Determination has #% increased Mana Reservation Efficiency", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_2721871046", + ["text"] = "Determination has #% increased Mana Reservation Efficiency", + ["type"] = "explicit", + }, + }, ["6173_DeterminationReservationEfficiency"] = { ["Amulet"] = { - ["max"] = 50, - ["min"] = 40, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_325889252", - ["text"] = "Determination has #% increased Mana Reservation Efficiency", - ["type"] = "explicit", - }, - }, + ["max"] = 50, + ["min"] = 40, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2721871046", + ["text"] = "Determination has #% increased Mana Reservation Efficiency", + ["type"] = "explicit", + }, + }, ["6177_GlobalDexterityGemLevel"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_146924886", - ["text"] = "+# to Level of all Dexterity Skill Gems", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_146924886", + ["text"] = "+# to Level of all Dexterity Skill Gems", + ["type"] = "explicit", + }, + }, ["6188_DisciplineReservation"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_2081344089", - ["text"] = "Discipline has #% increased Mana Reservation Efficiency", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1692887998", + ["text"] = "Discipline has #% increased Mana Reservation Efficiency", + ["type"] = "explicit", + }, + }, ["6189_DisciplineReservationEfficiency"] = { ["Amulet"] = { - ["max"] = 60, - ["min"] = 50, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2081344089", - ["text"] = "Discipline has #% increased Mana Reservation Efficiency", - ["type"] = "explicit", - }, - }, - ["6302_CriticalChanceAndElementalDamagePercentIfHaveCritRecently"] = { + ["max"] = 60, + ["min"] = 50, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1692887998", + ["text"] = "Discipline has #% increased Mana Reservation Efficiency", + ["type"] = "explicit", + }, + }, + ["6303_CriticalChanceAndElementalDamagePercentIfHaveCritRecently"] = { ["Gloves"] = { - ["max"] = 30, - ["min"] = 14, - }, + ["max"] = 30, + ["min"] = 14, + }, ["Quiver"] = { - ["max"] = 30, - ["min"] = 14, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2379781920", - ["text"] = "#% increased Elemental Damage if you've dealt a Critical Strike Recently", - ["type"] = "explicit", - }, - }, - ["6321_IncreasedWeaponElementalDamagePercent"] = { + ["max"] = 30, + ["min"] = 14, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2379781920", + ["text"] = "#% increased Elemental Damage if you've dealt a Critical Strike Recently", + ["type"] = "explicit", + }, + }, + ["6322_IncreasedWeaponElementalDamagePercent"] = { ["1HAxe"] = { - ["max"] = 59, - ["min"] = 11, - }, + ["max"] = 59, + ["min"] = 11, + }, ["1HMace"] = { - ["max"] = 59, - ["min"] = 11, - }, + ["max"] = 59, + ["min"] = 11, + }, ["1HSword"] = { - ["max"] = 59, - ["min"] = 11, - }, + ["max"] = 59, + ["min"] = 11, + }, ["1HWeapon"] = { - ["max"] = 59, - ["min"] = 11, - }, + ["max"] = 59, + ["min"] = 11, + }, ["2HAxe"] = { - ["max"] = 100, - ["min"] = 15, - }, + ["max"] = 100, + ["min"] = 15, + }, ["2HMace"] = { - ["max"] = 100, - ["min"] = 15, - }, + ["max"] = 100, + ["min"] = 15, + }, ["2HSword"] = { - ["max"] = 100, - ["min"] = 15, - }, + ["max"] = 100, + ["min"] = 15, + }, ["2HWeapon"] = { - ["max"] = 100, - ["min"] = 15, - }, + ["max"] = 100, + ["min"] = 15, + }, ["Amulet"] = { - ["max"] = 50, - ["min"] = 5, - }, + ["max"] = 50, + ["min"] = 5, + }, ["Belt"] = { - ["max"] = 50, - ["min"] = 5, - }, + ["max"] = 50, + ["min"] = 5, + }, ["Bow"] = { - ["max"] = 100, - ["min"] = 15, - }, + ["max"] = 100, + ["min"] = 15, + }, ["Claw"] = { - ["max"] = 59, - ["min"] = 11, - }, + ["max"] = 59, + ["min"] = 11, + }, ["Dagger"] = { - ["max"] = 59, - ["min"] = 11, - }, + ["max"] = 59, + ["min"] = 11, + }, ["Quiver"] = { - ["max"] = 32, - ["min"] = 15, - }, + ["max"] = 32, + ["min"] = 15, + }, ["Ring"] = { - ["max"] = 42, - ["min"] = 5, - }, + ["max"] = 42, + ["min"] = 5, + }, ["Shield"] = { - ["max"] = 40, - ["min"] = 26, - }, + ["max"] = 40, + ["min"] = 26, + }, ["Staff"] = { - ["max"] = 100, - ["min"] = 15, - }, + ["max"] = 100, + ["min"] = 15, + }, ["Wand"] = { - ["max"] = 59, - ["min"] = 11, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_387439868", - ["text"] = "#% increased Elemental Damage with Attack Skills", - ["type"] = "explicit", - }, - }, - ["6321_IncreasedWeaponElementalDamagePercentSupported"] = { + ["max"] = 59, + ["min"] = 11, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_387439868", + ["text"] = "#% increased Elemental Damage with Attack Skills", + ["type"] = "explicit", + }, + }, + ["6322_IncreasedWeaponElementalDamagePercentSupported"] = { ["1HAxe"] = { - ["max"] = 37, - ["min"] = 28, - }, + ["max"] = 37, + ["min"] = 28, + }, ["1HMace"] = { - ["max"] = 37, - ["min"] = 28, - }, + ["max"] = 37, + ["min"] = 28, + }, ["1HSword"] = { - ["max"] = 37, - ["min"] = 28, - }, + ["max"] = 37, + ["min"] = 28, + }, ["1HWeapon"] = { - ["max"] = 37, - ["min"] = 28, - }, + ["max"] = 37, + ["min"] = 28, + }, ["2HAxe"] = { - ["max"] = 37, - ["min"] = 28, - }, + ["max"] = 37, + ["min"] = 28, + }, ["2HMace"] = { - ["max"] = 37, - ["min"] = 28, - }, + ["max"] = 37, + ["min"] = 28, + }, ["2HSword"] = { - ["max"] = 37, - ["min"] = 28, - }, + ["max"] = 37, + ["min"] = 28, + }, ["2HWeapon"] = { - ["max"] = 37, - ["min"] = 28, - }, + ["max"] = 37, + ["min"] = 28, + }, ["Claw"] = { - ["max"] = 37, - ["min"] = 28, - }, + ["max"] = 37, + ["min"] = 28, + }, ["Dagger"] = { - ["max"] = 37, - ["min"] = 28, - }, + ["max"] = 37, + ["min"] = 28, + }, ["Wand"] = { - ["max"] = 37, - ["min"] = 28, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_387439868", - ["text"] = "#% increased Elemental Damage with Attack Skills", - ["type"] = "explicit", - }, - }, - ["6334_ReducedElementalReflectTaken"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2160417795", - ["text"] = "You and your Minions take #% reduced Reflected Elemental Damage", - ["type"] = "explicit", - }, - }, - ["6334_ReducedElementalReflectTakenMaven"] = { + ["max"] = 37, + ["min"] = 28, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_387439868", + ["text"] = "#% increased Elemental Damage with Attack Skills", + ["type"] = "explicit", + }, + }, + ["6335_ReducedElementalReflectTaken"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2160417795", + ["text"] = "You and your Minions take #% reduced Reflected Elemental Damage", + ["type"] = "explicit", + }, + }, + ["6335_ReducedElementalReflectTakenMaven"] = { ["Chest"] = { - ["max"] = 100, - ["min"] = 100, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2160417795", - ["text"] = "You and your Minions take #% reduced Reflected Elemental Damage", - ["type"] = "explicit", - }, - }, - ["6349_ElusiveOnCriticalStrikeMaven"] = { + ["max"] = 100, + ["min"] = 100, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2160417795", + ["text"] = "You and your Minions take #% reduced Reflected Elemental Damage", + ["type"] = "explicit", + }, + }, + ["6350_ElusiveOnCriticalStrikeMaven"] = { ["Boots"] = { - ["max"] = 10, - ["min"] = 5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_240857668", - ["text"] = "#% increased Elusive Effect", - ["type"] = "explicit", - }, - }, - ["6356_ExertedAttackDamage"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_240857668", + ["text"] = "#% increased Elusive Effect", + ["type"] = "explicit", + }, + }, + ["6357_ExertedAttackDamage"] = { ["Ring"] = { - ["max"] = 35, - ["min"] = 25, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1569101201", - ["text"] = "Exerted Attacks deal #% increased Damage", - ["type"] = "explicit", - }, - }, - ["6372_EnemiesExplodeOnDeathPhysical"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1220361974", - ["text"] = "Enemies you Kill Explode, dealing #% of their Life as Physical Damage", - ["type"] = "explicit", - }, - }, - ["6372_EnemiesExplodeOnDeathPhysicalMaven"] = { + ["max"] = 35, + ["min"] = 25, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1569101201", + ["text"] = "Exerted Attacks deal #% increased Damage", + ["type"] = "explicit", + }, + }, + ["6373_EnemiesExplodeOnDeathPhysical"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1220361974", + ["text"] = "Enemies you Kill Explode, dealing #% of their Life as Physical Damage", + ["type"] = "explicit", + }, + }, + ["6373_EnemiesExplodeOnDeathPhysicalMaven"] = { ["Chest"] = { - ["max"] = 5, - ["min"] = 5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1220361974", - ["text"] = "Enemies you Kill Explode, dealing #% of their Life as Physical Damage", - ["type"] = "explicit", - }, - }, - ["6404_EnchantmentBlind"] = { + ["max"] = 5, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1220361974", + ["text"] = "Enemies you Kill Explode, dealing #% of their Life as Physical Damage", + ["type"] = "explicit", + }, + }, + ["6405_EnchantmentBlind"] = { ["AbyssJewel"] = { - ["max"] = -15, - ["min"] = -20, - }, + ["max"] = -15, + ["min"] = -20, + }, ["AnyJewel"] = { - ["max"] = -15, - ["min"] = -20, - }, - ["inverseKey"] = "reduced", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4216282855", - ["text"] = "Enemies Blinded by you have #% increased Critical Strike Chance", - ["type"] = "explicit", - }, - }, - ["6410_EnchantmentHinder"] = { + ["max"] = -15, + ["min"] = -20, + }, + ["inverseKey"] = "reduced", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4216282855", + ["text"] = "Enemies Blinded by you have #% increased Critical Strike Chance", + ["type"] = "explicit", + }, + }, + ["6411_EnchantmentHinder"] = { ["AbyssJewel"] = { - ["max"] = -15, - ["min"] = -20, - }, + ["max"] = -15, + ["min"] = -20, + }, ["AnyJewel"] = { - ["max"] = -15, - ["min"] = -20, - }, - ["inverseKey"] = "reduced", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3709502856", - ["text"] = "Enemies Hindered by you have #% increased Life Regeneration rate", - ["type"] = "explicit", - }, - }, - ["6413_EnchantmentIntimidate"] = { + ["max"] = -15, + ["min"] = -20, + }, + ["inverseKey"] = "reduced", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3709502856", + ["text"] = "Enemies Hindered by you have #% increased Life Regeneration rate", + ["type"] = "explicit", + }, + }, + ["6414_EnchantmentIntimidate"] = { ["AbyssJewel"] = { - ["max"] = 15, - ["min"] = 10, - }, + ["max"] = 15, + ["min"] = 10, + }, ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 10, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1919892065", - ["text"] = "Enemies Intimidated by you have #% increased duration of stuns against them", - ["type"] = "explicit", - }, - }, - ["6414_EnchantmentMaim"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1919892065", + ["text"] = "Enemies Intimidated by you have #% increased duration of stuns against them", + ["type"] = "explicit", + }, + }, + ["6415_EnchantmentMaim"] = { ["AbyssJewel"] = { - ["max"] = 5, - ["min"] = 4, - }, + ["max"] = 5, + ["min"] = 4, + }, ["AnyJewel"] = { - ["max"] = 5, - ["min"] = 4, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2745149002", - ["text"] = "Enemies Maimed by you take #% increased Damage Over Time", - ["type"] = "explicit", - }, - }, - ["6416_EnchantmentWither"] = { + ["max"] = 5, + ["min"] = 4, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2745149002", + ["text"] = "Enemies Maimed by you take #% increased Damage Over Time", + ["type"] = "explicit", + }, + }, + ["6417_EnchantmentWither"] = { ["AbyssJewel"] = { - ["max"] = 2, - ["min"] = 2, - }, + ["max"] = 2, + ["min"] = 2, + }, ["AnyJewel"] = { - ["max"] = 2, - ["min"] = 2, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1032614900", - ["text"] = "Enemies Withered by you have +#% to all Resistances", - ["type"] = "explicit", - }, - }, - ["6417_EnemiesHaveReducedEvasionIfHitRecently"] = { + ["max"] = 2, + ["min"] = 2, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1032614900", + ["text"] = "Enemies Withered by you have +#% to all Resistances", + ["type"] = "explicit", + }, + }, + ["6418_EnemiesHaveReducedEvasionIfHitRecently"] = { ["1HWeapon"] = { - ["max"] = 20, - ["min"] = 20, - }, + ["max"] = 20, + ["min"] = 20, + }, ["Claw"] = { - ["max"] = 20, - ["min"] = 20, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1773891268", - ["text"] = "Enemies have #% reduced Evasion if you have Hit them Recently", - ["type"] = "explicit", - }, - }, - ["6450_MaximumEnergyShieldOnKillPercentMaven"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1773891268", + ["text"] = "Enemies have #% reduced Evasion if you have Hit them Recently", + ["type"] = "explicit", + }, + }, + ["6451_MaximumEnergyShieldOnKillPercentMaven"] = { ["Chest"] = { - ["max"] = 10, - ["min"] = 5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2698606393", - ["text"] = "#% increased Energy Shield Recovery Rate if you haven't Killed Recently", - ["type"] = "explicit", - }, - }, - ["6455_EnergyShieldRegenerationRatePercentageIfCorpseConsumedRecently"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2160190507", - ["text"] = "Regenerate #% of Energy Shield per second if you've Consumed a Corpse Recently", - ["type"] = "explicit", - }, - }, - ["6456_EnergyShieldRegenerationRatePerMinuteIfRareOrUniqueEnemyNearby"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2698606393", + ["text"] = "#% increased Energy Shield Recovery Rate if you haven't Killed Recently", + ["type"] = "explicit", + }, + }, + ["6456_EnergyShieldRegenerationRatePercentageIfCorpseConsumedRecently"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2160190507", + ["text"] = "Regenerate #% of Energy Shield per second if you've Consumed a Corpse Recently", + ["type"] = "explicit", + }, + }, + ["6457_EnergyShieldRegenerationRatePerMinuteIfRareOrUniqueEnemyNearby"] = { ["Belt"] = { - ["max"] = 200, - ["min"] = 90, - }, + ["max"] = 200, + ["min"] = 90, + }, ["Chest"] = { - ["max"] = 200, - ["min"] = 90, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2238019079", - ["text"] = "Regenerate # Energy Shield per second while a Rare or Unique Enemy is Nearby", - ["type"] = "explicit", - }, - }, - ["6458_EnergyShieldRegenerationRatePerMinuteIfYouHaveHitAnEnemyRecently"] = { + ["max"] = 200, + ["min"] = 90, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2238019079", + ["text"] = "Regenerate # Energy Shield per second while a Rare or Unique Enemy is Nearby", + ["type"] = "explicit", + }, + }, + ["6459_EnergyShieldRegenerationRatePerMinuteIfYouHaveHitAnEnemyRecently"] = { ["1HMace"] = { - ["max"] = 0.5, - ["min"] = 0.5, - }, + ["max"] = 0.5, + ["min"] = 0.5, + }, ["1HWeapon"] = { - ["max"] = 0.5, - ["min"] = 0.5, - }, + ["max"] = 0.5, + ["min"] = 0.5, + }, ["2HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["AbyssJewel"] = { - ["max"] = 0.3, - ["min"] = 0.3, - }, + ["max"] = 0.3, + ["min"] = 0.3, + }, ["AnyJewel"] = { - ["max"] = 0.3, - ["min"] = 0.3, - }, + ["max"] = 0.3, + ["min"] = 0.3, + }, ["BaseJewel"] = { - ["max"] = 0.3, - ["min"] = 0.3, - }, + ["max"] = 0.3, + ["min"] = 0.3, + }, ["Claw"] = { - ["max"] = 0.5, - ["min"] = 0.5, - }, + ["max"] = 0.5, + ["min"] = 0.5, + }, ["Dagger"] = { - ["max"] = 0.5, - ["min"] = 0.5, - }, + ["max"] = 0.5, + ["min"] = 0.5, + }, ["Staff"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Wand"] = { - ["max"] = 0.5, - ["min"] = 0.5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_588560583", - ["text"] = "Regenerate #% of Energy Shield per second if you've Hit an Enemy Recently", - ["type"] = "explicit", - }, - }, - ["6461_FlatEnergyShieldRegeneration"] = { + ["max"] = 0.5, + ["min"] = 0.5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_588560583", + ["text"] = "Regenerate #% of Energy Shield per second if you've Hit an Enemy Recently", + ["type"] = "explicit", + }, + }, + ["6462_FlatEnergyShieldRegeneration"] = { ["AbyssJewel"] = { - ["max"] = 20, - ["min"] = 9, - }, + ["max"] = 20, + ["min"] = 9, + }, ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 9, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2561836520", - ["text"] = "Regenerate # Energy Shield per second", - ["type"] = "explicit", - }, - }, - ["6477_DodgeChanceDuringFocus"] = { + ["max"] = 20, + ["min"] = 9, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1330109706", + ["text"] = "Regenerate # Energy Shield per second", + ["type"] = "explicit", + }, + }, + ["6478_DodgeChanceDuringFocus"] = { ["Boots"] = { - ["max"] = 32, - ["min"] = 16, - }, + ["max"] = 32, + ["min"] = 16, + }, ["Helmet"] = { - ["max"] = 32, - ["min"] = 16, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3839620417", - ["text"] = "#% increased Evasion Rating while Focused", - ["type"] = "explicit", - }, - }, - ["6486_EvasionIncreasedByUncappedColdResistance"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2358015838", - ["text"] = "Evasion Rating is increased by Overcapped Cold Resistance", - ["type"] = "explicit", - }, - }, - ["6487_LifeRegenerationPerEvasionDuringFocus"] = { + ["max"] = 32, + ["min"] = 16, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3839620417", + ["text"] = "#% increased Evasion Rating while Focused", + ["type"] = "explicit", + }, + }, + ["6487_EvasionIncreasedByUncappedColdResistance"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2358015838", + ["text"] = "Evasion Rating is increased by Overcapped Cold Resistance", + ["type"] = "explicit", + }, + }, + ["6488_LifeRegenerationPerEvasionDuringFocus"] = { ["Chest"] = { - ["max"] = 1.5, - ["min"] = 1, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3244118730", - ["text"] = "#% of Evasion Rating is Regenerated as Life per second while Focused", - ["type"] = "explicit", - }, - }, - ["6489_EvasionRatingIfYouHaveHitAnEnemyRecently"] = { + ["max"] = 1.5, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3244118730", + ["text"] = "#% of Evasion Rating is Regenerated as Life per second while Focused", + ["type"] = "explicit", + }, + }, + ["6490_EvasionRatingIfYouHaveHitAnEnemyRecently"] = { ["1HAxe"] = { - ["max"] = 1000, - ["min"] = 500, - }, + ["max"] = 1000, + ["min"] = 500, + }, ["1HSword"] = { - ["max"] = 1000, - ["min"] = 500, - }, + ["max"] = 1000, + ["min"] = 500, + }, ["1HWeapon"] = { - ["max"] = 1000, - ["min"] = 500, - }, + ["max"] = 1000, + ["min"] = 500, + }, ["2HAxe"] = { - ["max"] = 1000, - ["min"] = 500, - }, + ["max"] = 1000, + ["min"] = 500, + }, ["2HSword"] = { - ["max"] = 1000, - ["min"] = 500, - }, + ["max"] = 1000, + ["min"] = 500, + }, ["2HWeapon"] = { - ["max"] = 1000, - ["min"] = 500, - }, + ["max"] = 1000, + ["min"] = 500, + }, ["AbyssJewel"] = { - ["max"] = 300, - ["min"] = 250, - }, + ["max"] = 300, + ["min"] = 250, + }, ["AnyJewel"] = { - ["max"] = 300, - ["min"] = 250, - }, + ["max"] = 300, + ["min"] = 250, + }, ["BaseJewel"] = { - ["max"] = 300, - ["min"] = 250, - }, + ["max"] = 300, + ["min"] = 250, + }, ["Bow"] = { - ["max"] = 1000, - ["min"] = 1000, - }, + ["max"] = 1000, + ["min"] = 1000, + }, ["Claw"] = { - ["max"] = 500, - ["min"] = 500, - }, + ["max"] = 500, + ["min"] = 500, + }, ["Dagger"] = { - ["max"] = 500, - ["min"] = 500, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2935548106", - ["text"] = "+# to Evasion Rating if Hit an Enemy Recently", - ["type"] = "explicit", - }, - }, - ["6496_GlobalEvasionRatingPercentOnFullLife"] = { + ["max"] = 500, + ["min"] = 500, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2935548106", + ["text"] = "+# to Evasion Rating if Hit an Enemy Recently", + ["type"] = "explicit", + }, + }, + ["6497_GlobalEvasionRatingPercentOnFullLife"] = { ["Boots"] = { - ["max"] = 50, - ["min"] = 25, - }, + ["max"] = 50, + ["min"] = 25, + }, ["Chest"] = { - ["max"] = 50, - ["min"] = 25, - }, + ["max"] = 50, + ["min"] = 25, + }, ["Gloves"] = { - ["max"] = 50, - ["min"] = 25, - }, + ["max"] = 50, + ["min"] = 25, + }, ["Helmet"] = { - ["max"] = 50, - ["min"] = 25, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_88817332", - ["text"] = "#% increased Global Evasion Rating when on Full Life", - ["type"] = "explicit", - }, - }, - ["6498_EvasionRatingWhileMoving"] = { + ["max"] = 50, + ["min"] = 25, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_88817332", + ["text"] = "#% increased Global Evasion Rating when on Full Life", + ["type"] = "explicit", + }, + }, + ["6499_EvasionRatingWhileMoving"] = { ["AbyssJewel"] = { - ["max"] = 35, - ["min"] = 25, - }, + ["max"] = 35, + ["min"] = 25, + }, ["AnyJewel"] = { - ["max"] = 35, - ["min"] = 25, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_734823525", - ["text"] = "#% increased Evasion Rating while moving", - ["type"] = "explicit", - }, - }, - ["6530_LuckyCriticalsDuringFocus"] = { + ["max"] = 35, + ["min"] = 25, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_734823525", + ["text"] = "#% increased Evasion Rating while moving", + ["type"] = "explicit", + }, + }, + ["6531_LuckyCriticalsDuringFocus"] = { ["Belt"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1349659520", - ["text"] = "Your Critical Strike Chance is Lucky while Focused", - ["type"] = "explicit", - }, - }, - ["6530_LuckyCriticalsDuringFocusCDR"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1349659520", + ["text"] = "Your Critical Strike Chance is Lucky while Focused", + ["type"] = "explicit", + }, + }, + ["6531_LuckyCriticalsDuringFocusCDR"] = { ["Belt"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1349659520", - ["text"] = "Your Critical Strike Chance is Lucky while Focused", - ["type"] = "explicit", - }, - }, - ["6544_FasterBleedDamage"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1349659520", + ["text"] = "Your Critical Strike Chance is Lucky while Focused", + ["type"] = "explicit", + }, + }, + ["6545_FasterBleedDamage"] = { ["1HAxe"] = { - ["max"] = 15, - ["min"] = 8, - }, + ["max"] = 15, + ["min"] = 8, + }, ["1HMace"] = { - ["max"] = 15, - ["min"] = 8, - }, + ["max"] = 15, + ["min"] = 8, + }, ["1HSword"] = { - ["max"] = 15, - ["min"] = 8, - }, + ["max"] = 15, + ["min"] = 8, + }, ["1HWeapon"] = { - ["max"] = 15, - ["min"] = 8, - }, + ["max"] = 15, + ["min"] = 8, + }, ["2HAxe"] = { - ["max"] = 25, - ["min"] = 8, - }, + ["max"] = 25, + ["min"] = 8, + }, ["2HMace"] = { - ["max"] = 25, - ["min"] = 8, - }, + ["max"] = 25, + ["min"] = 8, + }, ["2HSword"] = { - ["max"] = 25, - ["min"] = 8, - }, + ["max"] = 25, + ["min"] = 8, + }, ["2HWeapon"] = { - ["max"] = 25, - ["min"] = 8, - }, + ["max"] = 25, + ["min"] = 8, + }, ["Boots"] = { - ["max"] = 12, - ["min"] = 7, - }, + ["max"] = 12, + ["min"] = 7, + }, ["Bow"] = { - ["max"] = 25, - ["min"] = 18, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3828375170", - ["text"] = "Bleeding you inflict deals Damage #% faster", - ["type"] = "explicit", - }, - }, - ["6544_FasterBleedDamageMaven"] = { + ["max"] = 25, + ["min"] = 18, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3828375170", + ["text"] = "Bleeding you inflict deals Damage #% faster", + ["type"] = "explicit", + }, + }, + ["6545_FasterBleedDamageMaven"] = { ["Boots"] = { - ["max"] = 15, - ["min"] = 11, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3828375170", - ["text"] = "Bleeding you inflict deals Damage #% faster", - ["type"] = "explicit", - }, - }, - ["6545_FasterPoisonDamage"] = { + ["max"] = 15, + ["min"] = 11, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3828375170", + ["text"] = "Bleeding you inflict deals Damage #% faster", + ["type"] = "explicit", + }, + }, + ["6546_FasterPoisonDamage"] = { ["1HSword"] = { - ["max"] = 15, - ["min"] = 8, - }, + ["max"] = 15, + ["min"] = 8, + }, ["1HWeapon"] = { - ["max"] = 15, - ["min"] = 8, - }, + ["max"] = 15, + ["min"] = 8, + }, ["2HSword"] = { - ["max"] = 25, - ["min"] = 8, - }, + ["max"] = 25, + ["min"] = 8, + }, ["2HWeapon"] = { - ["max"] = 25, - ["min"] = 8, - }, + ["max"] = 25, + ["min"] = 8, + }, ["Boots"] = { - ["max"] = 12, - ["min"] = 7, - }, + ["max"] = 12, + ["min"] = 7, + }, ["Bow"] = { - ["max"] = 25, - ["min"] = 18, - }, + ["max"] = 25, + ["min"] = 18, + }, ["Claw"] = { - ["max"] = 15, - ["min"] = 8, - }, + ["max"] = 15, + ["min"] = 8, + }, ["Dagger"] = { - ["max"] = 15, - ["min"] = 8, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2907156609", - ["text"] = "Poisons you inflict deal Damage #% faster", - ["type"] = "explicit", - }, - }, - ["6545_FasterPoisonDamageMaven"] = { + ["max"] = 15, + ["min"] = 8, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2907156609", + ["text"] = "Poisons you inflict deal Damage #% faster", + ["type"] = "explicit", + }, + }, + ["6546_FasterPoisonDamageMaven"] = { ["Boots"] = { - ["max"] = 15, - ["min"] = 11, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2907156609", - ["text"] = "Poisons you inflict deal Damage #% faster", - ["type"] = "explicit", - }, - }, - ["6549_FireAndChaosDamageResistance"] = { + ["max"] = 15, + ["min"] = 11, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2907156609", + ["text"] = "Poisons you inflict deal Damage #% faster", + ["type"] = "explicit", + }, + }, + ["6550_FireAndChaosDamageResistance"] = { ["Amulet"] = { - ["max"] = 20, - ["min"] = 9, - }, + ["max"] = 20, + ["min"] = 9, + }, ["Belt"] = { - ["max"] = 20, - ["min"] = 9, - }, + ["max"] = 20, + ["min"] = 9, + }, ["Boots"] = { - ["max"] = 20, - ["min"] = 9, - }, + ["max"] = 20, + ["min"] = 9, + }, ["Chest"] = { - ["max"] = 20, - ["min"] = 9, - }, + ["max"] = 20, + ["min"] = 9, + }, ["Gloves"] = { - ["max"] = 20, - ["min"] = 9, - }, + ["max"] = 20, + ["min"] = 9, + }, ["Helmet"] = { - ["max"] = 20, - ["min"] = 9, - }, + ["max"] = 20, + ["min"] = 9, + }, ["Quiver"] = { - ["max"] = 20, - ["min"] = 9, - }, + ["max"] = 20, + ["min"] = 9, + }, ["Ring"] = { - ["max"] = 20, - ["min"] = 9, - }, + ["max"] = 20, + ["min"] = 9, + }, ["Shield"] = { - ["max"] = 20, - ["min"] = 9, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_378817135", - ["text"] = "+#% to Fire and Chaos Resistances", - ["type"] = "explicit", - }, - }, - ["6571_PhysicalDamageTakenAsFireUberMaven"] = { + ["max"] = 20, + ["min"] = 9, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_378817135", + ["text"] = "+#% to Fire and Chaos Resistances", + ["type"] = "explicit", + }, + }, + ["6572_PhysicalDamageTakenAsFireUberMaven"] = { ["Chest"] = { - ["max"] = 10, - ["min"] = 7, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1742651309", - ["text"] = "#% of Fire Damage taken Recouped as Life", - ["type"] = "explicit", - }, - }, - ["6584_FireResistanceCannotBePenetrated"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1138860262", - ["text"] = "Fire Resistance cannot be Penetrated", - ["type"] = "explicit", - }, - }, - ["6586_GlobalFireGemLevel"] = { + ["max"] = 10, + ["min"] = 7, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1742651309", + ["text"] = "#% of Fire Damage taken Recouped as Life", + ["type"] = "explicit", + }, + }, + ["6587_GlobalFireGemLevel"] = { ["Amulet"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_599749213", - ["text"] = "+# to Level of all Fire Skill Gems", - ["type"] = "explicit", - }, - }, - ["6653_FocusCooldownRecovery"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_599749213", + ["text"] = "+# to Level of all Fire Skill Gems", + ["type"] = "explicit", + }, + }, + ["6654_FocusCooldownRecovery"] = { ["Boots"] = { - ["max"] = 35, - ["min"] = 21, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3610263531", - ["text"] = "Focus has #% increased Cooldown Recovery Rate", - ["type"] = "explicit", - }, - }, - ["6653_ImmuneToStatusAilmentsWhileFocusedCDR"] = { + ["max"] = 35, + ["min"] = 21, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3610263531", + ["text"] = "Focus has #% increased Cooldown Recovery Rate", + ["type"] = "explicit", + }, + }, + ["6654_ImmuneToStatusAilmentsWhileFocusedCDR"] = { ["Boots"] = { - ["max"] = 8, - ["min"] = 5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3610263531", - ["text"] = "Focus has #% increased Cooldown Recovery Rate", - ["type"] = "explicit", - }, - }, - ["6653_LuckyCriticalsDuringFocusCDR"] = { + ["max"] = 8, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3610263531", + ["text"] = "Focus has #% increased Cooldown Recovery Rate", + ["type"] = "explicit", + }, + }, + ["6654_LuckyCriticalsDuringFocusCDR"] = { ["Belt"] = { - ["max"] = 8, - ["min"] = 5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3610263531", - ["text"] = "Focus has #% increased Cooldown Recovery Rate", - ["type"] = "explicit", - }, - }, - ["6653_MinionsRecoverMaximumLifeWhenYouFocusCDR"] = { + ["max"] = 8, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3610263531", + ["text"] = "Focus has #% increased Cooldown Recovery Rate", + ["type"] = "explicit", + }, + }, + ["6654_MinionsRecoverMaximumLifeWhenYouFocusCDR"] = { ["Gloves"] = { - ["max"] = 8, - ["min"] = 5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3610263531", - ["text"] = "Focus has #% increased Cooldown Recovery Rate", - ["type"] = "explicit", - }, - }, - ["6653_ShockNearbyEnemiesOnFocusCDR"] = { + ["max"] = 8, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3610263531", + ["text"] = "Focus has #% increased Cooldown Recovery Rate", + ["type"] = "explicit", + }, + }, + ["6654_ShockNearbyEnemiesOnFocusCDR"] = { ["Ring"] = { - ["max"] = 8, - ["min"] = 5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3610263531", - ["text"] = "Focus has #% increased Cooldown Recovery Rate", - ["type"] = "explicit", - }, - }, - ["6653_ShockYourselfOnFocusCDR"] = { - ["inverseKey"] = "reduced", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3610263531", - ["text"] = "Focus has #% increased Cooldown Recovery Rate", - ["type"] = "explicit", - }, - }, - ["6653_SkillsCostNoManaWhileFocusedCDR"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3610263531", - ["text"] = "Focus has #% increased Cooldown Recovery Rate", - ["type"] = "explicit", - }, - }, - ["6653_TriggerSocketedSpellWhenYouFocusCDR"] = { + ["max"] = 8, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3610263531", + ["text"] = "Focus has #% increased Cooldown Recovery Rate", + ["type"] = "explicit", + }, + }, + ["6654_ShockYourselfOnFocusCDR"] = { + ["inverseKey"] = "reduced", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3610263531", + ["text"] = "Focus has #% increased Cooldown Recovery Rate", + ["type"] = "explicit", + }, + }, + ["6654_SkillsCostNoManaWhileFocusedCDR"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3610263531", + ["text"] = "Focus has #% increased Cooldown Recovery Rate", + ["type"] = "explicit", + }, + }, + ["6654_TriggerSocketedSpellWhenYouFocusCDR"] = { ["Helmet"] = { - ["max"] = 8, - ["min"] = 5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3610263531", - ["text"] = "Focus has #% increased Cooldown Recovery Rate", - ["type"] = "explicit", - }, - }, - ["6696_GainRareMonsterModsOnKillChance"] = { + ["max"] = 8, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3610263531", + ["text"] = "Focus has #% increased Cooldown Recovery Rate", + ["type"] = "explicit", + }, + }, + ["6697_GainRareMonsterModsOnKillChance"] = { ["1HWeapon"] = { - ["max"] = 40, - ["min"] = 15, - }, + ["max"] = 40, + ["min"] = 15, + }, ["Claw"] = { - ["max"] = 40, - ["min"] = 15, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2736829661", - ["text"] = "When you Kill a Rare Monster, #% chance to gain one of its Modifiers for 10 seconds", - ["type"] = "explicit", - }, - }, - ["6712_GainAccuracyEqualToStrength"] = { + ["max"] = 40, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2736829661", + ["text"] = "When you Kill a Rare Monster, #% chance to gain one of its Modifiers for 10 seconds", + ["type"] = "explicit", + }, + }, + ["6713_GainAccuracyEqualToStrength"] = { ["Helmet"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1575519214", - ["text"] = "Gain Accuracy Rating equal to your Strength", - ["type"] = "explicit", - }, - }, - ["6712_GainAccuracyEqualToStrengthMaven"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1575519214", + ["text"] = "Gain Accuracy Rating equal to your Strength", + ["type"] = "explicit", + }, + }, + ["6713_GainAccuracyEqualToStrengthMaven"] = { ["Helmet"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1575519214", - ["text"] = "Gain Accuracy Rating equal to your Strength", - ["type"] = "explicit", - }, - }, - ["6725_GainArcaneSurgeOnCrit"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1575519214", + ["text"] = "Gain Accuracy Rating equal to your Strength", + ["type"] = "explicit", + }, + }, + ["6726_GainArcaneSurgeOnCrit"] = { ["1HWeapon"] = { - ["max"] = 30, - ["min"] = 11, - }, + ["max"] = 30, + ["min"] = 11, + }, ["Wand"] = { - ["max"] = 30, - ["min"] = 11, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_446027070", - ["text"] = "#% chance to Gain Arcane Surge when you deal a Critical Strike", - ["type"] = "explicit", - }, - }, - ["6730_CastSpeedAndGainArcaneSurgeOnKillChance"] = { + ["max"] = 30, + ["min"] = 11, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_446027070", + ["text"] = "#% chance to Gain Arcane Surge when you deal a Critical Strike", + ["type"] = "explicit", + }, + }, + ["6731_CastSpeedAndGainArcaneSurgeOnKillChance"] = { ["1HAxe"] = { - ["max"] = 15, - ["min"] = 10, - }, + ["max"] = 15, + ["min"] = 10, + }, ["1HMace"] = { - ["max"] = 15, - ["min"] = 10, - }, + ["max"] = 15, + ["min"] = 10, + }, ["1HSword"] = { - ["max"] = 15, - ["min"] = 10, - }, + ["max"] = 15, + ["min"] = 10, + }, ["1HWeapon"] = { - ["max"] = 15, - ["min"] = 10, - }, + ["max"] = 15, + ["min"] = 10, + }, ["2HAxe"] = { - ["max"] = 15, - ["min"] = 10, - }, + ["max"] = 15, + ["min"] = 10, + }, ["2HMace"] = { - ["max"] = 15, - ["min"] = 10, - }, + ["max"] = 15, + ["min"] = 10, + }, ["2HSword"] = { - ["max"] = 15, - ["min"] = 10, - }, + ["max"] = 15, + ["min"] = 10, + }, ["2HWeapon"] = { - ["max"] = 15, - ["min"] = 10, - }, + ["max"] = 15, + ["min"] = 10, + }, ["Bow"] = { - ["max"] = 15, - ["min"] = 10, - }, + ["max"] = 15, + ["min"] = 10, + }, ["Claw"] = { - ["max"] = 15, - ["min"] = 10, - }, + ["max"] = 15, + ["min"] = 10, + }, ["Dagger"] = { - ["max"] = 15, - ["min"] = 10, - }, + ["max"] = 15, + ["min"] = 10, + }, ["Staff"] = { - ["max"] = 15, - ["min"] = 10, - }, + ["max"] = 15, + ["min"] = 10, + }, ["Wand"] = { - ["max"] = 15, - ["min"] = 10, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_573223427", - ["text"] = "#% chance to gain Arcane Surge when you Kill an Enemy", - ["type"] = "explicit", - }, - }, - ["6746_EnduranceChargeIfHitRecently"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_573223427", + ["text"] = "#% chance to gain Arcane Surge when you Kill an Enemy", + ["type"] = "explicit", + }, + }, + ["6747_EnduranceChargeIfHitRecently"] = { ["Chest"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2894476716", - ["text"] = "Gain # Endurance Charge every second if you've been Hit Recently", - ["type"] = "explicit", - }, - }, - ["6746_EnduranceChargeIfHitRecentlyMaven"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2894476716", + ["text"] = "Gain # Endurance Charge every second if you've been Hit Recently", + ["type"] = "explicit", + }, + }, + ["6747_EnduranceChargeIfHitRecentlyMaven"] = { ["Chest"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2894476716", - ["text"] = "Gain # Endurance Charge every second if you've been Hit Recently", - ["type"] = "explicit", - }, - }, - ["6755_CriticalChanceAndGainFrenzyChargeOnCriticalStrikePercent"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2894476716", + ["text"] = "Gain # Endurance Charge every second if you've been Hit Recently", + ["type"] = "explicit", + }, + }, + ["6756_CriticalChanceAndGainFrenzyChargeOnCriticalStrikePercent"] = { ["Quiver"] = { - ["max"] = 7, - ["min"] = 3, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3032585258", - ["text"] = "#% chance to gain a Frenzy Charge on Critical Strike", - ["type"] = "explicit", - }, - }, - ["6760_FrenzyChargeOnHittingRareOrUnique"] = { + ["max"] = 7, + ["min"] = 3, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3032585258", + ["text"] = "#% chance to gain a Frenzy Charge on Critical Strike", + ["type"] = "explicit", + }, + }, + ["6761_FrenzyChargeOnHittingRareOrUnique"] = { ["Quiver"] = { - ["max"] = 5, - ["min"] = 3, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4179663748", - ["text"] = "#% chance to gain a Frenzy Charge when you Hit a Rare or Unique Enemy", - ["type"] = "explicit", - }, - }, - ["6773_MaximumFrenzyChargesMaven"] = { + ["max"] = 5, + ["min"] = 3, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4179663748", + ["text"] = "#% chance to gain a Frenzy Charge when you Hit a Rare or Unique Enemy", + ["type"] = "explicit", + }, + }, + ["6774_MaximumFrenzyChargesMaven"] = { ["Gloves"] = { - ["max"] = 10, - ["min"] = 10, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2119664154", - ["text"] = "#% chance that if you would gain Frenzy Charges, you instead gain up to your maximum number of Frenzy Charges", - ["type"] = "explicit", - }, - }, - ["6780_GainOnslaughtDuringSoulGainPrevention"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2119664154", + ["text"] = "#% chance that if you would gain Frenzy Charges, you instead gain up to your maximum number of Frenzy Charges", + ["type"] = "explicit", + }, + }, + ["6781_GainOnslaughtDuringSoulGainPrevention"] = { ["Boots"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Gloves"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1572897579", - ["text"] = "You have Onslaught during Soul Gain Prevention", - ["type"] = "explicit", - }, - }, - ["6812_GainRandomChargeOnBlock"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1572897579", + ["text"] = "You have Onslaught during Soul Gain Prevention", + ["type"] = "explicit", + }, + }, + ["6813_GainRandomChargeOnBlock"] = { ["Shield"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2199099676", - ["text"] = "Gain an Endurance, Frenzy or Power charge when you Block", - ["type"] = "explicit", - }, - }, - ["6828_EnemyLifeLeechPermyriadWhileFocusedAndVaalPact"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2022851697", - ["text"] = "You have Vaal Pact while Focused", - ["type"] = "explicit", - }, - }, - ["6828_GainVaalPactWhileFocused"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2022851697", - ["text"] = "You have Vaal Pact while Focused", - ["type"] = "explicit", - }, - }, - ["6828_LifeLeechFromAnyDamagePermyriadWhileFocusedAndVaalPact"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2199099676", + ["text"] = "Gain an Endurance, Frenzy or Power charge when you Block", + ["type"] = "explicit", + }, + }, + ["6829_EnemyLifeLeechPermyriadWhileFocusedAndVaalPact"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2022851697", + ["text"] = "You have Vaal Pact while Focused", + ["type"] = "explicit", + }, + }, + ["6829_GainVaalPactWhileFocused"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2022851697", + ["text"] = "You have Vaal Pact while Focused", + ["type"] = "explicit", + }, + }, + ["6829_LifeLeechFromAnyDamagePermyriadWhileFocusedAndVaalPact"] = { ["Amulet"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2022851697", - ["text"] = "You have Vaal Pact while Focused", - ["type"] = "explicit", - }, - }, - ["6874_GlobalDefencesNoOtherDefenceModifiersOnEquipment"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2022851697", + ["text"] = "You have Vaal Pact while Focused", + ["type"] = "explicit", + }, + }, + ["6875_GlobalDefencesNoOtherDefenceModifiersOnEquipment"] = { ["Chest"] = { - ["max"] = 90, - ["min"] = 70, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2939710712", - ["text"] = "#% increased Global Defences if there are no Defence Modifiers on other Equipped Items", - ["type"] = "explicit", - }, - }, - ["6883_ChanceToFreezeAddedDamage"] = { + ["max"] = 90, + ["min"] = 70, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2939710712", + ["text"] = "#% increased Global Defences if there are no Defence Modifiers on other Equipped Items", + ["type"] = "explicit", + }, + }, + ["6884_ChanceToFreezeAddedDamage"] = { ["Ring"] = { - ["max"] = 37, - ["min"] = 26, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2233361223", - ["text"] = "Adds # to # Cold Damage against Chilled or Frozen Enemies", - ["type"] = "explicit", - }, - }, - ["6884_ChanceToIgniteAddedDamage"] = { + ["max"] = 37, + ["min"] = 26, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2233361223", + ["text"] = "Adds # to # Cold Damage against Chilled or Frozen Enemies", + ["type"] = "explicit", + }, + }, + ["6885_ChanceToIgniteAddedDamage"] = { ["Ring"] = { - ["max"] = 42, - ["min"] = 28.5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_794830148", - ["text"] = "Adds # to # Fire Damage against Ignited Enemies", - ["type"] = "explicit", - }, - }, - ["6886_ChanceToShockAddedDamage"] = { + ["max"] = 42, + ["min"] = 28.5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_794830148", + ["text"] = "Adds # to # Fire Damage against Ignited Enemies", + ["type"] = "explicit", + }, + }, + ["6887_ChanceToShockAddedDamage"] = { ["Ring"] = { - ["max"] = 47, - ["min"] = 35.5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_90012347", - ["text"] = "Adds # to # Lightning Damage against Shocked Enemies", - ["type"] = "explicit", - }, - }, + ["max"] = 47, + ["min"] = 35.5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_90012347", + ["text"] = "Adds # to # Lightning Damage against Shocked Enemies", + ["type"] = "explicit", + }, + }, ["68_AbyssJewelSocket"] = { ["1HAxe"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["1HMace"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["1HSword"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["1HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["2HAxe"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["2HMace"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["2HSword"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["2HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Boots"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Bow"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Chest"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Claw"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Dagger"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Gloves"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Helmet"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Staff"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Wand"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["sign"] = "", - ["specialCaseData"] = { - ["overrideModLineSingular"] = "Has 1 Abyssal Socket", - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3527617737", - ["text"] = "Has # Abyssal Sockets", - ["type"] = "explicit", - }, - }, - ["6902_GraceReservation"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_900639351", - ["text"] = "Grace has #% increased Mana Reservation Efficiency", - ["type"] = "explicit", - }, - }, - ["6903_GraceReservationEfficiency"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLineSingular"] = "Has 1 Abyssal Socket", + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3527617737", + ["text"] = "Has # Abyssal Sockets", + ["type"] = "explicit", + }, + }, + ["6903_GraceReservation"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1803598623", + ["text"] = "Grace has #% increased Mana Reservation Efficiency", + ["type"] = "explicit", + }, + }, + ["6904_GraceReservationEfficiency"] = { ["Amulet"] = { - ["max"] = 50, - ["min"] = 40, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_900639351", - ["text"] = "Grace has #% increased Mana Reservation Efficiency", - ["type"] = "explicit", - }, - }, - ["6941_HatredReservation"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2156140483", - ["text"] = "Hatred has #% increased Mana Reservation Efficiency", - ["type"] = "explicit", - }, - }, - ["6942_HatredReservationEfficiency"] = { + ["max"] = 50, + ["min"] = 40, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1803598623", + ["text"] = "Grace has #% increased Mana Reservation Efficiency", + ["type"] = "explicit", + }, + }, + ["6942_HatredReservation"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1920370417", + ["text"] = "Hatred has #% increased Mana Reservation Efficiency", + ["type"] = "explicit", + }, + }, + ["6943_HatredReservationEfficiency"] = { ["Amulet"] = { - ["max"] = 50, - ["min"] = 40, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2156140483", - ["text"] = "Hatred has #% increased Mana Reservation Efficiency", - ["type"] = "explicit", - }, - }, - ["7102_FreezeChanceAndDurationMaven"] = { + ["max"] = 50, + ["min"] = 40, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1920370417", + ["text"] = "Hatred has #% increased Mana Reservation Efficiency", + ["type"] = "explicit", + }, + }, + ["7103_FreezeChanceAndDurationMaven"] = { ["Helmet"] = { - ["max"] = 50, - ["min"] = 30, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1302208736", - ["text"] = "Freeze Enemies as though dealing #% more Damage", - ["type"] = "explicit", - }, - }, - ["7103_ShockChanceAndEffectMaven"] = { + ["max"] = 50, + ["min"] = 30, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1302208736", + ["text"] = "Freeze Enemies as though dealing #% more Damage", + ["type"] = "explicit", + }, + }, + ["7104_ShockChanceAndEffectMaven"] = { ["Helmet"] = { - ["max"] = 50, - ["min"] = 30, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2206792089", - ["text"] = "Shock Enemies as though dealing #% more Damage", - ["type"] = "explicit", - }, - }, - ["7141_ArcaneSurgeOnSpendingMana"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_913614572", - ["text"] = "Gain Arcane Surge after Spending a total of # Mana", - ["type"] = "explicit", - }, - }, - ["7151_HitAndAilmentDamageCursedEnemies"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_539970476", - ["text"] = "#% increased Damage with Hits and Ailments against Cursed Enemies", - ["type"] = "explicit", - }, - }, - ["7170_ChanceToIgnoreEnemyArmour"] = { + ["max"] = 50, + ["min"] = 30, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2206792089", + ["text"] = "Shock Enemies as though dealing #% more Damage", + ["type"] = "explicit", + }, + }, + ["7152_HitAndAilmentDamageCursedEnemies"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_539970476", + ["text"] = "#% increased Damage with Hits and Ailments against Cursed Enemies", + ["type"] = "explicit", + }, + }, + ["7171_ChanceToIgnoreEnemyArmour"] = { ["1HMace"] = { - ["max"] = 35, - ["min"] = 25, - }, + ["max"] = 35, + ["min"] = 25, + }, ["1HWeapon"] = { - ["max"] = 35, - ["min"] = 25, - }, + ["max"] = 35, + ["min"] = 25, + }, ["2HWeapon"] = { - ["max"] = 70, - ["min"] = 50, - }, + ["max"] = 70, + ["min"] = 50, + }, ["Belt"] = { - ["max"] = 50, - ["min"] = 30, - }, + ["max"] = 50, + ["min"] = 30, + }, ["Dagger"] = { - ["max"] = 35, - ["min"] = 25, - }, + ["max"] = 35, + ["min"] = 25, + }, ["Staff"] = { - ["max"] = 70, - ["min"] = 50, - }, + ["max"] = 70, + ["min"] = 50, + }, ["Wand"] = { - ["max"] = 35, - ["min"] = 25, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2839577586", - ["text"] = "Hits have #% chance to ignore Enemy Physical Damage Reduction", - ["type"] = "explicit", - }, - }, - ["7239_ImmuneToStatusAilmentsWhileFocused"] = { + ["max"] = 35, + ["min"] = 25, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2839577586", + ["text"] = "Hits have #% chance to ignore Enemy Physical Damage Reduction", + ["type"] = "explicit", + }, + }, + ["7240_ImmuneToStatusAilmentsWhileFocused"] = { ["Boots"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1766730250", - ["text"] = "You are Immune to Ailments while Focused", - ["type"] = "explicit", - }, - }, - ["7239_ImmuneToStatusAilmentsWhileFocusedCDR"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1766730250", + ["text"] = "You are Immune to Ailments while Focused", + ["type"] = "explicit", + }, + }, + ["7240_ImmuneToStatusAilmentsWhileFocusedCDR"] = { ["Boots"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1766730250", - ["text"] = "You are Immune to Ailments while Focused", - ["type"] = "explicit", - }, - }, - ["7242_ImpaleEffect"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1766730250", + ["text"] = "You are Immune to Ailments while Focused", + ["type"] = "explicit", + }, + }, + ["7243_ImpaleEffect"] = { ["1HAxe"] = { - ["max"] = 25, - ["min"] = 12, - }, + ["max"] = 25, + ["min"] = 12, + }, ["1HMace"] = { - ["max"] = 25, - ["min"] = 12, - }, + ["max"] = 25, + ["min"] = 12, + }, ["1HSword"] = { - ["max"] = 25, - ["min"] = 12, - }, + ["max"] = 25, + ["min"] = 12, + }, ["1HWeapon"] = { - ["max"] = 25, - ["min"] = 12, - }, + ["max"] = 25, + ["min"] = 12, + }, ["2HAxe"] = { - ["max"] = 38, - ["min"] = 12, - }, + ["max"] = 38, + ["min"] = 12, + }, ["2HMace"] = { - ["max"] = 38, - ["min"] = 12, - }, + ["max"] = 38, + ["min"] = 12, + }, ["2HSword"] = { - ["max"] = 38, - ["min"] = 12, - }, + ["max"] = 38, + ["min"] = 12, + }, ["2HWeapon"] = { - ["max"] = 38, - ["min"] = 12, - }, + ["max"] = 38, + ["min"] = 12, + }, ["AbyssJewel"] = { - ["max"] = 6, - ["min"] = 3, - }, + ["max"] = 6, + ["min"] = 3, + }, ["AnyJewel"] = { - ["max"] = 6, - ["min"] = 3, - }, + ["max"] = 6, + ["min"] = 3, + }, ["Bow"] = { - ["max"] = 38, - ["min"] = 25, - }, + ["max"] = 38, + ["min"] = 25, + }, ["Claw"] = { - ["max"] = 25, - ["min"] = 12, - }, + ["max"] = 25, + ["min"] = 12, + }, ["Dagger"] = { - ["max"] = 25, - ["min"] = 12, - }, + ["max"] = 25, + ["min"] = 12, + }, ["Staff"] = { - ["max"] = 38, - ["min"] = 25, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_298173317", - ["text"] = "#% increased Impale Effect", - ["type"] = "explicit", - }, - }, - ["7249_ImpaleEffectFromDistance"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2521866096", - ["text"] = "Projectiles gain Impale effect as they travel farther, causing Impales they inflict to have up to #% increased effect", - ["type"] = "explicit", - }, - }, - ["7292_GlobalIntelligenceGemLevel"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_493812998", - ["text"] = "+# to Level of all Intelligence Skill Gems", - ["type"] = "explicit", - }, - }, - ["7347_LifeRecoveryRateMaven"] = { + ["max"] = 38, + ["min"] = 25, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_298173317", + ["text"] = "#% increased Impale Effect", + ["type"] = "explicit", + }, + }, + ["7250_ImpaleEffectFromDistance"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2521866096", + ["text"] = "Projectiles gain Impale effect as they travel farther, causing Impales they inflict to have up to #% increased effect", + ["type"] = "explicit", + }, + }, + ["7293_GlobalIntelligenceGemLevel"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_493812998", + ["text"] = "+# to Level of all Intelligence Skill Gems", + ["type"] = "explicit", + }, + }, + ["7348_LifeRecoveryRateMaven"] = { ["Chest"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2592686757", - ["text"] = "Life Flasks gain # Charge every 3 seconds", - ["type"] = "explicit", - }, - }, - ["7362_LifeLeechFromAnyDamagePermyriadWhileFocusedAndVaalPact"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2592686757", + ["text"] = "Life Flasks gain # Charge every 3 seconds", + ["type"] = "explicit", + }, + }, + ["7363_LifeLeechFromAnyDamagePermyriadWhileFocusedAndVaalPact"] = { ["Amulet"] = { - ["max"] = 15, - ["min"] = 10, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3324747104", - ["text"] = "#% of Damage Leeched as Life while Focused", - ["type"] = "explicit", - }, - }, - ["7363_EnemyLifeLeechPermyriadWhileFocusedAndVaalPact"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_497196601", - ["text"] = "#% of Damage Leeched by Enemy as Life while Focused", - ["type"] = "explicit", - }, - }, - ["7393_MaximumLifeOnKillPercentMaven"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3324747104", + ["text"] = "#% of Damage Leeched as Life while Focused", + ["type"] = "explicit", + }, + }, + ["7364_EnemyLifeLeechPermyriadWhileFocusedAndVaalPact"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_497196601", + ["text"] = "#% of Damage Leeched by Enemy as Life while Focused", + ["type"] = "explicit", + }, + }, + ["7394_MaximumLifeOnKillPercentMaven"] = { ["Chest"] = { - ["max"] = 10, - ["min"] = 5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3353368340", - ["text"] = "#% increased Life Recovery Rate if you haven't Killed Recently", - ["type"] = "explicit", - }, - }, - ["7413_LifeRegenerationRatePercentageIfCorpseConsumedRecently"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1107877645", - ["text"] = "Regenerate #% of Life per second if you've Consumed a corpse Recently", - ["type"] = "explicit", - }, - }, - ["7424_LifeRegenerationRateWhileMoving"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3353368340", + ["text"] = "#% increased Life Recovery Rate if you haven't Killed Recently", + ["type"] = "explicit", + }, + }, + ["7414_LifeRegenerationRatePercentageIfCorpseConsumedRecently"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1107877645", + ["text"] = "Regenerate #% of Life per second if you've Consumed a corpse Recently", + ["type"] = "explicit", + }, + }, + ["7425_LifeRegenerationRateWhileMoving"] = { ["AbyssJewel"] = { - ["max"] = 1, - ["min"] = 0.5, - }, + ["max"] = 1, + ["min"] = 0.5, + }, ["AnyJewel"] = { - ["max"] = 1, - ["min"] = 0.5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_908516597", - ["text"] = "Regenerate #% of Life per second while moving", - ["type"] = "explicit", - }, - }, - ["7426_LifeRegenerationRatePerMinuteWhileUsingFlask"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3500911418", - ["text"] = "Regenerate #% of Life per second during any Flask Effect", - ["type"] = "explicit", - }, - }, - ["7433_AbyssJewelShockEffect"] = { + ["max"] = 1, + ["min"] = 0.5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_908516597", + ["text"] = "Regenerate #% of Life per second while moving", + ["type"] = "explicit", + }, + }, + ["7427_LifeRegenerationRatePerMinuteWhileUsingFlask"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3500911418", + ["text"] = "Regenerate #% of Life per second during any Flask Effect", + ["type"] = "explicit", + }, + }, + ["7434_AbyssJewelShockEffect"] = { ["AbyssJewel"] = { - ["max"] = 15, - ["min"] = 10, - }, + ["max"] = 15, + ["min"] = 10, + }, ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 10, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3081816887", - ["text"] = "#% increased Effect of Lightning Ailments", - ["type"] = "explicit", - }, - }, - ["7433_LightningAilmentEffect"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3081816887", - ["text"] = "#% increased Effect of Lightning Ailments", - ["type"] = "explicit", - }, - }, - ["7433_ShockChanceAndEffect"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3081816887", + ["text"] = "#% increased Effect of Lightning Ailments", + ["type"] = "explicit", + }, + }, + ["7434_LightningAilmentEffect"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3081816887", + ["text"] = "#% increased Effect of Lightning Ailments", + ["type"] = "explicit", + }, + }, + ["7434_ShockChanceAndEffect"] = { ["Helmet"] = { - ["max"] = 15, - ["min"] = 8, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3081816887", - ["text"] = "#% increased Effect of Lightning Ailments", - ["type"] = "explicit", - }, - }, - ["7433_ShockEffectSupported"] = { + ["max"] = 15, + ["min"] = 8, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3081816887", + ["text"] = "#% increased Effect of Lightning Ailments", + ["type"] = "explicit", + }, + }, + ["7434_ShockEffectSupported"] = { ["Helmet"] = { - ["max"] = 20, - ["min"] = 8, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3081816887", - ["text"] = "#% increased Effect of Lightning Ailments", - ["type"] = "explicit", - }, - }, - ["7435_LightningAndChaosDamageResistance"] = { + ["max"] = 20, + ["min"] = 8, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3081816887", + ["text"] = "#% increased Effect of Lightning Ailments", + ["type"] = "explicit", + }, + }, + ["7436_LightningAndChaosDamageResistance"] = { ["Amulet"] = { - ["max"] = 20, - ["min"] = 9, - }, + ["max"] = 20, + ["min"] = 9, + }, ["Belt"] = { - ["max"] = 20, - ["min"] = 9, - }, + ["max"] = 20, + ["min"] = 9, + }, ["Boots"] = { - ["max"] = 20, - ["min"] = 9, - }, + ["max"] = 20, + ["min"] = 9, + }, ["Chest"] = { - ["max"] = 20, - ["min"] = 9, - }, + ["max"] = 20, + ["min"] = 9, + }, ["Gloves"] = { - ["max"] = 20, - ["min"] = 9, - }, + ["max"] = 20, + ["min"] = 9, + }, ["Helmet"] = { - ["max"] = 20, - ["min"] = 9, - }, + ["max"] = 20, + ["min"] = 9, + }, ["Quiver"] = { - ["max"] = 20, - ["min"] = 9, - }, + ["max"] = 20, + ["min"] = 9, + }, ["Ring"] = { - ["max"] = 20, - ["min"] = 9, - }, + ["max"] = 20, + ["min"] = 9, + }, ["Shield"] = { - ["max"] = 20, - ["min"] = 9, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3465022881", - ["text"] = "+#% to Lightning and Chaos Resistances", - ["type"] = "explicit", - }, - }, - ["7451_PhysicalDamageTakenAsLightningUberMaven"] = { + ["max"] = 20, + ["min"] = 9, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3465022881", + ["text"] = "+#% to Lightning and Chaos Resistances", + ["type"] = "explicit", + }, + }, + ["7452_PhysicalDamageTakenAsLightningUberMaven"] = { ["Chest"] = { - ["max"] = 10, - ["min"] = 7, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2970621759", - ["text"] = "#% of Lightning Damage taken Recouped as Life", - ["type"] = "explicit", - }, - }, - ["7461_LightningResistanceCannotBePenetrated"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3515979920", - ["text"] = "Lightning Resistance cannot be Penetrated", - ["type"] = "explicit", - }, - }, - ["7465_GlobalLightningGemLevel"] = { + ["max"] = 10, + ["min"] = 7, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2970621759", + ["text"] = "#% of Lightning Damage taken Recouped as Life", + ["type"] = "explicit", + }, + }, + ["7466_GlobalLightningGemLevel"] = { ["Amulet"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1147690586", - ["text"] = "+# to Level of all Lightning Skill Gems", - ["type"] = "explicit", - }, - }, - ["7466_LightningSkillManaCostWhileShocked"] = { - ["inverseKey"] = "less", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3964669425", - ["text"] = "#% more Mana cost of Lightning Skills while Shocked", - ["type"] = "explicit", - }, - }, + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1147690586", + ["text"] = "+# to Level of all Lightning Skill Gems", + ["type"] = "explicit", + }, + }, + ["7467_LightningSkillManaCostWhileShocked"] = { + ["inverseKey"] = "less", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3964669425", + ["text"] = "#% more Mana cost of Lightning Skills while Shocked", + ["type"] = "explicit", + }, + }, ["758_CurseOnHitCriticalWeakness"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_3924520095", - ["text"] = "Trigger Level # Assassin's Mark when you Hit a Rare or Unique Enemy and have no Mark", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_3382957283", + ["text"] = "Trigger Level # Assassin's Mark when you Hit a Rare or Unique Enemy and have no Mark", + ["type"] = "explicit", + }, + }, ["759_CurseOnHitPoachersMark"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_3904501306", - ["text"] = "Trigger Level # Poacher's Mark when you Hit a Rare or Unique Enemy and have no Mark", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_2659463225", + ["text"] = "Trigger Level # Poacher's Mark when you Hit a Rare or Unique Enemy and have no Mark", + ["type"] = "explicit", + }, + }, ["761_CurseOnHitWarlordsMark"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_2021420128", - ["text"] = "Trigger Level # Warlords's Mark when you Hit a Rare or Unique Enemy and have no Mark", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_2021420128", + ["text"] = "Trigger Level # Warlords's Mark when you Hit a Rare or Unique Enemy and have no Mark", + ["type"] = "explicit", + }, + }, ["779_FireBurstOnHit"] = { ["1HAxe"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["1HMace"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["1HSword"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["1HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["2HAxe"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["2HMace"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["2HSword"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["2HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Bow"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Claw"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Dagger"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Staff"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Wand"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1621470436", - ["text"] = "Cast Level 20 Fire Burst on Hit", - ["type"] = "explicit", - }, - }, - ["7860_LocalIncreasedPhysicalDamageAndImpaleChance"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1621470436", + ["text"] = "Cast Level 20 Fire Burst on Hit", + ["type"] = "explicit", + }, + }, + ["7861_LocalIncreasedPhysicalDamageAndImpaleChance"] = { ["1HAxe"] = { - ["max"] = 25, - ["min"] = 13, - }, + ["max"] = 25, + ["min"] = 13, + }, ["1HMace"] = { - ["max"] = 25, - ["min"] = 13, - }, + ["max"] = 25, + ["min"] = 13, + }, ["1HSword"] = { - ["max"] = 25, - ["min"] = 13, - }, + ["max"] = 25, + ["min"] = 13, + }, ["1HWeapon"] = { - ["max"] = 25, - ["min"] = 13, - }, + ["max"] = 25, + ["min"] = 13, + }, ["2HAxe"] = { - ["max"] = 25, - ["min"] = 13, - }, + ["max"] = 25, + ["min"] = 13, + }, ["2HMace"] = { - ["max"] = 25, - ["min"] = 13, - }, + ["max"] = 25, + ["min"] = 13, + }, ["2HSword"] = { - ["max"] = 25, - ["min"] = 13, - }, + ["max"] = 25, + ["min"] = 13, + }, ["2HWeapon"] = { - ["max"] = 25, - ["min"] = 13, - }, + ["max"] = 25, + ["min"] = 13, + }, ["Bow"] = { - ["max"] = 25, - ["min"] = 13, - }, + ["max"] = 25, + ["min"] = 13, + }, ["Claw"] = { - ["max"] = 25, - ["min"] = 13, - }, + ["max"] = 25, + ["min"] = 13, + }, ["Dagger"] = { - ["max"] = 25, - ["min"] = 13, - }, + ["max"] = 25, + ["min"] = 13, + }, ["Staff"] = { - ["max"] = 25, - ["min"] = 13, - }, + ["max"] = 25, + ["min"] = 13, + }, ["Wand"] = { - ["max"] = 25, - ["min"] = 13, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3739863694", - ["text"] = "#% chance to Impale Enemies on Hit with Attacks", - ["type"] = "explicit", - }, - }, - ["7864_LocalBleedDamageOverTimeMultiplier"] = { + ["max"] = 25, + ["min"] = 13, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3739863694", + ["text"] = "#% chance to Impale Enemies on Hit with Attacks", + ["type"] = "explicit", + }, + }, + ["7865_LocalBleedDamageOverTimeMultiplier"] = { ["1HAxe"] = { - ["max"] = 59, - ["min"] = 37, - }, + ["max"] = 59, + ["min"] = 37, + }, ["1HMace"] = { - ["max"] = 59, - ["min"] = 37, - }, + ["max"] = 59, + ["min"] = 37, + }, ["1HSword"] = { - ["max"] = 59, - ["min"] = 37, - }, + ["max"] = 59, + ["min"] = 37, + }, ["1HWeapon"] = { - ["max"] = 59, - ["min"] = 37, - }, + ["max"] = 59, + ["min"] = 37, + }, ["2HAxe"] = { - ["max"] = 59, - ["min"] = 37, - }, + ["max"] = 59, + ["min"] = 37, + }, ["2HMace"] = { - ["max"] = 59, - ["min"] = 37, - }, + ["max"] = 59, + ["min"] = 37, + }, ["2HSword"] = { - ["max"] = 59, - ["min"] = 37, - }, + ["max"] = 59, + ["min"] = 37, + }, ["2HWeapon"] = { - ["max"] = 59, - ["min"] = 37, - }, + ["max"] = 59, + ["min"] = 37, + }, ["Bow"] = { - ["max"] = 59, - ["min"] = 37, - }, + ["max"] = 59, + ["min"] = 37, + }, ["Claw"] = { - ["max"] = 59, - ["min"] = 37, - }, + ["max"] = 59, + ["min"] = 37, + }, ["Dagger"] = { - ["max"] = 59, - ["min"] = 37, - }, + ["max"] = 59, + ["min"] = 37, + }, ["Staff"] = { - ["max"] = 59, - ["min"] = 37, - }, + ["max"] = 59, + ["min"] = 37, + }, ["Wand"] = { - ["max"] = 59, - ["min"] = 37, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_951608773", - ["text"] = "+#% to Damage over Time Multiplier for Bleeding from Hits with this Weapon", - ["type"] = "explicit", - }, - }, - ["7870_LocalChanceForBleedingDamage100FinalInflictedWithThisWeapon"] = { + ["max"] = 59, + ["min"] = 37, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_951608773", + ["text"] = "+#% to Damage over Time Multiplier for Bleeding from Hits with this Weapon", + ["type"] = "explicit", + }, + }, + ["7871_LocalChanceForBleedingDamage100FinalInflictedWithThisWeapon"] = { ["1HAxe"] = { - ["max"] = 60, - ["min"] = 60, - }, + ["max"] = 60, + ["min"] = 60, + }, ["1HMace"] = { - ["max"] = 60, - ["min"] = 60, - }, + ["max"] = 60, + ["min"] = 60, + }, ["1HSword"] = { - ["max"] = 60, - ["min"] = 60, - }, + ["max"] = 60, + ["min"] = 60, + }, ["1HWeapon"] = { - ["max"] = 60, - ["min"] = 60, - }, + ["max"] = 60, + ["min"] = 60, + }, ["2HAxe"] = { - ["max"] = 60, - ["min"] = 60, - }, + ["max"] = 60, + ["min"] = 60, + }, ["2HMace"] = { - ["max"] = 60, - ["min"] = 60, - }, + ["max"] = 60, + ["min"] = 60, + }, ["2HSword"] = { - ["max"] = 60, - ["min"] = 60, - }, + ["max"] = 60, + ["min"] = 60, + }, ["2HWeapon"] = { - ["max"] = 60, - ["min"] = 60, - }, + ["max"] = 60, + ["min"] = 60, + }, ["Bow"] = { - ["max"] = 60, - ["min"] = 60, - }, + ["max"] = 60, + ["min"] = 60, + }, ["Claw"] = { - ["max"] = 60, - ["min"] = 60, - }, + ["max"] = 60, + ["min"] = 60, + }, ["Dagger"] = { - ["max"] = 60, - ["min"] = 60, - }, + ["max"] = 60, + ["min"] = 60, + }, ["Staff"] = { - ["max"] = 60, - ["min"] = 60, - }, + ["max"] = 60, + ["min"] = 60, + }, ["Wand"] = { - ["max"] = 60, - ["min"] = 60, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1560880986", - ["text"] = "#% chance for Bleeding inflicted with this Weapon to deal 100% more Damage", - ["type"] = "explicit", - }, - }, - ["7871_LocalChanceForPoisonDamage100FinalInflictedWithThisWeapon"] = { + ["max"] = 60, + ["min"] = 60, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1560880986", + ["text"] = "#% chance for Bleeding inflicted with this Weapon to deal 100% more Damage", + ["type"] = "explicit", + }, + }, + ["7872_LocalChanceForPoisonDamage100FinalInflictedWithThisWeapon"] = { ["1HAxe"] = { - ["max"] = 60, - ["min"] = 60, - }, + ["max"] = 60, + ["min"] = 60, + }, ["1HMace"] = { - ["max"] = 60, - ["min"] = 60, - }, + ["max"] = 60, + ["min"] = 60, + }, ["1HSword"] = { - ["max"] = 60, - ["min"] = 60, - }, + ["max"] = 60, + ["min"] = 60, + }, ["1HWeapon"] = { - ["max"] = 60, - ["min"] = 60, - }, + ["max"] = 60, + ["min"] = 60, + }, ["2HAxe"] = { - ["max"] = 60, - ["min"] = 60, - }, + ["max"] = 60, + ["min"] = 60, + }, ["2HMace"] = { - ["max"] = 60, - ["min"] = 60, - }, + ["max"] = 60, + ["min"] = 60, + }, ["2HSword"] = { - ["max"] = 60, - ["min"] = 60, - }, + ["max"] = 60, + ["min"] = 60, + }, ["2HWeapon"] = { - ["max"] = 60, - ["min"] = 60, - }, + ["max"] = 60, + ["min"] = 60, + }, ["Bow"] = { - ["max"] = 60, - ["min"] = 60, - }, + ["max"] = 60, + ["min"] = 60, + }, ["Claw"] = { - ["max"] = 60, - ["min"] = 60, - }, + ["max"] = 60, + ["min"] = 60, + }, ["Dagger"] = { - ["max"] = 60, - ["min"] = 60, - }, + ["max"] = 60, + ["min"] = 60, + }, ["Staff"] = { - ["max"] = 60, - ["min"] = 60, - }, + ["max"] = 60, + ["min"] = 60, + }, ["Wand"] = { - ["max"] = 60, - ["min"] = 60, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_768124628", - ["text"] = "#% chance for Poisons inflicted with this Weapon to deal 300% more Damage", - ["type"] = "explicit", - }, - }, - ["7874_LocalChanceToIntimidateOnHit"] = { + ["max"] = 60, + ["min"] = 60, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2523146878", + ["text"] = "#% chance for Poisons inflicted with this Weapon to deal 100% more Damage", + ["type"] = "explicit", + }, + }, + ["7875_LocalChanceToIntimidateOnHit"] = { ["1HAxe"] = { - ["max"] = 15, - ["min"] = 7, - }, + ["max"] = 15, + ["min"] = 7, + }, ["1HMace"] = { - ["max"] = 15, - ["min"] = 7, - }, + ["max"] = 15, + ["min"] = 7, + }, ["1HSword"] = { - ["max"] = 15, - ["min"] = 7, - }, + ["max"] = 15, + ["min"] = 7, + }, ["1HWeapon"] = { - ["max"] = 15, - ["min"] = 7, - }, + ["max"] = 15, + ["min"] = 7, + }, ["2HAxe"] = { - ["max"] = 15, - ["min"] = 7, - }, + ["max"] = 15, + ["min"] = 7, + }, ["2HMace"] = { - ["max"] = 15, - ["min"] = 7, - }, + ["max"] = 15, + ["min"] = 7, + }, ["2HSword"] = { - ["max"] = 15, - ["min"] = 7, - }, + ["max"] = 15, + ["min"] = 7, + }, ["2HWeapon"] = { - ["max"] = 15, - ["min"] = 7, - }, + ["max"] = 15, + ["min"] = 7, + }, ["Bow"] = { - ["max"] = 15, - ["min"] = 7, - }, + ["max"] = 15, + ["min"] = 7, + }, ["Claw"] = { - ["max"] = 15, - ["min"] = 7, - }, + ["max"] = 15, + ["min"] = 7, + }, ["Dagger"] = { - ["max"] = 15, - ["min"] = 7, - }, + ["max"] = 15, + ["min"] = 7, + }, ["Staff"] = { - ["max"] = 15, - ["min"] = 7, - }, + ["max"] = 15, + ["min"] = 7, + }, ["Wand"] = { - ["max"] = 15, - ["min"] = 7, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2089652545", - ["text"] = "#% chance to Intimidate Enemies for 4 seconds on Hit", - ["type"] = "explicit", - }, - }, - ["7875_LocalChaosDamagePenetrationHybrid"] = { + ["max"] = 15, + ["min"] = 7, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2089652545", + ["text"] = "#% chance to Intimidate Enemies for 4 seconds on Hit", + ["type"] = "explicit", + }, + }, + ["7876_LocalChaosDamagePenetrationHybrid"] = { ["1HAxe"] = { - ["max"] = 6, - ["min"] = 4, - }, + ["max"] = 6, + ["min"] = 4, + }, ["1HMace"] = { - ["max"] = 6, - ["min"] = 4, - }, + ["max"] = 6, + ["min"] = 4, + }, ["1HSword"] = { - ["max"] = 6, - ["min"] = 4, - }, + ["max"] = 6, + ["min"] = 4, + }, ["1HWeapon"] = { - ["max"] = 6, - ["min"] = 4, - }, + ["max"] = 6, + ["min"] = 4, + }, ["2HAxe"] = { - ["max"] = 6, - ["min"] = 4, - }, + ["max"] = 6, + ["min"] = 4, + }, ["2HMace"] = { - ["max"] = 6, - ["min"] = 4, - }, + ["max"] = 6, + ["min"] = 4, + }, ["2HSword"] = { - ["max"] = 6, - ["min"] = 4, - }, + ["max"] = 6, + ["min"] = 4, + }, ["2HWeapon"] = { - ["max"] = 6, - ["min"] = 4, - }, + ["max"] = 6, + ["min"] = 4, + }, ["Bow"] = { - ["max"] = 6, - ["min"] = 4, - }, + ["max"] = 6, + ["min"] = 4, + }, ["Claw"] = { - ["max"] = 6, - ["min"] = 4, - }, + ["max"] = 6, + ["min"] = 4, + }, ["Dagger"] = { - ["max"] = 6, - ["min"] = 4, - }, + ["max"] = 6, + ["min"] = 4, + }, ["Staff"] = { - ["max"] = 6, - ["min"] = 4, - }, + ["max"] = 6, + ["min"] = 4, + }, ["Wand"] = { - ["max"] = 6, - ["min"] = 4, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3762412853", - ["text"] = "Attacks with this Weapon Penetrate #% Chaos Resistance", - ["type"] = "explicit", - }, - }, - ["7875_LocalChaosPenetration"] = { + ["max"] = 6, + ["min"] = 4, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3762412853", + ["text"] = "Attacks with this Weapon Penetrate #% Chaos Resistance", + ["type"] = "explicit", + }, + }, + ["7876_LocalChaosPenetration"] = { ["1HAxe"] = { - ["max"] = 16, - ["min"] = 6, - }, + ["max"] = 16, + ["min"] = 6, + }, ["1HMace"] = { - ["max"] = 16, - ["min"] = 6, - }, + ["max"] = 16, + ["min"] = 6, + }, ["1HSword"] = { - ["max"] = 16, - ["min"] = 6, - }, + ["max"] = 16, + ["min"] = 6, + }, ["1HWeapon"] = { - ["max"] = 16, - ["min"] = 6, - }, + ["max"] = 16, + ["min"] = 6, + }, ["2HAxe"] = { - ["max"] = 16, - ["min"] = 6, - }, + ["max"] = 16, + ["min"] = 6, + }, ["2HMace"] = { - ["max"] = 16, - ["min"] = 6, - }, + ["max"] = 16, + ["min"] = 6, + }, ["2HSword"] = { - ["max"] = 16, - ["min"] = 6, - }, + ["max"] = 16, + ["min"] = 6, + }, ["2HWeapon"] = { - ["max"] = 16, - ["min"] = 6, - }, + ["max"] = 16, + ["min"] = 6, + }, ["Bow"] = { - ["max"] = 16, - ["min"] = 6, - }, + ["max"] = 16, + ["min"] = 6, + }, ["Claw"] = { - ["max"] = 16, - ["min"] = 6, - }, + ["max"] = 16, + ["min"] = 6, + }, ["Dagger"] = { - ["max"] = 16, - ["min"] = 6, - }, + ["max"] = 16, + ["min"] = 6, + }, ["Staff"] = { - ["max"] = 16, - ["min"] = 6, - }, + ["max"] = 16, + ["min"] = 6, + }, ["Wand"] = { - ["max"] = 16, - ["min"] = 6, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3762412853", - ["text"] = "Attacks with this Weapon Penetrate #% Chaos Resistance", - ["type"] = "explicit", - }, - }, - ["7884_CullingStrikeOnBleedingEnemiesUber"] = { + ["max"] = 16, + ["min"] = 6, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3762412853", + ["text"] = "Attacks with this Weapon Penetrate #% Chaos Resistance", + ["type"] = "explicit", + }, + }, + ["7885_CullingStrikeOnBleedingEnemiesUber"] = { ["1HAxe"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["1HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["2HAxe"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["2HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2558253923", - ["text"] = "Hits with this Weapon have Culling Strike against Bleeding Enemies", - ["type"] = "explicit", - }, - }, - ["7892_PowerChargeOnManaSpent"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2558253923", + ["text"] = "Hits with this Weapon have Culling Strike against Bleeding Enemies", + ["type"] = "explicit", + }, + }, + ["7893_PowerChargeOnManaSpent"] = { ["1HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Wand"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3269060224", - ["text"] = "Gain a Power Charge after Spending a total of 200 Mana", - ["type"] = "explicit", - }, - }, - ["7911_NearbyEnemyChaosDamageResistance"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3269060224", + ["text"] = "Gain a Power Charge after Spending a total of 200 Mana", + ["type"] = "explicit", + }, + }, + ["7912_NearbyEnemyChaosDamageResistance"] = { ["Helmet"] = { - ["max"] = 12, - ["min"] = 9, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1902595112", - ["text"] = "Nearby Enemies have +#% to Chaos Resistance", - ["type"] = "explicit", - }, - }, - ["7912_NearbyEnemyColdDamageResistance"] = { + ["max"] = 12, + ["min"] = 9, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1902595112", + ["text"] = "Nearby Enemies have +#% to Chaos Resistance", + ["type"] = "explicit", + }, + }, + ["7913_NearbyEnemyColdDamageResistance"] = { ["Helmet"] = { - ["max"] = 12, - ["min"] = 9, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2674336304", - ["text"] = "Nearby Enemies have +#% to Cold Resistance", - ["type"] = "explicit", - }, - }, - ["7913_NearbyEnemyElementalDamageTaken"] = { + ["max"] = 12, + ["min"] = 9, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2674336304", + ["text"] = "Nearby Enemies have +#% to Cold Resistance", + ["type"] = "explicit", + }, + }, + ["7914_NearbyEnemyElementalDamageTaken"] = { ["Helmet"] = { - ["max"] = 9, - ["min"] = 6, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_639595152", - ["text"] = "Nearby Enemies take #% increased Elemental Damage", - ["type"] = "explicit", - }, - }, - ["7914_NearbyEnemyFireDamageResistance"] = { + ["max"] = 9, + ["min"] = 6, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_639595152", + ["text"] = "Nearby Enemies take #% increased Elemental Damage", + ["type"] = "explicit", + }, + }, + ["7915_NearbyEnemyFireDamageResistance"] = { ["Helmet"] = { - ["max"] = 12, - ["min"] = 9, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3914021960", - ["text"] = "Nearby Enemies have +#% to Fire Resistance", - ["type"] = "explicit", - }, - }, - ["7916_NearbyEnemyLightningDamageResistance"] = { + ["max"] = 12, + ["min"] = 9, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3914021960", + ["text"] = "Nearby Enemies have +#% to Fire Resistance", + ["type"] = "explicit", + }, + }, + ["7917_NearbyEnemyLightningDamageResistance"] = { ["Helmet"] = { - ["max"] = 12, - ["min"] = 9, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1849749435", - ["text"] = "Nearby Enemies have +#% to Lightning Resistance", - ["type"] = "explicit", - }, - }, - ["7918_NearbyEnemyPhysicalDamageTaken"] = { + ["max"] = 12, + ["min"] = 9, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1849749435", + ["text"] = "Nearby Enemies have +#% to Lightning Resistance", + ["type"] = "explicit", + }, + }, + ["7919_NearbyEnemyPhysicalDamageTaken"] = { ["Helmet"] = { - ["max"] = 12, - ["min"] = 9, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_415837237", - ["text"] = "Nearby Enemies take #% increased Physical Damage", - ["type"] = "explicit", - }, - }, + ["max"] = 12, + ["min"] = 9, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_415837237", + ["text"] = "Nearby Enemies take #% increased Physical Damage", + ["type"] = "explicit", + }, + }, ["791_SummonWolfOnKillOld"] = { ["Amulet"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1468606528", - ["text"] = "Trigger Level 10 Summon Spectral Wolf on Kill", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1468606528", + ["text"] = "Trigger Level 10 Summon Spectral Wolf on Kill", + ["type"] = "explicit", + }, + }, ["792_LocalAttackSpeedAndLocalDisplayTriggerLevel1BloodRageOnKillChance"] = { ["1HAxe"] = { - ["max"] = 15, - ["min"] = 10, - }, + ["max"] = 15, + ["min"] = 10, + }, ["1HMace"] = { - ["max"] = 15, - ["min"] = 10, - }, + ["max"] = 15, + ["min"] = 10, + }, ["1HSword"] = { - ["max"] = 15, - ["min"] = 10, - }, + ["max"] = 15, + ["min"] = 10, + }, ["1HWeapon"] = { - ["max"] = 15, - ["min"] = 10, - }, + ["max"] = 15, + ["min"] = 10, + }, ["2HAxe"] = { - ["max"] = 15, - ["min"] = 10, - }, + ["max"] = 15, + ["min"] = 10, + }, ["2HMace"] = { - ["max"] = 15, - ["min"] = 10, - }, + ["max"] = 15, + ["min"] = 10, + }, ["2HSword"] = { - ["max"] = 15, - ["min"] = 10, - }, + ["max"] = 15, + ["min"] = 10, + }, ["2HWeapon"] = { - ["max"] = 15, - ["min"] = 10, - }, + ["max"] = 15, + ["min"] = 10, + }, ["Bow"] = { - ["max"] = 15, - ["min"] = 10, - }, + ["max"] = 15, + ["min"] = 10, + }, ["Claw"] = { - ["max"] = 15, - ["min"] = 10, - }, + ["max"] = 15, + ["min"] = 10, + }, ["Dagger"] = { - ["max"] = 15, - ["min"] = 10, - }, + ["max"] = 15, + ["min"] = 10, + }, ["Staff"] = { - ["max"] = 15, - ["min"] = 10, - }, + ["max"] = 15, + ["min"] = 10, + }, ["Wand"] = { - ["max"] = 15, - ["min"] = 10, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_205619502", - ["text"] = "#% chance to Trigger Level 1 Blood Rage when you Kill an Enemy", - ["type"] = "explicit", - }, - }, - ["7939_LocalArmourPenetration"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_205619502", + ["text"] = "#% chance to Trigger Level 1 Blood Rage when you Kill an Enemy", + ["type"] = "explicit", + }, + }, + ["7940_LocalArmourPenetration"] = { ["1HAxe"] = { - ["max"] = 80, - ["min"] = 50, - }, + ["max"] = 80, + ["min"] = 50, + }, ["1HMace"] = { - ["max"] = 80, - ["min"] = 50, - }, + ["max"] = 80, + ["min"] = 50, + }, ["1HSword"] = { - ["max"] = 80, - ["min"] = 50, - }, + ["max"] = 80, + ["min"] = 50, + }, ["1HWeapon"] = { - ["max"] = 80, - ["min"] = 50, - }, + ["max"] = 80, + ["min"] = 50, + }, ["2HAxe"] = { - ["max"] = 80, - ["min"] = 50, - }, + ["max"] = 80, + ["min"] = 50, + }, ["2HMace"] = { - ["max"] = 80, - ["min"] = 50, - }, + ["max"] = 80, + ["min"] = 50, + }, ["2HSword"] = { - ["max"] = 80, - ["min"] = 50, - }, + ["max"] = 80, + ["min"] = 50, + }, ["2HWeapon"] = { - ["max"] = 80, - ["min"] = 50, - }, + ["max"] = 80, + ["min"] = 50, + }, ["Bow"] = { - ["max"] = 80, - ["min"] = 50, - }, + ["max"] = 80, + ["min"] = 50, + }, ["Claw"] = { - ["max"] = 80, - ["min"] = 50, - }, + ["max"] = 80, + ["min"] = 50, + }, ["Dagger"] = { - ["max"] = 80, - ["min"] = 50, - }, + ["max"] = 80, + ["min"] = 50, + }, ["Staff"] = { - ["max"] = 80, - ["min"] = 50, - }, + ["max"] = 80, + ["min"] = 50, + }, ["Wand"] = { - ["max"] = 80, - ["min"] = 50, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1907260000", - ["text"] = "Hits with this Weapon have #% chance to ignore Enemy Physical Damage Reduction", - ["type"] = "explicit", - }, - }, - ["7950_DexterityAndLocalItemQuality"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2016708976", - ["text"] = "+#% to Quality", - ["type"] = "explicit", - }, - }, - ["7950_IntelligenceAndLocalItemQuality"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2016708976", - ["text"] = "+#% to Quality", - ["type"] = "explicit", - }, - }, - ["7950_LocalAccuracyRatingAndLocalItemQuality"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2016708976", - ["text"] = "+#% to Quality", - ["type"] = "explicit", - }, - }, - ["7950_LocalAttackSpeedAndLocalItemQuality"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2016708976", - ["text"] = "+#% to Quality", - ["type"] = "explicit", - }, - }, - ["7950_LocalCriticalStrikeChanceAndLocalItemQuality"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2016708976", - ["text"] = "+#% to Quality", - ["type"] = "explicit", - }, - }, - ["7950_LocalItemQuality"] = { + ["max"] = 80, + ["min"] = 50, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1907260000", + ["text"] = "Hits with this Weapon have #% chance to ignore Enemy Physical Damage Reduction", + ["type"] = "explicit", + }, + }, + ["7951_DexterityAndLocalItemQuality"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2016708976", + ["text"] = "+#% to Quality", + ["type"] = "explicit", + }, + }, + ["7951_IntelligenceAndLocalItemQuality"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2016708976", + ["text"] = "+#% to Quality", + ["type"] = "explicit", + }, + }, + ["7951_LocalAccuracyRatingAndLocalItemQuality"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2016708976", + ["text"] = "+#% to Quality", + ["type"] = "explicit", + }, + }, + ["7951_LocalAttackSpeedAndLocalItemQuality"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2016708976", + ["text"] = "+#% to Quality", + ["type"] = "explicit", + }, + }, + ["7951_LocalCriticalStrikeChanceAndLocalItemQuality"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2016708976", + ["text"] = "+#% to Quality", + ["type"] = "explicit", + }, + }, + ["7951_LocalItemQuality"] = { ["Chest"] = { - ["max"] = 20, - ["min"] = 10, - }, + ["max"] = 20, + ["min"] = 10, + }, ["Shield"] = { - ["max"] = 20, - ["min"] = 10, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2016708976", - ["text"] = "+#% to Quality", - ["type"] = "explicit", - }, - }, - ["7950_StrengthAndLocalItemQuality"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2016708976", - ["text"] = "+#% to Quality", - ["type"] = "explicit", - }, - }, - ["7982_ShockwaveUnleashCount"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2016708976", + ["text"] = "+#% to Quality", + ["type"] = "explicit", + }, + }, + ["7951_StrengthAndLocalItemQuality"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2016708976", + ["text"] = "+#% to Quality", + ["type"] = "explicit", + }, + }, + ["7983_ShockwaveUnleashCount"] = { ["Ring"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_597522922", - ["text"] = "Left ring slot: Skills supported by Unleash have +# to maximum number of Seals", - ["type"] = "explicit", - }, - }, - ["7984_LifeGainPerBlindedEnemyHit"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_597522922", + ["text"] = "Left ring slot: Skills supported by Unleash have +# to maximum number of Seals", + ["type"] = "explicit", + }, + }, + ["7985_LifeGainPerBlindedEnemyHit"] = { ["1HWeapon"] = { - ["max"] = 50, - ["min"] = 35, - }, + ["max"] = 50, + ["min"] = 35, + }, ["Claw"] = { - ["max"] = 50, - ["min"] = 35, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1649099067", - ["text"] = "Gain # Life per Blinded Enemy Hit with this Weapon", - ["type"] = "explicit", - }, - }, - ["7988_ChanceToMaimSupported"] = { + ["max"] = 50, + ["min"] = 35, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1649099067", + ["text"] = "Gain # Life per Blinded Enemy Hit with this Weapon", + ["type"] = "explicit", + }, + }, + ["7989_ChanceToMaimSupported"] = { ["1HAxe"] = { - ["max"] = 20, - ["min"] = 15, - }, + ["max"] = 20, + ["min"] = 15, + }, ["1HMace"] = { - ["max"] = 20, - ["min"] = 15, - }, + ["max"] = 20, + ["min"] = 15, + }, ["1HSword"] = { - ["max"] = 20, - ["min"] = 15, - }, + ["max"] = 20, + ["min"] = 15, + }, ["1HWeapon"] = { - ["max"] = 20, - ["min"] = 15, - }, + ["max"] = 20, + ["min"] = 15, + }, ["2HAxe"] = { - ["max"] = 20, - ["min"] = 15, - }, + ["max"] = 20, + ["min"] = 15, + }, ["2HMace"] = { - ["max"] = 20, - ["min"] = 15, - }, + ["max"] = 20, + ["min"] = 15, + }, ["2HSword"] = { - ["max"] = 20, - ["min"] = 15, - }, + ["max"] = 20, + ["min"] = 15, + }, ["2HWeapon"] = { - ["max"] = 20, - ["min"] = 15, - }, + ["max"] = 20, + ["min"] = 15, + }, ["Claw"] = { - ["max"] = 20, - ["min"] = 15, - }, + ["max"] = 20, + ["min"] = 15, + }, ["Dagger"] = { - ["max"] = 20, - ["min"] = 15, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2763429652", - ["text"] = "#% chance to Maim on Hit", - ["type"] = "explicit", - }, - }, - ["7988_LocalChanceToMaimPhysicalDamage"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2763429652", + ["text"] = "#% chance to Maim on Hit", + ["type"] = "explicit", + }, + }, + ["7989_LocalChanceToMaimPhysicalDamage"] = { ["1HAxe"] = { - ["max"] = 20, - ["min"] = 10, - }, + ["max"] = 20, + ["min"] = 10, + }, ["1HMace"] = { - ["max"] = 20, - ["min"] = 10, - }, + ["max"] = 20, + ["min"] = 10, + }, ["1HSword"] = { - ["max"] = 20, - ["min"] = 10, - }, + ["max"] = 20, + ["min"] = 10, + }, ["1HWeapon"] = { - ["max"] = 20, - ["min"] = 10, - }, + ["max"] = 20, + ["min"] = 10, + }, ["2HAxe"] = { - ["max"] = 20, - ["min"] = 10, - }, + ["max"] = 20, + ["min"] = 10, + }, ["2HMace"] = { - ["max"] = 20, - ["min"] = 10, - }, + ["max"] = 20, + ["min"] = 10, + }, ["2HSword"] = { - ["max"] = 20, - ["min"] = 10, - }, + ["max"] = 20, + ["min"] = 10, + }, ["2HWeapon"] = { - ["max"] = 20, - ["min"] = 10, - }, + ["max"] = 20, + ["min"] = 10, + }, ["Bow"] = { - ["max"] = 20, - ["min"] = 10, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2763429652", - ["text"] = "#% chance to Maim on Hit", - ["type"] = "explicit", - }, - }, + ["max"] = 20, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2763429652", + ["text"] = "#% chance to Maim on Hit", + ["type"] = "explicit", + }, + }, ["798_TriggerOnRareAssassinsMark"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_3924520095", - ["text"] = "Trigger Level # Assassin's Mark when you Hit a Rare or Unique Enemy and have no Mark", - ["type"] = "explicit", - }, - }, - ["8002_ChanceToPoisonSupported"] = { + ["id"] = "explicit.stat_3382957283", + ["text"] = "Trigger Level # Assassin's Mark when you Hit a Rare or Unique Enemy and have no Mark", + ["type"] = "explicit", + }, + }, + ["8003_ChanceToPoisonSupported"] = { ["1HAxe"] = { - ["max"] = 20, - ["min"] = 15, - }, + ["max"] = 20, + ["min"] = 15, + }, ["1HMace"] = { - ["max"] = 20, - ["min"] = 15, - }, + ["max"] = 20, + ["min"] = 15, + }, ["1HSword"] = { - ["max"] = 20, - ["min"] = 15, - }, + ["max"] = 20, + ["min"] = 15, + }, ["1HWeapon"] = { - ["max"] = 20, - ["min"] = 15, - }, + ["max"] = 20, + ["min"] = 15, + }, ["2HAxe"] = { - ["max"] = 20, - ["min"] = 15, - }, + ["max"] = 20, + ["min"] = 15, + }, ["2HMace"] = { - ["max"] = 20, - ["min"] = 15, - }, + ["max"] = 20, + ["min"] = 15, + }, ["2HSword"] = { - ["max"] = 20, - ["min"] = 15, - }, + ["max"] = 20, + ["min"] = 15, + }, ["2HWeapon"] = { - ["max"] = 20, - ["min"] = 15, - }, + ["max"] = 20, + ["min"] = 15, + }, ["Claw"] = { - ["max"] = 20, - ["min"] = 15, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_795138349", - ["text"] = "#% chance to Poison on Hit", - ["type"] = "explicit", - }, - }, - ["8002_LocalChanceToPoisonOnHit"] = { - ["sign"] = "", - ["specialCaseData"] = { - ["overrideModLine"] = "#% chance to Poison on Hit", - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3885634897", - ["text"] = "#% chance to Poison on Hit (Local)", - ["type"] = "explicit", - }, - }, - ["8002_LocalChanceToPoisonOnHitChaosDamage"] = { - ["sign"] = "", - ["specialCaseData"] = { - ["overrideModLine"] = "#% chance to Poison on Hit", - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3885634897", - ["text"] = "#% chance to Poison on Hit (Local)", - ["type"] = "explicit", - }, - }, - ["8002_LocalIncreasedPhysicalDamageAndPoisonChance"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_795138349", + ["text"] = "#% chance to Poison on Hit", + ["type"] = "explicit", + }, + }, + ["8003_LocalChanceToPoisonOnHit"] = { + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "#% chance to Poison on Hit", + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3885634897", + ["text"] = "#% chance to Poison on Hit (Local)", + ["type"] = "explicit", + }, + }, + ["8003_LocalChanceToPoisonOnHitChaosDamage"] = { + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "#% chance to Poison on Hit", + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3885634897", + ["text"] = "#% chance to Poison on Hit (Local)", + ["type"] = "explicit", + }, + }, + ["8003_LocalIncreasedPhysicalDamageAndPoisonChance"] = { ["1HAxe"] = { - ["max"] = 25, - ["min"] = 13, - }, + ["max"] = 25, + ["min"] = 13, + }, ["1HMace"] = { - ["max"] = 25, - ["min"] = 13, - }, + ["max"] = 25, + ["min"] = 13, + }, ["1HSword"] = { - ["max"] = 25, - ["min"] = 13, - }, + ["max"] = 25, + ["min"] = 13, + }, ["1HWeapon"] = { - ["max"] = 25, - ["min"] = 13, - }, + ["max"] = 25, + ["min"] = 13, + }, ["2HAxe"] = { - ["max"] = 25, - ["min"] = 13, - }, + ["max"] = 25, + ["min"] = 13, + }, ["2HMace"] = { - ["max"] = 25, - ["min"] = 13, - }, + ["max"] = 25, + ["min"] = 13, + }, ["2HSword"] = { - ["max"] = 25, - ["min"] = 13, - }, + ["max"] = 25, + ["min"] = 13, + }, ["2HWeapon"] = { - ["max"] = 25, - ["min"] = 13, - }, + ["max"] = 25, + ["min"] = 13, + }, ["Bow"] = { - ["max"] = 25, - ["min"] = 13, - }, + ["max"] = 25, + ["min"] = 13, + }, ["Claw"] = { - ["max"] = 25, - ["min"] = 13, - }, + ["max"] = 25, + ["min"] = 13, + }, ["Dagger"] = { - ["max"] = 25, - ["min"] = 13, - }, + ["max"] = 25, + ["min"] = 13, + }, ["Staff"] = { - ["max"] = 25, - ["min"] = 13, - }, + ["max"] = 25, + ["min"] = 13, + }, ["Wand"] = { - ["max"] = 25, - ["min"] = 13, - }, - ["sign"] = "", - ["specialCaseData"] = { - ["overrideModLine"] = "#% chance to Poison on Hit", - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3885634897", - ["text"] = "#% chance to Poison on Hit (Local)", - ["type"] = "explicit", - }, - }, - ["8002_PoisonDamageAndLocalChanceOnHit"] = { - ["sign"] = "", - ["specialCaseData"] = { - ["overrideModLine"] = "#% chance to Poison on Hit", - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3885634897", - ["text"] = "#% chance to Poison on Hit (Local)", - ["type"] = "explicit", - }, - }, - ["8009_ShockwaveUnleashCount"] = { + ["max"] = 25, + ["min"] = 13, + }, + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "#% chance to Poison on Hit", + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3885634897", + ["text"] = "#% chance to Poison on Hit (Local)", + ["type"] = "explicit", + }, + }, + ["8003_PoisonDamageAndLocalChanceOnHit"] = { + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "#% chance to Poison on Hit", + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3885634897", + ["text"] = "#% chance to Poison on Hit (Local)", + ["type"] = "explicit", + }, + }, + ["8010_ShockwaveUnleashCount"] = { ["Ring"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_651133374", - ["text"] = "Right ring slot: Shockwave has +# to Cooldown Uses", - ["type"] = "explicit", - }, - }, - ["8017_LocalGemLevelIfOnlySocketedGem"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_651133374", + ["text"] = "Right ring slot: Shockwave has +# to Cooldown Uses", + ["type"] = "explicit", + }, + }, + ["8018_LocalGemLevelIfOnlySocketedGem"] = { ["Helmet"] = { - ["max"] = 6, - ["min"] = 6, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3298991976", - ["text"] = "+# to Level of Socketed Gems while there is a single Gem Socketed in this Item", - ["type"] = "explicit", - }, - }, - ["8019_MagicGhastlyJewelEffect"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2526952837", - ["text"] = "#% increased Effect of Socketed Magic Ghastly Eye Jewels", - ["type"] = "explicit", - }, - }, - ["8020_MagicHypnoticJewelEffect"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_654501336", - ["text"] = "#% increased Effect of Socketed Magic Hypnotic Eye Jewels", - ["type"] = "explicit", - }, - }, - ["8021_MagicMurderousJewelEffect"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3949536301", - ["text"] = "#% increased Effect of Socketed Magic Murderous Eye Jewels", - ["type"] = "explicit", - }, - }, - ["8022_MagicSearchingJewelEffect"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1938324031", - ["text"] = "#% increased Effect of Socketed Magic Searching Eye Jewels", - ["type"] = "explicit", - }, - }, - ["8023_RareGhastlyJewelEffect"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1974290842", - ["text"] = "#% increased Effect of Socketed Rare Ghastly Eye Jewels", - ["type"] = "explicit", - }, - }, - ["8024_RareHypnoticJewelEffect"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1337730278", - ["text"] = "#% increased Effect of Socketed Rare Hypnotic Eye Jewels", - ["type"] = "explicit", - }, - }, - ["8025_RareMurderousJewelEffect"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1217940944", - ["text"] = "#% increased Effect of Socketed Rare Murderous Eye Jewels", - ["type"] = "explicit", - }, - }, - ["8026_RareSearchingJewelEffect"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3524275808", - ["text"] = "#% increased Effect of Socketed Rare Searching Eye Jewels", - ["type"] = "explicit", - }, - }, + ["max"] = 6, + ["min"] = 6, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3298991976", + ["text"] = "+# to Level of Socketed Gems while there is a single Gem Socketed in this Item", + ["type"] = "explicit", + }, + }, + ["8020_MagicGhastlyJewelEffect"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2526952837", + ["text"] = "#% increased Effect of Socketed Magic Ghastly Eye Jewels", + ["type"] = "explicit", + }, + }, + ["8021_MagicHypnoticJewelEffect"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_654501336", + ["text"] = "#% increased Effect of Socketed Magic Hypnotic Eye Jewels", + ["type"] = "explicit", + }, + }, + ["8022_MagicMurderousJewelEffect"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3949536301", + ["text"] = "#% increased Effect of Socketed Magic Murderous Eye Jewels", + ["type"] = "explicit", + }, + }, + ["8023_MagicSearchingJewelEffect"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1938324031", + ["text"] = "#% increased Effect of Socketed Magic Searching Eye Jewels", + ["type"] = "explicit", + }, + }, + ["8024_RareGhastlyJewelEffect"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1974290842", + ["text"] = "#% increased Effect of Socketed Rare Ghastly Eye Jewels", + ["type"] = "explicit", + }, + }, + ["8025_RareHypnoticJewelEffect"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1337730278", + ["text"] = "#% increased Effect of Socketed Rare Hypnotic Eye Jewels", + ["type"] = "explicit", + }, + }, + ["8026_RareMurderousJewelEffect"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1217940944", + ["text"] = "#% increased Effect of Socketed Rare Murderous Eye Jewels", + ["type"] = "explicit", + }, + }, + ["8027_RareSearchingJewelEffect"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3524275808", + ["text"] = "#% increased Effect of Socketed Rare Searching Eye Jewels", + ["type"] = "explicit", + }, + }, ["803_TriggerOnRarePoachersMark"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_3904501306", - ["text"] = "Trigger Level # Poacher's Mark when you Hit a Rare or Unique Enemy and have no Mark", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_2659463225", + ["text"] = "Trigger Level # Poacher's Mark when you Hit a Rare or Unique Enemy and have no Mark", + ["type"] = "explicit", + }, + }, ["806_TriggerOnRareWarlordsMark"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_2049471530", - ["text"] = "Trigger Level # Warlord's Mark when you Hit a Rare or Unique Enemy and have no Mark", - ["type"] = "explicit", - }, - }, - ["8148_MagicFlaskEffectNoAdjacentFlasks"] = { + ["id"] = "explicit.stat_2049471530", + ["text"] = "Trigger Level # Warlord's Mark when you Hit a Rare or Unique Enemy and have no Mark", + ["type"] = "explicit", + }, + }, + ["8149_MagicFlaskEffectNoAdjacentFlasks"] = { ["Belt"] = { - ["max"] = 30, - ["min"] = 30, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2649904663", - ["text"] = "Equipped Magic Flasks have #% increased effect on you if no Flasks are Adjacent to them", - ["type"] = "explicit", - }, - }, - ["8154_GlobalMaimOnHit"] = { + ["max"] = 30, + ["min"] = 30, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2649904663", + ["text"] = "Equipped Magic Flasks have #% increased effect on you if no Flasks are Adjacent to them", + ["type"] = "explicit", + }, + }, + ["8155_GlobalMaimOnHit"] = { ["Quiver"] = { - ["max"] = 20, - ["min"] = 15, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1510714129", - ["text"] = "Attacks have #% chance to Maim on Hit", - ["type"] = "explicit", - }, - }, - ["8161_MalevolenceReservation"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3383226338", - ["text"] = "Malevolence has #% increased Mana Reservation Efficiency", - ["type"] = "explicit", - }, - }, - ["8162_MalevolenceReservationEfficiency"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1510714129", + ["text"] = "Attacks have #% chance to Maim on Hit", + ["type"] = "explicit", + }, + }, + ["8162_MalevolenceReservation"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3266567165", + ["text"] = "Malevolence has #% increased Mana Reservation Efficiency", + ["type"] = "explicit", + }, + }, + ["8163_MalevolenceReservationEfficiency"] = { ["Amulet"] = { - ["max"] = 50, - ["min"] = 40, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3383226338", - ["text"] = "Malevolence has #% increased Mana Reservation Efficiency", - ["type"] = "explicit", - }, - }, - ["8175_AddedManaRegenerationMaven"] = { + ["max"] = 50, + ["min"] = 40, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3266567165", + ["text"] = "Malevolence has #% increased Mana Reservation Efficiency", + ["type"] = "explicit", + }, + }, + ["8176_AddedManaRegenerationMaven"] = { ["Helmet"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1193925814", - ["text"] = "Mana Flasks gain # Charge every 3 seconds", - ["type"] = "explicit", - }, - }, - ["8179_ManaGainedOnSpellHit"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1193925814", + ["text"] = "Mana Flasks gain # Charge every 3 seconds", + ["type"] = "explicit", + }, + }, + ["8180_ManaGainedOnSpellHit"] = { ["Ring"] = { - ["max"] = 3, - ["min"] = 2, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2474196346", - ["text"] = "Gain # Mana per Enemy Hit with Spells", - ["type"] = "explicit", - }, - }, - ["8186_ManaGainedOnBlock"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3041288981", - ["text"] = "Recover #% of your maximum Mana when you Block", - ["type"] = "explicit", - }, - }, - ["8186_RecoverManaPercentOnBlock"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2474196346", + ["text"] = "Gain # Mana per Enemy Hit with Spells", + ["type"] = "explicit", + }, + }, + ["8187_ManaGainedOnBlock"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3041288981", + ["text"] = "Recover #% of your maximum Mana when you Block", + ["type"] = "explicit", + }, + }, + ["8187_RecoverManaPercentOnBlock"] = { ["Shield"] = { - ["max"] = 5, - ["min"] = 3, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3041288981", - ["text"] = "Recover #% of your maximum Mana when you Block", - ["type"] = "explicit", - }, - }, - ["8191_MaximumManaOnKillPercentMaven"] = { + ["max"] = 5, + ["min"] = 3, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3041288981", + ["text"] = "Recover #% of your maximum Mana when you Block", + ["type"] = "explicit", + }, + }, + ["8192_MaximumManaOnKillPercentMaven"] = { ["Chest"] = { - ["max"] = 10, - ["min"] = 5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_630994130", - ["text"] = "#% increased Mana Recovery Rate if you haven't Killed Recently", - ["type"] = "explicit", - }, - }, - ["8194_ManaRegenerationRatePercentageIfCorpseConsumedRecently"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1309492287", - ["text"] = "Regenerate #% of Mana per second if you've Consumed a corpse Recently", - ["type"] = "explicit", - }, - }, - ["8199_ManaRegeneratedIfYouveHitRecently"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_630994130", + ["text"] = "#% increased Mana Recovery Rate if you haven't Killed Recently", + ["type"] = "explicit", + }, + }, + ["8195_ManaRegenerationRatePercentageIfCorpseConsumedRecently"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1309492287", + ["text"] = "Regenerate #% of Mana per second if you've Consumed a corpse Recently", + ["type"] = "explicit", + }, + }, + ["8200_ManaRegeneratedIfYouveHitRecently"] = { ["1HAxe"] = { - ["max"] = 0.4, - ["min"] = 0.4, - }, + ["max"] = 0.4, + ["min"] = 0.4, + }, ["1HMace"] = { - ["max"] = 0.4, - ["min"] = 0.4, - }, + ["max"] = 0.4, + ["min"] = 0.4, + }, ["1HSword"] = { - ["max"] = 0.4, - ["min"] = 0.4, - }, + ["max"] = 0.4, + ["min"] = 0.4, + }, ["1HWeapon"] = { - ["max"] = 0.4, - ["min"] = 0.4, - }, + ["max"] = 0.4, + ["min"] = 0.4, + }, ["2HAxe"] = { - ["max"] = 0.8, - ["min"] = 0.8, - }, + ["max"] = 0.8, + ["min"] = 0.8, + }, ["2HMace"] = { - ["max"] = 0.8, - ["min"] = 0.8, - }, + ["max"] = 0.8, + ["min"] = 0.8, + }, ["2HSword"] = { - ["max"] = 0.8, - ["min"] = 0.8, - }, + ["max"] = 0.8, + ["min"] = 0.8, + }, ["2HWeapon"] = { - ["max"] = 0.8, - ["min"] = 0.8, - }, + ["max"] = 0.8, + ["min"] = 0.8, + }, ["Bow"] = { - ["max"] = 0.8, - ["min"] = 0.8, - }, + ["max"] = 0.8, + ["min"] = 0.8, + }, ["Claw"] = { - ["max"] = 0.4, - ["min"] = 0.4, - }, + ["max"] = 0.4, + ["min"] = 0.4, + }, ["Dagger"] = { - ["max"] = 0.4, - ["min"] = 0.4, - }, + ["max"] = 0.4, + ["min"] = 0.4, + }, ["Shield"] = { - ["max"] = 0.4, - ["min"] = 0.4, - }, + ["max"] = 0.4, + ["min"] = 0.4, + }, ["Staff"] = { - ["max"] = 0.8, - ["min"] = 0.8, - }, + ["max"] = 0.8, + ["min"] = 0.8, + }, ["Wand"] = { - ["max"] = 0.4, - ["min"] = 0.4, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2602865453", - ["text"] = "Regenerate #% of Mana per second if you've Hit an Enemy Recently", - ["type"] = "explicit", - }, - }, - ["8211_ManaRegenerationRateWhileMoving"] = { + ["max"] = 0.4, + ["min"] = 0.4, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2602865453", + ["text"] = "Regenerate #% of Mana per second if you've Hit an Enemy Recently", + ["type"] = "explicit", + }, + }, + ["8212_ManaRegenerationRateWhileMoving"] = { ["AbyssJewel"] = { - ["max"] = 25, - ["min"] = 20, - }, + ["max"] = 25, + ["min"] = 20, + }, ["AnyJewel"] = { - ["max"] = 25, - ["min"] = 20, - }, + ["max"] = 25, + ["min"] = 20, + }, ["Boots"] = { - ["max"] = 70, - ["min"] = 50, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1327522346", - ["text"] = "#% increased Mana Regeneration Rate while moving", - ["type"] = "explicit", - }, - }, + ["max"] = 70, + ["min"] = 50, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1327522346", + ["text"] = "#% increased Mana Regeneration Rate while moving", + ["type"] = "explicit", + }, + }, ["837_FlaskExtraMaxCharges"] = { ["Flask"] = { - ["max"] = 35, - ["min"] = 16, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1437957544", - ["text"] = "+# to Maximum Charges", - ["type"] = "explicit", - }, - }, + ["max"] = 35, + ["min"] = 16, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1437957544", + ["text"] = "+# to Maximum Charges", + ["type"] = "explicit", + }, + }, ["840_FlaskFullRechargeOnHit"] = { ["Flask"] = { - ["max"] = 3, - ["min"] = 1, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1582728645", - ["text"] = "Gain # Charge when you are Hit by an Enemy", - ["type"] = "explicit", - }, - }, + ["max"] = 3, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1582728645", + ["text"] = "Gain # Charge when you are Hit by an Enemy", + ["type"] = "explicit", + }, + }, ["841_FlaskFullRechargeOnCrit"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_2961372685", - ["text"] = "Recharges # Charge when you deal a Critical Strike", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_2961372685", + ["text"] = "Recharges # Charge when you deal a Critical Strike", + ["type"] = "explicit", + }, + }, ["842_FlaskChanceRechargeOnCrit"] = { ["Flask"] = { - ["max"] = 35, - ["min"] = 11, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3738001379", - ["text"] = "#% chance to gain a Flask Charge when you deal a Critical Strike", - ["type"] = "explicit", - }, - }, + ["max"] = 35, + ["min"] = 11, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2858921304", + ["text"] = "#% chance to gain a Flask Charge when you deal a Critical Strike", + ["type"] = "explicit", + }, + }, ["845_FlaskIncreasedChargesAdded"] = { ["Flask"] = { - ["max"] = 50, - ["min"] = 16, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3196823591", - ["text"] = "#% increased Charge Recovery", - ["type"] = "explicit", - }, - }, + ["max"] = 50, + ["min"] = 16, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3196823591", + ["text"] = "#% increased Charge Recovery", + ["type"] = "explicit", + }, + }, ["845_FlaskIncreasedRecoveryReducedEffect"] = { ["Flask"] = { - ["max"] = 66, - ["min"] = 37, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3196823591", - ["text"] = "#% increased Charge Recovery", - ["type"] = "explicit", - }, - }, + ["max"] = 66, + ["min"] = 37, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3196823591", + ["text"] = "#% increased Charge Recovery", + ["type"] = "explicit", + }, + }, ["846_FlaskChargesUsed"] = { ["Flask"] = { - ["max"] = -14, - ["min"] = -28, - }, - ["inverseKey"] = "reduced", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_388617051", - ["text"] = "#% increased Charges per use", - ["type"] = "explicit", - }, - }, + ["max"] = -14, + ["min"] = -28, + }, + ["inverseKey"] = "reduced", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_388617051", + ["text"] = "#% increased Charges per use", + ["type"] = "explicit", + }, + }, ["846_FlaskIncreasedHealingCharges"] = { ["Flask"] = { - ["max"] = 25, - ["min"] = 20, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_388617051", - ["text"] = "#% increased Charges per use", - ["type"] = "explicit", - }, - }, + ["max"] = 25, + ["min"] = 20, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_388617051", + ["text"] = "#% increased Charges per use", + ["type"] = "explicit", + }, + }, ["849_FlaskExtraLifeCostsMana"] = { ["Flask"] = { - ["max"] = 60, - ["min"] = 35, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1261982764", - ["text"] = "#% increased Life Recovered", - ["type"] = "explicit", - }, - }, + ["max"] = 60, + ["min"] = 35, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1261982764", + ["text"] = "#% increased Life Recovered", + ["type"] = "explicit", + }, + }, ["850_FlaskHealsMinions"] = { ["Flask"] = { - ["max"] = 200, - ["min"] = 100, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2416869319", - ["text"] = "Grants #% of Life Recovery to Minions", - ["type"] = "explicit", - }, - }, + ["max"] = 200, + ["min"] = 100, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2416869319", + ["text"] = "Grants #% of Life Recovery to Minions", + ["type"] = "explicit", + }, + }, ["853_FlaskExtraManaCostsLife"] = { ["Flask"] = { - ["max"] = 70, - ["min"] = 41, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1811130680", - ["text"] = "#% increased Mana Recovered", - ["type"] = "explicit", - }, - }, + ["max"] = 70, + ["min"] = 41, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1811130680", + ["text"] = "#% increased Mana Recovered", + ["type"] = "explicit", + }, + }, ["854_FlaskEffectNotRemovedOnFullManaReducedRecovery"] = { ["Flask"] = { - ["max"] = -66, - ["min"] = -66, - }, - ["inverseKey"] = "reduced", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_700317374", - ["text"] = "#% increased Amount Recovered", - ["type"] = "explicit", - }, - }, + ["max"] = -66, + ["min"] = -66, + }, + ["inverseKey"] = "reduced", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_700317374", + ["text"] = "#% increased Amount Recovered", + ["type"] = "explicit", + }, + }, ["854_FlaskFullInstantRecovery"] = { ["Flask"] = { - ["max"] = -66, - ["min"] = -66, - }, - ["inverseKey"] = "reduced", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_700317374", - ["text"] = "#% increased Amount Recovered", - ["type"] = "explicit", - }, - }, + ["max"] = -66, + ["min"] = -66, + }, + ["inverseKey"] = "reduced", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_700317374", + ["text"] = "#% increased Amount Recovered", + ["type"] = "explicit", + }, + }, ["854_FlaskIncreasedHealingCharges"] = { ["Flask"] = { - ["max"] = 50, - ["min"] = 21, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_700317374", - ["text"] = "#% increased Amount Recovered", - ["type"] = "explicit", - }, - }, + ["max"] = 50, + ["min"] = 21, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_700317374", + ["text"] = "#% increased Amount Recovered", + ["type"] = "explicit", + }, + }, ["854_FlaskIncreasedRecoveryAmount"] = { ["Flask"] = { - ["max"] = 70, - ["min"] = 41, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_700317374", - ["text"] = "#% increased Amount Recovered", - ["type"] = "explicit", - }, - }, + ["max"] = 70, + ["min"] = 41, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_700317374", + ["text"] = "#% increased Amount Recovered", + ["type"] = "explicit", + }, + }, ["854_FlaskInstantRecoveryOnLowLife"] = { ["Flask"] = { - ["max"] = -11, - ["min"] = -30, - }, - ["inverseKey"] = "reduced", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_700317374", - ["text"] = "#% increased Amount Recovered", - ["type"] = "explicit", - }, - }, + ["max"] = -11, + ["min"] = -30, + }, + ["inverseKey"] = "reduced", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_700317374", + ["text"] = "#% increased Amount Recovered", + ["type"] = "explicit", + }, + }, ["854_FlaskManaRecoveryAtEnd"] = { ["Flask"] = { - ["max"] = 66, - ["min"] = 66, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_700317374", - ["text"] = "#% increased Amount Recovered", - ["type"] = "explicit", - }, - }, + ["max"] = 66, + ["min"] = 66, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_700317374", + ["text"] = "#% increased Amount Recovered", + ["type"] = "explicit", + }, + }, ["854_FlaskPartialInstantRecovery"] = { ["Flask"] = { - ["max"] = -36, - ["min"] = -55, - }, - ["inverseKey"] = "reduced", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_700317374", - ["text"] = "#% increased Amount Recovered", - ["type"] = "explicit", - }, - }, + ["max"] = -36, + ["min"] = -55, + }, + ["inverseKey"] = "reduced", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_700317374", + ["text"] = "#% increased Amount Recovered", + ["type"] = "explicit", + }, + }, ["855_FlaskIncreasedRecoveryAmount"] = { ["Flask"] = { - ["max"] = -33, - ["min"] = -33, - }, - ["inverseKey"] = "reduced", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_173226756", - ["text"] = "#% increased Recovery rate", - ["type"] = "explicit", - }, - }, + ["max"] = -33, + ["min"] = -33, + }, + ["inverseKey"] = "reduced", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_173226756", + ["text"] = "#% increased Recovery rate", + ["type"] = "explicit", + }, + }, ["855_FlaskIncreasedRecoverySpeed"] = { ["Flask"] = { - ["max"] = 70, - ["min"] = 41, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_173226756", - ["text"] = "#% increased Recovery rate", - ["type"] = "explicit", - }, - }, + ["max"] = 70, + ["min"] = 41, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_173226756", + ["text"] = "#% increased Recovery rate", + ["type"] = "explicit", + }, + }, ["855_FlaskPartialInstantRecovery"] = { ["Flask"] = { - ["max"] = 135, - ["min"] = 135, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_173226756", - ["text"] = "#% increased Recovery rate", - ["type"] = "explicit", - }, - }, + ["max"] = 135, + ["min"] = 135, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_173226756", + ["text"] = "#% increased Recovery rate", + ["type"] = "explicit", + }, + }, ["857_FlaskEffectReducedDuration"] = { ["Flask"] = { - ["max"] = -23, - ["min"] = -38, - }, - ["inverseKey"] = "reduced", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1256719186", - ["text"] = "#% increased Duration", - ["type"] = "explicit", - }, - }, + ["max"] = -23, + ["min"] = -38, + }, + ["inverseKey"] = "reduced", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1256719186", + ["text"] = "#% increased Duration", + ["type"] = "explicit", + }, + }, ["857_FlaskUtilityIncreasedDuration"] = { ["Flask"] = { - ["max"] = 40, - ["min"] = 16, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1256719186", - ["text"] = "#% increased Duration", - ["type"] = "explicit", - }, - }, + ["max"] = 40, + ["min"] = 16, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1256719186", + ["text"] = "#% increased Duration", + ["type"] = "explicit", + }, + }, ["858_FlaskBleedingAndCorruptedBloodImmunityDuringEffect"] = { ["Flask"] = { - ["max"] = -35, - ["min"] = -49, - }, - ["inverseKey"] = "less", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1506355899", - ["text"] = "#% more Duration", - ["type"] = "explicit", - }, - }, + ["max"] = -35, + ["min"] = -49, + }, + ["inverseKey"] = "less", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1506355899", + ["text"] = "#% more Duration", + ["type"] = "explicit", + }, + }, ["858_FlaskFreezeAndChillImmunityDuringEffect"] = { ["Flask"] = { - ["max"] = -35, - ["min"] = -49, - }, - ["inverseKey"] = "less", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1506355899", - ["text"] = "#% more Duration", - ["type"] = "explicit", - }, - }, + ["max"] = -35, + ["min"] = -49, + }, + ["inverseKey"] = "less", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1506355899", + ["text"] = "#% more Duration", + ["type"] = "explicit", + }, + }, ["858_FlaskIgniteImmunityDuringEffect"] = { ["Flask"] = { - ["max"] = -35, - ["min"] = -49, - }, - ["inverseKey"] = "less", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1506355899", - ["text"] = "#% more Duration", - ["type"] = "explicit", - }, - }, + ["max"] = -35, + ["min"] = -49, + }, + ["inverseKey"] = "less", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1506355899", + ["text"] = "#% more Duration", + ["type"] = "explicit", + }, + }, ["858_FlaskPoisonImmunityDuringEffect"] = { ["Flask"] = { - ["max"] = -35, - ["min"] = -49, - }, - ["inverseKey"] = "less", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1506355899", - ["text"] = "#% more Duration", - ["type"] = "explicit", - }, - }, + ["max"] = -35, + ["min"] = -49, + }, + ["inverseKey"] = "less", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1506355899", + ["text"] = "#% more Duration", + ["type"] = "explicit", + }, + }, ["858_FlaskShockImmunityDuringEffect"] = { ["Flask"] = { - ["max"] = -35, - ["min"] = -49, - }, - ["inverseKey"] = "less", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1506355899", - ["text"] = "#% more Duration", - ["type"] = "explicit", - }, - }, + ["max"] = -35, + ["min"] = -49, + }, + ["inverseKey"] = "less", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1506355899", + ["text"] = "#% more Duration", + ["type"] = "explicit", + }, + }, ["859_FlaskIncreasedRecoveryOnLowLife"] = { ["Flask"] = { - ["max"] = 130, - ["min"] = 101, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_886931978", - ["text"] = "#% more Recovery if used while on Low Life", - ["type"] = "explicit", - }, - }, + ["max"] = 130, + ["min"] = 101, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_886931978", + ["text"] = "#% more Recovery if used while on Low Life", + ["type"] = "explicit", + }, + }, ["860_FlaskInstantRecoveryOnLowLife"] = { ["Flask"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_3812107348", - ["text"] = "Instant Recovery when on Low Life", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_3812107348", + ["text"] = "Instant Recovery when on Low Life", + ["type"] = "explicit", + }, + }, ["861_FlaskPartialInstantRecovery"] = { ["Flask"] = { - ["max"] = 50, - ["min"] = 50, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2503377690", - ["text"] = "#% of Recovery applied Instantly", - ["type"] = "explicit", - }, - }, + ["max"] = 50, + ["min"] = 50, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2503377690", + ["text"] = "#% of Recovery applied Instantly", + ["type"] = "explicit", + }, + }, ["865_FlaskManaRecoveryAtEnd"] = { ["Flask"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_4204954479", - ["text"] = "Mana Recovery occurs instantly at the end of Effect", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_4204954479", + ["text"] = "Mana Recovery occurs instantly at the end of Effect", + ["type"] = "explicit", + }, + }, ["866_FlaskFullInstantRecovery"] = { ["Flask"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1526933524", - ["text"] = "Instant Recovery", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1526933524", + ["text"] = "Instant Recovery", + ["type"] = "explicit", + }, + }, ["869_FlaskExtraManaCostsLife"] = { ["Flask"] = { - ["max"] = 15, - ["min"] = 15, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_959641748", - ["text"] = "Removes #% of Mana Recovered from Life when used", - ["type"] = "explicit", - }, - }, + ["max"] = 15, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_959641748", + ["text"] = "Removes #% of Mana Recovered from Life when used", + ["type"] = "explicit", + }, + }, ["871_FlaskExtraLifeCostsMana"] = { ["Flask"] = { - ["max"] = 10, - ["min"] = 10, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_648019518", - ["text"] = "Removes #% of Life Recovered from Mana when used", - ["type"] = "explicit", - }, - }, - ["8762_MapMonsterPacksVaalMapWorlds"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2609768284", - ["text"] = "Area is inhabited by the Vaal", - ["type"] = "explicit", - }, - }, + ["max"] = 10, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_648019518", + ["text"] = "Removes #% of Life Recovered from Mana when used", + ["type"] = "explicit", + }, + }, + ["8763_MapMonsterPacksVaalMapWorlds"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2609768284", + ["text"] = "Area is inhabited by the Vaal", + ["type"] = "explicit", + }, + }, ["897_FlaskCurseImmunity"] = { ["Flask"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_3895393544", - ["text"] = "Removes Curses on use", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_3895393544", + ["text"] = "Removes Curses on use", + ["type"] = "explicit", + }, + }, ["899_LocalLifeFlaskAdditionalLifeRecovery"] = { ["Flask"] = { - ["max"] = 40, - ["min"] = 11, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_307410279", - ["text"] = "Recover an additional #% of Flask's Life Recovery Amount over 10 seconds if used while not on Full Life", - ["type"] = "explicit", - }, - }, + ["max"] = 40, + ["min"] = 11, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_307410279", + ["text"] = "Recover an additional #% of Flask's Life Recovery Amount over 10 seconds if used while not on Full Life", + ["type"] = "explicit", + }, + }, ["906_LocalFlaskImmuneToMaimAndHinder"] = { ["Flask"] = { - ["max"] = 17, - ["min"] = 6, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4003593289", - ["text"] = "Grants Immunity to Hinder for # seconds if used while Hindered", - ["type"] = "explicit", - }, - }, + ["max"] = 17, + ["min"] = 6, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4003593289", + ["text"] = "Grants Immunity to Hinder for # seconds if used while Hindered", + ["type"] = "explicit", + }, + }, ["907_LocalFlaskImmuneToMaimAndHinder"] = { ["Flask"] = { - ["max"] = 17, - ["min"] = 6, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4232582040", - ["text"] = "Grants Immunity to Maim for # seconds if used while Maimed", - ["type"] = "explicit", - }, - }, + ["max"] = 17, + ["min"] = 6, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4232582040", + ["text"] = "Grants Immunity to Maim for # seconds if used while Maimed", + ["type"] = "explicit", + }, + }, ["908_FlaskDispellsPoison"] = { + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_3596333054", - ["text"] = "Grants Immunity to Poison for 4 seconds if used while Poisoned", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_542375676", + ["text"] = "Grants Immunity to Poison for # seconds if used while Poisoned", + ["type"] = "explicit", + }, + }, ["909_FlaskPoisonImmunity"] = { ["Flask"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3596333054", - ["text"] = "Grants Immunity to Poison for 4 seconds if used while Poisoned", - ["type"] = "explicit", - }, - }, + ["max"] = 17, + ["min"] = 6, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_542375676", + ["text"] = "Grants Immunity to Poison for # seconds if used while Poisoned", + ["type"] = "explicit", + }, + }, ["910_FlaskRemovesShock"] = { + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1823903967", - ["text"] = "Grants Immunity to Shock for 4 seconds if used while Shocked", - ["type"] = "explicit", - }, - }, - ["9117_FortifyEffect"] = { + ["id"] = "explicit.stat_3854439683", + ["text"] = "Grants Immunity to Shock for # seconds if used while Shocked", + ["type"] = "explicit", + }, + }, + ["9118_FortifyEffect"] = { ["Boots"] = { - ["max"] = 5, - ["min"] = 3, - }, + ["max"] = 5, + ["min"] = 3, + }, ["Chest"] = { - ["max"] = 5, - ["min"] = 3, - }, + ["max"] = 5, + ["min"] = 3, + }, ["Gloves"] = { - ["max"] = 5, - ["min"] = 3, - }, + ["max"] = 5, + ["min"] = 3, + }, ["Helmet"] = { - ["max"] = 5, - ["min"] = 3, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2094299742", - ["text"] = "+# to maximum Fortification", - ["type"] = "explicit", - }, - }, - ["9117_FortifyEffectMaven"] = { + ["max"] = 5, + ["min"] = 3, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2094299742", + ["text"] = "+# to maximum Fortification", + ["type"] = "explicit", + }, + }, + ["9118_FortifyEffectMaven"] = { ["Helmet"] = { - ["max"] = 5, - ["min"] = 4.2, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2094299742", - ["text"] = "+# to maximum Fortification", - ["type"] = "explicit", - }, - }, - ["9118_FortifyEffectWhileFocused"] = { + ["max"] = 5, + ["min"] = 4.2, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2094299742", + ["text"] = "+# to maximum Fortification", + ["type"] = "explicit", + }, + }, + ["9119_FortifyEffectWhileFocused"] = { ["Chest"] = { - ["max"] = 10, - ["min"] = 5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_922014346", - ["text"] = "+# to maximum Fortification while Focused", - ["type"] = "explicit", - }, - }, + ["max"] = 10, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_922014346", + ["text"] = "+# to maximum Fortification while Focused", + ["type"] = "explicit", + }, + }, ["911_FlaskShockImmunity"] = { ["Flask"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1823903967", - ["text"] = "Grants Immunity to Shock for 4 seconds if used while Shocked", - ["type"] = "explicit", - }, - }, + ["max"] = 17, + ["min"] = 6, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3854439683", + ["text"] = "Grants Immunity to Shock for # seconds if used while Shocked", + ["type"] = "explicit", + }, + }, ["912_LocalLifeFlaskHinderNearbyEnemies"] = { ["Flask"] = { - ["max"] = 40, - ["min"] = 17, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1462364052", - ["text"] = "Hinders nearby Enemies with #% reduced Movement Speed if used while not on Full Life", - ["type"] = "explicit", - }, - }, - ["9133_MaximumEnergyShieldFromBodyArmour"] = { + ["max"] = 40, + ["min"] = 17, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1462364052", + ["text"] = "Hinders nearby Enemies with #% reduced Movement Speed if used while not on Full Life", + ["type"] = "explicit", + }, + }, + ["9134_MaximumEnergyShieldFromBodyArmour"] = { ["Amulet"] = { - ["max"] = 30, - ["min"] = 20, - }, + ["max"] = 30, + ["min"] = 20, + }, ["Belt"] = { - ["max"] = 30, - ["min"] = 20, - }, + ["max"] = 30, + ["min"] = 20, + }, ["Ring"] = { - ["max"] = 30, - ["min"] = 20, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1195319608", - ["text"] = "#% increased Energy Shield from Equipped Body Armour", - ["type"] = "explicit", - }, - }, + ["max"] = 30, + ["min"] = 20, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1195319608", + ["text"] = "#% increased Energy Shield from Equipped Body Armour", + ["type"] = "explicit", + }, + }, ["913_LocalManaFlaskHinderNearbyEnemies"] = { ["Flask"] = { - ["max"] = 40, - ["min"] = 17, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2313899959", - ["text"] = "Hinders nearby Enemies with #% reduced Movement Speed if used while not on Full Mana", - ["type"] = "explicit", - }, - }, - ["9160_LifeAddedAsEnergyShield"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_67280387", - ["text"] = "Gain #% of Maximum Life as Extra Maximum Energy Shield", - ["type"] = "explicit", - }, - }, - ["9161_MaximumLifeConvertedToEnergyShield"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2458962764", - ["text"] = "#% of Maximum Life Converted to Energy Shield", - ["type"] = "explicit", - }, - }, - ["9162_CorpseLife"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_586568910", - ["text"] = "Corpses you Spawn have #% increased Maximum Life", - ["type"] = "explicit", - }, - }, - ["9171_ManaPer2Intelligence"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3822999954", - ["text"] = "+# to maximum Mana per 2 Intelligence", - ["type"] = "explicit", - }, - }, - ["9174_MaxBlades"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3954265754", - ["text"] = "Skills that leave Lingering Blades have +# to Maximum Lingering Blades", - ["type"] = "explicit", - }, - }, - ["9184_StrikeSkillsAdditionalTarget"] = { + ["max"] = 40, + ["min"] = 17, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2313899959", + ["text"] = "Hinders nearby Enemies with #% reduced Movement Speed if used while not on Full Mana", + ["type"] = "explicit", + }, + }, + ["9161_LifeAddedAsEnergyShield"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_67280387", + ["text"] = "Gain #% of Maximum Life as Extra Maximum Energy Shield", + ["type"] = "explicit", + }, + }, + ["9162_MaximumLifeConvertedToEnergyShield"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2458962764", + ["text"] = "#% of Maximum Life Converted to Energy Shield", + ["type"] = "explicit", + }, + }, + ["9163_CorpseLife"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_586568910", + ["text"] = "Corpses you Spawn have #% increased Maximum Life", + ["type"] = "explicit", + }, + }, + ["9175_MaxBlades"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3954265754", + ["text"] = "Skills that leave Lingering Blades have +# to Maximum Lingering Blades", + ["type"] = "explicit", + }, + }, + ["9185_StrikeSkillsAdditionalTarget"] = { ["Gloves"] = { - ["max"] = 2, - ["min"] = 1, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1661253443", - ["text"] = "Non-Vaal Strike Skills target # additional nearby Enemy", - ["type"] = "explicit", - }, - }, - ["9190_MeleeDamageDuringFlaskEffect"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1661253443", + ["text"] = "Non-Vaal Strike Skills target # additional nearby Enemy", + ["type"] = "explicit", + }, + }, + ["9191_MeleeDamageDuringFlaskEffect"] = { ["Belt"] = { - ["max"] = 35, - ["min"] = 20, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4091369450", - ["text"] = "#% increased Melee Damage during any Flask Effect", - ["type"] = "explicit", - }, - }, - ["9193_MeleeKnockback"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3962823719", - ["text"] = "Melee Attacks Knock Enemies Back on Hit", - ["type"] = "explicit", - }, - }, - ["9194_MovementSkillsFortifyOnHitChance"] = { + ["max"] = 35, + ["min"] = 20, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4091369450", + ["text"] = "#% increased Melee Damage during any Flask Effect", + ["type"] = "explicit", + }, + }, + ["9195_MovementSkillsFortifyOnHitChance"] = { ["2HSword"] = { - ["max"] = 50, - ["min"] = 30, - }, + ["max"] = 50, + ["min"] = 30, + }, ["2HWeapon"] = { - ["max"] = 50, - ["min"] = 30, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_59547568", - ["text"] = "Hits with Melee Movement Skills have #% chance to Fortify", - ["type"] = "explicit", - }, - }, - ["91_LocalCanSocketIgnoringColour"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_899329924", - ["text"] = "Gems can be Socketed in this Item ignoring Socket Colour", - ["type"] = "explicit", - }, - }, - ["9217_MineAreaOfEffect"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2228913626", - ["text"] = "Skills used by Mines have #% increased Area of Effect", - ["type"] = "explicit", - }, - }, - ["9220_MineDetonationSpeedAndDuration"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3085465082", - ["text"] = "Mines have #% increased Detonation Speed", - ["type"] = "explicit", - }, - }, - ["9224_CriticalChanceAndAddedChaosDamageIfHaveCritRecently"] = { + ["max"] = 50, + ["min"] = 30, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_59547568", + ["text"] = "Hits with Melee Movement Skills have #% chance to Fortify", + ["type"] = "explicit", + }, + }, + ["9218_MineAreaOfEffect"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2228913626", + ["text"] = "Skills used by Mines have #% increased Area of Effect", + ["type"] = "explicit", + }, + }, + ["9221_MineDetonationSpeedAndDuration"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3085465082", + ["text"] = "Mines have #% increased Detonation Speed", + ["type"] = "explicit", + }, + }, + ["9225_CriticalChanceAndAddedChaosDamageIfHaveCritRecently"] = { ["Gloves"] = { - ["max"] = 28.5, - ["min"] = 12, - }, + ["max"] = 28.5, + ["min"] = 12, + }, ["Quiver"] = { - ["max"] = 28.5, - ["min"] = 12, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2523334466", - ["text"] = "Adds # to # Chaos Damage if you've dealt a Critical Strike Recently", - ["type"] = "explicit", - }, - }, - ["9230_AddedColdDamageIfCritRecently"] = { + ["max"] = 28.5, + ["min"] = 12, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2523334466", + ["text"] = "Adds # to # Chaos Damage if you've dealt a Critical Strike Recently", + ["type"] = "explicit", + }, + }, + ["9231_AddedColdDamageIfCritRecently"] = { ["Gloves"] = { - ["max"] = 37.5, - ["min"] = 19, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3370223014", - ["text"] = "Adds # to # Cold Damage if you've dealt a Critical Strike Recently", - ["type"] = "explicit", - }, - }, - ["9231_ColdDamageToAttacksPerDexterity"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_769783486", - ["text"] = "Adds # to # Cold Damage to Attacks per 10 Dexterity", - ["type"] = "explicit", - }, - }, - ["9235_AddedFireDamageIfCritRecently"] = { + ["max"] = 37.5, + ["min"] = 19, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3370223014", + ["text"] = "Adds # to # Cold Damage if you've dealt a Critical Strike Recently", + ["type"] = "explicit", + }, + }, + ["9232_ColdDamageToAttacksPerDexterity"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_769783486", + ["text"] = "Adds # to # Cold Damage to Attacks per 10 Dexterity", + ["type"] = "explicit", + }, + }, + ["9236_AddedFireDamageIfCritRecently"] = { ["Gloves"] = { - ["max"] = 37.5, - ["min"] = 19, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3144358296", - ["text"] = "Adds # to # Fire Damage if you've dealt a Critical Strike Recently", - ["type"] = "explicit", - }, - }, - ["9237_GlobalAddedFireDamagePerEnduranceCharge"] = { + ["max"] = 37.5, + ["min"] = 19, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3144358296", + ["text"] = "Adds # to # Fire Damage if you've dealt a Critical Strike Recently", + ["type"] = "explicit", + }, + }, + ["9238_GlobalAddedFireDamagePerEnduranceCharge"] = { ["Ring"] = { - ["max"] = 5.5, - ["min"] = 3, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1073447019", - ["text"] = "# to # Fire Damage per Endurance Charge", - ["type"] = "explicit", - }, - }, - ["9239_FireDamageToAttacksPerStrength"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_68673913", - ["text"] = "Adds # to # Fire Damage to Attacks per 10 Strength", - ["type"] = "explicit", - }, - }, - ["9241_AddedLightningDamageIfCritRecently"] = { + ["max"] = 5.5, + ["min"] = 3, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1073447019", + ["text"] = "# to # Fire Damage per Endurance Charge", + ["type"] = "explicit", + }, + }, + ["9240_FireDamageToAttacksPerStrength"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_68673913", + ["text"] = "Adds # to # Fire Damage to Attacks per 10 Strength", + ["type"] = "explicit", + }, + }, + ["9242_AddedLightningDamageIfCritRecently"] = { ["Gloves"] = { - ["max"] = 45.5, - ["min"] = 21, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_935623115", - ["text"] = "Adds # to # Lightning Damage if you've dealt a Critical Strike Recently", - ["type"] = "explicit", - }, - }, - ["9242_GlobalAddedLightningDamagePerPowerCharge"] = { + ["max"] = 45.5, + ["min"] = 21, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_935623115", + ["text"] = "Adds # to # Lightning Damage if you've dealt a Critical Strike Recently", + ["type"] = "explicit", + }, + }, + ["9243_GlobalAddedLightningDamagePerPowerCharge"] = { ["Ring"] = { - ["max"] = 6.5, - ["min"] = 3.5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1917107159", - ["text"] = "# to # Lightning Damage per Power Charge", - ["type"] = "explicit", - }, - }, - ["9243_AddedLightningDamagePerShockedEnemyKilled"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4222857095", - ["text"] = "Adds # to # Lightning Damage for each Shocked Enemy you've Killed Recently", - ["type"] = "explicit", - }, - }, - ["9244_LightningDamageToAttacksPerIntelligence"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3168149399", - ["text"] = "Adds # to # Lightning Damage to Attacks per 10 Intelligence", - ["type"] = "explicit", - }, - }, - ["9247_AddedPhysicalDamageIfCritRecently"] = { + ["max"] = 6.5, + ["min"] = 3.5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1917107159", + ["text"] = "# to # Lightning Damage per Power Charge", + ["type"] = "explicit", + }, + }, + ["9244_AddedLightningDamagePerShockedEnemyKilled"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4222857095", + ["text"] = "Adds # to # Lightning Damage for each Shocked Enemy you've Killed Recently", + ["type"] = "explicit", + }, + }, + ["9245_LightningDamageToAttacksPerIntelligence"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3168149399", + ["text"] = "Adds # to # Lightning Damage to Attacks per 10 Intelligence", + ["type"] = "explicit", + }, + }, + ["9248_AddedPhysicalDamageIfCritRecently"] = { ["Gloves"] = { - ["max"] = 14, - ["min"] = 5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2723101291", - ["text"] = "Adds # to # Physical Damage if you've dealt a Critical Strike Recently", - ["type"] = "explicit", - }, - }, - ["9249_AttackImpaleChanceMaven"] = { + ["max"] = 14, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2723101291", + ["text"] = "Adds # to # Physical Damage if you've dealt a Critical Strike Recently", + ["type"] = "explicit", + }, + }, + ["9250_AttackImpaleChanceMaven"] = { ["Gloves"] = { - ["max"] = 3.5, - ["min"] = 2, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1455766505", - ["text"] = "Adds # to # Physical Damage for each Impale on Enemy", - ["type"] = "explicit", - }, - }, - ["9250_AddedPhysicalDamageVsPoisonedEnemies"] = { + ["max"] = 3.5, + ["min"] = 2, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1455766505", + ["text"] = "Adds # to # Physical Damage for each Impale on Enemy", + ["type"] = "explicit", + }, + }, + ["9251_AddedPhysicalDamageVsPoisonedEnemies"] = { ["Gloves"] = { - ["max"] = 14.5, - ["min"] = 9.5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_424026624", - ["text"] = "Adds # to # Physical Damage against Poisoned Enemies", - ["type"] = "explicit", - }, - }, - ["9263_MinionAccuracyRatingFlat"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1661151735", - ["text"] = "Minions have +# to Accuracy Rating", - ["type"] = "explicit", - }, - }, - ["9263_MinionFlatAccuracyRating"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1661151735", - ["text"] = "Minions have +# to Accuracy Rating", - ["type"] = "explicit", - }, - }, - ["9265_MinionAccuracyRating"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1718147982", - ["text"] = "#% increased Minion Accuracy Rating", - ["type"] = "explicit", - }, - }, - ["9265_MinionAccuracyRatingForJewel"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1718147982", - ["text"] = "#% increased Minion Accuracy Rating", - ["type"] = "explicit", - }, - }, - ["9269_MinionAttackSpeedAndCastSpeed"] = { + ["max"] = 14.5, + ["min"] = 9.5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_424026624", + ["text"] = "Adds # to # Physical Damage against Poisoned Enemies", + ["type"] = "explicit", + }, + }, + ["9264_MinionAccuracyRatingFlat"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1661151735", + ["text"] = "Minions have +# to Accuracy Rating", + ["type"] = "explicit", + }, + }, + ["9264_MinionFlatAccuracyRating"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1661151735", + ["text"] = "Minions have +# to Accuracy Rating", + ["type"] = "explicit", + }, + }, + ["9266_MinionAccuracyRating"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1718147982", + ["text"] = "#% increased Minion Accuracy Rating", + ["type"] = "explicit", + }, + }, + ["9266_MinionAccuracyRatingForJewel"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1718147982", + ["text"] = "#% increased Minion Accuracy Rating", + ["type"] = "explicit", + }, + }, + ["9270_MinionAttackSpeedAndCastSpeed"] = { ["1HWeapon"] = { - ["max"] = 25, - ["min"] = 5, - }, + ["max"] = 25, + ["min"] = 5, + }, ["Ring"] = { - ["max"] = 16, - ["min"] = 5, - }, + ["max"] = 16, + ["min"] = 5, + }, ["Wand"] = { - ["max"] = 25, - ["min"] = 5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3091578504", - ["text"] = "Minions have #% increased Attack and Cast Speed", - ["type"] = "explicit", - }, - }, - ["9270_MinionAttackAndCastSpeedIfEnemySlainRecently"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4227567885", - ["text"] = "Minions have #% increased Attack and Cast Speed if you or your Minions have Killed Recently", - ["type"] = "explicit", - }, - }, - ["9276_MinionAttacksBlindOnHitChance"] = { + ["max"] = 25, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3091578504", + ["text"] = "Minions have #% increased Attack and Cast Speed", + ["type"] = "explicit", + }, + }, + ["9271_MinionAttackAndCastSpeedIfEnemySlainRecently"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4227567885", + ["text"] = "Minions have #% increased Attack and Cast Speed if you or your Minions have Killed Recently", + ["type"] = "explicit", + }, + }, + ["9277_MinionAttacksBlindOnHitChance"] = { ["AbyssJewel"] = { - ["max"] = 6, - ["min"] = 3, - }, + ["max"] = 6, + ["min"] = 3, + }, ["AnyJewel"] = { - ["max"] = 6, - ["min"] = 3, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2431643207", - ["text"] = "Minions have #% chance to Blind on Hit with Attacks", - ["type"] = "explicit", - }, - }, - ["9277_MinionFireConvertToChaos"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2727256287", - ["text"] = "Minions convert #% of Fire Damage to Chaos Damage", - ["type"] = "explicit", - }, - }, - ["9279_MinionDamageOnWeaponDoubleDamage"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_755922799", - ["text"] = "Minions have #% chance to deal Double Damage", - ["type"] = "explicit", - }, - }, - ["9284_AbyssMinionIgniteOnHitChance"] = { + ["max"] = 6, + ["min"] = 3, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2431643207", + ["text"] = "Minions have #% chance to Blind on Hit with Attacks", + ["type"] = "explicit", + }, + }, + ["9278_MinionFireConvertToChaos"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2727256287", + ["text"] = "Minions convert #% of Fire Damage to Chaos Damage", + ["type"] = "explicit", + }, + }, + ["9280_MinionDamageOnWeaponDoubleDamage"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_755922799", + ["text"] = "Minions have #% chance to deal Double Damage", + ["type"] = "explicit", + }, + }, + ["9285_AbyssMinionIgniteOnHitChance"] = { ["AbyssJewel"] = { - ["max"] = 15, - ["min"] = 10, - }, + ["max"] = 15, + ["min"] = 10, + }, ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 10, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3945908658", - ["text"] = "Minions have #% chance to Ignite", - ["type"] = "explicit", - }, - }, - ["9287_MinionCooldownRecovery"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1691403182", - ["text"] = "Minions have #% increased Cooldown Recovery Rate", - ["type"] = "explicit", - }, - }, - ["9288_MinionCriticalStrikeChanceIncrease"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3945908658", + ["text"] = "Minions have #% chance to Ignite", + ["type"] = "explicit", + }, + }, + ["9288_MinionCooldownRecovery"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1691403182", + ["text"] = "Minions have #% increased Cooldown Recovery Rate", + ["type"] = "explicit", + }, + }, + ["9289_MinionCriticalStrikeChanceIncrease"] = { ["1HWeapon"] = { - ["max"] = 109, - ["min"] = 10, - }, + ["max"] = 109, + ["min"] = 10, + }, ["Shield"] = { - ["max"] = 109, - ["min"] = 10, - }, + ["max"] = 109, + ["min"] = 10, + }, ["Wand"] = { - ["max"] = 109, - ["min"] = 10, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_491450213", - ["text"] = "Minions have #% increased Critical Strike Chance", - ["type"] = "explicit", - }, - }, - ["9290_MinionCriticalStrikeMultiplier"] = { + ["max"] = 109, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_491450213", + ["text"] = "Minions have #% increased Critical Strike Chance", + ["type"] = "explicit", + }, + }, + ["9291_MinionCriticalStrikeMultiplier"] = { ["1HWeapon"] = { - ["max"] = 38, - ["min"] = 10, - }, + ["max"] = 38, + ["min"] = 10, + }, ["Wand"] = { - ["max"] = 38, - ["min"] = 10, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1854213750", - ["text"] = "Minions have +#% to Critical Strike Multiplier", - ["type"] = "explicit", - }, - }, - ["9296_MinionDamageVSAbyssMonsters"] = { + ["max"] = 38, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1854213750", + ["text"] = "Minions have +#% to Critical Strike Multiplier", + ["type"] = "explicit", + }, + }, + ["9297_MinionDamageVSAbyssMonsters"] = { ["AbyssJewel"] = { - ["max"] = 40, - ["min"] = 30, - }, + ["max"] = 40, + ["min"] = 30, + }, ["AnyJewel"] = { - ["max"] = 40, - ["min"] = 30, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1086057912", - ["text"] = "Minions deal #% increased Damage with Hits and Ailments against Abyssal Monsters", - ["type"] = "explicit", - }, - }, - ["9314_FlatMinionLifeRegeneration"] = { + ["max"] = 40, + ["min"] = 30, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1086057912", + ["text"] = "Minions deal #% increased Damage with Hits and Ailments against Abyssal Monsters", + ["type"] = "explicit", + }, + }, + ["9315_FlatMinionLifeRegeneration"] = { ["AbyssJewel"] = { - ["max"] = 60, - ["min"] = 22, - }, + ["max"] = 60, + ["min"] = 22, + }, ["AnyJewel"] = { - ["max"] = 60, - ["min"] = 22, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3062329212", - ["text"] = "Minions Regenerate # Life per second", - ["type"] = "explicit", - }, - }, - ["9317_MinionMaxElementalResistance"] = { + ["max"] = 60, + ["min"] = 22, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3062329212", + ["text"] = "Minions Regenerate # Life per second", + ["type"] = "explicit", + }, + }, + ["9318_MinionMaxElementalResistance"] = { ["Shield"] = { - ["max"] = 8, - ["min"] = 3, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_10224385", - ["text"] = "Minions have +#% to all maximum Elemental Resistances", - ["type"] = "explicit", - }, - }, - ["9334_MinionSpellsHinderOnHitChance"] = { + ["max"] = 8, + ["min"] = 3, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_10224385", + ["text"] = "Minions have +#% to all maximum Elemental Resistances", + ["type"] = "explicit", + }, + }, + ["9335_MinionSpellsHinderOnHitChance"] = { ["AbyssJewel"] = { - ["max"] = 8, - ["min"] = 3, - }, + ["max"] = 8, + ["min"] = 3, + }, ["AnyJewel"] = { - ["max"] = 8, - ["min"] = 3, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2323739383", - ["text"] = "Minions have #% chance to Hinder Enemies on Hit with Spells", - ["type"] = "explicit", - }, - }, - ["9338_RecentMinionCrit"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3913090641", - ["text"] = "Minions created Recently have #% increased Critical Hit Chance", - ["type"] = "explicit", - }, - }, + ["max"] = 8, + ["min"] = 3, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2323739383", + ["text"] = "Minions have #% chance to Hinder Enemies on Hit with Spells", + ["type"] = "explicit", + }, + }, + ["9339_RecentMinionCrit"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3913090641", + ["text"] = "Minions created Recently have #% increased Critical Hit Chance", + ["type"] = "explicit", + }, + }, ["935_FlaskEffectReducedDuration"] = { ["Flask"] = { - ["max"] = 25, - ["min"] = 25, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2448920197", - ["text"] = "#% increased effect", - ["type"] = "explicit", - }, - }, + ["max"] = 25, + ["min"] = 25, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2448920197", + ["text"] = "#% increased effect", + ["type"] = "explicit", + }, + }, ["935_FlaskIncreasedRecoveryReducedEffect"] = { ["Flask"] = { - ["max"] = -25, - ["min"] = -25, - }, - ["inverseKey"] = "reduced", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2448920197", - ["text"] = "#% increased effect", - ["type"] = "explicit", - }, - }, - ["9366_MinionsRecoverMaximumLifeWhenYouFocus"] = { + ["max"] = -25, + ["min"] = -25, + }, + ["inverseKey"] = "reduced", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2448920197", + ["text"] = "#% increased effect", + ["type"] = "explicit", + }, + }, + ["9367_MinionsRecoverMaximumLifeWhenYouFocus"] = { ["Gloves"] = { - ["max"] = 100, - ["min"] = 100, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3500359417", - ["text"] = "Minions Recover #% of their Life when you Focus", - ["type"] = "explicit", - }, - }, - ["9366_MinionsRecoverMaximumLifeWhenYouFocusCDR"] = { + ["max"] = 100, + ["min"] = 100, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3500359417", + ["text"] = "Minions Recover #% of their Life when you Focus", + ["type"] = "explicit", + }, + }, + ["9367_MinionsRecoverMaximumLifeWhenYouFocusCDR"] = { ["Gloves"] = { - ["max"] = 100, - ["min"] = 100, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3500359417", - ["text"] = "Minions Recover #% of their Life when you Focus", - ["type"] = "explicit", - }, - }, + ["max"] = 100, + ["min"] = 100, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3500359417", + ["text"] = "Minions Recover #% of their Life when you Focus", + ["type"] = "explicit", + }, + }, ["936_FlaskBuffArmourWhileHealing"] = { ["Flask"] = { - ["max"] = 60, - ["min"] = 41, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1693613464", - ["text"] = "#% increased Armour during Effect", - ["type"] = "explicit", - }, - }, + ["max"] = 60, + ["min"] = 41, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1693613464", + ["text"] = "#% increased Armour during Effect", + ["type"] = "explicit", + }, + }, ["937_FlaskBuffEvasionWhileHealing"] = { ["Flask"] = { - ["max"] = 60, - ["min"] = 41, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_299054775", - ["text"] = "#% increased Evasion Rating during Effect", - ["type"] = "explicit", - }, - }, + ["max"] = 60, + ["min"] = 41, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_299054775", + ["text"] = "#% increased Evasion Rating during Effect", + ["type"] = "explicit", + }, + }, ["939_FlaskBuffWardWhileHealing"] = { ["Flask"] = { - ["max"] = 30, - ["min"] = 19, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2891175306", - ["text"] = "#% increased Ward during Effect", - ["type"] = "explicit", - }, - }, - ["9411_MovementSpeedPerNearbyEnemy"] = { + ["max"] = 30, + ["min"] = 19, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2891175306", + ["text"] = "#% increased Ward during Effect", + ["type"] = "explicit", + }, + }, + ["9412_MovementSpeedPerNearbyEnemy"] = { ["Boots"] = { - ["max"] = 5, - ["min"] = 5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1426967889", - ["text"] = "#% increased Movement Speed for each nearby Enemy, up to a maximum of 50%", - ["type"] = "explicit", - }, - }, - ["9418_MovementSpeedIfHitRecently"] = { + ["max"] = 5, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1426967889", + ["text"] = "#% increased Movement Speed for each nearby Enemy, up to a maximum of 50%", + ["type"] = "explicit", + }, + }, + ["9419_MovementSpeedIfHitRecently"] = { ["1HMace"] = { - ["max"] = 10, - ["min"] = 5, - }, + ["max"] = 10, + ["min"] = 5, + }, ["1HWeapon"] = { - ["max"] = 10, - ["min"] = 5, - }, + ["max"] = 10, + ["min"] = 5, + }, ["2HMace"] = { - ["max"] = 15, - ["min"] = 5, - }, + ["max"] = 15, + ["min"] = 5, + }, ["2HWeapon"] = { - ["max"] = 15, - ["min"] = 5, - }, + ["max"] = 15, + ["min"] = 5, + }, ["Boots"] = { - ["max"] = 6, - ["min"] = 4, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3178542354", - ["text"] = "#% increased Movement Speed if you've Hit an Enemy Recently", - ["type"] = "explicit", - }, - }, - ["9421_MovementSpeedIfNotDamagedRecently"] = { + ["max"] = 6, + ["min"] = 4, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3178542354", + ["text"] = "#% increased Movement Speed if you've Hit an Enemy Recently", + ["type"] = "explicit", + }, + }, + ["9422_MovementSpeedIfNotDamagedRecently"] = { ["AbyssJewel"] = { - ["max"] = 4, - ["min"] = 3, - }, + ["max"] = 4, + ["min"] = 3, + }, ["AnyJewel"] = { - ["max"] = 4, - ["min"] = 3, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3854949926", - ["text"] = "#% increased Movement Speed if you haven't taken Damage Recently", - ["type"] = "explicit", - }, - }, - ["9434_MovementSpeedOnBurningChilledShockedGround"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1521863824", - ["text"] = "#% increased Movement speed while on Burning, Chilled or Shocked ground", - ["type"] = "explicit", - }, - }, + ["max"] = 4, + ["min"] = 3, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3854949926", + ["text"] = "#% increased Movement Speed if you haven't taken Damage Recently", + ["type"] = "explicit", + }, + }, + ["9435_MovementSpeedOnBurningChilledShockedGround"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1521863824", + ["text"] = "#% increased Movement speed while on Burning, Chilled or Shocked ground", + ["type"] = "explicit", + }, + }, ["943_FlaskBuffAccuracyWhileHealing"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_3337754340", - ["text"] = "#% increased Accuracy Rating during Effect", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_3337754340", + ["text"] = "#% increased Accuracy Rating during Effect", + ["type"] = "explicit", + }, + }, ["944_FlaskBuffAttackSpeedWhileHealing"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_968369591", - ["text"] = "#% increased Attack Speed during Effect", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_968369591", + ["text"] = "#% increased Attack Speed during Effect", + ["type"] = "explicit", + }, + }, ["945_FlaskBuffCastSpeedWhileHealing"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_3256116097", - ["text"] = "#% increased Cast Speed during Effect", - ["type"] = "explicit", - }, - }, - ["9463_FortificationDamageAura"] = { - ["sign"] = "", + ["id"] = "explicit.stat_3256116097", + ["text"] = "#% increased Cast Speed during Effect", + ["type"] = "explicit", + }, + }, + ["9464_FortificationDamageAura"] = { + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_4187518631", - ["text"] = "Nearby Enemies take #% increased Physical Damage per two Fortification on you", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_4187518631", + ["text"] = "Nearby Enemies take #% increased Physical Damage per two Fortification on you", + ["type"] = "explicit", + }, + }, ["946_FlaskBuffMovementSpeedWhileHealing"] = { ["Flask"] = { - ["max"] = 14, - ["min"] = 6, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3182498570", - ["text"] = "#% increased Movement Speed during Effect", - ["type"] = "explicit", - }, - }, + ["max"] = 14, + ["min"] = 6, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3182498570", + ["text"] = "#% increased Movement Speed during Effect", + ["type"] = "explicit", + }, + }, ["947_FlaskBuffStunRecoveryWhileHealing"] = { ["Flask"] = { - ["max"] = 80, - ["min"] = 51, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3479987487", - ["text"] = "#% increased Block and Stun Recovery during Effect", - ["type"] = "explicit", - }, - }, - ["9486_VaalSoulCost"] = { + ["max"] = 80, + ["min"] = 51, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3479987487", + ["text"] = "#% increased Block and Stun Recovery during Effect", + ["type"] = "explicit", + }, + }, + ["9487_VaalSoulCost"] = { ["1HAxe"] = { - ["max"] = 20, - ["min"] = 20, - }, + ["max"] = 20, + ["min"] = 20, + }, ["1HMace"] = { - ["max"] = 20, - ["min"] = 20, - }, + ["max"] = 20, + ["min"] = 20, + }, ["1HSword"] = { - ["max"] = 20, - ["min"] = 20, - }, + ["max"] = 20, + ["min"] = 20, + }, ["1HWeapon"] = { - ["max"] = 20, - ["min"] = 20, - }, + ["max"] = 20, + ["min"] = 20, + }, ["2HAxe"] = { - ["max"] = 40, - ["min"] = 40, - }, + ["max"] = 40, + ["min"] = 40, + }, ["2HMace"] = { - ["max"] = 40, - ["min"] = 40, - }, + ["max"] = 40, + ["min"] = 40, + }, ["2HSword"] = { - ["max"] = 40, - ["min"] = 40, - }, + ["max"] = 40, + ["min"] = 40, + }, ["2HWeapon"] = { - ["max"] = 40, - ["min"] = 40, - }, + ["max"] = 40, + ["min"] = 40, + }, ["Bow"] = { - ["max"] = 40, - ["min"] = 40, - }, + ["max"] = 40, + ["min"] = 40, + }, ["Claw"] = { - ["max"] = 20, - ["min"] = 20, - }, + ["max"] = 20, + ["min"] = 20, + }, ["Dagger"] = { - ["max"] = 20, - ["min"] = 20, - }, + ["max"] = 20, + ["min"] = 20, + }, ["Staff"] = { - ["max"] = 40, - ["min"] = 40, - }, + ["max"] = 40, + ["min"] = 40, + }, ["Wand"] = { - ["max"] = 20, - ["min"] = 20, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3533432197", - ["text"] = "Non-Aura Vaal Skills require #% reduced Souls Per Use", - ["type"] = "explicit", - }, - }, - ["9488_NonChaosAddedAsChaos"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3533432197", + ["text"] = "Non-Aura Vaal Skills require #% reduced Souls Per Use", + ["type"] = "explicit", + }, + }, + ["9489_NonChaosAddedAsChaos"] = { ["Amulet"] = { - ["max"] = 5, - ["min"] = 3, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2063695047", - ["text"] = "Gain #% of Non-Chaos Damage as extra Chaos Damage", - ["type"] = "explicit", - }, - }, - ["9488_SpellDamageAndNonChaosDamageToAddAsChaosDamage"] = { + ["max"] = 5, + ["min"] = 3, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2063695047", + ["text"] = "Gain #% of Non-Chaos Damage as extra Chaos Damage", + ["type"] = "explicit", + }, + }, + ["9489_SpellDamageAndNonChaosDamageToAddAsChaosDamage"] = { ["1HAxe"] = { - ["max"] = 5, - ["min"] = 2, - }, + ["max"] = 5, + ["min"] = 2, + }, ["1HMace"] = { - ["max"] = 5, - ["min"] = 2, - }, + ["max"] = 5, + ["min"] = 2, + }, ["1HSword"] = { - ["max"] = 5, - ["min"] = 2, - }, + ["max"] = 5, + ["min"] = 2, + }, ["1HWeapon"] = { - ["max"] = 5, - ["min"] = 2, - }, + ["max"] = 5, + ["min"] = 2, + }, ["2HAxe"] = { - ["max"] = 10, - ["min"] = 3, - }, + ["max"] = 10, + ["min"] = 3, + }, ["2HMace"] = { - ["max"] = 10, - ["min"] = 3, - }, + ["max"] = 10, + ["min"] = 3, + }, ["2HSword"] = { - ["max"] = 10, - ["min"] = 3, - }, + ["max"] = 10, + ["min"] = 3, + }, ["2HWeapon"] = { - ["max"] = 10, - ["min"] = 3, - }, + ["max"] = 10, + ["min"] = 3, + }, ["Bow"] = { - ["max"] = 10, - ["min"] = 5, - }, + ["max"] = 10, + ["min"] = 5, + }, ["Claw"] = { - ["max"] = 5, - ["min"] = 2, - }, + ["max"] = 5, + ["min"] = 2, + }, ["Dagger"] = { - ["max"] = 5, - ["min"] = 2, - }, + ["max"] = 5, + ["min"] = 2, + }, ["Staff"] = { - ["max"] = 10, - ["min"] = 3, - }, + ["max"] = 10, + ["min"] = 3, + }, ["Wand"] = { - ["max"] = 5, - ["min"] = 2, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2063695047", - ["text"] = "Gain #% of Non-Chaos Damage as extra Chaos Damage", - ["type"] = "explicit", - }, - }, - ["9488_WeaponSpellDamageAddedAsChaos"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2063695047", - ["text"] = "Gain #% of Non-Chaos Damage as extra Chaos Damage", - ["type"] = "explicit", - }, - }, + ["max"] = 5, + ["min"] = 2, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2063695047", + ["text"] = "Gain #% of Non-Chaos Damage as extra Chaos Damage", + ["type"] = "explicit", + }, + }, + ["9489_WeaponSpellDamageAddedAsChaos"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2063695047", + ["text"] = "Gain #% of Non-Chaos Damage as extra Chaos Damage", + ["type"] = "explicit", + }, + }, ["948_FlaskBuffResistancesWhileHealing"] = { ["Flask"] = { - ["max"] = 20, - ["min"] = 12, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_962725504", - ["text"] = "#% additional Elemental Resistances during Effect", - ["type"] = "explicit", - }, - }, - ["9499_IncreasedAilmentDurationMaven"] = { + ["max"] = 20, + ["min"] = 12, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_962725504", + ["text"] = "#% additional Elemental Resistances during Effect", + ["type"] = "explicit", + }, + }, + ["949_FlaskBuffLifeLeechWhileHealing"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3111255591", + ["text"] = "#% of Physical Attack Damage Leeched as Life during Effect", + ["type"] = "explicit", + }, + }, + ["9500_IncreasedAilmentDurationMaven"] = { ["Gloves"] = { - ["max"] = 15, - ["min"] = 13, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_782230869", - ["text"] = "#% increased Effect of Non-Damaging Ailments", - ["type"] = "explicit", - }, - }, - ["9499_IncreasedAilmentEffectOnEnemies"] = { + ["max"] = 15, + ["min"] = 13, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_782230869", + ["text"] = "#% increased Effect of Non-Damaging Ailments", + ["type"] = "explicit", + }, + }, + ["9500_IncreasedAilmentEffectOnEnemies"] = { ["Amulet"] = { - ["max"] = 40, - ["min"] = 15, - }, + ["max"] = 40, + ["min"] = 15, + }, ["Boots"] = { - ["max"] = 60, - ["min"] = 16, - }, + ["max"] = 60, + ["min"] = 16, + }, ["Quiver"] = { - ["max"] = 25, - ["min"] = 15, - }, + ["max"] = 25, + ["min"] = 15, + }, ["Ring"] = { - ["max"] = 25, - ["min"] = 15, - }, + ["max"] = 25, + ["min"] = 15, + }, ["Shield"] = { - ["max"] = 25, - ["min"] = 15, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_782230869", - ["text"] = "#% increased Effect of Non-Damaging Ailments", - ["type"] = "explicit", - }, - }, - ["949_FlaskBuffLifeLeechWhileHealing"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3111255591", - ["text"] = "#% of Physical Attack Damage Leeched as Life during Effect", - ["type"] = "explicit", - }, - }, + ["max"] = 25, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_782230869", + ["text"] = "#% increased Effect of Non-Damaging Ailments", + ["type"] = "explicit", + }, + }, ["950_FlaskBuffSpellEnergyShieldLeechWhileHealing"] = { ["Flask"] = { - ["max"] = 0.8, - ["min"] = 0.4, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1456464057", - ["text"] = "#% of Spell Damage Leeched as Energy Shield during Effect", - ["type"] = "explicit", - }, - }, + ["max"] = 0.8, + ["min"] = 0.4, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1456464057", + ["text"] = "#% of Spell Damage Leeched as Energy Shield during Effect", + ["type"] = "explicit", + }, + }, ["951_FlaskBuffAttackLifeLeechWhileHealing"] = { ["Flask"] = { - ["max"] = 0.8, - ["min"] = 0.4, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1173558568", - ["text"] = "#% of Attack Damage Leeched as Life during Effect", - ["type"] = "explicit", - }, - }, - ["9528_AdditionalTrapsThrownSupported"] = { + ["max"] = 0.8, + ["min"] = 0.4, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1173558568", + ["text"] = "#% of Attack Damage Leeched as Life during Effect", + ["type"] = "explicit", + }, + }, + ["9529_AdditionalTrapsThrownSupported"] = { ["Gloves"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1220800126", - ["text"] = "Skills which Throw Traps throw up to 1 additional Trap", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1220800126", + ["text"] = "Skills which Throw Traps throw up to 1 additional Trap", + ["type"] = "explicit", + }, + }, ["952_FlaskBuffLifeLeechPermyriadWhileHealing"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_3111255591", - ["text"] = "#% of Physical Attack Damage Leeched as Life during Effect", - ["type"] = "explicit", - }, - }, - ["9532_GainEnduranceChargeWhileStationary"] = { + ["id"] = "explicit.stat_3111255591", + ["text"] = "#% of Physical Attack Damage Leeched as Life during Effect", + ["type"] = "explicit", + }, + }, + ["9533_GainEnduranceChargeWhileStationary"] = { ["1HSword"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["1HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["2HSword"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["2HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_2156210979", - ["text"] = "Gain an Endurance Charge every 4 seconds while Stationary", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_2156210979", + ["text"] = "Gain an Endurance Charge every 4 seconds while Stationary", + ["type"] = "explicit", + }, + }, ["954_FlaskBuffManaLeechPermyriadWhileHealing"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_374891408", - ["text"] = "#% of Physical Attack Damage Leeched as Mana during Effect", - ["type"] = "explicit", - }, - }, - ["9552_OfferingDuration"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2957407601", - ["text"] = "Offering Skills have #% increased Duration", - ["type"] = "explicit", - }, - }, - ["9559_WarcriesOpenChests"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3452963763", - ["text"] = "Your Warcries open Chests", - ["type"] = "explicit", - }, - }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_374891408", + ["text"] = "#% of Physical Attack Damage Leeched as Mana during Effect", + ["type"] = "explicit", + }, + }, + ["9553_OfferingDuration"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2957407601", + ["text"] = "Offering Skills have #% increased Duration", + ["type"] = "explicit", + }, + }, ["955_FlaskBuffKnockbackWhileHealing"] = { ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_251342217", - ["text"] = "Adds Knockback to Melee Attacks during Effect", - ["type"] = "explicit", - }, - }, - ["9610_EnemiesBlockedAreIntimidated"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2930706364", - ["text"] = "Permanently Intimidate Enemies on Block", - ["type"] = "explicit", - }, - }, - ["9614_SpiritAndPhantasmRefreshOnUnique"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_7847395", - ["text"] = "Summoned Phantasms have #% chance to refresh their Duration when they Hit a Rare or Unique Enemy", - ["type"] = "explicit", - }, - }, - ["9633_PhysicalDamageAddedAsExtraFireIfCriticalStrikeDealtRecently"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_251342217", + ["text"] = "Adds Knockback to Melee Attacks during Effect", + ["type"] = "explicit", + }, + }, + ["9611_EnemiesBlockedAreIntimidated"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2930706364", + ["text"] = "Permanently Intimidate Enemies on Block", + ["type"] = "explicit", + }, + }, + ["9615_SpiritAndPhantasmRefreshOnUnique"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_7847395", + ["text"] = "Summoned Phantasms have #% chance to refresh their Duration when they Hit a Rare or Unique Enemy", + ["type"] = "explicit", + }, + }, + ["9634_PhysicalDamageAddedAsExtraFireIfCriticalStrikeDealtRecently"] = { ["AbyssJewel"] = { - ["max"] = 4, - ["min"] = 2, - }, + ["max"] = 4, + ["min"] = 2, + }, ["AnyJewel"] = { - ["max"] = 4, - ["min"] = 2, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2810434465", - ["text"] = "Gain #% of Physical Damage as Extra Fire Damage if you've dealt a Critical Strike Recently", - ["type"] = "explicit", - }, - }, + ["max"] = 4, + ["min"] = 2, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2810434465", + ["text"] = "Gain #% of Physical Damage as Extra Fire Damage if you've dealt a Critical Strike Recently", + ["type"] = "explicit", + }, + }, ["963_FlaskBuffAvoidChillFreeze"] = { ["Flask"] = { - ["max"] = 55, - ["min"] = 31, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1619168299", - ["text"] = "#% chance to Avoid being Chilled during Effect", - ["type"] = "explicit", - }, - }, + ["max"] = 55, + ["min"] = 31, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1053326368", + ["text"] = "#% chance to Avoid being Chilled during Effect", + ["type"] = "explicit", + }, + }, ["964_FlaskBuffAvoidChillFreeze"] = { ["Flask"] = { - ["max"] = 55, - ["min"] = 31, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_475518267", - ["text"] = "#% chance to Avoid being Frozen during Effect", - ["type"] = "explicit", - }, - }, - ["9651_PhysicalDamageReductionRatingDuringSoulGainPrevention"] = { + ["max"] = 55, + ["min"] = 31, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2872815301", + ["text"] = "#% chance to Avoid being Frozen during Effect", + ["type"] = "explicit", + }, + }, + ["9652_PhysicalDamageReductionRatingDuringSoulGainPrevention"] = { ["Chest"] = { - ["max"] = 4000, - ["min"] = 1000, - }, + ["max"] = 4000, + ["min"] = 1000, + }, ["Shield"] = { - ["max"] = 4000, - ["min"] = 1000, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1539825365", - ["text"] = "+# to Armour during Soul Gain Prevention", - ["type"] = "explicit", - }, - }, - ["9652_PhysicalDamageReductionRatingIfYouHaveHitAnEnemyRecently"] = { + ["max"] = 4000, + ["min"] = 1000, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1539825365", + ["text"] = "+# to Armour during Soul Gain Prevention", + ["type"] = "explicit", + }, + }, + ["9653_PhysicalDamageReductionRatingIfYouHaveHitAnEnemyRecently"] = { ["1HAxe"] = { - ["max"] = 1000, - ["min"] = 500, - }, + ["max"] = 1000, + ["min"] = 500, + }, ["1HMace"] = { - ["max"] = 1000, - ["min"] = 500, - }, + ["max"] = 1000, + ["min"] = 500, + }, ["1HSword"] = { - ["max"] = 1000, - ["min"] = 500, - }, + ["max"] = 1000, + ["min"] = 500, + }, ["1HWeapon"] = { - ["max"] = 1000, - ["min"] = 500, - }, + ["max"] = 1000, + ["min"] = 500, + }, ["2HAxe"] = { - ["max"] = 1000, - ["min"] = 500, - }, + ["max"] = 1000, + ["min"] = 500, + }, ["2HMace"] = { - ["max"] = 1000, - ["min"] = 500, - }, + ["max"] = 1000, + ["min"] = 500, + }, ["2HSword"] = { - ["max"] = 1000, - ["min"] = 500, - }, + ["max"] = 1000, + ["min"] = 500, + }, ["2HWeapon"] = { - ["max"] = 1000, - ["min"] = 500, - }, + ["max"] = 1000, + ["min"] = 500, + }, ["AbyssJewel"] = { - ["max"] = 300, - ["min"] = 250, - }, + ["max"] = 300, + ["min"] = 250, + }, ["AnyJewel"] = { - ["max"] = 300, - ["min"] = 250, - }, + ["max"] = 300, + ["min"] = 250, + }, ["BaseJewel"] = { - ["max"] = 300, - ["min"] = 250, - }, + ["max"] = 300, + ["min"] = 250, + }, ["Staff"] = { - ["max"] = 1000, - ["min"] = 1000, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2368149582", - ["text"] = "+# to Armour if you've Hit an Enemy Recently", - ["type"] = "explicit", - }, - }, + ["max"] = 1000, + ["min"] = 1000, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2368149582", + ["text"] = "+# to Armour if you've Hit an Enemy Recently", + ["type"] = "explicit", + }, + }, ["965_FlaskBuffAvoidIgnite"] = { ["Flask"] = { - ["max"] = 55, - ["min"] = 31, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_20251177", - ["text"] = "#% chance to Avoid being Ignited during Effect", - ["type"] = "explicit", - }, - }, + ["max"] = 55, + ["min"] = 31, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_20251177", + ["text"] = "#% chance to Avoid being Ignited during Effect", + ["type"] = "explicit", + }, + }, ["966_FlaskBuffAvoidShock"] = { ["Flask"] = { - ["max"] = 55, - ["min"] = 31, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3642618258", - ["text"] = "#% chance to Avoid being Shocked during Effect", - ["type"] = "explicit", - }, - }, - ["9670_ReducedPhysicalReflectTaken"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_129035625", - ["text"] = "You and your Minions take #% reduced Reflected Physical Damage", - ["type"] = "explicit", - }, - }, - ["9670_ReducedPhysicalReflectTakenMaven"] = { + ["max"] = 55, + ["min"] = 31, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3642618258", + ["text"] = "#% chance to Avoid being Shocked during Effect", + ["type"] = "explicit", + }, + }, + ["9671_ReducedPhysicalReflectTaken"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_129035625", + ["text"] = "You and your Minions take #% reduced Reflected Physical Damage", + ["type"] = "explicit", + }, + }, + ["9671_ReducedPhysicalReflectTakenMaven"] = { ["Chest"] = { - ["max"] = 100, - ["min"] = 100, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_129035625", - ["text"] = "You and your Minions take #% reduced Reflected Physical Damage", - ["type"] = "explicit", - }, - }, - ["9671_GlobalPhysicalGemLevel"] = { + ["max"] = 100, + ["min"] = 100, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_129035625", + ["text"] = "You and your Minions take #% reduced Reflected Physical Damage", + ["type"] = "explicit", + }, + }, + ["9672_GlobalPhysicalGemLevel"] = { ["Amulet"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_619213329", - ["text"] = "+# to Level of all Physical Skill Gems", - ["type"] = "explicit", - }, - }, + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_619213329", + ["text"] = "+# to Level of all Physical Skill Gems", + ["type"] = "explicit", + }, + }, ["968_FlaskReflectReductionDuringFlaskEffect"] = { ["Flask"] = { - ["max"] = 80, - ["min"] = 45, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_603134774", - ["text"] = "#% of Damage from your Hits cannot be Reflected during Effect", - ["type"] = "explicit", - }, - }, - ["9714_PrideReservation"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3993865658", - ["text"] = "Pride has #% increased Mana Reservation Efficiency", - ["type"] = "explicit", - }, - }, - ["9715_PrideReservationEfficiency"] = { + ["max"] = 80, + ["min"] = 45, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_603134774", + ["text"] = "#% of Damage from your Hits cannot be Reflected during Effect", + ["type"] = "explicit", + }, + }, + ["9715_PrideReservation"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3484910620", + ["text"] = "Pride has #% increased Mana Reservation Efficiency", + ["type"] = "explicit", + }, + }, + ["9716_PrideReservationEfficiency"] = { ["Amulet"] = { - ["max"] = 50, - ["min"] = 40, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3993865658", - ["text"] = "Pride has #% increased Mana Reservation Efficiency", - ["type"] = "explicit", - }, - }, - ["9728_ProjectileAttackDamageDuringFlaskEffect"] = { + ["max"] = 50, + ["min"] = 40, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3484910620", + ["text"] = "Pride has #% increased Mana Reservation Efficiency", + ["type"] = "explicit", + }, + }, + ["9729_ProjectileAttackDamageDuringFlaskEffect"] = { ["Belt"] = { - ["max"] = 35, - ["min"] = 20, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2771016039", - ["text"] = "#% increased Projectile Attack Damage during any Flask Effect", - ["type"] = "explicit", - }, - }, + ["max"] = 35, + ["min"] = 20, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2771016039", + ["text"] = "#% increased Projectile Attack Damage during any Flask Effect", + ["type"] = "explicit", + }, + }, ["972_FlaskBuffAvoidStunWhileHealing"] = { ["Flask"] = { - ["max"] = 55, - ["min"] = 31, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2312652600", - ["text"] = "#% Chance to Avoid being Stunned during Effect", - ["type"] = "explicit", - }, - }, + ["max"] = 55, + ["min"] = 31, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2312652600", + ["text"] = "#% Chance to Avoid being Stunned during Effect", + ["type"] = "explicit", + }, + }, ["972_LocalFlaskAvoidStunChanceAndMovementSpeedDuringFlaskEffect"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_2312652600", - ["text"] = "#% Chance to Avoid being Stunned during Effect", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_2312652600", + ["text"] = "#% Chance to Avoid being Stunned during Effect", + ["type"] = "explicit", + }, + }, ["972_LocalFlaskAvoidStunChanceDuringFlaskEffect"] = { ["Flask"] = { - ["max"] = 50, - ["min"] = 50, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2312652600", - ["text"] = "#% Chance to Avoid being Stunned during Effect", - ["type"] = "explicit", - }, - }, - ["9734_ProjectileDamagePerEnemyPierced"] = { + ["max"] = 50, + ["min"] = 50, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2312652600", + ["text"] = "#% Chance to Avoid being Stunned during Effect", + ["type"] = "explicit", + }, + }, + ["9735_ProjectileDamagePerEnemyPierced"] = { ["2HWeapon"] = { - ["max"] = 30, - ["min"] = 15, - }, + ["max"] = 30, + ["min"] = 15, + }, ["Bow"] = { - ["max"] = 30, - ["min"] = 15, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_883169830", - ["text"] = "Projectiles deal #% increased Damage with Hits and Ailments for each Enemy Pierced", - ["type"] = "explicit", - }, - }, - ["9748_ProjectilesChainAtCloseRange"] = { + ["max"] = 30, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_883169830", + ["text"] = "Projectiles deal #% increased Damage with Hits and Ailments for each Enemy Pierced", + ["type"] = "explicit", + }, + }, + ["9749_ProjectilesChainAtCloseRange"] = { ["Quiver"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_2940232338", - ["text"] = "Projectiles can Chain from any number of additional targets in Close Range", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_2940232338", + ["text"] = "Projectiles can Chain from any number of additional targets in Close Range", + ["type"] = "explicit", + }, + }, ["974_FlaskBuffFreezeShockIgniteChanceWhileHealing"] = { ["Flask"] = { - ["max"] = 34, - ["min"] = 19, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_97064873", - ["text"] = "#% chance to Freeze, Shock and Ignite during Effect", - ["type"] = "explicit", - }, - }, - ["9768_PurityOfFireReservation"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3003688066", - ["text"] = "Purity of Fire has #% increased Mana Reservation Efficiency", - ["type"] = "explicit", - }, - }, - ["9769_PurityOfFireReservationEfficiency"] = { - ["Amulet"] = { - ["max"] = 60, - ["min"] = 50, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3003688066", - ["text"] = "Purity of Fire has #% increased Mana Reservation Efficiency", - ["type"] = "explicit", - }, - }, + ["max"] = 34, + ["min"] = 19, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_97064873", + ["text"] = "#% chance to Freeze, Shock and Ignite during Effect", + ["type"] = "explicit", + }, + }, + ["9769_PurityOfFireReservation"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1135152940", + ["text"] = "Purity of Fire has #% increased Mana Reservation Efficiency", + ["type"] = "explicit", + }, + }, ["976_FlaskBuffCriticalWhileHealing"] = { ["Flask"] = { - ["max"] = 55, - ["min"] = 26, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2008255263", - ["text"] = "#% increased Critical Strike Chance during Effect", - ["type"] = "explicit", - }, - }, + ["max"] = 55, + ["min"] = 26, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2008255263", + ["text"] = "#% increased Critical Strike Chance during Effect", + ["type"] = "explicit", + }, + }, ["976_LocalFlaskCriticalStrikeChanceDuringFlaskEffect"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2008255263", - ["text"] = "#% increased Critical Strike Chance during Effect", - ["type"] = "explicit", - }, - }, - ["9771_PurityOfIceReservation"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_139925400", - ["text"] = "Purity of Ice has #% increased Mana Reservation Efficiency", - ["type"] = "explicit", - }, - }, - ["9772_PurityOfIceReservationEfficiency"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2008255263", + ["text"] = "#% increased Critical Strike Chance during Effect", + ["type"] = "explicit", + }, + }, + ["9770_PurityOfFireReservationEfficiency"] = { + ["Amulet"] = { + ["max"] = 60, + ["min"] = 50, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1135152940", + ["text"] = "Purity of Fire has #% increased Mana Reservation Efficiency", + ["type"] = "explicit", + }, + }, + ["9772_PurityOfIceReservation"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_139925400", + ["text"] = "Purity of Ice has #% increased Mana Reservation Efficiency", + ["type"] = "explicit", + }, + }, + ["9773_PurityOfIceReservationEfficiency"] = { ["Amulet"] = { - ["max"] = 60, - ["min"] = 50, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_139925400", - ["text"] = "Purity of Ice has #% increased Mana Reservation Efficiency", - ["type"] = "explicit", - }, - }, - ["9774_PurityOfLightningReservation"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3411256933", - ["text"] = "Purity of Lightning has #% increased Mana Reservation Efficiency", - ["type"] = "explicit", - }, - }, - ["9775_PurityOfLightningReservationEfficiency"] = { + ["max"] = 60, + ["min"] = 50, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_139925400", + ["text"] = "Purity of Ice has #% increased Mana Reservation Efficiency", + ["type"] = "explicit", + }, + }, + ["9775_PurityOfLightningReservation"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1450978702", + ["text"] = "Purity of Lightning has #% increased Mana Reservation Efficiency", + ["type"] = "explicit", + }, + }, + ["9776_PurityOfLightningReservationEfficiency"] = { ["Amulet"] = { - ["max"] = 60, - ["min"] = 50, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3411256933", - ["text"] = "Purity of Lightning has #% increased Mana Reservation Efficiency", - ["type"] = "explicit", - }, - }, - ["9782_Quiver1AdditionalPierceOld"] = { - ["sign"] = "", - ["specialCaseData"] = { - ["overrideModLineSingular"] = "Projectiles Pierce an additional Target", - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2067062068", - ["text"] = "Projectiles Pierce # additional Targets", - ["type"] = "explicit", - }, - }, - ["9783_Quiver2AdditionalPierceOld"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2067062068", - ["text"] = "Projectiles Pierce # additional Targets", - ["type"] = "explicit", - }, - }, - ["9802_SpiritAndPhantasmRefreshOnUnique"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4070754804", - ["text"] = "Summoned Raging Spirits have #% chance to refresh their Duration when they Hit a Rare or Unique Enemy", - ["type"] = "explicit", - }, - }, + ["max"] = 60, + ["min"] = 50, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1450978702", + ["text"] = "Purity of Lightning has #% increased Mana Reservation Efficiency", + ["type"] = "explicit", + }, + }, + ["9783_Quiver1AdditionalPierceOld"] = { + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLineSingular"] = "Projectiles Pierce an additional Target", + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2067062068", + ["text"] = "Projectiles Pierce # additional Targets", + ["type"] = "explicit", + }, + }, + ["9784_Quiver2AdditionalPierceOld"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2067062068", + ["text"] = "Projectiles Pierce # additional Targets", + ["type"] = "explicit", + }, + }, + ["9803_SpiritAndPhantasmRefreshOnUnique"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4070754804", + ["text"] = "Summoned Raging Spirits have #% chance to refresh their Duration when they Hit a Rare or Unique Enemy", + ["type"] = "explicit", + }, + }, ["982_LocalFlaskIgnitedEnemiesHaveMalediction"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1558071928", - ["text"] = "Enemies Ignited by you during Effect have Malediction", - ["type"] = "explicit", - }, - }, - ["9830_RareOrUniqueMonsterDroppedItemRarity"] = { + ["id"] = "explicit.stat_1558071928", + ["text"] = "Enemies Ignited by you during Effect have Malediction", + ["type"] = "explicit", + }, + }, + ["9831_RareOrUniqueMonsterDroppedItemRarity"] = { ["Helmet"] = { - ["max"] = 45, - ["min"] = 36, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2161689853", - ["text"] = "#% increased Rarity of Items Dropped by Slain Rare or Unique Enemies", - ["type"] = "explicit", - }, - }, + ["max"] = 45, + ["min"] = 36, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2161689853", + ["text"] = "#% increased Rarity of Items Dropped by Slain Rare or Unique Enemies", + ["type"] = "explicit", + }, + }, ["983_FlaskBleedingAndCorruptedBloodImmunityDuringEffect"] = { ["Flask"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_3965637181", - ["text"] = "Immunity to Bleeding and Corrupted Blood during Effect", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_3965637181", + ["text"] = "Immunity to Bleeding and Corrupted Blood during Effect", + ["type"] = "explicit", + }, + }, ["985_FlaskFreezeAndChillImmunityDuringEffect"] = { ["Flask"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_3838369929", - ["text"] = "Immunity to Freeze and Chill during Effect", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_3838369929", + ["text"] = "Immunity to Freeze and Chill during Effect", + ["type"] = "explicit", + }, + }, ["986_FlaskPoisonImmunityDuringEffect"] = { ["Flask"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1349296959", - ["text"] = "Immunity to Poison during Effect", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1349296959", + ["text"] = "Immunity to Poison during Effect", + ["type"] = "explicit", + }, + }, ["987_FlaskShockImmunityDuringEffect"] = { ["Flask"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_589991690", - ["text"] = "Immunity to Shock during Effect", - ["type"] = "explicit", - }, - }, - ["9882_ReflectDamageTaken"] = { - ["inverseKey"] = "increased", - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3577248251", - ["text"] = "You and your Minions take #% reduced Reflected Damage", - ["type"] = "explicit", - }, - }, - ["9884_ReflectsShocks"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3291999509", - ["text"] = "Shock Reflection", - ["type"] = "explicit", - }, - }, + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_589991690", + ["text"] = "Immunity to Shock during Effect", + ["type"] = "explicit", + }, + }, + ["9883_ReflectDamageTaken"] = { + ["inverseKey"] = "increased", + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3577248251", + ["text"] = "You and your Minions take #% reduced Reflected Damage", + ["type"] = "explicit", + }, + }, + ["9885_ReflectsShocks"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3291999509", + ["text"] = "Shock Reflection", + ["type"] = "explicit", + }, + }, ["989_LocalFlaskItemFoundRarityDuringFlaskEffect"] = { ["Flask"] = { - ["max"] = 30, - ["min"] = 20, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1740200922", - ["text"] = "#% increased Rarity of Items found during Effect", - ["type"] = "explicit", - }, - }, - ["9902_RemoveBleedingOnWarcry"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1740200922", + ["text"] = "#% increased Rarity of Items found during Effect", + ["type"] = "explicit", + }, + }, + ["9903_RemoveBleedingOnWarcry"] = { ["2HAxe"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["2HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3936926420", - ["text"] = "Removes Bleeding when you use a Warcry", - ["type"] = "explicit", - }, - }, - ["9903_RemoveFreezeOnFlaskUse"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3936926420", + ["text"] = "Removes Bleeding when you use a Warcry", + ["type"] = "explicit", + }, + }, + ["9904_RemoveFreezeOnFlaskUse"] = { ["Belt"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3296873305", - ["text"] = "Remove Chill and Freeze when you use a Flask", - ["type"] = "explicit", - }, - }, - ["9907_RemoveIgniteOnFlaskUse"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3296873305", + ["text"] = "Remove Chill and Freeze when you use a Flask", + ["type"] = "explicit", + }, + }, + ["9908_RemoveIgniteOnFlaskUse"] = { ["Belt"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1162425204", - ["text"] = "Remove Ignite and Burning when you use a Flask", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1162425204", + ["text"] = "Remove Ignite and Burning when you use a Flask", + ["type"] = "explicit", + }, + }, ["990_LocalFlaskIgniteDamageLifeLeech"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_96869632", - ["text"] = "Leech #% of Expected Ignite Damage as Life when you Ignite an Enemy during Effect", - ["type"] = "explicit", - }, - }, - ["9917_RemoveShockOnFlaskUse"] = { + ["id"] = "explicit.stat_96869632", + ["text"] = "Leech #% of Expected Ignite Damage as Life when you Ignite an Enemy during Effect", + ["type"] = "explicit", + }, + }, + ["9918_RemoveShockOnFlaskUse"] = { ["Belt"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_561861132", - ["text"] = "Remove Shock when you use a Flask", - ["type"] = "explicit", - }, - }, - ["9922_AllResistancesWithChaos"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2016723660", - ["text"] = "+#% to All Resistances", - ["type"] = "explicit", - }, - }, - ["9924_RestoreManaAndEnergyShieldOnFocus"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_561861132", + ["text"] = "Remove Shock when you use a Flask", + ["type"] = "explicit", + }, + }, + ["9925_RestoreManaAndEnergyShieldOnFocus"] = { ["Chest"] = { - ["max"] = 40, - ["min"] = 23, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2992263716", - ["text"] = "Recover #% of Mana and Energy Shield when you Focus", - ["type"] = "explicit", - }, - }, + ["max"] = 40, + ["min"] = 23, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2992263716", + ["text"] = "Recover #% of Mana and Energy Shield when you Focus", + ["type"] = "explicit", + }, + }, ["992_LocalFlaskLifeLeechOnDamageTakenPermyriadDuringFlaskEffect"] = { ["Flask"] = { - ["max"] = 15, - ["min"] = 15, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3824033729", - ["text"] = "#% of Damage Taken from Hits is Leeched as Life during Effect", - ["type"] = "explicit", - }, - }, + ["max"] = 15, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3824033729", + ["text"] = "#% of Damage Taken from Hits is Leeched as Life during Effect", + ["type"] = "explicit", + }, + }, ["993_LocalFlaskLifeRegenerationPerMinuteDuringFlaskEffect"] = { ["Flask"] = { - ["max"] = 3, - ["min"] = 3, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_871270154", - ["text"] = "Regenerate #% of Life per second during Effect", - ["type"] = "explicit", - }, - }, - ["9969_ReducedBleedDuration"] = { + ["max"] = 3, + ["min"] = 3, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_871270154", + ["text"] = "Regenerate #% of Life per second during Effect", + ["type"] = "explicit", + }, + }, + ["9970_ReducedBleedDuration"] = { ["AnyJewel"] = { - ["max"] = -30, - ["min"] = -35, - }, + ["max"] = -30, + ["min"] = -35, + }, ["BaseJewel"] = { - ["max"] = -30, - ["min"] = -35, - }, - ["inverseKey"] = "reduced", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1692879867", - ["text"] = "#% increased Bleed Duration on you", - ["type"] = "explicit", - }, - }, - ["9974_SelfDebilitate"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1989416016", - ["text"] = "You are Debilitated", - ["type"] = "explicit", - }, - }, - ["9978_ReducedPoisonDuration"] = { + ["max"] = -30, + ["min"] = -35, + }, + ["inverseKey"] = "reduced", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1692879867", + ["text"] = "#% increased Bleed Duration on you", + ["type"] = "explicit", + }, + }, + ["9975_SelfDebilitate"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1989416016", + ["text"] = "You are Debilitated", + ["type"] = "explicit", + }, + }, + ["9979_ReducedPoisonDuration"] = { ["AnyJewel"] = { - ["max"] = -30, - ["min"] = -35, - }, + ["max"] = -30, + ["min"] = -35, + }, ["BaseJewel"] = { - ["max"] = -30, - ["min"] = -35, - }, - ["inverseKey"] = "reduced", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3301100256", - ["text"] = "#% increased Poison Duration on you", - ["type"] = "explicit", - }, - }, - ["9979_TakeNoExtraDamageFromCriticalStrikesIfEnergyShieldRechargeStartedRecently"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3753680856", - ["text"] = "Take no Extra Damage from Critical Strikes if Energy Shield Recharge started Recently", - ["type"] = "explicit", - }, - }, + ["max"] = -30, + ["min"] = -35, + }, + ["inverseKey"] = "reduced", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3301100256", + ["text"] = "#% increased Poison Duration on you", + ["type"] = "explicit", + }, + }, + ["9980_TakeNoExtraDamageFromCriticalStrikesIfEnergyShieldRechargeStartedRecently"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3753680856", + ["text"] = "Take no Extra Damage from Critical Strikes if Energy Shield Recharge started Recently", + ["type"] = "explicit", + }, + }, ["998_LocalFlaskPhysicalDamageCanIgnite"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_3914001710", - ["text"] = "Your Physical Damage can Ignite during Effect", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_3914001710", + ["text"] = "Your Physical Damage can Ignite during Effect", + ["type"] = "explicit", + }, + }, ["999_LocalFlaskSkillManaCostDuringFlaskEffect"] = { - ["inverseKey"] = "reduced", + ["inverseKey"] = "reduced", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_683273571", - ["text"] = "#% increased Mana Cost of Skills during Effect", - ["type"] = "explicit", - }, - }, - }, + ["id"] = "explicit.stat_683273571", + ["text"] = "#% increased Mana Cost of Skills during Effect", + ["type"] = "explicit", + }, + }, + }, ["Implicit"] = { ["implicit.stat_1002362373"] = { ["Boots"] = { - ["max"] = 20, - ["min"] = 16, - ["subType"] = "Armour", - }, + ["max"] = 20, + ["min"] = 16, + ["subType"] = "Armour", + }, ["Chest"] = { - ["max"] = 20, - ["min"] = 16, - ["subType"] = "Armour", - }, + ["max"] = 20, + ["min"] = 16, + ["subType"] = "Armour", + }, ["Gloves"] = { - ["max"] = 20, - ["min"] = 16, - ["subType"] = "Armour", - }, + ["max"] = 20, + ["min"] = 16, + ["subType"] = "Armour", + }, ["Helmet"] = { - ["max"] = 20, - ["min"] = 16, - ["subType"] = "Armour", - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1002362373", - ["text"] = "#% increased Melee Damage", - ["type"] = "implicit", - }, - }, + ["max"] = 20, + ["min"] = 16, + ["subType"] = "Armour", + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1002362373", + ["text"] = "#% increased Melee Damage", + ["type"] = "implicit", + }, + }, ["implicit.stat_1011760251"] = { ["Ring"] = { - ["max"] = 2, - ["min"] = 2, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1011760251", - ["text"] = "+#% to maximum Lightning Resistance", - ["type"] = "implicit", - }, - }, + ["max"] = 2, + ["min"] = 2, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1011760251", + ["text"] = "+#% to maximum Lightning Resistance", + ["type"] = "implicit", + }, + }, ["implicit.stat_1017730114"] = { ["Amulet"] = { - ["max"] = 50, - ["min"] = 50, - ["subType"] = "Talisman", - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1017730114", - ["text"] = "#% of Lightning Damage from Hits taken as Cold Damage", - ["type"] = "implicit", - }, - }, + ["max"] = 50, + ["min"] = 50, + ["subType"] = "Talisman", + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1017730114", + ["text"] = "#% of Lightning Damage from Hits taken as Cold Damage", + ["type"] = "implicit", + }, + }, ["implicit.stat_1033086302"] = { ["Ring"] = { - ["max"] = 50, - ["min"] = 25, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1033086302", - ["text"] = "#% increased Suffix Modifier magnitudes", - ["type"] = "implicit", - }, - }, + ["max"] = 50, + ["min"] = 25, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1033086302", + ["text"] = "#% increased Suffix Modifier magnitudes", + ["type"] = "implicit", + }, + }, ["implicit.stat_1050105434"] = { ["Chest"] = { - ["max"] = 25, - ["min"] = 20, - ["subType"] = "Evasion/Energy Shield", - }, + ["max"] = 25, + ["min"] = 20, + ["subType"] = "Evasion/Energy Shield", + }, ["Ring"] = { - ["max"] = 30, - ["min"] = 20, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1050105434", - ["text"] = "+# to maximum Mana", - ["type"] = "implicit", - }, - }, + ["max"] = 30, + ["min"] = 20, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1050105434", + ["text"] = "+# to maximum Mana", + ["type"] = "implicit", + }, + }, ["implicit.stat_1054322244"] = { ["Amulet"] = { - ["max"] = 10, - ["min"] = 10, - ["subType"] = "Talisman", - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1054322244", - ["text"] = "#% chance to gain an Endurance Charge on Kill", - ["type"] = "implicit", - }, - }, + ["max"] = 10, + ["min"] = 10, + ["subType"] = "Talisman", + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1054322244", + ["text"] = "#% chance to gain an Endurance Charge on Kill", + ["type"] = "implicit", + }, + }, ["implicit.stat_1069618951"] = { ["Ring"] = { - ["max"] = 15, - ["min"] = 15, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1069618951", - ["text"] = "Right ring slot: Minions take #% increased Damage", - ["type"] = "implicit", - }, - }, + ["max"] = 15, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1069618951", + ["text"] = "Right ring slot: Minions take #% increased Damage", + ["type"] = "implicit", + }, + }, ["implicit.stat_1124980805"] = { ["Boots"] = { - ["max"] = 50, - ["min"] = 45, - ["subType"] = "Energy Shield", - }, + ["max"] = 50, + ["min"] = 45, + ["subType"] = "Energy Shield", + }, ["Chest"] = { - ["max"] = 50, - ["min"] = 45, - ["subType"] = "Energy Shield", - }, + ["max"] = 50, + ["min"] = 45, + ["subType"] = "Energy Shield", + }, ["Gloves"] = { - ["max"] = 50, - ["min"] = 45, - ["subType"] = "Energy Shield", - }, + ["max"] = 50, + ["min"] = 45, + ["subType"] = "Energy Shield", + }, ["Helmet"] = { - ["max"] = 50, - ["min"] = 45, - ["subType"] = "Energy Shield", - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1124980805", - ["text"] = "#% increased Cooldown Recovery Rate of Movement Skills", - ["type"] = "implicit", - }, - }, + ["max"] = 50, + ["min"] = 45, + ["subType"] = "Energy Shield", + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1124980805", + ["text"] = "#% increased Cooldown Recovery Rate of Movement Skills", + ["type"] = "implicit", + }, + }, ["implicit.stat_114734841"] = { ["Belt"] = { - ["max"] = 30, - ["min"] = 30, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_114734841", - ["text"] = "Flasks applied to you have #% increased Effect", - ["type"] = "implicit", - }, - }, + ["max"] = 30, + ["min"] = 30, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_114734841", + ["text"] = "Flasks applied to you have #% increased Effect", + ["type"] = "implicit", + }, + }, ["implicit.stat_1168985596"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_1168985596", - ["text"] = "#% chance to Poison with Melee Weapons", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_1168985596", + ["text"] = "#% chance to Poison with Melee Weapons", + ["type"] = "implicit", + }, + }, ["implicit.stat_1172810729"] = { ["1HAxe"] = { - ["max"] = 5, - ["min"] = 5, - }, + ["max"] = 5, + ["min"] = 5, + }, ["1HMace"] = { - ["max"] = 5, - ["min"] = 5, - }, + ["max"] = 5, + ["min"] = 5, + }, ["1HSword"] = { - ["max"] = 5, - ["min"] = 5, - }, + ["max"] = 5, + ["min"] = 5, + }, ["1HWeapon"] = { - ["max"] = 5, - ["min"] = 5, - }, + ["max"] = 5, + ["min"] = 5, + }, ["2HAxe"] = { - ["max"] = 5, - ["min"] = 5, - }, + ["max"] = 5, + ["min"] = 5, + }, ["2HMace"] = { - ["max"] = 5, - ["min"] = 5, - }, + ["max"] = 5, + ["min"] = 5, + }, ["2HSword"] = { - ["max"] = 5, - ["min"] = 5, - }, + ["max"] = 5, + ["min"] = 5, + }, ["2HWeapon"] = { - ["max"] = 5, - ["min"] = 5, - }, + ["max"] = 5, + ["min"] = 5, + }, ["Bow"] = { - ["max"] = 5, - ["min"] = 5, - }, + ["max"] = 5, + ["min"] = 5, + }, ["Claw"] = { - ["max"] = 5, - ["min"] = 5, - }, + ["max"] = 5, + ["min"] = 5, + }, ["Dagger"] = { - ["max"] = 5, - ["min"] = 5, - }, + ["max"] = 5, + ["min"] = 5, + }, ["Staff"] = { - ["max"] = 5, - ["min"] = 5, - }, + ["max"] = 5, + ["min"] = 5, + }, ["Wand"] = { - ["max"] = 5, - ["min"] = 5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1172810729", - ["text"] = "#% chance to deal Double Damage", - ["type"] = "implicit", - }, - }, + ["max"] = 5, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1172810729", + ["text"] = "#% chance to deal Double Damage", + ["type"] = "implicit", + }, + }, ["implicit.stat_1189760108"] = { ["Amulet"] = { - ["max"] = 50, - ["min"] = 50, - ["subType"] = "Talisman", - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1189760108", - ["text"] = "#% of Cold Damage from Hits taken as Fire Damage", - ["type"] = "implicit", - }, - }, + ["max"] = 50, + ["min"] = 50, + ["subType"] = "Talisman", + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1189760108", + ["text"] = "#% of Cold Damage from Hits taken as Fire Damage", + ["type"] = "implicit", + }, + }, ["implicit.stat_1263158408"] = { ["1HAxe"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["1HMace"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["1HSword"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["1HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["2HAxe"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["2HMace"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["2HSword"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["2HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Bow"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Claw"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Dagger"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Staff"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Wand"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_1263158408", - ["text"] = "Elemental Equilibrium", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_1263158408", + ["text"] = "Elemental Equilibrium", + ["type"] = "implicit", + }, + }, ["implicit.stat_1296614065"] = { ["Amulet"] = { - ["max"] = 40, - ["min"] = 30, - ["subType"] = "Talisman", - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1296614065", - ["text"] = "#% increased Fish Bite Sensitivity", - ["type"] = "implicit", - }, - }, + ["max"] = 40, + ["min"] = 30, + ["subType"] = "Talisman", + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1296614065", + ["text"] = "#% increased Fish Bite Sensitivity", + ["type"] = "implicit", + }, + }, ["implicit.stat_1301765461"] = { ["Boots"] = { - ["max"] = 4, - ["min"] = 2, - ["subType"] = "Armour/Evasion", - }, + ["max"] = 4, + ["min"] = 2, + ["subType"] = "Armour/Evasion", + }, ["Chest"] = { - ["max"] = 4, - ["min"] = 2, - ["subType"] = "Armour/Evasion", - }, + ["max"] = 4, + ["min"] = 2, + ["subType"] = "Armour/Evasion", + }, ["Gloves"] = { - ["max"] = 4, - ["min"] = 2, - ["subType"] = "Armour/Evasion", - }, + ["max"] = 4, + ["min"] = 2, + ["subType"] = "Armour/Evasion", + }, ["Helmet"] = { - ["max"] = 4, - ["min"] = 2, - ["subType"] = "Armour/Evasion", - }, + ["max"] = 4, + ["min"] = 2, + ["subType"] = "Armour/Evasion", + }, ["Ring"] = { - ["max"] = 2, - ["min"] = 2, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1301765461", - ["text"] = "+#% to maximum Chaos Resistance", - ["type"] = "implicit", - }, - }, + ["max"] = 2, + ["min"] = 2, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1301765461", + ["text"] = "+#% to maximum Chaos Resistance", + ["type"] = "implicit", + }, + }, ["implicit.stat_1310194496"] = { ["1HAxe"] = { - ["max"] = 12, - ["min"] = 8, - }, + ["max"] = 12, + ["min"] = 8, + }, ["1HMace"] = { - ["max"] = 12, - ["min"] = 8, - }, + ["max"] = 12, + ["min"] = 8, + }, ["1HSword"] = { - ["max"] = 12, - ["min"] = 8, - }, + ["max"] = 12, + ["min"] = 8, + }, ["1HWeapon"] = { - ["max"] = 12, - ["min"] = 8, - }, + ["max"] = 12, + ["min"] = 8, + }, ["2HAxe"] = { - ["max"] = 12, - ["min"] = 8, - }, + ["max"] = 12, + ["min"] = 8, + }, ["2HMace"] = { - ["max"] = 12, - ["min"] = 8, - }, + ["max"] = 12, + ["min"] = 8, + }, ["2HSword"] = { - ["max"] = 12, - ["min"] = 8, - }, + ["max"] = 12, + ["min"] = 8, + }, ["2HWeapon"] = { - ["max"] = 12, - ["min"] = 8, - }, + ["max"] = 12, + ["min"] = 8, + }, ["Amulet"] = { - ["max"] = 30, - ["min"] = 20, - ["subType"] = "Talisman", - }, + ["max"] = 30, + ["min"] = 20, + ["subType"] = "Talisman", + }, ["Belt"] = { - ["max"] = 24, - ["min"] = 12, - }, + ["max"] = 24, + ["min"] = 12, + }, ["Bow"] = { - ["max"] = 12, - ["min"] = 8, - }, + ["max"] = 12, + ["min"] = 8, + }, ["Claw"] = { - ["max"] = 12, - ["min"] = 8, - }, + ["max"] = 12, + ["min"] = 8, + }, ["Dagger"] = { - ["max"] = 12, - ["min"] = 8, - }, + ["max"] = 12, + ["min"] = 8, + }, ["Staff"] = { - ["max"] = 12, - ["min"] = 8, - }, + ["max"] = 12, + ["min"] = 8, + }, ["Wand"] = { - ["max"] = 12, - ["min"] = 8, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1310194496", - ["text"] = "#% increased Global Physical Damage", - ["type"] = "implicit", - }, - }, + ["max"] = 12, + ["min"] = 8, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1310194496", + ["text"] = "#% increased Global Physical Damage", + ["type"] = "implicit", + }, + }, ["implicit.stat_1313503107"] = { ["Amulet"] = { - ["max"] = 50, - ["min"] = 50, - ["subType"] = "Talisman", - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1313503107", - ["text"] = "#% of Cold Damage from Hits taken as Lightning Damage", - ["type"] = "implicit", - }, - }, + ["max"] = 50, + ["min"] = 50, + ["subType"] = "Talisman", + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1313503107", + ["text"] = "#% of Cold Damage from Hits taken as Lightning Damage", + ["type"] = "implicit", + }, + }, ["implicit.stat_1334060246"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_1334060246", - ["text"] = "Adds # to # Lightning Damage", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_1334060246", + ["text"] = "Adds # to # Lightning Damage", + ["type"] = "implicit", + }, + }, ["implicit.stat_1379411836"] = { ["Amulet"] = { - ["max"] = 16, - ["min"] = 10, - }, + ["max"] = 16, + ["min"] = 10, + }, ["Helmet"] = { - ["max"] = 24, - ["min"] = 16, - }, + ["max"] = 24, + ["min"] = 16, + }, ["Ring"] = { - ["max"] = 12, - ["min"] = 8, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1379411836", - ["text"] = "+# to all Attributes", - ["type"] = "implicit", - }, - }, + ["max"] = 12, + ["min"] = 8, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1379411836", + ["text"] = "+# to all Attributes", + ["type"] = "implicit", + }, + }, ["implicit.stat_1389153006"] = { ["Amulet"] = { - ["max"] = 25, - ["min"] = 15, - ["subType"] = "Talisman", - }, + ["max"] = 25, + ["min"] = 15, + ["subType"] = "Talisman", + }, ["Ring"] = { - ["max"] = 10, - ["min"] = 5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1389153006", - ["text"] = "#% increased Global Defences", - ["type"] = "implicit", - }, - }, + ["max"] = 10, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1389153006", + ["text"] = "#% increased Global Defences", + ["type"] = "implicit", + }, + }, ["implicit.stat_1423639565"] = { ["Ring"] = { - ["max"] = 15, - ["min"] = 10, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1423639565", - ["text"] = "Minions have +#% to all Elemental Resistances", - ["type"] = "implicit", - }, - }, + ["max"] = 15, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1423639565", + ["text"] = "Minions have +#% to all Elemental Resistances", + ["type"] = "implicit", + }, + }, ["implicit.stat_1423749435"] = { ["1HAxe"] = { - ["max"] = 20, - ["min"] = 20, - }, + ["max"] = 20, + ["min"] = 20, + }, ["1HMace"] = { - ["max"] = 20, - ["min"] = 20, - }, + ["max"] = 20, + ["min"] = 20, + }, ["1HSword"] = { - ["max"] = 20, - ["min"] = 20, - }, + ["max"] = 20, + ["min"] = 20, + }, ["1HWeapon"] = { - ["max"] = 20, - ["min"] = 20, - }, + ["max"] = 20, + ["min"] = 20, + }, ["2HAxe"] = { - ["max"] = 20, - ["min"] = 20, - }, + ["max"] = 20, + ["min"] = 20, + }, ["2HMace"] = { - ["max"] = 20, - ["min"] = 20, - }, + ["max"] = 20, + ["min"] = 20, + }, ["2HSword"] = { - ["max"] = 20, - ["min"] = 20, - }, + ["max"] = 20, + ["min"] = 20, + }, ["2HWeapon"] = { - ["max"] = 20, - ["min"] = 20, - }, + ["max"] = 20, + ["min"] = 20, + }, ["Bow"] = { - ["max"] = 20, - ["min"] = 20, - }, + ["max"] = 20, + ["min"] = 20, + }, ["Claw"] = { - ["max"] = 20, - ["min"] = 20, - }, + ["max"] = 20, + ["min"] = 20, + }, ["Dagger"] = { - ["max"] = 20, - ["min"] = 20, - }, + ["max"] = 20, + ["min"] = 20, + }, ["Staff"] = { - ["max"] = 20, - ["min"] = 20, - }, + ["max"] = 20, + ["min"] = 20, + }, ["Wand"] = { - ["max"] = 20, - ["min"] = 20, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1423749435", - ["text"] = "+#% to Damage over Time Multiplier for Bleeding", - ["type"] = "implicit", - }, - }, + ["max"] = 20, + ["min"] = 20, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1423749435", + ["text"] = "+#% to Damage over Time Multiplier for Bleeding", + ["type"] = "implicit", + }, + }, ["implicit.stat_1431238626"] = { ["1HAxe"] = { - ["max"] = 100, - ["min"] = 100, - }, + ["max"] = 100, + ["min"] = 100, + }, ["1HMace"] = { - ["max"] = 100, - ["min"] = 100, - }, + ["max"] = 100, + ["min"] = 100, + }, ["1HSword"] = { - ["max"] = 100, - ["min"] = 100, - }, + ["max"] = 100, + ["min"] = 100, + }, ["1HWeapon"] = { - ["max"] = 100, - ["min"] = 100, - }, + ["max"] = 100, + ["min"] = 100, + }, ["2HAxe"] = { - ["max"] = 100, - ["min"] = 100, - }, + ["max"] = 100, + ["min"] = 100, + }, ["2HMace"] = { - ["max"] = 100, - ["min"] = 100, - }, + ["max"] = 100, + ["min"] = 100, + }, ["2HSword"] = { - ["max"] = 100, - ["min"] = 100, - }, + ["max"] = 100, + ["min"] = 100, + }, ["2HWeapon"] = { - ["max"] = 100, - ["min"] = 100, - }, + ["max"] = 100, + ["min"] = 100, + }, ["Bow"] = { - ["max"] = 100, - ["min"] = 100, - }, + ["max"] = 100, + ["min"] = 100, + }, ["Claw"] = { - ["max"] = 100, - ["min"] = 100, - }, + ["max"] = 100, + ["min"] = 100, + }, ["Dagger"] = { - ["max"] = 100, - ["min"] = 100, - }, + ["max"] = 100, + ["min"] = 100, + }, ["Staff"] = { - ["max"] = 100, - ["min"] = 100, - }, + ["max"] = 100, + ["min"] = 100, + }, ["Wand"] = { - ["max"] = 100, - ["min"] = 100, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1431238626", - ["text"] = "#% of Physical Damage from Hits with this Weapon is Converted to a random Element", - ["type"] = "implicit", - }, - }, + ["max"] = 100, + ["min"] = 100, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1431238626", + ["text"] = "#% of Physical Damage from Hits with this Weapon is Converted to a random Element", + ["type"] = "implicit", + }, + }, ["implicit.stat_1434716233"] = { ["1HAxe"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["1HMace"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["1HSword"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["1HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["2HAxe"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["2HMace"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["2HSword"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["2HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Bow"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Claw"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Dagger"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Staff"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Wand"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1434716233", - ["text"] = "Warcries Exert # additional Attack", - ["type"] = "implicit", - }, - }, + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1434716233", + ["text"] = "Warcries Exert # additional Attack", + ["type"] = "implicit", + }, + }, ["implicit.stat_1443060084"] = { ["1HAxe"] = { - ["max"] = 20, - ["min"] = 10, - }, + ["max"] = 20, + ["min"] = 10, + }, ["1HMace"] = { - ["max"] = 20, - ["min"] = 10, - }, + ["max"] = 20, + ["min"] = 10, + }, ["1HSword"] = { - ["max"] = 20, - ["min"] = 10, - }, + ["max"] = 20, + ["min"] = 10, + }, ["1HWeapon"] = { - ["max"] = 20, - ["min"] = 10, - }, + ["max"] = 20, + ["min"] = 10, + }, ["2HAxe"] = { - ["max"] = 20, - ["min"] = 10, - }, + ["max"] = 20, + ["min"] = 10, + }, ["2HMace"] = { - ["max"] = 20, - ["min"] = 10, - }, + ["max"] = 20, + ["min"] = 10, + }, ["2HSword"] = { - ["max"] = 20, - ["min"] = 10, - }, + ["max"] = 20, + ["min"] = 10, + }, ["2HWeapon"] = { - ["max"] = 20, - ["min"] = 10, - }, + ["max"] = 20, + ["min"] = 10, + }, ["Bow"] = { - ["max"] = 20, - ["min"] = 10, - }, + ["max"] = 20, + ["min"] = 10, + }, ["Claw"] = { - ["max"] = 20, - ["min"] = 10, - }, + ["max"] = 20, + ["min"] = 10, + }, ["Dagger"] = { - ["max"] = 20, - ["min"] = 10, - }, + ["max"] = 20, + ["min"] = 10, + }, ["Staff"] = { - ["max"] = 20, - ["min"] = 10, - }, + ["max"] = 20, + ["min"] = 10, + }, ["Wand"] = { - ["max"] = 20, - ["min"] = 10, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1443060084", - ["text"] = "#% reduced Enemy Stun Threshold", - ["type"] = "implicit", - }, - }, + ["max"] = 20, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1443060084", + ["text"] = "#% reduced Enemy Stun Threshold", + ["type"] = "implicit", + }, + }, ["implicit.stat_1504091975"] = { ["Amulet"] = { - ["max"] = 50, - ["min"] = 50, - ["subType"] = "Talisman", - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1504091975", - ["text"] = "#% of Fire Damage from Hits taken as Lightning Damage", - ["type"] = "implicit", - }, - }, + ["max"] = 50, + ["min"] = 50, + ["subType"] = "Talisman", + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1504091975", + ["text"] = "#% of Fire Damage from Hits taken as Lightning Damage", + ["type"] = "implicit", + }, + }, ["implicit.stat_1519615863"] = { ["1HAxe"] = { - ["max"] = 20, - ["min"] = 15, - ["subType"] = "Thrusting", - }, + ["max"] = 20, + ["min"] = 15, + ["subType"] = "Thrusting", + }, ["1HMace"] = { - ["max"] = 20, - ["min"] = 15, - ["subType"] = "Thrusting", - }, + ["max"] = 20, + ["min"] = 15, + ["subType"] = "Thrusting", + }, ["1HSword"] = { - ["max"] = 20, - ["min"] = 15, - ["subType"] = "Thrusting", - }, + ["max"] = 20, + ["min"] = 15, + ["subType"] = "Thrusting", + }, ["1HWeapon"] = { - ["max"] = 20, - ["min"] = 15, - ["subType"] = "Thrusting", - }, + ["max"] = 20, + ["min"] = 15, + ["subType"] = "Thrusting", + }, ["2HAxe"] = { - ["max"] = 20, - ["min"] = 15, - ["subType"] = "Thrusting", - }, + ["max"] = 20, + ["min"] = 15, + ["subType"] = "Thrusting", + }, ["2HMace"] = { - ["max"] = 20, - ["min"] = 15, - ["subType"] = "Thrusting", - }, + ["max"] = 20, + ["min"] = 15, + ["subType"] = "Thrusting", + }, ["2HSword"] = { - ["max"] = 20, - ["min"] = 15, - ["subType"] = "Thrusting", - }, + ["max"] = 20, + ["min"] = 15, + ["subType"] = "Thrusting", + }, ["2HWeapon"] = { - ["max"] = 20, - ["min"] = 15, - ["subType"] = "Thrusting", - }, + ["max"] = 20, + ["min"] = 15, + ["subType"] = "Thrusting", + }, ["Bow"] = { - ["max"] = 20, - ["min"] = 15, - ["subType"] = "Thrusting", - }, + ["max"] = 20, + ["min"] = 15, + ["subType"] = "Thrusting", + }, ["Claw"] = { - ["max"] = 20, - ["min"] = 15, - ["subType"] = "Thrusting", - }, + ["max"] = 20, + ["min"] = 15, + ["subType"] = "Thrusting", + }, ["Dagger"] = { - ["max"] = 20, - ["min"] = 15, - ["subType"] = "Thrusting", - }, + ["max"] = 20, + ["min"] = 15, + ["subType"] = "Thrusting", + }, ["Staff"] = { - ["max"] = 20, - ["min"] = 15, - ["subType"] = "Thrusting", - }, + ["max"] = 20, + ["min"] = 15, + ["subType"] = "Thrusting", + }, ["Wand"] = { - ["max"] = 20, - ["min"] = 15, - ["subType"] = "Thrusting", - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1519615863", - ["text"] = "#% chance to cause Bleeding on Hit", - ["type"] = "implicit", - }, - }, + ["max"] = 20, + ["min"] = 15, + ["subType"] = "Thrusting", + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1519615863", + ["text"] = "#% chance to cause Bleeding on Hit", + ["type"] = "implicit", + }, + }, ["implicit.stat_1523888729"] = { ["1HAxe"] = { - ["max"] = 20, - ["min"] = 10, - }, + ["max"] = 20, + ["min"] = 10, + }, ["1HMace"] = { - ["max"] = 20, - ["min"] = 10, - }, + ["max"] = 20, + ["min"] = 10, + }, ["1HSword"] = { - ["max"] = 20, - ["min"] = 10, - }, + ["max"] = 20, + ["min"] = 10, + }, ["1HWeapon"] = { - ["max"] = 20, - ["min"] = 10, - }, + ["max"] = 20, + ["min"] = 10, + }, ["2HAxe"] = { - ["max"] = 20, - ["min"] = 10, - }, + ["max"] = 20, + ["min"] = 10, + }, ["2HMace"] = { - ["max"] = 20, - ["min"] = 10, - }, + ["max"] = 20, + ["min"] = 10, + }, ["2HSword"] = { - ["max"] = 20, - ["min"] = 10, - }, + ["max"] = 20, + ["min"] = 10, + }, ["2HWeapon"] = { - ["max"] = 20, - ["min"] = 10, - }, + ["max"] = 20, + ["min"] = 10, + }, ["Bow"] = { - ["max"] = 20, - ["min"] = 10, - }, + ["max"] = 20, + ["min"] = 10, + }, ["Claw"] = { - ["max"] = 20, - ["min"] = 10, - }, + ["max"] = 20, + ["min"] = 10, + }, ["Dagger"] = { - ["max"] = 20, - ["min"] = 10, - }, + ["max"] = 20, + ["min"] = 10, + }, ["Staff"] = { - ["max"] = 20, - ["min"] = 10, - }, + ["max"] = 20, + ["min"] = 10, + }, ["Wand"] = { - ["max"] = 20, - ["min"] = 10, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1523888729", - ["text"] = "Trigger Level # Fiery Impact on Melee Hit with this Weapon", - ["type"] = "implicit", - }, - }, + ["max"] = 20, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1523888729", + ["text"] = "Trigger Level # Fiery Impact on Melee Hit with this Weapon", + ["type"] = "implicit", + }, + }, ["implicit.stat_1535626285"] = { ["Amulet"] = { - ["max"] = 24, - ["min"] = 16, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1535626285", - ["text"] = "+# to Strength and Intelligence", - ["type"] = "implicit", - }, - }, + ["max"] = 24, + ["min"] = 16, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1535626285", + ["text"] = "+# to Strength and Intelligence", + ["type"] = "implicit", + }, + }, ["implicit.stat_1573130764"] = { ["Quiver"] = { - ["max"] = 21, - ["min"] = 3, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1573130764", - ["text"] = "Adds # to # Fire Damage to Attacks", - ["type"] = "implicit", - }, - }, + ["max"] = 21, + ["min"] = 3, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1573130764", + ["text"] = "Adds # to # Fire Damage to Attacks", + ["type"] = "implicit", + }, + }, ["implicit.stat_1581907402"] = { ["Amulet"] = { - ["max"] = 100, - ["min"] = 100, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1581907402", - ["text"] = "#% increased Explicit Modifier magnitudes", - ["type"] = "implicit", - }, - }, + ["max"] = 100, + ["min"] = 100, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1581907402", + ["text"] = "#% increased Explicit Modifier magnitudes", + ["type"] = "implicit", + }, + }, ["implicit.stat_1589917703"] = { ["1HAxe"] = { - ["max"] = 30, - ["min"] = 12, - }, + ["max"] = 30, + ["min"] = 12, + }, ["1HMace"] = { - ["max"] = 30, - ["min"] = 12, - }, + ["max"] = 30, + ["min"] = 12, + }, ["1HSword"] = { - ["max"] = 30, - ["min"] = 12, - }, + ["max"] = 30, + ["min"] = 12, + }, ["1HWeapon"] = { - ["max"] = 30, - ["min"] = 12, - }, + ["max"] = 30, + ["min"] = 12, + }, ["2HAxe"] = { - ["max"] = 30, - ["min"] = 12, - }, + ["max"] = 30, + ["min"] = 12, + }, ["2HMace"] = { - ["max"] = 30, - ["min"] = 12, - }, + ["max"] = 30, + ["min"] = 12, + }, ["2HSword"] = { - ["max"] = 30, - ["min"] = 12, - }, + ["max"] = 30, + ["min"] = 12, + }, ["2HWeapon"] = { - ["max"] = 30, - ["min"] = 12, - }, + ["max"] = 30, + ["min"] = 12, + }, ["Boots"] = { - ["max"] = 20, - ["min"] = 5, - }, + ["max"] = 20, + ["min"] = 5, + }, ["Bow"] = { - ["max"] = 30, - ["min"] = 12, - }, + ["max"] = 30, + ["min"] = 12, + }, ["Chest"] = { - ["max"] = 20, - ["min"] = 5, - }, + ["max"] = 20, + ["min"] = 5, + }, ["Claw"] = { - ["max"] = 30, - ["min"] = 12, - }, + ["max"] = 30, + ["min"] = 12, + }, ["Dagger"] = { - ["max"] = 30, - ["min"] = 12, - }, + ["max"] = 30, + ["min"] = 12, + }, ["Gloves"] = { - ["max"] = 20, - ["min"] = 5, - }, + ["max"] = 20, + ["min"] = 5, + }, ["Helmet"] = { - ["max"] = 20, - ["min"] = 5, - }, + ["max"] = 20, + ["min"] = 5, + }, ["Shield"] = { - ["max"] = 10, - ["min"] = 5, - ["subType"] = "Energy Shield", - }, + ["max"] = 10, + ["min"] = 5, + ["subType"] = "Energy Shield", + }, ["Staff"] = { - ["max"] = 30, - ["min"] = 12, - }, + ["max"] = 30, + ["min"] = 12, + }, ["Wand"] = { - ["max"] = 30, - ["min"] = 12, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1589917703", - ["text"] = "Minions deal #% increased Damage", - ["type"] = "implicit", - }, - }, + ["max"] = 30, + ["min"] = 12, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1589917703", + ["text"] = "Minions deal #% increased Damage", + ["type"] = "implicit", + }, + }, ["implicit.stat_1630041051"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_1630041051", - ["text"] = "#% chance to cause Bleeding with Melee Weapons", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_1630041051", + ["text"] = "#% chance to cause Bleeding with Melee Weapons", + ["type"] = "implicit", + }, + }, ["implicit.stat_1633778432"] = { ["1HAxe"] = { - ["max"] = 30, - ["min"] = 10, - ["subType"] = "Rune Dagger", - }, + ["max"] = 30, + ["min"] = 10, + ["subType"] = "Rune Dagger", + }, ["1HMace"] = { - ["max"] = 30, - ["min"] = 10, - ["subType"] = "Rune Dagger", - }, + ["max"] = 30, + ["min"] = 10, + ["subType"] = "Rune Dagger", + }, ["1HSword"] = { - ["max"] = 30, - ["min"] = 10, - ["subType"] = "Rune Dagger", - }, + ["max"] = 30, + ["min"] = 10, + ["subType"] = "Rune Dagger", + }, ["1HWeapon"] = { - ["max"] = 30, - ["min"] = 10, - ["subType"] = "Rune Dagger", - }, + ["max"] = 30, + ["min"] = 10, + ["subType"] = "Rune Dagger", + }, ["2HAxe"] = { - ["max"] = 30, - ["min"] = 10, - ["subType"] = "Rune Dagger", - }, + ["max"] = 30, + ["min"] = 10, + ["subType"] = "Rune Dagger", + }, ["2HMace"] = { - ["max"] = 30, - ["min"] = 10, - ["subType"] = "Rune Dagger", - }, + ["max"] = 30, + ["min"] = 10, + ["subType"] = "Rune Dagger", + }, ["2HSword"] = { - ["max"] = 30, - ["min"] = 10, - ["subType"] = "Rune Dagger", - }, + ["max"] = 30, + ["min"] = 10, + ["subType"] = "Rune Dagger", + }, ["2HWeapon"] = { - ["max"] = 30, - ["min"] = 10, - ["subType"] = "Rune Dagger", - }, + ["max"] = 30, + ["min"] = 10, + ["subType"] = "Rune Dagger", + }, ["Bow"] = { - ["max"] = 30, - ["min"] = 10, - ["subType"] = "Rune Dagger", - }, + ["max"] = 30, + ["min"] = 10, + ["subType"] = "Rune Dagger", + }, ["Claw"] = { - ["max"] = 30, - ["min"] = 10, - ["subType"] = "Rune Dagger", - }, + ["max"] = 30, + ["min"] = 10, + ["subType"] = "Rune Dagger", + }, ["Dagger"] = { - ["max"] = 30, - ["min"] = 10, - ["subType"] = "Rune Dagger", - }, + ["max"] = 30, + ["min"] = 10, + ["subType"] = "Rune Dagger", + }, ["Staff"] = { - ["max"] = 30, - ["min"] = 10, - ["subType"] = "Rune Dagger", - }, + ["max"] = 30, + ["min"] = 10, + ["subType"] = "Rune Dagger", + }, ["Wand"] = { - ["max"] = 30, - ["min"] = 10, - ["subType"] = "Rune Dagger", - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1633778432", - ["text"] = "Trigger Level # Flame Dash when you use a Socketed Skill", - ["type"] = "implicit", - }, - }, + ["max"] = 30, + ["min"] = 10, + ["subType"] = "Rune Dagger", + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1633778432", + ["text"] = "Trigger Level # Flame Dash when you use a Socketed Skill", + ["type"] = "implicit", + }, + }, ["implicit.stat_1662717006"] = { ["1HAxe"] = { - ["max"] = 38, - ["min"] = 3, - }, + ["max"] = 38, + ["min"] = 3, + }, ["1HMace"] = { - ["max"] = 38, - ["min"] = 3, - }, + ["max"] = 38, + ["min"] = 3, + }, ["1HSword"] = { - ["max"] = 38, - ["min"] = 3, - }, + ["max"] = 38, + ["min"] = 3, + }, ["1HWeapon"] = { - ["max"] = 38, - ["min"] = 3, - }, + ["max"] = 38, + ["min"] = 3, + }, ["2HAxe"] = { - ["max"] = 38, - ["min"] = 3, - }, + ["max"] = 38, + ["min"] = 3, + }, ["2HMace"] = { - ["max"] = 38, - ["min"] = 3, - }, + ["max"] = 38, + ["min"] = 3, + }, ["2HSword"] = { - ["max"] = 38, - ["min"] = 3, - }, + ["max"] = 38, + ["min"] = 3, + }, ["2HWeapon"] = { - ["max"] = 38, - ["min"] = 3, - }, + ["max"] = 38, + ["min"] = 3, + }, ["Bow"] = { - ["max"] = 38, - ["min"] = 3, - }, + ["max"] = 38, + ["min"] = 3, + }, ["Claw"] = { - ["max"] = 38, - ["min"] = 3, - }, + ["max"] = 38, + ["min"] = 3, + }, ["Dagger"] = { - ["max"] = 38, - ["min"] = 3, - }, + ["max"] = 38, + ["min"] = 3, + }, ["Staff"] = { - ["max"] = 38, - ["min"] = 3, - }, + ["max"] = 38, + ["min"] = 3, + }, ["Wand"] = { - ["max"] = 38, - ["min"] = 3, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1662717006", - ["text"] = "Adds # to # Cold Damage to Spells and Attacks", - ["type"] = "implicit", - }, - }, + ["max"] = 38, + ["min"] = 3, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1662717006", + ["text"] = "Adds # to # Cold Damage to Spells and Attacks", + ["type"] = "implicit", + }, + }, ["implicit.stat_1671376347"] = { ["Ring"] = { - ["max"] = 30, - ["min"] = 20, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1671376347", - ["text"] = "+#% to Lightning Resistance", - ["type"] = "implicit", - }, - }, + ["max"] = 30, + ["min"] = 20, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1671376347", + ["text"] = "+#% to Lightning Resistance", + ["type"] = "implicit", + }, + }, ["implicit.stat_1754445556"] = { ["Quiver"] = { - ["max"] = 3, - ["min"] = 3, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1754445556", - ["text"] = "Adds # to # Lightning Damage to Attacks", - ["type"] = "implicit", - }, - }, + ["max"] = 3, + ["min"] = 3, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1754445556", + ["text"] = "Adds # to # Lightning Damage to Attacks", + ["type"] = "implicit", + }, + }, ["implicit.stat_1765111378"] = { ["Ring"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_1765111378", - ["text"] = "Cannot roll Modifiers of Non-Lightning Damage Types", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_1765111378", + ["text"] = "Cannot roll Modifiers of Non-Lightning Damage Types", + ["type"] = "implicit", + }, + }, ["implicit.stat_1774370437"] = { ["Belt"] = { - ["max"] = 20, - ["min"] = 20, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1774370437", - ["text"] = "Trigger Level # Summon Taunting Contraption when you use a Flask", - ["type"] = "implicit", - }, - }, + ["max"] = 20, + ["min"] = 20, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1774370437", + ["text"] = "Trigger Level # Summon Taunting Contraption when you use a Flask", + ["type"] = "implicit", + }, + }, ["implicit.stat_1782086450"] = { ["Amulet"] = { - ["max"] = 15, - ["min"] = 10, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1782086450", - ["text"] = "#% faster start of Energy Shield Recharge", - ["type"] = "implicit", - }, - }, + ["max"] = 15, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1782086450", + ["text"] = "#% faster start of Energy Shield Recharge", + ["type"] = "implicit", + }, + }, ["implicit.stat_1794120699"] = { ["Ring"] = { - ["max"] = 50, - ["min"] = 25, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1794120699", - ["text"] = "#% increased Prefix Modifier magnitudes", - ["type"] = "implicit", - }, - }, + ["max"] = 50, + ["min"] = 25, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1794120699", + ["text"] = "#% increased Prefix Modifier magnitudes", + ["type"] = "implicit", + }, + }, ["implicit.stat_1795443614"] = { ["Amulet"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_1795443614", - ["text"] = "Has Elder, Shaper and all Conqueror Influences", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_1795443614", + ["text"] = "Has Elder, Shaper and all Conqueror Influences", + ["type"] = "implicit", + }, + }, ["implicit.stat_1808507379"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_1808507379", - ["text"] = "#% increased Effect of Blind from Melee Weapons", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_1808507379", + ["text"] = "#% increased Effect of Blind from Melee Weapons", + ["type"] = "implicit", + }, + }, ["implicit.stat_1826802197"] = { ["Amulet"] = { - ["max"] = 10, - ["min"] = 10, - ["subType"] = "Talisman", - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1826802197", - ["text"] = "#% chance to gain a Frenzy Charge on Kill", - ["type"] = "implicit", - }, - }, + ["max"] = 10, + ["min"] = 10, + ["subType"] = "Talisman", + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1826802197", + ["text"] = "#% chance to gain a Frenzy Charge on Kill", + ["type"] = "implicit", + }, + }, ["implicit.stat_1839076647"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_1839076647", - ["text"] = "#% increased Projectile Damage", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_1839076647", + ["text"] = "#% increased Projectile Damage", + ["type"] = "implicit", + }, + }, ["implicit.stat_1858426568"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_1858426568", - ["text"] = "#% chance to Freeze with Melee Weapons", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_1858426568", + ["text"] = "#% chance to Freeze with Melee Weapons", + ["type"] = "implicit", + }, + }, ["implicit.stat_1907260000"] = { ["1HAxe"] = { - ["max"] = 50, - ["min"] = 30, - }, + ["max"] = 50, + ["min"] = 30, + }, ["1HMace"] = { - ["max"] = 50, - ["min"] = 30, - }, + ["max"] = 50, + ["min"] = 30, + }, ["1HSword"] = { - ["max"] = 50, - ["min"] = 30, - }, + ["max"] = 50, + ["min"] = 30, + }, ["1HWeapon"] = { - ["max"] = 50, - ["min"] = 30, - }, + ["max"] = 50, + ["min"] = 30, + }, ["2HAxe"] = { - ["max"] = 50, - ["min"] = 30, - }, + ["max"] = 50, + ["min"] = 30, + }, ["2HMace"] = { - ["max"] = 50, - ["min"] = 30, - }, + ["max"] = 50, + ["min"] = 30, + }, ["2HSword"] = { - ["max"] = 50, - ["min"] = 30, - }, + ["max"] = 50, + ["min"] = 30, + }, ["2HWeapon"] = { - ["max"] = 50, - ["min"] = 30, - }, + ["max"] = 50, + ["min"] = 30, + }, ["Bow"] = { - ["max"] = 50, - ["min"] = 30, - }, + ["max"] = 50, + ["min"] = 30, + }, ["Claw"] = { - ["max"] = 50, - ["min"] = 30, - }, + ["max"] = 50, + ["min"] = 30, + }, ["Dagger"] = { - ["max"] = 50, - ["min"] = 30, - }, + ["max"] = 50, + ["min"] = 30, + }, ["Staff"] = { - ["max"] = 50, - ["min"] = 30, - }, + ["max"] = 50, + ["min"] = 30, + }, ["Wand"] = { - ["max"] = 50, - ["min"] = 30, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1907260000", - ["text"] = "Hits with this Weapon have #% chance to ignore Enemy Physical Damage Reduction", - ["type"] = "implicit", - }, - }, + ["max"] = 50, + ["min"] = 30, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1907260000", + ["text"] = "Hits with this Weapon have #% chance to ignore Enemy Physical Damage Reduction", + ["type"] = "implicit", + }, + }, ["implicit.stat_1915414884"] = { ["Boots"] = { - ["max"] = 30, - ["min"] = 25, - ["subType"] = "Energy Shield", - }, + ["max"] = 30, + ["min"] = 25, + ["subType"] = "Energy Shield", + }, ["Chest"] = { - ["max"] = 30, - ["min"] = 25, - ["subType"] = "Energy Shield", - }, + ["max"] = 30, + ["min"] = 25, + ["subType"] = "Energy Shield", + }, ["Gloves"] = { - ["max"] = 30, - ["min"] = 25, - ["subType"] = "Energy Shield", - }, + ["max"] = 30, + ["min"] = 25, + ["subType"] = "Energy Shield", + }, ["Helmet"] = { - ["max"] = 30, - ["min"] = 25, - ["subType"] = "Energy Shield", - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1915414884", - ["text"] = "#% chance when you pay a Skill's Cost to gain that much Mana", - ["type"] = "implicit", - }, - }, + ["max"] = 30, + ["min"] = 25, + ["subType"] = "Energy Shield", + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1915414884", + ["text"] = "#% chance when you pay a Skill's Cost to gain that much Mana", + ["type"] = "implicit", + }, + }, ["implicit.stat_1923879260"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_1923879260", - ["text"] = "Attacks have #% chance to cause Bleeding", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_1923879260", + ["text"] = "Attacks have #% chance to cause Bleeding", + ["type"] = "implicit", + }, + }, ["implicit.stat_1967040409"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_1967040409", - ["text"] = "Spell Skills have #% increased Area of Effect", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_1967040409", + ["text"] = "Spell Skills have #% increased Area of Effect", + ["type"] = "implicit", + }, + }, ["implicit.stat_2005503156"] = { ["Flask"] = { - ["max"] = 1, - ["min"] = 1, - ["subType"] = "Utility", - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2005503156", - ["text"] = "Taunts nearby Enemies on use", - ["type"] = "implicit", - }, - }, + ["max"] = 1, + ["min"] = 1, + ["subType"] = "Utility", + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2005503156", + ["text"] = "Taunts nearby Enemies on use", + ["type"] = "implicit", + }, + }, ["implicit.stat_2012294704"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_2012294704", - ["text"] = "Gain # Rage on Melee Weapon Hit", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_2012294704", + ["text"] = "Gain # Rage on Melee Weapon Hit", + ["type"] = "implicit", + }, + }, ["implicit.stat_202275580"] = { ["Ring"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_202275580", - ["text"] = "Properties are doubled while in a Breach", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_202275580", + ["text"] = "Properties are doubled while in a Breach", + ["type"] = "implicit", + }, + }, ["implicit.stat_2067062068"] = { ["Amulet"] = { - ["max"] = 2, - ["min"] = 2, - ["subType"] = "Talisman", - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2067062068", - ["text"] = "Projectiles Pierce # additional Targets", - ["type"] = "implicit", - }, - }, + ["max"] = 2, + ["min"] = 2, + ["subType"] = "Talisman", + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2067062068", + ["text"] = "Projectiles Pierce # additional Targets", + ["type"] = "implicit", + }, + }, ["implicit.stat_2091591880"] = { ["Quiver"] = { - ["max"] = 30, - ["min"] = 20, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2091591880", - ["text"] = "#% increased Critical Strike Chance with Bows", - ["type"] = "implicit", - }, - }, + ["max"] = 30, + ["min"] = 20, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2091591880", + ["text"] = "#% increased Critical Strike Chance with Bows", + ["type"] = "implicit", + }, + }, ["implicit.stat_2101383955"] = { ["1HAxe"] = { - ["max"] = 6, - ["min"] = 4, - }, + ["max"] = 6, + ["min"] = 4, + }, ["1HMace"] = { - ["max"] = 6, - ["min"] = 4, - }, + ["max"] = 6, + ["min"] = 4, + }, ["1HSword"] = { - ["max"] = 6, - ["min"] = 4, - }, + ["max"] = 6, + ["min"] = 4, + }, ["1HWeapon"] = { - ["max"] = 6, - ["min"] = 4, - }, + ["max"] = 6, + ["min"] = 4, + }, ["2HAxe"] = { - ["max"] = 6, - ["min"] = 4, - }, + ["max"] = 6, + ["min"] = 4, + }, ["2HMace"] = { - ["max"] = 6, - ["min"] = 4, - }, + ["max"] = 6, + ["min"] = 4, + }, ["2HSword"] = { - ["max"] = 6, - ["min"] = 4, - }, + ["max"] = 6, + ["min"] = 4, + }, ["2HWeapon"] = { - ["max"] = 6, - ["min"] = 4, - }, + ["max"] = 6, + ["min"] = 4, + }, ["Bow"] = { - ["max"] = 6, - ["min"] = 4, - }, + ["max"] = 6, + ["min"] = 4, + }, ["Claw"] = { - ["max"] = 6, - ["min"] = 4, - }, + ["max"] = 6, + ["min"] = 4, + }, ["Dagger"] = { - ["max"] = 6, - ["min"] = 4, - }, + ["max"] = 6, + ["min"] = 4, + }, ["Staff"] = { - ["max"] = 6, - ["min"] = 4, - }, + ["max"] = 6, + ["min"] = 4, + }, ["Wand"] = { - ["max"] = 6, - ["min"] = 4, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2101383955", - ["text"] = "Damage Penetrates #% Elemental Resistances", - ["type"] = "implicit", - }, - }, + ["max"] = 6, + ["min"] = 4, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2101383955", + ["text"] = "Damage Penetrates #% Elemental Resistances", + ["type"] = "implicit", + }, + }, ["implicit.stat_2120297997"] = { ["1HAxe"] = { - ["max"] = 25, - ["min"] = 20, - }, + ["max"] = 25, + ["min"] = 20, + }, ["1HMace"] = { - ["max"] = 25, - ["min"] = 20, - }, + ["max"] = 25, + ["min"] = 20, + }, ["1HSword"] = { - ["max"] = 25, - ["min"] = 20, - }, + ["max"] = 25, + ["min"] = 20, + }, ["1HWeapon"] = { - ["max"] = 25, - ["min"] = 20, - }, + ["max"] = 25, + ["min"] = 20, + }, ["2HAxe"] = { - ["max"] = 25, - ["min"] = 20, - }, + ["max"] = 25, + ["min"] = 20, + }, ["2HMace"] = { - ["max"] = 25, - ["min"] = 20, - }, + ["max"] = 25, + ["min"] = 20, + }, ["2HSword"] = { - ["max"] = 25, - ["min"] = 20, - }, + ["max"] = 25, + ["min"] = 20, + }, ["2HWeapon"] = { - ["max"] = 25, - ["min"] = 20, - }, + ["max"] = 25, + ["min"] = 20, + }, ["Bow"] = { - ["max"] = 25, - ["min"] = 20, - }, + ["max"] = 25, + ["min"] = 20, + }, ["Claw"] = { - ["max"] = 25, - ["min"] = 20, - }, + ["max"] = 25, + ["min"] = 20, + }, ["Dagger"] = { - ["max"] = 25, - ["min"] = 20, - }, + ["max"] = 25, + ["min"] = 20, + }, ["Staff"] = { - ["max"] = 25, - ["min"] = 20, - }, + ["max"] = 25, + ["min"] = 20, + }, ["Wand"] = { - ["max"] = 25, - ["min"] = 20, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2120297997", - ["text"] = "+#% Chance to Block Spell Damage while wielding a Staff", - ["type"] = "implicit", - }, - }, + ["max"] = 25, + ["min"] = 20, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2120297997", + ["text"] = "+#% Chance to Block Spell Damage while wielding a Staff", + ["type"] = "implicit", + }, + }, ["implicit.stat_2146730404"] = { ["Flask"] = { - ["max"] = 1, - ["min"] = 1, - ["subType"] = "Utility", - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2146730404", - ["text"] = "Creates Consecrated Ground on Use", - ["type"] = "implicit", - }, - }, + ["max"] = 1, + ["min"] = 1, + ["subType"] = "Utility", + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2146730404", + ["text"] = "Creates Consecrated Ground on Use", + ["type"] = "implicit", + }, + }, ["implicit.stat_2154246560"] = { ["Amulet"] = { - ["max"] = 35, - ["min"] = 25, - ["subType"] = "Talisman", - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2154246560", - ["text"] = "#% increased Damage", - ["type"] = "implicit", - }, - }, + ["max"] = 35, + ["min"] = 25, + ["subType"] = "Talisman", + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2154246560", + ["text"] = "#% increased Damage", + ["type"] = "implicit", + }, + }, ["implicit.stat_2162876159"] = { ["Boots"] = { - ["max"] = 18, - ["min"] = 14, - ["subType"] = "Evasion", - }, + ["max"] = 18, + ["min"] = 14, + ["subType"] = "Evasion", + }, ["Chest"] = { - ["max"] = 18, - ["min"] = 14, - ["subType"] = "Evasion", - }, + ["max"] = 18, + ["min"] = 14, + ["subType"] = "Evasion", + }, ["Gloves"] = { - ["max"] = 18, - ["min"] = 14, - ["subType"] = "Evasion", - }, + ["max"] = 18, + ["min"] = 14, + ["subType"] = "Evasion", + }, ["Helmet"] = { - ["max"] = 18, - ["min"] = 14, - ["subType"] = "Evasion", - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2162876159", - ["text"] = "#% increased Projectile Attack Damage", - ["type"] = "implicit", - }, - }, + ["max"] = 18, + ["min"] = 14, + ["subType"] = "Evasion", + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2162876159", + ["text"] = "#% increased Projectile Attack Damage", + ["type"] = "implicit", + }, + }, ["implicit.stat_2170876738"] = { ["1HAxe"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["1HMace"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["1HSword"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["1HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["2HAxe"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["2HMace"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["2HSword"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["2HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Bow"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Claw"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Dagger"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Staff"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Wand"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_2170876738", - ["text"] = "Attack Critical Strikes ignore Enemy Monster Elemental Resistances", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_2170876738", + ["text"] = "Attack Critical Strikes ignore Enemy Monster Elemental Resistances", + ["type"] = "implicit", + }, + }, ["implicit.stat_2231156303"] = { ["Amulet"] = { - ["max"] = 30, - ["min"] = 20, - ["subType"] = "Talisman", - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2231156303", - ["text"] = "#% increased Lightning Damage", - ["type"] = "implicit", - }, - }, + ["max"] = 30, + ["min"] = 20, + ["subType"] = "Talisman", + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2231156303", + ["text"] = "#% increased Lightning Damage", + ["type"] = "implicit", + }, + }, ["implicit.stat_2239667237"] = { ["Ring"] = { - ["max"] = 15, - ["min"] = 15, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2239667237", - ["text"] = "Right ring slot: #% increased Skill Effect Duration", - ["type"] = "implicit", - }, - }, + ["max"] = 15, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2239667237", + ["text"] = "Right ring slot: #% increased Skill Effect Duration", + ["type"] = "implicit", + }, + }, ["implicit.stat_2245266924"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_2245266924", - ["text"] = "#% increased Effect of Shock from Melee Weapons", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_2245266924", + ["text"] = "#% increased Effect of Shock from Melee Weapons", + ["type"] = "implicit", + }, + }, ["implicit.stat_2250533757"] = { ["1HAxe"] = { - ["max"] = 10, - ["min"] = 6, - }, + ["max"] = 10, + ["min"] = 6, + }, ["1HMace"] = { - ["max"] = 10, - ["min"] = 6, - }, + ["max"] = 10, + ["min"] = 6, + }, ["1HSword"] = { - ["max"] = 10, - ["min"] = 6, - }, + ["max"] = 10, + ["min"] = 6, + }, ["1HWeapon"] = { - ["max"] = 10, - ["min"] = 6, - }, + ["max"] = 10, + ["min"] = 6, + }, ["2HAxe"] = { - ["max"] = 10, - ["min"] = 6, - }, + ["max"] = 10, + ["min"] = 6, + }, ["2HMace"] = { - ["max"] = 10, - ["min"] = 6, - }, + ["max"] = 10, + ["min"] = 6, + }, ["2HSword"] = { - ["max"] = 10, - ["min"] = 6, - }, + ["max"] = 10, + ["min"] = 6, + }, ["2HWeapon"] = { - ["max"] = 10, - ["min"] = 6, - }, + ["max"] = 10, + ["min"] = 6, + }, ["Boots"] = { - ["max"] = 9, - ["min"] = 3, - ["subType"] = "Evasion", - }, + ["max"] = 9, + ["min"] = 3, + ["subType"] = "Evasion", + }, ["Bow"] = { - ["max"] = 10, - ["min"] = 6, - }, + ["max"] = 10, + ["min"] = 6, + }, ["Chest"] = { - ["max"] = 9, - ["min"] = 3, - ["subType"] = "Evasion", - }, + ["max"] = 9, + ["min"] = 3, + ["subType"] = "Evasion", + }, ["Claw"] = { - ["max"] = 10, - ["min"] = 6, - }, + ["max"] = 10, + ["min"] = 6, + }, ["Dagger"] = { - ["max"] = 10, - ["min"] = 6, - }, + ["max"] = 10, + ["min"] = 6, + }, ["Gloves"] = { - ["max"] = 9, - ["min"] = 3, - ["subType"] = "Evasion", - }, + ["max"] = 9, + ["min"] = 3, + ["subType"] = "Evasion", + }, ["Helmet"] = { - ["max"] = 9, - ["min"] = 3, - ["subType"] = "Evasion", - }, + ["max"] = 9, + ["min"] = 3, + ["subType"] = "Evasion", + }, ["Shield"] = { - ["max"] = 9, - ["min"] = 3, - ["subType"] = "Evasion", - }, + ["max"] = 9, + ["min"] = 3, + ["subType"] = "Evasion", + }, ["Staff"] = { - ["max"] = 10, - ["min"] = 6, - }, + ["max"] = 10, + ["min"] = 6, + }, ["Wand"] = { - ["max"] = 10, - ["min"] = 6, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2250533757", - ["text"] = "#% increased Movement Speed", - ["type"] = "implicit", - }, - }, + ["max"] = 10, + ["min"] = 6, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2250533757", + ["text"] = "#% increased Movement Speed", + ["type"] = "implicit", + }, + }, ["implicit.stat_2300185227"] = { ["Amulet"] = { - ["max"] = 24, - ["min"] = 16, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2300185227", - ["text"] = "+# to Dexterity and Intelligence", - ["type"] = "implicit", - }, - }, + ["max"] = 24, + ["min"] = 16, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2300185227", + ["text"] = "+# to Dexterity and Intelligence", + ["type"] = "implicit", + }, + }, ["implicit.stat_2308278768"] = { ["1HAxe"] = { - ["max"] = 40, - ["min"] = 20, - ["subType"] = "Rune Dagger", - }, + ["max"] = 40, + ["min"] = 20, + ["subType"] = "Rune Dagger", + }, ["1HMace"] = { - ["max"] = 40, - ["min"] = 20, - ["subType"] = "Rune Dagger", - }, + ["max"] = 40, + ["min"] = 20, + ["subType"] = "Rune Dagger", + }, ["1HSword"] = { - ["max"] = 40, - ["min"] = 20, - ["subType"] = "Rune Dagger", - }, + ["max"] = 40, + ["min"] = 20, + ["subType"] = "Rune Dagger", + }, ["1HWeapon"] = { - ["max"] = 40, - ["min"] = 20, - ["subType"] = "Rune Dagger", - }, + ["max"] = 40, + ["min"] = 20, + ["subType"] = "Rune Dagger", + }, ["2HAxe"] = { - ["max"] = 40, - ["min"] = 20, - ["subType"] = "Rune Dagger", - }, + ["max"] = 40, + ["min"] = 20, + ["subType"] = "Rune Dagger", + }, ["2HMace"] = { - ["max"] = 40, - ["min"] = 20, - ["subType"] = "Rune Dagger", - }, + ["max"] = 40, + ["min"] = 20, + ["subType"] = "Rune Dagger", + }, ["2HSword"] = { - ["max"] = 40, - ["min"] = 20, - ["subType"] = "Rune Dagger", - }, + ["max"] = 40, + ["min"] = 20, + ["subType"] = "Rune Dagger", + }, ["2HWeapon"] = { - ["max"] = 40, - ["min"] = 20, - ["subType"] = "Rune Dagger", - }, + ["max"] = 40, + ["min"] = 20, + ["subType"] = "Rune Dagger", + }, ["Bow"] = { - ["max"] = 40, - ["min"] = 20, - ["subType"] = "Rune Dagger", - }, + ["max"] = 40, + ["min"] = 20, + ["subType"] = "Rune Dagger", + }, ["Claw"] = { - ["max"] = 40, - ["min"] = 20, - ["subType"] = "Rune Dagger", - }, + ["max"] = 40, + ["min"] = 20, + ["subType"] = "Rune Dagger", + }, ["Dagger"] = { - ["max"] = 40, - ["min"] = 20, - ["subType"] = "Rune Dagger", - }, + ["max"] = 40, + ["min"] = 20, + ["subType"] = "Rune Dagger", + }, ["Staff"] = { - ["max"] = 40, - ["min"] = 20, - ["subType"] = "Rune Dagger", - }, + ["max"] = 40, + ["min"] = 20, + ["subType"] = "Rune Dagger", + }, ["Wand"] = { - ["max"] = 40, - ["min"] = 20, - ["subType"] = "Rune Dagger", - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2308278768", - ["text"] = "#% increased Cooldown Recovery Rate of Travel Skills", - ["type"] = "implicit", - }, - }, + ["max"] = 40, + ["min"] = 20, + ["subType"] = "Rune Dagger", + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2308278768", + ["text"] = "#% increased Cooldown Recovery Rate of Travel Skills", + ["type"] = "implicit", + }, + }, ["implicit.stat_2309614417"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_2309614417", - ["text"] = "#% chance to Freeze", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_2309614417", + ["text"] = "#% chance to Freeze", + ["type"] = "implicit", + }, + }, ["implicit.stat_2313961828"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_2313961828", - ["text"] = "#% chance to Shock with Melee Weapons", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_2313961828", + ["text"] = "#% chance to Shock with Melee Weapons", + ["type"] = "implicit", + }, + }, ["implicit.stat_2316658489"] = { ["Belt"] = { - ["max"] = 320, - ["min"] = 260, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2316658489", - ["text"] = "+# to Armour and Evasion Rating", - ["type"] = "implicit", - }, - }, + ["max"] = 320, + ["min"] = 260, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2316658489", + ["text"] = "+# to Armour and Evasion Rating", + ["type"] = "implicit", + }, + }, ["implicit.stat_2375316951"] = { ["1HAxe"] = { - ["max"] = 50, - ["min"] = 30, - }, + ["max"] = 50, + ["min"] = 30, + }, ["1HMace"] = { - ["max"] = 50, - ["min"] = 30, - }, + ["max"] = 50, + ["min"] = 30, + }, ["1HSword"] = { - ["max"] = 50, - ["min"] = 30, - }, + ["max"] = 50, + ["min"] = 30, + }, ["1HWeapon"] = { - ["max"] = 50, - ["min"] = 30, - }, + ["max"] = 50, + ["min"] = 30, + }, ["2HAxe"] = { - ["max"] = 50, - ["min"] = 30, - }, + ["max"] = 50, + ["min"] = 30, + }, ["2HMace"] = { - ["max"] = 50, - ["min"] = 30, - }, + ["max"] = 50, + ["min"] = 30, + }, ["2HSword"] = { - ["max"] = 50, - ["min"] = 30, - }, + ["max"] = 50, + ["min"] = 30, + }, ["2HWeapon"] = { - ["max"] = 50, - ["min"] = 30, - }, + ["max"] = 50, + ["min"] = 30, + }, ["Bow"] = { - ["max"] = 50, - ["min"] = 30, - }, + ["max"] = 50, + ["min"] = 30, + }, ["Claw"] = { - ["max"] = 50, - ["min"] = 30, - }, + ["max"] = 50, + ["min"] = 30, + }, ["Dagger"] = { - ["max"] = 50, - ["min"] = 30, - }, + ["max"] = 50, + ["min"] = 30, + }, ["Staff"] = { - ["max"] = 50, - ["min"] = 30, - }, + ["max"] = 50, + ["min"] = 30, + }, ["Wand"] = { - ["max"] = 50, - ["min"] = 30, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2375316951", - ["text"] = "#% increased Critical Strike Chance", - ["type"] = "implicit", - }, - }, + ["max"] = 50, + ["min"] = 30, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2375316951", + ["text"] = "#% increased Critical Strike Chance", + ["type"] = "implicit", + }, + }, ["implicit.stat_2387423236"] = { ["Helmet"] = { - ["max"] = 106.5, - ["min"] = 4, - ["subType"] = "Evasion/Energy Shield", - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2387423236", - ["text"] = "Adds # to # Cold Damage", - ["type"] = "implicit", - }, - }, + ["max"] = 106.5, + ["min"] = 4, + ["subType"] = "Evasion/Energy Shield", + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2387423236", + ["text"] = "Adds # to # Cold Damage", + ["type"] = "implicit", + }, + }, ["implicit.stat_2451856207"] = { ["Flask"] = { - ["max"] = 1, - ["min"] = 1, - ["subType"] = "Utility", - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2451856207", - ["text"] = "Restores Ward on use", - ["type"] = "implicit", - }, - }, + ["max"] = 1, + ["min"] = 1, + ["subType"] = "Utility", + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2451856207", + ["text"] = "Restores Ward on use", + ["type"] = "implicit", + }, + }, ["implicit.stat_2457848738"] = { ["Ring"] = { - ["max"] = 30, - ["min"] = 30, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2457848738", - ["text"] = "Right ring slot: #% increased Duration of Ailments on You", - ["type"] = "implicit", - }, - }, + ["max"] = 30, + ["min"] = 30, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2457848738", + ["text"] = "Right ring slot: #% increased Duration of Ailments on You", + ["type"] = "implicit", + }, + }, ["implicit.stat_2483795307"] = { ["Amulet"] = { - ["max"] = 10, - ["min"] = 10, - ["subType"] = "Talisman", - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2483795307", - ["text"] = "#% chance to gain a Power Charge on Kill", - ["type"] = "implicit", - }, - }, + ["max"] = 10, + ["min"] = 10, + ["subType"] = "Talisman", + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2483795307", + ["text"] = "#% chance to gain a Power Charge on Kill", + ["type"] = "implicit", + }, + }, ["implicit.stat_2511217560"] = { ["Belt"] = { - ["max"] = 25, - ["min"] = 15, - }, + ["max"] = 25, + ["min"] = 15, + }, ["Boots"] = { - ["max"] = 50, - ["min"] = 30, - ["subType"] = "Armour", - }, + ["max"] = 50, + ["min"] = 30, + ["subType"] = "Armour", + }, ["Chest"] = { - ["max"] = 50, - ["min"] = 30, - ["subType"] = "Armour", - }, + ["max"] = 50, + ["min"] = 30, + ["subType"] = "Armour", + }, ["Gloves"] = { - ["max"] = 50, - ["min"] = 30, - ["subType"] = "Armour", - }, + ["max"] = 50, + ["min"] = 30, + ["subType"] = "Armour", + }, ["Helmet"] = { - ["max"] = 50, - ["min"] = 30, - ["subType"] = "Armour", - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2511217560", - ["text"] = "#% increased Stun and Block Recovery", - ["type"] = "implicit", - }, - }, + ["max"] = 50, + ["min"] = 30, + ["subType"] = "Armour", + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2511217560", + ["text"] = "#% increased Stun and Block Recovery", + ["type"] = "implicit", + }, + }, ["implicit.stat_2517001139"] = { ["1HAxe"] = { - ["max"] = 45, - ["min"] = 30, - }, + ["max"] = 45, + ["min"] = 30, + }, ["1HMace"] = { - ["max"] = 45, - ["min"] = 30, - }, + ["max"] = 45, + ["min"] = 30, + }, ["1HSword"] = { - ["max"] = 45, - ["min"] = 30, - }, + ["max"] = 45, + ["min"] = 30, + }, ["1HWeapon"] = { - ["max"] = 45, - ["min"] = 30, - }, + ["max"] = 45, + ["min"] = 30, + }, ["2HAxe"] = { - ["max"] = 45, - ["min"] = 30, - }, + ["max"] = 45, + ["min"] = 30, + }, ["2HMace"] = { - ["max"] = 45, - ["min"] = 30, - }, + ["max"] = 45, + ["min"] = 30, + }, ["2HSword"] = { - ["max"] = 45, - ["min"] = 30, - }, + ["max"] = 45, + ["min"] = 30, + }, ["2HWeapon"] = { - ["max"] = 45, - ["min"] = 30, - }, + ["max"] = 45, + ["min"] = 30, + }, ["Belt"] = { - ["max"] = 30, - ["min"] = 20, - }, + ["max"] = 30, + ["min"] = 20, + }, ["Bow"] = { - ["max"] = 45, - ["min"] = 30, - }, + ["max"] = 45, + ["min"] = 30, + }, ["Claw"] = { - ["max"] = 45, - ["min"] = 30, - }, + ["max"] = 45, + ["min"] = 30, + }, ["Dagger"] = { - ["max"] = 45, - ["min"] = 30, - }, + ["max"] = 45, + ["min"] = 30, + }, ["Staff"] = { - ["max"] = 45, - ["min"] = 30, - }, + ["max"] = 45, + ["min"] = 30, + }, ["Wand"] = { - ["max"] = 45, - ["min"] = 30, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2517001139", - ["text"] = "#% increased Stun Duration on Enemies", - ["type"] = "implicit", - }, - }, + ["max"] = 45, + ["min"] = 30, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2517001139", + ["text"] = "#% increased Stun Duration on Enemies", + ["type"] = "implicit", + }, + }, ["implicit.stat_2522672898"] = { ["Amulet"] = { - ["max"] = 50, - ["min"] = 50, - ["subType"] = "Talisman", - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2522672898", - ["text"] = "#% of Fire Damage from Hits taken as Cold Damage", - ["type"] = "implicit", - }, - }, + ["max"] = 50, + ["min"] = 50, + ["subType"] = "Talisman", + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2522672898", + ["text"] = "#% of Fire Damage from Hits taken as Cold Damage", + ["type"] = "implicit", + }, + }, ["implicit.stat_2530372417"] = { ["1HAxe"] = { - ["max"] = 6, - ["min"] = 4, - }, + ["max"] = 6, + ["min"] = 4, + }, ["1HMace"] = { - ["max"] = 6, - ["min"] = 4, - }, + ["max"] = 6, + ["min"] = 4, + }, ["1HSword"] = { - ["max"] = 6, - ["min"] = 4, - }, + ["max"] = 6, + ["min"] = 4, + }, ["1HWeapon"] = { - ["max"] = 6, - ["min"] = 4, - }, + ["max"] = 6, + ["min"] = 4, + }, ["2HAxe"] = { - ["max"] = 6, - ["min"] = 4, - }, + ["max"] = 6, + ["min"] = 4, + }, ["2HMace"] = { - ["max"] = 6, - ["min"] = 4, - }, + ["max"] = 6, + ["min"] = 4, + }, ["2HSword"] = { - ["max"] = 6, - ["min"] = 4, - }, + ["max"] = 6, + ["min"] = 4, + }, ["2HWeapon"] = { - ["max"] = 6, - ["min"] = 4, - }, + ["max"] = 6, + ["min"] = 4, + }, ["Boots"] = { - ["max"] = 6, - ["min"] = 3, - ["subType"] = "Armour", - }, + ["max"] = 6, + ["min"] = 3, + ["subType"] = "Armour", + }, ["Bow"] = { - ["max"] = 6, - ["min"] = 4, - }, + ["max"] = 6, + ["min"] = 4, + }, ["Chest"] = { - ["max"] = 6, - ["min"] = 3, - ["subType"] = "Armour", - }, + ["max"] = 6, + ["min"] = 3, + ["subType"] = "Armour", + }, ["Claw"] = { - ["max"] = 6, - ["min"] = 4, - }, + ["max"] = 6, + ["min"] = 4, + }, ["Dagger"] = { - ["max"] = 6, - ["min"] = 4, - }, + ["max"] = 6, + ["min"] = 4, + }, ["Gloves"] = { - ["max"] = 6, - ["min"] = 3, - ["subType"] = "Armour", - }, + ["max"] = 6, + ["min"] = 3, + ["subType"] = "Armour", + }, ["Helmet"] = { - ["max"] = 6, - ["min"] = 3, - ["subType"] = "Armour", - }, + ["max"] = 6, + ["min"] = 3, + ["subType"] = "Armour", + }, ["Staff"] = { - ["max"] = 6, - ["min"] = 4, - }, + ["max"] = 6, + ["min"] = 4, + }, ["Wand"] = { - ["max"] = 6, - ["min"] = 4, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2530372417", - ["text"] = "#% Chance to Block Attack Damage", - ["type"] = "implicit", - }, - }, + ["max"] = 6, + ["min"] = 4, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2530372417", + ["text"] = "#% Chance to Block Attack Damage", + ["type"] = "implicit", + }, + }, ["implicit.stat_2546859843"] = { ["Boots"] = { - ["max"] = 25, - ["min"] = 10, - ["subType"] = "Evasion", - }, + ["max"] = 25, + ["min"] = 10, + ["subType"] = "Evasion", + }, ["Chest"] = { - ["max"] = 25, - ["min"] = 10, - ["subType"] = "Evasion", - }, + ["max"] = 25, + ["min"] = 10, + ["subType"] = "Evasion", + }, ["Gloves"] = { - ["max"] = 25, - ["min"] = 10, - ["subType"] = "Evasion", - }, + ["max"] = 25, + ["min"] = 10, + ["subType"] = "Evasion", + }, ["Helmet"] = { - ["max"] = 25, - ["min"] = 10, - ["subType"] = "Evasion", - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2546859843", - ["text"] = "Trap Skills have #% increased Skill Effect Duration", - ["type"] = "implicit", - }, - }, + ["max"] = 25, + ["min"] = 10, + ["subType"] = "Evasion", + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2546859843", + ["text"] = "Trap Skills have #% increased Skill Effect Duration", + ["type"] = "implicit", + }, + }, ["implicit.stat_2604619892"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_2604619892", - ["text"] = "#% increased Duration of Elemental Ailments on Enemies", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_2604619892", + ["text"] = "#% increased Duration of Elemental Ailments on Enemies", + ["type"] = "implicit", + }, + }, ["implicit.stat_261342933"] = { ["1HAxe"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["1HMace"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["1HSword"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["1HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["2HAxe"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["2HMace"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["2HSword"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["2HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Bow"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Claw"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Dagger"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Staff"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Wand"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_261342933", - ["text"] = "Secrets of Suffering", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_261342933", + ["text"] = "Secrets of Suffering", + ["type"] = "implicit", + }, + }, ["implicit.stat_2622251413"] = { ["1HAxe"] = { - ["max"] = 25, - ["min"] = 25, - }, + ["max"] = 25, + ["min"] = 25, + }, ["1HMace"] = { - ["max"] = 25, - ["min"] = 25, - }, + ["max"] = 25, + ["min"] = 25, + }, ["1HSword"] = { - ["max"] = 25, - ["min"] = 25, - }, + ["max"] = 25, + ["min"] = 25, + }, ["1HWeapon"] = { - ["max"] = 25, - ["min"] = 25, - }, + ["max"] = 25, + ["min"] = 25, + }, ["2HAxe"] = { - ["max"] = 25, - ["min"] = 25, - }, + ["max"] = 25, + ["min"] = 25, + }, ["2HMace"] = { - ["max"] = 25, - ["min"] = 25, - }, + ["max"] = 25, + ["min"] = 25, + }, ["2HSword"] = { - ["max"] = 25, - ["min"] = 25, - }, + ["max"] = 25, + ["min"] = 25, + }, ["2HWeapon"] = { - ["max"] = 25, - ["min"] = 25, - }, + ["max"] = 25, + ["min"] = 25, + }, ["Bow"] = { - ["max"] = 25, - ["min"] = 25, - }, + ["max"] = 25, + ["min"] = 25, + }, ["Claw"] = { - ["max"] = 25, - ["min"] = 25, - }, + ["max"] = 25, + ["min"] = 25, + }, ["Dagger"] = { - ["max"] = 25, - ["min"] = 25, - }, + ["max"] = 25, + ["min"] = 25, + }, ["Staff"] = { - ["max"] = 25, - ["min"] = 25, - }, + ["max"] = 25, + ["min"] = 25, + }, ["Wand"] = { - ["max"] = 25, - ["min"] = 25, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2622251413", - ["text"] = "#% chance to double Stun Duration", - ["type"] = "implicit", - }, - }, + ["max"] = 25, + ["min"] = 25, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2622251413", + ["text"] = "#% chance to double Stun Duration", + ["type"] = "implicit", + }, + }, ["implicit.stat_264042990"] = { ["1HAxe"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["1HMace"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["1HSword"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["1HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["2HAxe"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["2HMace"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["2HSword"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["2HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Bow"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Claw"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Dagger"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Staff"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Wand"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_264042990", - ["text"] = "All Damage from Hits with This Weapon can Poison", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_264042990", + ["text"] = "All Damage from Hits with This Weapon can Poison", + ["type"] = "implicit", + }, + }, ["implicit.stat_2672805335"] = { ["Amulet"] = { - ["max"] = 10, - ["min"] = 6, - ["subType"] = "Talisman", - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2672805335", - ["text"] = "#% increased Attack and Cast Speed", - ["type"] = "implicit", - }, - }, + ["max"] = 10, + ["min"] = 6, + ["subType"] = "Talisman", + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2672805335", + ["text"] = "#% increased Attack and Cast Speed", + ["type"] = "implicit", + }, + }, ["implicit.stat_2709367754"] = { ["1HAxe"] = { - ["max"] = 5, - ["min"] = 3, - }, + ["max"] = 5, + ["min"] = 3, + }, ["1HMace"] = { - ["max"] = 5, - ["min"] = 3, - }, + ["max"] = 5, + ["min"] = 3, + }, ["1HSword"] = { - ["max"] = 5, - ["min"] = 3, - }, + ["max"] = 5, + ["min"] = 3, + }, ["1HWeapon"] = { - ["max"] = 5, - ["min"] = 3, - }, + ["max"] = 5, + ["min"] = 3, + }, ["2HAxe"] = { - ["max"] = 5, - ["min"] = 3, - }, + ["max"] = 5, + ["min"] = 3, + }, ["2HMace"] = { - ["max"] = 5, - ["min"] = 3, - }, + ["max"] = 5, + ["min"] = 3, + }, ["2HSword"] = { - ["max"] = 5, - ["min"] = 3, - }, + ["max"] = 5, + ["min"] = 3, + }, ["2HWeapon"] = { - ["max"] = 5, - ["min"] = 3, - }, + ["max"] = 5, + ["min"] = 3, + }, ["Bow"] = { - ["max"] = 5, - ["min"] = 3, - }, + ["max"] = 5, + ["min"] = 3, + }, ["Claw"] = { - ["max"] = 5, - ["min"] = 3, - }, + ["max"] = 5, + ["min"] = 3, + }, ["Dagger"] = { - ["max"] = 5, - ["min"] = 3, - }, + ["max"] = 5, + ["min"] = 3, + }, ["Staff"] = { - ["max"] = 5, - ["min"] = 3, - }, + ["max"] = 5, + ["min"] = 3, + }, ["Wand"] = { - ["max"] = 5, - ["min"] = 3, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2709367754", - ["text"] = "Gain # Rage on Melee Hit", - ["type"] = "implicit", - }, - }, + ["max"] = 5, + ["min"] = 3, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2709367754", + ["text"] = "Gain # Rage on Melee Hit", + ["type"] = "implicit", + }, + }, ["implicit.stat_2748665614"] = { ["Amulet"] = { - ["max"] = 30, - ["min"] = 20, - ["subType"] = "Talisman", - }, + ["max"] = 30, + ["min"] = 20, + ["subType"] = "Talisman", + }, ["Ring"] = { - ["max"] = 10, - ["min"] = 8, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2748665614", - ["text"] = "#% increased maximum Mana", - ["type"] = "implicit", - }, - }, + ["max"] = 10, + ["min"] = 8, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2748665614", + ["text"] = "#% increased maximum Mana", + ["type"] = "implicit", + }, + }, ["implicit.stat_2763429652"] = { ["1HAxe"] = { - ["max"] = 25, - ["min"] = 15, - }, + ["max"] = 25, + ["min"] = 15, + }, ["1HMace"] = { - ["max"] = 25, - ["min"] = 15, - }, + ["max"] = 25, + ["min"] = 15, + }, ["1HSword"] = { - ["max"] = 25, - ["min"] = 15, - }, + ["max"] = 25, + ["min"] = 15, + }, ["1HWeapon"] = { - ["max"] = 25, - ["min"] = 15, - }, + ["max"] = 25, + ["min"] = 15, + }, ["2HAxe"] = { - ["max"] = 25, - ["min"] = 15, - }, + ["max"] = 25, + ["min"] = 15, + }, ["2HMace"] = { - ["max"] = 25, - ["min"] = 15, - }, + ["max"] = 25, + ["min"] = 15, + }, ["2HSword"] = { - ["max"] = 25, - ["min"] = 15, - }, + ["max"] = 25, + ["min"] = 15, + }, ["2HWeapon"] = { - ["max"] = 25, - ["min"] = 15, - }, + ["max"] = 25, + ["min"] = 15, + }, ["Bow"] = { - ["max"] = 25, - ["min"] = 15, - }, + ["max"] = 25, + ["min"] = 15, + }, ["Claw"] = { - ["max"] = 25, - ["min"] = 15, - }, + ["max"] = 25, + ["min"] = 15, + }, ["Dagger"] = { - ["max"] = 25, - ["min"] = 15, - }, + ["max"] = 25, + ["min"] = 15, + }, ["Staff"] = { - ["max"] = 25, - ["min"] = 15, - }, + ["max"] = 25, + ["min"] = 15, + }, ["Wand"] = { - ["max"] = 25, - ["min"] = 15, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2763429652", - ["text"] = "#% chance to Maim on Hit", - ["type"] = "implicit", - }, - }, + ["max"] = 25, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2763429652", + ["text"] = "#% chance to Maim on Hit", + ["type"] = "implicit", + }, + }, ["implicit.stat_2791825817"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_2791825817", - ["text"] = "#% reduced Enemy Stun Threshold with Melee Weapons", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_2791825817", + ["text"] = "#% reduced Enemy Stun Threshold with Melee Weapons", + ["type"] = "implicit", + }, + }, ["implicit.stat_2795267150"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_2795267150", - ["text"] = "#% chance to Blind Enemies on Hit with Melee Weapons", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_2795267150", + ["text"] = "#% chance to Blind Enemies on Hit with Melee Weapons", + ["type"] = "implicit", + }, + }, ["implicit.stat_2797971005"] = { ["Quiver"] = { - ["max"] = 8, - ["min"] = 6, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2797971005", - ["text"] = "Gain # Life per Enemy Hit with Attacks", - ["type"] = "implicit", - }, - }, + ["max"] = 8, + ["min"] = 6, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2797971005", + ["text"] = "Gain # Life per Enemy Hit with Attacks", + ["type"] = "implicit", + }, + }, ["implicit.stat_280731498"] = { ["1HAxe"] = { - ["max"] = 20, - ["min"] = 15, - }, + ["max"] = 20, + ["min"] = 15, + }, ["1HMace"] = { - ["max"] = 20, - ["min"] = 15, - }, + ["max"] = 20, + ["min"] = 15, + }, ["1HSword"] = { - ["max"] = 20, - ["min"] = 15, - }, + ["max"] = 20, + ["min"] = 15, + }, ["1HWeapon"] = { - ["max"] = 20, - ["min"] = 15, - }, + ["max"] = 20, + ["min"] = 15, + }, ["2HAxe"] = { - ["max"] = 20, - ["min"] = 15, - }, + ["max"] = 20, + ["min"] = 15, + }, ["2HMace"] = { - ["max"] = 20, - ["min"] = 15, - }, + ["max"] = 20, + ["min"] = 15, + }, ["2HSword"] = { - ["max"] = 20, - ["min"] = 15, - }, + ["max"] = 20, + ["min"] = 15, + }, ["2HWeapon"] = { - ["max"] = 20, - ["min"] = 15, - }, + ["max"] = 20, + ["min"] = 15, + }, ["Amulet"] = { - ["max"] = 8, - ["min"] = 5, - ["subType"] = "Talisman", - }, + ["max"] = 8, + ["min"] = 5, + ["subType"] = "Talisman", + }, ["Bow"] = { - ["max"] = 20, - ["min"] = 15, - }, + ["max"] = 20, + ["min"] = 15, + }, ["Claw"] = { - ["max"] = 20, - ["min"] = 15, - }, + ["max"] = 20, + ["min"] = 15, + }, ["Dagger"] = { - ["max"] = 20, - ["min"] = 15, - }, + ["max"] = 20, + ["min"] = 15, + }, ["Staff"] = { - ["max"] = 20, - ["min"] = 15, - }, + ["max"] = 20, + ["min"] = 15, + }, ["Wand"] = { - ["max"] = 20, - ["min"] = 15, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_280731498", - ["text"] = "#% increased Area of Effect", - ["type"] = "implicit", - }, - }, + ["max"] = 20, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_280731498", + ["text"] = "#% increased Area of Effect", + ["type"] = "implicit", + }, + }, ["implicit.stat_2843214518"] = { ["Amulet"] = { - ["max"] = 30, - ["min"] = 20, - ["subType"] = "Talisman", - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2843214518", - ["text"] = "#% increased Attack Damage", - ["type"] = "implicit", - }, - }, + ["max"] = 30, + ["min"] = 20, + ["subType"] = "Talisman", + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2843214518", + ["text"] = "#% increased Attack Damage", + ["type"] = "implicit", + }, + }, ["implicit.stat_2866361420"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_2866361420", - ["text"] = "#% increased Armour", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_2866361420", + ["text"] = "#% increased Armour", + ["type"] = "implicit", + }, + }, ["implicit.stat_2885144362"] = { ["1HAxe"] = { - ["max"] = 43.5, - ["min"] = 5, - }, + ["max"] = 43.5, + ["min"] = 5, + }, ["1HMace"] = { - ["max"] = 43.5, - ["min"] = 5, - }, + ["max"] = 43.5, + ["min"] = 5, + }, ["1HSword"] = { - ["max"] = 43.5, - ["min"] = 5, - }, + ["max"] = 43.5, + ["min"] = 5, + }, ["1HWeapon"] = { - ["max"] = 43.5, - ["min"] = 5, - }, + ["max"] = 43.5, + ["min"] = 5, + }, ["2HAxe"] = { - ["max"] = 43.5, - ["min"] = 5, - }, + ["max"] = 43.5, + ["min"] = 5, + }, ["2HMace"] = { - ["max"] = 43.5, - ["min"] = 5, - }, + ["max"] = 43.5, + ["min"] = 5, + }, ["2HSword"] = { - ["max"] = 43.5, - ["min"] = 5, - }, + ["max"] = 43.5, + ["min"] = 5, + }, ["2HWeapon"] = { - ["max"] = 43.5, - ["min"] = 5, - }, + ["max"] = 43.5, + ["min"] = 5, + }, ["Bow"] = { - ["max"] = 43.5, - ["min"] = 5, - }, + ["max"] = 43.5, + ["min"] = 5, + }, ["Claw"] = { - ["max"] = 43.5, - ["min"] = 5, - }, + ["max"] = 43.5, + ["min"] = 5, + }, ["Dagger"] = { - ["max"] = 43.5, - ["min"] = 5, - }, + ["max"] = 43.5, + ["min"] = 5, + }, ["Staff"] = { - ["max"] = 43.5, - ["min"] = 5, - }, + ["max"] = 43.5, + ["min"] = 5, + }, ["Wand"] = { - ["max"] = 43.5, - ["min"] = 5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2885144362", - ["text"] = "Adds # to # Lightning Damage to Spells and Attacks", - ["type"] = "implicit", - }, - }, + ["max"] = 43.5, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2885144362", + ["text"] = "Adds # to # Lightning Damage to Spells and Attacks", + ["type"] = "implicit", + }, + }, ["implicit.stat_2891184298"] = { ["1HAxe"] = { - ["max"] = 14, - ["min"] = 10, - }, + ["max"] = 14, + ["min"] = 10, + }, ["1HMace"] = { - ["max"] = 14, - ["min"] = 10, - }, + ["max"] = 14, + ["min"] = 10, + }, ["1HSword"] = { - ["max"] = 14, - ["min"] = 10, - }, + ["max"] = 14, + ["min"] = 10, + }, ["1HWeapon"] = { - ["max"] = 14, - ["min"] = 10, - }, + ["max"] = 14, + ["min"] = 10, + }, ["2HAxe"] = { - ["max"] = 14, - ["min"] = 10, - }, + ["max"] = 14, + ["min"] = 10, + }, ["2HMace"] = { - ["max"] = 14, - ["min"] = 10, - }, + ["max"] = 14, + ["min"] = 10, + }, ["2HSword"] = { - ["max"] = 14, - ["min"] = 10, - }, + ["max"] = 14, + ["min"] = 10, + }, ["2HWeapon"] = { - ["max"] = 14, - ["min"] = 10, - }, + ["max"] = 14, + ["min"] = 10, + }, ["Bow"] = { - ["max"] = 14, - ["min"] = 10, - }, + ["max"] = 14, + ["min"] = 10, + }, ["Claw"] = { - ["max"] = 14, - ["min"] = 10, - }, + ["max"] = 14, + ["min"] = 10, + }, ["Dagger"] = { - ["max"] = 14, - ["min"] = 10, - }, + ["max"] = 14, + ["min"] = 10, + }, ["Staff"] = { - ["max"] = 14, - ["min"] = 10, - }, + ["max"] = 14, + ["min"] = 10, + }, ["Wand"] = { - ["max"] = 14, - ["min"] = 10, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2891184298", - ["text"] = "#% increased Cast Speed", - ["type"] = "implicit", - }, - }, + ["max"] = 14, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2891184298", + ["text"] = "#% increased Cast Speed", + ["type"] = "implicit", + }, + }, ["implicit.stat_2901986750"] = { ["Amulet"] = { - ["max"] = 12, - ["min"] = 8, - }, + ["max"] = 12, + ["min"] = 8, + }, ["Boots"] = { - ["max"] = 25, - ["min"] = 4, - }, + ["max"] = 25, + ["min"] = 4, + }, ["Chest"] = { - ["max"] = 25, - ["min"] = 4, - }, + ["max"] = 25, + ["min"] = 4, + }, ["Gloves"] = { - ["max"] = 25, - ["min"] = 4, - }, + ["max"] = 25, + ["min"] = 4, + }, ["Helmet"] = { - ["max"] = 25, - ["min"] = 4, - }, + ["max"] = 25, + ["min"] = 4, + }, ["Ring"] = { - ["max"] = 10, - ["min"] = 8, - }, + ["max"] = 10, + ["min"] = 8, + }, ["Shield"] = { - ["max"] = 12, - ["min"] = 4, - ["subType"] = "Armour/Energy Shield", - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2901986750", - ["text"] = "+#% to all Elemental Resistances", - ["type"] = "implicit", - }, - }, + ["max"] = 12, + ["min"] = 4, + ["subType"] = "Armour/Energy Shield", + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2901986750", + ["text"] = "+#% to all Elemental Resistances", + ["type"] = "implicit", + }, + }, ["implicit.stat_2905515354"] = { ["Boots"] = { - ["max"] = 10, - ["min"] = 10, - ["subType"] = "Armour", - }, + ["max"] = 10, + ["min"] = 10, + ["subType"] = "Armour", + }, ["Chest"] = { - ["max"] = 10, - ["min"] = 10, - ["subType"] = "Armour", - }, + ["max"] = 10, + ["min"] = 10, + ["subType"] = "Armour", + }, ["Gloves"] = { - ["max"] = 10, - ["min"] = 10, - ["subType"] = "Armour", - }, + ["max"] = 10, + ["min"] = 10, + ["subType"] = "Armour", + }, ["Helmet"] = { - ["max"] = 10, - ["min"] = 10, - ["subType"] = "Armour", - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2905515354", - ["text"] = "You take #% of Damage from Blocked Hits", - ["type"] = "implicit", - }, - }, + ["max"] = 10, + ["min"] = 10, + ["subType"] = "Armour", + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2905515354", + ["text"] = "You take #% of Damage from Blocked Hits", + ["type"] = "implicit", + }, + }, ["implicit.stat_2912587137"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_2912587137", - ["text"] = "#% increased Stun Duration with Melee Weapons", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_2912587137", + ["text"] = "#% increased Stun Duration with Melee Weapons", + ["type"] = "implicit", + }, + }, ["implicit.stat_2915988346"] = { ["Boots"] = { - ["max"] = 12, - ["min"] = 8, - ["subType"] = "Armour/Evasion", - }, + ["max"] = 12, + ["min"] = 8, + ["subType"] = "Armour/Evasion", + }, ["Chest"] = { - ["max"] = 12, - ["min"] = 8, - ["subType"] = "Armour/Evasion", - }, + ["max"] = 12, + ["min"] = 8, + ["subType"] = "Armour/Evasion", + }, ["Gloves"] = { - ["max"] = 12, - ["min"] = 8, - ["subType"] = "Armour/Evasion", - }, + ["max"] = 12, + ["min"] = 8, + ["subType"] = "Armour/Evasion", + }, ["Helmet"] = { - ["max"] = 12, - ["min"] = 8, - ["subType"] = "Armour/Evasion", - }, + ["max"] = 12, + ["min"] = 8, + ["subType"] = "Armour/Evasion", + }, ["Ring"] = { - ["max"] = 16, - ["min"] = 12, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2915988346", - ["text"] = "+#% to Fire and Cold Resistances", - ["type"] = "implicit", - }, - }, + ["max"] = 16, + ["min"] = 12, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2915988346", + ["text"] = "+#% to Fire and Cold Resistances", + ["type"] = "implicit", + }, + }, ["implicit.stat_2923486259"] = { ["Boots"] = { - ["max"] = 17, - ["min"] = 13, - ["subType"] = "Evasion/Energy Shield", - }, + ["max"] = 17, + ["min"] = 13, + ["subType"] = "Evasion/Energy Shield", + }, ["Ring"] = { - ["max"] = 23, - ["min"] = 17, - }, + ["max"] = 23, + ["min"] = 17, + }, ["Shield"] = { - ["max"] = 19, - ["min"] = 11, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2923486259", - ["text"] = "+#% to Chaos Resistance", - ["type"] = "implicit", - }, - }, + ["max"] = 19, + ["min"] = 11, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2923486259", + ["text"] = "+#% to Chaos Resistance", + ["type"] = "implicit", + }, + }, ["implicit.stat_2974417149"] = { ["1HAxe"] = { - ["max"] = 40, - ["min"] = 8, - }, + ["max"] = 40, + ["min"] = 8, + }, ["1HMace"] = { - ["max"] = 40, - ["min"] = 8, - }, + ["max"] = 40, + ["min"] = 8, + }, ["1HSword"] = { - ["max"] = 40, - ["min"] = 8, - }, + ["max"] = 40, + ["min"] = 8, + }, ["1HWeapon"] = { - ["max"] = 40, - ["min"] = 8, - }, + ["max"] = 40, + ["min"] = 8, + }, ["2HAxe"] = { - ["max"] = 40, - ["min"] = 8, - }, + ["max"] = 40, + ["min"] = 8, + }, ["2HMace"] = { - ["max"] = 40, - ["min"] = 8, - }, + ["max"] = 40, + ["min"] = 8, + }, ["2HSword"] = { - ["max"] = 40, - ["min"] = 8, - }, + ["max"] = 40, + ["min"] = 8, + }, ["2HWeapon"] = { - ["max"] = 40, - ["min"] = 8, - }, + ["max"] = 40, + ["min"] = 8, + }, ["Amulet"] = { - ["max"] = 30, - ["min"] = 20, - ["subType"] = "Talisman", - }, + ["max"] = 30, + ["min"] = 20, + ["subType"] = "Talisman", + }, ["Boots"] = { - ["max"] = 16, - ["min"] = 3, - ["subType"] = "Energy Shield", - }, + ["max"] = 16, + ["min"] = 3, + ["subType"] = "Energy Shield", + }, ["Bow"] = { - ["max"] = 40, - ["min"] = 8, - }, + ["max"] = 40, + ["min"] = 8, + }, ["Chest"] = { - ["max"] = 16, - ["min"] = 3, - ["subType"] = "Energy Shield", - }, + ["max"] = 16, + ["min"] = 3, + ["subType"] = "Energy Shield", + }, ["Claw"] = { - ["max"] = 40, - ["min"] = 8, - }, + ["max"] = 40, + ["min"] = 8, + }, ["Dagger"] = { - ["max"] = 40, - ["min"] = 8, - }, + ["max"] = 40, + ["min"] = 8, + }, ["Gloves"] = { - ["max"] = 16, - ["min"] = 3, - ["subType"] = "Energy Shield", - }, + ["max"] = 16, + ["min"] = 3, + ["subType"] = "Energy Shield", + }, ["Helmet"] = { - ["max"] = 16, - ["min"] = 3, - ["subType"] = "Energy Shield", - }, + ["max"] = 16, + ["min"] = 3, + ["subType"] = "Energy Shield", + }, ["Shield"] = { - ["max"] = 15, - ["min"] = 5, - ["subType"] = "Energy Shield", - }, + ["max"] = 15, + ["min"] = 5, + ["subType"] = "Energy Shield", + }, ["Staff"] = { - ["max"] = 40, - ["min"] = 8, - }, + ["max"] = 40, + ["min"] = 8, + }, ["Wand"] = { - ["max"] = 40, - ["min"] = 8, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2974417149", - ["text"] = "#% increased Spell Damage", - ["type"] = "implicit", - }, - }, + ["max"] = 40, + ["min"] = 8, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2974417149", + ["text"] = "#% increased Spell Damage", + ["type"] = "implicit", + }, + }, ["implicit.stat_3032590688"] = { ["Quiver"] = { - ["max"] = 21, - ["min"] = 2.5, - }, + ["max"] = 21, + ["min"] = 2.5, + }, ["Ring"] = { - ["max"] = 9, - ["min"] = 2.5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3032590688", - ["text"] = "Adds # to # Physical Damage to Attacks", - ["type"] = "implicit", - }, - }, + ["max"] = 9, + ["min"] = 2.5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3032590688", + ["text"] = "Adds # to # Physical Damage to Attacks", + ["type"] = "implicit", + }, + }, ["implicit.stat_3091578504"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_3091578504", - ["text"] = "Minions have #% increased Attack and Cast Speed", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_3091578504", + ["text"] = "Minions have #% increased Attack and Cast Speed", + ["type"] = "implicit", + }, + }, ["implicit.stat_3141070085"] = { ["1HAxe"] = { - ["max"] = 40, - ["min"] = 10, - }, + ["max"] = 40, + ["min"] = 10, + }, ["1HMace"] = { - ["max"] = 40, - ["min"] = 10, - }, + ["max"] = 40, + ["min"] = 10, + }, ["1HSword"] = { - ["max"] = 40, - ["min"] = 10, - }, + ["max"] = 40, + ["min"] = 10, + }, ["1HWeapon"] = { - ["max"] = 40, - ["min"] = 10, - }, + ["max"] = 40, + ["min"] = 10, + }, ["2HAxe"] = { - ["max"] = 40, - ["min"] = 10, - }, + ["max"] = 40, + ["min"] = 10, + }, ["2HMace"] = { - ["max"] = 40, - ["min"] = 10, - }, + ["max"] = 40, + ["min"] = 10, + }, ["2HSword"] = { - ["max"] = 40, - ["min"] = 10, - }, + ["max"] = 40, + ["min"] = 10, + }, ["2HWeapon"] = { - ["max"] = 40, - ["min"] = 10, - }, + ["max"] = 40, + ["min"] = 10, + }, ["Bow"] = { - ["max"] = 40, - ["min"] = 10, - }, + ["max"] = 40, + ["min"] = 10, + }, ["Claw"] = { - ["max"] = 40, - ["min"] = 10, - }, + ["max"] = 40, + ["min"] = 10, + }, ["Dagger"] = { - ["max"] = 40, - ["min"] = 10, - }, + ["max"] = 40, + ["min"] = 10, + }, ["Ring"] = { - ["max"] = 25, - ["min"] = 15, - }, + ["max"] = 25, + ["min"] = 15, + }, ["Staff"] = { - ["max"] = 40, - ["min"] = 10, - }, + ["max"] = 40, + ["min"] = 10, + }, ["Wand"] = { - ["max"] = 40, - ["min"] = 10, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3141070085", - ["text"] = "#% increased Elemental Damage", - ["type"] = "implicit", - }, - }, + ["max"] = 40, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3141070085", + ["text"] = "#% increased Elemental Damage", + ["type"] = "implicit", + }, + }, ["implicit.stat_3143208761"] = { ["Amulet"] = { - ["max"] = 16, - ["min"] = 12, - ["subType"] = "Talisman", - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3143208761", - ["text"] = "#% increased Attributes", - ["type"] = "implicit", - }, - }, + ["max"] = 16, + ["min"] = 12, + ["subType"] = "Talisman", + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3143208761", + ["text"] = "#% increased Attributes", + ["type"] = "implicit", + }, + }, ["implicit.stat_3182714256"] = { ["Amulet"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Ring"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3182714256", - ["text"] = "+# Prefix Modifier allowed", - ["type"] = "implicit", - }, - }, + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3182714256", + ["text"] = "+# Prefix Modifier allowed", + ["type"] = "implicit", + }, + }, ["implicit.stat_321077055"] = { ["1HAxe"] = { - ["max"] = 165, - ["min"] = 57.5, - }, + ["max"] = 165, + ["min"] = 57.5, + }, ["1HMace"] = { - ["max"] = 165, - ["min"] = 57.5, - }, + ["max"] = 165, + ["min"] = 57.5, + }, ["1HSword"] = { - ["max"] = 165, - ["min"] = 57.5, - }, + ["max"] = 165, + ["min"] = 57.5, + }, ["1HWeapon"] = { - ["max"] = 165, - ["min"] = 57.5, - }, + ["max"] = 165, + ["min"] = 57.5, + }, ["2HAxe"] = { - ["max"] = 165, - ["min"] = 57.5, - }, + ["max"] = 165, + ["min"] = 57.5, + }, ["2HMace"] = { - ["max"] = 165, - ["min"] = 57.5, - }, + ["max"] = 165, + ["min"] = 57.5, + }, ["2HSword"] = { - ["max"] = 165, - ["min"] = 57.5, - }, + ["max"] = 165, + ["min"] = 57.5, + }, ["2HWeapon"] = { - ["max"] = 165, - ["min"] = 57.5, - }, + ["max"] = 165, + ["min"] = 57.5, + }, ["Bow"] = { - ["max"] = 165, - ["min"] = 57.5, - }, + ["max"] = 165, + ["min"] = 57.5, + }, ["Claw"] = { - ["max"] = 165, - ["min"] = 57.5, - }, + ["max"] = 165, + ["min"] = 57.5, + }, ["Dagger"] = { - ["max"] = 165, - ["min"] = 57.5, - }, + ["max"] = 165, + ["min"] = 57.5, + }, ["Staff"] = { - ["max"] = 165, - ["min"] = 57.5, - }, + ["max"] = 165, + ["min"] = 57.5, + }, ["Wand"] = { - ["max"] = 165, - ["min"] = 57.5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_321077055", - ["text"] = "Adds # to # Fire Damage", - ["type"] = "implicit", - }, - }, + ["max"] = 165, + ["min"] = 57.5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_321077055", + ["text"] = "Adds # to # Fire Damage", + ["type"] = "implicit", + }, + }, ["implicit.stat_3261801346"] = { ["Amulet"] = { - ["max"] = 30, - ["min"] = 20, - }, + ["max"] = 30, + ["min"] = 20, + }, ["Quiver"] = { - ["max"] = 40, - ["min"] = 30, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3261801346", - ["text"] = "+# to Dexterity", - ["type"] = "implicit", - }, - }, + ["max"] = 40, + ["min"] = 30, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3261801346", + ["text"] = "+# to Dexterity", + ["type"] = "implicit", + }, + }, ["implicit.stat_328541901"] = { ["Amulet"] = { - ["max"] = 30, - ["min"] = 20, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_328541901", - ["text"] = "+# to Intelligence", - ["type"] = "implicit", - }, - }, + ["max"] = 30, + ["min"] = 20, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_328541901", + ["text"] = "+# to Intelligence", + ["type"] = "implicit", + }, + }, ["implicit.stat_3291658075"] = { ["Amulet"] = { - ["max"] = 30, - ["min"] = 20, - ["subType"] = "Talisman", - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3291658075", - ["text"] = "#% increased Cold Damage", - ["type"] = "implicit", - }, - }, + ["max"] = 30, + ["min"] = 20, + ["subType"] = "Talisman", + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3291658075", + ["text"] = "#% increased Cold Damage", + ["type"] = "implicit", + }, + }, ["implicit.stat_3296814491"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_3296814491", - ["text"] = "#% increased Effect of Chill from Melee Weapons", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_3296814491", + ["text"] = "#% increased Effect of Chill from Melee Weapons", + ["type"] = "implicit", + }, + }, ["implicit.stat_3299347043"] = { ["Belt"] = { - ["max"] = 40, - ["min"] = 25, - }, + ["max"] = 40, + ["min"] = 25, + }, ["Boots"] = { - ["max"] = 40, - ["min"] = 10, - ["subType"] = "Armour", - }, + ["max"] = 40, + ["min"] = 10, + ["subType"] = "Armour", + }, ["Chest"] = { - ["max"] = 40, - ["min"] = 10, - ["subType"] = "Armour", - }, + ["max"] = 40, + ["min"] = 10, + ["subType"] = "Armour", + }, ["Gloves"] = { - ["max"] = 40, - ["min"] = 10, - }, + ["max"] = 40, + ["min"] = 10, + }, ["Helmet"] = { - ["max"] = 40, - ["min"] = 10, - ["subType"] = "Armour", - }, + ["max"] = 40, + ["min"] = 10, + ["subType"] = "Armour", + }, ["Ring"] = { - ["max"] = 30, - ["min"] = 20, - }, + ["max"] = 30, + ["min"] = 20, + }, ["Shield"] = { - ["max"] = 40, - ["min"] = 10, - ["subType"] = "Armour", - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3299347043", - ["text"] = "+# to maximum Life", - ["type"] = "implicit", - }, - }, + ["max"] = 40, + ["min"] = 10, + ["subType"] = "Armour", + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3299347043", + ["text"] = "+# to maximum Life", + ["type"] = "implicit", + }, + }, ["implicit.stat_3311869501"] = { ["Flask"] = { - ["max"] = 1, - ["min"] = 1, - ["subType"] = "Utility", - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3311869501", - ["text"] = "Creates Chilled Ground on Use", - ["type"] = "implicit", - }, - }, + ["max"] = 1, + ["min"] = 1, + ["subType"] = "Utility", + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3311869501", + ["text"] = "Creates Chilled Ground on Use", + ["type"] = "implicit", + }, + }, ["implicit.stat_3319896421"] = { ["Quiver"] = { - ["max"] = 15, - ["min"] = 10, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3319896421", - ["text"] = "Gain #% of Physical Damage as Extra Chaos Damage", - ["type"] = "implicit", - }, - }, + ["max"] = 15, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3319896421", + ["text"] = "Gain #% of Physical Damage as Extra Chaos Damage", + ["type"] = "implicit", + }, + }, ["implicit.stat_3325883026"] = { ["Amulet"] = { - ["max"] = 4, - ["min"] = 2, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3325883026", - ["text"] = "Regenerate # Life per second", - ["type"] = "implicit", - }, - }, + ["max"] = 4, + ["min"] = 2, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3325883026", + ["text"] = "Regenerate # Life per second", + ["type"] = "implicit", + }, + }, ["implicit.stat_3363758458"] = { ["Ring"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_3363758458", - ["text"] = "Cannot roll Modifiers of Non-Chaos Damage Types", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_3363758458", + ["text"] = "Cannot roll Modifiers of Non-Chaos Damage Types", + ["type"] = "implicit", + }, + }, ["implicit.stat_3372524247"] = { ["Amulet"] = { - ["max"] = 30, - ["min"] = 20, - }, + ["max"] = 30, + ["min"] = 20, + }, ["Ring"] = { - ["max"] = 30, - ["min"] = 20, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3372524247", - ["text"] = "+#% to Fire Resistance", - ["type"] = "implicit", - }, - }, + ["max"] = 30, + ["min"] = 20, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3372524247", + ["text"] = "+#% to Fire Resistance", + ["type"] = "implicit", + }, + }, ["implicit.stat_3374165039"] = { ["Quiver"] = { - ["max"] = 30, - ["min"] = 20, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3374165039", - ["text"] = "#% increased Totem Placement speed", - ["type"] = "implicit", - }, - }, + ["max"] = 30, + ["min"] = 20, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3374165039", + ["text"] = "#% increased Totem Placement speed", + ["type"] = "implicit", + }, + }, ["implicit.stat_3375859421"] = { ["Amulet"] = { - ["max"] = 50, - ["min"] = 50, - ["subType"] = "Talisman", - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3375859421", - ["text"] = "#% of Lightning Damage from Hits taken as Fire Damage", - ["type"] = "implicit", - }, - }, + ["max"] = 50, + ["min"] = 50, + ["subType"] = "Talisman", + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3375859421", + ["text"] = "#% of Lightning Damage from Hits taken as Fire Damage", + ["type"] = "implicit", + }, + }, ["implicit.stat_3407849389"] = { ["Ring"] = { - ["max"] = 50, - ["min"] = 50, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3407849389", - ["text"] = "#% reduced Effect of Curses on you", - ["type"] = "implicit", - }, - }, + ["max"] = 50, + ["min"] = 50, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3407849389", + ["text"] = "#% reduced Effect of Curses on you", + ["type"] = "implicit", + }, + }, ["implicit.stat_3423006863"] = { ["Quiver"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_3423006863", - ["text"] = "Arrows Pierce an additional Target", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_3423006863", + ["text"] = "Arrows Pierce an additional Target", + ["type"] = "implicit", + }, + }, ["implicit.stat_3441501978"] = { ["Boots"] = { - ["max"] = 12, - ["min"] = 8, - ["subType"] = "Armour/Energy Shield", - }, + ["max"] = 12, + ["min"] = 8, + ["subType"] = "Armour/Energy Shield", + }, ["Chest"] = { - ["max"] = 12, - ["min"] = 8, - ["subType"] = "Armour/Energy Shield", - }, + ["max"] = 12, + ["min"] = 8, + ["subType"] = "Armour/Energy Shield", + }, ["Gloves"] = { - ["max"] = 12, - ["min"] = 8, - ["subType"] = "Armour/Energy Shield", - }, + ["max"] = 12, + ["min"] = 8, + ["subType"] = "Armour/Energy Shield", + }, ["Helmet"] = { - ["max"] = 12, - ["min"] = 8, - ["subType"] = "Armour/Energy Shield", - }, + ["max"] = 12, + ["min"] = 8, + ["subType"] = "Armour/Energy Shield", + }, ["Ring"] = { - ["max"] = 16, - ["min"] = 12, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3441501978", - ["text"] = "+#% to Fire and Lightning Resistances", - ["type"] = "implicit", - }, - }, + ["max"] = 16, + ["min"] = 12, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3441501978", + ["text"] = "+#% to Fire and Lightning Resistances", + ["type"] = "implicit", + }, + }, ["implicit.stat_3489782002"] = { ["1HAxe"] = { - ["max"] = 165, - ["min"] = 66, - }, + ["max"] = 165, + ["min"] = 66, + }, ["1HMace"] = { - ["max"] = 165, - ["min"] = 66, - }, + ["max"] = 165, + ["min"] = 66, + }, ["1HSword"] = { - ["max"] = 165, - ["min"] = 66, - }, + ["max"] = 165, + ["min"] = 66, + }, ["1HWeapon"] = { - ["max"] = 165, - ["min"] = 66, - }, + ["max"] = 165, + ["min"] = 66, + }, ["2HAxe"] = { - ["max"] = 165, - ["min"] = 66, - }, + ["max"] = 165, + ["min"] = 66, + }, ["2HMace"] = { - ["max"] = 165, - ["min"] = 66, - }, + ["max"] = 165, + ["min"] = 66, + }, ["2HSword"] = { - ["max"] = 165, - ["min"] = 66, - }, + ["max"] = 165, + ["min"] = 66, + }, ["2HWeapon"] = { - ["max"] = 165, - ["min"] = 66, - }, + ["max"] = 165, + ["min"] = 66, + }, ["Belt"] = { - ["max"] = 80, - ["min"] = 9, - }, + ["max"] = 80, + ["min"] = 9, + }, ["Bow"] = { - ["max"] = 165, - ["min"] = 66, - }, + ["max"] = 165, + ["min"] = 66, + }, ["Claw"] = { - ["max"] = 165, - ["min"] = 66, - }, + ["max"] = 165, + ["min"] = 66, + }, ["Dagger"] = { - ["max"] = 165, - ["min"] = 66, - }, + ["max"] = 165, + ["min"] = 66, + }, ["Ring"] = { - ["max"] = 25, - ["min"] = 15, - }, + ["max"] = 25, + ["min"] = 15, + }, ["Staff"] = { - ["max"] = 165, - ["min"] = 66, - }, + ["max"] = 165, + ["min"] = 66, + }, ["Wand"] = { - ["max"] = 165, - ["min"] = 66, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3489782002", - ["text"] = "+# to maximum Energy Shield", - ["type"] = "implicit", - }, - }, + ["max"] = 165, + ["min"] = 66, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3489782002", + ["text"] = "+# to maximum Energy Shield", + ["type"] = "implicit", + }, + }, ["implicit.stat_3531280422"] = { ["1HAxe"] = { - ["max"] = 88, - ["min"] = 39, - }, + ["max"] = 88, + ["min"] = 39, + }, ["1HMace"] = { - ["max"] = 88, - ["min"] = 39, - }, + ["max"] = 88, + ["min"] = 39, + }, ["1HSword"] = { - ["max"] = 88, - ["min"] = 39, - }, + ["max"] = 88, + ["min"] = 39, + }, ["1HWeapon"] = { - ["max"] = 88, - ["min"] = 39, - }, + ["max"] = 88, + ["min"] = 39, + }, ["2HAxe"] = { - ["max"] = 88, - ["min"] = 39, - }, + ["max"] = 88, + ["min"] = 39, + }, ["2HMace"] = { - ["max"] = 88, - ["min"] = 39, - }, + ["max"] = 88, + ["min"] = 39, + }, ["2HSword"] = { - ["max"] = 88, - ["min"] = 39, - }, + ["max"] = 88, + ["min"] = 39, + }, ["2HWeapon"] = { - ["max"] = 88, - ["min"] = 39, - }, + ["max"] = 88, + ["min"] = 39, + }, ["Bow"] = { - ["max"] = 88, - ["min"] = 39, - }, + ["max"] = 88, + ["min"] = 39, + }, ["Claw"] = { - ["max"] = 88, - ["min"] = 39, - }, + ["max"] = 88, + ["min"] = 39, + }, ["Dagger"] = { - ["max"] = 88, - ["min"] = 39, - }, + ["max"] = 88, + ["min"] = 39, + }, ["Staff"] = { - ["max"] = 88, - ["min"] = 39, - }, + ["max"] = 88, + ["min"] = 39, + }, ["Wand"] = { - ["max"] = 88, - ["min"] = 39, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3531280422", - ["text"] = "Adds # to # Chaos Damage", - ["type"] = "implicit", - }, - }, + ["max"] = 88, + ["min"] = 39, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3531280422", + ["text"] = "Adds # to # Chaos Damage", + ["type"] = "implicit", + }, + }, ["implicit.stat_3556824919"] = { ["1HAxe"] = { - ["max"] = 50, - ["min"] = 15, - }, + ["max"] = 50, + ["min"] = 15, + }, ["1HMace"] = { - ["max"] = 50, - ["min"] = 15, - }, + ["max"] = 50, + ["min"] = 15, + }, ["1HSword"] = { - ["max"] = 50, - ["min"] = 15, - }, + ["max"] = 50, + ["min"] = 15, + }, ["1HWeapon"] = { - ["max"] = 50, - ["min"] = 15, - }, + ["max"] = 50, + ["min"] = 15, + }, ["2HAxe"] = { - ["max"] = 50, - ["min"] = 15, - }, + ["max"] = 50, + ["min"] = 15, + }, ["2HMace"] = { - ["max"] = 50, - ["min"] = 15, - }, + ["max"] = 50, + ["min"] = 15, + }, ["2HSword"] = { - ["max"] = 50, - ["min"] = 15, - }, + ["max"] = 50, + ["min"] = 15, + }, ["2HWeapon"] = { - ["max"] = 50, - ["min"] = 15, - }, + ["max"] = 50, + ["min"] = 15, + }, ["Amulet"] = { - ["max"] = 36, - ["min"] = 24, - ["subType"] = "Talisman", - }, + ["max"] = 36, + ["min"] = 24, + ["subType"] = "Talisman", + }, ["Bow"] = { - ["max"] = 50, - ["min"] = 15, - }, + ["max"] = 50, + ["min"] = 15, + }, ["Claw"] = { - ["max"] = 50, - ["min"] = 15, - }, + ["max"] = 50, + ["min"] = 15, + }, ["Dagger"] = { - ["max"] = 50, - ["min"] = 15, - }, + ["max"] = 50, + ["min"] = 15, + }, ["Staff"] = { - ["max"] = 50, - ["min"] = 15, - }, + ["max"] = 50, + ["min"] = 15, + }, ["Wand"] = { - ["max"] = 50, - ["min"] = 15, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3556824919", - ["text"] = "+#% to Global Critical Strike Multiplier", - ["type"] = "implicit", - }, - }, + ["max"] = 50, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3556824919", + ["text"] = "+#% to Global Critical Strike Multiplier", + ["type"] = "implicit", + }, + }, ["implicit.stat_3574189159"] = { ["1HAxe"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["1HMace"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["1HSword"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["1HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["2HAxe"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["2HMace"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["2HSword"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["2HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Bow"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Claw"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Dagger"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Staff"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Wand"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_3574189159", - ["text"] = "Elemental Overload", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_3574189159", + ["text"] = "Elemental Overload", + ["type"] = "implicit", + }, + }, ["implicit.stat_3593843976"] = { ["1HAxe"] = { - ["max"] = 2, - ["min"] = 1.6, - }, + ["max"] = 2, + ["min"] = 1.6, + }, ["1HMace"] = { - ["max"] = 2, - ["min"] = 1.6, - }, + ["max"] = 2, + ["min"] = 1.6, + }, ["1HSword"] = { - ["max"] = 2, - ["min"] = 1.6, - }, + ["max"] = 2, + ["min"] = 1.6, + }, ["1HWeapon"] = { - ["max"] = 2, - ["min"] = 1.6, - }, + ["max"] = 2, + ["min"] = 1.6, + }, ["2HAxe"] = { - ["max"] = 2, - ["min"] = 1.6, - }, + ["max"] = 2, + ["min"] = 1.6, + }, ["2HMace"] = { - ["max"] = 2, - ["min"] = 1.6, - }, + ["max"] = 2, + ["min"] = 1.6, + }, ["2HSword"] = { - ["max"] = 2, - ["min"] = 1.6, - }, + ["max"] = 2, + ["min"] = 1.6, + }, ["2HWeapon"] = { - ["max"] = 2, - ["min"] = 1.6, - }, + ["max"] = 2, + ["min"] = 1.6, + }, ["Bow"] = { - ["max"] = 2, - ["min"] = 1.6, - }, + ["max"] = 2, + ["min"] = 1.6, + }, ["Claw"] = { - ["max"] = 2, - ["min"] = 1.6, - }, + ["max"] = 2, + ["min"] = 1.6, + }, ["Dagger"] = { - ["max"] = 2, - ["min"] = 1.6, - }, + ["max"] = 2, + ["min"] = 1.6, + }, ["Staff"] = { - ["max"] = 2, - ["min"] = 1.6, - }, + ["max"] = 2, + ["min"] = 1.6, + }, ["Wand"] = { - ["max"] = 2, - ["min"] = 1.6, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3593843976", - ["text"] = "#% of Physical Attack Damage Leeched as Life", - ["type"] = "implicit", - }, - }, + ["max"] = 2, + ["min"] = 1.6, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3593843976", + ["text"] = "#% of Physical Attack Damage Leeched as Life", + ["type"] = "implicit", + }, + }, ["implicit.stat_361491825"] = { ["Ring"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_361491825", - ["text"] = "Cannot roll Modifiers of Non-Physical Damage Types", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_361491825", + ["text"] = "Cannot roll Modifiers of Non-Physical Damage Types", + ["type"] = "implicit", + }, + }, ["implicit.stat_3660450649"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_3660450649", - ["text"] = "#% increased Damage with Bleeding from Melee Weapons", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_3660450649", + ["text"] = "#% increased Damage with Bleeding from Melee Weapons", + ["type"] = "implicit", + }, + }, ["implicit.stat_3676141501"] = { ["Ring"] = { - ["max"] = 2, - ["min"] = 2, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3676141501", - ["text"] = "+#% to maximum Cold Resistance", - ["type"] = "implicit", - }, - }, + ["max"] = 2, + ["min"] = 2, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3676141501", + ["text"] = "+#% to maximum Cold Resistance", + ["type"] = "implicit", + }, + }, ["implicit.stat_3678828098"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_3678828098", - ["text"] = "#% increased Critical Strike Chance with Melee Weapons", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_3678828098", + ["text"] = "#% increased Critical Strike Chance with Melee Weapons", + ["type"] = "implicit", + }, + }, ["implicit.stat_3680664274"] = { ["Shield"] = { - ["max"] = 5, - ["min"] = 3, - ["subType"] = "Evasion/Energy Shield", - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3680664274", - ["text"] = "+#% chance to Suppress Spell Damage", - ["type"] = "implicit", - }, - }, + ["max"] = 5, + ["min"] = 3, + ["subType"] = "Evasion/Energy Shield", + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3680664274", + ["text"] = "+#% chance to Suppress Spell Damage", + ["type"] = "implicit", + }, + }, ["implicit.stat_369183568"] = { ["Boots"] = { - ["max"] = 180, - ["min"] = 60, - ["subType"] = "Armour/Evasion", - }, + ["max"] = 180, + ["min"] = 60, + ["subType"] = "Armour/Evasion", + }, ["Chest"] = { - ["max"] = 180, - ["min"] = 60, - ["subType"] = "Armour/Evasion", - }, + ["max"] = 180, + ["min"] = 60, + ["subType"] = "Armour/Evasion", + }, ["Gloves"] = { - ["max"] = 180, - ["min"] = 60, - ["subType"] = "Armour/Evasion", - }, + ["max"] = 180, + ["min"] = 60, + ["subType"] = "Armour/Evasion", + }, ["Helmet"] = { - ["max"] = 180, - ["min"] = 60, - ["subType"] = "Armour/Evasion", - }, + ["max"] = 180, + ["min"] = 60, + ["subType"] = "Armour/Evasion", + }, ["Shield"] = { - ["max"] = 180, - ["min"] = 60, - ["subType"] = "Armour/Evasion", - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_369183568", - ["text"] = "#% increased Block Recovery", - ["type"] = "implicit", - }, - }, + ["max"] = 180, + ["min"] = 60, + ["subType"] = "Armour/Evasion", + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_369183568", + ["text"] = "#% increased Block Recovery", + ["type"] = "implicit", + }, + }, ["implicit.stat_3739863694"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_3739863694", - ["text"] = "#% chance to Impale Enemies on Hit with Attacks", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_3739863694", + ["text"] = "#% chance to Impale Enemies on Hit with Attacks", + ["type"] = "implicit", + }, + }, ["implicit.stat_3753703249"] = { ["Amulet"] = { - ["max"] = 12, - ["min"] = 6, - ["subType"] = "Talisman", - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3753703249", - ["text"] = "Gain #% of Physical Damage as Extra Damage of a random Element", - ["type"] = "implicit", - }, - }, + ["max"] = 12, + ["min"] = 6, + ["subType"] = "Talisman", + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3753703249", + ["text"] = "Gain #% of Physical Damage as Extra Damage of a random Element", + ["type"] = "implicit", + }, + }, ["implicit.stat_3759663284"] = { ["Quiver"] = { - ["max"] = 30, - ["min"] = 20, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3759663284", - ["text"] = "#% increased Projectile Speed", - ["type"] = "implicit", - }, - }, + ["max"] = 30, + ["min"] = 20, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3759663284", + ["text"] = "#% increased Projectile Speed", + ["type"] = "implicit", + }, + }, ["implicit.stat_3771516363"] = { ["Amulet"] = { - ["max"] = 6, - ["min"] = 4, - ["subType"] = "Talisman", - }, + ["max"] = 6, + ["min"] = 4, + ["subType"] = "Talisman", + }, ["Ring"] = { - ["max"] = 3, - ["min"] = 3, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3771516363", - ["text"] = "#% additional Physical Damage Reduction", - ["type"] = "implicit", - }, - }, + ["max"] = 3, + ["min"] = 3, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3771516363", + ["text"] = "#% additional Physical Damage Reduction", + ["type"] = "implicit", + }, + }, ["implicit.stat_387439868"] = { ["1HAxe"] = { - ["max"] = 30, - ["min"] = 20, - }, + ["max"] = 30, + ["min"] = 20, + }, ["1HMace"] = { - ["max"] = 30, - ["min"] = 20, - }, + ["max"] = 30, + ["min"] = 20, + }, ["1HSword"] = { - ["max"] = 30, - ["min"] = 20, - }, + ["max"] = 30, + ["min"] = 20, + }, ["1HWeapon"] = { - ["max"] = 30, - ["min"] = 20, - }, + ["max"] = 30, + ["min"] = 20, + }, ["2HAxe"] = { - ["max"] = 30, - ["min"] = 20, - }, + ["max"] = 30, + ["min"] = 20, + }, ["2HMace"] = { - ["max"] = 30, - ["min"] = 20, - }, + ["max"] = 30, + ["min"] = 20, + }, ["2HSword"] = { - ["max"] = 30, - ["min"] = 20, - }, + ["max"] = 30, + ["min"] = 20, + }, ["2HWeapon"] = { - ["max"] = 30, - ["min"] = 20, - }, + ["max"] = 30, + ["min"] = 20, + }, ["Bow"] = { - ["max"] = 30, - ["min"] = 20, - }, + ["max"] = 30, + ["min"] = 20, + }, ["Claw"] = { - ["max"] = 30, - ["min"] = 20, - }, + ["max"] = 30, + ["min"] = 20, + }, ["Dagger"] = { - ["max"] = 30, - ["min"] = 20, - }, + ["max"] = 30, + ["min"] = 20, + }, ["Quiver"] = { - ["max"] = 30, - ["min"] = 20, - }, + ["max"] = 30, + ["min"] = 20, + }, ["Staff"] = { - ["max"] = 30, - ["min"] = 20, - }, + ["max"] = 30, + ["min"] = 20, + }, ["Wand"] = { - ["max"] = 30, - ["min"] = 20, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_387439868", - ["text"] = "#% increased Elemental Damage with Attack Skills", - ["type"] = "implicit", - }, - }, + ["max"] = 30, + ["min"] = 20, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_387439868", + ["text"] = "#% increased Elemental Damage with Attack Skills", + ["type"] = "implicit", + }, + }, ["implicit.stat_3917489142"] = { ["Amulet"] = { - ["max"] = 20, - ["min"] = 12, - }, + ["max"] = 20, + ["min"] = 12, + }, ["Belt"] = { - ["max"] = 30, - ["min"] = 20, - }, + ["max"] = 30, + ["min"] = 20, + }, ["Ring"] = { - ["max"] = 15, - ["min"] = 6, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3917489142", - ["text"] = "#% increased Rarity of Items found", - ["type"] = "implicit", - }, - }, + ["max"] = 15, + ["min"] = 6, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3917489142", + ["text"] = "#% increased Rarity of Items found", + ["type"] = "implicit", + }, + }, ["implicit.stat_3935936274"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_3935936274", - ["text"] = "#% increased Damage with Ignite from Melee Weapons", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_3935936274", + ["text"] = "#% increased Damage with Ignite from Melee Weapons", + ["type"] = "implicit", + }, + }, ["implicit.stat_3962278098"] = { ["Amulet"] = { - ["max"] = 30, - ["min"] = 20, - ["subType"] = "Talisman", - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3962278098", - ["text"] = "#% increased Fire Damage", - ["type"] = "implicit", - }, - }, + ["max"] = 30, + ["min"] = 20, + ["subType"] = "Talisman", + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3962278098", + ["text"] = "#% increased Fire Damage", + ["type"] = "implicit", + }, + }, ["implicit.stat_3964634628"] = { ["1HAxe"] = { - ["max"] = 47.5, - ["min"] = 2, - }, + ["max"] = 47.5, + ["min"] = 2, + }, ["1HMace"] = { - ["max"] = 47.5, - ["min"] = 2, - }, + ["max"] = 47.5, + ["min"] = 2, + }, ["1HSword"] = { - ["max"] = 47.5, - ["min"] = 2, - }, + ["max"] = 47.5, + ["min"] = 2, + }, ["1HWeapon"] = { - ["max"] = 47.5, - ["min"] = 2, - }, + ["max"] = 47.5, + ["min"] = 2, + }, ["2HAxe"] = { - ["max"] = 47.5, - ["min"] = 2, - }, + ["max"] = 47.5, + ["min"] = 2, + }, ["2HMace"] = { - ["max"] = 47.5, - ["min"] = 2, - }, + ["max"] = 47.5, + ["min"] = 2, + }, ["2HSword"] = { - ["max"] = 47.5, - ["min"] = 2, - }, + ["max"] = 47.5, + ["min"] = 2, + }, ["2HWeapon"] = { - ["max"] = 47.5, - ["min"] = 2, - }, + ["max"] = 47.5, + ["min"] = 2, + }, ["Bow"] = { - ["max"] = 47.5, - ["min"] = 2, - }, + ["max"] = 47.5, + ["min"] = 2, + }, ["Claw"] = { - ["max"] = 47.5, - ["min"] = 2, - }, + ["max"] = 47.5, + ["min"] = 2, + }, ["Dagger"] = { - ["max"] = 47.5, - ["min"] = 2, - }, + ["max"] = 47.5, + ["min"] = 2, + }, ["Staff"] = { - ["max"] = 47.5, - ["min"] = 2, - }, + ["max"] = 47.5, + ["min"] = 2, + }, ["Wand"] = { - ["max"] = 47.5, - ["min"] = 2, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3964634628", - ["text"] = "Adds # to # Fire Damage to Spells and Attacks", - ["type"] = "implicit", - }, - }, + ["max"] = 47.5, + ["min"] = 2, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3964634628", + ["text"] = "Adds # to # Fire Damage to Spells and Attacks", + ["type"] = "implicit", + }, + }, ["implicit.stat_3988349707"] = { ["Amulet"] = { - ["max"] = 18, - ["min"] = 12, - ["subType"] = "Talisman", - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3988349707", - ["text"] = "+#% to Damage over Time Multiplier", - ["type"] = "implicit", - }, - }, + ["max"] = 18, + ["min"] = 12, + ["subType"] = "Talisman", + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3988349707", + ["text"] = "+#% to Damage over Time Multiplier", + ["type"] = "implicit", + }, + }, ["implicit.stat_4040327616"] = { ["Ring"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_4040327616", - ["text"] = "Cannot roll Modifiers of Non-Fire Damage Types", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_4040327616", + ["text"] = "Cannot roll Modifiers of Non-Fire Damage Types", + ["type"] = "implicit", + }, + }, ["implicit.stat_4067062424"] = { ["Quiver"] = { - ["max"] = 2.5, - ["min"] = 2.5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_4067062424", - ["text"] = "Adds # to # Cold Damage to Attacks", - ["type"] = "implicit", - }, - }, + ["max"] = 2.5, + ["min"] = 2.5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_4067062424", + ["text"] = "Adds # to # Cold Damage to Attacks", + ["type"] = "implicit", + }, + }, ["implicit.stat_4077843608"] = { ["Amulet"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Belt"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Quiver"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Ring"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_4077843608", - ["text"] = "Has 1 Socket", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_4077843608", + ["text"] = "Has 1 Socket", + ["type"] = "implicit", + }, + }, ["implicit.stat_4080418644"] = { ["Amulet"] = { - ["max"] = 30, - ["min"] = 20, - }, + ["max"] = 30, + ["min"] = 20, + }, ["Belt"] = { - ["max"] = 35, - ["min"] = 25, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_4080418644", - ["text"] = "+# to Strength", - ["type"] = "implicit", - }, - }, + ["max"] = 35, + ["min"] = 25, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_4080418644", + ["text"] = "+# to Strength", + ["type"] = "implicit", + }, + }, ["implicit.stat_4082780964"] = { ["1HAxe"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["1HMace"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["1HSword"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["1HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["2HAxe"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["2HMace"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["2HSword"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["2HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Bow"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Claw"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Dagger"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Staff"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Wand"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_4082780964", - ["text"] = "Cannot roll Caster Modifiers", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_4082780964", + ["text"] = "Cannot roll Caster Modifiers", + ["type"] = "implicit", + }, + }, ["implicit.stat_4095671657"] = { ["Ring"] = { - ["max"] = 2, - ["min"] = 2, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_4095671657", - ["text"] = "+#% to maximum Fire Resistance", - ["type"] = "implicit", - }, - }, + ["max"] = 2, + ["min"] = 2, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_4095671657", + ["text"] = "+#% to maximum Fire Resistance", + ["type"] = "implicit", + }, + }, ["implicit.stat_4138979329"] = { ["1HAxe"] = { - ["max"] = 1, - ["min"] = 1, - ["subType"] = "Warstaff", - }, + ["max"] = 1, + ["min"] = 1, + ["subType"] = "Warstaff", + }, ["1HMace"] = { - ["max"] = 1, - ["min"] = 1, - ["subType"] = "Warstaff", - }, + ["max"] = 1, + ["min"] = 1, + ["subType"] = "Warstaff", + }, ["1HSword"] = { - ["max"] = 1, - ["min"] = 1, - ["subType"] = "Warstaff", - }, + ["max"] = 1, + ["min"] = 1, + ["subType"] = "Warstaff", + }, ["1HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - ["subType"] = "Warstaff", - }, + ["max"] = 1, + ["min"] = 1, + ["subType"] = "Warstaff", + }, ["2HAxe"] = { - ["max"] = 1, - ["min"] = 1, - ["subType"] = "Warstaff", - }, + ["max"] = 1, + ["min"] = 1, + ["subType"] = "Warstaff", + }, ["2HMace"] = { - ["max"] = 1, - ["min"] = 1, - ["subType"] = "Warstaff", - }, + ["max"] = 1, + ["min"] = 1, + ["subType"] = "Warstaff", + }, ["2HSword"] = { - ["max"] = 1, - ["min"] = 1, - ["subType"] = "Warstaff", - }, + ["max"] = 1, + ["min"] = 1, + ["subType"] = "Warstaff", + }, ["2HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - ["subType"] = "Warstaff", - }, + ["max"] = 1, + ["min"] = 1, + ["subType"] = "Warstaff", + }, ["Bow"] = { - ["max"] = 1, - ["min"] = 1, - ["subType"] = "Warstaff", - }, + ["max"] = 1, + ["min"] = 1, + ["subType"] = "Warstaff", + }, ["Claw"] = { - ["max"] = 1, - ["min"] = 1, - ["subType"] = "Warstaff", - }, + ["max"] = 1, + ["min"] = 1, + ["subType"] = "Warstaff", + }, ["Dagger"] = { - ["max"] = 1, - ["min"] = 1, - ["subType"] = "Warstaff", - }, + ["max"] = 1, + ["min"] = 1, + ["subType"] = "Warstaff", + }, ["Staff"] = { - ["max"] = 1, - ["min"] = 1, - ["subType"] = "Warstaff", - }, + ["max"] = 1, + ["min"] = 1, + ["subType"] = "Warstaff", + }, ["Wand"] = { - ["max"] = 1, - ["min"] = 1, - ["subType"] = "Warstaff", - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_4138979329", - ["text"] = "+# to Maximum Power Charges and Maximum Endurance Charges", - ["type"] = "implicit", - }, - }, + ["max"] = 1, + ["min"] = 1, + ["subType"] = "Warstaff", + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_4138979329", + ["text"] = "+# to Maximum Power Charges and Maximum Endurance Charges", + ["type"] = "implicit", + }, + }, ["implicit.stat_4139229725"] = { ["Boots"] = { - ["max"] = 3.5, - ["min"] = 3, - ["subType"] = "Evasion", - }, + ["max"] = 3.5, + ["min"] = 3, + ["subType"] = "Evasion", + }, ["Chest"] = { - ["max"] = 3.5, - ["min"] = 3, - ["subType"] = "Evasion", - }, + ["max"] = 3.5, + ["min"] = 3, + ["subType"] = "Evasion", + }, ["Gloves"] = { - ["max"] = 3.5, - ["min"] = 3, - ["subType"] = "Evasion", - }, + ["max"] = 3.5, + ["min"] = 3, + ["subType"] = "Evasion", + }, ["Helmet"] = { - ["max"] = 3.5, - ["min"] = 3, - ["subType"] = "Evasion", - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_4139229725", - ["text"] = "# to # Added Attack Lightning Damage per 200 Accuracy Rating", - ["type"] = "implicit", - }, - }, + ["max"] = 3.5, + ["min"] = 3, + ["subType"] = "Evasion", + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_4139229725", + ["text"] = "# to # Added Attack Lightning Damage per 200 Accuracy Rating", + ["type"] = "implicit", + }, + }, ["implicit.stat_4154259475"] = { ["Boots"] = { - ["max"] = 2, - ["min"] = 1, - ["subType"] = "Armour/Energy Shield", - }, + ["max"] = 2, + ["min"] = 1, + ["subType"] = "Armour/Energy Shield", + }, ["Chest"] = { - ["max"] = 2, - ["min"] = 1, - ["subType"] = "Armour/Energy Shield", - }, + ["max"] = 2, + ["min"] = 1, + ["subType"] = "Armour/Energy Shield", + }, ["Gloves"] = { - ["max"] = 2, - ["min"] = 1, - ["subType"] = "Armour/Energy Shield", - }, + ["max"] = 2, + ["min"] = 1, + ["subType"] = "Armour/Energy Shield", + }, ["Helmet"] = { - ["max"] = 2, - ["min"] = 1, - ["subType"] = "Armour/Energy Shield", - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_4154259475", - ["text"] = "+# to Level of Socketed Support Gems", - ["type"] = "implicit", - }, - }, + ["max"] = 2, + ["min"] = 1, + ["subType"] = "Armour/Energy Shield", + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_4154259475", + ["text"] = "+# to Level of Socketed Support Gems", + ["type"] = "implicit", + }, + }, ["implicit.stat_4180346416"] = { ["Boots"] = { - ["max"] = 1, - ["min"] = 1, - ["subType"] = "Armour/Evasion/Energy Shield", - }, + ["max"] = 1, + ["min"] = 1, + ["subType"] = "Armour/Evasion/Energy Shield", + }, ["Chest"] = { - ["max"] = 1, - ["min"] = 1, - ["subType"] = "Armour/Evasion/Energy Shield", - }, + ["max"] = 1, + ["min"] = 1, + ["subType"] = "Armour/Evasion/Energy Shield", + }, ["Gloves"] = { - ["max"] = 1, - ["min"] = 1, - ["subType"] = "Armour/Evasion/Energy Shield", - }, + ["max"] = 1, + ["min"] = 1, + ["subType"] = "Armour/Evasion/Energy Shield", + }, ["Helmet"] = { - ["max"] = 1, - ["min"] = 1, - ["subType"] = "Armour/Evasion/Energy Shield", - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_4180346416", - ["text"] = "+# to Level of all Vaal Skill Gems", - ["type"] = "implicit", - }, - }, + ["max"] = 1, + ["min"] = 1, + ["subType"] = "Armour/Evasion/Energy Shield", + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_4180346416", + ["text"] = "+# to Level of all Vaal Skill Gems", + ["type"] = "implicit", + }, + }, ["implicit.stat_4206255461"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_4206255461", - ["text"] = "#% chance to Ignite with Melee Weapons", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_4206255461", + ["text"] = "#% chance to Ignite with Melee Weapons", + ["type"] = "implicit", + }, + }, ["implicit.stat_4215265273"] = { ["Ring"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_4215265273", - ["text"] = "Cannot roll Modifiers of Non-Cold Damage Types", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_4215265273", + ["text"] = "Cannot roll Modifiers of Non-Cold Damage Types", + ["type"] = "implicit", + }, + }, ["implicit.stat_4220027924"] = { ["Ring"] = { - ["max"] = 30, - ["min"] = 20, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_4220027924", - ["text"] = "+#% to Cold Resistance", - ["type"] = "implicit", - }, - }, + ["max"] = 30, + ["min"] = 20, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_4220027924", + ["text"] = "+#% to Cold Resistance", + ["type"] = "implicit", + }, + }, ["implicit.stat_4251717817"] = { ["1HAxe"] = { - ["max"] = 30, - ["min"] = 30, - }, + ["max"] = 30, + ["min"] = 30, + }, ["1HMace"] = { - ["max"] = 30, - ["min"] = 30, - }, + ["max"] = 30, + ["min"] = 30, + }, ["1HSword"] = { - ["max"] = 30, - ["min"] = 30, - }, + ["max"] = 30, + ["min"] = 30, + }, ["1HWeapon"] = { - ["max"] = 30, - ["min"] = 30, - }, + ["max"] = 30, + ["min"] = 30, + }, ["2HAxe"] = { - ["max"] = 30, - ["min"] = 30, - }, + ["max"] = 30, + ["min"] = 30, + }, ["2HMace"] = { - ["max"] = 30, - ["min"] = 30, - }, + ["max"] = 30, + ["min"] = 30, + }, ["2HSword"] = { - ["max"] = 30, - ["min"] = 30, - }, + ["max"] = 30, + ["min"] = 30, + }, ["2HWeapon"] = { - ["max"] = 30, - ["min"] = 30, - }, + ["max"] = 30, + ["min"] = 30, + }, ["Bow"] = { - ["max"] = 30, - ["min"] = 30, - }, + ["max"] = 30, + ["min"] = 30, + }, ["Claw"] = { - ["max"] = 30, - ["min"] = 30, - }, + ["max"] = 30, + ["min"] = 30, + }, ["Dagger"] = { - ["max"] = 30, - ["min"] = 30, - }, + ["max"] = 30, + ["min"] = 30, + }, ["Staff"] = { - ["max"] = 30, - ["min"] = 30, - }, + ["max"] = 30, + ["min"] = 30, + }, ["Wand"] = { - ["max"] = 30, - ["min"] = 30, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_4251717817", - ["text"] = "#% increased Area Damage", - ["type"] = "implicit", - }, - }, + ["max"] = 30, + ["min"] = 30, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_4251717817", + ["text"] = "#% increased Area Damage", + ["type"] = "implicit", + }, + }, ["implicit.stat_4277795662"] = { ["Boots"] = { - ["max"] = 12, - ["min"] = 8, - ["subType"] = "Evasion/Energy Shield", - }, + ["max"] = 12, + ["min"] = 8, + ["subType"] = "Evasion/Energy Shield", + }, ["Ring"] = { - ["max"] = 16, - ["min"] = 12, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_4277795662", - ["text"] = "+#% to Cold and Lightning Resistances", - ["type"] = "implicit", - }, - }, + ["max"] = 16, + ["min"] = 12, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_4277795662", + ["text"] = "+#% to Cold and Lightning Resistances", + ["type"] = "implicit", + }, + }, ["implicit.stat_4279053153"] = { ["Ring"] = { - ["max"] = 30, - ["min"] = 30, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_4279053153", - ["text"] = "Right ring slot: #% increased Effect of Curses on you", - ["type"] = "implicit", - }, - }, + ["max"] = 30, + ["min"] = 30, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_4279053153", + ["text"] = "Right ring slot: #% increased Effect of Curses on you", + ["type"] = "implicit", + }, + }, ["implicit.stat_4282426229"] = { ["1HAxe"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["1HMace"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["1HSword"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["1HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["2HAxe"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["2HMace"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["2HSword"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["2HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Bow"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Claw"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Dagger"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Staff"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Wand"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_4282426229", - ["text"] = "Gain an Endurance, Frenzy or Power Charge every 6 seconds", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_4282426229", + ["text"] = "Gain an Endurance, Frenzy or Power Charge every 6 seconds", + ["type"] = "implicit", + }, + }, ["implicit.stat_450178102"] = { ["Ring"] = { - ["max"] = 25, - ["min"] = 25, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_450178102", - ["text"] = "Left ring slot: #% of Lightning Damage from Hits taken as Cold Damage", - ["type"] = "implicit", - }, - }, + ["max"] = 25, + ["min"] = 25, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_450178102", + ["text"] = "Left ring slot: #% of Lightning Damage from Hits taken as Cold Damage", + ["type"] = "implicit", + }, + }, ["implicit.stat_503138266"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_503138266", - ["text"] = "#% increased Elemental Damage with Melee Weapons", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_503138266", + ["text"] = "#% increased Elemental Damage with Melee Weapons", + ["type"] = "implicit", + }, + }, ["implicit.stat_52068049"] = { ["Belt"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_52068049", - ["text"] = "Can be Anointed", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_52068049", + ["text"] = "Can be Anointed", + ["type"] = "implicit", + }, + }, ["implicit.stat_524797741"] = { ["Boots"] = { - ["max"] = 2, - ["min"] = 1, - ["subType"] = "Armour/Energy Shield", - }, + ["max"] = 2, + ["min"] = 1, + ["subType"] = "Armour/Energy Shield", + }, ["Chest"] = { - ["max"] = 2, - ["min"] = 1, - ["subType"] = "Armour/Energy Shield", - }, + ["max"] = 2, + ["min"] = 1, + ["subType"] = "Armour/Energy Shield", + }, ["Gloves"] = { - ["max"] = 2, - ["min"] = 1, - ["subType"] = "Armour/Energy Shield", - }, + ["max"] = 2, + ["min"] = 1, + ["subType"] = "Armour/Energy Shield", + }, ["Helmet"] = { - ["max"] = 2, - ["min"] = 1, - ["subType"] = "Armour/Energy Shield", - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_524797741", - ["text"] = "+# to Level of Socketed Skill Gems", - ["type"] = "implicit", - }, - }, + ["max"] = 2, + ["min"] = 1, + ["subType"] = "Armour/Energy Shield", + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_524797741", + ["text"] = "+# to Level of Socketed Skill Gems", + ["type"] = "implicit", + }, + }, ["implicit.stat_532463031"] = { ["Amulet"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Ring"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_532463031", - ["text"] = "Implicit Modifiers Cannot Be Changed", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_532463031", + ["text"] = "Implicit Modifiers Cannot Be Changed", + ["type"] = "implicit", + }, + }, ["implicit.stat_538730182"] = { ["Flask"] = { - ["max"] = 1, - ["min"] = 1, - ["subType"] = "Utility", - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_538730182", - ["text"] = "Creates a Smoke Cloud on Use", - ["type"] = "implicit", - }, - }, + ["max"] = 1, + ["min"] = 1, + ["subType"] = "Utility", + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_538730182", + ["text"] = "Creates a Smoke Cloud on Use", + ["type"] = "implicit", + }, + }, ["implicit.stat_538848803"] = { ["1HAxe"] = { - ["max"] = 50, - ["min"] = 50, - }, + ["max"] = 50, + ["min"] = 50, + }, ["1HMace"] = { - ["max"] = 50, - ["min"] = 50, - }, + ["max"] = 50, + ["min"] = 50, + }, ["1HSword"] = { - ["max"] = 50, - ["min"] = 50, - }, + ["max"] = 50, + ["min"] = 50, + }, ["1HWeapon"] = { - ["max"] = 50, - ["min"] = 50, - }, + ["max"] = 50, + ["min"] = 50, + }, ["2HAxe"] = { - ["max"] = 50, - ["min"] = 50, - }, + ["max"] = 50, + ["min"] = 50, + }, ["2HMace"] = { - ["max"] = 50, - ["min"] = 50, - }, + ["max"] = 50, + ["min"] = 50, + }, ["2HSword"] = { - ["max"] = 50, - ["min"] = 50, - }, + ["max"] = 50, + ["min"] = 50, + }, ["2HWeapon"] = { - ["max"] = 50, - ["min"] = 50, - }, + ["max"] = 50, + ["min"] = 50, + }, ["Amulet"] = { - ["max"] = 24, - ["min"] = 16, - }, + ["max"] = 24, + ["min"] = 16, + }, ["Bow"] = { - ["max"] = 50, - ["min"] = 50, - }, + ["max"] = 50, + ["min"] = 50, + }, ["Claw"] = { - ["max"] = 50, - ["min"] = 50, - }, + ["max"] = 50, + ["min"] = 50, + }, ["Dagger"] = { - ["max"] = 50, - ["min"] = 50, - }, + ["max"] = 50, + ["min"] = 50, + }, ["Staff"] = { - ["max"] = 50, - ["min"] = 50, - }, + ["max"] = 50, + ["min"] = 50, + }, ["Wand"] = { - ["max"] = 50, - ["min"] = 50, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_538848803", - ["text"] = "+# to Strength and Dexterity", - ["type"] = "implicit", - }, - }, + ["max"] = 50, + ["min"] = 50, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_538848803", + ["text"] = "+# to Strength and Dexterity", + ["type"] = "implicit", + }, + }, ["implicit.stat_563547620"] = { ["1HAxe"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["1HMace"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["1HSword"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["1HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["2HAxe"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["2HMace"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["2HSword"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["2HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Bow"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Claw"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Dagger"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Staff"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Wand"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_563547620", - ["text"] = "Spend Energy Shield before Mana for Costs of Socketed Skills", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_563547620", + ["text"] = "Spend Energy Shield before Mana for Costs of Socketed Skills", + ["type"] = "implicit", + }, + }, ["implicit.stat_587431675"] = { ["1HAxe"] = { - ["max"] = 100, - ["min"] = 30, - }, + ["max"] = 100, + ["min"] = 30, + }, ["1HMace"] = { - ["max"] = 100, - ["min"] = 30, - }, + ["max"] = 100, + ["min"] = 30, + }, ["1HSword"] = { - ["max"] = 100, - ["min"] = 30, - }, + ["max"] = 100, + ["min"] = 30, + }, ["1HWeapon"] = { - ["max"] = 100, - ["min"] = 30, - }, + ["max"] = 100, + ["min"] = 30, + }, ["2HAxe"] = { - ["max"] = 100, - ["min"] = 30, - }, + ["max"] = 100, + ["min"] = 30, + }, ["2HMace"] = { - ["max"] = 100, - ["min"] = 30, - }, + ["max"] = 100, + ["min"] = 30, + }, ["2HSword"] = { - ["max"] = 100, - ["min"] = 30, - }, + ["max"] = 100, + ["min"] = 30, + }, ["2HWeapon"] = { - ["max"] = 100, - ["min"] = 30, - }, + ["max"] = 100, + ["min"] = 30, + }, ["Amulet"] = { - ["max"] = 50, - ["min"] = 40, - ["subType"] = "Talisman", - }, + ["max"] = 50, + ["min"] = 40, + ["subType"] = "Talisman", + }, ["Bow"] = { - ["max"] = 100, - ["min"] = 30, - }, + ["max"] = 100, + ["min"] = 30, + }, ["Claw"] = { - ["max"] = 100, - ["min"] = 30, - }, + ["max"] = 100, + ["min"] = 30, + }, ["Dagger"] = { - ["max"] = 100, - ["min"] = 30, - }, + ["max"] = 100, + ["min"] = 30, + }, ["Ring"] = { - ["max"] = 30, - ["min"] = 20, - }, + ["max"] = 30, + ["min"] = 20, + }, ["Staff"] = { - ["max"] = 100, - ["min"] = 30, - }, + ["max"] = 100, + ["min"] = 30, + }, ["Wand"] = { - ["max"] = 100, - ["min"] = 30, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_587431675", - ["text"] = "#% increased Global Critical Strike Chance", - ["type"] = "implicit", - }, - }, + ["max"] = 100, + ["min"] = 30, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_587431675", + ["text"] = "#% increased Global Critical Strike Chance", + ["type"] = "implicit", + }, + }, ["implicit.stat_589489789"] = { ["Belt"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_589489789", - ["text"] = "Can't use Flask in Fifth Slot", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_589489789", + ["text"] = "Can't use Flask in Fifth Slot", + ["type"] = "implicit", + }, + }, ["implicit.stat_624954515"] = { ["1HAxe"] = { - ["max"] = 60, - ["min"] = 40, - }, + ["max"] = 60, + ["min"] = 40, + }, ["1HMace"] = { - ["max"] = 60, - ["min"] = 40, - }, + ["max"] = 60, + ["min"] = 40, + }, ["1HSword"] = { - ["max"] = 60, - ["min"] = 40, - }, + ["max"] = 60, + ["min"] = 40, + }, ["1HWeapon"] = { - ["max"] = 60, - ["min"] = 40, - }, + ["max"] = 60, + ["min"] = 40, + }, ["2HAxe"] = { - ["max"] = 60, - ["min"] = 40, - }, + ["max"] = 60, + ["min"] = 40, + }, ["2HMace"] = { - ["max"] = 60, - ["min"] = 40, - }, + ["max"] = 60, + ["min"] = 40, + }, ["2HSword"] = { - ["max"] = 60, - ["min"] = 40, - }, + ["max"] = 60, + ["min"] = 40, + }, ["2HWeapon"] = { - ["max"] = 60, - ["min"] = 40, - }, + ["max"] = 60, + ["min"] = 40, + }, ["Bow"] = { - ["max"] = 60, - ["min"] = 40, - }, + ["max"] = 60, + ["min"] = 40, + }, ["Claw"] = { - ["max"] = 60, - ["min"] = 40, - }, + ["max"] = 60, + ["min"] = 40, + }, ["Dagger"] = { - ["max"] = 60, - ["min"] = 40, - }, + ["max"] = 60, + ["min"] = 40, + }, ["Quiver"] = { - ["max"] = 30, - ["min"] = 20, - }, + ["max"] = 30, + ["min"] = 20, + }, ["Staff"] = { - ["max"] = 60, - ["min"] = 40, - }, + ["max"] = 60, + ["min"] = 40, + }, ["Wand"] = { - ["max"] = 60, - ["min"] = 40, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_624954515", - ["text"] = "#% increased Global Accuracy Rating", - ["type"] = "implicit", - }, - }, + ["max"] = 60, + ["min"] = 40, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_624954515", + ["text"] = "#% increased Global Accuracy Rating", + ["type"] = "implicit", + }, + }, ["implicit.stat_640052854"] = { ["1HAxe"] = { - ["max"] = 14, - ["min"] = 6, - }, + ["max"] = 14, + ["min"] = 6, + }, ["1HMace"] = { - ["max"] = 14, - ["min"] = 6, - }, + ["max"] = 14, + ["min"] = 6, + }, ["1HSword"] = { - ["max"] = 14, - ["min"] = 6, - }, + ["max"] = 14, + ["min"] = 6, + }, ["1HWeapon"] = { - ["max"] = 14, - ["min"] = 6, - }, + ["max"] = 14, + ["min"] = 6, + }, ["2HAxe"] = { - ["max"] = 14, - ["min"] = 6, - }, + ["max"] = 14, + ["min"] = 6, + }, ["2HMace"] = { - ["max"] = 14, - ["min"] = 6, - }, + ["max"] = 14, + ["min"] = 6, + }, ["2HSword"] = { - ["max"] = 14, - ["min"] = 6, - }, + ["max"] = 14, + ["min"] = 6, + }, ["2HWeapon"] = { - ["max"] = 14, - ["min"] = 6, - }, + ["max"] = 14, + ["min"] = 6, + }, ["Bow"] = { - ["max"] = 14, - ["min"] = 6, - }, + ["max"] = 14, + ["min"] = 6, + }, ["Claw"] = { - ["max"] = 14, - ["min"] = 6, - }, + ["max"] = 14, + ["min"] = 6, + }, ["Dagger"] = { - ["max"] = 14, - ["min"] = 6, - }, + ["max"] = 14, + ["min"] = 6, + }, ["Staff"] = { - ["max"] = 14, - ["min"] = 6, - }, + ["max"] = 14, + ["min"] = 6, + }, ["Wand"] = { - ["max"] = 14, - ["min"] = 6, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_640052854", - ["text"] = "Grants # Mana per Enemy Hit", - ["type"] = "implicit", - }, - }, + ["max"] = 14, + ["min"] = 6, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_640052854", + ["text"] = "Grants # Mana per Enemy Hit", + ["type"] = "implicit", + }, + }, ["implicit.stat_681332047"] = { ["1HAxe"] = { - ["max"] = 6, - ["min"] = 4, - }, + ["max"] = 6, + ["min"] = 4, + }, ["1HMace"] = { - ["max"] = 6, - ["min"] = 4, - }, + ["max"] = 6, + ["min"] = 4, + }, ["1HSword"] = { - ["max"] = 6, - ["min"] = 4, - }, + ["max"] = 6, + ["min"] = 4, + }, ["1HWeapon"] = { - ["max"] = 6, - ["min"] = 4, - }, + ["max"] = 6, + ["min"] = 4, + }, ["2HAxe"] = { - ["max"] = 6, - ["min"] = 4, - }, + ["max"] = 6, + ["min"] = 4, + }, ["2HMace"] = { - ["max"] = 6, - ["min"] = 4, - }, + ["max"] = 6, + ["min"] = 4, + }, ["2HSword"] = { - ["max"] = 6, - ["min"] = 4, - }, + ["max"] = 6, + ["min"] = 4, + }, ["2HWeapon"] = { - ["max"] = 6, - ["min"] = 4, - }, + ["max"] = 6, + ["min"] = 4, + }, ["Bow"] = { - ["max"] = 6, - ["min"] = 4, - }, + ["max"] = 6, + ["min"] = 4, + }, ["Claw"] = { - ["max"] = 6, - ["min"] = 4, - }, + ["max"] = 6, + ["min"] = 4, + }, ["Dagger"] = { - ["max"] = 6, - ["min"] = 4, - }, + ["max"] = 6, + ["min"] = 4, + }, ["Quiver"] = { - ["max"] = 10, - ["min"] = 8, - }, + ["max"] = 10, + ["min"] = 8, + }, ["Staff"] = { - ["max"] = 6, - ["min"] = 4, - }, + ["max"] = 6, + ["min"] = 4, + }, ["Wand"] = { - ["max"] = 6, - ["min"] = 4, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_681332047", - ["text"] = "#% increased Attack Speed", - ["type"] = "implicit", - }, - }, + ["max"] = 6, + ["min"] = 4, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_681332047", + ["text"] = "#% increased Attack Speed", + ["type"] = "implicit", + }, + }, ["implicit.stat_718638445"] = { ["Amulet"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Ring"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_718638445", - ["text"] = "+# Suffix Modifier allowed", - ["type"] = "implicit", - }, - }, + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_718638445", + ["text"] = "+# Suffix Modifier allowed", + ["type"] = "implicit", + }, + }, ["implicit.stat_734614379"] = { ["1HAxe"] = { - ["max"] = 10, - ["min"] = 10, - }, + ["max"] = 10, + ["min"] = 10, + }, ["1HMace"] = { - ["max"] = 10, - ["min"] = 10, - }, + ["max"] = 10, + ["min"] = 10, + }, ["1HSword"] = { - ["max"] = 10, - ["min"] = 10, - }, + ["max"] = 10, + ["min"] = 10, + }, ["1HWeapon"] = { - ["max"] = 10, - ["min"] = 10, - }, + ["max"] = 10, + ["min"] = 10, + }, ["2HAxe"] = { - ["max"] = 10, - ["min"] = 10, - }, + ["max"] = 10, + ["min"] = 10, + }, ["2HMace"] = { - ["max"] = 10, - ["min"] = 10, - }, + ["max"] = 10, + ["min"] = 10, + }, ["2HSword"] = { - ["max"] = 10, - ["min"] = 10, - }, + ["max"] = 10, + ["min"] = 10, + }, ["2HWeapon"] = { - ["max"] = 10, - ["min"] = 10, - }, + ["max"] = 10, + ["min"] = 10, + }, ["Bow"] = { - ["max"] = 10, - ["min"] = 10, - }, + ["max"] = 10, + ["min"] = 10, + }, ["Claw"] = { - ["max"] = 10, - ["min"] = 10, - }, + ["max"] = 10, + ["min"] = 10, + }, ["Dagger"] = { - ["max"] = 10, - ["min"] = 10, - }, + ["max"] = 10, + ["min"] = 10, + }, ["Staff"] = { - ["max"] = 10, - ["min"] = 10, - }, + ["max"] = 10, + ["min"] = 10, + }, ["Wand"] = { - ["max"] = 10, - ["min"] = 10, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_734614379", - ["text"] = "#% increased Strength", - ["type"] = "implicit", - }, - }, + ["max"] = 10, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_734614379", + ["text"] = "#% increased Strength", + ["type"] = "implicit", + }, + }, ["implicit.stat_736967255"] = { ["Amulet"] = { - ["max"] = 31, - ["min"] = 19, - ["subType"] = "Talisman", - }, + ["max"] = 31, + ["min"] = 19, + ["subType"] = "Talisman", + }, ["Ring"] = { - ["max"] = 23, - ["min"] = 17, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_736967255", - ["text"] = "#% increased Chaos Damage", - ["type"] = "implicit", - }, - }, + ["max"] = 23, + ["min"] = 17, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_736967255", + ["text"] = "#% increased Chaos Damage", + ["type"] = "implicit", + }, + }, ["implicit.stat_744858137"] = { ["Ring"] = { - ["max"] = 25, - ["min"] = 25, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_744858137", - ["text"] = "Right ring slot: #% of Cold Damage from Hits taken as Lightning Damage", - ["type"] = "implicit", - }, - }, + ["max"] = 25, + ["min"] = 25, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_744858137", + ["text"] = "Right ring slot: #% of Cold Damage from Hits taken as Lightning Damage", + ["type"] = "implicit", + }, + }, ["implicit.stat_776174407"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_776174407", - ["text"] = "#% increased Damage with Poison from Melee Weapons", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_776174407", + ["text"] = "#% increased Damage with Poison from Melee Weapons", + ["type"] = "implicit", + }, + }, ["implicit.stat_789117908"] = { ["Amulet"] = { - ["max"] = 56, - ["min"] = 20, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_789117908", - ["text"] = "#% increased Mana Regeneration Rate", - ["type"] = "implicit", - }, - }, + ["max"] = 56, + ["min"] = 20, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_789117908", + ["text"] = "#% increased Mana Regeneration Rate", + ["type"] = "implicit", + }, + }, ["implicit.stat_800141891"] = { ["Amulet"] = { - ["max"] = 6, - ["min"] = 4, - ["subType"] = "Talisman", - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_800141891", - ["text"] = "#% chance to Freeze, Shock and Ignite", - ["type"] = "implicit", - }, - }, + ["max"] = 6, + ["min"] = 4, + ["subType"] = "Talisman", + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_800141891", + ["text"] = "#% chance to Freeze, Shock and Ignite", + ["type"] = "implicit", + }, + }, ["implicit.stat_803737631"] = { ["1HAxe"] = { - ["max"] = 475, - ["min"] = 45, - }, + ["max"] = 475, + ["min"] = 45, + }, ["1HMace"] = { - ["max"] = 475, - ["min"] = 45, - }, + ["max"] = 475, + ["min"] = 45, + }, ["1HSword"] = { - ["max"] = 475, - ["min"] = 45, - }, + ["max"] = 475, + ["min"] = 45, + }, ["1HWeapon"] = { - ["max"] = 475, - ["min"] = 45, - }, + ["max"] = 475, + ["min"] = 45, + }, ["2HAxe"] = { - ["max"] = 475, - ["min"] = 45, - }, + ["max"] = 475, + ["min"] = 45, + }, ["2HMace"] = { - ["max"] = 475, - ["min"] = 45, - }, + ["max"] = 475, + ["min"] = 45, + }, ["2HSword"] = { - ["max"] = 475, - ["min"] = 45, - }, + ["max"] = 475, + ["min"] = 45, + }, ["2HWeapon"] = { - ["max"] = 475, - ["min"] = 45, - }, + ["max"] = 475, + ["min"] = 45, + }, ["Bow"] = { - ["max"] = 475, - ["min"] = 45, - }, + ["max"] = 475, + ["min"] = 45, + }, ["Claw"] = { - ["max"] = 475, - ["min"] = 45, - }, + ["max"] = 475, + ["min"] = 45, + }, ["Dagger"] = { - ["max"] = 475, - ["min"] = 45, - }, + ["max"] = 475, + ["min"] = 45, + }, ["Staff"] = { - ["max"] = 475, - ["min"] = 45, - }, + ["max"] = 475, + ["min"] = 45, + }, ["Wand"] = { - ["max"] = 475, - ["min"] = 45, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_803737631", - ["text"] = "+# to Accuracy Rating", - ["type"] = "implicit", - }, - }, + ["max"] = 475, + ["min"] = 45, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_803737631", + ["text"] = "+# to Accuracy Rating", + ["type"] = "implicit", + }, + }, ["implicit.stat_821021828"] = { ["1HAxe"] = { - ["max"] = 50, - ["min"] = 3, - }, + ["max"] = 50, + ["min"] = 3, + }, ["1HMace"] = { - ["max"] = 50, - ["min"] = 3, - }, + ["max"] = 50, + ["min"] = 3, + }, ["1HSword"] = { - ["max"] = 50, - ["min"] = 3, - }, + ["max"] = 50, + ["min"] = 3, + }, ["1HWeapon"] = { - ["max"] = 50, - ["min"] = 3, - }, + ["max"] = 50, + ["min"] = 3, + }, ["2HAxe"] = { - ["max"] = 50, - ["min"] = 3, - }, + ["max"] = 50, + ["min"] = 3, + }, ["2HMace"] = { - ["max"] = 50, - ["min"] = 3, - }, + ["max"] = 50, + ["min"] = 3, + }, ["2HSword"] = { - ["max"] = 50, - ["min"] = 3, - }, + ["max"] = 50, + ["min"] = 3, + }, ["2HWeapon"] = { - ["max"] = 50, - ["min"] = 3, - }, + ["max"] = 50, + ["min"] = 3, + }, ["Bow"] = { - ["max"] = 50, - ["min"] = 3, - }, + ["max"] = 50, + ["min"] = 3, + }, ["Claw"] = { - ["max"] = 50, - ["min"] = 3, - }, + ["max"] = 50, + ["min"] = 3, + }, ["Dagger"] = { - ["max"] = 50, - ["min"] = 3, - }, + ["max"] = 50, + ["min"] = 3, + }, ["Staff"] = { - ["max"] = 50, - ["min"] = 3, - }, + ["max"] = 50, + ["min"] = 3, + }, ["Wand"] = { - ["max"] = 50, - ["min"] = 3, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_821021828", - ["text"] = "Grants # Life per Enemy Hit", - ["type"] = "implicit", - }, - }, + ["max"] = 50, + ["min"] = 3, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_821021828", + ["text"] = "Grants # Life per Enemy Hit", + ["type"] = "implicit", + }, + }, ["implicit.stat_836936635"] = { ["Amulet"] = { - ["max"] = 2, - ["min"] = 1.2, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_836936635", - ["text"] = "Regenerate #% of Life per second", - ["type"] = "implicit", - }, - }, + ["max"] = 2, + ["min"] = 1.2, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_836936635", + ["text"] = "Regenerate #% of Life per second", + ["type"] = "implicit", + }, + }, ["implicit.stat_846313030"] = { ["Boots"] = { - ["max"] = 1, - ["min"] = 1, - ["subType"] = "Armour/Evasion", - }, + ["max"] = 1, + ["min"] = 1, + ["subType"] = "Armour/Evasion", + }, ["Chest"] = { - ["max"] = 1, - ["min"] = 1, - ["subType"] = "Armour/Evasion", - }, + ["max"] = 1, + ["min"] = 1, + ["subType"] = "Armour/Evasion", + }, ["Gloves"] = { - ["max"] = 1, - ["min"] = 1, - ["subType"] = "Armour/Evasion", - }, + ["max"] = 1, + ["min"] = 1, + ["subType"] = "Armour/Evasion", + }, ["Helmet"] = { - ["max"] = 1, - ["min"] = 1, - ["subType"] = "Armour/Evasion", - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_846313030", - ["text"] = "You are Crushed", - ["type"] = "implicit", - }, - }, + ["max"] = 1, + ["min"] = 1, + ["subType"] = "Armour/Evasion", + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_846313030", + ["text"] = "You are Crushed", + ["type"] = "implicit", + }, + }, ["implicit.stat_966747987"] = { ["Amulet"] = { - ["max"] = 1, - ["min"] = 1, - ["subType"] = "Talisman", - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_966747987", - ["text"] = "+# to maximum number of Raised Zombies", - ["type"] = "implicit", - }, - }, + ["max"] = 1, + ["min"] = 1, + ["subType"] = "Talisman", + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_966747987", + ["text"] = "+# to maximum number of Raised Zombies", + ["type"] = "implicit", + }, + }, ["implicit.stat_967627487"] = { ["Boots"] = { - ["max"] = 18, - ["min"] = 14, - ["subType"] = "Armour/Energy Shield", - }, + ["max"] = 18, + ["min"] = 14, + ["subType"] = "Armour/Energy Shield", + }, ["Chest"] = { - ["max"] = 18, - ["min"] = 14, - ["subType"] = "Armour/Energy Shield", - }, + ["max"] = 18, + ["min"] = 14, + ["subType"] = "Armour/Energy Shield", + }, ["Gloves"] = { - ["max"] = 18, - ["min"] = 14, - ["subType"] = "Armour/Energy Shield", - }, + ["max"] = 18, + ["min"] = 14, + ["subType"] = "Armour/Energy Shield", + }, ["Helmet"] = { - ["max"] = 18, - ["min"] = 14, - ["subType"] = "Armour/Energy Shield", - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_967627487", - ["text"] = "#% increased Damage over Time", - ["type"] = "implicit", - }, - }, + ["max"] = 18, + ["min"] = 14, + ["subType"] = "Armour/Energy Shield", + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_967627487", + ["text"] = "#% increased Damage over Time", + ["type"] = "implicit", + }, + }, ["implicit.stat_983749596"] = { ["Amulet"] = { - ["max"] = 12, - ["min"] = 8, - ["subType"] = "Talisman", - }, + ["max"] = 12, + ["min"] = 8, + ["subType"] = "Talisman", + }, ["Ring"] = { - ["max"] = 7, - ["min"] = 5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_983749596", - ["text"] = "#% increased maximum Life", - ["type"] = "implicit", - }, - }, - }, + ["max"] = 7, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_983749596", + ["text"] = "#% increased maximum Life", + ["type"] = "implicit", + }, + }, + }, ["PassiveNode"] = { - ["7554_AfflictionNotableAdrenaline"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4022743870", - ["text"] = "1 Added Passive Skill is Adrenaline", - ["type"] = "explicit", - }, - }, - ["7555_AfflictionNotableAdvanceGuard"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1625939562", - ["text"] = "1 Added Passive Skill is Advance Guard", - ["type"] = "explicit", - }, - }, - ["7556_AfflictionNotableAerialist"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3848677307", - ["text"] = "1 Added Passive Skill is Aerialist", - ["type"] = "explicit", - }, - }, - ["7557_AfflictionNotableAerodynamics"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4120556534", - ["text"] = "1 Added Passive Skill is Aerodynamics", - ["type"] = "explicit", - }, - }, - ["7558_AfflictionNotableAgentofDestruction"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3122491961", - ["text"] = "1 Added Passive Skill is Agent of Destruction", - ["type"] = "explicit", - }, - }, - ["7559_AfflictionNotableAggressiveDefence"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4154008618", - ["text"] = "1 Added Passive Skill is Aggressive Defence", - ["type"] = "explicit", - }, - }, - ["7560_AfflictionNotableAlchemist"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2912949210", - ["text"] = "1 Added Passive Skill is Alchemist", - ["type"] = "explicit", - }, - }, - ["7561_AfflictionNotableAncestralEcho"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_957679205", - ["text"] = "1 Added Passive Skill is Ancestral Echo", - ["type"] = "explicit", - }, - }, - ["7562_AfflictionNotableAncestralGuidance"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2387747995", - ["text"] = "1 Added Passive Skill is Ancestral Guidance", - ["type"] = "explicit", - }, - }, - ["7563_AfflictionNotableAncestralInspiration"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_77045106", - ["text"] = "1 Added Passive Skill is Ancestral Inspiration", - ["type"] = "explicit", - }, - }, - ["7564_AfflictionNotableAncestralMight"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3998316", - ["text"] = "1 Added Passive Skill is Ancestral Might", - ["type"] = "explicit", - }, - }, - ["7565_AfflictionNotableAncestralPreservation"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3746703776", - ["text"] = "1 Added Passive Skill is Ancestral Preservation", - ["type"] = "explicit", - }, - }, - ["7566_AfflictionNotableAncestralReach"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3294884567", - ["text"] = "1 Added Passive Skill is Ancestral Reach", - ["type"] = "explicit", - }, - }, - ["7567_AfflictionNotableAntifreeze"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2622946553", - ["text"] = "1 Added Passive Skill is Antifreeze", - ["type"] = "explicit", - }, - }, - ["7568_AfflictionNotableAntivenom"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_774369953", - ["text"] = "1 Added Passive Skill is Antivenom", - ["type"] = "explicit", - }, - }, - ["7569_AfflictionNotableArcaneAdept"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_393565679", - ["text"] = "1 Added Passive Skill is Arcane Adept", - ["type"] = "explicit", - }, - }, - ["7570_AfflictionNotableArcaneHeroism"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3901992019", - ["text"] = "1 Added Passive Skill is Arcane Heroism", - ["type"] = "explicit", - }, - }, - ["7571_AfflictionNotableArcanePyrotechnics"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2043503530", - ["text"] = "1 Added Passive Skill is Arcane Pyrotechnics", - ["type"] = "explicit", - }, - }, - ["7572_AfflictionNotableArcingShot"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3212859169", - ["text"] = "1 Added Passive Skill is Arcing Shot", - ["type"] = "explicit", - }, - }, - ["7573_AfflictionNotableAssertDominance"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4222265138", - ["text"] = "1 Added Passive Skill is Assert Dominance", - ["type"] = "explicit", - }, - }, - ["7574_AfflictionNotableAstonishingAffliction"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2428334013", - ["text"] = "1 Added Passive Skill is Astonishing Affliction", - ["type"] = "explicit", - }, - }, - ["7575_AfflictionNotableBasicsofPain"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3084359503", - ["text"] = "1 Added Passive Skill is Basics of Pain", - ["type"] = "explicit", - }, - }, - ["7576_AfflictionNotableBattleHardened"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4188581520", - ["text"] = "1 Added Passive Skill is Battle-Hardened", - ["type"] = "explicit", - }, - }, - ["7577_AfflictionNotableBattlefieldDominator"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1499057234", - ["text"] = "1 Added Passive Skill is Battlefield Dominator", - ["type"] = "explicit", - }, - }, - ["7578_AfflictionNotableBlacksmith"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1127706436", - ["text"] = "1 Added Passive Skill is Blacksmith", - ["type"] = "explicit", - }, - }, - ["7579_AfflictionNotableBlanketedSnow"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1085167979", - ["text"] = "1 Added Passive Skill is Blanketed Snow", - ["type"] = "explicit", - }, - }, - ["7580_AfflictionNotableBlastFreeze"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_693808153", - ["text"] = "1 Added Passive Skill is Blast-Freeze", - ["type"] = "explicit", - }, - }, - ["7581_AfflictionNotableBlessed"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_775689239", - ["text"] = "1 Added Passive Skill is Blessed", - ["type"] = "explicit", - }, - }, - ["7582_AfflictionNotableBlessedRebirth"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1424794574", - ["text"] = "1 Added Passive Skill is Blessed Rebirth", - ["type"] = "explicit", - }, - }, - ["7583_AfflictionNotableBloodArtist"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2284771334", - ["text"] = "1 Added Passive Skill is Blood Artist", - ["type"] = "explicit", - }, - }, - ["7584_AfflictionNotableBloodscent"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3967765261", - ["text"] = "1 Added Passive Skill is Bloodscent", - ["type"] = "explicit", - }, - }, - ["7585_AfflictionNotableBlowback"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1612414696", - ["text"] = "1 Added Passive Skill is Blowback", - ["type"] = "explicit", - }, - }, - ["7586_AfflictionNotableBodyguards"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_791125124", - ["text"] = "1 Added Passive Skill is Bodyguards", - ["type"] = "explicit", - }, - }, - ["7587_AfflictionNotableBornofChaos"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2449392400", - ["text"] = "1 Added Passive Skill is Born of Chaos", - ["type"] = "explicit", - }, - }, - ["7588_AfflictionNotableBrandLoyalty"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3198006994", - ["text"] = "1 Added Passive Skill is Brand Loyalty", - ["type"] = "explicit", - }, - }, - ["7589_AfflictionNotableBrewedforPotency"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3250272113", - ["text"] = "1 Added Passive Skill is Brewed for Potency", - ["type"] = "explicit", - }, - }, - ["7590_AfflictionNotableBroadside"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2205982416", - ["text"] = "1 Added Passive Skill is Broadside", - ["type"] = "explicit", - }, - }, - ["7591_AfflictionNotableBrushwithDeath"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2900833792", - ["text"] = "1 Added Passive Skill is Brush with Death", - ["type"] = "explicit", - }, - }, - ["7592_AfflictionNotableBrutalInfamy"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2068574831", - ["text"] = "1 Added Passive Skill is Brutal Infamy", - ["type"] = "explicit", - }, - }, - ["7593_AfflictionNotableBurdenProjection"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2008682345", - ["text"] = "1 Added Passive Skill is Burden Projection", - ["type"] = "explicit", - }, - }, - ["7594_AfflictionNotableBurningBright"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4199056048", - ["text"] = "1 Added Passive Skill is Burning Bright", - ["type"] = "explicit", - }, - }, - ["7595_AfflictionNotableCalamitous"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3359207393", - ["text"] = "1 Added Passive Skill is Calamitous", - ["type"] = "explicit", - }, - }, - ["7596_AfflictionNotableCalltotheSlaughter"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3317068522", - ["text"] = "1 Added Passive Skill is Call to the Slaughter", - ["type"] = "explicit", - }, - }, - ["7597_AfflictionNotableCapacitor"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4025536654", - ["text"] = "1 Added Passive Skill is Capacitor", - ["type"] = "explicit", - }, - }, - ["7598_AfflictionNotableCarefulHandling"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_456502758", - ["text"] = "1 Added Passive Skill is Careful Handling", - ["type"] = "explicit", - }, - }, - ["7599_AfflictionNotableChillingPresence"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2834490860", - ["text"] = "1 Added Passive Skill is Chilling Presence", - ["type"] = "explicit", - }, - }, - ["7600_AfflictionNotableChipAway"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_968069586", - ["text"] = "1 Added Passive Skill is Chip Away", - ["type"] = "explicit", - }, - }, - ["7601_AfflictionNotableCirclingOblivion"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2129392647", - ["text"] = "1 Added Passive Skill is Circling Oblivion", - ["type"] = "explicit", - }, - }, - ["7602_AfflictionNotableClarityofPurpose"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_684087686", - ["text"] = "1 Added Passive Skill is Clarity of Purpose", - ["type"] = "explicit", - }, - }, - ["7603_AfflictionNotableColdBloodedKiller"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_836566759", - ["text"] = "1 Added Passive Skill is Cold-Blooded Killer", - ["type"] = "explicit", - }, - }, - ["7604_AfflictionNotableColdConduction"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1274505521", - ["text"] = "1 Added Passive Skill is Cold Conduction", - ["type"] = "explicit", - }, - }, - ["7605_AfflictionNotableColdtotheCore"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_744783843", - ["text"] = "1 Added Passive Skill is Cold to the Core", - ["type"] = "explicit", - }, - }, - ["7606_AfflictionNotableCombatRhythm"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3122505794", - ["text"] = "1 Added Passive Skill is Combat Rhythm", - ["type"] = "explicit", - }, - }, - ["7607_AfflictionNotableCompoundInjury"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4018305528", - ["text"] = "1 Added Passive Skill is Compound Injury", - ["type"] = "explicit", - }, - }, - ["7608_AfflictionNotableConfidentCombatant"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3930242735", - ["text"] = "1 Added Passive Skill is Confident Combatant", - ["type"] = "explicit", - }, - }, - ["7609_AfflictionNotableConjuredWall"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4105031548", - ["text"] = "1 Added Passive Skill is Conjured Wall", - ["type"] = "explicit", - }, - }, - ["7610_AfflictionNotableConservationofEnergy"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2083777017", - ["text"] = "1 Added Passive Skill is Conservation of Energy", - ["type"] = "explicit", - }, - }, - ["7611_AfflictionNotableCookedAlive"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2938895712", - ["text"] = "1 Added Passive Skill is Cooked Alive", - ["type"] = "explicit", - }, - }, - ["7612_AfflictionNotableCorrosiveElements"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1777139212", - ["text"] = "1 Added Passive Skill is Corrosive Elements", - ["type"] = "explicit", - }, - }, - ["7613_AfflictionNotableCremator"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1153801980", - ["text"] = "1 Added Passive Skill is Cremator", - ["type"] = "explicit", - }, - }, - ["7614_AfflictionNotableCryWolf"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1821748178", - ["text"] = "1 Added Passive Skill is Cry Wolf", - ["type"] = "explicit", - }, - }, - ["7615_AfflictionNotableCultLeader"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2026112251", - ["text"] = "1 Added Passive Skill is Cult-Leader", - ["type"] = "explicit", - }, - }, - ["7616_AfflictionNotableDaringIdeas"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2534405517", - ["text"] = "1 Added Passive Skill is Daring Ideas", - ["type"] = "explicit", - }, - }, - ["7617_AfflictionNotableDarkDiscourse"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_462115791", - ["text"] = "1 Added Passive Skill is Doedre's Spite", - ["type"] = "explicit", - }, - }, - ["7618_AfflictionNotableDarkIdeation"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1603621602", - ["text"] = "1 Added Passive Skill is Dark Ideation", - ["type"] = "explicit", - }, - }, - ["7619_AfflictionNotableDarkMessenger"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3784610129", - ["text"] = "1 Added Passive Skill is Dark Messenger", - ["type"] = "explicit", - }, - }, - ["7620_AfflictionNotableDartingMovements"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_846491278", - ["text"] = "1 Added Passive Skill is Darting Movements", - ["type"] = "explicit", - }, - }, - ["7621_AfflictionNotableDeadlyRepartee"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1013470938", - ["text"] = "1 Added Passive Skill is Deadly Repartee", - ["type"] = "explicit", - }, - }, - ["7622_AfflictionNotableDeepChill"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1703766309", - ["text"] = "1 Added Passive Skill is Deep Chill", - ["type"] = "explicit", - }, - }, - ["7623_AfflictionNotableDeepCuts"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_410939404", - ["text"] = "1 Added Passive Skill is Deep Cuts", - ["type"] = "explicit", - }, - }, - ["7624_AfflictionNotableMiseryEverlasting"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3832665876", - ["text"] = "1 Added Passive Skill is Misery Everlasting", - ["type"] = "explicit", - }, - }, - ["7625_AfflictionNotableUncompromising"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_382360671", - ["text"] = "1 Added Passive Skill is Uncompromising", - ["type"] = "explicit", - }, - }, - ["7626_AfflictionNotableDevastator"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3711553948", - ["text"] = "1 Added Passive Skill is Devastator", - ["type"] = "explicit", - }, - }, - ["7627_AfflictionNotableDisciples"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3177526694", - ["text"] = "1 Added Passive Skill is Disciples", - ["type"] = "explicit", - }, - }, - ["7628_AfflictionNotableSelfControl"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3025453294", - ["text"] = "1 Added Passive Skill is Self-Control", - ["type"] = "explicit", - }, - }, - ["7629_AfflictionNotableDiseaseVector"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_183591019", - ["text"] = "1 Added Passive Skill is Disease Vector", - ["type"] = "explicit", - }, - }, - ["7630_AfflictionNotableDisorientingDisplay"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3206911230", - ["text"] = "1 Added Passive Skill is Disorienting Display", - ["type"] = "explicit", - }, - }, - ["7631_AfflictionNotableDisorientingWounds"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3351136461", - ["text"] = "1 Added Passive Skill is Disorienting Wounds", - ["type"] = "explicit", - }, - }, - ["7632_AfflictionNotableDistilledPerfection"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3652138990", - ["text"] = "1 Added Passive Skill is Distilled Perfection", - ["type"] = "explicit", - }, - }, - ["7633_AfflictionNotableDoedresApathy"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1381945089", - ["text"] = "1 Added Passive Skill is Doedre's Apathy", - ["type"] = "explicit", - }, - }, - ["7634_AfflictionNotableDoedresGluttony"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2695848124", - ["text"] = "1 Added Passive Skill is Doedre's Gluttony", - ["type"] = "explicit", - }, - }, - ["7635_AfflictionNotableDoryanisLesson"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_228455793", - ["text"] = "1 Added Passive Skill is Doryani's Lesson", - ["type"] = "explicit", - }, - }, - ["7636_AfflictionNotableDragonHunter"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1038955006", - ["text"] = "1 Added Passive Skill is Dragon Hunter", - ["type"] = "explicit", - }, - }, - ["7637_AfflictionNotableDreadMarch"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3087667389", - ["text"] = "1 Added Passive Skill is Dread March", - ["type"] = "explicit", - }, - }, - ["7638_AfflictionNotableDrivetheDestruction"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1911162866", - ["text"] = "1 Added Passive Skill is Drive the Destruction", - ["type"] = "explicit", - }, - }, - ["7639_AfflictionNotableEldritchInspiration"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3737604164", - ["text"] = "1 Added Passive Skill is Eldritch Inspiration", - ["type"] = "explicit", - }, - }, - ["7640_AfflictionNotableElegantForm"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_289714529", - ["text"] = "1 Added Passive Skill is Elegant Form", - ["type"] = "explicit", - }, - }, - ["7641_AfflictionNotableEmpoweredEnvoy"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2032453153", - ["text"] = "1 Added Passive Skill is Empowered Envoy", - ["type"] = "explicit", - }, - }, - ["7642_AfflictionNotableEndbringer"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2150878631", - ["text"] = "1 Added Passive Skill is Endbringer", - ["type"] = "explicit", - }, - }, - ["7643_AfflictionNotableEnduringComposure"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2043284086", - ["text"] = "1 Added Passive Skill is Enduring Composure", - ["type"] = "explicit", - }, - }, - ["7644_AfflictionNotableEnduringFocus"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2522970386", - ["text"] = "1 Added Passive Skill is Enduring Focus", - ["type"] = "explicit", - }, - }, - ["7645_AfflictionNotableEnduringWard"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_252724319", - ["text"] = "1 Added Passive Skill is Enduring Ward", - ["type"] = "explicit", - }, - }, - ["7646_AfflictionNotableEnergyFromNaught"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2195518432", - ["text"] = "1 Added Passive Skill is Energy From Naught", - ["type"] = "explicit", - }, - }, - ["7647_AfflictionNotableEssenceRush"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1096136223", - ["text"] = "1 Added Passive Skill is Essence Rush", - ["type"] = "explicit", - }, - }, - ["7648_AfflictionNotableEternalSuffering"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2144634814", - ["text"] = "1 Added Passive Skill is Eternal Suffering", - ["type"] = "explicit", - }, - }, - ["7649_AfflictionNotableEvilEye"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4291066912", - ["text"] = "1 Added Passive Skill is Evil Eye", - ["type"] = "explicit", - }, - }, - ["7650_AfflictionNotableExpansiveMight"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_394918362", - ["text"] = "1 Added Passive Skill is Expansive Might", - ["type"] = "explicit", - }, - }, - ["7651_AfflictionNotableExpendability"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2020075345", - ["text"] = "1 Added Passive Skill is Expendability", - ["type"] = "explicit", - }, - }, - ["7652_AfflictionNotableExpertSabotage"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2084371547", - ["text"] = "1 Added Passive Skill is Expert Sabotage", - ["type"] = "explicit", - }, - }, - ["7653_AfflictionNotableExplosiveForce"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2017927451", - ["text"] = "1 Added Passive Skill is Explosive Force", - ["type"] = "explicit", - }, - }, - ["7654_AfflictionNotableExposureTherapy"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_131358113", - ["text"] = "1 Added Passive Skill is Exposure Therapy", - ["type"] = "explicit", - }, - }, - ["7655_AfflictionNotableEyeoftheStorm"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3818661553", - ["text"] = "1 Added Passive Skill is Eye of the Storm", - ["type"] = "explicit", - }, - }, - ["7656_AfflictionNotableEyetoEye"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_392942015", - ["text"] = "1 Added Passive Skill is Eye to Eye", - ["type"] = "explicit", - }, - }, - ["7657_AfflictionNotableFanofBlades"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2484082827", - ["text"] = "1 Added Passive Skill is Fan of Blades", - ["type"] = "explicit", - }, - }, - ["7658_AfflictionNotableFantheFlames"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2918755450", - ["text"] = "1 Added Passive Skill is Fan the Flames", - ["type"] = "explicit", - }, - }, - ["7659_AfflictionNotableFasting"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_37078857", - ["text"] = "1 Added Passive Skill is Fasting", - ["type"] = "explicit", - }, - }, - ["7660_AfflictionNotableFearsomeWarrior"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3134222965", - ["text"] = "1 Added Passive Skill is Fearsome Warrior", - ["type"] = "explicit", - }, - }, - ["7661_AfflictionNotableFeastofFlesh"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2396755365", - ["text"] = "1 Added Passive Skill is Feast of Flesh", - ["type"] = "explicit", - }, - }, - ["7662_AfflictionNotableFeastingFiends"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_383245807", - ["text"] = "1 Added Passive Skill is Feasting Fiends", - ["type"] = "explicit", - }, - }, - ["7663_AfflictionNotableFeedtheFury"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3944525413", - ["text"] = "1 Added Passive Skill is Feed the Fury", - ["type"] = "explicit", - }, - }, - ["7664_AfflictionNotableFettle"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1353571444", - ["text"] = "1 Added Passive Skill is Fettle", - ["type"] = "explicit", - }, - }, - ["7665_AfflictionNotableFieryAegis"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3233538204", - ["text"] = "1 Added Passive Skill is Fiery Aegis", - ["type"] = "explicit", - }, - }, - ["7666_AfflictionNotableFireAttunement"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3188756614", - ["text"] = "1 Added Passive Skill is Fire Attunement", - ["type"] = "explicit", - }, - }, - ["7667_AfflictionNotableFirstAmongEquals"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1134501245", - ["text"] = "1 Added Passive Skill is Spiteful Presence", - ["type"] = "explicit", - }, - }, - ["7668_AfflictionNotableLordofDrought"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2055715585", - ["text"] = "1 Added Passive Skill is Lord of Drought", - ["type"] = "explicit", - }, - }, - ["7669_AfflictionNotableFlexibleSentry"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_982290947", - ["text"] = "1 Added Passive Skill is Flexible Sentry", - ["type"] = "explicit", - }, - }, - ["7670_AfflictionNotableFlowofLife"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2350430215", - ["text"] = "1 Added Passive Skill is Flow of Life", - ["type"] = "explicit", - }, - }, - ["7671_AfflictionNotableFollowThrough"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3984980429", - ["text"] = "1 Added Passive Skill is Follow-Through", - ["type"] = "explicit", - }, - }, - ["7672_AfflictionNotableForceMultiplier"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1904581068", - ["text"] = "1 Added Passive Skill is Force Multiplier", - ["type"] = "explicit", - }, - }, - ["7673_AfflictionNotableBlizzardCaller"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3758712376", - ["text"] = "1 Added Passive Skill is Blizzard Caller", - ["type"] = "explicit", - }, - }, - ["7674_AfflictionNotableFueltheFight"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3599340381", - ["text"] = "1 Added Passive Skill is Fuel the Fight", - ["type"] = "explicit", - }, - }, - ["7675_AfflictionNotableFuriousAssault"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3415827027", - ["text"] = "1 Added Passive Skill is Furious Assault", - ["type"] = "explicit", - }, - }, - ["7676_AfflictionNotableGenius"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2763732093", - ["text"] = "1 Added Passive Skill is Genius", - ["type"] = "explicit", - }, - }, - ["7677_AfflictionNotableGladiatorialCombat"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1543731719", - ["text"] = "1 Added Passive Skill is Gladiatorial Combat", - ["type"] = "explicit", - }, - }, - ["7678_AfflictionNotableGladiatorsFortitude"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1591995797", - ["text"] = "1 Added Passive Skill is Gladiator's Fortitude", - ["type"] = "explicit", - }, - }, - ["7679_AfflictionNotableGracefulExecution"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1903496649", - ["text"] = "1 Added Passive Skill is Graceful Execution", - ["type"] = "explicit", - }, - }, - ["7680_AfflictionNotableSublimeForm"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2251304016", - ["text"] = "1 Added Passive Skill is Sublime Form", - ["type"] = "explicit", - }, - }, - ["7681_AfflictionNotableGrandDesign"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2350900742", - ["text"] = "1 Added Passive Skill is Grand Design", - ["type"] = "explicit", - }, - }, - ["7682_AfflictionNotableGrimOath"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2194205899", - ["text"] = "1 Added Passive Skill is Grim Oath", - ["type"] = "explicit", - }, - }, - ["7683_AfflictionNotableGroundedCommander"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1309218394", - ["text"] = "1 Added Passive Skill is Introspection", - ["type"] = "explicit", - }, - }, - ["7684_AfflictionNotableGuerillaTactics"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1882129725", - ["text"] = "1 Added Passive Skill is Guerilla Tactics", - ["type"] = "explicit", - }, - }, - ["7685_AfflictionNotableHaemorrhage"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_72129119", - ["text"] = "1 Added Passive Skill is Haemorrhage", - ["type"] = "explicit", - }, - }, - ["7686_AfflictionNotableHauntingShout"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1080363357", - ["text"] = "1 Added Passive Skill is Haunting Shout", - ["type"] = "explicit", - }, - }, - ["7687_AfflictionNotableHeartofIron"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1483358825", - ["text"] = "1 Added Passive Skill is Heart of Iron", - ["type"] = "explicit", - }, - }, - ["7688_AfflictionNotableHeavyHitter"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3640252904", - ["text"] = "1 Added Passive Skill is Heavy Hitter", - ["type"] = "explicit", - }, - }, - ["7689_AfflictionNotableExploitWeakness"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_50129423", - ["text"] = "1 Added Passive Skill is Exploit Weakness", - ["type"] = "explicit", - }, - }, - ["7690_AfflictionNotableHeraldry"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3274270612", - ["text"] = "1 Added Passive Skill is Heraldry", - ["type"] = "explicit", - }, - }, - ["7691_AfflictionNotableHexBreaker"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2341828832", - ["text"] = "1 Added Passive Skill is Hex Breaker", - ["type"] = "explicit", - }, - }, - ["7692_AfflictionNotableHibernator"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2294919888", - ["text"] = "1 Added Passive Skill is Hibernator", - ["type"] = "explicit", - }, - }, - ["7693_AfflictionNotableHitandRun"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2665170385", - ["text"] = "1 Added Passive Skill is Hit and Run", - ["type"] = "explicit", - }, - }, - ["7694_AfflictionNotableHolisticHealth"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3667965781", - ["text"] = "1 Added Passive Skill is Holistic Health", - ["type"] = "explicit", - }, - }, - ["7695_AfflictionNotableHolyConquest"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3898572660", - ["text"] = "1 Added Passive Skill is Holy Conquest", - ["type"] = "explicit", - }, - }, - ["7696_AfflictionNotableHolyWord"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3697635701", - ["text"] = "1 Added Passive Skill is Holy Word", - ["type"] = "explicit", - }, - }, - ["7697_AfflictionNotableHoundsMark"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_555800967", - ["text"] = "1 Added Passive Skill is Hound's Mark", - ["type"] = "explicit", - }, - }, - ["7698_AfflictionNotableHulkingCorpses"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3467711950", - ["text"] = "1 Added Passive Skill is Hulking Corpses", - ["type"] = "explicit", - }, - }, - ["7699_AfflictionNotableImprovisor"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_810219447", - ["text"] = "1 Added Passive Skill is Improvisor", - ["type"] = "explicit", - }, - }, - ["7700_AfflictionNotableInsatiableKiller"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3904970959", - ["text"] = "1 Added Passive Skill is Insatiable Killer", - ["type"] = "explicit", - }, - }, - ["7701_AfflictionNotableInspiredOppression"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3872380586", - ["text"] = "1 Added Passive Skill is Inspired Oppression", - ["type"] = "explicit", - }, - }, - ["7702_AfflictionNotableInsulated"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_212648555", - ["text"] = "1 Added Passive Skill is Insulated", - ["type"] = "explicit", - }, - }, - ["7703_AfflictionNotableIntensity"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2785835061", - ["text"] = "1 Added Passive Skill is Intensity", - ["type"] = "explicit", - }, - }, - ["7704_AfflictionNotableInvigoratingPortents"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2262034536", - ["text"] = "1 Added Passive Skill is Invigorating Portents", - ["type"] = "explicit", - }, - }, - ["7705_AfflictionNotableIronBreaker"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3258653591", - ["text"] = "1 Added Passive Skill is Iron Breaker", - ["type"] = "explicit", - }, - }, - ["7706_AfflictionNotableLastingImpression"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_426715778", - ["text"] = "1 Added Passive Skill is Lasting Impression", - ["type"] = "explicit", - }, - }, - ["7707_AfflictionNotableLeadByExample"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2195406641", - ["text"] = "1 Added Passive Skill is Lead By Example", - ["type"] = "explicit", - }, - }, - ["7708_AfflictionNotableLifefromDeath"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2337273077", - ["text"] = "1 Added Passive Skill is Life from Death", - ["type"] = "explicit", - }, - }, - ["7709_AfflictionNotableTempttheStorm"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_348883745", - ["text"] = "1 Added Passive Skill is Tempt the Storm", - ["type"] = "explicit", - }, - }, - ["7710_AfflictionNotableLiquidInspiration"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1094635162", - ["text"] = "1 Added Passive Skill is Liquid Inspiration", - ["type"] = "explicit", - }, - }, - ["7711_AfflictionNotableLowTolerance"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3989400244", - ["text"] = "1 Added Passive Skill is Low Tolerance", - ["type"] = "explicit", - }, - }, - ["7712_AfflictionNotableMageBane"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_684155617", - ["text"] = "1 Added Passive Skill is Mage Bane", - ["type"] = "explicit", - }, - }, - ["7713_AfflictionNotableMageHunter"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2118664144", - ["text"] = "1 Added Passive Skill is Mage Hunter", - ["type"] = "explicit", - }, - }, - ["7714_AfflictionNotableMagnifier"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2886441936", - ["text"] = "1 Added Passive Skill is Magnifier", - ["type"] = "explicit", - }, - }, - ["7715_AfflictionNotableMartialMastery"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1015189426", - ["text"] = "1 Added Passive Skill is Martial Mastery", - ["type"] = "explicit", - }, - }, - ["7716_AfflictionNotableMartialMomentum"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2978494217", - ["text"] = "1 Added Passive Skill is Martial Momentum", - ["type"] = "explicit", - }, - }, - ["7717_AfflictionNotableMartialProwess"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1152182658", - ["text"] = "1 Added Passive Skill is Martial Prowess", - ["type"] = "explicit", - }, - }, - ["7718_AfflictionNotableMasterofCommand"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3257074218", - ["text"] = "1 Added Passive Skill is Master of Command", - ["type"] = "explicit", - }, - }, - ["7719_AfflictionNotableMasterofFear"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2771217016", - ["text"] = "1 Added Passive Skill is Master of Fear", - ["type"] = "explicit", - }, - }, - ["7720_AfflictionNotableMasterofFire"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1462135249", - ["text"] = "1 Added Passive Skill is Master of Fire", - ["type"] = "explicit", - }, - }, - ["7721_AfflictionNotableMasterOfTheMaelstrom"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_185592058", - ["text"] = "1 Added Passive Skill is Master of the Maelstrom", - ["type"] = "explicit", - }, - }, - ["7722_AfflictionNotableMastertheFundamentals"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3585232432", - ["text"] = "1 Added Passive Skill is Master the Fundamentals", - ["type"] = "explicit", - }, - }, - ["7723_AfflictionNotableMendersWellspring"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4291434923", - ["text"] = "1 Added Passive Skill is Mender's Wellspring", - ["type"] = "explicit", - }, - }, - ["7724_AfflictionNotableMilitarism"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4154709486", - ["text"] = "1 Added Passive Skill is Militarism", - ["type"] = "explicit", - }, - }, - ["7725_AfflictionNotableMindfulness"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2595115995", - ["text"] = "1 Added Passive Skill is Mindfulness", - ["type"] = "explicit", - }, - }, - ["7726_AfflictionNotableMobMentality"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1048879642", - ["text"] = "1 Added Passive Skill is Mob Mentality", - ["type"] = "explicit", - }, - }, - ["7727_AfflictionNotableMoltenOnesMark"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3875792669", - ["text"] = "1 Added Passive Skill is Molten One's Mark", - ["type"] = "explicit", - }, - }, - ["7728_AfflictionNotableMysticalWard"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2314111938", - ["text"] = "1 Added Passive Skill is Mystical Ward", - ["type"] = "explicit", - }, - }, - ["7729_AfflictionNotableNaturalVigour"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_510654792", - ["text"] = "1 Added Passive Skill is Natural Vigour", - ["type"] = "explicit", - }, - }, - ["7730_AfflictionNotableNoWitnesses"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1722480396", - ["text"] = "1 Added Passive Skill is No Witnesses", - ["type"] = "explicit", - }, - }, - ["7731_AfflictionNotableNonFlammable"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_731840035", - ["text"] = "1 Added Passive Skill is Non-Flammable", - ["type"] = "explicit", - }, - }, - ["7732_AfflictionNotableNumbingElixir"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1028754276", - ["text"] = "1 Added Passive Skill is Numbing Elixir", - ["type"] = "explicit", - }, - }, - ["7733_AfflictionNotableOnewiththeShield"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1976069869", - ["text"] = "1 Added Passive Skill is One with the Shield", - ["type"] = "explicit", - }, - }, - ["7734_AfflictionNotableOpenness"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_633943719", - ["text"] = "1 Added Passive Skill is Openness", - ["type"] = "explicit", - }, - }, - ["7735_AfflictionNotableOpportunisticFusilade"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4281625943", - ["text"] = "1 Added Passive Skill is Opportunistic Fusilade", - ["type"] = "explicit", - }, - }, - ["7736_AfflictionNotableOverlord"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2250169390", - ["text"] = "1 Added Passive Skill is Overlord", - ["type"] = "explicit", - }, - }, - ["7737_AfflictionNotableOvershock"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3777170562", - ["text"] = "1 Added Passive Skill is Overshock", - ["type"] = "explicit", - }, - }, - ["7738_AfflictionNotableOverwhelmingMalice"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_770408103", - ["text"] = "1 Added Passive Skill is Overwhelming Malice", - ["type"] = "explicit", - }, - }, - ["7739_AfflictionNotableParalysis"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4272503233", - ["text"] = "1 Added Passive Skill is Paralysis", - ["type"] = "explicit", - }, - }, - ["7740_AfflictionNotablePeaceAmidstChaos"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1734275536", - ["text"] = "1 Added Passive Skill is Peace Amidst Chaos", - ["type"] = "explicit", - }, - }, - ["7741_AfflictionNotablePeakVigour"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1722821275", - ["text"] = "1 Added Passive Skill is Peak Vigour", - ["type"] = "explicit", - }, - }, - ["7742_AfflictionNotablePhlebotomist"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3057154383", - ["text"] = "1 Added Passive Skill is Phlebotomist", - ["type"] = "explicit", - }, - }, - ["7743_AfflictionNotablePowerfulAssault"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1005475168", - ["text"] = "1 Added Passive Skill is Powerful Assault", - ["type"] = "explicit", - }, - }, - ["7744_AfflictionNotablePowerfulWard"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_164032122", - ["text"] = "1 Added Passive Skill is Powerful Ward", - ["type"] = "explicit", - }, - }, - ["7745_AfflictionNotablePracticedCaster"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3435403756", - ["text"] = "1 Added Passive Skill is Practiced Caster", - ["type"] = "explicit", - }, - }, - ["7746_AfflictionNotablePreciseCommander"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3860179422", - ["text"] = "1 Added Passive Skill is Destructive Aspect", - ["type"] = "explicit", - }, - }, - ["7747_AfflictionNotablePreciseFocus"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2913581789", - ["text"] = "1 Added Passive Skill is Precise Focus", - ["type"] = "explicit", - }, - }, - ["7748_AfflictionNotablePreciseRetaliation"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2335364359", - ["text"] = "1 Added Passive Skill is Precise Retaliation", - ["type"] = "explicit", - }, - }, - ["7749_AfflictionNotablePressurePoints"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3391925584", - ["text"] = "1 Added Passive Skill is Pressure Points", - ["type"] = "explicit", - }, - }, - ["7750_AfflictionNotablePrimordialBond"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_622362787", - ["text"] = "1 Added Passive Skill is Primordial Bond", - ["type"] = "explicit", - }, - }, - ["7751_AfflictionNotablePrismaticCarapace"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3492924480", - ["text"] = "1 Added Passive Skill is Prismatic Carapace", - ["type"] = "explicit", - }, - }, - ["7752_AfflictionNotablePrismaticDance"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1149662934", - ["text"] = "1 Added Passive Skill is Prismatic Dance", - ["type"] = "explicit", - }, - }, - ["7753_AfflictionNotablePrismaticHeart"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2342448236", - ["text"] = "1 Added Passive Skill is Prismatic Heart", - ["type"] = "explicit", - }, - }, - ["7754_AfflictionNotableProdigiousDefense"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1705633890", - ["text"] = "1 Added Passive Skill is Prodigious Defence", - ["type"] = "explicit", - }, - }, - ["7755_AfflictionNotableProvocateur"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_814369372", - ["text"] = "1 Added Passive Skill is Provocateur", - ["type"] = "explicit", - }, - }, - ["7756_AfflictionNotablePureAgony"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1507409483", - ["text"] = "1 Added Passive Skill is Pure Agony", - ["type"] = "explicit", - }, - }, - ["7757_AfflictionNotablePureAptitude"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3509724289", - ["text"] = "1 Added Passive Skill is Pure Aptitude", - ["type"] = "explicit", - }, - }, - ["7758_AfflictionNotablePureCommander"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3950683692", - ["text"] = "1 Added Passive Skill is Electric Presence", - ["type"] = "explicit", - }, - }, - ["7759_AfflictionNotablePureGuile"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1621496909", - ["text"] = "1 Added Passive Skill is Pure Guile", - ["type"] = "explicit", - }, - }, - ["7760_AfflictionNotablePureMight"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2372915005", - ["text"] = "1 Added Passive Skill is Pure Might", - ["type"] = "explicit", - }, - }, - ["7761_AfflictionNotablePurposefulHarbinger"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_507505131", - ["text"] = "1 Added Passive Skill is Purposeful Harbinger", - ["type"] = "explicit", - }, - }, - ["7762_AfflictionNotableQuickandDeadly"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2169345147", - ["text"] = "1 Added Passive Skill is Quick and Deadly", - ["type"] = "explicit", - }, - }, - ["7763_AfflictionNotableQuickGetaway"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1626818279", - ["text"] = "1 Added Passive Skill is Quick Getaway", - ["type"] = "explicit", - }, - }, - ["7764_AfflictionNotableRapidInfusion"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1570474940", - ["text"] = "1 Added Passive Skill is Unrestrained Focus", - ["type"] = "explicit", - }, - }, - ["7765_AfflictionNotableRattlingBellow"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4288473380", - ["text"] = "1 Added Passive Skill is Rattling Bellow", - ["type"] = "explicit", - }, - }, - ["7766_AfflictionNotableRazeandPillage"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1038897629", - ["text"] = "1 Added Passive Skill is Raze and Pillage", - ["type"] = "explicit", - }, - }, - ["7767_AfflictionNotableReadiness"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_845306697", - ["text"] = "1 Added Passive Skill is Readiness", - ["type"] = "explicit", - }, - }, - ["7768_AfflictionNotableRemarkable"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_691431951", - ["text"] = "1 Added Passive Skill is Remarkable", - ["type"] = "explicit", - }, - }, - ["7769_AfflictionNotableRend"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4263287206", - ["text"] = "1 Added Passive Skill is Rend", - ["type"] = "explicit", - }, - }, - ["7770_AfflictionNotableRenewal"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3607300552", - ["text"] = "1 Added Passive Skill is Renewal", - ["type"] = "explicit", - }, - }, - ["7771_AfflictionNotableRepeater"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2233272527", - ["text"] = "1 Added Passive Skill is Repeater", - ["type"] = "explicit", - }, - }, - ["7772_AfflictionNotableReplenishingPresence"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1496043857", - ["text"] = "1 Added Passive Skill is Replenishing Presence", - ["type"] = "explicit", - }, - }, - ["7773_AfflictionNotableRiotQueller"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_254194892", - ["text"] = "1 Added Passive Skill is Riot Queller", - ["type"] = "explicit", - }, - }, - ["7774_AfflictionNotableRotResistant"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_713945233", - ["text"] = "1 Added Passive Skill is Rot-Resistant", - ["type"] = "explicit", - }, - }, - ["7775_AfflictionNotableRoteReinforcement"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2478282326", - ["text"] = "1 Added Passive Skill is Rote Reinforcement", - ["type"] = "explicit", - }, - }, - ["7776_AfflictionNotableRottenClaws"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2289610642", - ["text"] = "1 Added Passive Skill is Rotten Claws", - ["type"] = "explicit", - }, - }, - ["7777_AfflictionNotableRunThrough"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1488030420", - ["text"] = "1 Added Passive Skill is Run Through", - ["type"] = "explicit", - }, - }, - ["7778_AfflictionNotableSadist"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3638731729", - ["text"] = "1 Added Passive Skill is Sadist", - ["type"] = "explicit", - }, - }, - ["7779_AfflictionNotableSage"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_478147593", - ["text"] = "1 Added Passive Skill is Sage", - ["type"] = "explicit", - }, - }, - ["7780_AfflictionNotableSapPsyche"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_715786975", - ["text"] = "1 Added Passive Skill is Sap Psyche", - ["type"] = "explicit", - }, - }, - ["7781_AfflictionNotableSavageResponse"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4222635921", - ["text"] = "1 Added Passive Skill is Savage Response", - ["type"] = "explicit", - }, - }, - ["7782_AfflictionNotableSavourtheMoment"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3539175001", - ["text"] = "1 Added Passive Skill is Savour the Moment", - ["type"] = "explicit", - }, - }, - ["7783_AfflictionNotableScintillatingIdea"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2589589781", - ["text"] = "1 Added Passive Skill is Scintillating Idea", - ["type"] = "explicit", - }, - }, - ["7784_AfflictionNotableSealMender"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_876846990", - ["text"] = "1 Added Passive Skill is Seal Mender", - ["type"] = "explicit", - }, - }, - ["7785_AfflictionNotableSecondSkin"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2773515950", - ["text"] = "1 Added Passive Skill is Second Skin", - ["type"] = "explicit", - }, - }, - ["7786_AfflictionNotableSeekerRunes"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2261237498", - ["text"] = "1 Added Passive Skill is Seeker Runes", - ["type"] = "explicit", - }, - }, - ["7787_AfflictionNotableSelfFulfillingProphecy"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2644533453", - ["text"] = "1 Added Passive Skill is Self-Fulfilling Prophecy", - ["type"] = "explicit", - }, - }, - ["7788_AfflictionNotableSepticSpells"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4290522695", - ["text"] = "1 Added Passive Skill is Septic Spells", - ["type"] = "explicit", - }, - }, - ["7789_AfflictionNotableSetandForget"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1101250813", - ["text"] = "1 Added Passive Skill is Set and Forget", - ["type"] = "explicit", - }, - }, - ["7790_AfflictionNotableShiftingShadow"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1476913894", - ["text"] = "1 Added Passive Skill is Shifting Shadow", - ["type"] = "explicit", - }, - }, - ["7791_AfflictionNotableShriekingBolts"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2783012144", - ["text"] = "1 Added Passive Skill is Shrieking Bolts", - ["type"] = "explicit", - }, - }, - ["7792_AfflictionNotableSkeletalAtrophy"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1290215329", - ["text"] = "1 Added Passive Skill is Skeletal Atrophy", - ["type"] = "explicit", - }, - }, - ["7793_AfflictionNotableSkullbreaker"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_315697256", - ["text"] = "1 Added Passive Skill is Skullbreaker", - ["type"] = "explicit", - }, - }, - ["7794_AfflictionNotableSleeplessSentries"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3993957711", - ["text"] = "1 Added Passive Skill is Sleepless Sentries", - ["type"] = "explicit", - }, - }, - ["7795_AfflictionNotableSmitetheWeak"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_540300548", - ["text"] = "1 Added Passive Skill is Smite the Weak", - ["type"] = "explicit", - }, - }, - ["7796_AfflictionNotableSmokingRemains"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2322980282", - ["text"] = "1 Added Passive Skill is Smoking Remains", - ["type"] = "explicit", - }, - }, - ["7797_AfflictionNotableSnaringSpirits"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3319205340", - ["text"] = "1 Added Passive Skill is Snaring Spirits", - ["type"] = "explicit", - }, - }, - ["7798_AfflictionNotableSnowstorm"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1595367309", - ["text"] = "1 Added Passive Skill is Snowstorm", - ["type"] = "explicit", - }, - }, - ["7799_AfflictionNotableSpecialReserve"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4235300427", - ["text"] = "1 Added Passive Skill is Special Reserve", - ["type"] = "explicit", - }, - }, - ["7800_AfflictionNotableSpikedConcoction"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3372255769", - ["text"] = "1 Added Passive Skill is Spiked Concoction", - ["type"] = "explicit", - }, - }, - ["7801_AfflictionNotableSpringBack"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3603695769", - ["text"] = "1 Added Passive Skill is Spring Back", - ["type"] = "explicit", - }, - }, - ["7802_AfflictionNotableStalwartCommander"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2350668735", - ["text"] = "1 Added Passive Skill is Volatile Presence", - ["type"] = "explicit", - }, - }, - ["7803_AfflictionNotableSteadyTorment"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3500334379", - ["text"] = "1 Added Passive Skill is Steady Torment", - ["type"] = "explicit", - }, - }, - ["7804_AfflictionNotableStoicFocus"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1088949570", - ["text"] = "1 Added Passive Skill is Stoic Focus", - ["type"] = "explicit", - }, - }, - ["7805_AfflictionNotableStormDrinker"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2087561637", - ["text"] = "1 Added Passive Skill is Storm Drinker", - ["type"] = "explicit", - }, - }, - ["7806_AfflictionNotableStormrider"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_889728548", - ["text"] = "1 Added Passive Skill is Stormrider", - ["type"] = "explicit", - }, - }, - ["7807_AfflictionNotableStormsHand"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1122051203", - ["text"] = "1 Added Passive Skill is Storm's Hand", - ["type"] = "explicit", - }, - }, - ["7808_AfflictionNotableStreamlined"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1397498432", - ["text"] = "1 Added Passive Skill is Streamlined", - ["type"] = "explicit", - }, - }, - ["7809_AfflictionNotableStrikeLeader"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_282062371", - ["text"] = "1 Added Passive Skill is Strike Leader", - ["type"] = "explicit", - }, - }, - ["7810_AfflictionNotableStubbornStudent"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2383914651", - ["text"] = "1 Added Passive Skill is Stubborn Student", - ["type"] = "explicit", - }, - }, - ["7811_AfflictionNotableStudentofDecay"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3202667190", - ["text"] = "1 Added Passive Skill is Student of Decay", - ["type"] = "explicit", - }, - }, - ["7812_AfflictionNotableSublimeSensation"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1364858171", - ["text"] = "1 Added Passive Skill is Sublime Sensation", - ["type"] = "explicit", - }, - }, - ["7813_AfflictionNotableSummerCommander"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3881737087", - ["text"] = "1 Added Passive Skill is Mortifying Aspect", - ["type"] = "explicit", - }, - }, - ["7814_AfflictionNotableSupercharge"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3226074658", - ["text"] = "1 Added Passive Skill is Supercharge", - ["type"] = "explicit", - }, - }, - ["7815_AfflictionNotableSurefootedStriker"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3410752193", - ["text"] = "1 Added Passive Skill is Surefooted Striker", - ["type"] = "explicit", - }, - }, - ["7816_AfflictionNotableSurgingVitality"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2410501331", - ["text"] = "1 Added Passive Skill is Surging Vitality", - ["type"] = "explicit", - }, - }, - ["7817_AfflictionNotableSurpriseSabotage"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3051562738", - ["text"] = "1 Added Passive Skill is Surprise Sabotage", - ["type"] = "explicit", - }, - }, - ["7818_AfflictionNotableTemperedArrowheads"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2631806437", - ["text"] = "1 Added Passive Skill is Tempered Arrowheads", - ["type"] = "explicit", - }, - }, - ["7819_AfflictionNotableThaumophage"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_177215332", - ["text"] = "1 Added Passive Skill is Thaumophage", - ["type"] = "explicit", - }, - }, - ["7820_AfflictionNotableThunderstruck"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1741700339", - ["text"] = "1 Added Passive Skill is Thunderstruck", - ["type"] = "explicit", - }, - }, - ["7821_AfflictionNotableTitanicSwings"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2930275641", - ["text"] = "1 Added Passive Skill is Titanic Swings", - ["type"] = "explicit", - }, - }, - ["7822_AfflictionNotableTouchofCruelty"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2780712583", - ["text"] = "1 Added Passive Skill is Touch of Cruelty", - ["type"] = "explicit", - }, - }, - ["7823_AfflictionNotableToweringThreat"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3536778624", - ["text"] = "1 Added Passive Skill is Towering Threat", - ["type"] = "explicit", - }, - }, - ["7824_AfflictionNotableUnholyGrace"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4186213466", - ["text"] = "1 Added Passive Skill is Unholy Grace", - ["type"] = "explicit", - }, - }, - ["7825_AfflictionNotableUnspeakableGifts"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_729163974", - ["text"] = "1 Added Passive Skill is Unspeakable Gifts", - ["type"] = "explicit", - }, - }, - ["7826_AfflictionNotableUntouchable"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2758966888", - ["text"] = "1 Added Passive Skill is Untouchable", - ["type"] = "explicit", - }, - }, - ["7827_AfflictionNotableUnwaveringFocus"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_367638058", - ["text"] = "1 Added Passive Skill is Unwavering Focus", - ["type"] = "explicit", - }, - }, - ["7828_AfflictionNotableUnwaveringlyEvil"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2788982914", - ["text"] = "1 Added Passive Skill is Unwaveringly Evil", - ["type"] = "explicit", - }, - }, - ["7829_AfflictionNotableVastPower"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1996576560", - ["text"] = "1 Added Passive Skill is Vast Power", - ["type"] = "explicit", - }, - }, - ["7830_AfflictionNotableVengefulCommander"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2620267328", - ["text"] = "1 Added Passive Skill is Righteous Path", - ["type"] = "explicit", - }, - }, - ["7831_AfflictionNotableVeteranDefender"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_664010431", - ["text"] = "1 Added Passive Skill is Veteran Defender", - ["type"] = "explicit", - }, - }, - ["7832_AfflictionNotableViciousBite"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_882876854", - ["text"] = "1 Added Passive Skill is Vicious Bite", - ["type"] = "explicit", - }, - }, - ["7833_AfflictionNotableViciousGuard"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4054656914", - ["text"] = "1 Added Passive Skill is Vicious Guard", - ["type"] = "explicit", - }, - }, - ["7834_AfflictionNotableViciousSkewering"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_567971948", - ["text"] = "1 Added Passive Skill is Vicious Skewering", - ["type"] = "explicit", - }, - }, - ["7835_AfflictionNotableVictimMaker"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1936135020", - ["text"] = "1 Added Passive Skill is Victim Maker", - ["type"] = "explicit", - }, - }, - ["7836_AfflictionNotableVileReinvigoration"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_647201233", - ["text"] = "1 Added Passive Skill is Vile Reinvigoration", - ["type"] = "explicit", - }, - }, - ["7837_AfflictionNotableVitalFocus"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2134141047", - ["text"] = "1 Added Passive Skill is Vital Focus", - ["type"] = "explicit", - }, - }, - ["7838_AfflictionNotableVividHues"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3957006524", - ["text"] = "1 Added Passive Skill is Vivid Hues", - ["type"] = "explicit", - }, - }, - ["7839_AfflictionNotableWallofMuscle"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1363668533", - ["text"] = "1 Added Passive Skill is Wall of Muscle", - ["type"] = "explicit", - }, - }, - ["7840_AfflictionNotableWardbreaker"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2454339320", - ["text"] = "1 Added Passive Skill is Forbidden Words", - ["type"] = "explicit", - }, - }, - ["7841_AfflictionNotableWarningCall"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_578355556", - ["text"] = "1 Added Passive Skill is Warning Call", - ["type"] = "explicit", - }, - }, - ["7842_AfflictionNotableWastingAffliction"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2066820199", - ["text"] = "1 Added Passive Skill is Wasting Affliction", - ["type"] = "explicit", - }, - }, - ["7843_AfflictionNotableWeightAdvantage"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2244243943", - ["text"] = "1 Added Passive Skill is Weight Advantage", - ["type"] = "explicit", - }, - }, - ["7844_AfflictionNotableWhispersofDeath"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4291066912", - ["text"] = "1 Added Passive Skill is Evil Eye", - ["type"] = "explicit", - }, - }, - ["7845_AfflictionNotableWickedPall"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1616734644", - ["text"] = "1 Added Passive Skill is Wicked Pall", - ["type"] = "explicit", - }, - }, - ["7846_AfflictionNotableWidespreadDestruction"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1678643716", - ["text"] = "1 Added Passive Skill is Widespread Destruction", - ["type"] = "explicit", - }, - }, - ["7847_AfflictionNotableWillShaper"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1162352537", - ["text"] = "1 Added Passive Skill is Will Shaper", - ["type"] = "explicit", - }, - }, - ["7848_AfflictionNotableWindup"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1938661964", - ["text"] = "1 Added Passive Skill is Wind-up", - ["type"] = "explicit", - }, - }, - ["7849_AfflictionNotableWinterCommander"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_792262925", - ["text"] = "1 Added Passive Skill is Frantic Aspect", - ["type"] = "explicit", - }, - }, - ["7850_AfflictionNotableWinterProwler"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_755881431", - ["text"] = "1 Added Passive Skill is Winter Prowler", - ["type"] = "explicit", - }, - }, - ["7851_AfflictionNotableWishforDeath"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_608164368", - ["text"] = "1 Added Passive Skill is Wish for Death", - ["type"] = "explicit", - }, - }, - ["7852_AfflictionNotableWizardry"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3078065247", - ["text"] = "1 Added Passive Skill is Wizardry", - ["type"] = "explicit", - }, - }, - ["7853_AfflictionNotableWoundAggravation"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_69078820", - ["text"] = "1 Added Passive Skill is Wound Aggravation", - ["type"] = "explicit", - }, - }, - ["7854_AfflictionNotableWrappedinFlame"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_241783558", - ["text"] = "1 Added Passive Skill is Wrapped in Flame", - ["type"] = "explicit", - }, - }, - }, + ["7555_AfflictionNotableAdrenaline"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4022743870", + ["text"] = "1 Added Passive Skill is Adrenaline", + ["type"] = "explicit", + }, + }, + ["7556_AfflictionNotableAdvanceGuard"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1625939562", + ["text"] = "1 Added Passive Skill is Advance Guard", + ["type"] = "explicit", + }, + }, + ["7557_AfflictionNotableAerialist"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3848677307", + ["text"] = "1 Added Passive Skill is Aerialist", + ["type"] = "explicit", + }, + }, + ["7558_AfflictionNotableAerodynamics"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4120556534", + ["text"] = "1 Added Passive Skill is Aerodynamics", + ["type"] = "explicit", + }, + }, + ["7559_AfflictionNotableAgentofDestruction"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3122491961", + ["text"] = "1 Added Passive Skill is Agent of Destruction", + ["type"] = "explicit", + }, + }, + ["7560_AfflictionNotableAggressiveDefence"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4154008618", + ["text"] = "1 Added Passive Skill is Aggressive Defence", + ["type"] = "explicit", + }, + }, + ["7561_AfflictionNotableAlchemist"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2912949210", + ["text"] = "1 Added Passive Skill is Alchemist", + ["type"] = "explicit", + }, + }, + ["7562_AfflictionNotableAncestralEcho"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_957679205", + ["text"] = "1 Added Passive Skill is Ancestral Echo", + ["type"] = "explicit", + }, + }, + ["7563_AfflictionNotableAncestralGuidance"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2387747995", + ["text"] = "1 Added Passive Skill is Ancestral Guidance", + ["type"] = "explicit", + }, + }, + ["7564_AfflictionNotableAncestralInspiration"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_77045106", + ["text"] = "1 Added Passive Skill is Ancestral Inspiration", + ["type"] = "explicit", + }, + }, + ["7565_AfflictionNotableAncestralMight"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3998316", + ["text"] = "1 Added Passive Skill is Ancestral Might", + ["type"] = "explicit", + }, + }, + ["7566_AfflictionNotableAncestralPreservation"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3746703776", + ["text"] = "1 Added Passive Skill is Ancestral Preservation", + ["type"] = "explicit", + }, + }, + ["7567_AfflictionNotableAncestralReach"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3294884567", + ["text"] = "1 Added Passive Skill is Ancestral Reach", + ["type"] = "explicit", + }, + }, + ["7568_AfflictionNotableAntifreeze"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2622946553", + ["text"] = "1 Added Passive Skill is Antifreeze", + ["type"] = "explicit", + }, + }, + ["7569_AfflictionNotableAntivenom"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_774369953", + ["text"] = "1 Added Passive Skill is Antivenom", + ["type"] = "explicit", + }, + }, + ["7570_AfflictionNotableArcaneAdept"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_393565679", + ["text"] = "1 Added Passive Skill is Arcane Adept", + ["type"] = "explicit", + }, + }, + ["7571_AfflictionNotableArcaneHeroism"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3901992019", + ["text"] = "1 Added Passive Skill is Arcane Heroism", + ["type"] = "explicit", + }, + }, + ["7572_AfflictionNotableArcanePyrotechnics"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2043503530", + ["text"] = "1 Added Passive Skill is Arcane Pyrotechnics", + ["type"] = "explicit", + }, + }, + ["7573_AfflictionNotableArcingShot"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3212859169", + ["text"] = "1 Added Passive Skill is Arcing Shot", + ["type"] = "explicit", + }, + }, + ["7574_AfflictionNotableAssertDominance"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4222265138", + ["text"] = "1 Added Passive Skill is Assert Dominance", + ["type"] = "explicit", + }, + }, + ["7575_AfflictionNotableAstonishingAffliction"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2428334013", + ["text"] = "1 Added Passive Skill is Astonishing Affliction", + ["type"] = "explicit", + }, + }, + ["7576_AfflictionNotableBasicsofPain"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3084359503", + ["text"] = "1 Added Passive Skill is Basics of Pain", + ["type"] = "explicit", + }, + }, + ["7577_AfflictionNotableBattleHardened"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4188581520", + ["text"] = "1 Added Passive Skill is Battle-Hardened", + ["type"] = "explicit", + }, + }, + ["7578_AfflictionNotableBattlefieldDominator"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1499057234", + ["text"] = "1 Added Passive Skill is Battlefield Dominator", + ["type"] = "explicit", + }, + }, + ["7579_AfflictionNotableBlacksmith"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1127706436", + ["text"] = "1 Added Passive Skill is Blacksmith", + ["type"] = "explicit", + }, + }, + ["7580_AfflictionNotableBlanketedSnow"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1085167979", + ["text"] = "1 Added Passive Skill is Blanketed Snow", + ["type"] = "explicit", + }, + }, + ["7581_AfflictionNotableBlastFreeze"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_693808153", + ["text"] = "1 Added Passive Skill is Blast-Freeze", + ["type"] = "explicit", + }, + }, + ["7582_AfflictionNotableBlessed"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_775689239", + ["text"] = "1 Added Passive Skill is Blessed", + ["type"] = "explicit", + }, + }, + ["7583_AfflictionNotableBlessedRebirth"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1424794574", + ["text"] = "1 Added Passive Skill is Blessed Rebirth", + ["type"] = "explicit", + }, + }, + ["7584_AfflictionNotableBloodArtist"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2284771334", + ["text"] = "1 Added Passive Skill is Blood Artist", + ["type"] = "explicit", + }, + }, + ["7585_AfflictionNotableBloodscent"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3967765261", + ["text"] = "1 Added Passive Skill is Bloodscent", + ["type"] = "explicit", + }, + }, + ["7586_AfflictionNotableBlowback"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1612414696", + ["text"] = "1 Added Passive Skill is Blowback", + ["type"] = "explicit", + }, + }, + ["7587_AfflictionNotableBodyguards"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_791125124", + ["text"] = "1 Added Passive Skill is Bodyguards", + ["type"] = "explicit", + }, + }, + ["7588_AfflictionNotableBornofChaos"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2449392400", + ["text"] = "1 Added Passive Skill is Born of Chaos", + ["type"] = "explicit", + }, + }, + ["7589_AfflictionNotableBrandLoyalty"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3198006994", + ["text"] = "1 Added Passive Skill is Brand Loyalty", + ["type"] = "explicit", + }, + }, + ["7590_AfflictionNotableBrewedforPotency"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3250272113", + ["text"] = "1 Added Passive Skill is Brewed for Potency", + ["type"] = "explicit", + }, + }, + ["7591_AfflictionNotableBroadside"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2205982416", + ["text"] = "1 Added Passive Skill is Broadside", + ["type"] = "explicit", + }, + }, + ["7592_AfflictionNotableBrushwithDeath"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2900833792", + ["text"] = "1 Added Passive Skill is Brush with Death", + ["type"] = "explicit", + }, + }, + ["7593_AfflictionNotableBrutalInfamy"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2068574831", + ["text"] = "1 Added Passive Skill is Brutal Infamy", + ["type"] = "explicit", + }, + }, + ["7594_AfflictionNotableBurdenProjection"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2008682345", + ["text"] = "1 Added Passive Skill is Burden Projection", + ["type"] = "explicit", + }, + }, + ["7595_AfflictionNotableBurningBright"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4199056048", + ["text"] = "1 Added Passive Skill is Burning Bright", + ["type"] = "explicit", + }, + }, + ["7596_AfflictionNotableCalamitous"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3359207393", + ["text"] = "1 Added Passive Skill is Calamitous", + ["type"] = "explicit", + }, + }, + ["7597_AfflictionNotableCalltotheSlaughter"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3317068522", + ["text"] = "1 Added Passive Skill is Call to the Slaughter", + ["type"] = "explicit", + }, + }, + ["7598_AfflictionNotableCapacitor"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4025536654", + ["text"] = "1 Added Passive Skill is Capacitor", + ["type"] = "explicit", + }, + }, + ["7599_AfflictionNotableCarefulHandling"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_456502758", + ["text"] = "1 Added Passive Skill is Careful Handling", + ["type"] = "explicit", + }, + }, + ["7600_AfflictionNotableChillingPresence"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2834490860", + ["text"] = "1 Added Passive Skill is Chilling Presence", + ["type"] = "explicit", + }, + }, + ["7601_AfflictionNotableChipAway"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_968069586", + ["text"] = "1 Added Passive Skill is Chip Away", + ["type"] = "explicit", + }, + }, + ["7602_AfflictionNotableCirclingOblivion"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2129392647", + ["text"] = "1 Added Passive Skill is Circling Oblivion", + ["type"] = "explicit", + }, + }, + ["7603_AfflictionNotableClarityofPurpose"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_684087686", + ["text"] = "1 Added Passive Skill is Clarity of Purpose", + ["type"] = "explicit", + }, + }, + ["7604_AfflictionNotableColdBloodedKiller"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_836566759", + ["text"] = "1 Added Passive Skill is Cold-Blooded Killer", + ["type"] = "explicit", + }, + }, + ["7605_AfflictionNotableColdConduction"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1274505521", + ["text"] = "1 Added Passive Skill is Cold Conduction", + ["type"] = "explicit", + }, + }, + ["7606_AfflictionNotableColdtotheCore"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_744783843", + ["text"] = "1 Added Passive Skill is Cold to the Core", + ["type"] = "explicit", + }, + }, + ["7607_AfflictionNotableCombatRhythm"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3122505794", + ["text"] = "1 Added Passive Skill is Combat Rhythm", + ["type"] = "explicit", + }, + }, + ["7608_AfflictionNotableCompoundInjury"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4018305528", + ["text"] = "1 Added Passive Skill is Compound Injury", + ["type"] = "explicit", + }, + }, + ["7609_AfflictionNotableConfidentCombatant"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3930242735", + ["text"] = "1 Added Passive Skill is Confident Combatant", + ["type"] = "explicit", + }, + }, + ["7610_AfflictionNotableConjuredWall"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4105031548", + ["text"] = "1 Added Passive Skill is Conjured Wall", + ["type"] = "explicit", + }, + }, + ["7611_AfflictionNotableConservationofEnergy"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2083777017", + ["text"] = "1 Added Passive Skill is Conservation of Energy", + ["type"] = "explicit", + }, + }, + ["7612_AfflictionNotableCookedAlive"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2938895712", + ["text"] = "1 Added Passive Skill is Cooked Alive", + ["type"] = "explicit", + }, + }, + ["7613_AfflictionNotableCorrosiveElements"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1777139212", + ["text"] = "1 Added Passive Skill is Corrosive Elements", + ["type"] = "explicit", + }, + }, + ["7614_AfflictionNotableCremator"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1153801980", + ["text"] = "1 Added Passive Skill is Cremator", + ["type"] = "explicit", + }, + }, + ["7615_AfflictionNotableCryWolf"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1821748178", + ["text"] = "1 Added Passive Skill is Cry Wolf", + ["type"] = "explicit", + }, + }, + ["7616_AfflictionNotableCultLeader"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2026112251", + ["text"] = "1 Added Passive Skill is Cult-Leader", + ["type"] = "explicit", + }, + }, + ["7617_AfflictionNotableDaringIdeas"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2534405517", + ["text"] = "1 Added Passive Skill is Daring Ideas", + ["type"] = "explicit", + }, + }, + ["7618_AfflictionNotableDarkDiscourse"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_462115791", + ["text"] = "1 Added Passive Skill is Doedre's Spite", + ["type"] = "explicit", + }, + }, + ["7619_AfflictionNotableDarkIdeation"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1603621602", + ["text"] = "1 Added Passive Skill is Dark Ideation", + ["type"] = "explicit", + }, + }, + ["7620_AfflictionNotableDarkMessenger"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3784610129", + ["text"] = "1 Added Passive Skill is Dark Messenger", + ["type"] = "explicit", + }, + }, + ["7621_AfflictionNotableDartingMovements"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_846491278", + ["text"] = "1 Added Passive Skill is Darting Movements", + ["type"] = "explicit", + }, + }, + ["7622_AfflictionNotableDeadlyRepartee"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1013470938", + ["text"] = "1 Added Passive Skill is Deadly Repartee", + ["type"] = "explicit", + }, + }, + ["7623_AfflictionNotableDeepChill"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1703766309", + ["text"] = "1 Added Passive Skill is Deep Chill", + ["type"] = "explicit", + }, + }, + ["7624_AfflictionNotableDeepCuts"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_410939404", + ["text"] = "1 Added Passive Skill is Deep Cuts", + ["type"] = "explicit", + }, + }, + ["7625_AfflictionNotableMiseryEverlasting"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3832665876", + ["text"] = "1 Added Passive Skill is Misery Everlasting", + ["type"] = "explicit", + }, + }, + ["7626_AfflictionNotableUncompromising"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_382360671", + ["text"] = "1 Added Passive Skill is Uncompromising", + ["type"] = "explicit", + }, + }, + ["7627_AfflictionNotableDevastator"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3711553948", + ["text"] = "1 Added Passive Skill is Devastator", + ["type"] = "explicit", + }, + }, + ["7628_AfflictionNotableDisciples"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3177526694", + ["text"] = "1 Added Passive Skill is Disciples", + ["type"] = "explicit", + }, + }, + ["7629_AfflictionNotableSelfControl"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3025453294", + ["text"] = "1 Added Passive Skill is Self-Control", + ["type"] = "explicit", + }, + }, + ["7630_AfflictionNotableDiseaseVector"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_183591019", + ["text"] = "1 Added Passive Skill is Disease Vector", + ["type"] = "explicit", + }, + }, + ["7631_AfflictionNotableDisorientingDisplay"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3206911230", + ["text"] = "1 Added Passive Skill is Disorienting Display", + ["type"] = "explicit", + }, + }, + ["7632_AfflictionNotableDisorientingWounds"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3351136461", + ["text"] = "1 Added Passive Skill is Disorienting Wounds", + ["type"] = "explicit", + }, + }, + ["7633_AfflictionNotableDistilledPerfection"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3652138990", + ["text"] = "1 Added Passive Skill is Distilled Perfection", + ["type"] = "explicit", + }, + }, + ["7634_AfflictionNotableDoedresApathy"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1381945089", + ["text"] = "1 Added Passive Skill is Doedre's Apathy", + ["type"] = "explicit", + }, + }, + ["7635_AfflictionNotableDoedresGluttony"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2695848124", + ["text"] = "1 Added Passive Skill is Doedre's Gluttony", + ["type"] = "explicit", + }, + }, + ["7636_AfflictionNotableDoryanisLesson"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_228455793", + ["text"] = "1 Added Passive Skill is Doryani's Lesson", + ["type"] = "explicit", + }, + }, + ["7637_AfflictionNotableDragonHunter"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1038955006", + ["text"] = "1 Added Passive Skill is Dragon Hunter", + ["type"] = "explicit", + }, + }, + ["7638_AfflictionNotableDreadMarch"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3087667389", + ["text"] = "1 Added Passive Skill is Dread March", + ["type"] = "explicit", + }, + }, + ["7639_AfflictionNotableDrivetheDestruction"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1911162866", + ["text"] = "1 Added Passive Skill is Drive the Destruction", + ["type"] = "explicit", + }, + }, + ["7640_AfflictionNotableEldritchInspiration"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3737604164", + ["text"] = "1 Added Passive Skill is Eldritch Inspiration", + ["type"] = "explicit", + }, + }, + ["7641_AfflictionNotableElegantForm"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_289714529", + ["text"] = "1 Added Passive Skill is Elegant Form", + ["type"] = "explicit", + }, + }, + ["7642_AfflictionNotableEmpoweredEnvoy"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2032453153", + ["text"] = "1 Added Passive Skill is Empowered Envoy", + ["type"] = "explicit", + }, + }, + ["7643_AfflictionNotableEndbringer"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2150878631", + ["text"] = "1 Added Passive Skill is Endbringer", + ["type"] = "explicit", + }, + }, + ["7644_AfflictionNotableEnduringComposure"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2043284086", + ["text"] = "1 Added Passive Skill is Enduring Composure", + ["type"] = "explicit", + }, + }, + ["7645_AfflictionNotableEnduringFocus"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2522970386", + ["text"] = "1 Added Passive Skill is Enduring Focus", + ["type"] = "explicit", + }, + }, + ["7646_AfflictionNotableEnduringWard"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_252724319", + ["text"] = "1 Added Passive Skill is Enduring Ward", + ["type"] = "explicit", + }, + }, + ["7647_AfflictionNotableEnergyFromNaught"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2195518432", + ["text"] = "1 Added Passive Skill is Energy From Naught", + ["type"] = "explicit", + }, + }, + ["7648_AfflictionNotableEssenceRush"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1096136223", + ["text"] = "1 Added Passive Skill is Essence Rush", + ["type"] = "explicit", + }, + }, + ["7649_AfflictionNotableEternalSuffering"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2144634814", + ["text"] = "1 Added Passive Skill is Eternal Suffering", + ["type"] = "explicit", + }, + }, + ["7650_AfflictionNotableEvilEye"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_156080652", + ["text"] = "1 Added Passive Skill is Evil Eye", + ["type"] = "explicit", + }, + }, + ["7651_AfflictionNotableExpansiveMight"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_394918362", + ["text"] = "1 Added Passive Skill is Expansive Might", + ["type"] = "explicit", + }, + }, + ["7652_AfflictionNotableExpendability"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2020075345", + ["text"] = "1 Added Passive Skill is Expendability", + ["type"] = "explicit", + }, + }, + ["7653_AfflictionNotableExpertSabotage"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2084371547", + ["text"] = "1 Added Passive Skill is Expert Sabotage", + ["type"] = "explicit", + }, + }, + ["7654_AfflictionNotableExplosiveForce"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2017927451", + ["text"] = "1 Added Passive Skill is Explosive Force", + ["type"] = "explicit", + }, + }, + ["7655_AfflictionNotableExposureTherapy"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_131358113", + ["text"] = "1 Added Passive Skill is Exposure Therapy", + ["type"] = "explicit", + }, + }, + ["7656_AfflictionNotableEyeoftheStorm"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3818661553", + ["text"] = "1 Added Passive Skill is Eye of the Storm", + ["type"] = "explicit", + }, + }, + ["7657_AfflictionNotableEyetoEye"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_392942015", + ["text"] = "1 Added Passive Skill is Eye to Eye", + ["type"] = "explicit", + }, + }, + ["7658_AfflictionNotableFanofBlades"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2484082827", + ["text"] = "1 Added Passive Skill is Fan of Blades", + ["type"] = "explicit", + }, + }, + ["7659_AfflictionNotableFantheFlames"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2918755450", + ["text"] = "1 Added Passive Skill is Fan the Flames", + ["type"] = "explicit", + }, + }, + ["7660_AfflictionNotableFasting"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_37078857", + ["text"] = "1 Added Passive Skill is Fasting", + ["type"] = "explicit", + }, + }, + ["7661_AfflictionNotableFearsomeWarrior"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3134222965", + ["text"] = "1 Added Passive Skill is Fearsome Warrior", + ["type"] = "explicit", + }, + }, + ["7662_AfflictionNotableFeastofFlesh"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2396755365", + ["text"] = "1 Added Passive Skill is Feast of Flesh", + ["type"] = "explicit", + }, + }, + ["7663_AfflictionNotableFeastingFiends"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_383245807", + ["text"] = "1 Added Passive Skill is Feasting Fiends", + ["type"] = "explicit", + }, + }, + ["7664_AfflictionNotableFeedtheFury"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3944525413", + ["text"] = "1 Added Passive Skill is Feed the Fury", + ["type"] = "explicit", + }, + }, + ["7665_AfflictionNotableFettle"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1353571444", + ["text"] = "1 Added Passive Skill is Fettle", + ["type"] = "explicit", + }, + }, + ["7666_AfflictionNotableFieryAegis"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3233538204", + ["text"] = "1 Added Passive Skill is Fiery Aegis", + ["type"] = "explicit", + }, + }, + ["7667_AfflictionNotableFireAttunement"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3188756614", + ["text"] = "1 Added Passive Skill is Fire Attunement", + ["type"] = "explicit", + }, + }, + ["7668_AfflictionNotableFirstAmongEquals"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1134501245", + ["text"] = "1 Added Passive Skill is Spiteful Presence", + ["type"] = "explicit", + }, + }, + ["7669_AfflictionNotableLordofDrought"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2055715585", + ["text"] = "1 Added Passive Skill is Lord of Drought", + ["type"] = "explicit", + }, + }, + ["7670_AfflictionNotableFlexibleSentry"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_982290947", + ["text"] = "1 Added Passive Skill is Flexible Sentry", + ["type"] = "explicit", + }, + }, + ["7671_AfflictionNotableFlowofLife"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2350430215", + ["text"] = "1 Added Passive Skill is Flow of Life", + ["type"] = "explicit", + }, + }, + ["7672_AfflictionNotableFollowThrough"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3984980429", + ["text"] = "1 Added Passive Skill is Follow-Through", + ["type"] = "explicit", + }, + }, + ["7673_AfflictionNotableForceMultiplier"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1904581068", + ["text"] = "1 Added Passive Skill is Force Multiplier", + ["type"] = "explicit", + }, + }, + ["7674_AfflictionNotableBlizzardCaller"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3758712376", + ["text"] = "1 Added Passive Skill is Blizzard Caller", + ["type"] = "explicit", + }, + }, + ["7675_AfflictionNotableFueltheFight"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3599340381", + ["text"] = "1 Added Passive Skill is Fuel the Fight", + ["type"] = "explicit", + }, + }, + ["7676_AfflictionNotableFuriousAssault"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3415827027", + ["text"] = "1 Added Passive Skill is Furious Assault", + ["type"] = "explicit", + }, + }, + ["7677_AfflictionNotableGenius"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2763732093", + ["text"] = "1 Added Passive Skill is Genius", + ["type"] = "explicit", + }, + }, + ["7678_AfflictionNotableGladiatorialCombat"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1543731719", + ["text"] = "1 Added Passive Skill is Gladiatorial Combat", + ["type"] = "explicit", + }, + }, + ["7679_AfflictionNotableGladiatorsFortitude"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1591995797", + ["text"] = "1 Added Passive Skill is Gladiator's Fortitude", + ["type"] = "explicit", + }, + }, + ["7680_AfflictionNotableGracefulExecution"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1903496649", + ["text"] = "1 Added Passive Skill is Graceful Execution", + ["type"] = "explicit", + }, + }, + ["7681_AfflictionNotableSublimeForm"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2251304016", + ["text"] = "1 Added Passive Skill is Sublime Form", + ["type"] = "explicit", + }, + }, + ["7682_AfflictionNotableGrandDesign"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2350900742", + ["text"] = "1 Added Passive Skill is Grand Design", + ["type"] = "explicit", + }, + }, + ["7683_AfflictionNotableGrimOath"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2194205899", + ["text"] = "1 Added Passive Skill is Grim Oath", + ["type"] = "explicit", + }, + }, + ["7684_AfflictionNotableGroundedCommander"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1309218394", + ["text"] = "1 Added Passive Skill is Introspection", + ["type"] = "explicit", + }, + }, + ["7685_AfflictionNotableGuerillaTactics"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1882129725", + ["text"] = "1 Added Passive Skill is Guerilla Tactics", + ["type"] = "explicit", + }, + }, + ["7686_AfflictionNotableHaemorrhage"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_72129119", + ["text"] = "1 Added Passive Skill is Haemorrhage", + ["type"] = "explicit", + }, + }, + ["7687_AfflictionNotableHauntingShout"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1080363357", + ["text"] = "1 Added Passive Skill is Haunting Shout", + ["type"] = "explicit", + }, + }, + ["7688_AfflictionNotableHeartofIron"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1483358825", + ["text"] = "1 Added Passive Skill is Heart of Iron", + ["type"] = "explicit", + }, + }, + ["7689_AfflictionNotableHeavyHitter"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3640252904", + ["text"] = "1 Added Passive Skill is Heavy Hitter", + ["type"] = "explicit", + }, + }, + ["7690_AfflictionNotableExploitWeakness"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_50129423", + ["text"] = "1 Added Passive Skill is Exploit Weakness", + ["type"] = "explicit", + }, + }, + ["7691_AfflictionNotableHeraldry"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3274270612", + ["text"] = "1 Added Passive Skill is Heraldry", + ["type"] = "explicit", + }, + }, + ["7692_AfflictionNotableHexBreaker"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2341828832", + ["text"] = "1 Added Passive Skill is Hex Breaker", + ["type"] = "explicit", + }, + }, + ["7693_AfflictionNotableHibernator"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2294919888", + ["text"] = "1 Added Passive Skill is Hibernator", + ["type"] = "explicit", + }, + }, + ["7694_AfflictionNotableHitandRun"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2665170385", + ["text"] = "1 Added Passive Skill is Hit and Run", + ["type"] = "explicit", + }, + }, + ["7695_AfflictionNotableHolisticHealth"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3667965781", + ["text"] = "1 Added Passive Skill is Holistic Health", + ["type"] = "explicit", + }, + }, + ["7696_AfflictionNotableHolyConquest"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3898572660", + ["text"] = "1 Added Passive Skill is Holy Conquest", + ["type"] = "explicit", + }, + }, + ["7697_AfflictionNotableHolyWord"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3697635701", + ["text"] = "1 Added Passive Skill is Holy Word", + ["type"] = "explicit", + }, + }, + ["7698_AfflictionNotableHoundsMark"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_555800967", + ["text"] = "1 Added Passive Skill is Hound's Mark", + ["type"] = "explicit", + }, + }, + ["7699_AfflictionNotableHulkingCorpses"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3467711950", + ["text"] = "1 Added Passive Skill is Hulking Corpses", + ["type"] = "explicit", + }, + }, + ["7700_AfflictionNotableImprovisor"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_810219447", + ["text"] = "1 Added Passive Skill is Improvisor", + ["type"] = "explicit", + }, + }, + ["7701_AfflictionNotableInsatiableKiller"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3904970959", + ["text"] = "1 Added Passive Skill is Insatiable Killer", + ["type"] = "explicit", + }, + }, + ["7702_AfflictionNotableInspiredOppression"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3872380586", + ["text"] = "1 Added Passive Skill is Inspired Oppression", + ["type"] = "explicit", + }, + }, + ["7703_AfflictionNotableInsulated"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_212648555", + ["text"] = "1 Added Passive Skill is Insulated", + ["type"] = "explicit", + }, + }, + ["7704_AfflictionNotableIntensity"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2785835061", + ["text"] = "1 Added Passive Skill is Intensity", + ["type"] = "explicit", + }, + }, + ["7705_AfflictionNotableInvigoratingPortents"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2262034536", + ["text"] = "1 Added Passive Skill is Invigorating Portents", + ["type"] = "explicit", + }, + }, + ["7706_AfflictionNotableIronBreaker"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3258653591", + ["text"] = "1 Added Passive Skill is Iron Breaker", + ["type"] = "explicit", + }, + }, + ["7707_AfflictionNotableLastingImpression"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_426715778", + ["text"] = "1 Added Passive Skill is Lasting Impression", + ["type"] = "explicit", + }, + }, + ["7708_AfflictionNotableLeadByExample"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2195406641", + ["text"] = "1 Added Passive Skill is Lead By Example", + ["type"] = "explicit", + }, + }, + ["7709_AfflictionNotableLifefromDeath"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2337273077", + ["text"] = "1 Added Passive Skill is Life from Death", + ["type"] = "explicit", + }, + }, + ["7710_AfflictionNotableTempttheStorm"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_348883745", + ["text"] = "1 Added Passive Skill is Tempt the Storm", + ["type"] = "explicit", + }, + }, + ["7711_AfflictionNotableLiquidInspiration"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1094635162", + ["text"] = "1 Added Passive Skill is Liquid Inspiration", + ["type"] = "explicit", + }, + }, + ["7712_AfflictionNotableLowTolerance"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3989400244", + ["text"] = "1 Added Passive Skill is Low Tolerance", + ["type"] = "explicit", + }, + }, + ["7713_AfflictionNotableMageBane"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_684155617", + ["text"] = "1 Added Passive Skill is Mage Bane", + ["type"] = "explicit", + }, + }, + ["7714_AfflictionNotableMageHunter"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2118664144", + ["text"] = "1 Added Passive Skill is Mage Hunter", + ["type"] = "explicit", + }, + }, + ["7715_AfflictionNotableMagnifier"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2886441936", + ["text"] = "1 Added Passive Skill is Magnifier", + ["type"] = "explicit", + }, + }, + ["7716_AfflictionNotableMartialMastery"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1015189426", + ["text"] = "1 Added Passive Skill is Martial Mastery", + ["type"] = "explicit", + }, + }, + ["7717_AfflictionNotableMartialMomentum"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2978494217", + ["text"] = "1 Added Passive Skill is Martial Momentum", + ["type"] = "explicit", + }, + }, + ["7718_AfflictionNotableMartialProwess"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1152182658", + ["text"] = "1 Added Passive Skill is Martial Prowess", + ["type"] = "explicit", + }, + }, + ["7719_AfflictionNotableMasterofCommand"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3257074218", + ["text"] = "1 Added Passive Skill is Master of Command", + ["type"] = "explicit", + }, + }, + ["7720_AfflictionNotableMasterofFear"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2771217016", + ["text"] = "1 Added Passive Skill is Master of Fear", + ["type"] = "explicit", + }, + }, + ["7721_AfflictionNotableMasterofFire"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1462135249", + ["text"] = "1 Added Passive Skill is Master of Fire", + ["type"] = "explicit", + }, + }, + ["7722_AfflictionNotableMasterOfTheMaelstrom"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_185592058", + ["text"] = "1 Added Passive Skill is Master of the Maelstrom", + ["type"] = "explicit", + }, + }, + ["7723_AfflictionNotableMastertheFundamentals"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3585232432", + ["text"] = "1 Added Passive Skill is Master the Fundamentals", + ["type"] = "explicit", + }, + }, + ["7724_AfflictionNotableMendersWellspring"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4291434923", + ["text"] = "1 Added Passive Skill is Mender's Wellspring", + ["type"] = "explicit", + }, + }, + ["7725_AfflictionNotableMilitarism"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4154709486", + ["text"] = "1 Added Passive Skill is Militarism", + ["type"] = "explicit", + }, + }, + ["7726_AfflictionNotableMindfulness"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2595115995", + ["text"] = "1 Added Passive Skill is Mindfulness", + ["type"] = "explicit", + }, + }, + ["7727_AfflictionNotableMobMentality"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1048879642", + ["text"] = "1 Added Passive Skill is Mob Mentality", + ["type"] = "explicit", + }, + }, + ["7728_AfflictionNotableMoltenOnesMark"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3875792669", + ["text"] = "1 Added Passive Skill is Molten One's Mark", + ["type"] = "explicit", + }, + }, + ["7729_AfflictionNotableMysticalWard"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2314111938", + ["text"] = "1 Added Passive Skill is Mystical Ward", + ["type"] = "explicit", + }, + }, + ["7730_AfflictionNotableNaturalVigour"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_510654792", + ["text"] = "1 Added Passive Skill is Natural Vigour", + ["type"] = "explicit", + }, + }, + ["7731_AfflictionNotableNoWitnesses"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1722480396", + ["text"] = "1 Added Passive Skill is No Witnesses", + ["type"] = "explicit", + }, + }, + ["7732_AfflictionNotableNonFlammable"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_731840035", + ["text"] = "1 Added Passive Skill is Non-Flammable", + ["type"] = "explicit", + }, + }, + ["7733_AfflictionNotableNumbingElixir"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1028754276", + ["text"] = "1 Added Passive Skill is Numbing Elixir", + ["type"] = "explicit", + }, + }, + ["7734_AfflictionNotableOnewiththeShield"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1976069869", + ["text"] = "1 Added Passive Skill is One with the Shield", + ["type"] = "explicit", + }, + }, + ["7735_AfflictionNotableOpenness"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_633943719", + ["text"] = "1 Added Passive Skill is Openness", + ["type"] = "explicit", + }, + }, + ["7736_AfflictionNotableOpportunisticFusilade"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4281625943", + ["text"] = "1 Added Passive Skill is Opportunistic Fusilade", + ["type"] = "explicit", + }, + }, + ["7737_AfflictionNotableOverlord"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2250169390", + ["text"] = "1 Added Passive Skill is Overlord", + ["type"] = "explicit", + }, + }, + ["7738_AfflictionNotableOvershock"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3777170562", + ["text"] = "1 Added Passive Skill is Overshock", + ["type"] = "explicit", + }, + }, + ["7739_AfflictionNotableOverwhelmingMalice"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_770408103", + ["text"] = "1 Added Passive Skill is Overwhelming Malice", + ["type"] = "explicit", + }, + }, + ["7740_AfflictionNotableParalysis"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4272503233", + ["text"] = "1 Added Passive Skill is Paralysis", + ["type"] = "explicit", + }, + }, + ["7741_AfflictionNotablePeaceAmidstChaos"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1734275536", + ["text"] = "1 Added Passive Skill is Peace Amidst Chaos", + ["type"] = "explicit", + }, + }, + ["7742_AfflictionNotablePeakVigour"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1722821275", + ["text"] = "1 Added Passive Skill is Peak Vigour", + ["type"] = "explicit", + }, + }, + ["7743_AfflictionNotablePhlebotomist"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3057154383", + ["text"] = "1 Added Passive Skill is Phlebotomist", + ["type"] = "explicit", + }, + }, + ["7744_AfflictionNotablePowerfulAssault"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1005475168", + ["text"] = "1 Added Passive Skill is Powerful Assault", + ["type"] = "explicit", + }, + }, + ["7745_AfflictionNotablePowerfulWard"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_164032122", + ["text"] = "1 Added Passive Skill is Powerful Ward", + ["type"] = "explicit", + }, + }, + ["7746_AfflictionNotablePracticedCaster"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3435403756", + ["text"] = "1 Added Passive Skill is Practiced Caster", + ["type"] = "explicit", + }, + }, + ["7747_AfflictionNotablePreciseCommander"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3860179422", + ["text"] = "1 Added Passive Skill is Destructive Aspect", + ["type"] = "explicit", + }, + }, + ["7748_AfflictionNotablePreciseFocus"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2913581789", + ["text"] = "1 Added Passive Skill is Precise Focus", + ["type"] = "explicit", + }, + }, + ["7749_AfflictionNotablePreciseRetaliation"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2335364359", + ["text"] = "1 Added Passive Skill is Precise Retaliation", + ["type"] = "explicit", + }, + }, + ["7750_AfflictionNotablePressurePoints"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3391925584", + ["text"] = "1 Added Passive Skill is Pressure Points", + ["type"] = "explicit", + }, + }, + ["7751_AfflictionNotablePrimordialBond"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_622362787", + ["text"] = "1 Added Passive Skill is Primordial Bond", + ["type"] = "explicit", + }, + }, + ["7752_AfflictionNotablePrismaticCarapace"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3492924480", + ["text"] = "1 Added Passive Skill is Prismatic Carapace", + ["type"] = "explicit", + }, + }, + ["7753_AfflictionNotablePrismaticDance"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1149662934", + ["text"] = "1 Added Passive Skill is Prismatic Dance", + ["type"] = "explicit", + }, + }, + ["7754_AfflictionNotablePrismaticHeart"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2342448236", + ["text"] = "1 Added Passive Skill is Prismatic Heart", + ["type"] = "explicit", + }, + }, + ["7755_AfflictionNotableProdigiousDefense"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1705633890", + ["text"] = "1 Added Passive Skill is Prodigious Defence", + ["type"] = "explicit", + }, + }, + ["7756_AfflictionNotableProvocateur"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_814369372", + ["text"] = "1 Added Passive Skill is Provocateur", + ["type"] = "explicit", + }, + }, + ["7757_AfflictionNotablePureAgony"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1507409483", + ["text"] = "1 Added Passive Skill is Pure Agony", + ["type"] = "explicit", + }, + }, + ["7758_AfflictionNotablePureAptitude"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3509724289", + ["text"] = "1 Added Passive Skill is Pure Aptitude", + ["type"] = "explicit", + }, + }, + ["7759_AfflictionNotablePureCommander"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3950683692", + ["text"] = "1 Added Passive Skill is Electric Presence", + ["type"] = "explicit", + }, + }, + ["7760_AfflictionNotablePureGuile"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1621496909", + ["text"] = "1 Added Passive Skill is Pure Guile", + ["type"] = "explicit", + }, + }, + ["7761_AfflictionNotablePureMight"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2372915005", + ["text"] = "1 Added Passive Skill is Pure Might", + ["type"] = "explicit", + }, + }, + ["7762_AfflictionNotablePurposefulHarbinger"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_507505131", + ["text"] = "1 Added Passive Skill is Purposeful Harbinger", + ["type"] = "explicit", + }, + }, + ["7763_AfflictionNotableQuickandDeadly"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2169345147", + ["text"] = "1 Added Passive Skill is Quick and Deadly", + ["type"] = "explicit", + }, + }, + ["7764_AfflictionNotableQuickGetaway"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1626818279", + ["text"] = "1 Added Passive Skill is Quick Getaway", + ["type"] = "explicit", + }, + }, + ["7765_AfflictionNotableRapidInfusion"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1570474940", + ["text"] = "1 Added Passive Skill is Unrestrained Focus", + ["type"] = "explicit", + }, + }, + ["7766_AfflictionNotableRattlingBellow"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4288473380", + ["text"] = "1 Added Passive Skill is Rattling Bellow", + ["type"] = "explicit", + }, + }, + ["7767_AfflictionNotableRazeandPillage"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1038897629", + ["text"] = "1 Added Passive Skill is Raze and Pillage", + ["type"] = "explicit", + }, + }, + ["7768_AfflictionNotableReadiness"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_845306697", + ["text"] = "1 Added Passive Skill is Readiness", + ["type"] = "explicit", + }, + }, + ["7769_AfflictionNotableRemarkable"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_691431951", + ["text"] = "1 Added Passive Skill is Remarkable", + ["type"] = "explicit", + }, + }, + ["7770_AfflictionNotableRend"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4263287206", + ["text"] = "1 Added Passive Skill is Rend", + ["type"] = "explicit", + }, + }, + ["7771_AfflictionNotableRenewal"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3607300552", + ["text"] = "1 Added Passive Skill is Renewal", + ["type"] = "explicit", + }, + }, + ["7772_AfflictionNotableRepeater"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2233272527", + ["text"] = "1 Added Passive Skill is Repeater", + ["type"] = "explicit", + }, + }, + ["7773_AfflictionNotableReplenishingPresence"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1496043857", + ["text"] = "1 Added Passive Skill is Replenishing Presence", + ["type"] = "explicit", + }, + }, + ["7774_AfflictionNotableRiotQueller"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_254194892", + ["text"] = "1 Added Passive Skill is Riot Queller", + ["type"] = "explicit", + }, + }, + ["7775_AfflictionNotableRotResistant"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_713945233", + ["text"] = "1 Added Passive Skill is Rot-Resistant", + ["type"] = "explicit", + }, + }, + ["7776_AfflictionNotableRoteReinforcement"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2478282326", + ["text"] = "1 Added Passive Skill is Rote Reinforcement", + ["type"] = "explicit", + }, + }, + ["7777_AfflictionNotableRottenClaws"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2289610642", + ["text"] = "1 Added Passive Skill is Rotten Claws", + ["type"] = "explicit", + }, + }, + ["7778_AfflictionNotableRunThrough"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1488030420", + ["text"] = "1 Added Passive Skill is Run Through", + ["type"] = "explicit", + }, + }, + ["7779_AfflictionNotableSadist"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3638731729", + ["text"] = "1 Added Passive Skill is Sadist", + ["type"] = "explicit", + }, + }, + ["7780_AfflictionNotableSage"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_478147593", + ["text"] = "1 Added Passive Skill is Sage", + ["type"] = "explicit", + }, + }, + ["7781_AfflictionNotableSapPsyche"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_715786975", + ["text"] = "1 Added Passive Skill is Sap Psyche", + ["type"] = "explicit", + }, + }, + ["7782_AfflictionNotableSavageResponse"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4222635921", + ["text"] = "1 Added Passive Skill is Savage Response", + ["type"] = "explicit", + }, + }, + ["7783_AfflictionNotableSavourtheMoment"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3539175001", + ["text"] = "1 Added Passive Skill is Savour the Moment", + ["type"] = "explicit", + }, + }, + ["7784_AfflictionNotableScintillatingIdea"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2589589781", + ["text"] = "1 Added Passive Skill is Scintillating Idea", + ["type"] = "explicit", + }, + }, + ["7785_AfflictionNotableSealMender"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_876846990", + ["text"] = "1 Added Passive Skill is Seal Mender", + ["type"] = "explicit", + }, + }, + ["7786_AfflictionNotableSecondSkin"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2773515950", + ["text"] = "1 Added Passive Skill is Second Skin", + ["type"] = "explicit", + }, + }, + ["7787_AfflictionNotableSeekerRunes"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2261237498", + ["text"] = "1 Added Passive Skill is Seeker Runes", + ["type"] = "explicit", + }, + }, + ["7788_AfflictionNotableSelfFulfillingProphecy"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2644533453", + ["text"] = "1 Added Passive Skill is Self-Fulfilling Prophecy", + ["type"] = "explicit", + }, + }, + ["7789_AfflictionNotableSepticSpells"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4290522695", + ["text"] = "1 Added Passive Skill is Septic Spells", + ["type"] = "explicit", + }, + }, + ["7790_AfflictionNotableSetandForget"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1101250813", + ["text"] = "1 Added Passive Skill is Set and Forget", + ["type"] = "explicit", + }, + }, + ["7791_AfflictionNotableShiftingShadow"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1476913894", + ["text"] = "1 Added Passive Skill is Shifting Shadow", + ["type"] = "explicit", + }, + }, + ["7792_AfflictionNotableShriekingBolts"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2783012144", + ["text"] = "1 Added Passive Skill is Shrieking Bolts", + ["type"] = "explicit", + }, + }, + ["7793_AfflictionNotableSkeletalAtrophy"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1290215329", + ["text"] = "1 Added Passive Skill is Skeletal Atrophy", + ["type"] = "explicit", + }, + }, + ["7794_AfflictionNotableSkullbreaker"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_315697256", + ["text"] = "1 Added Passive Skill is Skullbreaker", + ["type"] = "explicit", + }, + }, + ["7795_AfflictionNotableSleeplessSentries"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3993957711", + ["text"] = "1 Added Passive Skill is Sleepless Sentries", + ["type"] = "explicit", + }, + }, + ["7796_AfflictionNotableSmitetheWeak"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_540300548", + ["text"] = "1 Added Passive Skill is Smite the Weak", + ["type"] = "explicit", + }, + }, + ["7797_AfflictionNotableSmokingRemains"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2322980282", + ["text"] = "1 Added Passive Skill is Smoking Remains", + ["type"] = "explicit", + }, + }, + ["7798_AfflictionNotableSnaringSpirits"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3319205340", + ["text"] = "1 Added Passive Skill is Snaring Spirits", + ["type"] = "explicit", + }, + }, + ["7799_AfflictionNotableSnowstorm"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1595367309", + ["text"] = "1 Added Passive Skill is Snowstorm", + ["type"] = "explicit", + }, + }, + ["7800_AfflictionNotableSpecialReserve"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4235300427", + ["text"] = "1 Added Passive Skill is Special Reserve", + ["type"] = "explicit", + }, + }, + ["7801_AfflictionNotableSpikedConcoction"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3372255769", + ["text"] = "1 Added Passive Skill is Spiked Concoction", + ["type"] = "explicit", + }, + }, + ["7802_AfflictionNotableSpringBack"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3603695769", + ["text"] = "1 Added Passive Skill is Spring Back", + ["type"] = "explicit", + }, + }, + ["7803_AfflictionNotableStalwartCommander"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2350668735", + ["text"] = "1 Added Passive Skill is Volatile Presence", + ["type"] = "explicit", + }, + }, + ["7804_AfflictionNotableSteadyTorment"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3500334379", + ["text"] = "1 Added Passive Skill is Steady Torment", + ["type"] = "explicit", + }, + }, + ["7805_AfflictionNotableStoicFocus"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1088949570", + ["text"] = "1 Added Passive Skill is Stoic Focus", + ["type"] = "explicit", + }, + }, + ["7806_AfflictionNotableStormDrinker"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2087561637", + ["text"] = "1 Added Passive Skill is Storm Drinker", + ["type"] = "explicit", + }, + }, + ["7807_AfflictionNotableStormrider"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_889728548", + ["text"] = "1 Added Passive Skill is Stormrider", + ["type"] = "explicit", + }, + }, + ["7808_AfflictionNotableStormsHand"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1122051203", + ["text"] = "1 Added Passive Skill is Storm's Hand", + ["type"] = "explicit", + }, + }, + ["7809_AfflictionNotableStreamlined"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1397498432", + ["text"] = "1 Added Passive Skill is Streamlined", + ["type"] = "explicit", + }, + }, + ["7810_AfflictionNotableStrikeLeader"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_282062371", + ["text"] = "1 Added Passive Skill is Strike Leader", + ["type"] = "explicit", + }, + }, + ["7811_AfflictionNotableStubbornStudent"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2383914651", + ["text"] = "1 Added Passive Skill is Stubborn Student", + ["type"] = "explicit", + }, + }, + ["7812_AfflictionNotableStudentofDecay"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3202667190", + ["text"] = "1 Added Passive Skill is Student of Decay", + ["type"] = "explicit", + }, + }, + ["7813_AfflictionNotableSublimeSensation"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1364858171", + ["text"] = "1 Added Passive Skill is Sublime Sensation", + ["type"] = "explicit", + }, + }, + ["7814_AfflictionNotableSummerCommander"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3881737087", + ["text"] = "1 Added Passive Skill is Mortifying Aspect", + ["type"] = "explicit", + }, + }, + ["7815_AfflictionNotableSupercharge"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3226074658", + ["text"] = "1 Added Passive Skill is Supercharge", + ["type"] = "explicit", + }, + }, + ["7816_AfflictionNotableSurefootedStriker"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3410752193", + ["text"] = "1 Added Passive Skill is Surefooted Striker", + ["type"] = "explicit", + }, + }, + ["7817_AfflictionNotableSurgingVitality"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2410501331", + ["text"] = "1 Added Passive Skill is Surging Vitality", + ["type"] = "explicit", + }, + }, + ["7818_AfflictionNotableSurpriseSabotage"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3051562738", + ["text"] = "1 Added Passive Skill is Surprise Sabotage", + ["type"] = "explicit", + }, + }, + ["7819_AfflictionNotableTemperedArrowheads"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2631806437", + ["text"] = "1 Added Passive Skill is Tempered Arrowheads", + ["type"] = "explicit", + }, + }, + ["7820_AfflictionNotableThaumophage"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_177215332", + ["text"] = "1 Added Passive Skill is Thaumophage", + ["type"] = "explicit", + }, + }, + ["7821_AfflictionNotableThunderstruck"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1741700339", + ["text"] = "1 Added Passive Skill is Thunderstruck", + ["type"] = "explicit", + }, + }, + ["7822_AfflictionNotableTitanicSwings"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2930275641", + ["text"] = "1 Added Passive Skill is Titanic Swings", + ["type"] = "explicit", + }, + }, + ["7823_AfflictionNotableTouchofCruelty"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2780712583", + ["text"] = "1 Added Passive Skill is Touch of Cruelty", + ["type"] = "explicit", + }, + }, + ["7824_AfflictionNotableToweringThreat"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3536778624", + ["text"] = "1 Added Passive Skill is Towering Threat", + ["type"] = "explicit", + }, + }, + ["7825_AfflictionNotableUnholyGrace"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4186213466", + ["text"] = "1 Added Passive Skill is Unholy Grace", + ["type"] = "explicit", + }, + }, + ["7826_AfflictionNotableUnspeakableGifts"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_729163974", + ["text"] = "1 Added Passive Skill is Unspeakable Gifts", + ["type"] = "explicit", + }, + }, + ["7827_AfflictionNotableUntouchable"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2758966888", + ["text"] = "1 Added Passive Skill is Untouchable", + ["type"] = "explicit", + }, + }, + ["7828_AfflictionNotableUnwaveringFocus"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_367638058", + ["text"] = "1 Added Passive Skill is Unwavering Focus", + ["type"] = "explicit", + }, + }, + ["7829_AfflictionNotableUnwaveringlyEvil"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2788982914", + ["text"] = "1 Added Passive Skill is Unwaveringly Evil", + ["type"] = "explicit", + }, + }, + ["7830_AfflictionNotableVastPower"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1996576560", + ["text"] = "1 Added Passive Skill is Vast Power", + ["type"] = "explicit", + }, + }, + ["7831_AfflictionNotableVengefulCommander"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2620267328", + ["text"] = "1 Added Passive Skill is Righteous Path", + ["type"] = "explicit", + }, + }, + ["7832_AfflictionNotableVeteranDefender"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_664010431", + ["text"] = "1 Added Passive Skill is Veteran Defender", + ["type"] = "explicit", + }, + }, + ["7833_AfflictionNotableViciousBite"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_882876854", + ["text"] = "1 Added Passive Skill is Vicious Bite", + ["type"] = "explicit", + }, + }, + ["7834_AfflictionNotableViciousGuard"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4054656914", + ["text"] = "1 Added Passive Skill is Vicious Guard", + ["type"] = "explicit", + }, + }, + ["7835_AfflictionNotableViciousSkewering"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_567971948", + ["text"] = "1 Added Passive Skill is Vicious Skewering", + ["type"] = "explicit", + }, + }, + ["7836_AfflictionNotableVictimMaker"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1936135020", + ["text"] = "1 Added Passive Skill is Victim Maker", + ["type"] = "explicit", + }, + }, + ["7837_AfflictionNotableVileReinvigoration"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_647201233", + ["text"] = "1 Added Passive Skill is Vile Reinvigoration", + ["type"] = "explicit", + }, + }, + ["7838_AfflictionNotableVitalFocus"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2134141047", + ["text"] = "1 Added Passive Skill is Vital Focus", + ["type"] = "explicit", + }, + }, + ["7839_AfflictionNotableVividHues"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3957006524", + ["text"] = "1 Added Passive Skill is Vivid Hues", + ["type"] = "explicit", + }, + }, + ["7840_AfflictionNotableWallofMuscle"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1363668533", + ["text"] = "1 Added Passive Skill is Wall of Muscle", + ["type"] = "explicit", + }, + }, + ["7841_AfflictionNotableWardbreaker"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2454339320", + ["text"] = "1 Added Passive Skill is Forbidden Words", + ["type"] = "explicit", + }, + }, + ["7842_AfflictionNotableWarningCall"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_578355556", + ["text"] = "1 Added Passive Skill is Warning Call", + ["type"] = "explicit", + }, + }, + ["7843_AfflictionNotableWastingAffliction"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2066820199", + ["text"] = "1 Added Passive Skill is Wasting Affliction", + ["type"] = "explicit", + }, + }, + ["7844_AfflictionNotableWeightAdvantage"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2244243943", + ["text"] = "1 Added Passive Skill is Weight Advantage", + ["type"] = "explicit", + }, + }, + ["7845_AfflictionNotableWhispersofDeath"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_156080652", + ["text"] = "1 Added Passive Skill is Evil Eye", + ["type"] = "explicit", + }, + }, + ["7846_AfflictionNotableWickedPall"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1616734644", + ["text"] = "1 Added Passive Skill is Wicked Pall", + ["type"] = "explicit", + }, + }, + ["7847_AfflictionNotableWidespreadDestruction"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1678643716", + ["text"] = "1 Added Passive Skill is Widespread Destruction", + ["type"] = "explicit", + }, + }, + ["7848_AfflictionNotableWillShaper"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1162352537", + ["text"] = "1 Added Passive Skill is Will Shaper", + ["type"] = "explicit", + }, + }, + ["7849_AfflictionNotableWindup"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1938661964", + ["text"] = "1 Added Passive Skill is Wind-up", + ["type"] = "explicit", + }, + }, + ["7850_AfflictionNotableWinterCommander"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_792262925", + ["text"] = "1 Added Passive Skill is Frantic Aspect", + ["type"] = "explicit", + }, + }, + ["7851_AfflictionNotableWinterProwler"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_755881431", + ["text"] = "1 Added Passive Skill is Winter Prowler", + ["type"] = "explicit", + }, + }, + ["7852_AfflictionNotableWishforDeath"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_608164368", + ["text"] = "1 Added Passive Skill is Wish for Death", + ["type"] = "explicit", + }, + }, + ["7853_AfflictionNotableWizardry"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3078065247", + ["text"] = "1 Added Passive Skill is Wizardry", + ["type"] = "explicit", + }, + }, + ["7854_AfflictionNotableWoundAggravation"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_69078820", + ["text"] = "1 Added Passive Skill is Wound Aggravation", + ["type"] = "explicit", + }, + }, + ["7855_AfflictionNotableWrappedinFlame"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_241783558", + ["text"] = "1 Added Passive Skill is Wrapped in Flame", + ["type"] = "explicit", + }, + }, + }, ["Scourge"] = { - ["10019_ReducedShockEffectOnSelf"] = { + ["10020_ReducedShockEffectOnSelf"] = { ["Ring"] = { - ["max"] = 40, - ["min"] = 31, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "enchant.stat_3801067695", - ["text"] = "#% reduced Effect of Shock on you", - ["type"] = "enchant", - }, - }, + ["max"] = 40, + ["min"] = 31, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_3801067695", + ["text"] = "#% reduced Effect of Shock on you", + ["type"] = "enchant", + }, + }, ["1075_LocalAttributeRequirements"] = { ["1HAxe"] = { - ["max"] = -12, - ["min"] = -20, - }, + ["max"] = -12, + ["min"] = -20, + }, ["1HMace"] = { - ["max"] = -12, - ["min"] = -20, - }, + ["max"] = -12, + ["min"] = -20, + }, ["1HSword"] = { - ["max"] = -12, - ["min"] = -20, - }, + ["max"] = -12, + ["min"] = -20, + }, ["1HWeapon"] = { - ["max"] = -12, - ["min"] = -20, - }, + ["max"] = -12, + ["min"] = -20, + }, ["2HAxe"] = { - ["max"] = -12, - ["min"] = -20, - }, + ["max"] = -12, + ["min"] = -20, + }, ["2HMace"] = { - ["max"] = -12, - ["min"] = -20, - }, + ["max"] = -12, + ["min"] = -20, + }, ["2HSword"] = { - ["max"] = -12, - ["min"] = -20, - }, + ["max"] = -12, + ["min"] = -20, + }, ["2HWeapon"] = { - ["max"] = -12, - ["min"] = -20, - }, + ["max"] = -12, + ["min"] = -20, + }, ["Boots"] = { - ["max"] = -12, - ["min"] = -20, - }, + ["max"] = -12, + ["min"] = -20, + }, ["Bow"] = { - ["max"] = -12, - ["min"] = -20, - }, + ["max"] = -12, + ["min"] = -20, + }, ["Chest"] = { - ["max"] = -12, - ["min"] = -20, - }, + ["max"] = -12, + ["min"] = -20, + }, ["Claw"] = { - ["max"] = -12, - ["min"] = -20, - }, + ["max"] = -12, + ["min"] = -20, + }, ["Dagger"] = { - ["max"] = -12, - ["min"] = -20, - }, + ["max"] = -12, + ["min"] = -20, + }, ["Gloves"] = { - ["max"] = -12, - ["min"] = -20, - }, + ["max"] = -12, + ["min"] = -20, + }, ["Helmet"] = { - ["max"] = -12, - ["min"] = -20, - }, + ["max"] = -12, + ["min"] = -20, + }, ["Shield"] = { - ["max"] = -12, - ["min"] = -20, - }, + ["max"] = -12, + ["min"] = -20, + }, ["Staff"] = { - ["max"] = -12, - ["min"] = -20, - }, + ["max"] = -12, + ["min"] = -20, + }, ["Wand"] = { - ["max"] = -12, - ["min"] = -20, - }, - ["inverseKey"] = "reduced", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "enchant.stat_3639275092", - ["text"] = "#% increased Attribute Requirements", - ["type"] = "enchant", - }, - }, - ["10801_PointBlank"] = { + ["max"] = -12, + ["min"] = -20, + }, + ["inverseKey"] = "reduced", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_3639275092", + ["text"] = "#% increased Attribute Requirements", + ["type"] = "enchant", + }, + }, + ["10802_PointBlank"] = { ["Chest"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2896346114", - ["text"] = "Point Blank", - ["type"] = "enchant", - }, - }, - ["10816_IronGrip"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2896346114", + ["text"] = "Point Blank", + ["type"] = "enchant", + }, + }, + ["10817_IronGrip"] = { ["Chest"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "enchant.stat_573347393", - ["text"] = "Iron Grip", - ["type"] = "enchant", - }, - }, - ["10829_IronWill"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_573347393", + ["text"] = "Iron Grip", + ["type"] = "enchant", + }, + }, + ["10830_IronWill"] = { ["Chest"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_4092697134", - ["text"] = "Iron Will", - ["type"] = "enchant", - }, - }, + ["id"] = "enchant.stat_4092697134", + ["text"] = "Iron Will", + ["type"] = "enchant", + }, + }, ["1223_SpellDamage"] = { ["1HMace"] = { - ["max"] = 50, - ["min"] = 23, - }, + ["max"] = 50, + ["min"] = 23, + }, ["1HWeapon"] = { - ["max"] = 50, - ["min"] = 23, - }, + ["max"] = 50, + ["min"] = 23, + }, ["2HWeapon"] = { - ["max"] = 75, - ["min"] = 34, - }, + ["max"] = 75, + ["min"] = 34, + }, ["Dagger"] = { - ["max"] = 50, - ["min"] = 23, - }, + ["max"] = 50, + ["min"] = 23, + }, ["Staff"] = { - ["max"] = 75, - ["min"] = 34, - }, + ["max"] = 75, + ["min"] = 34, + }, ["Wand"] = { - ["max"] = 50, - ["min"] = 23, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2974417149", - ["text"] = "#% increased Spell Damage", - ["type"] = "enchant", - }, - }, + ["max"] = 50, + ["min"] = 23, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2974417149", + ["text"] = "#% increased Spell Damage", + ["type"] = "enchant", + }, + }, ["1362_LocalFireDamage"] = { ["1HAxe"] = { - ["max"] = 53.5, - ["min"] = 17, - }, + ["max"] = 53.5, + ["min"] = 17, + }, ["1HMace"] = { - ["max"] = 53.5, - ["min"] = 17, - }, + ["max"] = 53.5, + ["min"] = 17, + }, ["1HSword"] = { - ["max"] = 53.5, - ["min"] = 17, - }, + ["max"] = 53.5, + ["min"] = 17, + }, ["1HWeapon"] = { - ["max"] = 53.5, - ["min"] = 17, - }, + ["max"] = 53.5, + ["min"] = 17, + }, ["2HAxe"] = { - ["max"] = 81.5, - ["min"] = 30, - }, + ["max"] = 81.5, + ["min"] = 30, + }, ["2HMace"] = { - ["max"] = 81.5, - ["min"] = 30, - }, + ["max"] = 81.5, + ["min"] = 30, + }, ["2HSword"] = { - ["max"] = 81.5, - ["min"] = 30, - }, + ["max"] = 81.5, + ["min"] = 30, + }, ["2HWeapon"] = { - ["max"] = 81.5, - ["min"] = 26.5, - }, + ["max"] = 81.5, + ["min"] = 26.5, + }, ["Bow"] = { - ["max"] = 81.5, - ["min"] = 26.5, - }, + ["max"] = 81.5, + ["min"] = 26.5, + }, ["Claw"] = { - ["max"] = 53.5, - ["min"] = 17, - }, + ["max"] = 53.5, + ["min"] = 17, + }, ["Dagger"] = { - ["max"] = 53.5, - ["min"] = 17, - }, + ["max"] = 53.5, + ["min"] = 17, + }, ["Staff"] = { - ["max"] = 81.5, - ["min"] = 30, - }, + ["max"] = 81.5, + ["min"] = 30, + }, ["Wand"] = { - ["max"] = 53.5, - ["min"] = 17, - }, - ["sign"] = "", - ["specialCaseData"] = { - ["overrideModLine"] = "Adds # to # Fire Damage", - }, - ["tradeMod"] = { - ["id"] = "enchant.stat_709508406", - ["text"] = "Adds # to # Fire Damage (Local)", - ["type"] = "enchant", - }, - }, + ["max"] = 53.5, + ["min"] = 17, + }, + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "Adds # to # Fire Damage", + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_709508406", + ["text"] = "Adds # to # Fire Damage (Local)", + ["type"] = "enchant", + }, + }, ["1371_LocalColdDamage"] = { ["1HAxe"] = { - ["max"] = 50, - ["min"] = 14, - }, + ["max"] = 50, + ["min"] = 14, + }, ["1HMace"] = { - ["max"] = 50, - ["min"] = 14, - }, + ["max"] = 50, + ["min"] = 14, + }, ["1HSword"] = { - ["max"] = 50, - ["min"] = 14, - }, + ["max"] = 50, + ["min"] = 14, + }, ["1HWeapon"] = { - ["max"] = 50, - ["min"] = 14, - }, + ["max"] = 50, + ["min"] = 14, + }, ["2HAxe"] = { - ["max"] = 74, - ["min"] = 27, - }, + ["max"] = 74, + ["min"] = 27, + }, ["2HMace"] = { - ["max"] = 74, - ["min"] = 27, - }, + ["max"] = 74, + ["min"] = 27, + }, ["2HSword"] = { - ["max"] = 74, - ["min"] = 27, - }, + ["max"] = 74, + ["min"] = 27, + }, ["2HWeapon"] = { - ["max"] = 74, - ["min"] = 23, - }, + ["max"] = 74, + ["min"] = 23, + }, ["Bow"] = { - ["max"] = 74, - ["min"] = 23, - }, + ["max"] = 74, + ["min"] = 23, + }, ["Claw"] = { - ["max"] = 50, - ["min"] = 14, - }, + ["max"] = 50, + ["min"] = 14, + }, ["Dagger"] = { - ["max"] = 50, - ["min"] = 14, - }, + ["max"] = 50, + ["min"] = 14, + }, ["Staff"] = { - ["max"] = 74, - ["min"] = 27, - }, + ["max"] = 74, + ["min"] = 27, + }, ["Wand"] = { - ["max"] = 50, - ["min"] = 14, - }, - ["sign"] = "", - ["specialCaseData"] = { - ["overrideModLine"] = "Adds # to # Cold Damage", - }, - ["tradeMod"] = { - ["id"] = "enchant.stat_1037193709", - ["text"] = "Adds # to # Cold Damage (Local)", - ["type"] = "enchant", - }, - }, + ["max"] = 50, + ["min"] = 14, + }, + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "Adds # to # Cold Damage", + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_1037193709", + ["text"] = "Adds # to # Cold Damage (Local)", + ["type"] = "enchant", + }, + }, ["1382_LocalLightningDamage"] = { ["1HAxe"] = { - ["max"] = 59.5, - ["min"] = 20.5, - }, + ["max"] = 59.5, + ["min"] = 20.5, + }, ["1HMace"] = { - ["max"] = 59.5, - ["min"] = 20.5, - }, + ["max"] = 59.5, + ["min"] = 20.5, + }, ["1HSword"] = { - ["max"] = 59.5, - ["min"] = 20.5, - }, + ["max"] = 59.5, + ["min"] = 20.5, + }, ["1HWeapon"] = { - ["max"] = 59.5, - ["min"] = 20.5, - }, + ["max"] = 59.5, + ["min"] = 20.5, + }, ["2HAxe"] = { - ["max"] = 113, - ["min"] = 38, - }, + ["max"] = 113, + ["min"] = 38, + }, ["2HMace"] = { - ["max"] = 113, - ["min"] = 38, - }, + ["max"] = 113, + ["min"] = 38, + }, ["2HSword"] = { - ["max"] = 113, - ["min"] = 38, - }, + ["max"] = 113, + ["min"] = 38, + }, ["2HWeapon"] = { - ["max"] = 113, - ["min"] = 30.5, - }, + ["max"] = 113, + ["min"] = 30.5, + }, ["Bow"] = { - ["max"] = 113, - ["min"] = 30.5, - }, + ["max"] = 113, + ["min"] = 30.5, + }, ["Claw"] = { - ["max"] = 59.5, - ["min"] = 20.5, - }, + ["max"] = 59.5, + ["min"] = 20.5, + }, ["Dagger"] = { - ["max"] = 59.5, - ["min"] = 20.5, - }, + ["max"] = 59.5, + ["min"] = 20.5, + }, ["Staff"] = { - ["max"] = 113, - ["min"] = 38, - }, + ["max"] = 113, + ["min"] = 38, + }, ["Wand"] = { - ["max"] = 59.5, - ["min"] = 20.5, - }, - ["sign"] = "", - ["specialCaseData"] = { - ["overrideModLine"] = "Adds # to # Lightning Damage", - }, - ["tradeMod"] = { - ["id"] = "enchant.stat_3336890334", - ["text"] = "Adds # to # Lightning Damage (Local)", - ["type"] = "enchant", - }, - }, + ["max"] = 59.5, + ["min"] = 20.5, + }, + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "Adds # to # Lightning Damage", + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_3336890334", + ["text"] = "Adds # to # Lightning Damage (Local)", + ["type"] = "enchant", + }, + }, ["1390_LocalChaosDamage"] = { ["1HAxe"] = { - ["max"] = 24, - ["min"] = 9, - }, + ["max"] = 24, + ["min"] = 9, + }, ["1HMace"] = { - ["max"] = 24, - ["min"] = 9, - }, + ["max"] = 24, + ["min"] = 9, + }, ["1HSword"] = { - ["max"] = 24, - ["min"] = 9, - }, + ["max"] = 24, + ["min"] = 9, + }, ["1HWeapon"] = { - ["max"] = 24, - ["min"] = 9, - }, + ["max"] = 24, + ["min"] = 9, + }, ["2HAxe"] = { - ["max"] = 46, - ["min"] = 17.5, - }, + ["max"] = 46, + ["min"] = 17.5, + }, ["2HMace"] = { - ["max"] = 46, - ["min"] = 17.5, - }, + ["max"] = 46, + ["min"] = 17.5, + }, ["2HSword"] = { - ["max"] = 46, - ["min"] = 17.5, - }, + ["max"] = 46, + ["min"] = 17.5, + }, ["2HWeapon"] = { - ["max"] = 46, - ["min"] = 13, - }, + ["max"] = 46, + ["min"] = 13, + }, ["Bow"] = { - ["max"] = 46, - ["min"] = 13, - }, + ["max"] = 46, + ["min"] = 13, + }, ["Claw"] = { - ["max"] = 24, - ["min"] = 9, - }, + ["max"] = 24, + ["min"] = 9, + }, ["Dagger"] = { - ["max"] = 24, - ["min"] = 9, - }, + ["max"] = 24, + ["min"] = 9, + }, ["Staff"] = { - ["max"] = 46, - ["min"] = 17.5, - }, + ["max"] = 46, + ["min"] = 17.5, + }, ["Wand"] = { - ["max"] = 24, - ["min"] = 9, - }, - ["sign"] = "", - ["specialCaseData"] = { - ["overrideModLine"] = "Adds # to # Chaos Damage", - }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2223678961", - ["text"] = "Adds # to # Chaos Damage (Local)", - ["type"] = "enchant", - }, - }, + ["max"] = 24, + ["min"] = 9, + }, + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "Adds # to # Chaos Damage", + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2223678961", + ["text"] = "Adds # to # Chaos Damage (Local)", + ["type"] = "enchant", + }, + }, ["1446_IncreasedCastSpeed"] = { ["Amulet"] = { - ["max"] = 8, - ["min"] = 5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2891184298", - ["text"] = "#% increased Cast Speed", - ["type"] = "enchant", - }, - }, + ["max"] = 8, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2891184298", + ["text"] = "#% increased Cast Speed", + ["type"] = "enchant", + }, + }, ["1565_EnergyShieldRegeneration"] = { ["Boots"] = { - ["max"] = 25, - ["min"] = 11, - }, + ["max"] = 25, + ["min"] = 11, + }, ["Chest"] = { - ["max"] = 25, - ["min"] = 11, - }, + ["max"] = 25, + ["min"] = 11, + }, ["Gloves"] = { - ["max"] = 25, - ["min"] = 11, - }, + ["max"] = 25, + ["min"] = 11, + }, ["Helmet"] = { - ["max"] = 25, - ["min"] = 11, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2339757871", - ["text"] = "#% increased Energy Shield Recharge Rate", - ["type"] = "enchant", - }, - }, + ["max"] = 25, + ["min"] = 11, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2339757871", + ["text"] = "#% increased Energy Shield Recharge Rate", + ["type"] = "enchant", + }, + }, ["1609_GlobalIncreasePhysicalSpellSkillGemLevel"] = { ["1HMace"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["1HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["2HWeapon"] = { - ["max"] = 2, - ["min"] = 2, - }, + ["max"] = 2, + ["min"] = 2, + }, ["Dagger"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Staff"] = { - ["max"] = 2, - ["min"] = 2, - }, + ["max"] = 2, + ["min"] = 2, + }, ["Wand"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "enchant.stat_1600707273", - ["text"] = "+# to Level of all Physical Spell Skill Gems", - ["type"] = "enchant", - }, - }, + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_1600707273", + ["text"] = "+# to Level of all Physical Spell Skill Gems", + ["type"] = "enchant", + }, + }, ["1610_GlobalIncreaseFireSpellSkillGemLevel"] = { ["1HMace"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["1HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["2HWeapon"] = { - ["max"] = 2, - ["min"] = 2, - }, + ["max"] = 2, + ["min"] = 2, + }, ["Dagger"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Staff"] = { - ["max"] = 2, - ["min"] = 2, - }, + ["max"] = 2, + ["min"] = 2, + }, ["Wand"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "enchant.stat_591105508", - ["text"] = "+# to Level of all Fire Spell Skill Gems", - ["type"] = "enchant", - }, - }, + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_591105508", + ["text"] = "+# to Level of all Fire Spell Skill Gems", + ["type"] = "enchant", + }, + }, ["1611_GlobalIncreaseColdSpellSkillGemLevel"] = { ["1HMace"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["1HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["2HWeapon"] = { - ["max"] = 2, - ["min"] = 2, - }, + ["max"] = 2, + ["min"] = 2, + }, ["Dagger"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Staff"] = { - ["max"] = 2, - ["min"] = 2, - }, + ["max"] = 2, + ["min"] = 2, + }, ["Wand"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2254480358", - ["text"] = "+# to Level of all Cold Spell Skill Gems", - ["type"] = "enchant", - }, - }, + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2254480358", + ["text"] = "+# to Level of all Cold Spell Skill Gems", + ["type"] = "enchant", + }, + }, ["1612_GlobalIncreaseLightningSpellSkillGemLevel"] = { ["1HMace"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["1HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["2HWeapon"] = { - ["max"] = 2, - ["min"] = 2, - }, + ["max"] = 2, + ["min"] = 2, + }, ["Dagger"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Staff"] = { - ["max"] = 2, - ["min"] = 2, - }, + ["max"] = 2, + ["min"] = 2, + }, ["Wand"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "enchant.stat_1545858329", - ["text"] = "+# to Level of all Lightning Spell Skill Gems", - ["type"] = "enchant", - }, - }, + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_1545858329", + ["text"] = "+# to Level of all Lightning Spell Skill Gems", + ["type"] = "enchant", + }, + }, ["1613_GlobalIncreaseChaosSpellSkillGemLevel"] = { ["1HMace"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["1HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["2HWeapon"] = { - ["max"] = 2, - ["min"] = 2, - }, + ["max"] = 2, + ["min"] = 2, + }, ["Dagger"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Staff"] = { - ["max"] = 2, - ["min"] = 2, - }, + ["max"] = 2, + ["min"] = 2, + }, ["Wand"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "enchant.stat_4226189338", - ["text"] = "+# to Level of all Chaos Spell Skill Gems", - ["type"] = "enchant", - }, - }, + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_4226189338", + ["text"] = "+# to Level of all Chaos Spell Skill Gems", + ["type"] = "enchant", + }, + }, ["1645_ChillEffectivenessOnSelf"] = { ["Ring"] = { - ["max"] = 40, - ["min"] = 31, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "enchant.stat_1478653032", - ["text"] = "#% reduced Effect of Chill on you", - ["type"] = "enchant", - }, - }, + ["max"] = 40, + ["min"] = 31, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_1478653032", + ["text"] = "#% reduced Effect of Chill on you", + ["type"] = "enchant", + }, + }, ["1749_MaximumLifeOnKillPercent"] = { ["Chest"] = { - ["max"] = 4, - ["min"] = 3, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2023107756", - ["text"] = "Recover #% of Life on Kill", - ["type"] = "enchant", - }, - }, + ["max"] = 4, + ["min"] = 3, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2023107756", + ["text"] = "Recover #% of Life on Kill", + ["type"] = "enchant", + }, + }, ["1751_MaximumManaOnKillPercent"] = { ["Chest"] = { - ["max"] = 4, - ["min"] = 3, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "enchant.stat_1030153674", - ["text"] = "Recover #% of Mana on Kill", - ["type"] = "enchant", - }, - }, + ["max"] = 4, + ["min"] = 3, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_1030153674", + ["text"] = "Recover #% of Mana on Kill", + ["type"] = "enchant", + }, + }, ["1766_MinionLife"] = { ["Helmet"] = { - ["max"] = 15, - ["min"] = 10, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "enchant.stat_770672621", - ["text"] = "Minions have #% increased maximum Life", - ["type"] = "enchant", - }, - }, + ["max"] = 15, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_770672621", + ["text"] = "Minions have #% increased maximum Life", + ["type"] = "enchant", + }, + }, ["1798_MovementVelocity"] = { ["Boots"] = { - ["max"] = 15, - ["min"] = 8, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2250533757", - ["text"] = "#% increased Movement Speed", - ["type"] = "enchant", - }, - }, + ["max"] = 15, + ["min"] = 8, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2250533757", + ["text"] = "#% increased Movement Speed", + ["type"] = "enchant", + }, + }, ["179_LocalIncreaseSocketedMeleeGemLevel"] = { ["Chest"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "enchant.stat_829382474", - ["text"] = "+# to Level of Socketed Melee Gems", - ["type"] = "enchant", - }, - }, + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_829382474", + ["text"] = "+# to Level of Socketed Melee Gems", + ["type"] = "enchant", + }, + }, ["1844_ChanceToAvoidFreezeAndChill"] = { ["Ring"] = { - ["max"] = 40, - ["min"] = 26, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "enchant.stat_3483999943", - ["text"] = "#% chance to Avoid being Chilled", - ["type"] = "enchant", - }, - }, + ["max"] = 40, + ["min"] = 26, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_3483999943", + ["text"] = "#% chance to Avoid being Chilled", + ["type"] = "enchant", + }, + }, ["1845_ChanceToAvoidFreezeAndChill"] = { ["Ring"] = { - ["max"] = 40, - ["min"] = 26, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "enchant.stat_1514829491", - ["text"] = "#% chance to Avoid being Frozen", - ["type"] = "enchant", - }, - }, + ["max"] = 40, + ["min"] = 26, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_1514829491", + ["text"] = "#% chance to Avoid being Frozen", + ["type"] = "enchant", + }, + }, ["1846_AvoidIgnite"] = { ["Ring"] = { - ["max"] = 40, - ["min"] = 26, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "enchant.stat_1783006896", - ["text"] = "#% chance to Avoid being Ignited", - ["type"] = "enchant", - }, - }, + ["max"] = 40, + ["min"] = 26, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_1783006896", + ["text"] = "#% chance to Avoid being Ignited", + ["type"] = "enchant", + }, + }, ["1848_AvoidShock"] = { ["Ring"] = { - ["max"] = 40, - ["min"] = 26, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "enchant.stat_1871765599", - ["text"] = "#% chance to Avoid being Shocked", - ["type"] = "enchant", - }, - }, + ["max"] = 40, + ["min"] = 26, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_1871765599", + ["text"] = "#% chance to Avoid being Shocked", + ["type"] = "enchant", + }, + }, ["1849_ChanceToAvoidPoison"] = { ["Ring"] = { - ["max"] = 40, - ["min"] = 26, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "enchant.stat_4053951709", - ["text"] = "#% chance to Avoid being Poisoned", - ["type"] = "enchant", - }, - }, + ["max"] = 40, + ["min"] = 26, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_4053951709", + ["text"] = "#% chance to Avoid being Poisoned", + ["type"] = "enchant", + }, + }, ["1851_AvoidStun"] = { ["Gloves"] = { - ["max"] = 25, - ["min"] = 17, - }, + ["max"] = 25, + ["min"] = 17, + }, ["Helmet"] = { - ["max"] = 25, - ["min"] = 17, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "enchant.stat_4262448838", - ["text"] = "#% chance to Avoid being Stunned", - ["type"] = "enchant", - }, - }, + ["max"] = 25, + ["min"] = 17, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_4262448838", + ["text"] = "#% chance to Avoid being Stunned", + ["type"] = "enchant", + }, + }, ["1874_ReducedFreezeDuration"] = { ["Helmet"] = { - ["max"] = 40, - ["min"] = 31, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2160282525", - ["text"] = "#% reduced Freeze Duration on you", - ["type"] = "enchant", - }, - }, + ["max"] = 40, + ["min"] = 31, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2160282525", + ["text"] = "#% reduced Freeze Duration on you", + ["type"] = "enchant", + }, + }, ["1875_ReducedBurnDuration"] = { ["Ring"] = { - ["max"] = 40, - ["min"] = 31, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "enchant.stat_986397080", - ["text"] = "#% reduced Ignite Duration on you", - ["type"] = "enchant", - }, - }, + ["max"] = 40, + ["min"] = 31, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_986397080", + ["text"] = "#% reduced Ignite Duration on you", + ["type"] = "enchant", + }, + }, ["1973_MinionDamage"] = { ["Gloves"] = { - ["max"] = 15, - ["min"] = 8, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "enchant.stat_1589917703", - ["text"] = "Minions deal #% increased Damage", - ["type"] = "enchant", - }, - }, + ["max"] = 15, + ["min"] = 8, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_1589917703", + ["text"] = "Minions deal #% increased Damage", + ["type"] = "enchant", + }, + }, ["2026_ChanceToIgnite"] = { ["1HMace"] = { - ["max"] = 10, - ["min"] = 5, - }, + ["max"] = 10, + ["min"] = 5, + }, ["1HWeapon"] = { - ["max"] = 10, - ["min"] = 5, - }, + ["max"] = 10, + ["min"] = 5, + }, ["2HWeapon"] = { - ["max"] = 15, - ["min"] = 7, - }, + ["max"] = 15, + ["min"] = 7, + }, ["Staff"] = { - ["max"] = 15, - ["min"] = 7, - }, + ["max"] = 15, + ["min"] = 7, + }, ["Wand"] = { - ["max"] = 10, - ["min"] = 5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "enchant.stat_1335054179", - ["text"] = "#% chance to Ignite", - ["type"] = "enchant", - }, - }, + ["max"] = 10, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_1335054179", + ["text"] = "#% chance to Ignite", + ["type"] = "enchant", + }, + }, ["2029_ChanceToFreeze"] = { ["1HMace"] = { - ["max"] = 10, - ["min"] = 5, - }, + ["max"] = 10, + ["min"] = 5, + }, ["1HWeapon"] = { - ["max"] = 10, - ["min"] = 5, - }, + ["max"] = 10, + ["min"] = 5, + }, ["2HWeapon"] = { - ["max"] = 15, - ["min"] = 7, - }, + ["max"] = 15, + ["min"] = 7, + }, ["Staff"] = { - ["max"] = 15, - ["min"] = 7, - }, + ["max"] = 15, + ["min"] = 7, + }, ["Wand"] = { - ["max"] = 10, - ["min"] = 5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2309614417", - ["text"] = "#% chance to Freeze", - ["type"] = "enchant", - }, - }, + ["max"] = 10, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2309614417", + ["text"] = "#% chance to Freeze", + ["type"] = "enchant", + }, + }, ["2033_ChanceToShock"] = { ["1HMace"] = { - ["max"] = 10, - ["min"] = 5, - }, + ["max"] = 10, + ["min"] = 5, + }, ["1HWeapon"] = { - ["max"] = 10, - ["min"] = 5, - }, + ["max"] = 10, + ["min"] = 5, + }, ["2HWeapon"] = { - ["max"] = 15, - ["min"] = 7, - }, + ["max"] = 15, + ["min"] = 7, + }, ["Staff"] = { - ["max"] = 15, - ["min"] = 7, - }, + ["max"] = 15, + ["min"] = 7, + }, ["Wand"] = { - ["max"] = 10, - ["min"] = 5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "enchant.stat_1538773178", - ["text"] = "#% chance to Shock", - ["type"] = "enchant", - }, - }, + ["max"] = 10, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_1538773178", + ["text"] = "#% chance to Shock", + ["type"] = "enchant", + }, + }, ["2039_CullingStrike"] = { ["1HAxe"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["1HMace"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["1HSword"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["1HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["2HAxe"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["2HMace"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["2HSword"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["2HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Bow"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Claw"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Dagger"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Staff"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Wand"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_2524254339", - ["text"] = "Culling Strike", - ["type"] = "enchant", - }, - }, + ["id"] = "enchant.stat_2524254339", + ["text"] = "Culling Strike", + ["type"] = "enchant", + }, + }, ["2500_LightRadius"] = { ["Helmet"] = { - ["max"] = 35, - ["min"] = 16, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "enchant.stat_1263695895", - ["text"] = "#% increased Light Radius", - ["type"] = "enchant", - }, - }, + ["max"] = 35, + ["min"] = 16, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_1263695895", + ["text"] = "#% increased Light Radius", + ["type"] = "enchant", + }, + }, ["2519_TemporalChainsOnHit"] = { ["Gloves"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_4139135963", - ["text"] = "Curse Enemies with Temporal Chains on Hit", - ["type"] = "enchant", - }, - }, + ["id"] = "enchant.stat_4139135963", + ["text"] = "Curse Enemies with Temporal Chains on Hit", + ["type"] = "enchant", + }, + }, ["2578_SummonTotemCastSpeed"] = { ["Amulet"] = { - ["max"] = 30, - ["min"] = 16, - }, + ["max"] = 30, + ["min"] = 16, + }, ["Boots"] = { - ["max"] = 30, - ["min"] = 16, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "enchant.stat_3374165039", - ["text"] = "#% increased Totem Placement speed", - ["type"] = "enchant", - }, - }, + ["max"] = 30, + ["min"] = 16, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_3374165039", + ["text"] = "#% increased Totem Placement speed", + ["type"] = "enchant", + }, + }, ["2629_EnduranceChargeOnKillChance"] = { ["Ring"] = { - ["max"] = 12, - ["min"] = 5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "enchant.stat_1054322244", - ["text"] = "#% chance to gain an Endurance Charge on Kill", - ["type"] = "enchant", - }, - }, + ["max"] = 12, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_1054322244", + ["text"] = "#% chance to gain an Endurance Charge on Kill", + ["type"] = "enchant", + }, + }, ["2631_FrenzyChargeOnKillChance"] = { ["Ring"] = { - ["max"] = 12, - ["min"] = 5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "enchant.stat_1826802197", - ["text"] = "#% chance to gain a Frenzy Charge on Kill", - ["type"] = "enchant", - }, - }, + ["max"] = 12, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_1826802197", + ["text"] = "#% chance to gain a Frenzy Charge on Kill", + ["type"] = "enchant", + }, + }, ["2633_PowerChargeOnKillChance"] = { ["Ring"] = { - ["max"] = 12, - ["min"] = 5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2483795307", - ["text"] = "#% chance to gain a Power Charge on Kill", - ["type"] = "enchant", - }, - }, + ["max"] = 12, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2483795307", + ["text"] = "#% chance to gain a Power Charge on Kill", + ["type"] = "enchant", + }, + }, ["2745_LocalMeleeWeaponRange"] = { ["1HAxe"] = { - ["max"] = 0.4, - ["min"] = 0.1, - }, + ["max"] = 0.4, + ["min"] = 0.1, + }, ["1HMace"] = { - ["max"] = 0.4, - ["min"] = 0.1, - }, + ["max"] = 0.4, + ["min"] = 0.1, + }, ["1HSword"] = { - ["max"] = 0.4, - ["min"] = 0.1, - }, + ["max"] = 0.4, + ["min"] = 0.1, + }, ["1HWeapon"] = { - ["max"] = 0.4, - ["min"] = 0.1, - }, + ["max"] = 0.4, + ["min"] = 0.1, + }, ["2HAxe"] = { - ["max"] = 0.4, - ["min"] = 0.1, - }, + ["max"] = 0.4, + ["min"] = 0.1, + }, ["2HMace"] = { - ["max"] = 0.4, - ["min"] = 0.1, - }, + ["max"] = 0.4, + ["min"] = 0.1, + }, ["2HSword"] = { - ["max"] = 0.4, - ["min"] = 0.1, - }, + ["max"] = 0.4, + ["min"] = 0.1, + }, ["2HWeapon"] = { - ["max"] = 0.4, - ["min"] = 0.1, - }, + ["max"] = 0.4, + ["min"] = 0.1, + }, ["Bow"] = { - ["max"] = 0.4, - ["min"] = 0.1, - }, + ["max"] = 0.4, + ["min"] = 0.1, + }, ["Claw"] = { - ["max"] = 0.4, - ["min"] = 0.1, - }, + ["max"] = 0.4, + ["min"] = 0.1, + }, ["Dagger"] = { - ["max"] = 0.4, - ["min"] = 0.1, - }, + ["max"] = 0.4, + ["min"] = 0.1, + }, ["Staff"] = { - ["max"] = 0.4, - ["min"] = 0.1, - }, + ["max"] = 0.4, + ["min"] = 0.1, + }, ["Wand"] = { - ["max"] = 0.4, - ["min"] = 0.1, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "enchant.stat_350598685", - ["text"] = "+# metres to Weapon Range", - ["type"] = "enchant", - }, - }, + ["max"] = 0.4, + ["min"] = 0.1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_350598685", + ["text"] = "+# metres to Weapon Range", + ["type"] = "enchant", + }, + }, ["2824_ReturningAttackProjectiles"] = { ["Quiver"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_1658124062", - ["text"] = "Attack Projectiles Return to you", - ["type"] = "enchant", - }, - }, + ["id"] = "enchant.stat_1658124062", + ["text"] = "Attack Projectiles Return to you", + ["type"] = "enchant", + }, + }, ["5026_ColdExposureOnHit"] = { ["1HMace"] = { - ["max"] = 12, - ["min"] = 7, - }, + ["max"] = 12, + ["min"] = 7, + }, ["1HWeapon"] = { - ["max"] = 12, - ["min"] = 7, - }, + ["max"] = 12, + ["min"] = 7, + }, ["2HWeapon"] = { - ["max"] = 18, - ["min"] = 10, - }, + ["max"] = 18, + ["min"] = 10, + }, ["Dagger"] = { - ["max"] = 12, - ["min"] = 7, - }, + ["max"] = 12, + ["min"] = 7, + }, ["Staff"] = { - ["max"] = 18, - ["min"] = 10, - }, + ["max"] = 18, + ["min"] = 10, + }, ["Wand"] = { - ["max"] = 12, - ["min"] = 7, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2630708439", - ["text"] = "#% chance to inflict Cold Exposure on Hit", - ["type"] = "enchant", - }, - }, + ["max"] = 12, + ["min"] = 7, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2630708439", + ["text"] = "#% chance to inflict Cold Exposure on Hit", + ["type"] = "enchant", + }, + }, ["5027_FireExposureOnHit"] = { ["1HMace"] = { - ["max"] = 12, - ["min"] = 7, - }, + ["max"] = 12, + ["min"] = 7, + }, ["1HWeapon"] = { - ["max"] = 12, - ["min"] = 7, - }, + ["max"] = 12, + ["min"] = 7, + }, ["2HWeapon"] = { - ["max"] = 18, - ["min"] = 10, - }, + ["max"] = 18, + ["min"] = 10, + }, ["Dagger"] = { - ["max"] = 12, - ["min"] = 7, - }, + ["max"] = 12, + ["min"] = 7, + }, ["Staff"] = { - ["max"] = 18, - ["min"] = 10, - }, + ["max"] = 18, + ["min"] = 10, + }, ["Wand"] = { - ["max"] = 12, - ["min"] = 7, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "enchant.stat_3602667353", - ["text"] = "#% chance to inflict Fire Exposure on Hit", - ["type"] = "enchant", - }, - }, + ["max"] = 12, + ["min"] = 7, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_3602667353", + ["text"] = "#% chance to inflict Fire Exposure on Hit", + ["type"] = "enchant", + }, + }, ["5028_LightningExposureOnHit"] = { ["1HMace"] = { - ["max"] = 12, - ["min"] = 7, - }, + ["max"] = 12, + ["min"] = 7, + }, ["1HWeapon"] = { - ["max"] = 12, - ["min"] = 7, - }, + ["max"] = 12, + ["min"] = 7, + }, ["2HWeapon"] = { - ["max"] = 18, - ["min"] = 10, - }, + ["max"] = 18, + ["min"] = 10, + }, ["Dagger"] = { - ["max"] = 12, - ["min"] = 7, - }, + ["max"] = 12, + ["min"] = 7, + }, ["Staff"] = { - ["max"] = 18, - ["min"] = 10, - }, + ["max"] = 18, + ["min"] = 10, + }, ["Wand"] = { - ["max"] = 12, - ["min"] = 7, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "enchant.stat_4265906483", - ["text"] = "#% chance to inflict Lightning Exposure on Hit", - ["type"] = "enchant", - }, - }, - }, + ["max"] = 12, + ["min"] = 7, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_4265906483", + ["text"] = "#% chance to inflict Lightning Exposure on Hit", + ["type"] = "enchant", + }, + }, + }, ["Synthesis"] = { - ["10008_ShockEffect"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2527686725", - ["text"] = "#% increased Effect of Shock", - ["type"] = "implicit", - }, - }, - ["10043_BrandAttachmentRange"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_4223377453", - ["text"] = "#% increased Brand Attachment range", - ["type"] = "implicit", - }, - }, - ["10125_AdditionalCriticalStrikeChanceWithSpells"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_791835907", - ["text"] = "+#% to Spell Critical Strike Chance", - ["type"] = "implicit", - }, - }, - ["10136_SpellsDoubleDamageChance"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2813626504", - ["text"] = "Spells have a #% chance to deal Double Damage", - ["type"] = "implicit", - }, - }, - ["10146_SpellDamagePerMana"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3555662994", - ["text"] = "#% increased Spell Damage per 500 Maximum Mana", - ["type"] = "implicit", - }, - }, - ["10153_SpellDamagePer10Strength"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_4249521944", - ["text"] = "#% increased Spell Damage per 16 Strength", - ["type"] = "implicit", - }, - }, - ["10154_SpellDamagePer16Dexterity"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2612056840", - ["text"] = "#% increased Spell Damage per 16 Dexterity", - ["type"] = "implicit", - }, - }, - ["10155_SpellDamagePer16Intelligence"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3961014595", - ["text"] = "#% increased Spell Damage per 16 Intelligence", - ["type"] = "implicit", - }, - }, - ["10156_SpellDamagePer16Strength"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_4249521944", - ["text"] = "#% increased Spell Damage per 16 Strength", - ["type"] = "implicit", - }, - }, - ["10188_SpellsHinderOnHitChance"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3002506763", - ["text"] = "#% chance to Hinder Enemies on Hit with Spells", - ["type"] = "implicit", - }, - }, - ["10431_DamageWithTriggeredSpells"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3067892458", - ["text"] = "Triggered Spells deal #% increased Spell Damage", - ["type"] = "implicit", - }, - }, - ["10456_BurningGroundEffectEffectiveness"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1643688236", - ["text"] = "Unaffected by Burning Ground", - ["type"] = "implicit", - }, - }, - ["10461_ChilledGroundEffectEffectiveness"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3653191834", - ["text"] = "Unaffected by Chilled Ground", - ["type"] = "implicit", - }, - }, - ["10481_ShockedGroundEffectEffectiveness"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2234049899", - ["text"] = "Unaffected by Shocked Ground", - ["type"] = "implicit", - }, - }, - ["10535_VitalityReservation"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3972739758", - ["text"] = "Vitality has #% increased Mana Reservation Efficiency", - ["type"] = "implicit", - }, - }, - ["10536_VitalityReservationEfficiency"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3972739758", - ["text"] = "Vitality has #% increased Mana Reservation Efficiency", - ["type"] = "implicit", - }, - }, - ["10820_UnwaveringStance"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1683578560", - ["text"] = "Unwavering Stance", - ["type"] = "implicit", - }, - }, + ["10009_ShockEffect"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2527686725", + ["text"] = "#% increased Effect of Shock", + ["type"] = "implicit", + }, + }, + ["10044_BrandAttachmentRange"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_4223377453", + ["text"] = "#% increased Brand Attachment range", + ["type"] = "implicit", + }, + }, + ["10126_AdditionalCriticalStrikeChanceWithSpells"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_791835907", + ["text"] = "+#% to Spell Critical Strike Chance", + ["type"] = "implicit", + }, + }, + ["10137_SpellsDoubleDamageChance"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2813626504", + ["text"] = "Spells have a #% chance to deal Double Damage", + ["type"] = "implicit", + }, + }, + ["10147_SpellDamagePerMana"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3555662994", + ["text"] = "#% increased Spell Damage per 500 Maximum Mana", + ["type"] = "implicit", + }, + }, + ["10154_SpellDamagePer10Strength"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1073314277", + ["text"] = "#% increased Spell Damage per 10 Strength", + ["type"] = "implicit", + }, + }, + ["10155_SpellDamagePer16Dexterity"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2612056840", + ["text"] = "#% increased Spell Damage per 16 Dexterity", + ["type"] = "implicit", + }, + }, + ["10156_SpellDamagePer16Intelligence"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2818518881", + ["text"] = "#% increased Spell Damage per 10 Intelligence", + ["type"] = "implicit", + }, + }, + ["10157_SpellDamagePer16Strength"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1073314277", + ["text"] = "#% increased Spell Damage per 10 Strength", + ["type"] = "implicit", + }, + }, + ["10189_SpellsHinderOnHitChance"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3002506763", + ["text"] = "#% chance to Hinder Enemies on Hit with Spells", + ["type"] = "implicit", + }, + }, + ["10432_DamageWithTriggeredSpells"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3067892458", + ["text"] = "Triggered Spells deal #% increased Spell Damage", + ["type"] = "implicit", + }, + }, + ["10457_BurningGroundEffectEffectiveness"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1643688236", + ["text"] = "Unaffected by Burning Ground", + ["type"] = "implicit", + }, + }, + ["10462_ChilledGroundEffectEffectiveness"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3653191834", + ["text"] = "Unaffected by Chilled Ground", + ["type"] = "implicit", + }, + }, + ["10482_ShockedGroundEffectEffectiveness"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2234049899", + ["text"] = "Unaffected by Shocked Ground", + ["type"] = "implicit", + }, + }, + ["10536_VitalityReservation"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1233806203", + ["text"] = "Vitality has #% increased Mana Reservation Efficiency", + ["type"] = "implicit", + }, + }, + ["10537_VitalityReservationEfficiency"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1233806203", + ["text"] = "Vitality has #% increased Mana Reservation Efficiency", + ["type"] = "implicit", + }, + }, + ["10821_UnwaveringStance"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1683578560", + ["text"] = "Unwavering Stance", + ["type"] = "implicit", + }, + }, ["1138_BlockPercent"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_2530372417", - ["text"] = "#% Chance to Block Attack Damage", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_2530372417", + ["text"] = "#% Chance to Block Attack Damage", + ["type"] = "implicit", + }, + }, ["1141_SpellDamageSuppressed"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_4116705863", - ["text"] = "Prevent +#% of Suppressed Spell Damage", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_4116705863", + ["text"] = "Prevent +#% of Suppressed Spell Damage", + ["type"] = "implicit", + }, + }, ["1142_ChanceToSuppressSpellsOld"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_3680664274", - ["text"] = "+#% chance to Suppress Spell Damage", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_3680664274", + ["text"] = "+#% chance to Suppress Spell Damage", + ["type"] = "implicit", + }, + }, ["1160_SpellBlockPercentage"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_561307714", - ["text"] = "#% Chance to Block Spell Damage", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_561307714", + ["text"] = "#% Chance to Block Spell Damage", + ["type"] = "implicit", + }, + }, ["1176_AllAttributes"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_1379411836", - ["text"] = "+# to all Attributes", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_1379411836", + ["text"] = "+# to all Attributes", + ["type"] = "implicit", + }, + }, ["1177_StrengthImplicit"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_4080418644", - ["text"] = "+# to Strength", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_4080418644", + ["text"] = "+# to Strength", + ["type"] = "implicit", + }, + }, ["1178_DexterityImplicit"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_3261801346", - ["text"] = "+# to Dexterity", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_3261801346", + ["text"] = "+# to Dexterity", + ["type"] = "implicit", + }, + }, ["1179_IntelligenceImplicit"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_328541901", - ["text"] = "+# to Intelligence", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_328541901", + ["text"] = "+# to Intelligence", + ["type"] = "implicit", + }, + }, ["1183_PercentageAllAttributes"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_3143208761", - ["text"] = "#% increased Attributes", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_3143208761", + ["text"] = "#% increased Attributes", + ["type"] = "implicit", + }, + }, ["1184_PercentageStrength"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_734614379", - ["text"] = "#% increased Strength", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_734614379", + ["text"] = "#% increased Strength", + ["type"] = "implicit", + }, + }, ["1185_PercentageDexterity"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_4139681126", - ["text"] = "#% increased Dexterity", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_4139681126", + ["text"] = "#% increased Dexterity", + ["type"] = "implicit", + }, + }, ["1186_PercentageIntelligence"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_656461285", - ["text"] = "#% increased Intelligence", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_656461285", + ["text"] = "#% increased Intelligence", + ["type"] = "implicit", + }, + }, ["1191_AllDamage"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_2154246560", - ["text"] = "#% increased Damage", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_2154246560", + ["text"] = "#% increased Damage", + ["type"] = "implicit", + }, + }, ["1198_AttackDamage"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_2843214518", - ["text"] = "#% increased Attack Damage", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_2843214518", + ["text"] = "#% increased Attack Damage", + ["type"] = "implicit", + }, + }, ["1210_DegenerationDamage"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_967627487", - ["text"] = "#% increased Damage over Time", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_967627487", + ["text"] = "#% increased Damage over Time", + ["type"] = "implicit", + }, + }, ["1217_DamageWhileLeechingLife"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_3591306273", - ["text"] = "#% increased Damage while Leeching Life", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_3591306273", + ["text"] = "#% increased Damage while Leeching Life", + ["type"] = "implicit", + }, + }, ["1219_DamageWhileLeechingMana"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_1994684426", - ["text"] = "#% increased Damage while Leeching Mana", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_1994684426", + ["text"] = "#% increased Damage while Leeching Mana", + ["type"] = "implicit", + }, + }, ["1223_SpellDamage"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_2974417149", - ["text"] = "#% increased Spell Damage", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_2974417149", + ["text"] = "#% increased Spell Damage", + ["type"] = "implicit", + }, + }, ["1227_SpellDamageWithStaff"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_3496944181", - ["text"] = "#% increased Spell Damage while wielding a Staff", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_3496944181", + ["text"] = "#% increased Spell Damage while wielding a Staff", + ["type"] = "implicit", + }, + }, ["1229_SpellDamageWithShield"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_1766142294", - ["text"] = "#% increased Spell Damage while holding a Shield", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_1766142294", + ["text"] = "#% increased Spell Damage while holding a Shield", + ["type"] = "implicit", + }, + }, ["1230_SpellDamageWithDualWield"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_1678690824", - ["text"] = "#% increased Spell Damage while Dual Wielding", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_1678690824", + ["text"] = "#% increased Spell Damage while Dual Wielding", + ["type"] = "implicit", + }, + }, ["1231_PhysicalDamagePercent"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_1310194496", - ["text"] = "#% increased Global Physical Damage", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_1310194496", + ["text"] = "#% increased Global Physical Damage", + ["type"] = "implicit", + }, + }, ["1232_LocalPhysicalDamagePercent"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_1509134228", - ["text"] = "#% increased Physical Damage", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_1509134228", + ["text"] = "#% increased Physical Damage", + ["type"] = "implicit", + }, + }, ["1234_MeleeDamage"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_1002362373", - ["text"] = "#% increased Melee Damage", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_1002362373", + ["text"] = "#% increased Melee Damage", + ["type"] = "implicit", + }, + }, ["1256_ColdDamageOverTimeMultiplier"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_1950806024", - ["text"] = "+#% to Cold Damage over Time Multiplier", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_1950806024", + ["text"] = "+#% to Cold Damage over Time Multiplier", + ["type"] = "implicit", + }, + }, ["1259_ChaosDamageOverTimeMultiplier"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_4055307827", - ["text"] = "+#% to Chaos Damage over Time Multiplier", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_4055307827", + ["text"] = "+#% to Chaos Damage over Time Multiplier", + ["type"] = "implicit", + }, + }, ["1276_LocalPhysicalDamage"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - ["overrideModLine"] = "Adds # to # Physical Damage", - }, + ["overrideModLine"] = "Adds # to # Physical Damage", + }, ["tradeMod"] = { - ["id"] = "implicit.stat_1940865751", - ["text"] = "Adds # to # Physical Damage (Local)", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_1940865751", + ["text"] = "Adds # to # Physical Damage (Local)", + ["type"] = "implicit", + }, + }, ["1276_LocalPhysicalDamageTwoHanded"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - ["overrideModLine"] = "Adds # to # Physical Damage", - }, + ["overrideModLine"] = "Adds # to # Physical Damage", + }, ["tradeMod"] = { - ["id"] = "implicit.stat_1940865751", - ["text"] = "Adds # to # Physical Damage (Local)", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_1940865751", + ["text"] = "Adds # to # Physical Damage (Local)", + ["type"] = "implicit", + }, + }, ["1303_AxeIncreasedPhysicalDamage"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_2008219439", - ["text"] = "#% increased Physical Damage with Axes", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_2008219439", + ["text"] = "#% increased Physical Damage with Axes", + ["type"] = "implicit", + }, + }, ["1307_StaffIncreasedPhysicalDamage"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_3150705301", - ["text"] = "#% increased Physical Damage with Staves", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_3150705301", + ["text"] = "#% increased Physical Damage with Staves", + ["type"] = "implicit", + }, + }, ["1315_ClawIncreasedPhysicalDamage"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_635761691", - ["text"] = "#% increased Physical Damage with Claws", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_635761691", + ["text"] = "#% increased Physical Damage with Claws", + ["type"] = "implicit", + }, + }, ["1321_DaggerIncreasedPhysicalDamage"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_3882531569", - ["text"] = "#% increased Physical Damage with Daggers", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_3882531569", + ["text"] = "#% increased Physical Damage with Daggers", + ["type"] = "implicit", + }, + }, ["1327_MaceIncreasedPhysicalDamage"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_3774831856", - ["text"] = "#% increased Physical Damage with Maces or Sceptres", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_3774831856", + ["text"] = "#% increased Physical Damage with Maces or Sceptres", + ["type"] = "implicit", + }, + }, ["1333_BowIncreasedPhysicalDamage"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_402920808", - ["text"] = "#% increased Physical Damage with Bows", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_402920808", + ["text"] = "#% increased Physical Damage with Bows", + ["type"] = "implicit", + }, + }, ["1338_SwordIncreasedPhysicalDamage"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_3814560373", - ["text"] = "#% increased Physical Damage with Swords", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_3814560373", + ["text"] = "#% increased Physical Damage with Swords", + ["type"] = "implicit", + }, + }, ["1345_WandIncreasedPhysicalDamage"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_2769075491", - ["text"] = "#% increased Physical Damage with Wands", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_2769075491", + ["text"] = "#% increased Physical Damage with Wands", + ["type"] = "implicit", + }, + }, ["1357_FireDamagePercentage"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_3962278098", - ["text"] = "#% increased Fire Damage", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_3962278098", + ["text"] = "#% increased Fire Damage", + ["type"] = "implicit", + }, + }, ["1359_GlobalAddedFireDamage"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_321077055", - ["text"] = "Adds # to # Fire Damage", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_321077055", + ["text"] = "Adds # to # Fire Damage", + ["type"] = "implicit", + }, + }, ["1362_LocalFireDamage"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - ["overrideModLine"] = "Adds # to # Fire Damage", - }, + ["overrideModLine"] = "Adds # to # Fire Damage", + }, ["tradeMod"] = { - ["id"] = "implicit.stat_709508406", - ["text"] = "Adds # to # Fire Damage (Local)", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_709508406", + ["text"] = "Adds # to # Fire Damage (Local)", + ["type"] = "implicit", + }, + }, ["1362_LocalFireDamageTwoHand"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - ["overrideModLine"] = "Adds # to # Fire Damage", - }, + ["overrideModLine"] = "Adds # to # Fire Damage", + }, ["tradeMod"] = { - ["id"] = "implicit.stat_709508406", - ["text"] = "Adds # to # Fire Damage (Local)", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_709508406", + ["text"] = "Adds # to # Fire Damage (Local)", + ["type"] = "implicit", + }, + }, ["1366_ColdDamagePercentage"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_3291658075", - ["text"] = "#% increased Cold Damage", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_3291658075", + ["text"] = "#% increased Cold Damage", + ["type"] = "implicit", + }, + }, ["1368_GlobalAddedColdDamage"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_2387423236", - ["text"] = "Adds # to # Cold Damage", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_2387423236", + ["text"] = "Adds # to # Cold Damage", + ["type"] = "implicit", + }, + }, ["1371_LocalColdDamage"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - ["overrideModLine"] = "Adds # to # Cold Damage", - }, + ["overrideModLine"] = "Adds # to # Cold Damage", + }, ["tradeMod"] = { - ["id"] = "implicit.stat_1037193709", - ["text"] = "Adds # to # Cold Damage (Local)", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_1037193709", + ["text"] = "Adds # to # Cold Damage (Local)", + ["type"] = "implicit", + }, + }, ["1371_LocalColdDamageTwoHand"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - ["overrideModLine"] = "Adds # to # Cold Damage", - }, + ["overrideModLine"] = "Adds # to # Cold Damage", + }, ["tradeMod"] = { - ["id"] = "implicit.stat_1037193709", - ["text"] = "Adds # to # Cold Damage (Local)", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_1037193709", + ["text"] = "Adds # to # Cold Damage (Local)", + ["type"] = "implicit", + }, + }, ["1377_LightningDamagePercentage"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_2231156303", - ["text"] = "#% increased Lightning Damage", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_2231156303", + ["text"] = "#% increased Lightning Damage", + ["type"] = "implicit", + }, + }, ["1379_GlobalAddedLightningDamage"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_1334060246", - ["text"] = "Adds # to # Lightning Damage", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_1334060246", + ["text"] = "Adds # to # Lightning Damage", + ["type"] = "implicit", + }, + }, ["1382_LocalLightningDamage"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - ["overrideModLine"] = "Adds # to # Lightning Damage", - }, + ["overrideModLine"] = "Adds # to # Lightning Damage", + }, ["tradeMod"] = { - ["id"] = "implicit.stat_3336890334", - ["text"] = "Adds # to # Lightning Damage (Local)", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_3336890334", + ["text"] = "Adds # to # Lightning Damage (Local)", + ["type"] = "implicit", + }, + }, ["1382_LocalLightningDamageTwoHand"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - ["overrideModLine"] = "Adds # to # Lightning Damage", - }, + ["overrideModLine"] = "Adds # to # Lightning Damage", + }, ["tradeMod"] = { - ["id"] = "implicit.stat_3336890334", - ["text"] = "Adds # to # Lightning Damage (Local)", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_3336890334", + ["text"] = "Adds # to # Lightning Damage (Local)", + ["type"] = "implicit", + }, + }, ["1385_IncreasedChaosDamage"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_736967255", - ["text"] = "#% increased Chaos Damage", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_736967255", + ["text"] = "#% increased Chaos Damage", + ["type"] = "implicit", + }, + }, ["1386_GlobalAddedChaosDamage"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_3531280422", - ["text"] = "Adds # to # Chaos Damage", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_3531280422", + ["text"] = "Adds # to # Chaos Damage", + ["type"] = "implicit", + }, + }, ["1390_LocalChaosDamage"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - ["overrideModLine"] = "Adds # to # Chaos Damage", - }, + ["overrideModLine"] = "Adds # to # Chaos Damage", + }, ["tradeMod"] = { - ["id"] = "implicit.stat_2223678961", - ["text"] = "Adds # to # Chaos Damage (Local)", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_2223678961", + ["text"] = "Adds # to # Chaos Damage (Local)", + ["type"] = "implicit", + }, + }, ["1390_LocalChaosDamageTwoHand"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - ["overrideModLine"] = "Adds # to # Chaos Damage", - }, + ["overrideModLine"] = "Adds # to # Chaos Damage", + }, ["tradeMod"] = { - ["id"] = "implicit.stat_2223678961", - ["text"] = "Adds # to # Chaos Damage (Local)", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_2223678961", + ["text"] = "Adds # to # Chaos Damage (Local)", + ["type"] = "implicit", + }, + }, ["1404_SpellAddedFireDamage"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_1133016593", - ["text"] = "Adds # to # Fire Damage to Spells", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_1133016593", + ["text"] = "Adds # to # Fire Damage to Spells", + ["type"] = "implicit", + }, + }, ["1404_SpellAddedFireDamageTwoHand"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_1133016593", - ["text"] = "Adds # to # Fire Damage to Spells", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_1133016593", + ["text"] = "Adds # to # Fire Damage to Spells", + ["type"] = "implicit", + }, + }, ["1405_SpellAddedColdDamage"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_2469416729", - ["text"] = "Adds # to # Cold Damage to Spells", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_2469416729", + ["text"] = "Adds # to # Cold Damage to Spells", + ["type"] = "implicit", + }, + }, ["1405_SpellAddedColdDamageTwoHand"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_2469416729", - ["text"] = "Adds # to # Cold Damage to Spells", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_2469416729", + ["text"] = "Adds # to # Cold Damage to Spells", + ["type"] = "implicit", + }, + }, ["1406_SpellAddedLightningDamage"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_2831165374", - ["text"] = "Adds # to # Lightning Damage to Spells", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_2831165374", + ["text"] = "Adds # to # Lightning Damage to Spells", + ["type"] = "implicit", + }, + }, ["1406_SpellAddedLightningDamageTwoHand"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_2831165374", - ["text"] = "Adds # to # Lightning Damage to Spells", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_2831165374", + ["text"] = "Adds # to # Lightning Damage to Spells", + ["type"] = "implicit", + }, + }, ["1410_IncreasedAttackSpeed"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_681332047", - ["text"] = "#% increased Attack Speed", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_681332047", + ["text"] = "#% increased Attack Speed", + ["type"] = "implicit", + }, + }, ["1413_LocalIncreasedAttackSpeed"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - ["overrideModLine"] = "#% increased Attack Speed", - }, + ["overrideModLine"] = "#% increased Attack Speed", + }, ["tradeMod"] = { - ["id"] = "implicit.stat_210067635", - ["text"] = "#% increased Attack Speed (Local)", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_210067635", + ["text"] = "#% increased Attack Speed (Local)", + ["type"] = "implicit", + }, + }, ["1420_AxeIncreasedAttackSpeed"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_3550868361", - ["text"] = "#% increased Attack Speed with Axes", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_3550868361", + ["text"] = "#% increased Attack Speed with Axes", + ["type"] = "implicit", + }, + }, ["1421_StaffIncreasedAttackSpeed"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_1394963553", - ["text"] = "#% increased Attack Speed with Staves", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_1394963553", + ["text"] = "#% increased Attack Speed with Staves", + ["type"] = "implicit", + }, + }, ["1422_ClawIncreasedAttackSpeed"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_1421645223", - ["text"] = "#% increased Attack Speed with Claws", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_1421645223", + ["text"] = "#% increased Attack Speed with Claws", + ["type"] = "implicit", + }, + }, ["1423_DaggerIncreasedAttackSpeed"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_2538566497", - ["text"] = "#% increased Attack Speed with Daggers", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_2538566497", + ["text"] = "#% increased Attack Speed with Daggers", + ["type"] = "implicit", + }, + }, ["1424_MaceIncreasedAttackSpeed"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_2515515064", - ["text"] = "#% increased Attack Speed with Maces or Sceptres", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_2515515064", + ["text"] = "#% increased Attack Speed with Maces or Sceptres", + ["type"] = "implicit", + }, + }, ["1425_BowIncreasedAttackSpeed"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_3759735052", - ["text"] = "#% increased Attack Speed with Bows", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_3759735052", + ["text"] = "#% increased Attack Speed with Bows", + ["type"] = "implicit", + }, + }, ["1426_SwordIncreasedAttackSpeed"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_3293699237", - ["text"] = "#% increased Attack Speed with Swords", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_3293699237", + ["text"] = "#% increased Attack Speed with Swords", + ["type"] = "implicit", + }, + }, ["1427_WandIncreasedAttackSpeed"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_3720627346", - ["text"] = "#% increased Attack Speed with Wands", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_3720627346", + ["text"] = "#% increased Attack Speed with Wands", + ["type"] = "implicit", + }, + }, ["1433_IncreasedAccuracy"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_803737631", - ["text"] = "+# to Accuracy Rating", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_803737631", + ["text"] = "+# to Accuracy Rating", + ["type"] = "implicit", + }, + }, ["1434_IncreasedAccuracyPercent"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_624954515", - ["text"] = "#% increased Global Accuracy Rating", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_624954515", + ["text"] = "#% increased Global Accuracy Rating", + ["type"] = "implicit", + }, + }, ["1434_LocalAccuracyRatingIncrease"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_624954515", - ["text"] = "#% increased Global Accuracy Rating", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_624954515", + ["text"] = "#% increased Global Accuracy Rating", + ["type"] = "implicit", + }, + }, ["1438_AxeIncreasedAccuracyRating"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_2538120572", - ["text"] = "#% increased Accuracy Rating with Axes", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_2538120572", + ["text"] = "#% increased Accuracy Rating with Axes", + ["type"] = "implicit", + }, + }, ["1439_StaffIncreasedAccuracyRating"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_1617235962", - ["text"] = "#% increased Accuracy Rating with Staves", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_1617235962", + ["text"] = "#% increased Accuracy Rating with Staves", + ["type"] = "implicit", + }, + }, ["1440_ClawIncreasedAccuracyRating"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_1297965523", - ["text"] = "#% increased Accuracy Rating with Claws", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_1297965523", + ["text"] = "#% increased Accuracy Rating with Claws", + ["type"] = "implicit", + }, + }, ["1441_DaggerIncreasedAccuracyRating"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_2054715690", - ["text"] = "#% increased Accuracy Rating with Daggers", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_2054715690", + ["text"] = "#% increased Accuracy Rating with Daggers", + ["type"] = "implicit", + }, + }, ["1442_MaceIncreasedAccuracyRating"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_3208450870", - ["text"] = "#% increased Accuracy Rating with Maces or Sceptres", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_3208450870", + ["text"] = "#% increased Accuracy Rating with Maces or Sceptres", + ["type"] = "implicit", + }, + }, ["1443_BowIncreasedAccuracyRating"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_169946467", - ["text"] = "#% increased Accuracy Rating with Bows", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_169946467", + ["text"] = "#% increased Accuracy Rating with Bows", + ["type"] = "implicit", + }, + }, ["1444_SwordIncreasedAccuracyRating"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_2090868905", - ["text"] = "#% increased Accuracy Rating with Swords", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_2090868905", + ["text"] = "#% increased Accuracy Rating with Swords", + ["type"] = "implicit", + }, + }, ["1445_WandIncreasedAccuracyRating"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_2150183156", - ["text"] = "#% increased Accuracy Rating with Wands", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_2150183156", + ["text"] = "#% increased Accuracy Rating with Wands", + ["type"] = "implicit", + }, + }, ["1446_IncreasedCastSpeed"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_2891184298", - ["text"] = "#% increased Cast Speed", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_2891184298", + ["text"] = "#% increased Cast Speed", + ["type"] = "implicit", + }, + }, ["1447_CastSpeedWithDualWield"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_2382196858", - ["text"] = "#% increased Cast Speed while Dual Wielding", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_2382196858", + ["text"] = "#% increased Cast Speed while Dual Wielding", + ["type"] = "implicit", + }, + }, ["1448_CastSpeedWithShield"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_1612163368", - ["text"] = "#% increased Cast Speed while holding a Shield", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_1612163368", + ["text"] = "#% increased Cast Speed while holding a Shield", + ["type"] = "implicit", + }, + }, ["1449_CastSpeedWithStaff"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_2066542501", - ["text"] = "#% increased Cast Speed while wielding a Staff", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_2066542501", + ["text"] = "#% increased Cast Speed while wielding a Staff", + ["type"] = "implicit", + }, + }, ["1458_SpellCriticalStrikeChance"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_737908626", - ["text"] = "#% increased Spell Critical Strike Chance", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_737908626", + ["text"] = "#% increased Spell Critical Strike Chance", + ["type"] = "implicit", + }, + }, ["1459_CriticalStrikeChance"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_587431675", - ["text"] = "#% increased Global Critical Strike Chance", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_587431675", + ["text"] = "#% increased Global Critical Strike Chance", + ["type"] = "implicit", + }, + }, ["1464_LocalCriticalStrikeChance"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_2375316951", - ["text"] = "#% increased Critical Strike Chance", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_2375316951", + ["text"] = "#% increased Critical Strike Chance", + ["type"] = "implicit", + }, + }, ["1488_CriticalStrikeMultiplier"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_3556824919", - ["text"] = "+#% to Global Critical Strike Multiplier", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_3556824919", + ["text"] = "+#% to Global Critical Strike Multiplier", + ["type"] = "implicit", + }, + }, ["1493_DaggerCriticalStrikeMultiplier"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_3998601568", - ["text"] = "+#% to Critical Strike Multiplier with Daggers", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_3998601568", + ["text"] = "+#% to Critical Strike Multiplier with Daggers", + ["type"] = "implicit", + }, + }, ["1494_MaceCriticalStrikeMultiplier"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_458899422", - ["text"] = "+#% to Critical Strike Multiplier with Maces or Sceptres", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_458899422", + ["text"] = "+#% to Critical Strike Multiplier with Maces or Sceptres", + ["type"] = "implicit", + }, + }, ["1495_AxeCriticalStrikeMultiplier"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_4219746989", - ["text"] = "+#% to Critical Strike Multiplier with Axes", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_4219746989", + ["text"] = "+#% to Critical Strike Multiplier with Axes", + ["type"] = "implicit", + }, + }, ["1496_BowCriticalStrikeMultiplier"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_1712221299", - ["text"] = "+#% to Critical Strike Multiplier with Bows", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_1712221299", + ["text"] = "+#% to Critical Strike Multiplier with Bows", + ["type"] = "implicit", + }, + }, ["1497_SwordCriticalStrikeMultiplier"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_3114492047", - ["text"] = "+#% to Critical Strike Multiplier with Swords", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_3114492047", + ["text"] = "+#% to Critical Strike Multiplier with Swords", + ["type"] = "implicit", + }, + }, ["1498_WandCriticalStrikeMultiplier"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_1241396104", - ["text"] = "+#% to Critical Strike Multiplier with Wands", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_1241396104", + ["text"] = "+#% to Critical Strike Multiplier with Wands", + ["type"] = "implicit", + }, + }, ["1499_ClawCriticalStrikeMultiplier"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_2811834828", - ["text"] = "+#% to Critical Strike Multiplier with Claws", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_2811834828", + ["text"] = "+#% to Critical Strike Multiplier with Claws", + ["type"] = "implicit", + }, + }, ["1500_StaffCriticalStrikeMultiplier"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_1474913037", - ["text"] = "+#% to Critical Strike Multiplier with Staves", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_1474913037", + ["text"] = "+#% to Critical Strike Multiplier with Staves", + ["type"] = "implicit", + }, + }, ["1512_ReducedExtraDamageFromCrits"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_3855016469", - ["text"] = "You take #% reduced Extra Damage from Critical Strikes", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_3855016469", + ["text"] = "You take #% reduced Extra Damage from Critical Strikes", + ["type"] = "implicit", + }, + }, ["1517_StunThresholdReduction"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_1443060084", - ["text"] = "#% reduced Enemy Stun Threshold", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_1443060084", + ["text"] = "#% reduced Enemy Stun Threshold", + ["type"] = "implicit", + }, + }, ["1540_LocalPhysicalDamageReductionRating"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - ["overrideModLine"] = "+# to Armour", - }, + ["overrideModLine"] = "+# to Armour", + }, ["tradeMod"] = { - ["id"] = "implicit.stat_3484657501", - ["text"] = "+# to Armour (Local)", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_3484657501", + ["text"] = "+# to Armour (Local)", + ["type"] = "implicit", + }, + }, ["1541_GlobalPhysicalDamageReductionRatingPercent"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_2866361420", - ["text"] = "#% increased Armour", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_2866361420", + ["text"] = "#% increased Armour", + ["type"] = "implicit", + }, + }, ["1542_LocalPhysicalDamageReductionRatingPercent"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - ["overrideModLine"] = "#% increased Armour", - }, + ["overrideModLine"] = "#% increased Armour", + }, ["tradeMod"] = { - ["id"] = "implicit.stat_1062208444", - ["text"] = "#% increased Armour (Local)", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_1062208444", + ["text"] = "#% increased Armour (Local)", + ["type"] = "implicit", + }, + }, ["1548_LocalEvasionRating"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - ["overrideModLine"] = "+# to Evasion Rating", - }, + ["overrideModLine"] = "+# to Evasion Rating", + }, ["tradeMod"] = { - ["id"] = "implicit.stat_53045048", - ["text"] = "+# to Evasion Rating (Local)", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_53045048", + ["text"] = "+# to Evasion Rating (Local)", + ["type"] = "implicit", + }, + }, ["1549_GlobalEvasionRatingPercent"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_2106365538", - ["text"] = "#% increased Evasion Rating", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_2106365538", + ["text"] = "#% increased Evasion Rating", + ["type"] = "implicit", + }, + }, ["1550_LocalEvasionRatingIncreasePercent"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - ["overrideModLine"] = "#% increased Evasion Rating", - }, + ["overrideModLine"] = "#% increased Evasion Rating", + }, ["tradeMod"] = { - ["id"] = "implicit.stat_124859000", - ["text"] = "#% increased Evasion Rating (Local)", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_124859000", + ["text"] = "#% increased Evasion Rating (Local)", + ["type"] = "implicit", + }, + }, ["1556_IncreasedEvasionRatingPerFrenzyCharge"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_660404777", - ["text"] = "#% increased Evasion Rating per Frenzy Charge", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_660404777", + ["text"] = "#% increased Evasion Rating per Frenzy Charge", + ["type"] = "implicit", + }, + }, ["1558_EnergyShield"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_3489782002", - ["text"] = "+# to maximum Energy Shield", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_3489782002", + ["text"] = "+# to maximum Energy Shield", + ["type"] = "implicit", + }, + }, ["1559_LocalEnergyShield"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - ["overrideModLine"] = "+# to maximum Energy Shield", - }, + ["overrideModLine"] = "+# to maximum Energy Shield", + }, ["tradeMod"] = { - ["id"] = "implicit.stat_4052037485", - ["text"] = "+# to maximum Energy Shield (Local)", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_4052037485", + ["text"] = "+# to maximum Energy Shield (Local)", + ["type"] = "implicit", + }, + }, ["1560_LocalEnergyShieldPercent"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - ["overrideModLine"] = "#% increased Energy Shield", - }, + ["overrideModLine"] = "#% increased Energy Shield", + }, ["tradeMod"] = { - ["id"] = "implicit.stat_4015621042", - ["text"] = "#% increased Energy Shield (Local)", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_4015621042", + ["text"] = "#% increased Energy Shield (Local)", + ["type"] = "implicit", + }, + }, ["1561_GlobalEnergyShieldPercent"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_2482852589", - ["text"] = "#% increased maximum Energy Shield", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_2482852589", + ["text"] = "#% increased maximum Energy Shield", + ["type"] = "implicit", + }, + }, ["1562_EnergyShieldDelay"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_1782086450", - ["text"] = "#% faster start of Energy Shield Recharge", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_1782086450", + ["text"] = "#% faster start of Energy Shield Recharge", + ["type"] = "implicit", + }, + }, ["1565_EnergyShieldRegeneration"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_2339757871", - ["text"] = "#% increased Energy Shield Recharge Rate", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_2339757871", + ["text"] = "#% increased Energy Shield Recharge Rate", + ["type"] = "implicit", + }, + }, ["1568_EnergyShieldRecoveryRate"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_988575597", - ["text"] = "#% increased Energy Shield Recovery rate", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_988575597", + ["text"] = "#% increased Energy Shield Recovery rate", + ["type"] = "implicit", + }, + }, ["1569_IncreasedLife"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_3299347043", - ["text"] = "+# to maximum Life", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_3299347043", + ["text"] = "+# to maximum Life", + ["type"] = "implicit", + }, + }, ["1571_MaximumLifeIncreasePercent"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_983749596", - ["text"] = "#% increased maximum Life", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_983749596", + ["text"] = "#% increased maximum Life", + ["type"] = "implicit", + }, + }, ["1574_LifeRegeneration"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_3325883026", - ["text"] = "Regenerate # Life per second", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_3325883026", + ["text"] = "Regenerate # Life per second", + ["type"] = "implicit", + }, + }, ["1576_LifeRegenerationPercentPerEnduranceCharge"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_989800292", - ["text"] = "Regenerate #% of Life per second per Endurance Charge", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_989800292", + ["text"] = "Regenerate #% of Life per second per Endurance Charge", + ["type"] = "implicit", + }, + }, ["1578_LifeRecoveryRate"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_3240073117", - ["text"] = "#% increased Life Recovery rate", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_3240073117", + ["text"] = "#% increased Life Recovery rate", + ["type"] = "implicit", + }, + }, ["1579_IncreasedMana"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_1050105434", - ["text"] = "+# to maximum Mana", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_1050105434", + ["text"] = "+# to maximum Mana", + ["type"] = "implicit", + }, + }, ["1580_MaximumManaIncreasePercent"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_2748665614", - ["text"] = "#% increased maximum Mana", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_2748665614", + ["text"] = "#% increased maximum Mana", + ["type"] = "implicit", + }, + }, ["1581_BaseManaRegeneration"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_3188455409", - ["text"] = "Regenerate #% of Mana per second", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_3188455409", + ["text"] = "Regenerate #% of Mana per second", + ["type"] = "implicit", + }, + }, ["1582_AddedManaRegeneration"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_4291461939", - ["text"] = "Regenerate # Mana per second", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_4291461939", + ["text"] = "Regenerate # Mana per second", + ["type"] = "implicit", + }, + }, ["1584_ManaRegeneration"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_789117908", - ["text"] = "#% increased Mana Regeneration Rate", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_789117908", + ["text"] = "#% increased Mana Regeneration Rate", + ["type"] = "implicit", + }, + }, ["1586_ManaRecoveryRate"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_3513180117", - ["text"] = "#% increased Mana Recovery rate", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_3513180117", + ["text"] = "#% increased Mana Recovery rate", + ["type"] = "implicit", + }, + }, ["158_LocalIncreaseSocketedStrengthGemLevel"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_916797432", - ["text"] = "+# to Level of Socketed Strength Gems", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_916797432", + ["text"] = "+# to Level of Socketed Strength Gems", + ["type"] = "implicit", + }, + }, ["1592_ItemFoundQuantityIncrease"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_884586851", - ["text"] = "#% increased Quantity of Items found", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_884586851", + ["text"] = "#% increased Quantity of Items found", + ["type"] = "implicit", + }, + }, ["1596_ItemFoundRarityIncrease"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_3917489142", - ["text"] = "#% increased Rarity of Items found", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_3917489142", + ["text"] = "#% increased Rarity of Items found", + ["type"] = "implicit", + }, + }, ["1603_ExperienceIncrease"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_3666934677", - ["text"] = "#% increased Experience gain", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_3666934677", + ["text"] = "#% increased Experience gain", + ["type"] = "implicit", + }, + }, ["160_LocalIncreaseSocketedDexterityGemLevel"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_2718698372", - ["text"] = "+# to Level of Socketed Dexterity Gems", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_2718698372", + ["text"] = "+# to Level of Socketed Dexterity Gems", + ["type"] = "implicit", + }, + }, ["1619_AllResistances"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_2901986750", - ["text"] = "+#% to all Elemental Resistances", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_2901986750", + ["text"] = "+#% to all Elemental Resistances", + ["type"] = "implicit", + }, + }, ["161_LocalIncreaseSocketedIntelligenceGemLevel"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_1719423857", - ["text"] = "+# to Level of Socketed Intelligence Gems", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_1719423857", + ["text"] = "+# to Level of Socketed Intelligence Gems", + ["type"] = "implicit", + }, + }, ["1623_MaximumFireResistanceImplicit"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_4095671657", - ["text"] = "+#% to maximum Fire Resistance", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_4095671657", + ["text"] = "+#% to maximum Fire Resistance", + ["type"] = "implicit", + }, + }, ["1625_FireResistance"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_3372524247", - ["text"] = "+#% to Fire Resistance", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_3372524247", + ["text"] = "+#% to Fire Resistance", + ["type"] = "implicit", + }, + }, ["1629_MaximumColdResistanceImplicit"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_3676141501", - ["text"] = "+#% to maximum Cold Resistance", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_3676141501", + ["text"] = "+#% to maximum Cold Resistance", + ["type"] = "implicit", + }, + }, ["162_LocalIncreaseSocketedGemLevel"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_2843100721", - ["text"] = "+# to Level of Socketed Gems", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_2843100721", + ["text"] = "+# to Level of Socketed Gems", + ["type"] = "implicit", + }, + }, ["1631_ColdResistance"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_4220027924", - ["text"] = "+#% to Cold Resistance", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_4220027924", + ["text"] = "+#% to Cold Resistance", + ["type"] = "implicit", + }, + }, ["1634_MaximumLightningResistanceImplicit"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_1011760251", - ["text"] = "+#% to maximum Lightning Resistance", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_1011760251", + ["text"] = "+#% to maximum Lightning Resistance", + ["type"] = "implicit", + }, + }, ["1636_LightningResistance"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_1671376347", - ["text"] = "+#% to Lightning Resistance", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_1671376347", + ["text"] = "+#% to Lightning Resistance", + ["type"] = "implicit", + }, + }, ["1640_MaximumChaosResistanceImplicit"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_1301765461", - ["text"] = "+#% to maximum Chaos Resistance", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_1301765461", + ["text"] = "+#% to maximum Chaos Resistance", + ["type"] = "implicit", + }, + }, ["1641_ChaosResistance"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_2923486259", - ["text"] = "+#% to Chaos Resistance", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_2923486259", + ["text"] = "+#% to Chaos Resistance", + ["type"] = "implicit", + }, + }, ["1642_MaximumElementalResistanceImplicit"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_569299859", - ["text"] = "+#% to all maximum Resistances", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_569299859", + ["text"] = "+#% to all maximum Resistances", + ["type"] = "implicit", + }, + }, ["1649_LifeLeechPermyriad"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_3593843976", - ["text"] = "#% of Physical Attack Damage Leeched as Life", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_3593843976", + ["text"] = "#% of Physical Attack Damage Leeched as Life", + ["type"] = "implicit", + }, + }, ["1651_LifeLeechLocalPermyriad"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - ["overrideModLine"] = "#% of Physical Attack Damage Leeched as Life", - }, + ["overrideModLine"] = "#% of Physical Attack Damage Leeched as Life", + }, ["tradeMod"] = { - ["id"] = "implicit.stat_55876295", - ["text"] = "#% of Physical Attack Damage Leeched as Life (Local)", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_55876295", + ["text"] = "#% of Physical Attack Damage Leeched as Life (Local)", + ["type"] = "implicit", + }, + }, ["1664_LifeLeechFromAttacksPermyriad"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_141810208", - ["text"] = "#% of Attack Damage Leeched as Life", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_141810208", + ["text"] = "#% of Attack Damage Leeched as Life", + ["type"] = "implicit", + }, + }, ["1666_PhysicalDamageLifeLeechPermyriad"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_3764265320", - ["text"] = "#% of Physical Damage Leeched as Life", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_2508100173", + ["text"] = "#% of Physical Damage Leeched as Life", + ["type"] = "implicit", + }, + }, ["1670_FireDamageLifeLeechPermyriad"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_3848282610", - ["text"] = "#% of Fire Damage Leeched as Life", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_1743742391", + ["text"] = "#% of Fire Damage Leeched as Life", + ["type"] = "implicit", + }, + }, ["1675_ColdDamageLifeLeechPermyriad"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_3999401129", - ["text"] = "#% of Cold Damage Leeched as Life", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_2459451600", + ["text"] = "#% of Cold Damage Leeched as Life", + ["type"] = "implicit", + }, + }, ["1679_LightningDamageLifeLeechPermyriad"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_80079005", - ["text"] = "#% of Lightning Damage Leeched as Life", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_2696663331", + ["text"] = "#% of Lightning Damage Leeched as Life", + ["type"] = "implicit", + }, + }, ["167_LocalIncreaseSocketedFireGemLevel"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_339179093", - ["text"] = "+# to Level of Socketed Fire Gems", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_339179093", + ["text"] = "+# to Level of Socketed Fire Gems", + ["type"] = "implicit", + }, + }, ["1682_ChaosDamageLifeLeechPermyriad"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_2238792070", - ["text"] = "#% of Chaos Damage Leeched as Life", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_2238792070", + ["text"] = "#% of Chaos Damage Leeched as Life", + ["type"] = "implicit", + }, + }, ["1686_ElementalDamageLeechedAsLifePermyriad"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_720395808", - ["text"] = "#% of Elemental Damage Leeched as Life", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_720395808", + ["text"] = "#% of Elemental Damage Leeched as Life", + ["type"] = "implicit", + }, + }, ["168_LocalIncreaseSocketedColdGemLevel"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_1645459191", - ["text"] = "+# to Level of Socketed Cold Gems", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_1645459191", + ["text"] = "+# to Level of Socketed Cold Gems", + ["type"] = "implicit", + }, + }, ["1699_ManaLeechPermyriad"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_3237948413", - ["text"] = "#% of Physical Attack Damage Leeched as Mana", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_3237948413", + ["text"] = "#% of Physical Attack Damage Leeched as Mana", + ["type"] = "implicit", + }, + }, ["169_LocalIncreaseSocketedLightningGemLevel"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_4043416969", - ["text"] = "+# to Level of Socketed Lightning Gems", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_4043416969", + ["text"] = "+# to Level of Socketed Lightning Gems", + ["type"] = "implicit", + }, + }, ["1701_ManaLeechLocalPermyriad"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - ["overrideModLine"] = "#% of Physical Attack Damage Leeched as Mana", - }, + ["overrideModLine"] = "#% of Physical Attack Damage Leeched as Mana", + }, ["tradeMod"] = { - ["id"] = "implicit.stat_669069897", - ["text"] = "#% of Physical Attack Damage Leeched as Mana (Local)", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_669069897", + ["text"] = "#% of Physical Attack Damage Leeched as Mana (Local)", + ["type"] = "implicit", + }, + }, ["1705_AttackDamageManaLeech"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_350069479", - ["text"] = "#% of Attack Damage Leeched as Mana", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_350069479", + ["text"] = "#% of Attack Damage Leeched as Mana", + ["type"] = "implicit", + }, + }, ["170_LocalIncreaseSocketedChaosGemLevel"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_2675603254", - ["text"] = "+# to Level of Socketed Chaos Gems", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_2675603254", + ["text"] = "+# to Level of Socketed Chaos Gems", + ["type"] = "implicit", + }, + }, ["1722_EnergyShieldLeechPermyriad"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_11106713", - ["text"] = "#% of Spell Damage Leeched as Energy Shield", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_11106713", + ["text"] = "#% of Spell Damage Leeched as Energy Shield", + ["type"] = "implicit", + }, + }, ["1731_MaximumLifeLeechRate"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_4118987751", - ["text"] = "#% increased Maximum total Life Recovery per second from Leech", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_4118987751", + ["text"] = "#% increased Maximum total Life Recovery per second from Leech", + ["type"] = "implicit", + }, + }, ["1733_MaximumManaLeechRate"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_96977651", - ["text"] = "#% increased Maximum total Mana Recovery per second from Leech", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_96977651", + ["text"] = "#% increased Maximum total Mana Recovery per second from Leech", + ["type"] = "implicit", + }, + }, ["1734_MaximumEnergyShieldLeechRate"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_2013799819", - ["text"] = "#% increased Maximum total Energy Shield Recovery per second from Leech", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_2013799819", + ["text"] = "#% increased Maximum total Energy Shield Recovery per second from Leech", + ["type"] = "implicit", + }, + }, ["1738_LifeGainPerTargetLocal"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_821021828", - ["text"] = "Grants # Life per Enemy Hit", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_821021828", + ["text"] = "Grants # Life per Enemy Hit", + ["type"] = "implicit", + }, + }, ["1740_LifeGainPerTarget"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_2797971005", - ["text"] = "Gain # Life per Enemy Hit with Attacks", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_2797971005", + ["text"] = "Gain # Life per Enemy Hit with Attacks", + ["type"] = "implicit", + }, + }, ["1744_ManaGainPerTarget"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_820939409", - ["text"] = "Gain # Mana per Enemy Hit with Attacks", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_820939409", + ["text"] = "Gain # Mana per Enemy Hit with Attacks", + ["type"] = "implicit", + }, + }, ["1747_EnergyShieldGainPerTarget"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_211381198", - ["text"] = "Gain # Energy Shield per Enemy Hit with Attacks", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_211381198", + ["text"] = "Gain # Energy Shield per Enemy Hit with Attacks", + ["type"] = "implicit", + }, + }, ["1748_LifeGainedFromEnemyDeath"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_3695891184", - ["text"] = "Gain # Life per Enemy Killed", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_3695891184", + ["text"] = "Gain # Life per Enemy Killed", + ["type"] = "implicit", + }, + }, ["1749_MaximumLifeOnKillPercent"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_2023107756", - ["text"] = "Recover #% of Life on Kill", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_2023107756", + ["text"] = "Recover #% of Life on Kill", + ["type"] = "implicit", + }, + }, ["1751_MaximumManaOnKillPercent"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_1030153674", - ["text"] = "Recover #% of Mana on Kill", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_1030153674", + ["text"] = "Recover #% of Mana on Kill", + ["type"] = "implicit", + }, + }, ["1757_GainLifeOnBlock"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_762600725", - ["text"] = "# Life gained when you Block", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_762600725", + ["text"] = "# Life gained when you Block", + ["type"] = "implicit", + }, + }, ["1758_GainManaOnBlock"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_2122183138", - ["text"] = "# Mana gained when you Block", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_2122183138", + ["text"] = "# Mana gained when you Block", + ["type"] = "implicit", + }, + }, ["1763_ManaGainedFromEnemyDeath"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_1368271171", - ["text"] = "Gain # Mana per Enemy Killed", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_1368271171", + ["text"] = "Gain # Mana per Enemy Killed", + ["type"] = "implicit", + }, + }, ["1766_MinionLife"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_770672621", - ["text"] = "Minions have #% increased maximum Life", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_770672621", + ["text"] = "Minions have #% increased maximum Life", + ["type"] = "implicit", + }, + }, ["1769_MinionMovementSpeed"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_174664100", - ["text"] = "Minions have #% increased Movement Speed", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_174664100", + ["text"] = "Minions have #% increased Movement Speed", + ["type"] = "implicit", + }, + }, ["176_IncreasedSocketedAoEGemLevel"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_2551600084", - ["text"] = "+# to Level of Socketed AoE Gems", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_2551600084", + ["text"] = "+# to Level of Socketed AoE Gems", + ["type"] = "implicit", + }, + }, ["177_LocalIncreaseSocketedProjectileGemLevel"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_2176571093", - ["text"] = "+# to Level of Socketed Projectile Gems", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_2176571093", + ["text"] = "+# to Level of Socketed Projectile Gems", + ["type"] = "implicit", + }, + }, ["178_LocalIncreaseSocketedBowGemLevel"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_2027269580", - ["text"] = "+# to Level of Socketed Bow Gems", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_2027269580", + ["text"] = "+# to Level of Socketed Bow Gems", + ["type"] = "implicit", + }, + }, ["1790_AdditionalPierce"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_2067062068", - ["text"] = "Projectiles Pierce # additional Targets", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_2067062068", + ["text"] = "Projectiles Pierce # additional Targets", + ["type"] = "implicit", + }, + }, ["1791_ArrowAdditionalPierce"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_3423006863", - ["text"] = "Arrows Pierce an additional Target", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_3423006863", + ["text"] = "Arrows Pierce an additional Target", + ["type"] = "implicit", + }, + }, ["1794_AdditionalArrows"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - ["overrideModLineSingular"] = "Bow Attacks fire an additional Arrow", - }, + ["overrideModLineSingular"] = "Bow Attacks fire an additional Arrow", + }, ["tradeMod"] = { - ["id"] = "implicit.stat_3885405204", - ["text"] = "Bow Attacks fire # additional Arrows", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_3885405204", + ["text"] = "Bow Attacks fire # additional Arrows", + ["type"] = "implicit", + }, + }, ["1796_ProjectileSpeed"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_3759663284", - ["text"] = "#% increased Projectile Speed", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_3759663284", + ["text"] = "#% increased Projectile Speed", + ["type"] = "implicit", + }, + }, ["1798_MovementVelocity"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_2250533757", - ["text"] = "#% increased Movement Speed", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_2250533757", + ["text"] = "#% increased Movement Speed", + ["type"] = "implicit", + }, + }, ["179_LocalIncreaseSocketedMeleeGemLevel"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_829382474", - ["text"] = "+# to Level of Socketed Melee Gems", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_829382474", + ["text"] = "+# to Level of Socketed Melee Gems", + ["type"] = "implicit", + }, + }, ["1803_MinimumEnduranceCharges"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_3706959521", - ["text"] = "+# to Minimum Endurance Charges", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_3706959521", + ["text"] = "+# to Minimum Endurance Charges", + ["type"] = "implicit", + }, + }, ["1804_MaximumEnduranceCharges"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_1515657623", - ["text"] = "+# to Maximum Endurance Charges", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_1515657623", + ["text"] = "+# to Maximum Endurance Charges", + ["type"] = "implicit", + }, + }, ["1808_MinimumFrenzyCharges"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_658456881", - ["text"] = "+# to Minimum Frenzy Charges", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_658456881", + ["text"] = "+# to Minimum Frenzy Charges", + ["type"] = "implicit", + }, + }, ["1809_MaximumFrenzyCharges"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_4078695", - ["text"] = "+# to Maximum Frenzy Charges", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_4078695", + ["text"] = "+# to Maximum Frenzy Charges", + ["type"] = "implicit", + }, + }, ["180_LocalIncreaseSocketedMinionGemLevel"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_3604946673", - ["text"] = "+# to Level of Socketed Minion Gems", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_3604946673", + ["text"] = "+# to Level of Socketed Minion Gems", + ["type"] = "implicit", + }, + }, ["1813_MinimumPowerCharges"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_1999711879", - ["text"] = "+# to Minimum Power Charges", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_1999711879", + ["text"] = "+# to Minimum Power Charges", + ["type"] = "implicit", + }, + }, ["1814_IncreasedMaximumPowerCharges"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_227523295", - ["text"] = "+# to Maximum Power Charges", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_227523295", + ["text"] = "+# to Maximum Power Charges", + ["type"] = "implicit", + }, + }, ["181_LocalIncreaseSocketedAuraLevel"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_2452998583", - ["text"] = "+# to Level of Socketed Aura Gems", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_2452998583", + ["text"] = "+# to Level of Socketed Aura Gems", + ["type"] = "implicit", + }, + }, ["1830_PowerChargeOnCriticalStrikeChance"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_3814876985", - ["text"] = "#% chance to gain a Power Charge on Critical Strike", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_3814876985", + ["text"] = "#% chance to gain a Power Charge on Critical Strike", + ["type"] = "implicit", + }, + }, ["1833_FrenzyChargeOnHitChance"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_2323242761", - ["text"] = "#% chance to gain a Frenzy Charge on Hit", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_2323242761", + ["text"] = "#% chance to gain a Frenzy Charge on Hit", + ["type"] = "implicit", + }, + }, ["1838_CannotBeFrozen"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_876831634", - ["text"] = "Cannot be Frozen", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_876831634", + ["text"] = "Cannot be Frozen", + ["type"] = "implicit", + }, + }, ["1839_CannotBeIgnited"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_331731406", - ["text"] = "Cannot be Ignited", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_331731406", + ["text"] = "Cannot be Ignited", + ["type"] = "implicit", + }, + }, ["1841_CannotBeShocked"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_491899612", - ["text"] = "Cannot be Shocked", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_491899612", + ["text"] = "Cannot be Shocked", + ["type"] = "implicit", + }, + }, ["1843_AvoidElementalStatusAilments"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_3005472710", - ["text"] = "#% chance to Avoid Elemental Ailments", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_3005472710", + ["text"] = "#% chance to Avoid Elemental Ailments", + ["type"] = "implicit", + }, + }, ["1844_AvoidChill"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_3483999943", - ["text"] = "#% chance to Avoid being Chilled", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_3483999943", + ["text"] = "#% chance to Avoid being Chilled", + ["type"] = "implicit", + }, + }, ["1845_AvoidFreeze"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_1514829491", - ["text"] = "#% chance to Avoid being Frozen", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_1514829491", + ["text"] = "#% chance to Avoid being Frozen", + ["type"] = "implicit", + }, + }, ["1846_AvoidIgnite"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_1783006896", - ["text"] = "#% chance to Avoid being Ignited", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_1783006896", + ["text"] = "#% chance to Avoid being Ignited", + ["type"] = "implicit", + }, + }, ["1848_AvoidShock"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_1871765599", - ["text"] = "#% chance to Avoid being Shocked", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_1871765599", + ["text"] = "#% chance to Avoid being Shocked", + ["type"] = "implicit", + }, + }, ["1849_ChanceToAvoidPoison"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_4053951709", - ["text"] = "#% chance to Avoid being Poisoned", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_4053951709", + ["text"] = "#% chance to Avoid being Poisoned", + ["type"] = "implicit", + }, + }, ["1851_AvoidStun"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_4262448838", - ["text"] = "#% chance to Avoid being Stunned", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_4262448838", + ["text"] = "#% chance to Avoid being Stunned", + ["type"] = "implicit", + }, + }, ["1856_ChillAndFreezeDuration"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_3485067555", - ["text"] = "#% increased Chill Duration on Enemies", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_3485067555", + ["text"] = "#% increased Chill Duration on Enemies", + ["type"] = "implicit", + }, + }, ["1857_ShockDuration"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_3668351662", - ["text"] = "#% increased Shock Duration on Enemies", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_3668351662", + ["text"] = "#% increased Shock Duration on Enemies", + ["type"] = "implicit", + }, + }, ["1858_ChillAndFreezeDuration"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_1073942215", - ["text"] = "#% increased Freeze Duration on Enemies", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_1073942215", + ["text"] = "#% increased Freeze Duration on Enemies", + ["type"] = "implicit", + }, + }, ["1859_BurnDuration"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_1086147743", - ["text"] = "#% increased Ignite Duration on Enemies", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_1086147743", + ["text"] = "#% increased Ignite Duration on Enemies", + ["type"] = "implicit", + }, + }, ["1863_StunDurationIncreasePercent"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_2517001139", - ["text"] = "#% increased Stun Duration on Enemies", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_2517001139", + ["text"] = "#% increased Stun Duration on Enemies", + ["type"] = "implicit", + }, + }, ["1867_SelfStatusAilmentDuration"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_1745952865", - ["text"] = "#% reduced Elemental Ailment Duration on you", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_1745952865", + ["text"] = "#% reduced Elemental Ailment Duration on you", + ["type"] = "implicit", + }, + }, ["1877_BurnDamage"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_1175385867", - ["text"] = "#% increased Burning Damage", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_1175385867", + ["text"] = "#% increased Burning Damage", + ["type"] = "implicit", + }, + }, ["1880_AreaOfEffect"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_280731498", - ["text"] = "#% increased Area of Effect", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_280731498", + ["text"] = "#% increased Area of Effect", + ["type"] = "implicit", + }, + }, ["1883_ManaCostReduction"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_474294393", - ["text"] = "#% reduced Mana Cost of Skills", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_474294393", + ["text"] = "#% reduced Mana Cost of Skills", + ["type"] = "implicit", + }, + }, ["1891_IncreaseManaCostFlat"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_3736589033", - ["text"] = "+# to Total Mana Cost of Skills", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_3736589033", + ["text"] = "+# to Total Mana Cost of Skills", + ["type"] = "implicit", + }, + }, ["1898_AvoidInterruptionWhileCasting"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_1916706958", - ["text"] = "#% chance to Ignore Stuns while Casting", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_1916706958", + ["text"] = "#% chance to Ignore Stuns while Casting", + ["type"] = "implicit", + }, + }, ["189_LocalIncreaseSocketedSupportGemLevel"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_4154259475", - ["text"] = "+# to Level of Socketed Support Gems", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_4154259475", + ["text"] = "+# to Level of Socketed Support Gems", + ["type"] = "implicit", + }, + }, ["1902_StunRecovery"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_2511217560", - ["text"] = "#% increased Stun and Block Recovery", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_2511217560", + ["text"] = "#% increased Stun and Block Recovery", + ["type"] = "implicit", + }, + }, ["1927_TrapThrowSpeed"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_118398748", - ["text"] = "#% increased Trap Throwing Speed", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_118398748", + ["text"] = "#% increased Trap Throwing Speed", + ["type"] = "implicit", + }, + }, ["1928_MineLayingSpeed"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_1896971621", - ["text"] = "#% increased Mine Throwing Speed", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_1896971621", + ["text"] = "#% increased Mine Throwing Speed", + ["type"] = "implicit", + }, + }, ["1932_PhysicalAddedAsFire"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_369494213", - ["text"] = "Gain #% of Physical Damage as Extra Fire Damage", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_369494213", + ["text"] = "Gain #% of Physical Damage as Extra Fire Damage", + ["type"] = "implicit", + }, + }, ["1934_PhysicalAddedAsLightning"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_219391121", - ["text"] = "Gain #% of Physical Damage as Extra Lightning Damage", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_219391121", + ["text"] = "Gain #% of Physical Damage as Extra Lightning Damage", + ["type"] = "implicit", + }, + }, ["1935_PhysicalAddedAsChaos"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_3319896421", - ["text"] = "Gain #% of Physical Damage as Extra Chaos Damage", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_3319896421", + ["text"] = "Gain #% of Physical Damage as Extra Chaos Damage", + ["type"] = "implicit", + }, + }, ["1938_LightningAddedAsChaos"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_2402136583", - ["text"] = "Gain #% of Lightning Damage as Extra Chaos Damage", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_2402136583", + ["text"] = "Gain #% of Lightning Damage as Extra Chaos Damage", + ["type"] = "implicit", + }, + }, ["1940_ColdAddedAsChaos"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_2915373966", - ["text"] = "Gain #% of Cold Damage as Extra Chaos Damage", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_2915373966", + ["text"] = "Gain #% of Cold Damage as Extra Chaos Damage", + ["type"] = "implicit", + }, + }, ["1941_FireAddedAsChaos"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_1599775597", - ["text"] = "Gain #% of Fire Damage as Extra Chaos Damage", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_1599775597", + ["text"] = "Gain #% of Fire Damage as Extra Chaos Damage", + ["type"] = "implicit", + }, + }, ["1944_LifeRegenerationRatePercentage"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_836936635", - ["text"] = "Regenerate #% of Life per second", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_836936635", + ["text"] = "Regenerate #% of Life per second", + ["type"] = "implicit", + }, + }, ["1955_ConvertPhysicalToFireImplicit"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_1533563525", - ["text"] = "#% of Physical Damage Converted to Fire Damage", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_1533563525", + ["text"] = "#% of Physical Damage Converted to Fire Damage", + ["type"] = "implicit", + }, + }, ["1957_ConvertPhysicalToColdImplicit"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_2133341901", - ["text"] = "#% of Physical Damage Converted to Cold Damage", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_2133341901", + ["text"] = "#% of Physical Damage Converted to Cold Damage", + ["type"] = "implicit", + }, + }, ["1959_ConvertPhysicalToLightningImplicit"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_3240769289", - ["text"] = "#% of Physical Damage Converted to Lightning Damage", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_3240769289", + ["text"] = "#% of Physical Damage Converted to Lightning Damage", + ["type"] = "implicit", + }, + }, ["1962_PhysicalDamageConvertToChaosImplicit"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_490098963", - ["text"] = "#% of Physical Damage Converted to Chaos Damage", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_490098963", + ["text"] = "#% of Physical Damage Converted to Chaos Damage", + ["type"] = "implicit", + }, + }, ["1973_MinionDamage"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_1589917703", - ["text"] = "Minions deal #% increased Damage", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_1589917703", + ["text"] = "Minions deal #% increased Damage", + ["type"] = "implicit", + }, + }, ["1980_ElementalDamagePercent"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_3141070085", - ["text"] = "#% increased Elemental Damage", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_3141070085", + ["text"] = "#% increased Elemental Damage", + ["type"] = "implicit", + }, + }, ["1988_MaximumBlockChance"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_4124805414", - ["text"] = "+#% to maximum Chance to Block Attack Damage", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_4124805414", + ["text"] = "+#% to maximum Chance to Block Attack Damage", + ["type"] = "implicit", + }, + }, ["1989_MaximumSpellBlockChance"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_2388574377", - ["text"] = "+#% to maximum Chance to Block Spell Damage", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_2388574377", + ["text"] = "+#% to maximum Chance to Block Spell Damage", + ["type"] = "implicit", + }, + }, ["1995_GlobalKnockbackChance"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_977908611", - ["text"] = "#% chance to Knock Enemies Back on hit", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_977908611", + ["text"] = "#% chance to Knock Enemies Back on hit", + ["type"] = "implicit", + }, + }, ["1996_ProjectileDamage"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_1839076647", - ["text"] = "#% increased Projectile Damage", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_1839076647", + ["text"] = "#% increased Projectile Damage", + ["type"] = "implicit", + }, + }, ["2026_ChanceToIgnite"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_1335054179", - ["text"] = "#% chance to Ignite", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_1335054179", + ["text"] = "#% chance to Ignite", + ["type"] = "implicit", + }, + }, ["2029_ChanceToFreeze"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_2309614417", - ["text"] = "#% chance to Freeze", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_2309614417", + ["text"] = "#% chance to Freeze", + ["type"] = "implicit", + }, + }, ["2033_ChanceToShock"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_1538773178", - ["text"] = "#% chance to Shock", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_1538773178", + ["text"] = "#% chance to Shock", + ["type"] = "implicit", + }, + }, ["2035_AreaDamage"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_4251717817", - ["text"] = "#% increased Area Damage", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_4251717817", + ["text"] = "#% increased Area Damage", + ["type"] = "implicit", + }, + }, ["2046_AttackAndCastSpeed"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_2672805335", - ["text"] = "#% increased Attack and Cast Speed", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_2672805335", + ["text"] = "#% increased Attack and Cast Speed", + ["type"] = "implicit", + }, + }, ["204_SocketedGemQuality"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_3828613551", - ["text"] = "+#% to Quality of Socketed Gems", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_3828613551", + ["text"] = "+#% to Quality of Socketed Gems", + ["type"] = "implicit", + }, + }, ["2059_GlobalFlaskLifeRecovery"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_821241191", - ["text"] = "#% increased Life Recovery from Flasks", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_821241191", + ["text"] = "#% increased Life Recovery from Flasks", + ["type"] = "implicit", + }, + }, ["205_IncreaseSocketedSupportGemQuality"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_1328548975", - ["text"] = "+#% to Quality of Socketed Support Gems", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_1328548975", + ["text"] = "+#% to Quality of Socketed Support Gems", + ["type"] = "implicit", + }, + }, ["207_SocketedAoEGemQuality"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_768982451", - ["text"] = "+#% to Quality of Socketed AoE Gems", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_768982451", + ["text"] = "+#% to Quality of Socketed AoE Gems", + ["type"] = "implicit", + }, + }, ["208_SocketedAuraGemQuality"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_2276941637", - ["text"] = "+#% to Quality of Socketed Aura Gems", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_2276941637", + ["text"] = "+#% to Quality of Socketed Aura Gems", + ["type"] = "implicit", + }, + }, ["209_SocketedBowGemQuality"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_3280600715", - ["text"] = "+#% to Quality of Socketed Bow Gems", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_3280600715", + ["text"] = "+#% to Quality of Socketed Bow Gems", + ["type"] = "implicit", + }, + }, ["210_SocketedChaosGemQuality"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_2062835769", - ["text"] = "+#% to Quality of Socketed Chaos Gems", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_2062835769", + ["text"] = "+#% to Quality of Socketed Chaos Gems", + ["type"] = "implicit", + }, + }, ["211_SocketedColdGemQuality"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_1164882313", - ["text"] = "+#% to Quality of Socketed Cold Gems", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_1164882313", + ["text"] = "+#% to Quality of Socketed Cold Gems", + ["type"] = "implicit", + }, + }, ["2125_EnduranceChargeDuration"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_1170174456", - ["text"] = "#% increased Endurance Charge Duration", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_1170174456", + ["text"] = "#% increased Endurance Charge Duration", + ["type"] = "implicit", + }, + }, ["2127_FrenzyChargeDuration"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_3338298622", - ["text"] = "#% increased Frenzy Charge Duration", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_3338298622", + ["text"] = "#% increased Frenzy Charge Duration", + ["type"] = "implicit", + }, + }, ["212_SocketedDexterityGemQuality"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_2877754099", - ["text"] = "+#% to Quality of Socketed Dexterity Gems", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_2877754099", + ["text"] = "+#% to Quality of Socketed Dexterity Gems", + ["type"] = "implicit", + }, + }, ["2140_IncreasedSpellDamagePerPowerCharge"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_827329571", - ["text"] = "#% increased Spell Damage per Power Charge", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_827329571", + ["text"] = "#% increased Spell Damage per Power Charge", + ["type"] = "implicit", + }, + }, ["2142_IncreasedPowerChargeDuration"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_3872306017", - ["text"] = "#% increased Power Charge Duration", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_3872306017", + ["text"] = "#% increased Power Charge Duration", + ["type"] = "implicit", + }, + }, ["214_SocketedFireGemQuality"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_3422008440", - ["text"] = "+#% to Quality of Socketed Fire Gems", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_3422008440", + ["text"] = "+#% to Quality of Socketed Fire Gems", + ["type"] = "implicit", + }, + }, ["2157_IncreasedLifeLeechRate"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_2633745731", - ["text"] = "#% increased total Recovery per second from Life Leech", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_2633745731", + ["text"] = "#% increased total Recovery per second from Life Leech", + ["type"] = "implicit", + }, + }, ["2158_IncreasedManaLeechRate"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_690135178", - ["text"] = "#% increased total Recovery per second from Mana Leech", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_690135178", + ["text"] = "#% increased total Recovery per second from Mana Leech", + ["type"] = "implicit", + }, + }, ["215_SocketedIntelligenceGemQuality"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_3174776455", - ["text"] = "+#% to Quality of Socketed Intelligence Gems", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_3174776455", + ["text"] = "+#% to Quality of Socketed Intelligence Gems", + ["type"] = "implicit", + }, + }, ["216_SocketedLightningGemQuality"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_1065580342", - ["text"] = "+#% to Quality of Socketed Lightning Gems", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_1065580342", + ["text"] = "+#% to Quality of Socketed Lightning Gems", + ["type"] = "implicit", + }, + }, ["217_SocketedMeleeGemQuality"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_1396421504", - ["text"] = "+#% to Quality of Socketed Melee Gems", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_1396421504", + ["text"] = "+#% to Quality of Socketed Melee Gems", + ["type"] = "implicit", + }, + }, ["2183_BeltIncreasedFlaskChargesGained"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_1452809865", - ["text"] = "#% increased Flask Charges gained", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_1452809865", + ["text"] = "#% increased Flask Charges gained", + ["type"] = "implicit", + }, + }, ["2184_BeltReducedFlaskChargesUsed"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_644456512", - ["text"] = "#% reduced Flask Charges used", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_644456512", + ["text"] = "#% reduced Flask Charges used", + ["type"] = "implicit", + }, + }, ["2187_BeltIncreasedFlaskDuration"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_3741323227", - ["text"] = "#% increased Flask Effect Duration", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_3741323227", + ["text"] = "#% increased Flask Effect Duration", + ["type"] = "implicit", + }, + }, ["219_SocketedProjectileGemQuality"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_2428621158", - ["text"] = "+#% to Quality of Socketed Projectile Gems", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_2428621158", + ["text"] = "+#% to Quality of Socketed Projectile Gems", + ["type"] = "implicit", + }, + }, ["2202_AttackerTakesDamageNoRange"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_3767873853", - ["text"] = "Reflects # Physical Damage to Melee Attackers", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_3767873853", + ["text"] = "Reflects # Physical Damage to Melee Attackers", + ["type"] = "implicit", + }, + }, ["220_SocketedStrengthGemQuality"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_122841557", - ["text"] = "+#% to Quality of Socketed Strength Gems", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_122841557", + ["text"] = "+#% to Quality of Socketed Strength Gems", + ["type"] = "implicit", + }, + }, ["221_AbyssJewelEffect"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_1482572705", - ["text"] = "#% increased Effect of Socketed Abyss Jewels", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_1482572705", + ["text"] = "#% increased Effect of Socketed Abyss Jewels", + ["type"] = "implicit", + }, + }, ["2228_ManaReservationEfficiency"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_4237190083", - ["text"] = "#% increased Mana Reservation Efficiency of Skills", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_1269219558", + ["text"] = "#% increased Mana Reservation Efficiency of Skills", + ["type"] = "implicit", + }, + }, ["2232_ReducedReservation"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_4237190083", - ["text"] = "#% increased Mana Reservation Efficiency of Skills", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_1269219558", + ["text"] = "#% increased Mana Reservation Efficiency of Skills", + ["type"] = "implicit", + }, + }, ["2234_PhysicalAttackDamageTaken"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_3441651621", - ["text"] = "+# Physical Damage taken from Attack Hits", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_3441651621", + ["text"] = "+# Physical Damage taken from Attack Hits", + ["type"] = "implicit", + }, + }, ["2237_FlatFireDamageTaken"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_614758785", - ["text"] = "+# Fire Damage taken from Hits", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_614758785", + ["text"] = "+# Fire Damage taken from Hits", + ["type"] = "implicit", + }, + }, ["2245_DegenDamageTaken"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_1101403182", - ["text"] = "#% reduced Damage taken from Damage Over Time", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_1101403182", + ["text"] = "#% reduced Damage taken from Damage Over Time", + ["type"] = "implicit", + }, + }, ["2273_ReducedPhysicalDamageTaken"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_3771516363", - ["text"] = "#% additional Physical Damage Reduction", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_3771516363", + ["text"] = "#% additional Physical Damage Reduction", + ["type"] = "implicit", + }, + }, ["2447_PhysicalDamageTakenAsFirePercent"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_3342989455", - ["text"] = "#% of Physical Damage from Hits taken as Fire Damage", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_3342989455", + ["text"] = "#% of Physical Damage from Hits taken as Fire Damage", + ["type"] = "implicit", + }, + }, ["2448_PhysicalDamageTakenAsCold"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_1871056256", - ["text"] = "#% of Physical Damage from Hits taken as Cold Damage", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_1871056256", + ["text"] = "#% of Physical Damage from Hits taken as Cold Damage", + ["type"] = "implicit", + }, + }, ["2449_PhysicalDamageTakenAsLightningPercent"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_425242359", - ["text"] = "#% of Physical Damage from Hits taken as Lightning Damage", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_425242359", + ["text"] = "#% of Physical Damage from Hits taken as Lightning Damage", + ["type"] = "implicit", + }, + }, ["2451_PhysicalDamageTakenAsChaos"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_4129825612", - ["text"] = "#% of Physical Damage from Hits taken as Chaos Damage", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_4129825612", + ["text"] = "#% of Physical Damage from Hits taken as Chaos Damage", + ["type"] = "implicit", + }, + }, ["2458_AdditionalBlock"] = { - ["sign"] = "+", + ["sign"] = "+", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_2530372417", - ["text"] = "#% Chance to Block Attack Damage", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_2530372417", + ["text"] = "#% Chance to Block Attack Damage", + ["type"] = "implicit", + }, + }, ["2483_LocalChanceToBleed"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_1519615863", - ["text"] = "#% chance to cause Bleeding on Hit", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_1519615863", + ["text"] = "#% chance to cause Bleeding on Hit", + ["type"] = "implicit", + }, + }, ["2489_ChanceToBleed"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_1923879260", - ["text"] = "Attacks have #% chance to cause Bleeding", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_1923879260", + ["text"] = "Attacks have #% chance to cause Bleeding", + ["type"] = "implicit", + }, + }, ["2500_LightRadius"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_1263695895", - ["text"] = "#% increased Light Radius", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_1263695895", + ["text"] = "#% increased Light Radius", + ["type"] = "implicit", + }, + }, ["2523_CurseOnHitLevelVulnerability"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_3967845372", - ["text"] = "Curse Enemies with Vulnerability on Hit", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_3967845372", + ["text"] = "Curse Enemies with Vulnerability on Hit", + ["type"] = "implicit", + }, + }, ["2525_CurseOnHitLevelElementalWeakness"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_2028847114", - ["text"] = "Curse Enemies with Elemental Weakness on Hit", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_2028847114", + ["text"] = "Curse Enemies with Elemental Weakness on Hit", + ["type"] = "implicit", + }, + }, ["2527_ConductivityOnHitLevel"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_710372469", - ["text"] = "Curse Enemies with Conductivity on Hit", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_710372469", + ["text"] = "Curse Enemies with Conductivity on Hit", + ["type"] = "implicit", + }, + }, ["2528_CurseOnHitDespair"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_2764915899", - ["text"] = "Curse Enemies with Despair on Hit", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_2764915899", + ["text"] = "Curse Enemies with Despair on Hit", + ["type"] = "implicit", + }, + }, ["2530_FlammabilityOnHitLevel"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_338121249", - ["text"] = "Curse Enemies with Flammability on Hit", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_338121249", + ["text"] = "Curse Enemies with Flammability on Hit", + ["type"] = "implicit", + }, + }, ["2531_FrostbiteOnHitLevel"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_426847518", - ["text"] = "Curse Enemies with Frostbite on Hit", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_426847518", + ["text"] = "Curse Enemies with Frostbite on Hit", + ["type"] = "implicit", + }, + }, ["2534_MeleeWeaponAndUnarmedRange"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_2264295449", - ["text"] = "+# metres to Melee Strike Range", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_2264295449", + ["text"] = "+# metres to Melee Strike Range", + ["type"] = "implicit", + }, + }, ["2559_ItemDropsOnGuardianDeath"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_3909846940", - ["text"] = "Item drops on Death if Equipped by an Animated Guardian", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_3909846940", + ["text"] = "Item drops on Death if Equipped by an Animated Guardian", + ["type"] = "implicit", + }, + }, ["2564_FasterIgniteDamage"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_2443492284", - ["text"] = "Ignites you inflict deal Damage #% faster", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_2443492284", + ["text"] = "Ignites you inflict deal Damage #% faster", + ["type"] = "implicit", + }, + }, ["2578_SummonTotemCastSpeed"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_3374165039", - ["text"] = "#% increased Totem Placement speed", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_3374165039", + ["text"] = "#% increased Totem Placement speed", + ["type"] = "implicit", + }, + }, ["2596_CurseEffectiveness"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_2353576063", - ["text"] = "#% increased Effect of your Curses", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_2353576063", + ["text"] = "#% increased Effect of your Curses", + ["type"] = "implicit", + }, + }, ["2610_MovementSpeedWhilePhased"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_3684879618", - ["text"] = "#% increased Movement Speed while Phasing", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_3684879618", + ["text"] = "#% increased Movement Speed while Phasing", + ["type"] = "implicit", + }, + }, ["2629_EnduranceChargeOnKillChance"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_1054322244", - ["text"] = "#% chance to gain an Endurance Charge on Kill", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_1054322244", + ["text"] = "#% chance to gain an Endurance Charge on Kill", + ["type"] = "implicit", + }, + }, ["2631_FrenzyChargeOnKillChance"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_1826802197", - ["text"] = "#% chance to gain a Frenzy Charge on Kill", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_1826802197", + ["text"] = "#% chance to gain a Frenzy Charge on Kill", + ["type"] = "implicit", + }, + }, ["2633_PowerChargeOnKillChance"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_2483795307", - ["text"] = "#% chance to gain a Power Charge on Kill", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_2483795307", + ["text"] = "#% chance to gain a Power Charge on Kill", + ["type"] = "implicit", + }, + }, ["2646_EnergyShieldRegenerationPerMinute"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_3594640492", - ["text"] = "Regenerate #% of Energy Shield per second", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_3594640492", + ["text"] = "Regenerate #% of Energy Shield per second", + ["type"] = "implicit", + }, + }, ["2690_VaalSkillDamageAffectsSkillDamage"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_3871212304", - ["text"] = "Increases and Reductions to Damage with Vaal Skills also apply to Non-Vaal Skills", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_3871212304", + ["text"] = "Increases and Reductions to Damage with Vaal Skills also apply to Non-Vaal Skills", + ["type"] = "implicit", + }, + }, ["2738_SpellDamagePer10Intelligence"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_3961014595", - ["text"] = "#% increased Spell Damage per 16 Intelligence", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_2818518881", + ["text"] = "#% increased Spell Damage per 10 Intelligence", + ["type"] = "implicit", + }, + }, ["2745_LocalMeleeWeaponRange"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_350598685", - ["text"] = "+# metres to Weapon Range", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_350598685", + ["text"] = "+# metres to Weapon Range", + ["type"] = "implicit", + }, + }, ["2787_TotemElementalResistances"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_1809006367", - ["text"] = "Totems gain +#% to all Elemental Resistances", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_1809006367", + ["text"] = "Totems gain +#% to all Elemental Resistances", + ["type"] = "implicit", + }, + }, ["2839_ChaosDamageTaken"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_496011033", - ["text"] = "+# Chaos Damage taken", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_496011033", + ["text"] = "+# Chaos Damage taken", + ["type"] = "implicit", + }, + }, ["2907_MinionAttackSpeed"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_3375935924", - ["text"] = "Minions have #% increased Attack Speed", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_3375935924", + ["text"] = "Minions have #% increased Attack Speed", + ["type"] = "implicit", + }, + }, ["2908_MinionCastSpeed"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_4000101551", - ["text"] = "Minions have #% increased Cast Speed", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_4000101551", + ["text"] = "Minions have #% increased Cast Speed", + ["type"] = "implicit", + }, + }, ["2911_MinionLifeRegeneration"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_2479683456", - ["text"] = "Minions Regenerate #% of Life per second", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_2479683456", + ["text"] = "Minions Regenerate #% of Life per second", + ["type"] = "implicit", + }, + }, ["2912_MinionElementalResistancesForJewel"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_1423639565", - ["text"] = "Minions have +#% to all Elemental Resistances", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_1423639565", + ["text"] = "Minions have +#% to all Elemental Resistances", + ["type"] = "implicit", + }, + }, ["2936_PhysicalDamageAddedAsRandomElement"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_3753703249", - ["text"] = "Gain #% of Physical Damage as Extra Damage of a random Element", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_3753703249", + ["text"] = "Gain #% of Physical Damage as Extra Damage of a random Element", + ["type"] = "implicit", + }, + }, ["2958_GlobalChanceToBlindOnHit"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_2221570601", - ["text"] = "#% Global chance to Blind Enemies on hit", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_2221570601", + ["text"] = "#% Global chance to Blind Enemies on hit", + ["type"] = "implicit", + }, + }, ["2980_ElementalPenetration"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_2101383955", - ["text"] = "Damage Penetrates #% Elemental Resistances", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_2101383955", + ["text"] = "Damage Penetrates #% Elemental Resistances", + ["type"] = "implicit", + }, + }, ["2981_FireResistancePenetration"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_2653955271", - ["text"] = "Damage Penetrates #% Fire Resistance", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_2653955271", + ["text"] = "Damage Penetrates #% Fire Resistance", + ["type"] = "implicit", + }, + }, ["2983_ColdResistancePenetration"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_3417711605", - ["text"] = "Damage Penetrates #% Cold Resistance", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_3417711605", + ["text"] = "Damage Penetrates #% Cold Resistance", + ["type"] = "implicit", + }, + }, ["2984_LightningResistancePenetration"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_818778753", - ["text"] = "Damage Penetrates #% Lightning Resistance", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_818778753", + ["text"] = "Damage Penetrates #% Lightning Resistance", + ["type"] = "implicit", + }, + }, ["2993_ChanceToGainOnslaughtOnKill"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_3023957681", - ["text"] = "#% chance to gain Onslaught for 4 seconds on Kill", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_3023957681", + ["text"] = "#% chance to gain Onslaught for 4 seconds on Kill", + ["type"] = "implicit", + }, + }, ["3029_AttackAndCastSpeedWithOnslaught"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_2320884914", - ["text"] = "#% increased Attack and Cast Speed during Onslaught", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_2320884914", + ["text"] = "#% increased Attack and Cast Speed during Onslaught", + ["type"] = "implicit", + }, + }, ["3060_RecoverLifePercentOnBlock"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_2442647190", - ["text"] = "Recover #% of Life when you Block", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_2442647190", + ["text"] = "Recover #% of Life when you Block", + ["type"] = "implicit", + }, + }, ["3063_DamageWhileLeeching"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_310246444", - ["text"] = "#% increased Damage while Leeching", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_310246444", + ["text"] = "#% increased Damage while Leeching", + ["type"] = "implicit", + }, + }, ["3095_VaalSkillDamage"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_2257141320", - ["text"] = "#% increased Damage with Vaal Skills", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_2257141320", + ["text"] = "#% increased Damage with Vaal Skills", + ["type"] = "implicit", + }, + }, ["3104_AdditionalVaalSoulOnKill"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_1962922582", - ["text"] = "#% chance to gain an additional Vaal Soul on Kill", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_1962922582", + ["text"] = "#% chance to gain an additional Vaal Soul on Kill", + ["type"] = "implicit", + }, + }, ["3105_VaalSkillDuration"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_547412107", - ["text"] = "Vaal Skills have #% increased Skill Effect Duration", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_547412107", + ["text"] = "Vaal Skills have #% increased Skill Effect Duration", + ["type"] = "implicit", + }, + }, ["3107_VaalSkillCriticalStrikeChance"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_3165492062", - ["text"] = "#% increased Vaal Skill Critical Strike Chance", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_3165492062", + ["text"] = "#% increased Vaal Skill Critical Strike Chance", + ["type"] = "implicit", + }, + }, ["3169_BleedingDamage"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_1294118672", - ["text"] = "#% increased Damage with Bleeding", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_1294118672", + ["text"] = "#% increased Damage with Bleeding", + ["type"] = "implicit", + }, + }, ["3170_PoisonDuration"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_2011656677", - ["text"] = "#% increased Poison Duration", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_2011656677", + ["text"] = "#% increased Poison Duration", + ["type"] = "implicit", + }, + }, ["3173_PoisonOnHit"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_795138349", - ["text"] = "#% chance to Poison on Hit", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_795138349", + ["text"] = "#% chance to Poison on Hit", + ["type"] = "implicit", + }, + }, ["3181_PoisonDamage"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_1290399200", - ["text"] = "#% increased Damage with Poison", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_1290399200", + ["text"] = "#% increased Damage with Poison", + ["type"] = "implicit", + }, + }, ["3199_DamagePerEnduranceCharge"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_3515686789", - ["text"] = "#% increased Damage per Endurance Charge", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_3515686789", + ["text"] = "#% increased Damage per Endurance Charge", + ["type"] = "implicit", + }, + }, ["3286_DamagePerFrenzyCharge"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_902747843", - ["text"] = "#% increased Damage per Frenzy Charge", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_902747843", + ["text"] = "#% increased Damage per Frenzy Charge", + ["type"] = "implicit", + }, + }, ["3304_EnemiesExplodeOnDeathPhysicalChance"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_3295179224", - ["text"] = "Enemies you Kill have a #% chance to Explode, dealing a tenth of their maximum Life as Physical Damage", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_3295179224", + ["text"] = "Enemies you Kill have a #% chance to Explode, dealing a tenth of their maximum Life as Physical Damage", + ["type"] = "implicit", + }, + }, ["3363_IncreasedAuraEffectGraceCorrupted"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_397427740", - ["text"] = "Grace has #% increased Aura Effect", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_397427740", + ["text"] = "Grace has #% increased Aura Effect", + ["type"] = "implicit", + }, + }, ["3367_IncreasedAuraEffectDeterminationCorrupted"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_3653400807", - ["text"] = "Determination has #% increased Aura Effect", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_3653400807", + ["text"] = "Determination has #% increased Aura Effect", + ["type"] = "implicit", + }, + }, ["3368_IncreasedAuraEffectDisciplineCorrupted"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_788317702", - ["text"] = "Discipline has #% increased Aura Effect", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_788317702", + ["text"] = "Discipline has #% increased Aura Effect", + ["type"] = "implicit", + }, + }, ["3369_CannotBePoisoned"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_3835551335", - ["text"] = "Cannot be Poisoned", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_3835551335", + ["text"] = "Cannot be Poisoned", + ["type"] = "implicit", + }, + }, ["3373_FireDamageAvoidance"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_42242677", - ["text"] = "#% chance to Avoid Fire Damage from Hits", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_42242677", + ["text"] = "#% chance to Avoid Fire Damage from Hits", + ["type"] = "implicit", + }, + }, ["3374_ColdDamageAvoidance"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_3743375737", - ["text"] = "#% chance to Avoid Cold Damage from Hits", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_3743375737", + ["text"] = "#% chance to Avoid Cold Damage from Hits", + ["type"] = "implicit", + }, + }, ["3375_LightningDamageAvoidance"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_2889664727", - ["text"] = "#% chance to Avoid Lightning Damage from Hits", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_2889664727", + ["text"] = "#% chance to Avoid Lightning Damage from Hits", + ["type"] = "implicit", + }, + }, ["3377_UnholyMightOnKillPercentChance"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_3562211447", - ["text"] = "#% chance to gain Unholy Might for 3 seconds on Kill", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_3562211447", + ["text"] = "#% chance to gain Unholy Might for 3 seconds on Kill", + ["type"] = "implicit", + }, + }, ["3457_SpectreDamage"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_3645693773", - ["text"] = "Raised Spectres have #% increased Damage", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_3645693773", + ["text"] = "Raised Spectres have #% increased Damage", + ["type"] = "implicit", + }, + }, ["3566_AuraEffect"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_1880071428", - ["text"] = "#% increased effect of Non-Curse Auras from your Skills", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_1880071428", + ["text"] = "#% increased effect of Non-Curse Auras from your Skills", + ["type"] = "implicit", + }, + }, ["3589_ColdPenetrationWeapon"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_1211769158", - ["text"] = "Damage with Weapons Penetrates #% Cold Resistance", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_1211769158", + ["text"] = "Damage with Weapons Penetrates #% Cold Resistance", + ["type"] = "implicit", + }, + }, ["3590_FirePenetrationWeapon"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_1123291426", - ["text"] = "Damage with Weapons Penetrates #% Fire Resistance", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_1123291426", + ["text"] = "Damage with Weapons Penetrates #% Fire Resistance", + ["type"] = "implicit", + }, + }, ["3591_LightningPenetrationWeapon"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_3301510262", - ["text"] = "Damage with Weapons Penetrates #% Lightning Resistance", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_3301510262", + ["text"] = "Damage with Weapons Penetrates #% Lightning Resistance", + ["type"] = "implicit", + }, + }, ["3597_HasOnslaught"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_1520059289", - ["text"] = "Onslaught", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_1520059289", + ["text"] = "Onslaught", + ["type"] = "implicit", + }, + }, ["3643_ZombieIncreasedDamage"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_2228518621", - ["text"] = "Raised Zombies deal #% increased Damage", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_2228518621", + ["text"] = "Raised Zombies deal #% increased Damage", + ["type"] = "implicit", + }, + }, ["3659_SkeletonDamage"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_3059357595", - ["text"] = "Skeletons deal #% increased Damage", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_3059357595", + ["text"] = "Skeletons deal #% increased Damage", + ["type"] = "implicit", + }, + }, ["3761_LocalAttackReduceEnemyElementalResistance"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_4064396395", - ["text"] = "Attacks with this Weapon Penetrate #% Elemental Resistances", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_4064396395", + ["text"] = "Attacks with this Weapon Penetrate #% Elemental Resistances", + ["type"] = "implicit", + }, + }, ["3989_AnimateGuardianResistances"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_2094281311", - ["text"] = "+#% to Animated Guardian Elemental Resistances", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_2094281311", + ["text"] = "+#% to Animated Guardian Elemental Resistances", + ["type"] = "implicit", + }, + }, ["4010_CurseEffectConductivity"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_3395908304", - ["text"] = "#% increased Conductivity Curse Effect", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_3395908304", + ["text"] = "#% increased Conductivity Curse Effect", + ["type"] = "implicit", + }, + }, ["4011_CurseEffectElementalWeakness"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_3348324479", - ["text"] = "#% increased Elemental Weakness Curse Effect", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_3348324479", + ["text"] = "#% increased Elemental Weakness Curse Effect", + ["type"] = "implicit", + }, + }, ["4013_CurseEffectFlammability"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_282417259", - ["text"] = "#% increased Flammability Curse Effect", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_282417259", + ["text"] = "#% increased Flammability Curse Effect", + ["type"] = "implicit", + }, + }, ["4014_CurseEffectFrostbite"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_1443215722", - ["text"] = "#% increased Frostbite Curse Effect", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_1443215722", + ["text"] = "#% increased Frostbite Curse Effect", + ["type"] = "implicit", + }, + }, ["4016_CurseEffectVulnerability"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_1065909420", - ["text"] = "#% increased Vulnerability Curse Effect", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_1065909420", + ["text"] = "#% increased Vulnerability Curse Effect", + ["type"] = "implicit", + }, + }, ["4069_DamageAffectedByAuras"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_1419713278", - ["text"] = "You and nearby Allies deal #% increased Damage", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_1419713278", + ["text"] = "You and nearby Allies deal #% increased Damage", + ["type"] = "implicit", + }, + }, ["4082_DamageDuringFlaskEffect"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_2947215268", - ["text"] = "#% increased Damage during any Flask Effect", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_2947215268", + ["text"] = "#% increased Damage during any Flask Effect", + ["type"] = "implicit", + }, + }, ["4169_PhysicalDamageRemovedFromManaBeforeLife"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_3743438423", - ["text"] = "#% of Physical Damage is taken from Mana before Life", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_3743438423", + ["text"] = "#% of Physical Damage is taken from Mana before Life", + ["type"] = "implicit", + }, + }, ["4215_BleedingImmunity"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_1901158930", - ["text"] = "Bleeding cannot be inflicted on you", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_1901158930", + ["text"] = "Bleeding cannot be inflicted on you", + ["type"] = "implicit", + }, + }, ["4216_ChanceToAvoidBleeding"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_1618589784", - ["text"] = "#% chance to Avoid Bleeding", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_1618589784", + ["text"] = "#% chance to Avoid Bleeding", + ["type"] = "implicit", + }, + }, ["4273_AddedColdDamagePerFrenzyCharge"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_3648858570", - ["text"] = "# to # Added Cold Damage per Frenzy Charge", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_3648858570", + ["text"] = "# to # Added Cold Damage per Frenzy Charge", + ["type"] = "implicit", + }, + }, ["4578_ReducedPhysicalDamageTakenVsAbyssMonsters"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_287491423", - ["text"] = "#% additional Physical Damage Reduction against Abyssal Monsters", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_287491423", + ["text"] = "#% additional Physical Damage Reduction against Abyssal Monsters", + ["type"] = "implicit", + }, + }, ["4579_DeterminationPhysicalDamageReduction"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_1873457881", - ["text"] = "#% additional Physical Damage Reduction while affected by Determination", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_1873457881", + ["text"] = "#% additional Physical Damage Reduction while affected by Determination", + ["type"] = "implicit", + }, + }, ["4728_AreaOfEffectIfStunnedEnemyRecently"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_430248187", - ["text"] = "#% increased Area of Effect if you have Stunned an Enemy Recently", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_430248187", + ["text"] = "#% increased Area of Effect if you have Stunned an Enemy Recently", + ["type"] = "implicit", + }, + }, ["4759_ArmourEvasionWithFortify"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_2962782530", - ["text"] = "+# to Armour and Evasion Rating while Fortified", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_2962782530", + ["text"] = "+# to Armour and Evasion Rating while Fortified", + ["type"] = "implicit", + }, + }, ["4792_AdditionalCriticalStrikeChanceWithAttacks"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_2572042788", - ["text"] = "Attacks have +#% to Critical Strike Chance", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_2572042788", + ["text"] = "Attacks have +#% to Critical Strike Chance", + ["type"] = "implicit", + }, + }, ["4848_AttackDamagePerMana"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_4134865890", - ["text"] = "#% increased Attack Damage per 500 Maximum Mana", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_4134865890", + ["text"] = "#% increased Attack Damage per 500 Maximum Mana", + ["type"] = "implicit", + }, + }, ["4869_AddedFireDamagePerStrength"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_1060540099", - ["text"] = "Adds # to # Fire Damage to Attacks with this Weapon per 10 Strength", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_1060540099", + ["text"] = "Adds # to # Fire Damage to Attacks with this Weapon per 10 Strength", + ["type"] = "implicit", + }, + }, ["4872_AddedLightningDamagePerIntelligence"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_3390848861", - ["text"] = "Adds # to # Lightning Damage to Attacks with this Weapon per 10 Intelligence", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_3390848861", + ["text"] = "Adds # to # Lightning Damage to Attacks with this Weapon per 10 Intelligence", + ["type"] = "implicit", + }, + }, ["4915_AttacksBlindOnHitChance"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_318953428", - ["text"] = "#% chance to Blind Enemies on Hit with Attacks", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_318953428", + ["text"] = "#% chance to Blind Enemies on Hit with Attacks", + ["type"] = "implicit", + }, + }, ["4916_AttacksTauntOnHitChance"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_280213220", - ["text"] = "#% chance to Taunt Enemies on Hit with Attacks", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_280213220", + ["text"] = "#% chance to Taunt Enemies on Hit with Attacks", + ["type"] = "implicit", + }, + }, ["4918_AttackImpaleChance"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_3739863694", - ["text"] = "#% chance to Impale Enemies on Hit with Attacks", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_3739863694", + ["text"] = "#% chance to Impale Enemies on Hit with Attacks", + ["type"] = "implicit", + }, + }, ["4924_AddedColdDamagePerDexterity"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_149574107", - ["text"] = "Adds # to # Cold Damage to Attacks with this Weapon per 10 Dexterity", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_149574107", + ["text"] = "Adds # to # Cold Damage to Attacks with this Weapon per 10 Dexterity", + ["type"] = "implicit", + }, + }, ["4983_AilmentDamage"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_690707482", - ["text"] = "#% increased Damage with Ailments", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_690707482", + ["text"] = "#% increased Damage with Ailments", + ["type"] = "implicit", + }, + }, ["4994_BleedDuration"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_1459321413", - ["text"] = "#% increased Bleeding Duration", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_1459321413", + ["text"] = "#% increased Bleeding Duration", + ["type"] = "implicit", + }, + }, ["4_DamageCannotBeReflectedPercent"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_1571797746", - ["text"] = "#% of Damage from your Hits cannot be Reflected", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_1571797746", + ["text"] = "#% of Damage from your Hits cannot be Reflected", + ["type"] = "implicit", + }, + }, ["528_DisplaySocketedGemsGetReducedReservation"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_3289633055", - ["text"] = "Socketed Gems have #% increased Reservation Efficiency", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_3289633055", + ["text"] = "Socketed Gems have #% increased Reservation Efficiency", + ["type"] = "implicit", + }, + }, ["530_SocketedSkillsManaMultiplier"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_2865550257", - ["text"] = "Socketed Skill Gems get a #% Cost & Reservation Multiplier", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_2865550257", + ["text"] = "Socketed Skill Gems get a #% Cost & Reservation Multiplier", + ["type"] = "implicit", + }, + }, ["5659_DoubleDamageChance"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_1172810729", - ["text"] = "#% chance to deal Double Damage", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_1172810729", + ["text"] = "#% chance to deal Double Damage", + ["type"] = "implicit", + }, + }, ["5671_ChanceWhenHitForArmourToBeDoubled"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_327253797", - ["text"] = "#% chance to Defend with 200% of Armour", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_327253797", + ["text"] = "#% chance to Defend with 200% of Armour", + ["type"] = "implicit", + }, + }, ["5673_AdditionalChanceToEvade"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_2021058489", - ["text"] = "+#% chance to Evade Attack Hits", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_2021058489", + ["text"] = "+#% chance to Evade Attack Hits", + ["type"] = "implicit", + }, + }, ["5675_GraceAdditionalChanceToEvade"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_969576725", - ["text"] = "+#% chance to Evade Attack Hits while affected by Grace", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_969576725", + ["text"] = "+#% chance to Evade Attack Hits while affected by Grace", + ["type"] = "implicit", + }, + }, ["5749_ChaosDamageAttackSkills"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_1959092146", - ["text"] = "#% increased Chaos Damage with Attack Skills", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_1959092146", + ["text"] = "#% increased Chaos Damage with Attack Skills", + ["type"] = "implicit", + }, + }, ["5750_ChaosDamageSpellSkills"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_3761858151", - ["text"] = "#% increased Chaos Damage with Spell Skills", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_3761858151", + ["text"] = "#% increased Chaos Damage with Spell Skills", + ["type"] = "implicit", + }, + }, ["5798_ChillEffect"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_1793818220", - ["text"] = "#% increased Effect of Cold Ailments", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_1793818220", + ["text"] = "#% increased Effect of Cold Ailments", + ["type"] = "implicit", + }, + }, ["5819_FlatColdDamageTaken"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_261654754", - ["text"] = "+# Cold Damage taken from Hits", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_261654754", + ["text"] = "+# Cold Damage taken from Hits", + ["type"] = "implicit", + }, + }, ["5821_ColdDamageAttackSkills"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_860668586", - ["text"] = "#% increased Cold Damage with Attack Skills", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_860668586", + ["text"] = "#% increased Cold Damage with Attack Skills", + ["type"] = "implicit", + }, + }, ["5822_ColdDamageSpellSkills"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_2186994986", - ["text"] = "#% increased Cold Damage with Spell Skills", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_2186994986", + ["text"] = "#% increased Cold Damage with Spell Skills", + ["type"] = "implicit", + }, + }, ["5943_SpellCriticalChanceWithDualWield"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_1218939541", - ["text"] = "#% increased Critical Strike Chance for Spells while Dual Wielding", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_1218939541", + ["text"] = "#% increased Critical Strike Chance for Spells while Dual Wielding", + ["type"] = "implicit", + }, + }, ["5944_SpellCriticalChanceWithShield"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_952509814", - ["text"] = "#% increased Critical Strike Chance for Spells while holding a Shield", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_952509814", + ["text"] = "#% increased Critical Strike Chance for Spells while holding a Shield", + ["type"] = "implicit", + }, + }, ["5945_SpellCriticalChanceWithStaff"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_140429540", - ["text"] = "#% increased Critical Strike Chance for Spells while wielding a Staff", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_140429540", + ["text"] = "#% increased Critical Strike Chance for Spells while wielding a Staff", + ["type"] = "implicit", + }, + }, ["5970_SpellCriticalMultiplierWithDualWield"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_2349237916", - ["text"] = "+#% to Critical Strike Multiplier for Spells while Dual Wielding", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_2349237916", + ["text"] = "+#% to Critical Strike Multiplier for Spells while Dual Wielding", + ["type"] = "implicit", + }, + }, ["5971_SpellCriticalMultiplierWithShield"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_2311200892", - ["text"] = "+#% to Critical Strike Multiplier for Spells while holding a Shield", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_2311200892", + ["text"] = "+#% to Critical Strike Multiplier for Spells while holding a Shield", + ["type"] = "implicit", + }, + }, ["5972_SpellCriticalMultiplierWithStaff"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_3629080637", - ["text"] = "+#% to Critical Strike Multiplier for Spells while wielding a Staff", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_3629080637", + ["text"] = "+#% to Critical Strike Multiplier for Spells while wielding a Staff", + ["type"] = "implicit", + }, + }, ["6000_CurseDuration"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_1435748744", - ["text"] = "Curse Skills have #% increased Skill Effect Duration", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_1435748744", + ["text"] = "Curse Skills have #% increased Skill Effect Duration", + ["type"] = "implicit", + }, + }, ["6056_DamagePer15Dexterity"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_342670903", - ["text"] = "#% increased Damage per 100 Dexterity", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_342670903", + ["text"] = "#% increased Damage per 100 Dexterity", + ["type"] = "implicit", + }, + }, ["6057_DamagePer15Intelligence"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_3966666111", - ["text"] = "#% increased Damage per 100 Intelligence", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_3966666111", + ["text"] = "#% increased Damage per 100 Intelligence", + ["type"] = "implicit", + }, + }, ["6058_DamagePer15Strength"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_4274080377", - ["text"] = "#% increased Damage per 100 Strength", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_4274080377", + ["text"] = "#% increased Damage per 100 Strength", + ["type"] = "implicit", + }, + }, ["6066_IncreasedDamagePerPowerCharge"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_2034658008", - ["text"] = "#% increased Damage per Power Charge", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_2034658008", + ["text"] = "#% increased Damage per Power Charge", + ["type"] = "implicit", + }, + }, ["6069_DamageVSAbyssMonsters"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_3257279374", - ["text"] = "#% increased Damage with Hits and Ailments against Abyssal Monsters", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_3257279374", + ["text"] = "#% increased Damage with Hits and Ailments against Abyssal Monsters", + ["type"] = "implicit", + }, + }, ["6108_DamageTakenPer250Dexterity"] = { - ["inverseKey"] = "reduced", + ["inverseKey"] = "reduced", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_2477636501", - ["text"] = "#% increased Damage taken per 250 Dexterity", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_2477636501", + ["text"] = "#% increased Damage taken per 250 Dexterity", + ["type"] = "implicit", + }, + }, ["6109_DamageTakenPer250Intelligence"] = { - ["inverseKey"] = "reduced", + ["inverseKey"] = "reduced", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_3522931817", - ["text"] = "#% increased Damage taken per 250 Intelligence", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_3522931817", + ["text"] = "#% increased Damage taken per 250 Intelligence", + ["type"] = "implicit", + }, + }, ["6110_DamageTakenPer250Strength"] = { - ["inverseKey"] = "reduced", + ["inverseKey"] = "reduced", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_1443108510", - ["text"] = "#% increased Damage taken per 250 Strength", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_1443108510", + ["text"] = "#% increased Damage taken per 250 Strength", + ["type"] = "implicit", + }, + }, ["6172_DeterminationReservation"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_325889252", - ["text"] = "Determination has #% increased Mana Reservation Efficiency", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_2721871046", + ["text"] = "Determination has #% increased Mana Reservation Efficiency", + ["type"] = "implicit", + }, + }, ["6173_DeterminationReservationEfficiency"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_325889252", - ["text"] = "Determination has #% increased Mana Reservation Efficiency", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_2721871046", + ["text"] = "Determination has #% increased Mana Reservation Efficiency", + ["type"] = "implicit", + }, + }, ["6188_DisciplineReservation"] = { - ["sign"] = "", + ["sign"] = "", ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_2081344089", - ["text"] = "Discipline has #% increased Mana Reservation Efficiency", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_1692887998", + ["text"] = "Discipline has #% increased Mana Reservation Efficiency", + ["type"] = "implicit", + }, + }, ["6189_DisciplineReservationEfficiency"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2081344089", - ["text"] = "Discipline has #% increased Mana Reservation Efficiency", - ["type"] = "implicit", - }, - }, - ["6321_IncreasedWeaponElementalDamagePercent"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_387439868", - ["text"] = "#% increased Elemental Damage with Attack Skills", - ["type"] = "implicit", - }, - }, - ["6372_EnemiesExplodeOnDeathPhysical"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1220361974", - ["text"] = "Enemies you Kill Explode, dealing #% of their Life as Physical Damage", - ["type"] = "implicit", - }, - }, - ["6459_DisciplineEnergyShieldRegen"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_991194404", - ["text"] = "Regenerate #% of Energy Shield per Second while affected by Discipline", - ["type"] = "implicit", - }, - }, - ["6544_FasterBleedDamage"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3828375170", - ["text"] = "Bleeding you inflict deals Damage #% faster", - ["type"] = "implicit", - }, - }, - ["6545_FasterPoisonDamage"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2907156609", - ["text"] = "Poisons you inflict deal Damage #% faster", - ["type"] = "implicit", - }, - }, - ["6563_FireDamagePerStrength"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2241902512", - ["text"] = "#% increased Fire Damage per 20 Strength", - ["type"] = "implicit", - }, - }, - ["6576_FireDamageAttackSkills"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2468413380", - ["text"] = "#% increased Fire Damage with Attack Skills", - ["type"] = "implicit", - }, - }, - ["6577_FireDamageSpellSkills"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_361162316", - ["text"] = "#% increased Fire Damage with Spell Skills", - ["type"] = "implicit", - }, - }, - ["6746_EnduranceChargeIfHitRecently"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2894476716", - ["text"] = "Gain # Endurance Charge every second if you've been Hit Recently", - ["type"] = "implicit", - }, - }, - ["6786_OnslaughtOnHit"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2514424018", - ["text"] = "You gain Onslaught for # seconds on Hit", - ["type"] = "implicit", - }, - }, - ["6902_GraceReservation"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_900639351", - ["text"] = "Grace has #% increased Mana Reservation Efficiency", - ["type"] = "implicit", - }, - }, - ["6903_GraceReservationEfficiency"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_900639351", - ["text"] = "Grace has #% increased Mana Reservation Efficiency", - ["type"] = "implicit", - }, - }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1692887998", + ["text"] = "Discipline has #% increased Mana Reservation Efficiency", + ["type"] = "implicit", + }, + }, + ["6322_IncreasedWeaponElementalDamagePercent"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_387439868", + ["text"] = "#% increased Elemental Damage with Attack Skills", + ["type"] = "implicit", + }, + }, + ["6373_EnemiesExplodeOnDeathPhysical"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1220361974", + ["text"] = "Enemies you Kill Explode, dealing #% of their Life as Physical Damage", + ["type"] = "implicit", + }, + }, + ["6460_DisciplineEnergyShieldRegen"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_991194404", + ["text"] = "Regenerate #% of Energy Shield per Second while affected by Discipline", + ["type"] = "implicit", + }, + }, + ["6545_FasterBleedDamage"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3828375170", + ["text"] = "Bleeding you inflict deals Damage #% faster", + ["type"] = "implicit", + }, + }, + ["6546_FasterPoisonDamage"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2907156609", + ["text"] = "Poisons you inflict deal Damage #% faster", + ["type"] = "implicit", + }, + }, + ["6564_FireDamagePerStrength"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2241902512", + ["text"] = "#% increased Fire Damage per 20 Strength", + ["type"] = "implicit", + }, + }, + ["6577_FireDamageAttackSkills"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2468413380", + ["text"] = "#% increased Fire Damage with Attack Skills", + ["type"] = "implicit", + }, + }, + ["6578_FireDamageSpellSkills"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_361162316", + ["text"] = "#% increased Fire Damage with Spell Skills", + ["type"] = "implicit", + }, + }, + ["6747_EnduranceChargeIfHitRecently"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2894476716", + ["text"] = "Gain # Endurance Charge every second if you've been Hit Recently", + ["type"] = "implicit", + }, + }, + ["6787_OnslaughtOnHit"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2514424018", + ["text"] = "You gain Onslaught for # seconds on Hit", + ["type"] = "implicit", + }, + }, + ["6903_GraceReservation"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1803598623", + ["text"] = "Grace has #% increased Mana Reservation Efficiency", + ["type"] = "implicit", + }, + }, + ["6904_GraceReservationEfficiency"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1803598623", + ["text"] = "Grace has #% increased Mana Reservation Efficiency", + ["type"] = "implicit", + }, + }, ["69_HasXSockets"] = { ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_4077843608", - ["text"] = "Has 1 Socket", - ["type"] = "implicit", - }, - }, - ["7452_FlatLightningDamageTaken"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_465051235", - ["text"] = "+# Lightning Damage taken from Hits", - ["type"] = "implicit", - }, - }, - ["7453_LightningDamageAttackSkills"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_4208907162", - ["text"] = "#% increased Lightning Damage with Attack Skills", - ["type"] = "implicit", - }, - }, - ["7454_LightningDamageSpellSkills"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3935031607", - ["text"] = "#% increased Lightning Damage with Spell Skills", - ["type"] = "implicit", - }, - }, - ["7856_AttackAndCastSpeedCorruptedItem"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_26867112", - ["text"] = "#% increased Attack and Cast Speed if Corrupted", - ["type"] = "implicit", - }, - }, - ["7857_AttackDamageCorruptedItem"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2347923784", - ["text"] = "#% increased Attack Damage if Corrupted", - ["type"] = "implicit", - }, - }, - ["7874_LocalChanceToIntimidateOnHit"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2089652545", - ["text"] = "#% chance to Intimidate Enemies for 4 seconds on Hit", - ["type"] = "implicit", - }, - }, - ["7880_GlobalCriticalStrikeChanceCorruptedItem"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_4023723828", - ["text"] = "#% increased Global Critical Strike Chance if Corrupted", - ["type"] = "implicit", - }, - }, - ["7885_AllDamageCorruptedItem"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_767196662", - ["text"] = "#% increased Damage if Corrupted", - ["type"] = "implicit", - }, - }, - ["7886_DamageTakenCorruptedItem"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3309607228", - ["text"] = "#% reduced Damage taken if Corrupted", - ["type"] = "implicit", - }, - }, - ["7944_ImmuneToCursesCorruptedItem"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1954526925", - ["text"] = "Immune to Curses if Corrupted", - ["type"] = "implicit", - }, - }, - ["7991_IncreasedEnergyShieldCorruptedItem"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1025108940", - ["text"] = "#% increased maximum Energy Shield if Corrupted", - ["type"] = "implicit", - }, - }, - ["7993_IncreasedLifeCorruptedItem"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3887484120", - ["text"] = "#% increased maximum Life if Corrupted", - ["type"] = "implicit", - }, - }, - ["7999_MovementVelocityCorruptedItem"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2880601380", - ["text"] = "#% increased Movement Speed if Corrupted", - ["type"] = "implicit", - }, - }, - ["8002_LocalChanceToPoisonOnHit"] = { - ["sign"] = "", - ["specialCaseData"] = { - ["overrideModLine"] = "#% chance to Poison on Hit", - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3885634897", - ["text"] = "#% chance to Poison on Hit (Local)", - ["type"] = "implicit", - }, - }, - ["8004_AllElementalResistanceCorruptedItem"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3731630482", - ["text"] = "+#% to all Elemental Resistances if Corrupted", - ["type"] = "implicit", - }, - }, - ["8027_SpellDamageCorruptedItem"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_374116820", - ["text"] = "#% increased Spell Damage if Corrupted", - ["type"] = "implicit", - }, - }, - ["8186_RecoverManaPercentOnBlock"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3041288981", - ["text"] = "Recover #% of your maximum Mana when you Block", - ["type"] = "implicit", - }, - }, - ["8202_AddedManaRegenWithDualWield"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1361343333", - ["text"] = "Regenerate # Mana per Second while Dual Wielding", - ["type"] = "implicit", - }, - }, - ["8203_AddedManaRegenWithShield"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3762868276", - ["text"] = "Regenerate # Mana per Second while holding a Shield", - ["type"] = "implicit", - }, - }, - ["8205_AddedManaRegenWithStaff"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1388668644", - ["text"] = "Regenerate # Mana per second while wielding a Staff", - ["type"] = "implicit", - }, - }, - ["9117_FortifyEffect"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_335507772", - ["text"] = "+# to maximum Fortification", - ["type"] = "implicit", - }, - }, - ["9160_LifeAddedAsEnergyShield"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_67280387", - ["text"] = "Gain #% of Maximum Life as Extra Maximum Energy Shield", - ["type"] = "implicit", - }, - }, - ["9265_MinionAccuracyRating"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1718147982", - ["text"] = "#% increased Minion Accuracy Rating", - ["type"] = "implicit", - }, - }, - ["9499_IncreasedAilmentEffectOnEnemies"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_782230869", - ["text"] = "#% increased Effect of Non-Damaging Ailments", - ["type"] = "implicit", - }, - }, - ["9645_PhysicalDamageWithUnholyMight"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1609570656", - ["text"] = "#% increased Physical Damage while you have Unholy Might", - ["type"] = "implicit", - }, - }, - ["9664_PhysicalDamageAttackSkills"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2266750692", - ["text"] = "#% increased Physical Damage with Attack Skills", - ["type"] = "implicit", - }, - }, - ["9665_PhysicalDamageSpellSkills"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1430255627", - ["text"] = "#% increased Physical Damage with Spell Skills", - ["type"] = "implicit", - }, - }, - ["9768_PurityOfFireReservation"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3003688066", - ["text"] = "Purity of Fire has #% increased Mana Reservation Efficiency", - ["type"] = "implicit", - }, - }, - ["9769_PurityOfFireReservationEfficiency"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3003688066", - ["text"] = "Purity of Fire has #% increased Mana Reservation Efficiency", - ["type"] = "implicit", - }, - }, - ["9771_PurityOfIceReservation"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_139925400", - ["text"] = "Purity of Ice has #% increased Mana Reservation Efficiency", - ["type"] = "implicit", - }, - }, - ["9772_PurityOfIceReservationEfficiency"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_139925400", - ["text"] = "Purity of Ice has #% increased Mana Reservation Efficiency", - ["type"] = "implicit", - }, - }, - ["9774_PurityOfLightningReservation"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3411256933", - ["text"] = "Purity of Lightning has #% increased Mana Reservation Efficiency", - ["type"] = "implicit", - }, - }, - ["9775_PurityOfLightningReservationEfficiency"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3411256933", - ["text"] = "Purity of Lightning has #% increased Mana Reservation Efficiency", - ["type"] = "implicit", - }, - }, - ["9882_ReflectDamageTaken"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3577248251", - ["text"] = "You and your Minions take #% reduced Reflected Damage", - ["type"] = "implicit", - }, - }, - ["9903_RemoveFreezeOnFlaskUse"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3296873305", - ["text"] = "Remove Chill and Freeze when you use a Flask", - ["type"] = "implicit", - }, - }, - ["9907_RemoveIgniteOnFlaskUse"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1162425204", - ["text"] = "Remove Ignite and Burning when you use a Flask", - ["type"] = "implicit", - }, - }, - ["9917_RemoveShockOnFlaskUse"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_561861132", - ["text"] = "Remove Shock when you use a Flask", - ["type"] = "implicit", - }, - }, - }, + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_4077843608", + ["text"] = "Has 1 Socket", + ["type"] = "implicit", + }, + }, + ["7453_FlatLightningDamageTaken"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_465051235", + ["text"] = "+# Lightning Damage taken from Hits", + ["type"] = "implicit", + }, + }, + ["7454_LightningDamageAttackSkills"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_4208907162", + ["text"] = "#% increased Lightning Damage with Attack Skills", + ["type"] = "implicit", + }, + }, + ["7455_LightningDamageSpellSkills"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3935031607", + ["text"] = "#% increased Lightning Damage with Spell Skills", + ["type"] = "implicit", + }, + }, + ["7857_AttackAndCastSpeedCorruptedItem"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_26867112", + ["text"] = "#% increased Attack and Cast Speed if Corrupted", + ["type"] = "implicit", + }, + }, + ["7858_AttackDamageCorruptedItem"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2347923784", + ["text"] = "#% increased Attack Damage if Corrupted", + ["type"] = "implicit", + }, + }, + ["7875_LocalChanceToIntimidateOnHit"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2089652545", + ["text"] = "#% chance to Intimidate Enemies for 4 seconds on Hit", + ["type"] = "implicit", + }, + }, + ["7881_GlobalCriticalStrikeChanceCorruptedItem"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_4023723828", + ["text"] = "#% increased Global Critical Strike Chance if Corrupted", + ["type"] = "implicit", + }, + }, + ["7886_AllDamageCorruptedItem"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_767196662", + ["text"] = "#% increased Damage if Corrupted", + ["type"] = "implicit", + }, + }, + ["7887_DamageTakenCorruptedItem"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3309607228", + ["text"] = "#% reduced Damage taken if Corrupted", + ["type"] = "implicit", + }, + }, + ["7945_ImmuneToCursesCorruptedItem"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1954526925", + ["text"] = "Immune to Curses if Corrupted", + ["type"] = "implicit", + }, + }, + ["7992_IncreasedEnergyShieldCorruptedItem"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1025108940", + ["text"] = "#% increased maximum Energy Shield if Corrupted", + ["type"] = "implicit", + }, + }, + ["7994_IncreasedLifeCorruptedItem"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3887484120", + ["text"] = "#% increased maximum Life if Corrupted", + ["type"] = "implicit", + }, + }, + ["8000_MovementVelocityCorruptedItem"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2880601380", + ["text"] = "#% increased Movement Speed if Corrupted", + ["type"] = "implicit", + }, + }, + ["8003_LocalChanceToPoisonOnHit"] = { + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "#% chance to Poison on Hit", + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3885634897", + ["text"] = "#% chance to Poison on Hit (Local)", + ["type"] = "implicit", + }, + }, + ["8005_AllElementalResistanceCorruptedItem"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3731630482", + ["text"] = "+#% to all Elemental Resistances if Corrupted", + ["type"] = "implicit", + }, + }, + ["8028_SpellDamageCorruptedItem"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_374116820", + ["text"] = "#% increased Spell Damage if Corrupted", + ["type"] = "implicit", + }, + }, + ["8187_RecoverManaPercentOnBlock"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3041288981", + ["text"] = "Recover #% of your maximum Mana when you Block", + ["type"] = "implicit", + }, + }, + ["8203_AddedManaRegenWithDualWield"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1361343333", + ["text"] = "Regenerate # Mana per Second while Dual Wielding", + ["type"] = "implicit", + }, + }, + ["8204_AddedManaRegenWithShield"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3762868276", + ["text"] = "Regenerate # Mana per Second while holding a Shield", + ["type"] = "implicit", + }, + }, + ["8206_AddedManaRegenWithStaff"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1388668644", + ["text"] = "Regenerate # Mana per second while wielding a Staff", + ["type"] = "implicit", + }, + }, + ["9118_FortifyEffect"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_335507772", + ["text"] = "+# to maximum Fortification", + ["type"] = "implicit", + }, + }, + ["9161_LifeAddedAsEnergyShield"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_67280387", + ["text"] = "Gain #% of Maximum Life as Extra Maximum Energy Shield", + ["type"] = "implicit", + }, + }, + ["9266_MinionAccuracyRating"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1718147982", + ["text"] = "#% increased Minion Accuracy Rating", + ["type"] = "implicit", + }, + }, + ["9500_IncreasedAilmentEffectOnEnemies"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_782230869", + ["text"] = "#% increased Effect of Non-Damaging Ailments", + ["type"] = "implicit", + }, + }, + ["9646_PhysicalDamageWithUnholyMight"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1609570656", + ["text"] = "#% increased Physical Damage while you have Unholy Might", + ["type"] = "implicit", + }, + }, + ["9665_PhysicalDamageAttackSkills"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2266750692", + ["text"] = "#% increased Physical Damage with Attack Skills", + ["type"] = "implicit", + }, + }, + ["9666_PhysicalDamageSpellSkills"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1430255627", + ["text"] = "#% increased Physical Damage with Spell Skills", + ["type"] = "implicit", + }, + }, + ["9769_PurityOfFireReservation"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1135152940", + ["text"] = "Purity of Fire has #% increased Mana Reservation Efficiency", + ["type"] = "implicit", + }, + }, + ["9770_PurityOfFireReservationEfficiency"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1135152940", + ["text"] = "Purity of Fire has #% increased Mana Reservation Efficiency", + ["type"] = "implicit", + }, + }, + ["9772_PurityOfIceReservation"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_139925400", + ["text"] = "Purity of Ice has #% increased Mana Reservation Efficiency", + ["type"] = "implicit", + }, + }, + ["9773_PurityOfIceReservationEfficiency"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_139925400", + ["text"] = "Purity of Ice has #% increased Mana Reservation Efficiency", + ["type"] = "implicit", + }, + }, + ["9775_PurityOfLightningReservation"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1450978702", + ["text"] = "Purity of Lightning has #% increased Mana Reservation Efficiency", + ["type"] = "implicit", + }, + }, + ["9776_PurityOfLightningReservationEfficiency"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1450978702", + ["text"] = "Purity of Lightning has #% increased Mana Reservation Efficiency", + ["type"] = "implicit", + }, + }, + ["9883_ReflectDamageTaken"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3577248251", + ["text"] = "You and your Minions take #% reduced Reflected Damage", + ["type"] = "implicit", + }, + }, + ["9904_RemoveFreezeOnFlaskUse"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3296873305", + ["text"] = "Remove Chill and Freeze when you use a Flask", + ["type"] = "implicit", + }, + }, + ["9908_RemoveIgniteOnFlaskUse"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1162425204", + ["text"] = "Remove Ignite and Burning when you use a Flask", + ["type"] = "implicit", + }, + }, + ["9918_RemoveShockOnFlaskUse"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_561861132", + ["text"] = "Remove Shock when you use a Flask", + ["type"] = "implicit", + }, + }, + }, ["WatchersEye"] = { - ["10059_ClarityReducedManaCost"] = { + ["10060_ClarityReducedManaCost"] = { ["AnyJewel"] = { - ["max"] = 5, - ["min"] = 10, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2445618239", - ["text"] = "+# to Total Mana Cost of Skills while affected by Clarity", - ["type"] = "explicit", - }, - }, - ["10064_ClarityReducedManaCostNonChannelled"] = { + ["max"] = 5, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2445618239", + ["text"] = "+# to Total Mana Cost of Skills while affected by Clarity", + ["type"] = "explicit", + }, + }, + ["10065_ClarityReducedManaCostNonChannelled"] = { ["AnyJewel"] = { - ["max"] = 5, - ["min"] = 10, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1853636813", - ["text"] = "Non-Channelling Skills have +# to Total Mana Cost while affected by Clarity", - ["type"] = "explicit", - }, - }, - ["10174_GraceChanceToDodge"] = { + ["max"] = 5, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1853636813", + ["text"] = "Non-Channelling Skills have +# to Total Mana Cost while affected by Clarity", + ["type"] = "explicit", + }, + }, + ["10175_GraceChanceToDodge"] = { ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 12, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4071658793", - ["text"] = "+#% chance to Suppress Spell Damage while affected by Grace", - ["type"] = "explicit", - }, - }, - ["10175_HasteChanceToDodgeSpells"] = { + ["max"] = 15, + ["min"] = 12, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4071658793", + ["text"] = "+#% chance to Suppress Spell Damage while affected by Grace", + ["type"] = "explicit", + }, + }, + ["10176_HasteChanceToDodgeSpells"] = { ["AnyJewel"] = { - ["max"] = 8, - ["min"] = 5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2170859717", - ["text"] = "+#% chance to Suppress Spell Damage while affected by Haste", - ["type"] = "explicit", - }, - }, - ["10453_MalevolenceUnaffectedByBleeding"] = { + ["max"] = 8, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2170859717", + ["text"] = "+#% chance to Suppress Spell Damage while affected by Haste", + ["type"] = "explicit", + }, + }, + ["10454_MalevolenceUnaffectedByBleeding"] = { ["AnyJewel"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4104891138", - ["text"] = "Unaffected by Bleeding while affected by Malevolence", - ["type"] = "explicit", - }, - }, - ["10457_PurityOfFireUnaffectedByBurningGround"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4104891138", + ["text"] = "Unaffected by Bleeding while affected by Malevolence", + ["type"] = "explicit", + }, + }, + ["10458_PurityOfFireUnaffectedByBurningGround"] = { ["AnyJewel"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3308185931", - ["text"] = "Unaffected by Burning Ground while affected by Purity of Fire", - ["type"] = "explicit", - }, - }, - ["10462_PurityOfIceUnaffectedByChilledGround"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3308185931", + ["text"] = "Unaffected by Burning Ground while affected by Purity of Fire", + ["type"] = "explicit", + }, + }, + ["10463_PurityOfIceUnaffectedByChilledGround"] = { ["AnyJewel"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2647344903", - ["text"] = "Unaffected by Chilled Ground while affected by Purity of Ice", - ["type"] = "explicit", - }, - }, - ["10463_PurityOfLightningUnaffectedByConductivity"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2647344903", + ["text"] = "Unaffected by Chilled Ground while affected by Purity of Ice", + ["type"] = "explicit", + }, + }, + ["10464_PurityOfLightningUnaffectedByConductivity"] = { ["AnyJewel"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1567542124", - ["text"] = "Unaffected by Conductivity while affected by Purity of Lightning", - ["type"] = "explicit", - }, - }, - ["10468_PurityOfElementsUnaffectedByElementalWeakness"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1567542124", + ["text"] = "Unaffected by Conductivity while affected by Purity of Lightning", + ["type"] = "explicit", + }, + }, + ["10469_PurityOfElementsUnaffectedByElementalWeakness"] = { ["AnyJewel"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3223142064", - ["text"] = "Unaffected by Elemental Weakness while affected by Purity of Elements", - ["type"] = "explicit", - }, - }, - ["10469_GraceUnaffectedByEnfeeble"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3223142064", + ["text"] = "Unaffected by Elemental Weakness while affected by Purity of Elements", + ["type"] = "explicit", + }, + }, + ["10470_GraceUnaffectedByEnfeeble"] = { ["AnyJewel"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2365917222", - ["text"] = "Unaffected by Enfeeble while affected by Grace", - ["type"] = "explicit", - }, - }, - ["10470_PurityOfFireUnaffectedByFlammability"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2365917222", + ["text"] = "Unaffected by Enfeeble while affected by Grace", + ["type"] = "explicit", + }, + }, + ["10471_PurityOfFireUnaffectedByFlammability"] = { ["AnyJewel"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1173690938", - ["text"] = "Unaffected by Flammability while affected by Purity of Fire", - ["type"] = "explicit", - }, - }, - ["10472_PurityOfIceUnaffectedByFrostbite"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1173690938", + ["text"] = "Unaffected by Flammability while affected by Purity of Fire", + ["type"] = "explicit", + }, + }, + ["10473_PurityOfIceUnaffectedByFrostbite"] = { ["AnyJewel"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4012281889", - ["text"] = "Unaffected by Frostbite while affected by Purity of Ice", - ["type"] = "explicit", - }, - }, - ["10476_MalevolenceUnaffectedByPoison"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4012281889", + ["text"] = "Unaffected by Frostbite while affected by Purity of Ice", + ["type"] = "explicit", + }, + }, + ["10477_MalevolenceUnaffectedByPoison"] = { ["AnyJewel"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_34059570", - ["text"] = "Unaffected by Poison while affected by Malevolence", - ["type"] = "explicit", - }, - }, - ["10482_PurityOfLightningUnaffectedByShockedGround"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_34059570", + ["text"] = "Unaffected by Poison while affected by Malevolence", + ["type"] = "explicit", + }, + }, + ["10483_PurityOfLightningUnaffectedByShockedGround"] = { ["AnyJewel"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2567659895", - ["text"] = "Unaffected by Shocked Ground while affected by Purity of Lightning", - ["type"] = "explicit", - }, - }, - ["10484_HasteUnaffectedByTemporalChains"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2567659895", + ["text"] = "Unaffected by Shocked Ground while affected by Purity of Lightning", + ["type"] = "explicit", + }, + }, + ["10485_HasteUnaffectedByTemporalChains"] = { ["AnyJewel"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2806391472", - ["text"] = "Unaffected by Temporal Chains while affected by Haste", - ["type"] = "explicit", - }, - }, - ["10485_DeterminationUnaffectedByVulnerability"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2806391472", + ["text"] = "Unaffected by Temporal Chains while affected by Haste", + ["type"] = "explicit", + }, + }, + ["10486_DeterminationUnaffectedByVulnerability"] = { ["AnyJewel"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3207781478", - ["text"] = "Unaffected by Vulnerability while affected by Determination", - ["type"] = "explicit", - }, - }, - ["10666_MalevolenceYourAilmentsDealDamageFaster"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3207781478", + ["text"] = "Unaffected by Vulnerability while affected by Determination", + ["type"] = "explicit", + }, + }, + ["10667_MalevolenceYourAilmentsDealDamageFaster"] = { ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 10, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3468843137", - ["text"] = "Damaging Ailments you inflict deal Damage #% faster while affected by Malevolence", - ["type"] = "explicit", - }, - }, + ["max"] = 15, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3468843137", + ["text"] = "Damaging Ailments you inflict deal Damage #% faster while affected by Malevolence", + ["type"] = "explicit", + }, + }, ["1735_ZealotryMaximumEnergyShieldPerSecondToMaximumEnergyShieldLeechRate"] = { ["AnyJewel"] = { - ["max"] = 30, - ["min"] = 30, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2731416566", - ["text"] = "#% increased Maximum total Energy Shield Recovery per second from Leech while affected by Zealotry", - ["type"] = "explicit", - }, - }, + ["max"] = 30, + ["min"] = 30, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2731416566", + ["text"] = "#% increased Maximum total Energy Shield Recovery per second from Leech while affected by Zealotry", + ["type"] = "explicit", + }, + }, ["1736_ZealotryMaximumEnergyShieldPerSecondToMaximumEnergyShieldLeechRateOld"] = { ["AnyJewel"] = { - ["max"] = 30, - ["min"] = 30, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2731416566", - ["text"] = "#% increased Maximum total Energy Shield Recovery per second from Leech while affected by Zealotry", - ["type"] = "explicit", - }, - }, + ["max"] = 30, + ["min"] = 30, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2731416566", + ["text"] = "#% increased Maximum total Energy Shield Recovery per second from Leech while affected by Zealotry", + ["type"] = "explicit", + }, + }, ["4552_HatredAdditionalCriticalStrikeChance"] = { ["AnyJewel"] = { - ["max"] = 1.8, - ["min"] = 1.2, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2753985507", - ["text"] = "+#% to Critical Strike Chance while affected by Hatred", - ["type"] = "explicit", - }, - }, + ["max"] = 1.8, + ["min"] = 1.2, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2753985507", + ["text"] = "+#% to Critical Strike Chance while affected by Hatred", + ["type"] = "explicit", + }, + }, ["4561_PurityOfElementsMaximumElementalResistances"] = { ["AnyJewel"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3234824465", - ["text"] = "+#% to all maximum Elemental Resistances while affected by Purity of Elements", - ["type"] = "explicit", - }, - }, + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3234824465", + ["text"] = "+#% to all maximum Elemental Resistances while affected by Purity of Elements", + ["type"] = "explicit", + }, + }, ["4579_DeterminationPhysicalDamageReduction"] = { ["AnyJewel"] = { - ["max"] = 8, - ["min"] = 5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1873457881", - ["text"] = "#% additional Physical Damage Reduction while affected by Determination", - ["type"] = "explicit", - }, - }, + ["max"] = 8, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1873457881", + ["text"] = "#% additional Physical Damage Reduction while affected by Determination", + ["type"] = "explicit", + }, + }, ["4765_DeterminationAdditionalArmour"] = { ["AnyJewel"] = { - ["max"] = 1000, - ["min"] = 600, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3742808908", - ["text"] = "+# to Armour while affected by Determination", - ["type"] = "explicit", - }, - }, + ["max"] = 1000, + ["min"] = 600, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3742808908", + ["text"] = "+# to Armour while affected by Determination", + ["type"] = "explicit", + }, + }, ["4862_PrecisionIncreasedAttackDamage"] = { ["AnyJewel"] = { - ["max"] = 60, - ["min"] = 40, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2048747572", - ["text"] = "#% increased Attack Damage while affected by Precision", - ["type"] = "explicit", - }, - }, + ["max"] = 60, + ["min"] = 40, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2048747572", + ["text"] = "#% increased Attack Damage while affected by Precision", + ["type"] = "explicit", + }, + }, ["4904_PrecisionIncreasedAttackSpeed"] = { ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 10, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3375743050", - ["text"] = "#% increased Attack Speed while affected by Precision", - ["type"] = "explicit", - }, - }, + ["max"] = 15, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3375743050", + ["text"] = "#% increased Attack Speed while affected by Precision", + ["type"] = "explicit", + }, + }, ["5043_HatredPhysicalConvertedToCold"] = { ["AnyJewel"] = { - ["max"] = 40, - ["min"] = 25, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_664849247", - ["text"] = "#% of Physical Damage Converted to Cold Damage while affected by Hatred", - ["type"] = "explicit", - }, - }, + ["max"] = 40, + ["min"] = 25, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_664849247", + ["text"] = "#% of Physical Damage Converted to Cold Damage while affected by Hatred", + ["type"] = "explicit", + }, + }, ["5044_AngerPhysicalConvertedToFire"] = { ["AnyJewel"] = { - ["max"] = 40, - ["min"] = 25, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3624529132", - ["text"] = "#% of Physical Damage Converted to Fire Damage while affected by Anger", - ["type"] = "explicit", - }, - }, + ["max"] = 40, + ["min"] = 25, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3624529132", + ["text"] = "#% of Physical Damage Converted to Fire Damage while affected by Anger", + ["type"] = "explicit", + }, + }, ["5045_WrathPhysicalConvertedToLightning"] = { ["AnyJewel"] = { - ["max"] = 40, - ["min"] = 25, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2106756686", - ["text"] = "#% of Physical Damage Converted to Lightning Damage while affected by Wrath", - ["type"] = "explicit", - }, - }, + ["max"] = 40, + ["min"] = 25, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2106756686", + ["text"] = "#% of Physical Damage Converted to Lightning Damage while affected by Wrath", + ["type"] = "explicit", + }, + }, ["5221_GraceBlindEnemiesWhenHit"] = { ["AnyJewel"] = { - ["max"] = 50, - ["min"] = 30, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2548097895", - ["text"] = "#% chance to Blind Enemies which Hit you while affected by Grace", - ["type"] = "explicit", - }, - }, + ["max"] = 50, + ["min"] = 30, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2548097895", + ["text"] = "#% chance to Blind Enemies which Hit you while affected by Grace", + ["type"] = "explicit", + }, + }, ["5231_DeterminationAdditionalBlock"] = { ["AnyJewel"] = { - ["max"] = 8, - ["min"] = 5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3692646597", - ["text"] = "+#% Chance to Block Attack Damage while affected by Determination", - ["type"] = "explicit", - }, - }, + ["max"] = 8, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3692646597", + ["text"] = "+#% Chance to Block Attack Damage while affected by Determination", + ["type"] = "explicit", + }, + }, ["5394_PrecisionCannotBeBlinded"] = { ["AnyJewel"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1653848515", - ["text"] = "Cannot be Blinded while affected by Precision", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1653848515", + ["text"] = "Cannot be Blinded while affected by Precision", + ["type"] = "explicit", + }, + }, ["5471_ZealotryCastSpeed"] = { ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 10, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2444534954", - ["text"] = "#% increased Cast Speed while affected by Zealotry", - ["type"] = "explicit", - }, - }, + ["max"] = 15, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2444534954", + ["text"] = "#% increased Cast Speed while affected by Zealotry", + ["type"] = "explicit", + }, + }, ["5652_DisciplineAdditionalSpellBlock"] = { ["AnyJewel"] = { - ["max"] = 8, - ["min"] = 5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1313498929", - ["text"] = "+#% Chance to Block Spell Damage while affected by Discipline", - ["type"] = "explicit", - }, - }, + ["max"] = 8, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1313498929", + ["text"] = "+#% Chance to Block Spell Damage while affected by Discipline", + ["type"] = "explicit", + }, + }, ["5675_GraceAdditionalChanceToEvade"] = { ["AnyJewel"] = { - ["max"] = 8, - ["min"] = 5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_969576725", - ["text"] = "+#% chance to Evade Attack Hits while affected by Grace", - ["type"] = "explicit", - }, - }, + ["max"] = 8, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_969576725", + ["text"] = "+#% chance to Evade Attack Hits while affected by Grace", + ["type"] = "explicit", + }, + }, ["5744_PurityOfElementsChaosResistance"] = { ["AnyJewel"] = { - ["max"] = 50, - ["min"] = 30, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1138813382", - ["text"] = "+#% to Chaos Resistance while affected by Purity of Elements", - ["type"] = "explicit", - }, - }, + ["max"] = 50, + ["min"] = 30, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1138813382", + ["text"] = "+#% to Chaos Resistance while affected by Purity of Elements", + ["type"] = "explicit", + }, + }, ["5801_PurityOfFireColdAndLightningTakenAsFire"] = { ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1723738042", - ["text"] = "#% of Cold and Lightning Damage taken as Fire Damage while affected by Purity of Fire", - ["type"] = "explicit", - }, - }, + ["max"] = 20, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1723738042", + ["text"] = "#% of Cold and Lightning Damage taken as Fire Damage while affected by Purity of Fire", + ["type"] = "explicit", + }, + }, ["5814_HatredIncreasedColdDamage"] = { ["AnyJewel"] = { - ["max"] = 60, - ["min"] = 40, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1413864591", - ["text"] = "#% increased Cold Damage while affected by Hatred", - ["type"] = "explicit", - }, - }, + ["max"] = 60, + ["min"] = 40, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1413864591", + ["text"] = "#% increased Cold Damage while affected by Hatred", + ["type"] = "explicit", + }, + }, ["5849_ZealotryConsecratedGroundEnemyDamageTaken"] = { ["AnyJewel"] = { - ["max"] = 10, - ["min"] = 8, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2434030180", - ["text"] = "Consecrated Ground you create while affected by Zealotry causes enemies to take #% increased Damage", - ["type"] = "explicit", - }, - }, + ["max"] = 10, + ["min"] = 8, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2434030180", + ["text"] = "Consecrated Ground you create while affected by Zealotry causes enemies to take #% increased Damage", + ["type"] = "explicit", + }, + }, ["5852_ZealotryConsecratedGroundEffectLingersForMsAfterLeavingTheArea"] = { ["AnyJewel"] = { - ["max"] = 2, - ["min"] = 2, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2163419452", - ["text"] = "Effects of Consecrated Ground you create while affected by Zealotry Linger for # seconds", - ["type"] = "explicit", - }, - }, + ["max"] = 2, + ["min"] = 2, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2163419452", + ["text"] = "Effects of Consecrated Ground you create while affected by Zealotry Linger for # seconds", + ["type"] = "explicit", + }, + }, ["5921_ZealotryCriticalStrikeChanceAgainstEnemiesOnConsecratedGround"] = { ["AnyJewel"] = { - ["max"] = 120, - ["min"] = 100, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_214835567", - ["text"] = "#% increased Critical Strike Chance against Enemies on Consecrated Ground while affected by Zealotry", - ["type"] = "explicit", - }, - }, + ["max"] = 120, + ["min"] = 100, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_214835567", + ["text"] = "#% increased Critical Strike Chance against Enemies on Consecrated Ground while affected by Zealotry", + ["type"] = "explicit", + }, + }, ["5941_WrathIncreasedCriticalStrikeChance"] = { ["AnyJewel"] = { - ["max"] = 100, - ["min"] = 70, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3357049845", - ["text"] = "#% increased Critical Strike Chance while affected by Wrath", - ["type"] = "explicit", - }, - }, + ["max"] = 100, + ["min"] = 70, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3357049845", + ["text"] = "#% increased Critical Strike Chance while affected by Wrath", + ["type"] = "explicit", + }, + }, ["5968_AngerIncreasedCriticalStrikeMultiplier"] = { ["AnyJewel"] = { - ["max"] = 50, - ["min"] = 30, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3627458291", - ["text"] = "+#% to Critical Strike Multiplier while affected by Anger", - ["type"] = "explicit", - }, - }, + ["max"] = 50, + ["min"] = 30, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3627458291", + ["text"] = "+#% to Critical Strike Multiplier while affected by Anger", + ["type"] = "explicit", + }, + }, ["5969_PrecisionIncreasedCriticalStrikeMultiplier"] = { ["AnyJewel"] = { - ["max"] = 30, - ["min"] = 20, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1817023621", - ["text"] = "+#% to Critical Strike Multiplier while affected by Precision", - ["type"] = "explicit", - }, - }, + ["max"] = 30, + ["min"] = 20, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1817023621", + ["text"] = "+#% to Critical Strike Multiplier while affected by Precision", + ["type"] = "explicit", + }, + }, ["5983_ZealotryCriticalStrikesPenetratesElementalResistances"] = { ["AnyJewel"] = { - ["max"] = 10, - ["min"] = 8, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2091518682", - ["text"] = "Critical Strikes Penetrate #% of Enemy Elemental Resistances while affected by Zealotry", - ["type"] = "explicit", - }, - }, + ["max"] = 10, + ["min"] = 8, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2091518682", + ["text"] = "Critical Strikes Penetrate #% of Enemy Elemental Resistances while affected by Zealotry", + ["type"] = "explicit", + }, + }, ["6088_ClarityDamageTakenFromManaBeforeLife"] = { ["AnyJewel"] = { - ["max"] = 10, - ["min"] = 6, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2383304564", - ["text"] = "#% of Damage taken from Mana before Life while affected by Clarity", - ["type"] = "explicit", - }, - }, + ["max"] = 10, + ["min"] = 6, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2383304564", + ["text"] = "#% of Damage taken from Mana before Life while affected by Clarity", + ["type"] = "explicit", + }, + }, ["6106_ClarityDamageTakenGainedAsMana"] = { ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 15, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_380220671", - ["text"] = "#% of Damage taken while affected by Clarity Recouped as Mana", - ["type"] = "explicit", - }, - }, + ["max"] = 20, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_380220671", + ["text"] = "#% of Damage taken while affected by Clarity Recouped as Mana", + ["type"] = "explicit", + }, + }, ["6150_HasteDebuffsExpireFaster"] = { ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 15, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_207635700", - ["text"] = "Debuffs on you expire #% faster while affected by Haste", - ["type"] = "explicit", - }, - }, - ["6259_MalevolenceDamageOverTimeMultiplier"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_207635700", + ["text"] = "Debuffs on you expire #% faster while affected by Haste", + ["type"] = "explicit", + }, + }, + ["6260_MalevolenceDamageOverTimeMultiplier"] = { ["AnyJewel"] = { - ["max"] = 22, - ["min"] = 18, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2736708072", - ["text"] = "+#% to Damage over Time Multiplier while affected by Malevolence", - ["type"] = "explicit", - }, - }, - ["6429_DisciplineFasterStartOfRecharge"] = { + ["max"] = 22, + ["min"] = 18, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2736708072", + ["text"] = "+#% to Damage over Time Multiplier while affected by Malevolence", + ["type"] = "explicit", + }, + }, + ["6430_DisciplineFasterStartOfRecharge"] = { ["AnyJewel"] = { - ["max"] = 40, - ["min"] = 30, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1016185292", - ["text"] = "#% faster start of Energy Shield Recharge while affected by Discipline", - ["type"] = "explicit", - }, - }, - ["6432_DisciplineEnergyShieldPerHit"] = { + ["max"] = 40, + ["min"] = 30, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1016185292", + ["text"] = "#% faster start of Energy Shield Recharge while affected by Discipline", + ["type"] = "explicit", + }, + }, + ["6433_DisciplineEnergyShieldPerHit"] = { ["AnyJewel"] = { - ["max"] = 30, - ["min"] = 20, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3765507527", - ["text"] = "Gain # Energy Shield per Enemy Hit while affected by Discipline", - ["type"] = "explicit", - }, - }, - ["6437_WrathLightningDamageESLeech"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3765507527", + ["text"] = "Gain # Energy Shield per Enemy Hit while affected by Discipline", + ["type"] = "explicit", + }, + }, + ["6438_WrathLightningDamageESLeech"] = { ["AnyJewel"] = { - ["max"] = 1.5, - ["min"] = 1, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_121436064", - ["text"] = "#% of Lightning Damage is Leeched as Energy Shield while affected by Wrath", - ["type"] = "explicit", - }, - }, - ["6452_DisciplineEnergyShieldRecoveryRate"] = { + ["max"] = 1.5, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_121436064", + ["text"] = "#% of Lightning Damage is Leeched as Energy Shield while affected by Wrath", + ["type"] = "explicit", + }, + }, + ["6453_DisciplineEnergyShieldRecoveryRate"] = { ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 10, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_80470845", - ["text"] = "#% increased Energy Shield Recovery Rate while affected by Discipline", - ["type"] = "explicit", - }, - }, - ["6459_DisciplineEnergyShieldRegen"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_80470845", + ["text"] = "#% increased Energy Shield Recovery Rate while affected by Discipline", + ["type"] = "explicit", + }, + }, + ["6460_DisciplineEnergyShieldRegen"] = { ["AnyJewel"] = { - ["max"] = 2.5, - ["min"] = 1.5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_991194404", - ["text"] = "Regenerate #% of Energy Shield per Second while affected by Discipline", - ["type"] = "explicit", - }, - }, - ["6536_DeterminationReducedExtraDamageFromCrits"] = { + ["max"] = 2.5, + ["min"] = 1.5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_991194404", + ["text"] = "Regenerate #% of Energy Shield per Second while affected by Discipline", + ["type"] = "explicit", + }, + }, + ["6537_DeterminationReducedExtraDamageFromCrits"] = { ["AnyJewel"] = { - ["max"] = 60, - ["min"] = 40, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_68410701", - ["text"] = "You take #% reduced Extra Damage from Critical Strikes while affected by Determination", - ["type"] = "explicit", - }, - }, - ["6552_PurityOfIceFireAndLightningTakenAsCold"] = { + ["max"] = 60, + ["min"] = 40, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_68410701", + ["text"] = "You take #% reduced Extra Damage from Critical Strikes while affected by Determination", + ["type"] = "explicit", + }, + }, + ["6553_PurityOfIceFireAndLightningTakenAsCold"] = { ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2189467271", - ["text"] = "#% of Fire and Lightning Damage taken as Cold Damage while affected by Purity of Ice", - ["type"] = "explicit", - }, - }, - ["6568_AngerIncreasedFireDamage"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2189467271", + ["text"] = "#% of Fire and Lightning Damage taken as Cold Damage while affected by Purity of Ice", + ["type"] = "explicit", + }, + }, + ["6569_AngerIncreasedFireDamage"] = { ["AnyJewel"] = { - ["max"] = 60, - ["min"] = 40, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3337107517", - ["text"] = "#% increased Fire Damage while affected by Anger", - ["type"] = "explicit", - }, - }, - ["6640_VitalityLifeRecoveryFromFlasks"] = { + ["max"] = 60, + ["min"] = 40, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3337107517", + ["text"] = "#% increased Fire Damage while affected by Anger", + ["type"] = "explicit", + }, + }, + ["6641_VitalityLifeRecoveryFromFlasks"] = { ["AnyJewel"] = { - ["max"] = 70, - ["min"] = 50, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_362838683", - ["text"] = "#% increased Life Recovery from Flasks while affected by Vitality", - ["type"] = "explicit", - }, - }, - ["6723_ZealotryGainArcaneSurgeFor4SecondsWhenYouCreateConsecratedGround"] = { + ["max"] = 70, + ["min"] = 50, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_362838683", + ["text"] = "#% increased Life Recovery from Flasks while affected by Vitality", + ["type"] = "explicit", + }, + }, + ["6724_ZealotryGainArcaneSurgeFor4SecondsWhenYouCreateConsecratedGround"] = { ["AnyJewel"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1919069577", - ["text"] = "Gain Arcane Surge for 4 seconds when you create Consecrated Ground while affected by Zealotry", - ["type"] = "explicit", - }, - }, - ["6787_HasteGainOnslaughtOnKill"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1919069577", + ["text"] = "Gain Arcane Surge for 4 seconds when you create Consecrated Ground while affected by Zealotry", + ["type"] = "explicit", + }, + }, + ["6788_HasteGainOnslaughtOnKill"] = { ["AnyJewel"] = { - ["max"] = 4, - ["min"] = 4, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1424006185", - ["text"] = "You gain Onslaught for # seconds on Kill while affected by Haste", - ["type"] = "explicit", - }, - }, - ["6798_HasteGainPhasing"] = { + ["max"] = 4, + ["min"] = 4, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1424006185", + ["text"] = "You gain Onslaught for # seconds on Kill while affected by Haste", + ["type"] = "explicit", + }, + }, + ["6799_HasteGainPhasing"] = { ["AnyJewel"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1346311588", - ["text"] = "You have Phasing while affected by Haste", - ["type"] = "explicit", - }, - }, - ["7230_PurityOfIceImmuneToFreeze"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1346311588", + ["text"] = "You have Phasing while affected by Haste", + ["type"] = "explicit", + }, + }, + ["7231_PurityOfIceImmuneToFreeze"] = { ["AnyJewel"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2720072724", - ["text"] = "Immune to Freeze while affected by Purity of Ice", - ["type"] = "explicit", - }, - }, - ["7233_PurityOfFireImmuneToIgnite"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2720072724", + ["text"] = "Immune to Freeze while affected by Purity of Ice", + ["type"] = "explicit", + }, + }, + ["7234_PurityOfFireImmuneToIgnite"] = { ["AnyJewel"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_371612541", - ["text"] = "Immune to Ignite while affected by Purity of Fire", - ["type"] = "explicit", - }, - }, - ["7238_PurityOfLightningImmuneToShock"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_371612541", + ["text"] = "Immune to Ignite while affected by Purity of Fire", + ["type"] = "explicit", + }, + }, + ["7239_PurityOfLightningImmuneToShock"] = { ["AnyJewel"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_281949611", - ["text"] = "Immune to Shock while affected by Purity of Lightning", - ["type"] = "explicit", - }, - }, - ["7344_MalevolenceLifeAndEnergyShieldRecoveryRate"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_281949611", + ["text"] = "Immune to Shock while affected by Purity of Lightning", + ["type"] = "explicit", + }, + }, + ["7345_MalevolenceLifeAndEnergyShieldRecoveryRate"] = { ["AnyJewel"] = { - ["max"] = 12, - ["min"] = 8, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3643449791", - ["text"] = "#% increased Recovery rate of Life and Energy Shield while affected by Malevolence", - ["type"] = "explicit", - }, - }, - ["7355_VitalityLifeGainPerHit"] = { + ["max"] = 12, + ["min"] = 8, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3643449791", + ["text"] = "#% increased Recovery rate of Life and Energy Shield while affected by Malevolence", + ["type"] = "explicit", + }, + }, + ["7356_VitalityLifeGainPerHit"] = { ["AnyJewel"] = { - ["max"] = 30, - ["min"] = 20, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4259701244", - ["text"] = "Gain # Life per Enemy Hit while affected by Vitality", - ["type"] = "explicit", - }, - }, - ["7361_VitalityDamageLifeLeech"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4259701244", + ["text"] = "Gain # Life per Enemy Hit while affected by Vitality", + ["type"] = "explicit", + }, + }, + ["7362_VitalityDamageLifeLeech"] = { ["AnyJewel"] = { - ["max"] = 1.2, - ["min"] = 0.8, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3656959867", - ["text"] = "#% of Damage leeched as Life while affected by Vitality", - ["type"] = "explicit", - }, - }, - ["7368_AngerFireDamageLifeLeech"] = { + ["max"] = 1.2, + ["min"] = 0.8, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3656959867", + ["text"] = "#% of Damage leeched as Life while affected by Vitality", + ["type"] = "explicit", + }, + }, + ["7369_AngerFireDamageLifeLeech"] = { ["AnyJewel"] = { - ["max"] = 1.5, - ["min"] = 1, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2312747856", - ["text"] = "#% of Fire Damage Leeched as Life while affected by Anger", - ["type"] = "explicit", - }, - }, - ["7394_VitalityLifeRecoveryRate"] = { + ["max"] = 1.5, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2312747856", + ["text"] = "#% of Fire Damage Leeched as Life while affected by Anger", + ["type"] = "explicit", + }, + }, + ["7395_VitalityLifeRecoveryRate"] = { ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 10, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2690790844", - ["text"] = "#% increased Life Recovery Rate while affected by Vitality", - ["type"] = "explicit", - }, - }, - ["7404_VitalityFlatLifeRegen"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2690790844", + ["text"] = "#% increased Life Recovery Rate while affected by Vitality", + ["type"] = "explicit", + }, + }, + ["7405_VitalityFlatLifeRegen"] = { ["AnyJewel"] = { - ["max"] = 140, - ["min"] = 100, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3489570622", - ["text"] = "Regenerate # Life per Second while affected by Vitality", - ["type"] = "explicit", - }, - }, - ["7411_VitalityPercentLifeRegen"] = { + ["max"] = 140, + ["min"] = 100, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3489570622", + ["text"] = "Regenerate # Life per Second while affected by Vitality", + ["type"] = "explicit", + }, + }, + ["7412_VitalityPercentLifeRegen"] = { ["AnyJewel"] = { - ["max"] = 1.5, - ["min"] = 1, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1165583295", - ["text"] = "Regenerate #% of Life per second while affected by Vitality", - ["type"] = "explicit", - }, - }, - ["7449_WrathIncreasedLightningDamage"] = { + ["max"] = 1.5, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1165583295", + ["text"] = "Regenerate #% of Life per second while affected by Vitality", + ["type"] = "explicit", + }, + }, + ["7450_WrathIncreasedLightningDamage"] = { ["AnyJewel"] = { - ["max"] = 60, - ["min"] = 40, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_418293304", - ["text"] = "#% increased Lightning Damage while affected by Wrath", - ["type"] = "explicit", - }, - }, - ["8183_WrathLightningDamageManaLeech"] = { + ["max"] = 60, + ["min"] = 40, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_418293304", + ["text"] = "#% increased Lightning Damage while affected by Wrath", + ["type"] = "explicit", + }, + }, + ["8184_WrathLightningDamageManaLeech"] = { ["AnyJewel"] = { - ["max"] = 1.5, - ["min"] = 1, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2889601846", - ["text"] = "#% of Lightning Damage is Leeched as Mana while affected by Wrath", - ["type"] = "explicit", - }, - }, - ["8192_ClarityManaRecoveryRate"] = { + ["max"] = 1.5, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2889601846", + ["text"] = "#% of Lightning Damage is Leeched as Mana while affected by Wrath", + ["type"] = "explicit", + }, + }, + ["8193_ClarityManaRecoveryRate"] = { ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 10, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_556659145", - ["text"] = "#% increased Mana Recovery Rate while affected by Clarity", - ["type"] = "explicit", - }, - }, - ["9170_ClarityManaAddedAsEnergyShield"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_556659145", + ["text"] = "#% increased Mana Recovery Rate while affected by Clarity", + ["type"] = "explicit", + }, + }, + ["9171_ClarityManaAddedAsEnergyShield"] = { ["AnyJewel"] = { - ["max"] = 10, - ["min"] = 6, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2831391506", - ["text"] = "Gain #% of Maximum Mana as Extra Maximum Energy Shield while affected by Clarity", - ["type"] = "explicit", - }, - }, - ["9233_HatredAddedColdDamage"] = { + ["max"] = 10, + ["min"] = 6, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2831391506", + ["text"] = "Gain #% of Maximum Mana as Extra Maximum Energy Shield while affected by Clarity", + ["type"] = "explicit", + }, + }, + ["9234_HatredAddedColdDamage"] = { ["AnyJewel"] = { - ["max"] = 87, - ["min"] = 73, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2643562209", - ["text"] = "Adds # to # Cold Damage while affected by Hatred", - ["type"] = "explicit", - }, - }, - ["9374_DeterminationReducedReflectedPhysicalDamage"] = { + ["max"] = 87, + ["min"] = 73, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2643562209", + ["text"] = "Adds # to # Cold Damage while affected by Hatred", + ["type"] = "explicit", + }, + }, + ["9375_DeterminationReducedReflectedPhysicalDamage"] = { ["AnyJewel"] = { - ["max"] = 75, - ["min"] = 50, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2255585376", - ["text"] = "#% of Physical Damage from your Hits cannot be Reflected while affected by Determination", - ["type"] = "explicit", - }, - }, - ["9406_HasteCooldownRecoveryForMovementSkills"] = { + ["max"] = 75, + ["min"] = 50, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2255585376", + ["text"] = "#% of Physical Damage from your Hits cannot be Reflected while affected by Determination", + ["type"] = "explicit", + }, + }, + ["9407_HasteCooldownRecoveryForMovementSkills"] = { ["AnyJewel"] = { - ["max"] = 50, - ["min"] = 30, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3332055899", - ["text"] = "#% increased Cooldown Recovery Rate of Movement Skills used while affected by Haste", - ["type"] = "explicit", - }, - }, - ["9429_GraceIncreasedMovementSpeed"] = { + ["max"] = 50, + ["min"] = 30, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3332055899", + ["text"] = "#% increased Cooldown Recovery Rate of Movement Skills used while affected by Haste", + ["type"] = "explicit", + }, + }, + ["9430_GraceIncreasedMovementSpeed"] = { ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 10, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3329402420", - ["text"] = "#% increased Movement Speed while affected by Grace", - ["type"] = "explicit", - }, - }, - ["9632_AngerPhysicalAddedAsFire"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3329402420", + ["text"] = "#% increased Movement Speed while affected by Grace", + ["type"] = "explicit", + }, + }, + ["9633_AngerPhysicalAddedAsFire"] = { ["AnyJewel"] = { - ["max"] = 25, - ["min"] = 15, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4245204226", - ["text"] = "Gain #% of Physical Damage as Extra Fire Damage while affected by Anger", - ["type"] = "explicit", - }, - }, - ["9635_WrathPhysicalAddedAsLightning"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4245204226", + ["text"] = "Gain #% of Physical Damage as Extra Fire Damage while affected by Anger", + ["type"] = "explicit", + }, + }, + ["9636_WrathPhysicalAddedAsLightning"] = { ["AnyJewel"] = { - ["max"] = 25, - ["min"] = 15, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2255914633", - ["text"] = "Gain #% of Physical Damage as Extra Lightning Damage while affected by Wrath", - ["type"] = "explicit", - }, - }, - ["9657_PurityOfElementsTakePhysicalAsCold"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2255914633", + ["text"] = "Gain #% of Physical Damage as Extra Lightning Damage while affected by Wrath", + ["type"] = "explicit", + }, + }, + ["9658_PurityOfElementsTakePhysicalAsCold"] = { ["AnyJewel"] = { - ["max"] = 12, - ["min"] = 8, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1710207583", - ["text"] = "#% of Physical Damage from Hits taken as Cold Damage while affected by Purity of Elements", - ["type"] = "explicit", - }, - }, - ["9658_PurityOfIceTakePhysicalAsIce"] = { + ["max"] = 12, + ["min"] = 8, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1710207583", + ["text"] = "#% of Physical Damage from Hits taken as Cold Damage while affected by Purity of Elements", + ["type"] = "explicit", + }, + }, + ["9659_PurityOfIceTakePhysicalAsIce"] = { ["AnyJewel"] = { - ["max"] = 10, - ["min"] = 6, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1779027621", - ["text"] = "#% of Physical Damage from Hits taken as Cold Damage while affected by Purity of Ice", - ["type"] = "explicit", - }, - }, - ["9659_PurityOfElementsTakePhysicalAsFire"] = { + ["max"] = 10, + ["min"] = 6, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1779027621", + ["text"] = "#% of Physical Damage from Hits taken as Cold Damage while affected by Purity of Ice", + ["type"] = "explicit", + }, + }, + ["9660_PurityOfElementsTakePhysicalAsFire"] = { ["AnyJewel"] = { - ["max"] = 12, - ["min"] = 8, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1722775216", - ["text"] = "#% of Physical Damage from Hits taken as Fire Damage while affected by Purity of Elements", - ["type"] = "explicit", - }, - }, - ["9660_PurityOfFireTakePhysicalAsFire"] = { + ["max"] = 12, + ["min"] = 8, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1722775216", + ["text"] = "#% of Physical Damage from Hits taken as Fire Damage while affected by Purity of Elements", + ["type"] = "explicit", + }, + }, + ["9661_PurityOfFireTakePhysicalAsFire"] = { ["AnyJewel"] = { - ["max"] = 10, - ["min"] = 6, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1798459983", - ["text"] = "#% of Physical Damage from Hits taken as Fire Damage while affected by Purity of Fire", - ["type"] = "explicit", - }, - }, - ["9661_PurityOfElementsTakePhysicalAsLightning"] = { + ["max"] = 10, + ["min"] = 6, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1798459983", + ["text"] = "#% of Physical Damage from Hits taken as Fire Damage while affected by Purity of Fire", + ["type"] = "explicit", + }, + }, + ["9662_PurityOfElementsTakePhysicalAsLightning"] = { ["AnyJewel"] = { - ["max"] = 12, - ["min"] = 8, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_873224517", - ["text"] = "#% of Physical Damage from Hits taken as Lightning Damage while affected by Purity of Elements", - ["type"] = "explicit", - }, - }, - ["9662_PurityOfLightningTakePhysicalAsLightning"] = { + ["max"] = 12, + ["min"] = 8, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_873224517", + ["text"] = "#% of Physical Damage from Hits taken as Lightning Damage while affected by Purity of Elements", + ["type"] = "explicit", + }, + }, + ["9663_PurityOfLightningTakePhysicalAsLightning"] = { ["AnyJewel"] = { - ["max"] = 10, - ["min"] = 6, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_254131992", - ["text"] = "#% of Physical Damage from Hits taken as Lightning Damage while affected by Purity of Lightning", - ["type"] = "explicit", - }, - }, - ["9711_PrideChanceForDoubleDamage"] = { + ["max"] = 10, + ["min"] = 6, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_254131992", + ["text"] = "#% of Physical Damage from Hits taken as Lightning Damage while affected by Purity of Lightning", + ["type"] = "explicit", + }, + }, + ["9712_PrideChanceForDoubleDamage"] = { ["AnyJewel"] = { - ["max"] = 12, - ["min"] = 8, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3371719014", - ["text"] = "#% chance to deal Double Damage while using Pride", - ["type"] = "explicit", - }, - }, - ["9712_PrideChanceToImpale"] = { + ["max"] = 12, + ["min"] = 8, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3371719014", + ["text"] = "#% chance to deal Double Damage while using Pride", + ["type"] = "explicit", + }, + }, + ["9713_PrideChanceToImpale"] = { ["AnyJewel"] = { - ["max"] = 25, - ["min"] = 25, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4173751044", - ["text"] = "#% chance to Impale Enemies on Hit with Attacks while using Pride", - ["type"] = "explicit", - }, - }, - ["9713_PrideIntimidateOnHit"] = { + ["max"] = 25, + ["min"] = 25, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4173751044", + ["text"] = "#% chance to Impale Enemies on Hit with Attacks while using Pride", + ["type"] = "explicit", + }, + }, + ["9714_PrideIntimidateOnHit"] = { ["AnyJewel"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3772848194", - ["text"] = "Your Hits Intimidate Enemies for 4 seconds while you are using Pride", - ["type"] = "explicit", - }, - }, - ["9717_PrideIncreasedPhysicalDamage"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3772848194", + ["text"] = "Your Hits Intimidate Enemies for 4 seconds while you are using Pride", + ["type"] = "explicit", + }, + }, + ["9718_PrideIncreasedPhysicalDamage"] = { ["AnyJewel"] = { - ["max"] = 60, - ["min"] = 40, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_576528026", - ["text"] = "#% increased Physical Damage while using Pride", - ["type"] = "explicit", - }, - }, - ["9719_PrideImpaleAdditionalHits"] = { + ["max"] = 60, + ["min"] = 40, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_576528026", + ["text"] = "#% increased Physical Damage while using Pride", + ["type"] = "explicit", + }, + }, + ["9720_PrideImpaleAdditionalHits"] = { ["AnyJewel"] = { - ["max"] = 2, - ["min"] = 2, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1011863394", - ["text"] = "Impales you inflict last # additional Hits while using Pride", - ["type"] = "explicit", - }, - }, - ["9835_PrecisionFlaskChargeOnCrit"] = { + ["max"] = 2, + ["min"] = 2, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1011863394", + ["text"] = "Impales you inflict last # additional Hits while using Pride", + ["type"] = "explicit", + }, + }, + ["9836_PrecisionFlaskChargeOnCrit"] = { ["AnyJewel"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3772841281", - ["text"] = "Gain a Flask Charge when you deal a Critical Strike while affected by Precision", - ["type"] = "explicit", - }, - }, - ["9846_ClarityRecoverManaOnSkillUse"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3772841281", + ["text"] = "Gain a Flask Charge when you deal a Critical Strike while affected by Precision", + ["type"] = "explicit", + }, + }, + ["9847_ClarityRecoverManaOnSkillUse"] = { ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 10, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1699077932", - ["text"] = "#% chance to Recover 10% of Mana when you use a Skill while affected by Clarity", - ["type"] = "explicit", - }, - }, - ["9876_HatredColdPenetration"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1699077932", + ["text"] = "#% chance to Recover 10% of Mana when you use a Skill while affected by Clarity", + ["type"] = "explicit", + }, + }, + ["9877_HatredColdPenetration"] = { ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 10, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1222888897", - ["text"] = "Damage Penetrates #% Cold Resistance while affected by Hatred", - ["type"] = "explicit", - }, - }, - ["9878_AngerFirePenetration"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1222888897", + ["text"] = "Damage Penetrates #% Cold Resistance while affected by Hatred", + ["type"] = "explicit", + }, + }, + ["9879_AngerFirePenetration"] = { ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 10, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3111519953", - ["text"] = "Damage Penetrates #% Fire Resistance while affected by Anger", - ["type"] = "explicit", - }, - }, - ["9879_WrathLightningPenetration"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3111519953", + ["text"] = "Damage Penetrates #% Fire Resistance while affected by Anger", + ["type"] = "explicit", + }, + }, + ["9880_WrathLightningPenetration"] = { ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 10, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1077131949", - ["text"] = "Damage Penetrates #% Lightning Resistance while affected by Wrath", - ["type"] = "explicit", - }, - }, - }, + ["max"] = 15, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1077131949", + ["text"] = "Damage Penetrates #% Lightning Resistance while affected by Wrath", + ["type"] = "explicit", + }, + }, + }, } \ No newline at end of file diff --git a/src/Data/TimelessJewelData/LegionTradeIds.lua b/src/Data/TimelessJewelData/LegionTradeIds.lua index 43930e7e735..50b12b6ba16 100644 --- a/src/Data/TimelessJewelData/LegionTradeIds.lua +++ b/src/Data/TimelessJewelData/LegionTradeIds.lua @@ -25,7 +25,7 @@ return { }, [4] = { keystone = { - [1] = "explicit.pseudo_timeless_jewel_avarius", + [1] = "explicit.pseudo_timeless_jewel_avarius", [2] = "explicit.pseudo_timeless_jewel_dominus", [3] = "explicit.pseudo_timeless_jewel_maxarius" }, diff --git a/src/Data/TradeSiteStats.lua b/src/Data/TradeSiteStats.lua new file mode 100644 index 00000000000..1fb9d2e28ad --- /dev/null +++ b/src/Data/TradeSiteStats.lua @@ -0,0 +1,88209 @@ +-- This file is automatically downloaded, do not edit! +-- Trade site stat data (c) Grinding Gear Games +-- https://www.pathofexile.com/api/trade2/data/stats +-- spell-checker: disable +return { + { + ["entries"] = { + { + ["id"] = "pseudo.pseudo_number_of_crafted_mods", + ["text"] = "# Crafted Modifiers", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.pseudo_number_of_crafted_prefix_mods", + ["text"] = "# Crafted Prefix Modifiers", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.pseudo_number_of_crafted_suffix_mods", + ["text"] = "# Crafted Suffix Modifiers", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.pseudo_number_of_empty_affix_mods", + ["text"] = "# Empty Modifiers", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.pseudo_number_of_empty_prefix_mods", + ["text"] = "# Empty Prefix Modifiers", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.pseudo_number_of_empty_suffix_mods", + ["text"] = "# Empty Suffix Modifiers", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.pseudo_number_of_enchant_mods", + ["text"] = "# Enchant Modifiers", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.pseudo_number_of_fractured_mods", + ["text"] = "# Fractured Modifiers", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.pseudo_number_of_implicit_mods", + ["text"] = "# Implicit Modifiers", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.pseudo_total_life_regen", + ["text"] = "# Life Regenerated per Second", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.pseudo_number_of_affix_mods", + ["text"] = "# Modifiers", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.pseudo_number_of_notable_passive_skills", + ["text"] = "# Notable Passive Skills", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.pseudo_number_of_prefix_mods", + ["text"] = "# Prefix Modifiers", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.pseudo_number_of_suffix_mods", + ["text"] = "# Suffix Modifiers", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.pseudo_count_elemental_resistances", + ["text"] = "# total Elemental Resistances", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.pseudo_count_resistances", + ["text"] = "# total Resistances", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.pseudo_base_defence_percentile", + ["text"] = "#% Base Defence Percentile", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.pseudo_map_conversion_memory_line", + ["text"] = "#% chance for dropped Maps to convert to Atlas Memories", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.pseudo_map_conversion_conqueror_map", + ["text"] = "#% chance for dropped Maps to convert to Conqueror Maps", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.pseudo_map_conversion_elder_map", + ["text"] = "#% chance for dropped Maps to convert to Elder Maps", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.pseudo_map_conversion_maven_invitation", + ["text"] = "#% chance for dropped Maps to convert to Maven Invitations", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.pseudo_map_conversion_scarab", + ["text"] = "#% chance for dropped Maps to convert to Scarabs", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.pseudo_map_conversion_shaper_map", + ["text"] = "#% chance for dropped Maps to convert to Shaper Maps", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.pseudo_map_conversion_unique_map", + ["text"] = "#% chance for dropped Maps to convert to Unique Maps", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.pseudo_increased_burning_damage", + ["text"] = "#% increased Burning Damage", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.pseudo_increased_cold_damage", + ["text"] = "#% increased Cold Damage", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.pseudo_increased_cold_damage_with_attack_skills", + ["text"] = "#% increased Cold Damage with Attack Skills", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.pseudo_increased_cold_spell_damage", + ["text"] = "#% increased Cold Spell Damage", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.pseudo_increased_elemental_damage", + ["text"] = "#% increased Elemental Damage", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.pseudo_increased_elemental_damage_with_attack_skills", + ["text"] = "#% increased Elemental Damage with Attack Skills", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.pseudo_increased_fire_damage", + ["text"] = "#% increased Fire Damage", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.pseudo_increased_fire_damage_with_attack_skills", + ["text"] = "#% increased Fire Damage with Attack Skills", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.pseudo_increased_fire_spell_damage", + ["text"] = "#% increased Fire Spell Damage", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.pseudo_increased_lightning_damage", + ["text"] = "#% increased Lightning Damage", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.pseudo_increased_lightning_damage_with_attack_skills", + ["text"] = "#% increased Lightning Damage with Attack Skills", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.pseudo_increased_lightning_spell_damage", + ["text"] = "#% increased Lightning Spell Damage", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.pseudo_increased_mana_regen", + ["text"] = "#% increased Mana Regeneration Rate", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.pseudo_increased_movement_speed", + ["text"] = "#% increased Movement Speed", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.pseudo_increased_rarity", + ["text"] = "#% increased Rarity of Items found", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.pseudo_increased_spell_damage", + ["text"] = "#% increased Spell Damage", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.pseudo_percent_life_regen", + ["text"] = "#% of Life Regenerated per Second", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.pseudo_physical_attack_damage_leeched_as_life", + ["text"] = "#% of Physical Attack Damage Leeched as Life", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.pseudo_physical_attack_damage_leeched_as_mana", + ["text"] = "#% of Physical Attack Damage Leeched as Mana", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.pseudo_increased_physical_damage", + ["text"] = "#% total increased Physical Damage", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.pseudo_increased_energy_shield", + ["text"] = "#% total increased maximum Energy Shield", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.pseudo_total_energy_shield", + ["text"] = "+# total maximum Energy Shield", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.pseudo_total_life", + ["text"] = "+# total maximum Life", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.pseudo_total_mana", + ["text"] = "+# total maximum Mana", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.pseudo_total_dexterity", + ["text"] = "+# total to Dexterity", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.pseudo_total_intelligence", + ["text"] = "+# total to Intelligence", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.pseudo_total_additional_aura_gem_levels", + ["text"] = "+# total to Level of Socketed Aura Gems", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.pseudo_total_additional_bow_gem_levels", + ["text"] = "+# total to Level of Socketed Bow Gems", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.pseudo_total_additional_chaos_gem_levels", + ["text"] = "+# total to Level of Socketed Chaos Gems", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.pseudo_total_additional_cold_gem_levels", + ["text"] = "+# total to Level of Socketed Cold Gems", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.pseudo_total_additional_curse_gem_levels", + ["text"] = "+# total to Level of Socketed Curse Gems", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.pseudo_total_additional_dexterity_gem_levels", + ["text"] = "+# total to Level of Socketed Dexterity Gems", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.pseudo_total_additional_elemental_gem_levels", + ["text"] = "+# total to Level of Socketed Elemental Gems", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.pseudo_total_additional_fire_gem_levels", + ["text"] = "+# total to Level of Socketed Fire Gems", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.pseudo_total_additional_gem_levels", + ["text"] = "+# total to Level of Socketed Gems", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.pseudo_total_additional_golem_gem_levels", + ["text"] = "+# total to Level of Socketed Golem Gems", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.pseudo_total_additional_intelligence_gem_levels", + ["text"] = "+# total to Level of Socketed Intelligence Gems", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.pseudo_total_additional_lightning_gem_levels", + ["text"] = "+# total to Level of Socketed Lightning Gems", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.pseudo_total_additional_melee_gem_levels", + ["text"] = "+# total to Level of Socketed Melee Gems", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.pseudo_total_additional_minion_gem_levels", + ["text"] = "+# total to Level of Socketed Minion Gems", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.pseudo_total_additional_movement_gem_levels", + ["text"] = "+# total to Level of Socketed Movement Gems", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.pseudo_total_additional_projectile_gem_levels", + ["text"] = "+# total to Level of Socketed Projectile Gems", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.pseudo_total_additional_skill_gem_levels", + ["text"] = "+# total to Level of Socketed Skill Gems", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.pseudo_total_additional_spell_gem_levels", + ["text"] = "+# total to Level of Socketed Spell Gems", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.pseudo_total_additional_strength_gem_levels", + ["text"] = "+# total to Level of Socketed Strength Gems", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.pseudo_total_additional_support_gem_levels", + ["text"] = "+# total to Level of Socketed Support Gems", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.pseudo_total_additional_vaal_gem_levels", + ["text"] = "+# total to Level of Socketed Vaal Gems", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.pseudo_total_additional_warcry_gem_levels", + ["text"] = "+# total to Level of Socketed Warcry Gems", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.pseudo_total_strength", + ["text"] = "+# total to Strength", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.pseudo_total_all_attributes", + ["text"] = "+# total to all Attributes", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.pseudo_global_critical_strike_chance", + ["text"] = "+#% Global Critical Strike Chance", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.pseudo_global_critical_strike_multiplier", + ["text"] = "+#% Global Critical Strike Multiplier", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.pseudo_total_attack_speed", + ["text"] = "+#% total Attack Speed", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.pseudo_total_cast_speed", + ["text"] = "+#% total Cast Speed", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.pseudo_critical_strike_chance_for_spells", + ["text"] = "+#% total Critical Strike Chance for Spells", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.pseudo_total_elemental_resistance", + ["text"] = "+#% total Elemental Resistance", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.pseudo_total_resistance", + ["text"] = "+#% total Resistance", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.pseudo_total_chaos_resistance", + ["text"] = "+#% total to Chaos Resistance", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.pseudo_total_cold_resistance", + ["text"] = "+#% total to Cold Resistance", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.pseudo_total_fire_resistance", + ["text"] = "+#% total to Fire Resistance", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.pseudo_total_lightning_resistance", + ["text"] = "+#% total to Lightning Resistance", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.pseudo_total_all_elemental_resistances", + ["text"] = "+#% total to all Elemental Resistances", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.pseudo_adds_chaos_damage", + ["text"] = "Adds # to # Chaos Damage", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.pseudo_adds_chaos_damage_to_attacks", + ["text"] = "Adds # to # Chaos Damage to Attacks", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.pseudo_adds_chaos_damage_to_spells", + ["text"] = "Adds # to # Chaos Damage to Spells", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.pseudo_adds_cold_damage", + ["text"] = "Adds # to # Cold Damage", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.pseudo_adds_cold_damage_to_attacks", + ["text"] = "Adds # to # Cold Damage to Attacks", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.pseudo_adds_cold_damage_to_spells", + ["text"] = "Adds # to # Cold Damage to Spells", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.pseudo_adds_damage", + ["text"] = "Adds # to # Damage", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.pseudo_adds_damage_to_attacks", + ["text"] = "Adds # to # Damage to Attacks", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.pseudo_adds_damage_to_spells", + ["text"] = "Adds # to # Damage to Spells", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.pseudo_adds_elemental_damage", + ["text"] = "Adds # to # Elemental Damage", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.pseudo_adds_elemental_damage_to_attacks", + ["text"] = "Adds # to # Elemental Damage to Attacks", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.pseudo_adds_elemental_damage_to_spells", + ["text"] = "Adds # to # Elemental Damage to Spells", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.pseudo_adds_fire_damage", + ["text"] = "Adds # to # Fire Damage", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.pseudo_adds_fire_damage_to_attacks", + ["text"] = "Adds # to # Fire Damage to Attacks", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.pseudo_adds_fire_damage_to_spells", + ["text"] = "Adds # to # Fire Damage to Spells", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.pseudo_adds_lightning_damage", + ["text"] = "Adds # to # Lightning Damage", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.pseudo_adds_lightning_damage_to_attacks", + ["text"] = "Adds # to # Lightning Damage to Attacks", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.pseudo_adds_lightning_damage_to_spells", + ["text"] = "Adds # to # Lightning Damage to Spells", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.pseudo_adds_physical_damage", + ["text"] = "Adds # to # Physical Damage", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.pseudo_adds_physical_damage_to_attacks", + ["text"] = "Adds # to # Physical Damage to Attacks", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.pseudo_adds_physical_damage_to_spells", + ["text"] = "Adds # to # Physical Damage to Spells", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.pseudo_tangled_implicit_tier", + ["option"] = { + ["options"] = { + { + ["id"] = 1, + ["text"] = "Lesser", + }, + { + ["id"] = 2, + ["text"] = "Greater", + }, + { + ["id"] = 3, + ["text"] = "Grand", + }, + { + ["id"] = 4, + ["text"] = "Exceptional", + }, + { + ["id"] = 5, + ["text"] = "Exquisite", + }, + { + ["id"] = 6, + ["text"] = "Perfect", + }, + }, + }, + ["text"] = "Eater of Worlds Implicit Modifier (#)", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.pseudo_has_influence_count", + ["text"] = "Has # Influences", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.pseudo_has_crusader_influence", + ["text"] = "Has Crusader Influence", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.pseudo_has_elder_influence", + ["text"] = "Has Elder Influence", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.pseudo_has_hunter_influence", + ["text"] = "Has Hunter Influence", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.pseudo_logbook_area_battleground_graves", + ["text"] = "Has Logbook Area: Battleground Graves", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.pseudo_logbook_area_bluffs", + ["text"] = "Has Logbook Area: Bluffs", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.pseudo_logbook_area_cemetery", + ["text"] = "Has Logbook Area: Cemetery", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.pseudo_logbook_area_desert_ruins", + ["text"] = "Has Logbook Area: Desert Ruins", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.pseudo_logbook_area_dried_riverbed", + ["text"] = "Has Logbook Area: Dried Riverbed", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.pseudo_logbook_area_forest_ruins", + ["text"] = "Has Logbook Area: Forest Ruins", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.pseudo_logbook_area_karui_wargraves", + ["text"] = "Has Logbook Area: Karui Wargraves", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.pseudo_logbook_area_mountainside", + ["text"] = "Has Logbook Area: Mountainside", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.pseudo_logbook_area_rotting_temple", + ["text"] = "Has Logbook Area: Rotting Temple", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.pseudo_logbook_area_sarn_slums", + ["text"] = "Has Logbook Area: Sarn Slums", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.pseudo_logbook_area_scrublands", + ["text"] = "Has Logbook Area: Scrublands", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.pseudo_logbook_area_shipwreck_reef", + ["text"] = "Has Logbook Area: Shipwreck Reef", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.pseudo_logbook_area_utzaal_outskirts", + ["text"] = "Has Logbook Area: Utzaal Outskirts", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.pseudo_logbook_area_vaal_temple", + ["text"] = "Has Logbook Area: Vaal Temple", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.pseudo_logbook_area_volcano", + ["text"] = "Has Logbook Area: Volcanic Island", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.pseudo_logbook_faction_mercenaries", + ["text"] = "Has Logbook Faction: Black Scythe Mercenaries", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.pseudo_logbook_faction_druids", + ["text"] = "Has Logbook Faction: Druids of the Broken Circle", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.pseudo_logbook_faction_knights", + ["text"] = "Has Logbook Faction: Knights of the Sun", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.pseudo_logbook_faction_order", + ["text"] = "Has Logbook Faction: Order of the Chalice", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.pseudo_has_redeemer_influence", + ["text"] = "Has Redeemer Influence", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.pseudo_temple_antechamber", + ["option"] = { + ["options"] = { + { + ["id"] = 1, + ["text"] = "Open Room", + }, + { + ["id"] = 2, + ["text"] = "Closed Room", + }, + }, + }, + ["text"] = "Has Room: Antechamber", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.pseudo_temple_sacrifice_room_3", + ["option"] = { + ["options"] = { + { + ["id"] = 1, + ["text"] = "Open Room", + }, + { + ["id"] = 2, + ["text"] = "Closed Room", + }, + }, + }, + ["text"] = "Has Room: Apex of Ascension (Tier 3)", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.pseudo_temple_apex", + ["option"] = { + ["options"] = { + { + ["id"] = 1, + ["text"] = "Open Room", + }, + { + ["id"] = 2, + ["text"] = "Closed Room", + }, + }, + }, + ["text"] = "Has Room: Apex of Atzoatl", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.pseudo_temple_weapon_room_2", + ["option"] = { + ["options"] = { + { + ["id"] = 1, + ["text"] = "Open Room", + }, + { + ["id"] = 2, + ["text"] = "Closed Room", + }, + }, + }, + ["text"] = "Has Room: Arena of Valour (Tier 2)", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.pseudo_temple_armour_room_1", + ["option"] = { + ["options"] = { + { + ["id"] = 1, + ["text"] = "Open Room", + }, + { + ["id"] = 2, + ["text"] = "Closed Room", + }, + }, + }, + ["text"] = "Has Room: Armourer's Workshop (Tier 1)", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.pseudo_temple_armour_room_2", + ["option"] = { + ["options"] = { + { + ["id"] = 1, + ["text"] = "Open Room", + }, + { + ["id"] = 2, + ["text"] = "Closed Room", + }, + }, + }, + ["text"] = "Has Room: Armoury (Tier 2)", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.pseudo_temple_cartography_room_3", + ["option"] = { + ["options"] = { + { + ["id"] = 1, + ["text"] = "Open Room", + }, + { + ["id"] = 2, + ["text"] = "Closed Room", + }, + }, + }, + ["text"] = "Has Room: Atlas of Worlds (Tier 3)", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.pseudo_temple_boss_minions_2", + ["option"] = { + ["options"] = { + { + ["id"] = 1, + ["text"] = "Open Room", + }, + { + ["id"] = 2, + ["text"] = "Closed Room", + }, + }, + }, + ["text"] = "Has Room: Automaton Lab (Tier 2)", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.pseudo_temple_banquet_hall", + ["option"] = { + ["options"] = { + { + ["id"] = 1, + ["text"] = "Open Room", + }, + { + ["id"] = 2, + ["text"] = "Closed Room", + }, + }, + }, + ["text"] = "Has Room: Banquet Hall", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.pseudo_temple_breeding_room_2", + ["option"] = { + ["options"] = { + { + ["id"] = 1, + ["text"] = "Open Room", + }, + { + ["id"] = 2, + ["text"] = "Closed Room", + }, + }, + }, + ["text"] = "Has Room: Barracks (Tier 2)", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.pseudo_temple_breach_room_2", + ["option"] = { + ["options"] = { + { + ["id"] = 1, + ["text"] = "Open Room", + }, + { + ["id"] = 2, + ["text"] = "Closed Room", + }, + }, + }, + ["text"] = "Has Room: Breach Containment Chamber (Tier 2)", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.pseudo_temple_corruption_room_2", + ["option"] = { + ["options"] = { + { + ["id"] = 1, + ["text"] = "Open Room", + }, + { + ["id"] = 2, + ["text"] = "Closed Room", + }, + }, + }, + ["text"] = "Has Room: Catalyst of Corruption (Tier 2)", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.pseudo_temple_cellar", + ["option"] = { + ["options"] = { + { + ["id"] = 1, + ["text"] = "Open Room", + }, + { + ["id"] = 2, + ["text"] = "Closed Room", + }, + }, + }, + ["text"] = "Has Room: Cellar", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.pseudo_temple_armour_room_3", + ["option"] = { + ["options"] = { + { + ["id"] = 1, + ["text"] = "Open Room", + }, + { + ["id"] = 2, + ["text"] = "Closed Room", + }, + }, + }, + ["text"] = "Has Room: Chamber of Iron (Tier 3)", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.pseudo_temple_chasm_room", + ["option"] = { + ["options"] = { + { + ["id"] = 1, + ["text"] = "Open Room", + }, + { + ["id"] = 2, + ["text"] = "Closed Room", + }, + }, + }, + ["text"] = "Has Room: Chasm", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.pseudo_temple_cloister", + ["option"] = { + ["options"] = { + { + ["id"] = 1, + ["text"] = "Open Room", + }, + { + ["id"] = 2, + ["text"] = "Closed Room", + }, + }, + }, + ["text"] = "Has Room: Cloister", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.pseudo_temple_boss_lightning_3", + ["option"] = { + ["options"] = { + { + ["id"] = 1, + ["text"] = "Open Room", + }, + { + ["id"] = 2, + ["text"] = "Closed Room", + }, + }, + }, + ["text"] = "Has Room: Conduit of Lightning (Tier 3)", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.pseudo_temple_corruption_room_1", + ["option"] = { + ["options"] = { + { + ["id"] = 1, + ["text"] = "Open Room", + }, + { + ["id"] = 2, + ["text"] = "Closed Room", + }, + }, + }, + ["text"] = "Has Room: Corruption Chamber (Tier 1)", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.pseudo_temple_strongbox_3", + ["option"] = { + ["options"] = { + { + ["id"] = 1, + ["text"] = "Open Room", + }, + { + ["id"] = 2, + ["text"] = "Closed Room", + }, + }, + }, + ["text"] = "Has Room: Court of Sealed Death (Tier 3)", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.pseudo_temple_boss_fire_3", + ["option"] = { + ["options"] = { + { + ["id"] = 1, + ["text"] = "Open Room", + }, + { + ["id"] = 2, + ["text"] = "Closed Room", + }, + }, + }, + ["text"] = "Has Room: Crucible of Flame (Tier 3)", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.pseudo_temple_poison_room_2", + ["option"] = { + ["options"] = { + { + ["id"] = 1, + ["text"] = "Open Room", + }, + { + ["id"] = 2, + ["text"] = "Closed Room", + }, + }, + }, + ["text"] = "Has Room: Cultivar Chamber (Tier 2)", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.pseudo_temple_trap_room_3", + ["option"] = { + ["options"] = { + { + ["id"] = 1, + ["text"] = "Open Room", + }, + { + ["id"] = 2, + ["text"] = "Closed Room", + }, + }, + }, + ["text"] = "Has Room: Defense Research Lab (Tier 3)", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.pseudo_temple_explosives_room_2", + ["option"] = { + ["options"] = { + { + ["id"] = 1, + ["text"] = "Open Room", + }, + { + ["id"] = 2, + ["text"] = "Closed Room", + }, + }, + }, + ["text"] = "Has Room: Demolition Lab (Tier 2)", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.pseudo_temple_gem_room_2", + ["option"] = { + ["options"] = { + { + ["id"] = 1, + ["text"] = "Open Room", + }, + { + ["id"] = 2, + ["text"] = "Closed Room", + }, + }, + }, + ["text"] = "Has Room: Department of Thaumaturgy (Tier 2)", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.pseudo_temple_gem_room_3", + ["option"] = { + ["options"] = { + { + ["id"] = 1, + ["text"] = "Open Room", + }, + { + ["id"] = 2, + ["text"] = "Closed Room", + }, + }, + }, + ["text"] = "Has Room: Doryani's Institute (Tier 3)", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.pseudo_temple_workshop_2", + ["option"] = { + ["options"] = { + { + ["id"] = 1, + ["text"] = "Open Room", + }, + { + ["id"] = 2, + ["text"] = "Closed Room", + }, + }, + }, + ["text"] = "Has Room: Engineering Department (Tier 2)", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.pseudo_temple_explosives_room_1", + ["option"] = { + ["options"] = { + { + ["id"] = 1, + ["text"] = "Open Room", + }, + { + ["id"] = 2, + ["text"] = "Closed Room", + }, + }, + }, + ["text"] = "Has Room: Explosives Room (Tier 1)", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.pseudo_temple_workshop_3", + ["option"] = { + ["options"] = { + { + ["id"] = 1, + ["text"] = "Open Room", + }, + { + ["id"] = 2, + ["text"] = "Closed Room", + }, + }, + }, + ["text"] = "Has Room: Factory (Tier 3)", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.pseudo_temple_boss_fire_1", + ["option"] = { + ["options"] = { + { + ["id"] = 1, + ["text"] = "Open Room", + }, + { + ["id"] = 2, + ["text"] = "Closed Room", + }, + }, + }, + ["text"] = "Has Room: Flame Workshop (Tier 1)", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.pseudo_temple_gem_room_1", + ["option"] = { + ["options"] = { + { + ["id"] = 1, + ["text"] = "Open Room", + }, + { + ["id"] = 2, + ["text"] = "Closed Room", + }, + }, + }, + ["text"] = "Has Room: Gemcutter's Workshop (Tier 1)", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.pseudo_temple_trinket_room_3", + ["option"] = { + ["options"] = { + { + ["id"] = 1, + ["text"] = "Open Room", + }, + { + ["id"] = 2, + ["text"] = "Closed Room", + }, + }, + }, + ["text"] = "Has Room: Glittering Halls (Tier 3)", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.pseudo_temple_breeding_room_1", + ["option"] = { + ["options"] = { + { + ["id"] = 1, + ["text"] = "Open Room", + }, + { + ["id"] = 2, + ["text"] = "Closed Room", + }, + }, + }, + ["text"] = "Has Room: Guardhouse (Tier 1)", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.pseudo_temple_weapon_room_3", + ["option"] = { + ["options"] = { + { + ["id"] = 1, + ["text"] = "Open Room", + }, + { + ["id"] = 2, + ["text"] = "Closed Room", + }, + }, + }, + ["text"] = "Has Room: Hall of Champions (Tier 3)", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.pseudo_temple_legion_2", + ["option"] = { + ["options"] = { + { + ["id"] = 1, + ["text"] = "Open Room", + }, + { + ["id"] = 2, + ["text"] = "Closed Room", + }, + }, + }, + ["text"] = "Has Room: Hall of Heroes (Tier 2)", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.pseudo_temple_legion_3", + ["option"] = { + ["options"] = { + { + ["id"] = 1, + ["text"] = "Open Room", + }, + { + ["id"] = 2, + ["text"] = "Closed Room", + }, + }, + }, + ["text"] = "Has Room: Hall of Legends (Tier 3)", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.pseudo_temple_strongbox_2", + ["option"] = { + ["options"] = { + { + ["id"] = 1, + ["text"] = "Open Room", + }, + { + ["id"] = 2, + ["text"] = "Closed Room", + }, + }, + }, + ["text"] = "Has Room: Hall of Locks (Tier 2)", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.pseudo_temple_queens_chambers_2", + ["option"] = { + ["options"] = { + { + ["id"] = 1, + ["text"] = "Open Room", + }, + { + ["id"] = 2, + ["text"] = "Closed Room", + }, + }, + }, + ["text"] = "Has Room: Hall of Lords (Tier 2)", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.pseudo_temple_legion_1", + ["option"] = { + ["options"] = { + { + ["id"] = 1, + ["text"] = "Open Room", + }, + { + ["id"] = 2, + ["text"] = "Closed Room", + }, + }, + }, + ["text"] = "Has Room: Hall of Mettle (Tier 1)", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.pseudo_temple_sacrifice_room_2", + ["option"] = { + ["options"] = { + { + ["id"] = 1, + ["text"] = "Open Room", + }, + { + ["id"] = 2, + ["text"] = "Closed Room", + }, + }, + }, + ["text"] = "Has Room: Hall of Offerings (Tier 2)", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.pseudo_temple_breeding_room_3", + ["option"] = { + ["options"] = { + { + ["id"] = 1, + ["text"] = "Open Room", + }, + { + ["id"] = 2, + ["text"] = "Closed Room", + }, + }, + }, + ["text"] = "Has Room: Hall of War (Tier 3)", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.pseudo_temple_halls", + ["option"] = { + ["options"] = { + { + ["id"] = 1, + ["text"] = "Open Room", + }, + { + ["id"] = 2, + ["text"] = "Closed Room", + }, + }, + }, + ["text"] = "Has Room: Halls", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.pseudo_temple_boss_minions_1", + ["option"] = { + ["options"] = { + { + ["id"] = 1, + ["text"] = "Open Room", + }, + { + ["id"] = 2, + ["text"] = "Closed Room", + }, + }, + }, + ["text"] = "Has Room: Hatchery (Tier 1)", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.pseudo_temple_breach_room_3", + ["option"] = { + ["options"] = { + { + ["id"] = 1, + ["text"] = "Open Room", + }, + { + ["id"] = 2, + ["text"] = "Closed Room", + }, + }, + }, + ["text"] = "Has Room: House of the Others (Tier 3)", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.pseudo_temple_storm_room_2", + ["option"] = { + ["options"] = { + { + ["id"] = 1, + ["text"] = "Open Room", + }, + { + ["id"] = 2, + ["text"] = "Closed Room", + }, + }, + }, + ["text"] = "Has Room: Hurricane Engine (Tier 2)", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.pseudo_temple_boss_minions_3", + ["option"] = { + ["options"] = { + { + ["id"] = 1, + ["text"] = "Open Room", + }, + { + ["id"] = 2, + ["text"] = "Closed Room", + }, + }, + }, + ["text"] = "Has Room: Hybridisation Chamber (Tier 3)", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.pseudo_temple_trinket_room_1", + ["option"] = { + ["options"] = { + { + ["id"] = 1, + ["text"] = "Open Room", + }, + { + ["id"] = 2, + ["text"] = "Closed Room", + }, + }, + }, + ["text"] = "Has Room: Jeweller's Workshop (Tier 1)", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.pseudo_temple_trinket_room_2", + ["option"] = { + ["options"] = { + { + ["id"] = 1, + ["text"] = "Open Room", + }, + { + ["id"] = 2, + ["text"] = "Closed Room", + }, + }, + }, + ["text"] = "Has Room: Jewellery Forge (Tier 2)", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.pseudo_temple_boss_lightning_1", + ["option"] = { + ["options"] = { + { + ["id"] = 1, + ["text"] = "Open Room", + }, + { + ["id"] = 2, + ["text"] = "Closed Room", + }, + }, + }, + ["text"] = "Has Room: Lightning Workshop (Tier 1)", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.pseudo_temple_corruption_room_3", + ["option"] = { + ["options"] = { + { + ["id"] = 1, + ["text"] = "Open Room", + }, + { + ["id"] = 2, + ["text"] = "Closed Room", + }, + }, + }, + ["text"] = "Has Room: Locus of Corruption (Tier 3)", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.pseudo_temple_chests_3", + ["option"] = { + ["options"] = { + { + ["id"] = 1, + ["text"] = "Open Room", + }, + { + ["id"] = 2, + ["text"] = "Closed Room", + }, + }, + }, + ["text"] = "Has Room: Museum of Artefacts (Tier 3)", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.pseudo_temple_cartography_room_2", + ["option"] = { + ["options"] = { + { + ["id"] = 1, + ["text"] = "Open Room", + }, + { + ["id"] = 2, + ["text"] = "Closed Room", + }, + }, + }, + ["text"] = "Has Room: Office of Cartography (Tier 2)", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.pseudo_temple_boss_fire_2", + ["option"] = { + ["options"] = { + { + ["id"] = 1, + ["text"] = "Open Room", + }, + { + ["id"] = 2, + ["text"] = "Closed Room", + }, + }, + }, + ["text"] = "Has Room: Omnitect Forge (Tier 2)", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.pseudo_temple_boss_lightning_2", + ["option"] = { + ["options"] = { + { + ["id"] = 1, + ["text"] = "Open Room", + }, + { + ["id"] = 2, + ["text"] = "Closed Room", + }, + }, + }, + ["text"] = "Has Room: Omnitect Reactor Plant (Tier 2)", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.pseudo_temple_passageways", + ["option"] = { + ["options"] = { + { + ["id"] = 1, + ["text"] = "Open Room", + }, + { + ["id"] = 2, + ["text"] = "Closed Room", + }, + }, + }, + ["text"] = "Has Room: Passageways", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.pseudo_temple_the_pits", + ["option"] = { + ["options"] = { + { + ["id"] = 1, + ["text"] = "Open Room", + }, + { + ["id"] = 2, + ["text"] = "Closed Room", + }, + }, + }, + ["text"] = "Has Room: Pits", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.pseudo_temple_poison_room_1", + ["option"] = { + ["options"] = { + { + ["id"] = 1, + ["text"] = "Open Room", + }, + { + ["id"] = 2, + ["text"] = "Closed Room", + }, + }, + }, + ["text"] = "Has Room: Poison Garden (Tier 1)", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.pseudo_temple_healing_room_1", + ["option"] = { + ["options"] = { + { + ["id"] = 1, + ["text"] = "Open Room", + }, + { + ["id"] = 2, + ["text"] = "Closed Room", + }, + }, + }, + ["text"] = "Has Room: Pools of Restoration (Tier 1)", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.pseudo_temple_queens_chambers_1", + ["option"] = { + ["options"] = { + { + ["id"] = 1, + ["text"] = "Open Room", + }, + { + ["id"] = 2, + ["text"] = "Closed Room", + }, + }, + }, + ["text"] = "Has Room: Royal Meeting Room (Tier 1)", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.pseudo_temple_sacrifice_room_1", + ["option"] = { + ["options"] = { + { + ["id"] = 1, + ["text"] = "Open Room", + }, + { + ["id"] = 2, + ["text"] = "Closed Room", + }, + }, + }, + ["text"] = "Has Room: Sacrificial Chamber (Tier 1)", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.pseudo_temple_torment_3", + ["option"] = { + ["options"] = { + { + ["id"] = 1, + ["text"] = "Open Room", + }, + { + ["id"] = 2, + ["text"] = "Closed Room", + }, + }, + }, + ["text"] = "Has Room: Sadist's Den (Tier 3)", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.pseudo_temple_healing_room_3", + ["option"] = { + ["options"] = { + { + ["id"] = 1, + ["text"] = "Open Room", + }, + { + ["id"] = 2, + ["text"] = "Closed Room", + }, + }, + }, + ["text"] = "Has Room: Sanctum of Immortality (Tier 3)", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.pseudo_temple_empowering_room_2", + ["option"] = { + ["options"] = { + { + ["id"] = 1, + ["text"] = "Open Room", + }, + { + ["id"] = 2, + ["text"] = "Closed Room", + }, + }, + }, + ["text"] = "Has Room: Sanctum of Unity (Tier 2)", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.pseudo_temple_healing_room_2", + ["option"] = { + ["options"] = { + { + ["id"] = 1, + ["text"] = "Open Room", + }, + { + ["id"] = 2, + ["text"] = "Closed Room", + }, + }, + }, + ["text"] = "Has Room: Sanctum of Vitality (Tier 2)", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.pseudo_temple_empowering_room_1", + ["option"] = { + ["options"] = { + { + ["id"] = 1, + ["text"] = "Open Room", + }, + { + ["id"] = 2, + ["text"] = "Closed Room", + }, + }, + }, + ["text"] = "Has Room: Shrine of Empowerment (Tier 1)", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.pseudo_temple_explosives_room_3", + ["option"] = { + ["options"] = { + { + ["id"] = 1, + ["text"] = "Open Room", + }, + { + ["id"] = 2, + ["text"] = "Closed Room", + }, + }, + }, + ["text"] = "Has Room: Shrine of Unmaking (Tier 3)", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.pseudo_temple_weapon_room_1", + ["option"] = { + ["options"] = { + { + ["id"] = 1, + ["text"] = "Open Room", + }, + { + ["id"] = 2, + ["text"] = "Closed Room", + }, + }, + }, + ["text"] = "Has Room: Sparring Room (Tier 1)", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.pseudo_temple_breach_room_1", + ["option"] = { + ["options"] = { + { + ["id"] = 1, + ["text"] = "Open Room", + }, + { + ["id"] = 2, + ["text"] = "Closed Room", + }, + }, + }, + ["text"] = "Has Room: Splinter Research Lab (Tier 1)", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.pseudo_temple_chests_1", + ["option"] = { + ["options"] = { + { + ["id"] = 1, + ["text"] = "Open Room", + }, + { + ["id"] = 2, + ["text"] = "Closed Room", + }, + }, + }, + ["text"] = "Has Room: Storage Room (Tier 1)", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.pseudo_temple_storm_room_3", + ["option"] = { + ["options"] = { + { + ["id"] = 1, + ["text"] = "Open Room", + }, + { + ["id"] = 2, + ["text"] = "Closed Room", + }, + }, + }, + ["text"] = "Has Room: Storm of Corruption (Tier 3)", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.pseudo_temple_strongbox_1", + ["option"] = { + ["options"] = { + { + ["id"] = 1, + ["text"] = "Open Room", + }, + { + ["id"] = 2, + ["text"] = "Closed Room", + }, + }, + }, + ["text"] = "Has Room: Strongbox Chamber (Tier 1)", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.pseudo_temple_cartography_room_1", + ["option"] = { + ["options"] = { + { + ["id"] = 1, + ["text"] = "Open Room", + }, + { + ["id"] = 2, + ["text"] = "Closed Room", + }, + }, + }, + ["text"] = "Has Room: Surveyor's Study (Tier 1)", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.pseudo_temple_storm_room_1", + ["option"] = { + ["options"] = { + { + ["id"] = 1, + ["text"] = "Open Room", + }, + { + ["id"] = 2, + ["text"] = "Closed Room", + }, + }, + }, + ["text"] = "Has Room: Tempest Generator (Tier 1)", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.pseudo_temple_trap_room_2", + ["option"] = { + ["options"] = { + { + ["id"] = 1, + ["text"] = "Open Room", + }, + { + ["id"] = 2, + ["text"] = "Closed Room", + }, + }, + }, + ["text"] = "Has Room: Temple Defense Workshop (Tier 2)", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.pseudo_temple_empowering_room_3", + ["option"] = { + ["options"] = { + { + ["id"] = 1, + ["text"] = "Open Room", + }, + { + ["id"] = 2, + ["text"] = "Closed Room", + }, + }, + }, + ["text"] = "Has Room: Temple Nexus (Tier 3)", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.pseudo_temple_queens_chambers_3", + ["option"] = { + ["options"] = { + { + ["id"] = 1, + ["text"] = "Open Room", + }, + { + ["id"] = 2, + ["text"] = "Closed Room", + }, + }, + }, + ["text"] = "Has Room: Throne of Atziri (Tier 3)", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.pseudo_temple_tombs", + ["option"] = { + ["options"] = { + { + ["id"] = 1, + ["text"] = "Open Room", + }, + { + ["id"] = 2, + ["text"] = "Closed Room", + }, + }, + }, + ["text"] = "Has Room: Tombs", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.pseudo_temple_torment_1", + ["option"] = { + ["options"] = { + { + ["id"] = 1, + ["text"] = "Open Room", + }, + { + ["id"] = 2, + ["text"] = "Closed Room", + }, + }, + }, + ["text"] = "Has Room: Torment Cells (Tier 1)", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.pseudo_temple_torment_2", + ["option"] = { + ["options"] = { + { + ["id"] = 1, + ["text"] = "Open Room", + }, + { + ["id"] = 2, + ["text"] = "Closed Room", + }, + }, + }, + ["text"] = "Has Room: Torture Cages (Tier 2)", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.pseudo_temple_poison_room_3", + ["option"] = { + ["options"] = { + { + ["id"] = 1, + ["text"] = "Open Room", + }, + { + ["id"] = 2, + ["text"] = "Closed Room", + }, + }, + }, + ["text"] = "Has Room: Toxic Grove (Tier 3)", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.pseudo_temple_trap_room_1", + ["option"] = { + ["options"] = { + { + ["id"] = 1, + ["text"] = "Open Room", + }, + { + ["id"] = 2, + ["text"] = "Closed Room", + }, + }, + }, + ["text"] = "Has Room: Trap Workshop (Tier 1)", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.pseudo_temple_currency_vault_2", + ["option"] = { + ["options"] = { + { + ["id"] = 1, + ["text"] = "Open Room", + }, + { + ["id"] = 2, + ["text"] = "Closed Room", + }, + }, + }, + ["text"] = "Has Room: Treasury (Tier 2)", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.pseudo_temple_tunnels", + ["option"] = { + ["options"] = { + { + ["id"] = 1, + ["text"] = "Open Room", + }, + { + ["id"] = 2, + ["text"] = "Closed Room", + }, + }, + }, + ["text"] = "Has Room: Tunnels", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.pseudo_temple_currency_vault_1", + ["option"] = { + ["options"] = { + { + ["id"] = 1, + ["text"] = "Open Room", + }, + { + ["id"] = 2, + ["text"] = "Closed Room", + }, + }, + }, + ["text"] = "Has Room: Vault (Tier 1)", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.pseudo_temple_chests_2", + ["option"] = { + ["options"] = { + { + ["id"] = 1, + ["text"] = "Open Room", + }, + { + ["id"] = 2, + ["text"] = "Closed Room", + }, + }, + }, + ["text"] = "Has Room: Warehouses (Tier 2)", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.pseudo_temple_currency_vault_3", + ["option"] = { + ["options"] = { + { + ["id"] = 1, + ["text"] = "Open Room", + }, + { + ["id"] = 2, + ["text"] = "Closed Room", + }, + }, + }, + ["text"] = "Has Room: Wealth of the Vaal (Tier 3)", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.pseudo_temple_workshop_1", + ["option"] = { + ["options"] = { + { + ["id"] = 1, + ["text"] = "Open Room", + }, + { + ["id"] = 2, + ["text"] = "Closed Room", + }, + }, + }, + ["text"] = "Has Room: Workshop (Tier 1)", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.pseudo_has_shaper_influence", + ["text"] = "Has Shaper Influence", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.pseudo_has_warlord_influence", + ["text"] = "Has Warlord Influence", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.pseudo_lake_number_of_islands", + ["text"] = "Mirrored Tablet has # Islands", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.pseudo_map_more_currency_drops", + ["text"] = "More Currency: #%", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.pseudo_map_more_card_drops", + ["text"] = "More Divination Cards: #%", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.pseudo_map_more_map_drops", + ["text"] = "More Maps: #%", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.pseudo_map_more_scarab_drops", + ["text"] = "More Scarabs: #%", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.pseudo_ritual_other_monsters", + ["text"] = "Non-Unique Monsters (Blood-Filled Vessel): #", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.pseudo_jewellery_attack_quality", + ["text"] = "Quality (Attack Modifiers): #%", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.pseudo_jewellery_attribute_quality", + ["text"] = "Quality (Attribute Modifiers): #%", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.pseudo_jewellery_caster_quality", + ["text"] = "Quality (Caster Modifiers): #%", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.pseudo_jewellery_critical_quality", + ["text"] = "Quality (Critical Modifiers): #%", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.pseudo_map_quality_currency", + ["text"] = "Quality (Currency): #%", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.pseudo_jewellery_defense_quality", + ["text"] = "Quality (Defence Modifiers): #%", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.pseudo_map_quality_cards", + ["text"] = "Quality (Divination Cards): #%", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.pseudo_jewellery_elemental_quality", + ["text"] = "Quality (Elemental Damage Modifiers): #%", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.pseudo_jewellery_resource_quality", + ["text"] = "Quality (Life and Mana Modifiers): #%", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.pseudo_map_quality_pack_size", + ["text"] = "Quality (Pack Size): #%", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.pseudo_jewellery_physical_chaos_quality", + ["text"] = "Quality (Physical and Chaos Damage Modifiers): #%", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.pseudo_jewellery_prefix_quality", + ["text"] = "Quality (Prefix Modifiers): #%", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.pseudo_map_quality_rarity", + ["text"] = "Quality (Rarity): #%", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.pseudo_jewellery_resistance_quality", + ["text"] = "Quality (Resistance Modifiers): #%", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.pseudo_map_quality_scarabs", + ["text"] = "Quality (Scarabs): #%", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.pseudo_jewellery_speed_quality", + ["text"] = "Quality (Speed Modifiers): #%", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.pseudo_jewellery_suffix_quality", + ["text"] = "Quality (Suffix Modifiers): #%", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.lake_38892", + ["text"] = "Reflection of Abyss (Difficulty #)", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.lake_48307", + ["text"] = "Reflection of Ambush (Difficulty #)", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.lake_40794", + ["text"] = "Reflection of Angling (Difficulty #)", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.lake_40031", + ["text"] = "Reflection of Azurite (Difficulty #)", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.lake_55569", + ["text"] = "Reflection of Bestiary (Difficulty #)", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.lake_62572", + ["text"] = "Reflection of Breach (Difficulty #)", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.lake_29096", + ["text"] = "Reflection of Brutality (Difficulty #)", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.lake_35395", + ["text"] = "Reflection of Camaraderie (Difficulty #)", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.lake_57850", + ["text"] = "Reflection of Catalysis (Difficulty #)", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.lake_50834", + ["text"] = "Reflection of Chaos (Difficulty #)", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.lake_1931", + ["text"] = "Reflection of Conflict (Difficulty #)", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.lake_34457", + ["text"] = "Reflection of Darkness (Difficulty #)", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.lake_22138", + ["text"] = "Reflection of Delirium (Difficulty #)", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.lake_18737", + ["text"] = "Reflection of Delve (Difficulty #)", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.lake_28500", + ["text"] = "Reflection of Demonfire (Difficulty #)", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.lake_63412", + ["text"] = "Reflection of Domination (Difficulty #)", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.lake_44399", + ["text"] = "Reflection of Entrapment (Difficulty #)", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.lake_49862", + ["text"] = "Reflection of Essence (Difficulty #)", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.lake_55676", + ["text"] = "Reflection of Experimentation (Difficulty #)", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.lake_42468", + ["text"] = "Reflection of Flame (Difficulty #)", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.lake_49488", + ["text"] = "Reflection of Fractured Dimensions (Difficulty #)", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.lake_38110", + ["text"] = "Reflection of Frost (Difficulty #)", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.lake_25480", + ["text"] = "Reflection of Guilt (Difficulty #)", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.lake_10363", + ["text"] = "Reflection of Imprisonment (Difficulty #)", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.lake_36591", + ["text"] = "Reflection of Kalandra (Difficulty #)", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.lake_403", + ["text"] = "Reflection of Legion (Difficulty #)", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.lake_3699", + ["text"] = "Reflection of Metamorph (Difficulty #)", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.lake_24451", + ["text"] = "Reflection of Occultism (Difficulty #)", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.lake_50846", + ["text"] = "Reflection of Paradise (Difficulty #)", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.lake_27678", + ["text"] = "Reflection of Perverted Faith (Difficulty #)", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.lake_7674", + ["text"] = "Reflection of Phaaryl (Difficulty #)", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.lake_25049", + ["text"] = "Reflection of Possession (Difficulty #)", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.lake_35950", + ["text"] = "Reflection of Power (Difficulty #)", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.lake_62360", + ["text"] = "Reflection of Scourge (Difficulty #)", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.lake_32968", + ["text"] = "Reflection of Stasis (Difficulty #)", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.lake_45086", + ["text"] = "Reflection of Sulphite (Difficulty #)", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.lake_26813", + ["text"] = "Reflection of Thralldom (Difficulty #)", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.lake_53950", + ["text"] = "Reflection of Torment (Difficulty #)", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.lake_60981", + ["text"] = "Reflection of Tyranny (Difficulty #)", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.lake_9662", + ["text"] = "Reflection of the Black Scythe (Difficulty #)", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.lake_62935", + ["text"] = "Reflection of the Breachlord (Difficulty #)", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.lake_43128", + ["text"] = "Reflection of the Broken Circle (Difficulty #)", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.lake_64561", + ["text"] = "Reflection of the Chalice (Difficulty #)", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.lake_57101", + ["text"] = "Reflection of the Chasm (Difficulty #)", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.lake_27117", + ["text"] = "Reflection of the Dream (Difficulty #)", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.lake_37203", + ["text"] = "Reflection of the Harbingers (Difficulty #)", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.lake_18816", + ["text"] = "Reflection of the Hunter (Difficulty #)", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.lake_34796", + ["text"] = "Reflection of the Monolith (Difficulty #)", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.lake_24232", + ["text"] = "Reflection of the Nightmare (Difficulty #)", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.lake_2745", + ["text"] = "Reflection of the Storm (Difficulty #)", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.lake_60034", + ["text"] = "Reflection of the Sun (Difficulty #)", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.lake_46772", + ["text"] = "Reflection of the Trove (Difficulty #)", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.lake_29224", + ["text"] = "Reflection of the Wilderness (Difficulty #)", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.pseudo_searing_implicit_tier", + ["option"] = { + ["options"] = { + { + ["id"] = 1, + ["text"] = "Lesser", + }, + { + ["id"] = 2, + ["text"] = "Greater", + }, + { + ["id"] = 3, + ["text"] = "Grand", + }, + { + ["id"] = 4, + ["text"] = "Exceptional", + }, + { + ["id"] = 5, + ["text"] = "Exquisite", + }, + { + ["id"] = 6, + ["text"] = "Perfect", + }, + }, + }, + ["text"] = "Searing Exarch Implicit Modifier (#)", + ["type"] = "pseudo", + }, + { + ["id"] = "pseudo.pseudo_ritual_unique_monsters", + ["text"] = "Unique Monsters (Blood-Filled Vessel): #", + ["type"] = "pseudo", + }, + }, + ["id"] = "pseudo", + ["label"] = "Pseudo", + }, + { + ["entries"] = { + { + ["id"] = "explicit.stat_4079888060", + ["text"] = "# Added Passive Skills are Jewel Sockets", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1528823952", + ["text"] = "# Cold Damage taken per second per Frenzy Charge while moving", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_172076472", + ["text"] = "# Dexterity per 1 Dexterity on Allocated Passives in Radius", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1920234902", + ["text"] = "# Fire Damage taken per second per Endurance Charge if you've been Hit Recently", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3228973398", + ["text"] = "# Flask Charges recovered every 3 seconds", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1070347065", + ["text"] = "# Intelligence per 1 Intelligence on Allocated Passives in Radius", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1269609669", + ["text"] = "# Life gained on Kill per Frenzy Charge", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_762600725", + ["text"] = "# Life gained when you Block", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1964333391", + ["text"] = "# Lightning Damage taken per second per Power Charge if your Skills have dealt a Critical Strike Recently", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2122183138", + ["text"] = "# Mana gained when you Block", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1209237645", + ["text"] = "# Maximum Void Charges", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4176970656", + ["text"] = "# Physical Damage taken on Minion Death", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_552705983", + ["text"] = "# Strength per 1 Strength on Allocated Passives in Radius", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_30342650", + ["text"] = "# to # Added Attack Chaos Damage per 100 Maximum Mana", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3478075311", + ["text"] = "# to # Added Chaos Damage with Bow Attacks", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4191067677", + ["text"] = "# to # Added Chaos Damage with Claw Attacks", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3248691197", + ["text"] = "# to # Added Chaos Damage with Dagger Attacks", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3648858570", + ["text"] = "# to # Added Cold Damage per Frenzy Charge", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1782176131", + ["text"] = "# to # Added Cold Damage with Axe Attacks", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_215124030", + ["text"] = "# to # Added Cold Damage with Bow Attacks", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2848646243", + ["text"] = "# to # Added Cold Damage with Claw Attacks", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1263342750", + ["text"] = "# to # Added Cold Damage with Dagger Attacks", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_187418672", + ["text"] = "# to # Added Cold Damage with Mace or Sceptre Attacks", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1261958804", + ["text"] = "# to # Added Cold Damage with Staff Attacks", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_972201717", + ["text"] = "# to # Added Cold Damage with Sword Attacks", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2383797932", + ["text"] = "# to # Added Cold Damage with Wand Attacks", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2461965653", + ["text"] = "# to # Added Fire Damage with Axe Attacks", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3120164895", + ["text"] = "# to # Added Fire Damage with Bow Attacks", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2154290807", + ["text"] = "# to # Added Fire Damage with Claw Attacks", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1910361436", + ["text"] = "# to # Added Fire Damage with Dagger Attacks", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3146788701", + ["text"] = "# to # Added Fire Damage with Mace or Sceptre Attacks", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3220927448", + ["text"] = "# to # Added Fire Damage with Staff Attacks", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_601249293", + ["text"] = "# to # Added Fire Damage with Sword Attacks", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_87098247", + ["text"] = "# to # Added Fire Damage with Wand Attacks", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1582068183", + ["text"] = "# to # Added Lightning Damage with Axe Attacks", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1040269876", + ["text"] = "# to # Added Lightning Damage with Bow Attacks", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4231842891", + ["text"] = "# to # Added Lightning Damage with Claw Attacks", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3479683016", + ["text"] = "# to # Added Lightning Damage with Dagger Attacks", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2096159630", + ["text"] = "# to # Added Lightning Damage with Mace or Sceptre Attacks", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3212481075", + ["text"] = "# to # Added Lightning Damage with Staff Attacks", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1237708713", + ["text"] = "# to # Added Lightning Damage with Sword Attacks", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2787733863", + ["text"] = "# to # Added Lightning Damage with Wand Attacks", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_311030839", + ["text"] = "# to # Added Physical Damage with Axe Attacks", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1760576992", + ["text"] = "# to # Added Physical Damage with Bow Attacks", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3303015", + ["text"] = "# to # Added Physical Damage with Claw Attacks", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1298238534", + ["text"] = "# to # Added Physical Damage with Dagger Attacks", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3882662078", + ["text"] = "# to # Added Physical Damage with Mace or Sceptre Attacks", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_69898010", + ["text"] = "# to # Added Physical Damage with Staff Attacks", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1040189894", + ["text"] = "# to # Added Physical Damage with Sword Attacks", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_133683091", + ["text"] = "# to # Added Physical Damage with Wand Attacks", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1865428306", + ["text"] = "# to # Added Spell Chaos Damage while Dual Wielding", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1181129483", + ["text"] = "# to # Added Spell Chaos Damage while holding a Shield", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1743759111", + ["text"] = "# to # Added Spell Chaos Damage while wielding a Two Handed Weapon", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3376452528", + ["text"] = "# to # Added Spell Cold Damage while Dual Wielding", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2671663397", + ["text"] = "# to # Added Spell Cold Damage while holding a Shield", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2464689927", + ["text"] = "# to # Added Spell Cold Damage while wielding a Two Handed Weapon", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_662691280", + ["text"] = "# to # Added Spell Fire Damage while Dual Wielding", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_44182350", + ["text"] = "# to # Added Spell Fire Damage while holding a Shield", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2135335407", + ["text"] = "# to # Added Spell Fire Damage while wielding a Two Handed Weapon", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3352373076", + ["text"] = "# to # Added Spell Lightning Damage while Dual Wielding", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1801889979", + ["text"] = "# to # Added Spell Lightning Damage while holding a Shield", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2398198236", + ["text"] = "# to # Added Spell Lightning Damage while wielding a Two Handed Weapon", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4255924189", + ["text"] = "# to # Added Spell Physical Damage while Dual Wielding", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3954157711", + ["text"] = "# to # Added Spell Physical Damage while holding a Shield", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2921084940", + ["text"] = "# to # Added Spell Physical Damage while wielding a Two Handed Weapon", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1073447019", + ["text"] = "# to # Fire Damage per Endurance Charge", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1917107159", + ["text"] = "# to # Lightning Damage per Power Charge", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_254155233", + ["text"] = "# to # Spell Lightning Damage per 10 Intelligence", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3938603844", + ["text"] = "# to # added Cold Damage Players and their Minions have # to # added Cold Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_190652296", + ["text"] = "# to # added Fire Damage Players and their Minions have # to # added Fire Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_165402179", + ["text"] = "# to # added Fire Damage against Burning Enemies", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_753801406", + ["text"] = "# to # added Fire Damage per 100 of Maximum Life or Maximum Mana, whichever is lower", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2697534676", + ["text"] = "# to # added Lightning Damage Players and their Minions have # to # added Lightning Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1563396443", + ["text"] = "# to # added Physical Damage Players and their Minions have # to # added Physical Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1479533453", + ["text"] = "# uses remaining", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1087710344", + ["text"] = "#% Chance for Traps to Trigger an additional time", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2312652600", + ["text"] = "#% Chance to Avoid being Stunned during Effect", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2530372417", + ["text"] = "#% Chance to Block Attack Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_561307714", + ["text"] = "#% Chance to Block Spell Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2881111359", + ["text"] = "#% Chance to Block Spell Damage (Legacy)", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4070519133", + ["text"] = "#% Chance to Block Spell Damage while on Low Life", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3212461220", + ["text"] = "#% Chance to Cause Monster to Flee on Block", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1785942004", + ["text"] = "#% Chance to Trigger Level 18 Summon Spectral Wolf on Kill", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2072206041", + ["text"] = "#% Chance to cause Bleeding Enemies to Flee on hit", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2221570601", + ["text"] = "#% Global chance to Blind Enemies on hit", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_962725504", + ["text"] = "#% additional Elemental Resistances during Effect", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3771516363", + ["text"] = "#% additional Physical Damage Reduction", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_287491423", + ["text"] = "#% additional Physical Damage Reduction against Abyssal Monsters", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2693266036", + ["text"] = "#% additional Physical Damage Reduction during any Flask Effect", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3837366401", + ["text"] = "#% additional Physical Damage Reduction from Hits per Siphoning Charge", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3603666270", + ["text"] = "#% additional Physical Damage Reduction if you weren't Damaged by a Hit Recently", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2519848087", + ["text"] = "#% additional Physical Damage Reduction per 10 Strength on Allocated Passives in Radius", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1226049915", + ["text"] = "#% additional Physical Damage Reduction per Frenzy Charge", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3986347319", + ["text"] = "#% additional Physical Damage Reduction per Power Charge", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3753650187", + ["text"] = "#% additional Physical Damage Reduction while Focused", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1873457881", + ["text"] = "#% additional Physical Damage Reduction while affected by Determination", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3163114700", + ["text"] = "#% additional Physical Damage Reduction while affected by Herald of Purity", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2713357573", + ["text"] = "#% additional Physical Damage Reduction while moving", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2181129193", + ["text"] = "#% additional Physical Damage Reduction while stationary", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3897649208", + ["text"] = "#% chance for Amulets to drop as Anointed Talismans instead in your Maps", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1560880986", + ["text"] = "#% chance for Bleeding inflicted with this Weapon to deal 100% more Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1260718722", + ["text"] = "#% chance for Blight Chests to contain an additional Reward", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_204458505", + ["text"] = "#% chance for Elemental Resistances to count as being 90% against Enemy Hits", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_762154651", + ["text"] = "#% chance for Energy Shield Recharge to start when you Block", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1618482990", + ["text"] = "#% chance for Energy Shield Recharge to start when you Kill an Enemy", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3410306164", + ["text"] = "#% chance for Energy Shield Recharge to start when you Suppress Spell Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3853996752", + ["text"] = "#% chance for Energy Shield Recharge to start when you use a Skill", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1825047276", + ["text"] = "#% chance for Exalted Orbs to drop as 3 Exalted Orbs instead in your Maps", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_301104070", + ["text"] = "#% chance for Flasks to gain a Charge when you take a Critical Strike", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_311641062", + ["text"] = "#% chance for Flasks you use to not consume Charges", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3927388937", + ["text"] = "#% chance for Impales on Enemies you Kill to Reflect Damage to surrounding Enemies", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_617548179", + ["text"] = "#% chance for Incursion Architects in your Maps to be Possessed by a Tormented Spirit", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_438351187", + ["text"] = "#% chance for Kills to count twice for Rampage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3856820324", + ["text"] = "#% chance for Orbs of Annulment to drop as 3 Orbs of Annulment instead in your Maps", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2523146878", + ["text"] = "#% chance for Poisons inflicted with this Weapon to deal 100% more Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_768124628", + ["text"] = "#% chance for Poisons inflicted with this Weapon to deal 300% more Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3097694855", + ["text"] = "#% chance for Rare Monsters to Fracture on death", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4287089865", + ["text"] = "#% chance for Red Beasts in your Maps to be the less common of two varieties", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4270449170", + ["text"] = "#% chance for Rewards from Metamorphs in your Maps to be Doubled", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2920230984", + ["text"] = "#% chance for Slain monsters to drop an additional Scroll of Wisdom", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2043747322", + ["text"] = "#% chance for Spell Hits against you to inflict Poison", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_407036985", + ["text"] = "#% chance for Timeless Splinters to drop as Timeless Emblems instead in your Maps", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3885184473", + ["text"] = "#% chance for one Monster in each of your Maps to drop an additional connected Map", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3438840900", + ["text"] = "#% chance for your Maps to attract Beyond Demons", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2966079414", + ["text"] = "#% chance in Heists for Basic Currency drops to be Duplicated", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2106095595", + ["text"] = "#% chance in Heists for Chaos Orbs to drop as Divine Orbs instead", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_779592324", + ["text"] = "#% chance in Heists for Chaos Orbs to drop as Exalted Orbs instead", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1545361315", + ["text"] = "#% chance in Heists for Chromatic Orbs to drop as Jeweller's Orbs instead", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3213734550", + ["text"] = "#% chance in Heists for Chromatic Orbs to drop as Orbs of Fusing instead", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_530889264", + ["text"] = "#% chance in Heists for Items to drop Corrupted", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_701843516", + ["text"] = "#% chance in Heists for Items to drop Identified", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3892832319", + ["text"] = "#% chance in Heists for Items to drop fully linked", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3733808322", + ["text"] = "#% chance in Heists for Items to drop with Elder Influence", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1494306466", + ["text"] = "#% chance in Heists for Items to drop with Shaper Influence", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_986381677", + ["text"] = "#% chance in Heists for Items to drop with an additional Socket", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_533969887", + ["text"] = "#% chance in Heists for Jeweller's Orbs to drop as Orbs of Fusing instead", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_844812352", + ["text"] = "#% chance in Heists for Orbs of Alteration to drop as Chaos Orbs instead", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1122682019", + ["text"] = "#% chance in Heists for Orbs of Alteration to drop as Orbs of Alchemy instead", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1290611485", + ["text"] = "#% chance in Heists for Orbs of Alteration to drop as Regal Orbs instead", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2559492014", + ["text"] = "#% chance in Heists for Orbs of Augmentation to drop as Chaos Orbs instead", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_306037665", + ["text"] = "#% chance in Heists for Orbs of Augmentation to drop as Orbs of Alchemy instead", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1071676747", + ["text"] = "#% chance in Heists for Orbs of Augmentation to drop as Regal Orbs instead", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_559827707", + ["text"] = "#% chance in Heists for Orbs of Regret to drop as Orbs of Annulment instead", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2845459668", + ["text"] = "#% chance in Heists for Orbs of Scouring to drop as Orbs of Annulment instead", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1824085933", + ["text"] = "#% chance in Heists for Orbs of Scouring to drop as Orbs of Regret instead", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3265666559", + ["text"] = "#% chance in Heists for Orbs of Transmutation to drop as Chaos Orbs instead", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2532905418", + ["text"] = "#% chance in Heists for Orbs of Transmutation to drop as Orbs of Alchemy instead", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_709446441", + ["text"] = "#% chance in Heists for Regal Orbs to drop as Ancient Orbs instead", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2766470009", + ["text"] = "#% chance in Heists for Regal Orbs to drop as Divine Orbs instead", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_866391849", + ["text"] = "#% chance in Heists for Regal Orbs to drop as Exalted Orbs instead", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_220868259", + ["text"] = "#% chance on Hitting an Enemy for all Impales on that Enemy to last for an additional Hit", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2136537914", + ["text"] = "#% chance on Melee Hit for the Strongest Impale on target to last for 1 additional Hit", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1761297940", + ["text"] = "#% chance on Skill use to not Sacrifice Life but still gain benefits as though you had", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3107439245", + ["text"] = "#% chance on completing a Heist to generate an additional Reveal with Whakano", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4162516667", + ["text"] = "#% chance on completing a Map influenced by a Conqueror of the Atlas to gain double progress towards locating their Citadel", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1432361650", + ["text"] = "#% chance on killing an Enemy to not generate Alert Level", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3844152269", + ["text"] = "#% chance on opening a Chest to not generate Alert Level", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2713233613", + ["text"] = "#% chance that if you would gain Endurance Charges, you instead gain up to maximum Endurance Charges", + ["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", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1232004574", + ["text"] = "#% chance that if you would gain Power Charges, you instead gain up to your maximum number of Power Charges", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2710292678", + ["text"] = "#% chance that if you would gain Rage on Hit, you instead gain up to your maximum Rage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1829869055", + ["text"] = "#% chance that if you would gain a Crab Barrier, you instead gain up to your maximum number of Crab Barriers", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2705185939", + ["text"] = "#% chance to Aggravate Bleeding on targets you Hit with Attacks", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_407415930", + ["text"] = "#% chance to Avoid All Damage from Hits", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1618589784", + ["text"] = "#% chance to Avoid Bleeding", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3743375737", + ["text"] = "#% chance to Avoid Cold Damage from Hits", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3005472710", + ["text"] = "#% chance to Avoid Elemental Ailments", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_611279043", + ["text"] = "#% chance to Avoid Elemental Ailments per Grand Spectrum", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_115351487", + ["text"] = "#% chance to Avoid Elemental Ailments while Phasing", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2662268382", + ["text"] = "#% chance to Avoid Elemental Ailments while you have Elusive", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_720398262", + ["text"] = "#% chance to Avoid Elemental Damage from Hits during Soul Gain Prevention", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1649883131", + ["text"] = "#% chance to Avoid Elemental Damage from Hits per Frenzy Charge", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_42242677", + ["text"] = "#% chance to Avoid Fire Damage from Hits", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2889664727", + ["text"] = "#% chance to Avoid Lightning Damage from Hits", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2415497478", + ["text"] = "#% chance to Avoid Physical Damage from Hits", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3635120731", + ["text"] = "#% chance to Avoid Projectiles while Phasing", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3483999943", + ["text"] = "#% chance to Avoid being Chilled", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1053326368", + ["text"] = "#% chance to Avoid being Chilled during Effect", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1619168299", + ["text"] = "#% chance to Avoid being Chilled during Effect", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2872105818", + ["text"] = "#% chance to Avoid being Chilled during Onslaught", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3706656107", + ["text"] = "#% chance to Avoid being Chilled or Frozen if you have used a Fire Skill Recently", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1514829491", + ["text"] = "#% chance to Avoid being Frozen", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2872815301", + ["text"] = "#% chance to Avoid being Frozen during Effect", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_475518267", + ["text"] = "#% chance to Avoid being Frozen during Effect", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1783006896", + ["text"] = "#% chance to Avoid being Ignited", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_20251177", + ["text"] = "#% chance to Avoid being Ignited during Effect", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4271082039", + ["text"] = "#% chance to Avoid being Ignited while on Low Life", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1093704472", + ["text"] = "#% chance to Avoid being Ignited, Chilled or Frozen with Her Blessing", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3313284037", + ["text"] = "#% chance to Avoid being Interrupted", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2362265695", + ["text"] = "#% chance to Avoid being Knocked Back", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4053951709", + ["text"] = "#% chance to Avoid being Poisoned", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1871765599", + ["text"] = "#% chance to Avoid being Shocked", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3642618258", + ["text"] = "#% chance to Avoid being Shocked during Effect", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3981960937", + ["text"] = "#% chance to Avoid being Shocked while Chilled", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4262448838", + ["text"] = "#% chance to Avoid being Stunned", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3983981705", + ["text"] = "#% chance to Blind Enemies on Critical Strike", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_318953428", + ["text"] = "#% chance to Blind Enemies on Hit with Attacks", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2301191210", + ["text"] = "#% chance to Blind Enemies on hit", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2548097895", + ["text"] = "#% chance to Blind Enemies which Hit you while affected by Grace", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2327728343", + ["text"] = "#% chance to Blind nearby Enemies when gaining Her Blessing", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_513681673", + ["text"] = "#% chance to Cause Bleeding on Critical Strike", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3181974858", + ["text"] = "#% chance to Cause Monsters to Flee", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_374737750", + ["text"] = "#% chance to Cause Poison on Critical Strike", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_864879045", + ["text"] = "#% chance to Chill Attackers for 4 seconds on Block", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_324460247", + ["text"] = "#% chance to Cover Enemies in Ash on Hit", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_240642724", + ["text"] = "#% chance to Cover Rare or Unique Enemies in Ash for 10 Seconds on Hit", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2228892313", + ["text"] = "#% chance to Crush on Hit", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2674214144", + ["text"] = "#% chance to Curse Enemies which Hit you with a random Hex, ignoring Curse Limit", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2950697759", + ["text"] = "#% chance to Curse Enemies with Punishment on Hit", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1352418057", + ["text"] = "#% chance to Curse Enemies with Socketed Hex Curse Gem on Hit", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2213584313", + ["text"] = "#% chance to Curse Enemies with Vulnerability on Hit", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1726444796", + ["text"] = "#% chance to Curse non-Cursed Enemies with a random Hex on Hit", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_327253797", + ["text"] = "#% chance to Defend with 200% of Armour", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2101592167", + ["text"] = "#% chance to Duplicate Blight Chests in your Maps", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2309614417", + ["text"] = "#% chance to Freeze", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2168861013", + ["text"] = "#% chance to Freeze Enemies for 1 second when they Hit you", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2332726055", + ["text"] = "#% chance to Freeze during any Flask Effect", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_800141891", + ["text"] = "#% chance to Freeze, Shock and Ignite", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_97064873", + ["text"] = "#% chance to Freeze, Shock and Ignite during Effect", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_813119588", + ["text"] = "#% chance to Gain Arcane Surge on Hit with Spells while at maximum Power Charges", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_446027070", + ["text"] = "#% chance to Gain Arcane Surge when you deal a Critical Strike", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2408544213", + ["text"] = "#% chance to Gain Onslaught for 4 seconds on Hit while at maximum Frenzy Charges", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3166317791", + ["text"] = "#% chance to Gain Unholy Might for 4 seconds on Melee Kill", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_800598487", + ["text"] = "#% chance to Gain a Power Charge on Hit while Poisoned", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3002506763", + ["text"] = "#% chance to Hinder Enemies on Hit with Spells", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1335054179", + ["text"] = "#% chance to Ignite", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3888064854", + ["text"] = "#% chance to Ignite during any Flask Effect", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2919089822", + ["text"] = "#% chance to Ignite when in Main Hand", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1916706958", + ["text"] = "#% chance to Ignore Stuns while Casting", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1439818705", + ["text"] = "#% chance to Ignore Stuns while using Socketed Attack Skills", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3752938727", + ["text"] = "#% chance to Impale Enemies on Hit", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3739863694", + ["text"] = "#% chance to Impale Enemies on Hit with Attacks", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_725880290", + ["text"] = "#% chance to Impale Enemies on Hit with Attacks", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4173751044", + ["text"] = "#% chance to Impale Enemies on Hit with Attacks while using Pride", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3094222195", + ["text"] = "#% chance to Impale on Spell Hit", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2089652545", + ["text"] = "#% chance to Intimidate Enemies for 4 seconds on Hit", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_78985352", + ["text"] = "#% chance to Intimidate Enemies for 4 seconds on Hit", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3438201750", + ["text"] = "#% chance to Intimidate Enemies for 4 seconds on Hit with Attacks", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2877370216", + ["text"] = "#% chance to Intimidate Enemies for 4 seconds on Hit with Attacks while at maximum Endurance Charges", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_977908611", + ["text"] = "#% chance to Knock Enemies Back on hit", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_996483959", + ["text"] = "#% chance to Maim Enemies on Critical Strike with Attacks", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2763429652", + ["text"] = "#% chance to Maim on Hit", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_795138349", + ["text"] = "#% chance to Poison on Hit", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3885634897", + ["text"] = "#% chance to Poison on Hit (Local)", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2208857094", + ["text"] = "#% chance to Poison on Hit against Cursed Enemies", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2777278657", + ["text"] = "#% chance to Poison on Hit during Effect", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3954735777", + ["text"] = "#% chance to Poison on Hit with Attacks", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2992087211", + ["text"] = "#% chance to Poison per Power Charge", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_308309328", + ["text"] = "#% chance to Recover 10% of Mana when you use a Skill", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1699077932", + ["text"] = "#% chance to Recover 10% of Mana when you use a Skill while affected by Clarity", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_532324017", + ["text"] = "#% chance to Sap Enemies", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3057853352", + ["text"] = "#% chance to Sap Enemies in Chilling Areas", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_606940191", + ["text"] = "#% chance to Scorch Enemies", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1538773178", + ["text"] = "#% chance to Shock", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_575111651", + ["text"] = "#% chance to Shock Attackers for 4 seconds on Block", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4069101408", + ["text"] = "#% chance to Shock Chilled Enemies", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_796406325", + ["text"] = "#% chance to Shock during any Flask Effect", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_875143443", + ["text"] = "#% chance to Steal Power, Frenzy, and Endurance Charges on Hit", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_280213220", + ["text"] = "#% chance to Taunt Enemies on Hit with Attacks", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3272283603", + ["text"] = "#% chance to Taunt on Hit", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3251948367", + ["text"] = "#% chance to Trigger Commandment of Inferno on Critical Strike", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_205619502", + ["text"] = "#% chance to Trigger Level 1 Blood Rage when you Kill an Enemy", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1010340836", + ["text"] = "#% chance to Trigger Level 1 Create Lesser Shrine when you Kill an Enemy", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3751996449", + ["text"] = "#% chance to Trigger Level 10 Summon Raging Spirit on Kill", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4125471110", + ["text"] = "#% chance to Trigger Level 16 Molten Burst on Melee Hit", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_919960234", + ["text"] = "#% chance to Trigger Level 18 Animate Guardian's Weapon when Animated Weapon Kills an Enemy", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3682009780", + ["text"] = "#% chance to Trigger Level 20 Animate Guardian's Weapon when Animated Guardian Kills an Enemy", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1973890509", + ["text"] = "#% chance to Trigger Level 20 Animate Weapon on Kill", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3344568504", + ["text"] = "#% chance to Trigger Level 20 Arcane Wake after Spending a total of 200 Mana", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3141831683", + ["text"] = "#% chance to Trigger Level 20 Glimpse of Eternity when Hit", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3308936917", + ["text"] = "#% chance to Trigger Level 20 Shade Form when you Use a Socketed Skill", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1505174316", + ["text"] = "#% chance to Trigger Level 20 Starfall on Melee Critical Strike", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2143990571", + ["text"] = "#% chance to Trigger Level 20 Summon Volatile Anomaly on Kill", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1350938937", + ["text"] = "#% chance to Trigger Level 20 Tentacle Whip on Kill", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4221489692", + ["text"] = "#% chance to Trigger Level 25 Summon Spectral Wolf on Critical Strike with this Weapon", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3657377047", + ["text"] = "#% chance to Trigger Socketed Curse Spell when you Cast a Curse Spell, with a 0.25 second Cooldown", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3414107447", + ["text"] = "#% chance to Trigger Socketed Spell on Kill, with a 0.5 second Cooldown", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2062792091", + ["text"] = "#% chance to Trigger Socketed Spells when you Focus, with a 0.25 second Cooldown", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2513998383", + ["text"] = "#% chance to Trigger Socketed Spells when you Spend at least # Life on an Upfront Cost to Use or Trigger a Skill, with a 0.1 second Cooldown", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_723388324", + ["text"] = "#% chance to Trigger Socketed Spells when you Spend at least # Mana on an Upfront Cost to Use or Trigger a Skill, with a 0.1 second Cooldown", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_31336590", + ["text"] = "#% chance to Trigger Summon Spirit of Ahuana on Kill", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3888707953", + ["text"] = "#% chance to Trigger Summon Spirit of Akoya on Kill", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1163205473", + ["text"] = "#% chance to Trigger Summon Spirit of Ikiaho on Kill", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_264841388", + ["text"] = "#% chance to Trigger Summon Spirit of Kahuturoa on Kill", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_817287945", + ["text"] = "#% chance to Trigger Summon Spirit of Kaom on Kill", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_999837849", + ["text"] = "#% chance to Trigger Summon Spirit of Kiloava on Kill", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3572665414", + ["text"] = "#% chance to Trigger Summon Spirit of Maata on Kill", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1630969195", + ["text"] = "#% chance to Trigger Summon Spirit of Rakiata on Kill", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4217417523", + ["text"] = "#% chance to Trigger Summon Spirit of Tawhanuku on Kill", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_272515409", + ["text"] = "#% chance to Trigger Summon Spirit of Utula on Kill", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3171958921", + ["text"] = "#% chance to Trigger a Socketed Bow Skill when you Attack with a Bow, with a 1 second Cooldown", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1378815167", + ["text"] = "#% chance to Trigger a Socketed Bow Skill when you Cast a Spell while wielding a Bow, with a 1 second Cooldown", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3079007202", + ["text"] = "#% chance to Trigger a Socketed Spell on Using a Skill, with a 8 second Cooldown Spells Triggered this way have 150% more Cost", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3302736916", + ["text"] = "#% chance to Trigger a Socketed Spell when you Attack with a Bow, with a 0.3 second Cooldown", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_209056835", + ["text"] = "#% chance to Trigger a Socketed Spell when you Attack with this Weapon, with a 0.25 second Cooldown", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1112135314", + ["text"] = "#% chance to Trigger a Socketed Warcry Skill when you lose Endurance Charges, with a 0.25 second Cooldown", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_763611529", + ["text"] = "#% chance to Unnerve Enemies for 4 seconds on Hit", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_220991810", + ["text"] = "#% chance to Unnerve Enemies for 4 seconds on Hit with Spells", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3452269808", + ["text"] = "#% chance to avoid Projectiles", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3114696875", + ["text"] = "#% chance to avoid Projectiles if you've taken Projectile Damage Recently", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2155467472", + ["text"] = "#% chance to be inflicted with Bleeding when Hit by an Attack", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1519615863", + ["text"] = "#% chance to cause Bleeding on Hit", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1457911472", + ["text"] = "#% chance to cause Enemies to Flee on use", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3748879662", + ["text"] = "#% chance to cover Enemies in Ash when they Hit you", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_358040686", + ["text"] = "#% chance to create Chilled Ground when Hit with an Attack", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2901262227", + ["text"] = "#% chance to create Chilled Ground when you Freeze an Enemy", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_573884683", + ["text"] = "#% chance to create Consecrated Ground when you Block", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3135669941", + ["text"] = "#% chance to create Consecrated Ground when you Hit a Rare or Unique Enemy, lasting 8 seconds", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4148932984", + ["text"] = "#% chance to create Consecrated Ground when you Shatter an Enemy", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3685028559", + ["text"] = "#% chance to create Desecrated Ground when you Block", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2047846165", + ["text"] = "#% chance to create Profane Ground on Critical Strike if Intelligence is your highest Attribute", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3355479537", + ["text"] = "#% chance to create Shocked Ground when Hit", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_953314356", + ["text"] = "#% chance to create a Smoke Cloud when Hit", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2836003955", + ["text"] = "#% chance to create a copy of Beasts Captured in Area", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2836003955", + ["text"] = "#% chance to create a copy of Beasts Captured in your Maps", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1172810729", + ["text"] = "#% chance to deal Double Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1916537902", + ["text"] = "#% chance to deal Double Damage against Enemies for each type of Ailment you have inflicted on them", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4224978303", + ["text"] = "#% chance to deal Double Damage if you have Stunned an Enemy Recently", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2304988974", + ["text"] = "#% chance to deal Double Damage if you've cast Vulnerability in the past 10 seconds", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2908886986", + ["text"] = "#% chance to deal Double Damage while Focused", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1299868012", + ["text"] = "#% chance to deal Double Damage while affected by Glorious Madness", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3371719014", + ["text"] = "#% chance to deal Double Damage while using Pride", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1535606605", + ["text"] = "#% chance to deal Double Damage while you have at least 200 Strength", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2445189705", + ["text"] = "#% chance to deal Triple Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_147155654", + ["text"] = "#% chance to deal Triple Damage while you have at least 400 Strength", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2622251413", + ["text"] = "#% chance to double Stun Duration", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1741279188", + ["text"] = "#% chance to gain 25% of Non-Chaos Damage with Hits as Extra Chaos Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_414749123", + ["text"] = "#% chance to gain Adrenaline for 2 Seconds when Leech is removed by Filling Unreserved Life", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2989883253", + ["text"] = "#% chance to gain Alchemist's Genius when you use a Flask", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_573223427", + ["text"] = "#% chance to gain Arcane Surge when you Kill an Enemy", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_562371749", + ["text"] = "#% chance to gain Chaotic Might for 10 seconds on Kill", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2896192589", + ["text"] = "#% chance to gain Elusive on Critical Strike", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4203400545", + ["text"] = "#% chance to gain Her Blessing for 3 seconds when you Ignite an Enemy", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2453026567", + ["text"] = "#% chance to gain Onslaught for 10 seconds on Kill", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3049760680", + ["text"] = "#% chance to gain Onslaught for 3 seconds when Hit", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3106724907", + ["text"] = "#% chance to gain Onslaught for 4 Seconds when Leech is removed by Filling Unreserved Life", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3023957681", + ["text"] = "#% chance to gain Onslaught for 4 seconds on Kill", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_665823128", + ["text"] = "#% chance to gain Onslaught for 4 seconds on Kill", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1324450398", + ["text"] = "#% chance to gain Onslaught when you use a Flask", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_144887967", + ["text"] = "#% chance to gain Phasing for # seconds when your Trap is triggered by an Enemy", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2918708827", + ["text"] = "#% chance to gain Phasing for 4 seconds on Kill", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3562211447", + ["text"] = "#% chance to gain Unholy Might for 3 seconds on Kill", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2807857784", + ["text"] = "#% chance to gain Unholy Might for 4 seconds on Critical Strike", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_108334292", + ["text"] = "#% chance to gain a Divine Charge on Hit", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2858921304", + ["text"] = "#% chance to gain a Flask Charge when you deal a Critical Strike", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3738001379", + ["text"] = "#% chance to gain a Flask Charge when you deal a Critical Strike", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3371432622", + ["text"] = "#% chance to gain a Flask Charge when you deal a Critical Strike while at maximum Frenzy Charges", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1302845655", + ["text"] = "#% chance to gain a Frenzy Charge for each Enemy you hit with a Critical Strike", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3032585258", + ["text"] = "#% chance to gain a Frenzy Charge on Critical Strike", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_911695185", + ["text"] = "#% chance to gain a Frenzy Charge on Critical Strike at Close Range", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2323242761", + ["text"] = "#% chance to gain a Frenzy Charge on Hit", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1571123250", + ["text"] = "#% chance to gain a Frenzy Charge on Hit if 4 Redeemer Items are Equipped", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2478268100", + ["text"] = "#% chance to gain a Frenzy Charge on Hit while Blinded", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_471924383", + ["text"] = "#% chance to gain a Frenzy Charge on Hitting an Enemy with no Evasion Rating", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1826802197", + ["text"] = "#% chance to gain a Frenzy Charge on Kill", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2230931659", + ["text"] = "#% chance to gain a Frenzy Charge on Killing a Frozen Enemy", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_496822696", + ["text"] = "#% chance to gain a Frenzy Charge on Killing an Enemy affected by at least 5 Poisons", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_881914531", + ["text"] = "#% chance to gain a Frenzy Charge when Hit", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3769211656", + ["text"] = "#% chance to gain a Frenzy Charge when you Block", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4179663748", + ["text"] = "#% chance to gain a Frenzy Charge when you Hit a Rare or Unique Enemy", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4113439745", + ["text"] = "#% chance to gain a Frenzy Charge when you Hit a Unique Enemy", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1695720239", + ["text"] = "#% chance to gain a Frenzy Charge when you Stun an Enemy", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3738335639", + ["text"] = "#% chance to gain a Frenzy Charge when your Trap is triggered by an Enemy", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2179619644", + ["text"] = "#% chance to gain a Power Charge if you Knock an Enemy Back with Melee Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3814876985", + ["text"] = "#% chance to gain a Power Charge on Critical Strike", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1453197917", + ["text"] = "#% chance to gain a Power Charge on Hit", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4060882278", + ["text"] = "#% chance to gain a Power Charge on Hit if 4 Crusader Items are Equipped", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2483795307", + ["text"] = "#% chance to gain a Power Charge on Kill", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3607154250", + ["text"] = "#% chance to gain a Power Charge on Killing a Frozen Enemy", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_352612932", + ["text"] = "#% chance to gain a Power Charge on Killing an Enemy affected by fewer than 5 Poisons", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_273206351", + ["text"] = "#% chance to gain a Power Charge on hitting an Enemy affected by a Spider's Web", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3945147290", + ["text"] = "#% chance to gain a Power Charge when you Block", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_322835727", + ["text"] = "#% chance to gain a Power Charge when you Cast a Curse Spell", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3470535775", + ["text"] = "#% chance to gain a Power Charge when you Stun", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1936544447", + ["text"] = "#% chance to gain a Power Charge when you Throw a Trap", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2383388829", + ["text"] = "#% chance to gain a Power Charge when you use a Vaal Skill", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_498214257", + ["text"] = "#% chance to gain a Power, Frenzy or Endurance Charge on Kill", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2922737717", + ["text"] = "#% chance to gain a Siphoning Charge when you use a Skill", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_570644802", + ["text"] = "#% chance to gain a Spirit Charge on Kill", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2542650946", + ["text"] = "#% chance to gain an Endurance Charge on Critical Strike", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3488208924", + ["text"] = "#% chance to gain an Endurance Charge on Hitting an Enemy with no Armour", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1054322244", + ["text"] = "#% chance to gain an Endurance Charge on Kill", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_417188801", + ["text"] = "#% chance to gain an Endurance Charge when you Block", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1536266147", + ["text"] = "#% chance to gain an Endurance Charge when you Hit a Bleeding Enemy", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1582887649", + ["text"] = "#% chance to gain an Endurance Charge when you Stun an Enemy", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1657549833", + ["text"] = "#% chance to gain an Endurance Charge when you Taunt an Enemy", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1514657588", + ["text"] = "#% chance to gain an Endurance Charge when you are Hit", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_710805027", + ["text"] = "#% chance to gain an Endurance, Frenzy or Power Charge when any of your Traps are Triggered by an Enemy", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1962922582", + ["text"] = "#% chance to gain an additional Vaal Soul on Kill", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1633381214", + ["text"] = "#% chance to gain an additional Vaal Soul per Enemy Shattered", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3607444087", + ["text"] = "#% chance to grant Chaotic Might to nearby Enemies on Kill", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1924591908", + ["text"] = "#% chance to grant Onslaught to nearby Enemies on Kill", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_991168463", + ["text"] = "#% chance to grant a Frenzy Charge to nearby Allies on Hit", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2367680009", + ["text"] = "#% chance to grant a Power Charge to nearby Allies on Kill", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2054257693", + ["text"] = "#% chance to inflict Bleeding on Critical Strike with Attacks", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2238174408", + ["text"] = "#% chance to inflict Brittle", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2630708439", + ["text"] = "#% chance to inflict Cold Exposure on Hit", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2523122963", + ["text"] = "#% chance to inflict Corrosion on Hit with Attacks", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3602667353", + ["text"] = "#% chance to inflict Fire Exposure on Hit", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4265906483", + ["text"] = "#% chance to inflict Lightning Exposure on Hit", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1957711555", + ["text"] = "#% chance to inflict Withered for 2 seconds on Hit", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_465526645", + ["text"] = "#% chance to inflict Withered for 2 seconds on Hit against Cursed Enemies", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1226121733", + ["text"] = "#% chance to inflict Withered for 2 seconds on Hit with this Weapon", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_19313391", + ["text"] = "#% chance to inflict a Grasping Vine on Melee Weapon Hit", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_514698677", + ["text"] = "#% chance to inflict an additional Poison on the same Target when you inflict Poison", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2858930612", + ["text"] = "#% chance to lose 10% of Mana when you use a Skill", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2142803347", + ["text"] = "#% chance to lose a Frenzy Charge on Kill", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_445906009", + ["text"] = "#% chance to lose a Frenzy Charge when you use a Travel Skill", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2939195168", + ["text"] = "#% chance to lose a Power Charge on Kill", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1819086604", + ["text"] = "#% chance to lose a Power Charge when you gain Elusive", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_627015097", + ["text"] = "#% chance to lose an Endurance Charge on Kill", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1087146228", + ["text"] = "#% chance to lose an Endurance Charge when you gain Fortification", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2438099615", + ["text"] = "#% chance to not Activate Lockdown in Grand Heists", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_277930304", + ["text"] = "#% chance to not generate Alert Level on opening a Chest using Agility", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1195895224", + ["text"] = "#% chance to not generate Alert Level on opening a Chest using Brute Force", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2232609651", + ["text"] = "#% chance to not generate Alert Level on opening a Chest using Counter-Thaumaturgy", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3146356577", + ["text"] = "#% chance to not generate Alert Level on opening a Chest using Deception", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_581152495", + ["text"] = "#% chance to not generate Alert Level on opening a Chest using Demolition", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_316122366", + ["text"] = "#% chance to not generate Alert Level on opening a Chest using Engineering", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_647064288", + ["text"] = "#% chance to not generate Alert Level on opening a Chest using Lockpicking", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_397829245", + ["text"] = "#% chance to not generate Alert Level on opening a Chest using Perception", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3015749212", + ["text"] = "#% chance to not generate Alert Level on opening a Chest using Trap Disarmament", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1361025326", + ["text"] = "#% chance to receive additional Abyss items when opening a Reward Chest in a Heist", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3835470471", + ["text"] = "#% chance to receive additional Armour items when opening a Reward Chest in a Heist", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2581419165", + ["text"] = "#% chance to receive additional Blight items when opening a Reward Chest in a Heist", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4146386957", + ["text"] = "#% chance to receive additional Breach items when opening a Reward Chest in a Heist", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3876876906", + ["text"] = "#% chance to receive additional Delirium items when opening a Reward Chest in a Heist", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1852069308", + ["text"] = "#% chance to receive additional Delve items when opening a Reward Chest in a Heist", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3099138455", + ["text"] = "#% chance to receive additional Divination Card items when opening a Reward Chest in a Heist", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2454528473", + ["text"] = "#% chance to receive additional Essences when opening a Reward Chest in a Heist", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2610785454", + ["text"] = "#% chance to receive additional Gem items when opening a Reward Chest in a Heist", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_854906305", + ["text"] = "#% chance to receive additional Gold when opening a Reward Chest in a Heist", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_73487979", + ["text"] = "#% chance to receive additional Harbinger items when opening a Reward Chest in a Heist", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1323476506", + ["text"] = "#% chance to receive additional Jewellery when opening a Reward Chest in a Heist", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1463604143", + ["text"] = "#% chance to receive additional Legion items when opening a Reward Chest in a Heist", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2917742181", + ["text"] = "#% chance to receive additional Talismans when opening a Reward Chest in a Heist", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1485150248", + ["text"] = "#% chance to receive additional Ultimatum items when opening a Reward Chest in a Heist", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3145607602", + ["text"] = "#% chance to receive additional Unique items when opening a Reward Chest in a Heist", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_953018841", + ["text"] = "#% chance to receive additional Weapons when opening a Reward Chest in a Heist", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_93054948", + ["text"] = "#% chance to refresh Ignite Duration on Melee Weapon Hit", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_545355339", + ["text"] = "#% chance to remove 1 Mana Burn on Kill", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3179686508", + ["text"] = "#% chance to spawn a Searing Exarch Altar when the Influence of The Searing Exarch first appears in your Maps", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4253777805", + ["text"] = "#% chance to take 50% less Area Damage from Hits", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3132227798", + ["text"] = "#% chance to throw up to 4 additional Traps", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3717165313", + ["text"] = "#% chance when you Kill a Scorched Enemy to Burn Each surrounding Enemy for 4 seconds, dealing 8% of the Killed Enemy's Life as Fire Damage per second", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1130670241", + ["text"] = "#% faster Restoration of Ward", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1782086450", + ["text"] = "#% faster start of Energy Shield Recharge", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1016185292", + ["text"] = "#% faster start of Energy Shield Recharge while affected by Discipline", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3337754340", + ["text"] = "#% increased Accuracy Rating during Effect", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2806435316", + ["text"] = "#% increased Accuracy Rating if you haven't Killed Recently", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1381557885", + ["text"] = "#% increased Accuracy Rating if you've dealt a Critical Strike in the past 8 seconds", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4106889136", + ["text"] = "#% increased Accuracy Rating per 25 Intelligence", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3700381193", + ["text"] = "#% increased Accuracy Rating per Frenzy Charge", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_347697569", + ["text"] = "#% increased Accuracy Rating when on Low Life", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2878959938", + ["text"] = "#% increased Action Speed", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1960426186", + ["text"] = "#% increased Action Speed while affected by Haste", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_245401622", + ["text"] = "#% increased Agility Experience gained", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3422638915", + ["text"] = "#% increased Agility speed", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1327804524", + ["text"] = "#% increased Alert Level from killing Guards", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2042972420", + ["text"] = "#% increased Alert Level from killing Patrol Packs", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_700317374", + ["text"] = "#% increased Amount Recovered", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3995612171", + ["text"] = "#% increased Arctic Armour Buff Effect", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4251717817", + ["text"] = "#% increased Area Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1724614884", + ["text"] = "#% increased Area Damage per 10 Devotion", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_280731498", + ["text"] = "#% increased Area of Effect", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_215882879", + ["text"] = "#% increased Area of Effect during Effect", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1840985759", + ["text"] = "#% increased Area of Effect for Attacks", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_869436347", + ["text"] = "#% increased Area of Effect for Skills used by Totems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_430248187", + ["text"] = "#% increased Area of Effect if you have Stunned an Enemy Recently", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3481736410", + ["text"] = "#% increased Area of Effect if you've Killed Recently", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1785568076", + ["text"] = "#% increased Area of Effect if you've dealt a Culling Strike Recently", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_895264825", + ["text"] = "#% increased Area of Effect of Aura Skills", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_153777645", + ["text"] = "#% increased Area of Effect of Hex Skills", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1307972622", + ["text"] = "#% increased Area of Effect per 20 Intelligence", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4119032338", + ["text"] = "#% increased Area of Effect per 25 Rampage Kills", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2611023406", + ["text"] = "#% increased Area of Effect per 50 Strength", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2448279015", + ["text"] = "#% increased Area of Effect per Endurance Charge", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4070157876", + ["text"] = "#% increased Area of Effect per Enemy killed recently, up to 50%", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3094501804", + ["text"] = "#% increased Area of Effect per Power Charge", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2216127021", + ["text"] = "#% increased Area of Effect while Unarmed", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1647746883", + ["text"] = "#% increased Area of Effect while in Sand Stance", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2866361420", + ["text"] = "#% increased Armour", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1062208444", + ["text"] = "#% increased Armour (Local)", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_706246936", + ["text"] = "#% increased Armour against Projectiles", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3321629045", + ["text"] = "#% increased Armour and Energy Shield (Local)", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2451402625", + ["text"] = "#% increased Armour and Evasion (Local)", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1693613464", + ["text"] = "#% increased Armour during Effect", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2424133568", + ["text"] = "#% increased Armour if you haven't Killed Recently", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2574337583", + ["text"] = "#% increased Armour per 50 Reserved Mana", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3621706946", + ["text"] = "#% increased Armour per 50 Strength", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1447080724", + ["text"] = "#% increased Armour per Endurance Charge", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2466912132", + ["text"] = "#% increased Armour while Bleeding", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1164767410", + ["text"] = "#% increased Armour while not Ignited, Frozen or Shocked", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3184053924", + ["text"] = "#% increased Armour while stationary", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3523867985", + ["text"] = "#% increased Armour, Evasion and Energy Shield (Local)", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1746347097", + ["text"] = "#% increased Aspect of the Avian Buff Effect", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3686780108", + ["text"] = "#% increased Aspect of the Spider Area of Effect", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_332854027", + ["text"] = "#% increased Aspect of the Spider Debuff Duration", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2196695640", + ["text"] = "#% increased Attack Critical Strike Chance per 200 Accuracy Rating", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3702513529", + ["text"] = "#% increased Attack Critical Strike Chance while Dual Wielding", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2843214518", + ["text"] = "#% increased Attack Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3944782785", + ["text"] = "#% increased Attack Damage against Bleeding Enemies", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_698336758", + ["text"] = "#% increased Attack Damage for each Map Item Modifier affecting the Area", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_871414818", + ["text"] = "#% increased Attack Damage if you've been Hit Recently", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1555962658", + ["text"] = "#% increased Attack Damage if your opposite Ring is a Shaper Item", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_192842973", + ["text"] = "#% increased Attack Damage per 450 Armour", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_93696421", + ["text"] = "#% increased Attack Damage per 450 Evasion Rating", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_444174528", + ["text"] = "#% increased Attack Damage while Dual Wielding", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2048747572", + ["text"] = "#% increased Attack Damage while affected by Precision", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1393393937", + ["text"] = "#% increased Attack Damage while holding a Shield", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_681332047", + ["text"] = "#% increased Attack Speed", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_210067635", + ["text"] = "#% increased Attack Speed (Local)", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_968369591", + ["text"] = "#% increased Attack Speed during Effect", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1365052901", + ["text"] = "#% increased Attack Speed during any Flask Effect", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2025297472", + ["text"] = "#% increased Attack Speed for each Map Item Modifier affecting the Area", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1003608257", + ["text"] = "#% increased Attack Speed if you haven't Cast Dash recently", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_749465463", + ["text"] = "#% increased Attack Speed if you haven't gained a Frenzy Charge Recently", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1507059769", + ["text"] = "#% increased Attack Speed if you've Killed Recently", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4137521191", + ["text"] = "#% increased Attack Speed if you've been Hit Recently", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2188905761", + ["text"] = "#% increased Attack Speed if you've changed Stance Recently", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1585344030", + ["text"] = "#% increased Attack Speed if you've dealt a Critical Strike Recently", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3842406602", + ["text"] = "#% increased Attack Speed if you've taken a Savage Hit Recently", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_889691035", + ["text"] = "#% increased Attack Speed per 10 Dexterity", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2937694716", + ["text"] = "#% increased Attack Speed per 150 Accuracy Rating", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2241560081", + ["text"] = "#% increased Attack Speed per 25 Dexterity", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1039149869", + ["text"] = "#% increased Attack Speed per Fortification", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3548561213", + ["text"] = "#% increased Attack Speed per Frenzy Charge", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4268321763", + ["text"] = "#% increased Attack Speed when on Full Life", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1921572790", + ["text"] = "#% increased Attack Speed when on Low Life", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3935294261", + ["text"] = "#% increased Attack Speed while Chilled", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4249220643", + ["text"] = "#% increased Attack Speed while Dual Wielding", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_122450405", + ["text"] = "#% increased Attack Speed while Fortified", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2047819517", + ["text"] = "#% increased Attack Speed while Ignited", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2752264922", + ["text"] = "#% increased Attack Speed while Phasing", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_314741699", + ["text"] = "#% increased Attack Speed while a Rare or Unique Enemy is Nearby", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3375743050", + ["text"] = "#% increased Attack Speed while affected by Precision", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3805075944", + ["text"] = "#% increased Attack Speed while holding a Shield", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_779663446", + ["text"] = "#% increased Attack Speed while not on Low Mana", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3550868361", + ["text"] = "#% increased Attack Speed with Axes", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3759735052", + ["text"] = "#% increased Attack Speed with Bows", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1421645223", + ["text"] = "#% increased Attack Speed with Claws", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2538566497", + ["text"] = "#% increased Attack Speed with Daggers", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2515515064", + ["text"] = "#% increased Attack Speed with Maces or Sceptres", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3683134121", + ["text"] = "#% increased Attack Speed with Movement Skills", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1813451228", + ["text"] = "#% increased Attack Speed with One Handed Melee Weapons", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1394963553", + ["text"] = "#% increased Attack Speed with Staves", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3293699237", + ["text"] = "#% increased Attack Speed with Swords", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1917910910", + ["text"] = "#% increased Attack Speed with Two Handed Melee Weapons", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3720627346", + ["text"] = "#% increased Attack Speed with Wands", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2672805335", + ["text"] = "#% increased Attack and Cast Speed", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1027670161", + ["text"] = "#% increased Attack and Cast Speed for each nearby Enemy, up to a maximum of 30%", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_223937937", + ["text"] = "#% increased Attack and Cast Speed if you haven't been Hit Recently", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_672563185", + ["text"] = "#% increased Attack and Cast Speed if you've Consumed a Corpse Recently", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1483753325", + ["text"] = "#% increased Attack and Cast Speed if you've Hit an Enemy Recently", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2831922878", + ["text"] = "#% increased Attack and Cast Speed if you've used a Movement Skill Recently", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3618888098", + ["text"] = "#% increased Attack and Cast Speed per Endurance Charge", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_987588151", + ["text"] = "#% increased Attack and Cast Speed per Power Charge", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3133579934", + ["text"] = "#% increased Attack and Cast Speed per Summoned Raging Spirit", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2628163981", + ["text"] = "#% increased Attack and Cast Speed while Focused", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_232331266", + ["text"] = "#% increased Attack and Cast Speed while Physical Aegis is depleted", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1473444150", + ["text"] = "#% increased Attack and Cast Speed while at maximum Fortification", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3597737983", + ["text"] = "#% increased Attack and Movement Speed while you have a Bestial Minion", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2968804751", + ["text"] = "#% increased Attack and Movement Speed with Her Blessing", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3476327198", + ["text"] = "#% increased Attack, Cast and Movement Speed while you do not have Iron Reflexes", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_879520319", + ["text"] = "#% increased Attack, Cast and Movement Speed while you have Onslaught", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3639275092", + ["text"] = "#% increased Attribute Requirements", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3143208761", + ["text"] = "#% increased Attributes", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3237046450", + ["text"] = "#% increased Attributes if 6 Elder Items are Equipped", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1692879867", + ["text"] = "#% increased Bleed Duration on you", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1459321413", + ["text"] = "#% increased Bleeding Duration", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1030835421", + ["text"] = "#% increased Bleeding Duration per 12 Intelligence", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1585769763", + ["text"] = "#% increased Blind Effect", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3479987487", + ["text"] = "#% increased Block and Stun Recovery during Effect", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_619910101", + ["text"] = "#% increased Blueprints found in your Maps", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4223377453", + ["text"] = "#% increased Brand Attachment range", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1323465399", + ["text"] = "#% increased Brand Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2697019412", + ["text"] = "#% increased Brand Damage per 10 Devotion", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2377447058", + ["text"] = "#% increased Brute Force Experience gained", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3095027077", + ["text"] = "#% increased Brute Force speed", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1175385867", + ["text"] = "#% increased Burning Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3285748758", + ["text"] = "#% increased Burning Damage for each time you have Shocked a Non-Shocked Enemy Recently, up to a maximum of 120%", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3919557483", + ["text"] = "#% increased Burning Damage if you've Ignited an Enemy Recently", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2891184298", + ["text"] = "#% increased Cast Speed", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3256116097", + ["text"] = "#% increased Cast Speed during Effect", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_252194507", + ["text"] = "#% increased Cast Speed during any Flask Effect", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1518586897", + ["text"] = "#% increased Cast Speed for each different Non-Instant Spell you've Cast Recently", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3110907148", + ["text"] = "#% increased Cast Speed if a Minion has been Killed Recently", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2072625596", + ["text"] = "#% increased Cast Speed if you've Killed Recently", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1174076861", + ["text"] = "#% increased Cast Speed if you've dealt a Critical Strike Recently", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1604393896", + ["text"] = "#% increased Cast Speed per Power Charge", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1136768410", + ["text"] = "#% increased Cast Speed when on Low Life", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_778552242", + ["text"] = "#% increased Cast Speed while Chilled", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2382196858", + ["text"] = "#% increased Cast Speed while Dual Wielding", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3660039923", + ["text"] = "#% increased Cast Speed while Ignited", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2444534954", + ["text"] = "#% increased Cast Speed while affected by Zealotry", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1612163368", + ["text"] = "#% increased Cast Speed while holding a Shield", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2066542501", + ["text"] = "#% increased Cast Speed while wielding a Staff", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_928238845", + ["text"] = "#% increased Cast Speed with Cold Skills", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1476643878", + ["text"] = "#% increased Cast Speed with Fire Skills", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1788635023", + ["text"] = "#% increased Cast Speed with Lightning Skills", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1516375869", + ["text"] = "#% increased Cast Speed with Minion Skills", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2622009823", + ["text"] = "#% increased Chaining range", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2481353198", + ["text"] = "#% increased Chance to Block", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_736967255", + ["text"] = "#% increased Chaos Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4004011170", + ["text"] = "#% increased Chaos Damage for each Corrupted Item Equipped", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_601272515", + ["text"] = "#% increased Chaos Damage over Time", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2582360791", + ["text"] = "#% increased Chaos Damage per 10 Intelligence from Allocated Passives in Radius", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4084331136", + ["text"] = "#% increased Chaos Damage per Level", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_739274558", + ["text"] = "#% increased Chaos Damage while affected by Herald of Agony", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1408638732", + ["text"] = "#% increased Character Size", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2171629017", + ["text"] = "#% increased Charge Duration", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3196823591", + ["text"] = "#% increased Charge Recovery", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1085359447", + ["text"] = "#% increased Charges gained by Other Flasks during Effect", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_388617051", + ["text"] = "#% increased Charges per use", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3485067555", + ["text"] = "#% increased Chill Duration on Enemies", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4199402748", + ["text"] = "#% increased Chill Duration on Enemies when in Off Hand", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1081444608", + ["text"] = "#% increased Claw Physical Damage when on Low Life", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3291658075", + ["text"] = "#% increased Cold Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3612256591", + ["text"] = "#% increased Cold Damage if you have used a Fire Skill Recently", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2517031897", + ["text"] = "#% increased Cold Damage per 1% Cold Resistance above 75%", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2859664487", + ["text"] = "#% increased Cold Damage per 1% Missing Cold Resistance, up to a maximum of 300%", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_329974315", + ["text"] = "#% increased Cold Damage per Frenzy Charge", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1413864591", + ["text"] = "#% increased Cold Damage while affected by Hatred", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1970606344", + ["text"] = "#% increased Cold Damage while affected by Herald of Ice", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3520048646", + ["text"] = "#% increased Cold Damage while your Off Hand is empty", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_860668586", + ["text"] = "#% increased Cold Damage with Attack Skills", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4252311791", + ["text"] = "#% increased Cold Resistance", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1004011302", + ["text"] = "#% increased Cooldown Recovery Rate", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_239144", + ["text"] = "#% increased Cooldown Recovery Rate", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3417757416", + ["text"] = "#% increased Cooldown Recovery Rate for throwing Traps", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_430973012", + ["text"] = "#% increased Cooldown Recovery Rate if 2 Shaper Items are Equipped", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2954796309", + ["text"] = "#% increased Cooldown Recovery Rate if you've cast Temporal Chains in the past 10 seconds", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1124980805", + ["text"] = "#% increased Cooldown Recovery Rate of Movement Skills", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3332055899", + ["text"] = "#% increased Cooldown Recovery Rate of Movement Skills used while affected by Haste", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2308278768", + ["text"] = "#% increased Cooldown Recovery Rate of Travel Skills", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3083201633", + ["text"] = "#% increased Cooldown Recovery Rate of Travel Skills per Frenzy Charge", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2078691497", + ["text"] = "#% increased Cost of Building and Upgrading Towers", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2904711338", + ["text"] = "#% increased Cost of Skills", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2650053239", + ["text"] = "#% increased Cost of Skills for each 200 total Mana Spent Recently", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1237550112", + ["text"] = "#% increased Counter-Thaumaturgy Experience gained", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2888942321", + ["text"] = "#% increased Counter-Thaumaturgy speed", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2375316951", + ["text"] = "#% increased Critical Strike Chance", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2282705842", + ["text"] = "#% increased Critical Strike Chance against Bleeding Enemies", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1939202111", + ["text"] = "#% increased Critical Strike Chance against Blinded Enemies", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3699490848", + ["text"] = "#% increased Critical Strike Chance against Chilled Enemies", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3278399103", + ["text"] = "#% increased Critical Strike Chance against Enemies on Consecrated Ground during Effect", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_214835567", + ["text"] = "#% increased Critical Strike Chance against Enemies on Consecrated Ground while affected by Zealotry", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_47954913", + ["text"] = "#% increased Critical Strike Chance against Enemies that are on Full Life", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1345659139", + ["text"] = "#% increased Critical Strike Chance against Poisoned Enemies", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_276103140", + ["text"] = "#% increased Critical Strike Chance against Shocked Enemies", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2008255263", + ["text"] = "#% increased Critical Strike Chance during Effect", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1243114410", + ["text"] = "#% increased Critical Strike Chance for Spells if you've Killed Recently", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3914638685", + ["text"] = "#% increased Critical Strike Chance if you have Killed Recently", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2856328513", + ["text"] = "#% increased Critical Strike Chance if you haven't dealt a Critical Strike Recently", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_151106430", + ["text"] = "#% increased Critical Strike Chance if you haven't gained a Power Charge Recently", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1434381067", + ["text"] = "#% increased Critical Strike Chance if you've been Shocked Recently", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2511370818", + ["text"] = "#% increased Critical Strike Chance per 10 Strength", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1861913998", + ["text"] = "#% increased Critical Strike Chance per 25 Intelligence", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2409504914", + ["text"] = "#% increased Critical Strike Chance per Brand", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2547511866", + ["text"] = "#% increased Critical Strike Chance per Endurance Charge", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_707887043", + ["text"] = "#% increased Critical Strike Chance per Frenzy Charge", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2948375275", + ["text"] = "#% increased Critical Strike Chance per Grand Spectrum", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2620656067", + ["text"] = "#% increased Critical Strike Chance while Physical Aegis is depleted", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3357049845", + ["text"] = "#% increased Critical Strike Chance while affected by Wrath", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1051688002", + ["text"] = "#% increased Critical Strike Chance while area is not in Lockdown Players have #% increased Critical Strike Chance while area is not in Lockdown", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2815652613", + ["text"] = "#% increased Critical Strike Chance while you have Avatar of Fire", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_578121324", + ["text"] = "#% increased Critical Strike Chance while you have at least 200 Intelligence", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2091591880", + ["text"] = "#% increased Critical Strike Chance with Bows", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3337344042", + ["text"] = "#% increased Critical Strike Chance with Cold Skills", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_439950087", + ["text"] = "#% increased Critical Strike Chance with Elemental Skills", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1104796138", + ["text"] = "#% increased Critical Strike Chance with Fire Skills", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1186596295", + ["text"] = "#% increased Critical Strike Chance with Lightning Skills", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2381842786", + ["text"] = "#% increased Critical Strike Chance with One Handed Melee Weapons", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2897207025", + ["text"] = "#% increased Critical Strike Chance with Spells which remove the maximum number of Seals", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1192661666", + ["text"] = "#% increased Critical Strike Chance with Traps", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_764295120", + ["text"] = "#% increased Critical Strike Chance with Two Handed Melee Weapons", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_778036553", + ["text"] = "#% increased Critical Strike Chance with Vaal Skills during effect", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4169623196", + ["text"] = "#% increased Critical Strike Chance with arrows that Fork", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3824372849", + ["text"] = "#% increased Curse Duration", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2154246560", + ["text"] = "#% increased Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1140739168", + ["text"] = "#% increased Damage Over Time during Effect", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2947215268", + ["text"] = "#% increased Damage during any Flask Effect", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_886366428", + ["text"] = "#% increased Damage for each Magic Item Equipped", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1034580601", + ["text"] = "#% increased Damage for each Poison on you up to a maximum of 75%", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_154272030", + ["text"] = "#% increased Damage for each type of Abyss Jewel affecting you", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3384291300", + ["text"] = "#% increased Damage if you Summoned a Golem in the past 8 seconds", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2118708619", + ["text"] = "#% increased Damage if you have Consumed a corpse Recently", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_908650225", + ["text"] = "#% increased Damage if you have Shocked an Enemy Recently", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1064477264", + ["text"] = "#% increased Damage if you've Frozen an Enemy Recently", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1072119541", + ["text"] = "#% increased Damage if you've Killed Recently", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_430821956", + ["text"] = "#% increased Damage if you've been Ignited Recently", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3098087057", + ["text"] = "#% increased Damage on Burning Ground", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_967627487", + ["text"] = "#% increased Damage over Time", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_214001793", + ["text"] = "#% increased Damage over Time while Dual Wielding", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1244360317", + ["text"] = "#% increased Damage over Time while holding a Shield", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4193088553", + ["text"] = "#% increased Damage over Time while wielding a Two Handed Weapon", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3400437584", + ["text"] = "#% increased Damage per 1% Chance to Block Attack Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2062174346", + ["text"] = "#% increased Damage per 15 Dexterity", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3801128794", + ["text"] = "#% increased Damage per 15 Intelligence", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3948776386", + ["text"] = "#% increased Damage per 15 Strength", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_35476451", + ["text"] = "#% increased Damage per 5 of your lowest Attribute", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1019038967", + ["text"] = "#% increased Damage per Crab Barrier", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1019020209", + ["text"] = "#% increased Damage per Curse on you", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3515686789", + ["text"] = "#% increased Damage per Endurance Charge", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_902747843", + ["text"] = "#% increased Damage per Frenzy Charge", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1696792323", + ["text"] = "#% increased Damage per Frenzy Charge with Hits against Enemies on Low Life", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2034658008", + ["text"] = "#% increased Damage per Power Charge", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3868443508", + ["text"] = "#% increased Damage per Raised Zombie", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3691641145", + ["text"] = "#% increased Damage taken", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2156764291", + ["text"] = "#% increased Damage taken from Ghosts", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_705686721", + ["text"] = "#% increased Damage taken from Skeletons", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3616645755", + ["text"] = "#% increased Damage taken if you've been Frozen Recently", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1625103793", + ["text"] = "#% increased Damage taken per Frenzy Charge", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_146268648", + ["text"] = "#% increased Damage taken while Phasing", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_969865219", + ["text"] = "#% increased Damage taken while on Full Energy Shield", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_592020238", + ["text"] = "#% increased Damage when on Full Life", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1513447578", + ["text"] = "#% increased Damage when on Low Life", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1686122637", + ["text"] = "#% increased Damage while Ignited", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_310246444", + ["text"] = "#% increased Damage while Leeching", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_529432426", + ["text"] = "#% increased Damage while Shocked", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1312481589", + ["text"] = "#% increased Damage while area is not in Lockdown Players deal #% increased Damage while area is not in Lockdown", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1704905020", + ["text"] = "#% increased Damage while on Consecrated Ground", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_414379784", + ["text"] = "#% increased Damage while you have no Energy Shield", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3905661226", + ["text"] = "#% increased Damage while you have no Frenzy Charges", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_690707482", + ["text"] = "#% increased Damage with Ailments", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2418574586", + ["text"] = "#% increased Damage with Ailments per Elder Item Equipped", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3314142259", + ["text"] = "#% increased Damage with Axes", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1294118672", + ["text"] = "#% increased Damage with Bleeding", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1241625305", + ["text"] = "#% increased Damage with Bow Skills", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4188894176", + ["text"] = "#% increased Damage with Bows", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1069260037", + ["text"] = "#% increased Damage with Claws", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1629782265", + ["text"] = "#% increased Damage with Claws while on Low Life", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3586984690", + ["text"] = "#% increased Damage with Daggers", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2805714016", + ["text"] = "#% increased Damage with Hits against Chilled Enemies", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3708045494", + ["text"] = "#% increased Damage with Hits against Enemies on Full Life", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1196902248", + ["text"] = "#% increased Damage with Hits against Frozen Enemies", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1278047991", + ["text"] = "#% increased Damage with Hits against Magic monsters", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2137878565", + ["text"] = "#% increased Damage with Hits against Rare monsters", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4194900521", + ["text"] = "#% increased Damage with Hits against Shocked Enemies", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3257279374", + ["text"] = "#% increased Damage with Hits and Ailments against Abyssal Monsters", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1790172543", + ["text"] = "#% increased Damage with Hits and Ailments against Bleeding Enemies", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3503466234", + ["text"] = "#% increased Damage with Hits and Ailments against Blinded Enemies", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3565956680", + ["text"] = "#% increased Damage with Hits and Ailments against Blinded Enemies", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3747189159", + ["text"] = "#% increased Damage with Hits and Ailments against Chilled Enemies", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_539970476", + ["text"] = "#% increased Damage with Hits and Ailments against Cursed Enemies", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_103928310", + ["text"] = "#% increased Damage with Hits and Ailments against Enemies affected by 3 Spider's Webs", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_528422616", + ["text"] = "#% increased Damage with Hits and Ailments against Hindered Enemies", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_485151258", + ["text"] = "#% increased Damage with Hits and Ailments against Ignited Enemies", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2001747092", + ["text"] = "#% increased Damage with Hits and Ailments against Marked Enemy", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1818773442", + ["text"] = "#% increased Damage with Hits and Ailments per Curse on Enemy", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4229711086", + ["text"] = "#% increased Damage with Hits and Ailments per Freeze, Shock or Ignite on Enemy", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1891782369", + ["text"] = "#% increased Damage with Ignite inflicted on Chilled Enemies", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1181419800", + ["text"] = "#% increased Damage with Maces or Sceptres", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_856021430", + ["text"] = "#% increased Damage with Movement Skills", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1583385065", + ["text"] = "#% increased Damage with Non-Vaal Skills during Soul Gain Prevention", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1010549321", + ["text"] = "#% increased Damage with One Handed Weapons", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1290399200", + ["text"] = "#% increased Damage with Poison", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_256730087", + ["text"] = "#% increased Damage with Poison if you have at least 300 Dexterity", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1221011086", + ["text"] = "#% increased Damage with Poison per Frenzy Charge", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4230767876", + ["text"] = "#% increased Damage with Poison per Power Charge", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4087089130", + ["text"] = "#% increased Damage with Staves", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_83050999", + ["text"] = "#% increased Damage with Swords", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1836374041", + ["text"] = "#% increased Damage with Two Handed Weapons", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2257141320", + ["text"] = "#% increased Damage with Vaal Skills", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4067144129", + ["text"] = "#% increased Damage with Vaal Skills during effect", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_379328644", + ["text"] = "#% increased Damage with Wands", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2678065384", + ["text"] = "#% increased Deception Experience gained", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2520458995", + ["text"] = "#% increased Deception speed", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1215155013", + ["text"] = "#% increased Defences from Equipped Shield", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2803981661", + ["text"] = "#% increased Defences from Equipped Shield per 10 Devotion", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3169460653", + ["text"] = "#% increased Defences per Minion from your Non-Vaal Skills", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1492314881", + ["text"] = "#% increased Demolition Experience gained", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2847917427", + ["text"] = "#% increased Demolition speed", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4139681126", + ["text"] = "#% increased Dexterity", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2543696990", + ["text"] = "#% increased Dexterity if 2 Redeemer Items are Equipped", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2022724400", + ["text"] = "#% increased Dexterity if Strength is higher than Intelligence", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1256719186", + ["text"] = "#% increased Duration", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_967840105", + ["text"] = "#% increased Duration of Ailments of types you haven't inflicted Recently", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2419712247", + ["text"] = "#% increased Duration of Ailments on Enemies", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1840751341", + ["text"] = "#% increased Duration of Ailments you inflict while Focused", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3571964448", + ["text"] = "#% increased Duration of Cold Ailments", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2920970371", + ["text"] = "#% increased Duration of Curses on you", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4235333770", + ["text"] = "#% increased Duration of Curses on you per 10 Devotion", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3284469689", + ["text"] = "#% increased Duration of Elemental Ailments from Melee Weapon Attacks", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2604619892", + ["text"] = "#% increased Duration of Elemental Ailments on Enemies", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_287112619", + ["text"] = "#% increased Duration of Elemental Ailments on You while affected by a Rare Abyss Jewel", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1484471543", + ["text"] = "#% increased Duration of Lightning Ailments", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_510304734", + ["text"] = "#% increased Duration of Poisons you inflict during Effect", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_495713612", + ["text"] = "#% increased Duration of Shrine Effects on Players", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_495713612", + ["text"] = "#% increased Duration of Shrine Effects on Players in your Maps", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1877661946", + ["text"] = "#% increased Duration of Shrine Effects on you", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3015437071", + ["text"] = "#% increased Effect of Arcane Surge on you", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1012072406", + ["text"] = "#% increased Effect of Arcane Surge on you per Hypnotic Eye Jewel affecting you, up to a maximum of 40%", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1808477254", + ["text"] = "#% increased Effect of Arcane Surge on you while affected by Clarity", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2121424530", + ["text"] = "#% increased Effect of Auras from Mines", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2813516522", + ["text"] = "#% increased Effect of Buffs granted by Socketed Golem Skills", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2109043683", + ["text"] = "#% increased Effect of Buffs granted by your Golems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_306104305", + ["text"] = "#% increased Effect of Buffs on you", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1027887872", + ["text"] = "#% increased Effect of Buffs your Ancestor Totems grant while Active", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_828179689", + ["text"] = "#% increased Effect of Chill", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1984113628", + ["text"] = "#% increased Effect of Chill and Shock on you", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2134166669", + ["text"] = "#% increased Effect of Chilled Ground", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_898270877", + ["text"] = "#% increased Effect of Chills you inflict while Leeching Mana", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1793818220", + ["text"] = "#% increased Effect of Cold Ailments", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4058190193", + ["text"] = "#% increased Effect of Consecrated Ground you create", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1661698405", + ["text"] = "#% increased Effect of Curses on Monsters", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3444629796", + ["text"] = "#% increased Effect of Curses on you while on Consecrated Ground", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3545269928", + ["text"] = "#% increased Effect of Elusive on you per Power Charge", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2069161757", + ["text"] = "#% increased Effect of Freeze on you", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_870531513", + ["text"] = "#% increased Effect of Herald Buffs on you", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1480595847", + ["text"] = "#% increased Effect of Impales inflicted with Spells", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_461663422", + ["text"] = "#% increased Effect of Jewel Socket Passive Skills containing Corrupted Magic Jewels", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3081816887", + ["text"] = "#% increased Effect of Lightning Ailments", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1636209393", + ["text"] = "#% increased Effect of Non-Curse Auras from your Skills on Enemies", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3995650818", + ["text"] = "#% increased Effect of Non-Curse Auras from your Skills while you have a Linked Target", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_782230869", + ["text"] = "#% increased Effect of Non-Damaging Ailments", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1268010771", + ["text"] = "#% increased Effect of Non-Damaging Ailments inflicted by Summoned Skitterbots", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1519474779", + ["text"] = "#% increased Effect of Non-Damaging Ailments on you", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4133552694", + ["text"] = "#% increased Effect of Non-Damaging Ailments per Elder Item Equipped", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1122693835", + ["text"] = "#% increased Effect of Non-Damaging Ailments you inflict during Effect", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1572854306", + ["text"] = "#% increased Effect of Non-Damaging Ailments you inflict with Critical Strikes per 100 Player Maximum Life", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3151397056", + ["text"] = "#% increased Effect of Onslaught on you", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_344570534", + ["text"] = "#% increased Effect of Scorch", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2527686725", + ["text"] = "#% increased Effect of Shock", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1878455805", + ["text"] = "#% increased Effect of Shock on you during Effect", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3338065776", + ["text"] = "#% increased Effect of Shocks you inflict during Effect", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3578946428", + ["text"] = "#% increased Effect of Shocks you inflict while Leeching Energy Shield", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_866902458", + ["text"] = "#% increased Effect of Shrine Buffs on Players", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_866902458", + ["text"] = "#% increased Effect of Shrine Buffs on Players in your Maps", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1939175721", + ["text"] = "#% increased Effect of Shrine Buffs on you", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1482572705", + ["text"] = "#% increased Effect of Socketed Abyss Jewels", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2526952837", + ["text"] = "#% increased Effect of Socketed Magic Ghastly Eye Jewels", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_654501336", + ["text"] = "#% increased Effect of Socketed Magic Hypnotic Eye Jewels", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3949536301", + ["text"] = "#% increased Effect of Socketed Magic Murderous Eye Jewels", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1938324031", + ["text"] = "#% increased Effect of Socketed Magic Searching Eye Jewels", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1974290842", + ["text"] = "#% increased Effect of Socketed Rare Ghastly Eye Jewels", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1337730278", + ["text"] = "#% increased Effect of Socketed Rare Hypnotic Eye Jewels", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1217940944", + ["text"] = "#% increased Effect of Socketed Rare Murderous Eye Jewels", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3524275808", + ["text"] = "#% increased Effect of Socketed Rare Searching Eye Jewels", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2172944497", + ["text"] = "#% increased Effect of Tailwind on you", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2545584555", + ["text"] = "#% increased Effect of Withered", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1810368194", + ["text"] = "#% increased Effect of non-Damaging Ailments on Enemies per 10 Devotion", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3772078232", + ["text"] = "#% increased Effect of non-Damaging Ailments you inflict with Critical Strikes", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_607548408", + ["text"] = "#% increased Effect of non-Keystone Passive Skills in Radius", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2353576063", + ["text"] = "#% increased Effect of your Curses", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_803185500", + ["text"] = "#% increased Effect of your Marks", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3141070085", + ["text"] = "#% increased Elemental Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3150967823", + ["text"] = "#% increased Elemental Damage during any Flask Effect", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2803182108", + ["text"] = "#% increased Elemental Damage if you've Warcried Recently", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2379781920", + ["text"] = "#% increased Elemental Damage if you've dealt a Critical Strike Recently", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1138456002", + ["text"] = "#% increased Elemental Damage per 1% Fire, Cold, or Lightning Resistance above 75%", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_64913248", + ["text"] = "#% increased Elemental Damage per 1% Missing Fire, Cold, or Lightning Resistance, up to a maximum of 450%", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3103189267", + ["text"] = "#% increased Elemental Damage per 10 Devotion", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_963261439", + ["text"] = "#% increased Elemental Damage per 10 Dexterity", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1586440250", + ["text"] = "#% increased Elemental Damage per Frenzy Charge", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3163738488", + ["text"] = "#% increased Elemental Damage per Grand Spectrum", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2094646950", + ["text"] = "#% increased Elemental Damage per Level", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1482070333", + ["text"] = "#% increased Elemental Damage per Power charge", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1669135888", + ["text"] = "#% increased Elemental Damage per Sextant affecting the area", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2734809852", + ["text"] = "#% increased Elemental Damage taken", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_387439868", + ["text"] = "#% increased Elemental Damage with Attack Skills", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_782323220", + ["text"] = "#% increased Elemental Damage with Attack Skills during any Flask Effect", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4116409626", + ["text"] = "#% increased Elemental Damage with Attack Skills per Power Charge", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2605663324", + ["text"] = "#% increased Elemental Damage with Hits and Ailments for each type of Elemental Ailment on Enemy", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_240857668", + ["text"] = "#% increased Elusive Effect", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2377438118", + ["text"] = "#% increased Empowerment", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1170174456", + ["text"] = "#% increased Endurance Charge Duration", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2839036860", + ["text"] = "#% increased Endurance, Frenzy and Power Charge Duration", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4015621042", + ["text"] = "#% increased Energy Shield (Local)", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2339757871", + ["text"] = "#% increased Energy Shield Recharge Rate", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1827657795", + ["text"] = "#% increased Energy Shield Recharge Rate during any Flask Effect", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2698606393", + ["text"] = "#% increased Energy Shield Recovery Rate if you haven't Killed Recently", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_80470845", + ["text"] = "#% increased Energy Shield Recovery Rate while affected by Discipline", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_988575597", + ["text"] = "#% increased Energy Shield Recovery rate", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1195319608", + ["text"] = "#% increased Energy Shield from Equipped Body Armour", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_506942497", + ["text"] = "#% increased Energy Shield per 10 Strength", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2189382346", + ["text"] = "#% increased Energy Shield per Power Charge", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1372426763", + ["text"] = "#% increased Engineering Experience gained", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3211817426", + ["text"] = "#% increased Engineering speed", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2106365538", + ["text"] = "#% increased Evasion Rating", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_124859000", + ["text"] = "#% increased Evasion Rating (Local)", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3366029652", + ["text"] = "#% increased Evasion Rating and Armour", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_299054775", + ["text"] = "#% increased Evasion Rating during Effect", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_156734303", + ["text"] = "#% increased Evasion Rating during Onslaught", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1073310669", + ["text"] = "#% increased Evasion Rating if you have been Hit Recently", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_237513297", + ["text"] = "#% increased Evasion Rating if you've Cast Dash recently", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_810772344", + ["text"] = "#% increased Evasion Rating per 10 Intelligence", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3147253569", + ["text"] = "#% increased Evasion Rating per 500 Maximum Mana", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_660404777", + ["text"] = "#% increased Evasion Rating per Frenzy Charge", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3839620417", + ["text"] = "#% increased Evasion Rating while Focused", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_402176724", + ["text"] = "#% increased Evasion Rating while Phasing", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_734823525", + ["text"] = "#% increased Evasion Rating while moving", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1999113824", + ["text"] = "#% increased Evasion and Energy Shield (Local)", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_47271484", + ["text"] = "#% increased Experience Gain for Corrupted Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3808869043", + ["text"] = "#% increased Experience Gain of Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3666934677", + ["text"] = "#% increased Experience gain", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_57434274", + ["text"] = "#% increased Experience gain (Maps)", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1539368271", + ["text"] = "#% increased Explosive Placement Range", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1539368271", + ["text"] = "#% increased Explosive Placement Range in your Maps", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3289828378", + ["text"] = "#% increased Explosive Radius", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3289828378", + ["text"] = "#% increased Explosive Radius in your Maps", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3962278098", + ["text"] = "#% increased Fire Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4167600809", + ["text"] = "#% increased Fire Damage if you have used a Cold Skill Recently", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1060236362", + ["text"] = "#% increased Fire Damage per 1% Missing Fire Resistance, up to a maximum of 300%", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2241902512", + ["text"] = "#% increased Fire Damage per 20 Strength", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3743301799", + ["text"] = "#% increased Fire Damage taken", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3337107517", + ["text"] = "#% increased Fire Damage while affected by Anger", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2775776604", + ["text"] = "#% increased Fire Damage while affected by Herald of Ash", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3703926412", + ["text"] = "#% increased Fire Damage with Hits and Ailments against Bleeding Enemies", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1601181226", + ["text"] = "#% increased Fire Damage with Hits and Ailments against Blinded Enemies", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1680060098", + ["text"] = "#% increased Fire Resistance", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1296614065", + ["text"] = "#% increased Fish Bite Sensitivity", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1842038569", + ["text"] = "#% increased Fishing Line Strength", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_170497091", + ["text"] = "#% increased Fishing Range", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1452809865", + ["text"] = "#% increased Flask Charges gained", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_662803072", + ["text"] = "#% increased Flask Charges gained during any Flask Effect", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_6637015", + ["text"] = "#% increased Flask Charges gained from Kills with Melee Weapons", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3741323227", + ["text"] = "#% increased Flask Effect Duration", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_981878473", + ["text"] = "#% increased Flask Effect Duration per Level", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_51994685", + ["text"] = "#% increased Flask Life Recovery rate", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1412217137", + ["text"] = "#% increased Flask Mana Recovery rate", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2966206079", + ["text"] = "#% increased Fortification Duration", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1073942215", + ["text"] = "#% increased Freeze Duration on Enemies", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_774474440", + ["text"] = "#% increased Freeze Duration on you during Effect", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3338298622", + ["text"] = "#% increased Frenzy Charge Duration", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_624954515", + ["text"] = "#% increased Global Accuracy Rating", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3827349913", + ["text"] = "#% increased Global Armour while you have no Energy Shield", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_250876318", + ["text"] = "#% increased Global Attack Speed per Green Socket", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_587431675", + ["text"] = "#% increased Global Critical Strike Chance", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3081076859", + ["text"] = "#% increased Global Critical Strike Chance per Level", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3404168630", + ["text"] = "#% increased Global Critical Strike Chance when in Main Hand", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_819529588", + ["text"] = "#% increased Global Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1389153006", + ["text"] = "#% increased Global Defences", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2939710712", + ["text"] = "#% increased Global Defences if there are no Defence Modifiers on other Equipped Items", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_967108924", + ["text"] = "#% increased Global Defences per White Socket", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_88817332", + ["text"] = "#% increased Global Evasion Rating when on Full Life", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2695354435", + ["text"] = "#% increased Global Evasion Rating when on Low Life", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1310194496", + ["text"] = "#% increased Global Physical Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2614654450", + ["text"] = "#% increased Global Physical Damage while Frozen", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2112615899", + ["text"] = "#% increased Global Physical Damage with Weapons per Red Socket", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1381972535", + ["text"] = "#% increased Global maximum Energy Shield and reduced Lightning Resistance", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2114157293", + ["text"] = "#% increased Golem Damage for each Type of Golem you have Summoned", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2280669536", + ["text"] = "#% increased Graftblood gained", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3309881096", + ["text"] = "#% increased Graftblood stored", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3022689249", + ["text"] = "#% increased Heist Contracts found in your Maps", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3910961021", + ["text"] = "#% increased Herald of Ice Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2164793549", + ["text"] = "#% increased Hiring Fee for Agility Jobs", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1018753640", + ["text"] = "#% increased Hiring Fee for Brute Force Jobs", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3063943261", + ["text"] = "#% increased Hiring Fee for Counter-Thaumaturgy Jobs", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2506681313", + ["text"] = "#% increased Hiring Fee for Deception Jobs", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3680061663", + ["text"] = "#% increased Hiring Fee for Demolition Jobs", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2956083810", + ["text"] = "#% increased Hiring Fee for Engineering Jobs", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3391299828", + ["text"] = "#% increased Hiring Fee for Lockpicking Jobs", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2885031631", + ["text"] = "#% increased Hiring Fee for Perception Jobs", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2872715880", + ["text"] = "#% increased Hiring Fee for Trap Disarmament Jobs", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2257592286", + ["text"] = "#% increased Hiring Fee of Rogues", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1086147743", + ["text"] = "#% increased Ignite Duration on Enemies", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3986342559", + ["text"] = "#% increased Impale Duration", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_298173317", + ["text"] = "#% increased Impale Effect", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2304729532", + ["text"] = "#% increased Implicit Modifier magnitudes", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_656461285", + ["text"] = "#% increased Intelligence", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_18234720", + ["text"] = "#% increased Intelligence Requirement", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4207939995", + ["text"] = "#% increased Intelligence for each Unique Item Equipped", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1682417271", + ["text"] = "#% increased Intelligence gained from Immortal Syndicate targets", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1682417271", + ["text"] = "#% increased Intelligence gained from Immortal Syndicate targets encountered in your Maps", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2531873276", + ["text"] = "#% increased Intelligence if 2 Crusader Items are Equipped", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2340173293", + ["text"] = "#% increased Item Quantity per White Socket", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_144675621", + ["text"] = "#% increased Item Rarity per White Socket", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3569230441", + ["text"] = "#% increased Job Experience gain", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2978905446", + ["text"] = "#% increased Job speed", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_565784293", + ["text"] = "#% increased Knockback Distance", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1261982764", + ["text"] = "#% increased Life Recovered", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3353368340", + ["text"] = "#% increased Life Recovery Rate if you haven't Killed Recently", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_235105674", + ["text"] = "#% increased Life Recovery Rate per 10 Strength on Allocated Passives in Radius", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4144221848", + ["text"] = "#% increased Life Recovery Rate per 10 Strength on Unallocated Passives in Radius", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2690790844", + ["text"] = "#% increased Life Recovery Rate while affected by Vitality", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_821241191", + ["text"] = "#% increased Life Recovery from Flasks", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_362838683", + ["text"] = "#% increased Life Recovery from Flasks while affected by Vitality", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3240073117", + ["text"] = "#% increased Life Recovery rate", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_44972811", + ["text"] = "#% increased Life Regeneration rate", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_635485889", + ["text"] = "#% increased Life Reservation Efficiency of Skills", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1263695895", + ["text"] = "#% increased Light Radius", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2745936267", + ["text"] = "#% increased Light Radius during Effect", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2231156303", + ["text"] = "#% increased Lightning Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2642525868", + ["text"] = "#% increased Lightning Damage per 1% Lightning Resistance above 75%", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_990219738", + ["text"] = "#% increased Lightning Damage per 10 Intelligence", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3693130674", + ["text"] = "#% increased Lightning Damage per Frenzy Charge", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_536957", + ["text"] = "#% increased Lightning Damage while affected by Herald of Thunder", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_418293304", + ["text"] = "#% increased Lightning Damage while affected by Wrath", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4208907162", + ["text"] = "#% increased Lightning Damage with Attack Skills", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2249211872", + ["text"] = "#% increased Lightning Resistance", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2316712523", + ["text"] = "#% increased Lockpicking Experience gained", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3312732077", + ["text"] = "#% increased Lockpicking speed", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3873704640", + ["text"] = "#% increased Magic Monsters", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3454830051", + ["text"] = "#% increased Main Hand Critical Strike Chance per Murderous Eye Jewel affecting you, up to a maximum of 200%", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_683273571", + ["text"] = "#% increased Mana Cost of Skills during Effect", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1375431760", + ["text"] = "#% increased Mana Cost of Skills for 2 seconds after Spending a total of 800 Mana", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1811130680", + ["text"] = "#% increased Mana Recovered", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_630994130", + ["text"] = "#% increased Mana Recovery Rate if you haven't Killed Recently", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_514215387", + ["text"] = "#% increased Mana Recovery Rate per 10 Intelligence on Allocated Passives in Radius", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1439347620", + ["text"] = "#% increased Mana Recovery Rate per 10 Intelligence on Unallocated Passives in Radius", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_556659145", + ["text"] = "#% increased Mana Recovery Rate while affected by Clarity", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2222186378", + ["text"] = "#% increased Mana Recovery from Flasks", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3513180117", + ["text"] = "#% increased Mana Recovery rate", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_789117908", + ["text"] = "#% increased Mana Regeneration Rate", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2993091567", + ["text"] = "#% increased Mana Regeneration Rate during any Flask Effect", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2847548062", + ["text"] = "#% increased Mana Regeneration Rate per Power Charge", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2666795121", + ["text"] = "#% increased Mana Regeneration Rate per Raised Spectre", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2076519255", + ["text"] = "#% increased Mana Regeneration Rate while Shocked", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1327522346", + ["text"] = "#% increased Mana Regeneration Rate while moving", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3308030688", + ["text"] = "#% increased Mana Regeneration Rate while stationary", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_443165947", + ["text"] = "#% increased Mana Reservation Efficiency of Curse Aura Skills", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_714566414", + ["text"] = "#% increased Mana Reservation Efficiency of Curse Aura Skills", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3078295401", + ["text"] = "#% increased Mana Reservation Efficiency of Herald Skills", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1269219558", + ["text"] = "#% increased Mana Reservation Efficiency of Skills", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4237190083", + ["text"] = "#% increased Mana Reservation Efficiency of Skills", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3305838454", + ["text"] = "#% increased Mana Reservation Efficiency of Skills Supported by Spellslinger", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1212083058", + ["text"] = "#% increased Mana Reservation Efficiency of Skills per 250 total Attributes", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2676451350", + ["text"] = "#% increased Mana Reservation Efficiency of Skills per 250 total Attributes", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2227180465", + ["text"] = "#% increased Mana Reservation of Skills", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2777224821", + ["text"] = "#% increased Maps found in your Maps", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3916980068", + ["text"] = "#% increased Maximum Energy Shield for each Corrupted Item Equipped", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4169430079", + ["text"] = "#% increased Maximum Life for each Corrupted Item Equipped", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2217962305", + ["text"] = "#% increased Maximum Life if no Equipped Items are Corrupted", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3185671537", + ["text"] = "#% increased Maximum Life per Abyss Jewel affecting you", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_332217711", + ["text"] = "#% increased Maximum Life per Grand Spectrum", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2135370196", + ["text"] = "#% increased Maximum Mana per Abyss Jewel affecting you", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3589396689", + ["text"] = "#% increased Maximum Recovery per Energy Shield Leech", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3101897388", + ["text"] = "#% increased Maximum Recovery per Life Leech", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3389810339", + ["text"] = "#% increased Maximum Recovery per Life Leech for each 5% of Life Reserved", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2013799819", + ["text"] = "#% increased Maximum total Energy Shield Recovery per second from Leech", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2731416566", + ["text"] = "#% increased Maximum total Energy Shield Recovery per second from Leech while affected by Zealotry", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3848992177", + ["text"] = "#% increased Maximum total Energy Shield Recovery per second from Leech while affected by Zealotry", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2916634441", + ["text"] = "#% increased Maximum total Life Recovery per second from Leech", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4118987751", + ["text"] = "#% increased Maximum total Life Recovery per second from Leech", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_96977651", + ["text"] = "#% increased Maximum total Mana Recovery per second from Leech", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1199429645", + ["text"] = "#% increased Melee Critical Strike Chance", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1002362373", + ["text"] = "#% increased Melee Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1282978314", + ["text"] = "#% increased Melee Damage against Bleeding Enemies", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4091369450", + ["text"] = "#% increased Melee Damage during any Flask Effect", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1275066948", + ["text"] = "#% increased Melee Damage per Endurance Charge", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3579807004", + ["text"] = "#% increased Melee Damage when on Full Life", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3630160064", + ["text"] = "#% increased Melee Fire Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1332534089", + ["text"] = "#% increased Melee Physical Damage against Ignited Enemies", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2355151849", + ["text"] = "#% increased Melee Physical Damage per 10 Dexterity", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3501769159", + ["text"] = "#% increased Melee Physical Damage while holding a Shield", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2038105340", + ["text"] = "#% increased Melee Weapon Attack Speed", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_259714394", + ["text"] = "#% increased Melee Weapon Damage against Enemies that are on Low Life", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3362665206", + ["text"] = "#% increased Mine Arming Speed", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2137912951", + ["text"] = "#% increased Mine Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_117667746", + ["text"] = "#% increased Mine Duration", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1896971621", + ["text"] = "#% increased Mine Throwing Speed", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1718147982", + ["text"] = "#% increased Minion Accuracy Rating", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4047895119", + ["text"] = "#% increased Minion Attack Speed per 50 Dexterity", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3808469650", + ["text"] = "#% increased Minion Attack and Cast Speed per 10 Devotion", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_729367217", + ["text"] = "#% increased Minion Attack and Cast Speed per Skeleton you own", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3191537057", + ["text"] = "#% increased Minion Damage per Raised Spectre", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_999511066", + ["text"] = "#% increased Minion Duration", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_777246604", + ["text"] = "#% increased Minion Duration per Raised Zombie", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4017879067", + ["text"] = "#% increased Minion Movement Speed per 50 Dexterity", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3663580344", + ["text"] = "#% increased Mirage Archer Duration", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1913583994", + ["text"] = "#% increased Monster Attack Speed", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2488361432", + ["text"] = "#% increased Monster Cast Speed", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1890519597", + ["text"] = "#% increased Monster Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2306522833", + ["text"] = "#% increased Monster Movement Speed", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2250533757", + ["text"] = "#% increased Movement Speed", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3182498570", + ["text"] = "#% increased Movement Speed during Effect", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_304970526", + ["text"] = "#% increased Movement Speed during any Flask Effect", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3102860761", + ["text"] = "#% increased Movement Speed for # seconds on Throwing a Trap", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1360723495", + ["text"] = "#% increased Movement Speed for each Poison on you up to a maximum of 50%", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1426967889", + ["text"] = "#% increased Movement Speed for each nearby Enemy, up to a maximum of 50%", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3410049114", + ["text"] = "#% increased Movement Speed for you and nearby Allies", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_502694677", + ["text"] = "#% increased Movement Speed if 4 Hunter Items are Equipped", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1285172810", + ["text"] = "#% increased Movement Speed if you have used a Vaal Skill Recently", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1177358866", + ["text"] = "#% increased Movement Speed if you haven't been Hit Recently", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_308396001", + ["text"] = "#% increased Movement Speed if you haven't been Hit Recently", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3854949926", + ["text"] = "#% increased Movement Speed if you haven't taken Damage Recently", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2659793306", + ["text"] = "#% increased Movement Speed if you've Cast Dash recently", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3178542354", + ["text"] = "#% increased Movement Speed if you've Hit an Enemy Recently", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_279227559", + ["text"] = "#% increased Movement Speed if you've Killed Recently", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2546417825", + ["text"] = "#% increased Movement Speed if you've Warcried Recently", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3678841229", + ["text"] = "#% increased Movement Speed on Shocked Ground", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1795365307", + ["text"] = "#% increased Movement Speed per 10 Dexterity on Allocated Passives in Radius", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4169318921", + ["text"] = "#% increased Movement Speed per 10 Dexterity on Unallocated Passives in Radius", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2116250000", + ["text"] = "#% increased Movement Speed per Endurance Charge", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1541516339", + ["text"] = "#% increased Movement Speed per Frenzy Charge", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3774108776", + ["text"] = "#% increased Movement Speed per Power Charge", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3393547195", + ["text"] = "#% increased Movement Speed when on Full Life", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_649025131", + ["text"] = "#% increased Movement Speed when on Low Life", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_696659555", + ["text"] = "#% increased Movement Speed while Bleeding", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2203777380", + ["text"] = "#% increased Movement Speed while Chilled", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_581625445", + ["text"] = "#% increased Movement Speed while Ignited", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3684879618", + ["text"] = "#% increased Movement Speed while Phasing", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3265807022", + ["text"] = "#% increased Movement Speed while Poisoned", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_542923416", + ["text"] = "#% increased Movement Speed while Shocked", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3329402420", + ["text"] = "#% increased Movement Speed while affected by Grace", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3874817029", + ["text"] = "#% increased Movement Speed while affected by a Magic Abyss Jewel", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_902577520", + ["text"] = "#% increased Movement Speed while area is not in Lockdown Players have #% increased Movement Speed while area is not in Lockdown", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2825197711", + ["text"] = "#% increased Movement Speed while on Full Energy Shield", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_673704994", + ["text"] = "#% increased Movement Speed while you have Cat's Stealth", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1521863824", + ["text"] = "#% increased Movement speed while on Burning, Chilled or Shocked ground", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2017682521", + ["text"] = "#% increased Pack Size in your Maps", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_631736299", + ["text"] = "#% increased Pack Size of your Maps affected by Fortune Favours the Brave", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_154668190", + ["text"] = "#% increased Perception Experience gained", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1456551059", + ["text"] = "#% increased Perception speed", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1274831335", + ["text"] = "#% increased Physical Attack Damage while Dual Wielding", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1509134228", + ["text"] = "#% increased Physical Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_555311393", + ["text"] = "#% increased Physical Damage Over Time per 10 Dexterity", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1692565595", + ["text"] = "#% increased Physical Damage over Time", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2481358827", + ["text"] = "#% increased Physical Damage per Endurance Charge", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3853018505", + ["text"] = "#% increased Physical Damage taken", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3294232483", + ["text"] = "#% increased Physical Damage while affected by Herald of Purity", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_576528026", + ["text"] = "#% increased Physical Damage while using Pride", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1258679667", + ["text"] = "#% increased Physical Damage while you have Resolute Technique", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2008219439", + ["text"] = "#% increased Physical Damage with Axes", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_402920808", + ["text"] = "#% increased Physical Damage with Bows", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_635761691", + ["text"] = "#% increased Physical Damage with Claws", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3882531569", + ["text"] = "#% increased Physical Damage with Daggers", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3375415245", + ["text"] = "#% increased Physical Damage with Hits and Ailments against Ignited Enemies", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3774831856", + ["text"] = "#% increased Physical Damage with Maces or Sceptres", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1334465904", + ["text"] = "#% increased Physical Damage with One Handed Melee Weapons", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_766615564", + ["text"] = "#% increased Physical Damage with Ranged Weapons", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3150705301", + ["text"] = "#% increased Physical Damage with Staves", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3814560373", + ["text"] = "#% increased Physical Damage with Swords", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2056783069", + ["text"] = "#% increased Physical Damage with Two Handed Melee Weapons", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2769075491", + ["text"] = "#% increased Physical Damage with Wands", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2594215131", + ["text"] = "#% increased Physical Weapon Damage per 10 Strength", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2011656677", + ["text"] = "#% increased Poison Duration", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_86516932", + ["text"] = "#% increased Poison Duration for each Poison you have inflicted Recently, up to a maximum of 100%", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2771181375", + ["text"] = "#% increased Poison Duration if you have at least 150 Intelligence", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3301100256", + ["text"] = "#% increased Poison Duration on you", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3491499175", + ["text"] = "#% increased Poison Duration per Power Charge", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3872306017", + ["text"] = "#% increased Power Charge Duration", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2162876159", + ["text"] = "#% increased Projectile Attack Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2771016039", + ["text"] = "#% increased Projectile Attack Damage during any Flask Effect", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4157767905", + ["text"] = "#% increased Projectile Attack Damage per 200 Accuracy Rating", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1822142649", + ["text"] = "#% increased Projectile Attack Damage while you have at least 200 Dexterity", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1839076647", + ["text"] = "#% increased Projectile Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3816512110", + ["text"] = "#% increased Projectile Damage per Power Charge", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2982500944", + ["text"] = "#% increased Projectile Damage while in Blood Stance", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3759663284", + ["text"] = "#% increased Projectile Speed", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3159161267", + ["text"] = "#% increased Projectile Speed per Frenzy Charge", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_624534143", + ["text"] = "#% increased Quantity of Breach Splinters dropped by Breach Monsters in your Maps", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3870984748", + ["text"] = "#% increased Quantity of Breach Splinters found in Breach Hands in your Maps", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1083387327", + ["text"] = "#% increased Quantity of Expedition Logbooks dropped by Runic Monsters", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1083387327", + ["text"] = "#% increased Quantity of Expedition Logbooks dropped by Runic Monsters in your Maps", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3802667447", + ["text"] = "#% increased Quantity of Fish Caught", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_253956903", + ["text"] = "#% increased Quantity of Gold Dropped by Slain Enemies", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3664950032", + ["text"] = "#% increased Quantity of Gold Dropped by Slain Enemies", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3304763863", + ["text"] = "#% increased Quantity of Items Dropped by Slain Frozen Enemies", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1342790450", + ["text"] = "#% increased Quantity of Items Dropped by Slain Normal Enemies", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1054904554", + ["text"] = "#% increased Quantity of Items contained in Strongboxes in your Maps", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2734027184", + ["text"] = "#% increased Quantity of Items dropped by Possessed or Touched Monsters in your Maps", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3683643898", + ["text"] = "#% increased Quantity of Items dropped in Heists", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_725617492", + ["text"] = "#% increased Quantity of Items dropped in Incursions in your Maps", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_884586851", + ["text"] = "#% increased Quantity of Items found", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3736953565", + ["text"] = "#% increased Quantity of Items found during Effect", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2639334413", + ["text"] = "#% increased Quantity of Items found in Perandus Chests in your Maps", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2390685262", + ["text"] = "#% increased Quantity of Items found in your Maps", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2619073196", + ["text"] = "#% increased Quantity of Items found in your Maps affected by Fortune Favours the Brave", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_760855772", + ["text"] = "#% increased Quantity of Items found when on Low Life", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1498954300", + ["text"] = "#% increased Quantity of Items found with a Magic Item Equipped", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1289727785", + ["text"] = "#% increased Quantity of Tainted Currency dropped by Beyond Demons in your Maps", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2934907255", + ["text"] = "#% increased Quantity of Vendor Refresh Currencies dropped by Monsters in Area", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2934907255", + ["text"] = "#% increased Quantity of Vendor Refresh Currencies dropped by Monsters in your Maps", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3415234440", + ["text"] = "#% increased Rage Cost of Skills", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3563667308", + ["text"] = "#% increased Raised Zombie Size", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1406039617", + ["text"] = "#% increased Rampage Streak Duration", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3310914132", + ["text"] = "#% increased Rarity of Fish Caught", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2786105132", + ["text"] = "#% increased Rarity of Items Dropped by Abyssal Troves and Stygian Spires in your Maps", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_21824003", + ["text"] = "#% increased Rarity of Items Dropped by Enemies killed with a Critical Strike", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2138434718", + ["text"] = "#% increased Rarity of Items Dropped by Frozen Enemies", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2695818040", + ["text"] = "#% increased Rarity of Items Dropped by Immortal Syndicate Members in your Maps", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3617935793", + ["text"] = "#% increased Rarity of Items Dropped by Legion Sergeants in your Maps", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3433676080", + ["text"] = "#% increased Rarity of Items Dropped by Slain Magic Enemies", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2161689853", + ["text"] = "#% increased Rarity of Items Dropped by Slain Rare or Unique Enemies", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3188291252", + ["text"] = "#% increased Rarity of Items Dropped by Slain Shocked Enemies", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4105955491", + ["text"] = "#% increased Rarity of Items Dropped by Wild Rogue Exiles in your Maps", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2833896424", + ["text"] = "#% increased Rarity of Items dropped in Heists", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3917489142", + ["text"] = "#% increased Rarity of Items found", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1740200922", + ["text"] = "#% increased Rarity of Items found during Effect", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3251705960", + ["text"] = "#% increased Rarity of Items found during Effect", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_301625329", + ["text"] = "#% increased Rarity of Items found during any Flask Effect", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3967804254", + ["text"] = "#% increased Rarity of Items found from Hiveborn Monsters", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_121185030", + ["text"] = "#% increased Rarity of Items found from Slain Unique Enemies", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2306002879", + ["text"] = "#% increased Rarity of Items found in your Maps", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3433267351", + ["text"] = "#% increased Rarity of Items found in your Maps affected by Fortune Favours the Brave", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3226452989", + ["text"] = "#% increased Rarity of Items found per Mana Burn, up to a maximum of 100%", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2929867083", + ["text"] = "#% increased Rarity of Items found when on Low Life", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4151190513", + ["text"] = "#% increased Rarity of Items found with a Normal Item Equipped", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_655058427", + ["text"] = "#% increased Rarity of Maps found in your Maps", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4187085307", + ["text"] = "#% increased Rarity of items from Defeated Syndicate Members in your Maps per Equipment Item they have", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_173226756", + ["text"] = "#% increased Recovery rate", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1092546321", + ["text"] = "#% increased Recovery rate of Life and Energy Shield", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_604671218", + ["text"] = "#% increased Recovery rate of Life and Energy Shield per Power Charge", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3643449791", + ["text"] = "#% increased Recovery rate of Life and Energy Shield while affected by Malevolence", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2587176568", + ["text"] = "#% increased Reservation Efficiency of Skills", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4202507508", + ["text"] = "#% increased Reservation Efficiency of Skills", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2811179011", + ["text"] = "#% increased Reservation Efficiency of Skills while affected by a Unique Abyss Jewel", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3292930705", + ["text"] = "#% increased Reservation of Curse Aura Skills", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2264523604", + ["text"] = "#% increased Reservation of Skills", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3229976559", + ["text"] = "#% increased Reservation of Skills per 250 total Attributes", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2357136187", + ["text"] = "#% increased Rogue's Marker value of primary Heist Target", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1351268685", + ["text"] = "#% increased Scarabs found in your Maps", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_702909553", + ["text"] = "#% increased Scorching Ray beam length", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3668351662", + ["text"] = "#% increased Shock Duration on Enemies", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2049349490", + ["text"] = "#% increased Size of Synthesised Monster Packs", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3413085237", + ["text"] = "#% increased Skeleton Attack Speed", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2725259389", + ["text"] = "#% increased Skeleton Cast Speed", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1331384105", + ["text"] = "#% increased Skeleton Duration", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3295031203", + ["text"] = "#% increased Skeleton Movement Speed", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3377888098", + ["text"] = "#% increased Skill Effect Duration", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1980613100", + ["text"] = "#% increased Soul Gain Prevention Duration", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_737908626", + ["text"] = "#% increased Spell Critical Strike Chance", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3775574601", + ["text"] = "#% increased Spell Critical Strike Chance per 100 Player Maximum Life", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_495095219", + ["text"] = "#% increased Spell Critical Strike Chance per Raised Spectre", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2974417149", + ["text"] = "#% increased Spell Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2080171093", + ["text"] = "#% increased Spell Damage during any Flask Effect", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_347220474", + ["text"] = "#% increased Spell Damage for each 200 total Mana you have Spent Recently, up to 2000%", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1550015622", + ["text"] = "#% increased Spell Damage if you've dealt a Critical Strike Recently", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_467806158", + ["text"] = "#% increased Spell Damage if you've dealt a Critical Strike in the past 8 seconds", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2921373173", + ["text"] = "#% increased Spell Damage if your opposite Ring is an Elder Item", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2818518881", + ["text"] = "#% increased Spell Damage per 10 Intelligence", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1073314277", + ["text"] = "#% increased Spell Damage per 10 Strength", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3491815140", + ["text"] = "#% increased Spell Damage per 100 Player Maximum Life", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2612056840", + ["text"] = "#% increased Spell Damage per 16 Dexterity", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3961014595", + ["text"] = "#% increased Spell Damage per 16 Intelligence", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4249521944", + ["text"] = "#% increased Spell Damage per 16 Strength", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2449668043", + ["text"] = "#% increased Spell Damage per 5% Chance to Block Attack Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_827329571", + ["text"] = "#% increased Spell Damage per Power Charge", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3557561376", + ["text"] = "#% increased Spell Damage taken when on Low Mana", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1678690824", + ["text"] = "#% increased Spell Damage while Dual Wielding", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1766142294", + ["text"] = "#% increased Spell Damage while holding a Shield", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3779823630", + ["text"] = "#% increased Spell Damage while no Mana is Reserved", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3496944181", + ["text"] = "#% increased Spell Damage while wielding a Staff", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_657708069", + ["text"] = "#% increased Stack size of Rogue's Markers found in your Maps", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2301218725", + ["text"] = "#% increased Stack size of Simulacrum Splinters found in your Maps", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_734614379", + ["text"] = "#% increased Strength", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_295075366", + ["text"] = "#% increased Strength Requirement", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2003094183", + ["text"] = "#% increased Strength if 2 Warlord Items are Equipped", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2517001139", + ["text"] = "#% increased Stun Duration on Enemies", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1067429236", + ["text"] = "#% increased Stun Duration on you", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_680068163", + ["text"] = "#% increased Stun Threshold", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2511217560", + ["text"] = "#% increased Stun and Block Recovery", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3651611160", + ["text"] = "#% increased Taunt Duration", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1662974426", + ["text"] = "#% increased Temporal Chains Curse Effect", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_553402472", + ["text"] = "#% increased Total Heist Fee", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3851254963", + ["text"] = "#% increased Totem Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2566390555", + ["text"] = "#% increased Totem Damage per 10 Devotion", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_686254215", + ["text"] = "#% increased Totem Life", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_747037697", + ["text"] = "#% increased Totem Life per 10 Strength Allocated in Radius", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3374165039", + ["text"] = "#% increased Totem Placement speed", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2941585404", + ["text"] = "#% increased Trap Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_502047644", + ["text"] = "#% increased Trap Disarmament Experience gained", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1579578270", + ["text"] = "#% increased Trap Disarmament speed", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2001530951", + ["text"] = "#% increased Trap Duration", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_118398748", + ["text"] = "#% increased Trap Throwing Speed", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_497716276", + ["text"] = "#% increased Trap Trigger Area of Effect", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_464535071", + ["text"] = "#% increased Trap and Mine Throwing Speed", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2904116257", + ["text"] = "#% increased Travel Fee", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_586037801", + ["text"] = "#% increased Unveiled Modifier magnitudes", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3165492062", + ["text"] = "#% increased Vaal Skill Critical Strike Chance", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1050359418", + ["text"] = "#% increased Valour gained", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3037553757", + ["text"] = "#% increased Warcry Buff Effect", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4159248054", + ["text"] = "#% increased Warcry Cooldown Recovery Rate", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1316278494", + ["text"] = "#% increased Warcry Speed", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_830161081", + ["text"] = "#% increased Ward", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2891175306", + ["text"] = "#% increased Ward during Effect", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1200678966", + ["text"] = "#% increased bonuses gained from Equipped Quiver", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4012065952", + ["text"] = "#% increased chance for Equipment Items dropped in Area to have Memory Strands", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4012065952", + ["text"] = "#% increased chance for Equipment Items dropped in your Maps to have Memory Strands", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_874254965", + ["text"] = "#% increased chance for Maps found in your Maps to have Memory Influence", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1415269999", + ["text"] = "#% increased chance for Memory Threads to lead towards the Incarnation of Dread", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1493453364", + ["text"] = "#% increased chance for Memory Threads to lead towards the Incarnation of Fear", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3126598962", + ["text"] = "#% increased chance for Memory Threads to lead towards the Incarnation of Neglect", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3096795807", + ["text"] = "#% increased chance for Ore Deposits found in your Maps to be Bismuth", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2365077639", + ["text"] = "#% increased chance for Ore Deposits found in your Maps to be Crimson Iron", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1972650697", + ["text"] = "#% increased chance for Ore Deposits found in your Maps to be Orichalcum", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2162292810", + ["text"] = "#% increased chance for Ore Deposits found in your Maps to be Petrified Amber", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_236923923", + ["text"] = "#% increased chance for Ore Deposits found in your Maps to be Verisium", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2731689292", + ["text"] = "#% increased chance for Strongboxes in Area to be Unique", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2731689292", + ["text"] = "#% increased chance for Strongboxes in your Maps to be Unique", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4016588303", + ["text"] = "#% increased chance for your Maps to contain Memory Tears (Tier 16+)", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2172921782", + ["text"] = "#% increased chance of Ritual Altars with Special Rewards", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2636124044", + ["text"] = "#% increased chance to find Ancient Wombgifts", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2988344505", + ["text"] = "#% increased chance to find Eater of Worlds Altars in your Maps", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1550132911", + ["text"] = "#% increased chance to find Growing Wombgifts", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2247324895", + ["text"] = "#% increased chance to find Lavish Wombgifts", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4183854736", + ["text"] = "#% increased chance to find Mysterious Wombgifts", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1628606063", + ["text"] = "#% increased chance to find Provisioning Wombgifts", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1458119808", + ["text"] = "#% increased duration of Shrine Buffs on players granted by Shrines in your Maps", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2448920197", + ["text"] = "#% increased effect", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3529940209", + ["text"] = "#% increased effect", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3191123893", + ["text"] = "#% increased effect of Explicit Modifiers on your Maps", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2490189905", + ["text"] = "#% increased effect of Explicit Modifiers on your Maps per 5% Map Quality", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2792863714", + ["text"] = "#% increased effect of Explicit Modifiers on your Maps per Explicit Modifier", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1880071428", + ["text"] = "#% increased effect of Non-Curse Auras from your Skills", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_634031003", + ["text"] = "#% increased effect of Non-Curse Auras from your Skills on your Minions", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2585926696", + ["text"] = "#% increased effect of Non-Curse Auras per 10 Devotion", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3191479793", + ["text"] = "#% increased effect of Offerings", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1773503150", + ["text"] = "#% increased effect of Shrine Buffs on players granted by Shrines in your Maps", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4149388787", + ["text"] = "#% increased effect of Tattoos in Radius", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_796951852", + ["text"] = "#% increased effect of Wishes granted by Ancient Fish", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_478341845", + ["text"] = "#% increased frequency of Tempest effects", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2482852589", + ["text"] = "#% increased maximum Energy Shield", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_983749596", + ["text"] = "#% increased maximum Life", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3018691556", + ["text"] = "#% increased maximum Life and reduced Fire Resistance", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_370215510", + ["text"] = "#% increased maximum Life if 2 Elder Items are Equipped", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3899352861", + ["text"] = "#% increased maximum Life, Mana and Global Energy Shield", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2748665614", + ["text"] = "#% increased maximum Mana", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1156957589", + ["text"] = "#% increased maximum Mana and reduced Cold Resistance", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2440345251", + ["text"] = "#% increased maximum Mana if 2 Shaper Items are Equipped", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3051490307", + ["text"] = "#% increased number of Explosives", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3051490307", + ["text"] = "#% increased number of Explosives in your Maps", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3873704640", + ["text"] = "#% increased number of Magic Monsters in your Maps", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3793155082", + ["text"] = "#% increased number of Rare Monsters", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3793155082", + ["text"] = "#% increased number of Rare Monsters in your Maps", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1240390128", + ["text"] = "#% increased number of Unique Crucible Monsters", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4219583418", + ["text"] = "#% increased quantity of Artifacts dropped by Monsters", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_703341733", + ["text"] = "#% increased raising of Alert Level", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2629058372", + ["text"] = "#% increased raising of Alert Level from Killing Monsters", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2500803699", + ["text"] = "#% increased raising of Alert Level from opening Chests", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2435922859", + ["text"] = "#% increased time before Lockdown", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4004160031", + ["text"] = "#% increased time before Lockdown", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2633745731", + ["text"] = "#% increased total Recovery per second from Life Leech", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2314393054", + ["text"] = "#% increased total Recovery per second from Life, Mana, or Energy Shield Leech", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_690135178", + ["text"] = "#% increased total Recovery per second from Mana Leech", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_414991155", + ["text"] = "#% less Animate Weapon Duration", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4181057577", + ["text"] = "#% less Critical Strike Chance", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_67637087", + ["text"] = "#% less Damage taken if you have not been Hit Recently", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2733459550", + ["text"] = "#% less Damage taken per 5 Rage, up to a maximum of 30%", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3298440988", + ["text"] = "#% less Mine Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1715495976", + ["text"] = "#% less Minimum Physical Attack Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1237693206", + ["text"] = "#% less Poison Duration", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3796523155", + ["text"] = "#% less effect of Curses on Monsters", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2379109976", + ["text"] = "#% more Area of Effect with Bow Attacks that fire a single Projectile", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2418322751", + ["text"] = "#% more Attack Speed", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_906039557", + ["text"] = "#% more Attack Speed with Unarmed Melee Attacks", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3062743459", + ["text"] = "#% more Basic Currency Items found from Beyond Demons in your Maps that are followers of Beidat", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3134513219", + ["text"] = "#% more Burning Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2692289207", + ["text"] = "#% more Critical Strike Chance while Insane", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2617837023", + ["text"] = "#% more Critical Strike chance while affected by Precision", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_412462523", + ["text"] = "#% more Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2749166636", + ["text"] = "#% more Damage with Arrow Hits at Close Range", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_304032021", + ["text"] = "#% more Damage with Arrow Hits at Close Range while you have Iron Reflexes", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_402730593", + ["text"] = "#% more Damage with Arrow Hits not at Close Range", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1340524145", + ["text"] = "#% more Divination Cards found from Beyond Demons in your Maps that are followers of K'Tash", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1506355899", + ["text"] = "#% more Duration", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3775619537", + ["text"] = "#% more Duration of Ignites you inflict", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4106109768", + ["text"] = "#% more Effect of your Curses", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_512740886", + ["text"] = "#% more Elemental Damage taken per Raised Zombie", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3432301333", + ["text"] = "#% more Energy Shield Recharge Rate", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3790386828", + ["text"] = "#% more Flask Charges gained from Kills", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_624257168", + ["text"] = "#% more Flask Charges gained from Kills", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2614885550", + ["text"] = "#% more Ignite Duration", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1961864874", + ["text"] = "#% more Impale Duration", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3452986510", + ["text"] = "#% more Life cost of Skills while on Low Life", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_56401364", + ["text"] = "#% more Main Hand attack speed", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3964669425", + ["text"] = "#% more Mana cost of Lightning Skills while Shocked", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2783958145", + ["text"] = "#% more Maximum Life", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3029185248", + ["text"] = "#% more Maximum Physical Attack Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3636096208", + ["text"] = "#% more Melee Physical Damage during effect", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1263311755", + ["text"] = "#% more Monster Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2710898947", + ["text"] = "#% more Monster Life", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_95249895", + ["text"] = "#% more Monster Life", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1814782245", + ["text"] = "#% more Physical Damage with Unarmed Melee Attacks", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_388639924", + ["text"] = "#% more Physical and Chaos Damage Taken while Sane", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2625134410", + ["text"] = "#% more Power Charge Duration", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1436593527", + ["text"] = "#% more Quantity of Items Dropped by Imprisoned Monsters", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3130378100", + ["text"] = "#% more Rarity of Items Dropped by Imprisoned Monsters", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_886931978", + ["text"] = "#% more Recovery if used while on Low Life", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_303527630", + ["text"] = "#% more Unique Items found from Beyond Demons in your Maps that are followers of Ghorr", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3615541554", + ["text"] = "#% more Ward during Effect", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3362812763", + ["text"] = "#% of Armour applies to Fire, Cold and Lightning Damage taken from Hits", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1239225602", + ["text"] = "#% of Armour applies to Fire, Cold and Lightning Damage taken from Hits if you have Blocked Recently", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_141810208", + ["text"] = "#% of Attack Damage Leeched as Life", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1625933063", + ["text"] = "#% of Attack Damage Leeched as Life against Bleeding Enemies", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_748813744", + ["text"] = "#% of Attack Damage Leeched as Life against Chilled Enemies", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_447636597", + ["text"] = "#% of Attack Damage Leeched as Life against Maimed Enemies", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3750917270", + ["text"] = "#% of Attack Damage Leeched as Life against Taunted Enemies", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2770801535", + ["text"] = "#% of Attack Damage Leeched as Life and Mana if you've Killed Recently", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1173558568", + ["text"] = "#% of Attack Damage Leeched as Life during Effect", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2100196861", + ["text"] = "#% of Attack Damage Leeched as Life on Critical Strike", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3243062554", + ["text"] = "#% of Attack Damage Leeched as Life per Frenzy Charge", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_350069479", + ["text"] = "#% of Attack Damage Leeched as Mana", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3067409450", + ["text"] = "#% of Attack Damage Leeched as Mana against Poisoned Enemies", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2628721358", + ["text"] = "#% of Attack Damage Leeched as Mana per Power Charge", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_744082851", + ["text"] = "#% of Chaos Damage Leeched as Life", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1341148741", + ["text"] = "#% of Chaos Damage Leeched as Life during Effect", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_334180828", + ["text"] = "#% of Chaos Damage Leeched by Enemy as Life", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3967028570", + ["text"] = "#% of Chaos Damage is taken from Mana before Life", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2485226576", + ["text"] = "#% of Chaos Damage taken Recouped as Life", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2313674117", + ["text"] = "#% of Chaos Damage taken as Lightning Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1865744989", + ["text"] = "#% of Chaos Damage taken does not bypass Energy Shield", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_723832351", + ["text"] = "#% of Cold Damage Converted to Fire Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1939452467", + ["text"] = "#% of Cold Damage Leeched as Energy Shield", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3999401129", + ["text"] = "#% of Cold Damage Leeched as Life", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3271464175", + ["text"] = "#% of Cold Damage Leeched by Enemy as Life", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1189760108", + ["text"] = "#% of Cold Damage from Hits taken as Fire Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3679418014", + ["text"] = "#% of Cold Damage taken Recouped as Life", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1642347505", + ["text"] = "#% of Cold Damage taken as Fire Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2881210047", + ["text"] = "#% of Cold Damage taken as Lightning Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1723738042", + ["text"] = "#% of Cold and Lightning Damage taken as Fire Damage while affected by Purity of Fire", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4201339891", + ["text"] = "#% of Damage Leeched as Energy Shield", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4091709362", + ["text"] = "#% of Damage Leeched as Energy Shield against Frozen Enemies", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4069440714", + ["text"] = "#% of Damage Leeched as Life", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3861913659", + ["text"] = "#% of Damage Leeched as Life against Cursed Enemies", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2614321687", + ["text"] = "#% of Damage Leeched as Life against Shocked Enemies", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2449723897", + ["text"] = "#% of Damage Leeched as Life for Skills used by Totems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_958088871", + ["text"] = "#% of Damage Leeched as Life on Critical Strike", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1587137379", + ["text"] = "#% of Damage Leeched as Life per Siphoning Charge", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3324747104", + ["text"] = "#% of Damage Leeched as Life while Focused", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1526625193", + ["text"] = "#% of Damage Leeched as Life while you have at least 5 total Endurance, Frenzy and Power Charges", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2908111053", + ["text"] = "#% of Damage Leeched as Mana against Frozen Enemies", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_497196601", + ["text"] = "#% of Damage Leeched by Enemy as Life while Focused", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_297552946", + ["text"] = "#% of Damage Players' Totems take from Hits is taken from their Summoner's Life instead", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3824033729", + ["text"] = "#% of Damage Taken from Hits is Leeched as Life during Effect", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_593279674", + ["text"] = "#% of Damage against Frozen Enemies Leeched as Life", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_112201073", + ["text"] = "#% of Damage against Shocked Enemies Leeched as Mana", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_807450540", + ["text"] = "#% of Damage dealt by your Mines is Leeched to you as Life", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3812562802", + ["text"] = "#% of Damage dealt by your Totems is Leeched to you as Life", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3691190311", + ["text"] = "#% of Damage from Hits is taken from Marked Target's Life before you", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3269077876", + ["text"] = "#% of Damage from Hits is taken from Void Spawns' Life before you per Void Spawn", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_54812069", + ["text"] = "#% of Damage from Hits is taken from your Raised Spectres' Life before you", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2762445213", + ["text"] = "#% of Damage from Hits is taken from your nearest Totem's Life before you", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_603134774", + ["text"] = "#% of Damage from your Hits cannot be Reflected during Effect", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_458438597", + ["text"] = "#% of Damage is taken from Mana before Life", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1325047894", + ["text"] = "#% of Damage is taken from Mana before Life per Power Charge", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1588539856", + ["text"] = "#% of Damage is taken from Mana before Life while Focused", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3656959867", + ["text"] = "#% of Damage leeched as Life while affected by Vitality", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1444556985", + ["text"] = "#% of Damage taken Recouped as Life", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_902847342", + ["text"] = "#% of Damage taken Recouped as Life per Socketed Red Gem", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_472520716", + ["text"] = "#% of Damage taken Recouped as Mana", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3000966016", + ["text"] = "#% of Damage taken bypasses Ward", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2383304564", + ["text"] = "#% of Damage taken from Mana before Life while affected by Clarity", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3913936991", + ["text"] = "#% of Damage taken from Stunning Hits is Recovered as Life", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2585984986", + ["text"] = "#% of Damage taken while Frozen Recouped as Life", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_380220671", + ["text"] = "#% of Damage taken while affected by Clarity Recouped as Mana", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_743992531", + ["text"] = "#% of Damage you Reflect to Enemies when Hit is leeched as Life", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1250221293", + ["text"] = "#% of Elemental Damage Leeched as Energy Shield if 2 Shaper Items are Equipped", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_720395808", + ["text"] = "#% of Elemental Damage Leeched as Life", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1175213674", + ["text"] = "#% of Elemental Damage from Hits taken as Chaos Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2340750293", + ["text"] = "#% of Elemental Damage from Hits taken as Physical Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1574578643", + ["text"] = "#% of Elemental Damage from your Hits cannot be Reflected while affected by Purity of Elements", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2251969898", + ["text"] = "#% of Elemental Damage taken as Chaos Damage if 4 Hunter Items are Equipped", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3408683611", + ["text"] = "#% of Elemental Hit Damage from you and your Minions cannot be Reflected", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3244118730", + ["text"] = "#% of Evasion Rating is Regenerated as Life per second while Focused", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2731249891", + ["text"] = "#% of Fire Damage Converted to Chaos Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3885409671", + ["text"] = "#% of Fire Damage Leeched as Energy Shield", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3848282610", + ["text"] = "#% of Fire Damage Leeched as Life", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3633399302", + ["text"] = "#% of Fire Damage Leeched as Life while Ignited", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2312747856", + ["text"] = "#% of Fire Damage Leeched as Life while affected by Anger", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_45548764", + ["text"] = "#% of Fire Damage Leeched by Enemy as Life", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2522672898", + ["text"] = "#% of Fire Damage from Hits taken as Cold Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1029319062", + ["text"] = "#% of Fire Damage from Hits taken as Physical Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3205239847", + ["text"] = "#% of Fire Damage from Hits taken as Physical Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1742651309", + ["text"] = "#% of Fire Damage taken Recouped as Life", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4142376596", + ["text"] = "#% of Fire Damage taken as Lightning Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3953667743", + ["text"] = "#% of Fire and Cold Damage taken as Lightning Damage while affected by Purity of Lightning", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1349002319", + ["text"] = "#% of Fire and Lightning Damage from Hits taken as Cold Damage during Effect", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2189467271", + ["text"] = "#% of Fire and Lightning Damage taken as Cold Damage while affected by Purity of Ice", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1567747544", + ["text"] = "#% of Hit Damage from you and your Minions cannot be Reflected", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2583648686", + ["text"] = "#% of Leech from Hits with this Weapon is Instant per Enemy Power", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3561837752", + ["text"] = "#% of Leech is Instant", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_768537671", + ["text"] = "#% of Life Leech applies to Enemies as Chaos Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2264655303", + ["text"] = "#% of Life Recovery from Flasks is applied to nearby Allies instead of You", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_221532021", + ["text"] = "#% of Life Regenerated per Second if you've dealt a Critical Strike in the past 8 seconds", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3175722882", + ["text"] = "#% of Life Regenerated per second per Fragile Regrowth", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1750141122", + ["text"] = "#% of Life Regeneration also applies to Energy Shield if no Equipped Items are Corrupted", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4238266823", + ["text"] = "#% of Lightning Damage Converted to Chaos Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2158060122", + ["text"] = "#% of Lightning Damage Converted to Cold Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_308127151", + ["text"] = "#% of Lightning Damage Leeched as Energy Shield", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_80079005", + ["text"] = "#% of Lightning Damage Leeched as Life", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2687254633", + ["text"] = "#% of Lightning Damage Leeched as Life during Effect", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1454377049", + ["text"] = "#% of Lightning Damage Leeched as Mana during Effect", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3925004212", + ["text"] = "#% of Lightning Damage Leeched by Enemy as Life", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_121436064", + ["text"] = "#% of Lightning Damage is Leeched as Energy Shield while affected by Wrath", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2889601846", + ["text"] = "#% of Lightning Damage is Leeched as Mana while affected by Wrath", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2477735984", + ["text"] = "#% of Lightning Damage is taken from Mana before Life", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2970621759", + ["text"] = "#% of Lightning Damage taken Recouped as Life", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1244494473", + ["text"] = "#% of Lightning Damage taken as Fire Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2458962764", + ["text"] = "#% of Maximum Life Converted to Energy Shield", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3232201443", + ["text"] = "#% of Maximum Life taken as Chaos Damage per second", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1092987622", + ["text"] = "#% of Melee Physical Damage taken reflected to Attacker", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3379724776", + ["text"] = "#% of Non-Chaos Damage taken bypasses Energy Shield", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3511523149", + ["text"] = "#% of Overkill Damage is Leeched as Life", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3593843976", + ["text"] = "#% of Physical Attack Damage Leeched as Life", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_55876295", + ["text"] = "#% of Physical Attack Damage Leeched as Life (Local)", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3111255591", + ["text"] = "#% of Physical Attack Damage Leeched as Life during Effect", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3025389409", + ["text"] = "#% of Physical Attack Damage Leeched as Life per Red Socket", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3237948413", + ["text"] = "#% of Physical Attack Damage Leeched as Mana", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_669069897", + ["text"] = "#% of Physical Attack Damage Leeched as Mana (Local)", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_374891408", + ["text"] = "#% of Physical Attack Damage Leeched as Mana during Effect", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_172852114", + ["text"] = "#% of Physical Attack Damage Leeched as Mana per Blue Socket", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_604298782", + ["text"] = "#% of Physical Attack Damage Leeched as Mana per Power Charge", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2693705594", + ["text"] = "#% of Physical Attack Damage Leeched by Enemy as Life", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_407390981", + ["text"] = "#% of Physical Attack Damage Leeched by Enemy as Mana", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_490098963", + ["text"] = "#% of Physical Damage Converted to Chaos Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2133341901", + ["text"] = "#% of Physical Damage Converted to Cold Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_664849247", + ["text"] = "#% of Physical Damage Converted to Cold Damage while affected by Hatred", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1533563525", + ["text"] = "#% of Physical Damage Converted to Fire Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3624529132", + ["text"] = "#% of Physical Damage Converted to Fire Damage while affected by Anger", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2052379536", + ["text"] = "#% of Physical Damage Converted to Fire while you have Avatar of Fire", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3240769289", + ["text"] = "#% of Physical Damage Converted to Lightning Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2106756686", + ["text"] = "#% of Physical Damage Converted to Lightning Damage while affected by Wrath", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_660386148", + ["text"] = "#% of Physical Damage Converted to Lightning during Effect", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2589667827", + ["text"] = "#% of Physical Damage Leeched as Energy Shield if 2 Elder Items are Equipped", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3764265320", + ["text"] = "#% of Physical Damage Leeched as Life", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3423022686", + ["text"] = "#% of Physical Damage Leeched by Enemy as Life", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2588231083", + ["text"] = "#% of Physical Damage Prevented Recently is Regenerated as Energy Shield Per Second if 6 Crusader Items are Equipped", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1776612984", + ["text"] = "#% of Physical Damage converted to a random Element", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4129825612", + ["text"] = "#% of Physical Damage from Hits taken as Chaos Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1871056256", + ["text"] = "#% of Physical Damage from Hits taken as Cold Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_625682777", + ["text"] = "#% of Physical Damage from Hits taken as Cold Damage during Effect", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1710207583", + ["text"] = "#% of Physical Damage from Hits taken as Cold Damage while affected by Purity of Elements", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1779027621", + ["text"] = "#% of Physical Damage from Hits taken as Cold Damage while affected by Purity of Ice", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3342989455", + ["text"] = "#% of Physical Damage from Hits taken as Fire Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1722775216", + ["text"] = "#% of Physical Damage from Hits taken as Fire Damage while affected by Purity of Elements", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1798459983", + ["text"] = "#% of Physical Damage from Hits taken as Fire Damage while affected by Purity of Fire", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_425242359", + ["text"] = "#% of Physical Damage from Hits taken as Lightning Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_873224517", + ["text"] = "#% of Physical Damage from Hits taken as Lightning Damage while affected by Purity of Elements", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_254131992", + ["text"] = "#% of Physical Damage from Hits taken as Lightning Damage while affected by Purity of Lightning", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1431238626", + ["text"] = "#% of Physical Damage from Hits with this Weapon is Converted to a random Element", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2255585376", + ["text"] = "#% of Physical Damage from your Hits cannot be Reflected while affected by Determination", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3743438423", + ["text"] = "#% of Physical Damage is taken from Mana before Life", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2351364973", + ["text"] = "#% of Physical Damage taken as Cold Damage if 4 Redeemer Items are Equipped", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1004468512", + ["text"] = "#% of Physical Damage taken as Fire Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3003230483", + ["text"] = "#% of Physical Damage taken as Fire Damage if 4 Warlord Items are Equipped", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2006105838", + ["text"] = "#% of Physical Damage taken as Lightning Damage if 4 Crusader Items are Equipped", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1818622832", + ["text"] = "#% of Physical Hit Damage from you and your Minions cannot be Reflected", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2503377690", + ["text"] = "#% of Recovery applied Instantly", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_11106713", + ["text"] = "#% of Spell Damage Leeched as Energy Shield", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1456464057", + ["text"] = "#% of Spell Damage Leeched as Energy Shield during Effect", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3734213780", + ["text"] = "#% of Spell Damage Leeched as Energy Shield for each Curse on Enemy", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3893109186", + ["text"] = "#% of Spell Damage Leeched as Life if Equipped Shield has at least 30% Chance to Block", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1993646143", + ["text"] = "#% of Suppressed Spell Damage taken Recouped as Energy Shield", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_247456045", + ["text"] = "#% of Suppressed Spell Damage taken bypasses Energy Shield", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_269590092", + ["text"] = "#% reduced Attack and Cast Speed per Frenzy Charge", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4147897060", + ["text"] = "#% reduced Chance to Block Attack and Spell Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2960683632", + ["text"] = "#% reduced Chaos Damage taken", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3762784591", + ["text"] = "#% reduced Chaos Damage taken over time", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1874553720", + ["text"] = "#% reduced Chill Duration on you", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3303114033", + ["text"] = "#% reduced Cold Damage taken", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2701327257", + ["text"] = "#% reduced Cost of Aura Skills that summon Totems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2102212273", + ["text"] = "#% reduced Critical Strike Chance per Power Charge", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1101403182", + ["text"] = "#% reduced Damage taken from Damage Over Time", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1478653032", + ["text"] = "#% reduced Effect of Chill on you", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2434101731", + ["text"] = "#% reduced Effect of Chill on you during Effect", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3407849389", + ["text"] = "#% reduced Effect of Curses on you", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4265534424", + ["text"] = "#% reduced Effect of Curses on you during Effect", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3801067695", + ["text"] = "#% reduced Effect of Shock on you", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1745952865", + ["text"] = "#% reduced Elemental Ailment Duration on you", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_730530528", + ["text"] = "#% reduced Elemental Ailment Duration on you per 10 Devotion", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3859593448", + ["text"] = "#% reduced Elemental Damage Taken while stationary", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1686913105", + ["text"] = "#% reduced Elemental Damage taken from Hits per Endurance Charge", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_983989924", + ["text"] = "#% reduced Elemental Damage taken while stationary", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_76848920", + ["text"] = "#% reduced Elemental Resistances", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1195367742", + ["text"] = "#% reduced Elemental and Chaos Resistances", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2477381238", + ["text"] = "#% reduced Enemy Block Chance", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1443060084", + ["text"] = "#% reduced Enemy Stun Threshold", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4228951304", + ["text"] = "#% reduced Enemy Stun Threshold during any Flask Effect", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2410484864", + ["text"] = "#% reduced Enemy Stun Threshold with Bows", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_832404842", + ["text"] = "#% reduced Enemy Stun Threshold with this Weapon", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1550221644", + ["text"] = "#% reduced Fishing Pool Consumption", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_644456512", + ["text"] = "#% reduced Flask Charges used", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2160282525", + ["text"] = "#% reduced Freeze Duration on you", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2543931078", + ["text"] = "#% reduced Frenzy Charge Duration per Frenzy Charge", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2576412389", + ["text"] = "#% reduced Golem Size", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_986397080", + ["text"] = "#% reduced Ignite Duration on you", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1276918229", + ["text"] = "#% reduced Lightning Damage taken", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_116232170", + ["text"] = "#% reduced Mana Burn rate", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2969128501", + ["text"] = "#% reduced Mana Cost of Minion Skills", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_262301496", + ["text"] = "#% reduced Mana Cost of Raise Spectre", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_474294393", + ["text"] = "#% reduced Mana Cost of Skills", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3293275880", + ["text"] = "#% reduced Mana Cost of Skills per 10 Devotion", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_73272763", + ["text"] = "#% reduced Mana Cost of Skills when on Low Life", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1774881905", + ["text"] = "#% reduced Mana Cost per Endurance Charge", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1186934478", + ["text"] = "#% reduced Maximum number of Summoned Raging Spirits", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_511024200", + ["text"] = "#% reduced Physical Damage taken over time", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3846810663", + ["text"] = "#% reduced Reflected Damage taken", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_248838155", + ["text"] = "#% reduced Reflected Elemental Damage taken", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3158958938", + ["text"] = "#% reduced Reflected Physical Damage taken", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_99927264", + ["text"] = "#% reduced Shock Duration on you", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3420284170", + ["text"] = "#% reduced Spark Duration", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1165847826", + ["text"] = "#% reduced Spell Damage taken from Blinded Enemies", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4041805509", + ["text"] = "#% reduced maximum number of Raised Zombies", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1912660783", + ["text"] = "#% slower start of Energy Shield Recharge during any Flask Effect", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2196657026", + ["text"] = "+# Accuracy Rating per 2 Intelligence", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4091848539", + ["text"] = "+# Armour if you've Blocked Recently", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1429385513", + ["text"] = "+# Armour per Summoned Totem", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2551779822", + ["text"] = "+# Armour while stationary", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4078952782", + ["text"] = "+# Armour while you do not have Avatar of Fire", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_496011033", + ["text"] = "+# Chaos Damage taken", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1133453872", + ["text"] = "+# Dexterity Requirement", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_347328113", + ["text"] = "+# Energy Shield gained on Killing a Shocked Enemy", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_614758785", + ["text"] = "+# Fire Damage taken from Hits", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1483305963", + ["text"] = "+# Fire Damage taken from Hits per Mana Burn", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2153364323", + ["text"] = "+# Intelligence Requirement", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2042405614", + ["text"] = "+# Life per 4 Dexterity", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3304801725", + ["text"] = "+# Mana gained on Killing a Frozen Enemy", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_507075051", + ["text"] = "+# Mana per 4 Strength", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3864993324", + ["text"] = "+# Maximum Energy Shield per Level", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1982144275", + ["text"] = "+# Maximum Life per Level", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2563691316", + ["text"] = "+# Maximum Mana per Level", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1274902666", + ["text"] = "+# Metamorph Monster Samples in your Maps have Rewards", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3441651621", + ["text"] = "+# Physical Damage taken from Attack Hits", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_321765853", + ["text"] = "+# Physical Damage taken from Hits", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3277537093", + ["text"] = "+# Physical Damage taken from Hits by Animals", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3612407781", + ["text"] = "+# Physical Damage taken from Projectile Attacks", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2833226514", + ["text"] = "+# Strength Requirement", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4272453892", + ["text"] = "+# Strength and Intelligence Requirement", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3788706881", + ["text"] = "+# maximum Energy Shield per 5 Strength", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3255961830", + ["text"] = "+# metre to Melee Strike Range if you have Killed Recently", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2076080860", + ["text"] = "+# metre to Melee Strike Range per White Socket", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3273962791", + ["text"] = "+# metre to Melee Strike Range with Unarmed Attacks", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2264295449", + ["text"] = "+# metres to Melee Strike Range", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_350598685", + ["text"] = "+# metres to Weapon Range", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3013430129", + ["text"] = "+# second to Summon Skeleton Cooldown", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1251731548", + ["text"] = "+# seconds to Avian's Flight Duration", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1251945210", + ["text"] = "+# seconds to Avian's Might Duration", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3686519528", + ["text"] = "+# seconds to Cat's Agility Duration", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_387596329", + ["text"] = "+# seconds to Cat's Stealth Duration", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4244234128", + ["text"] = "+# seconds to Duration of Frenzy and Power Charges on Culling Strike", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3471951849", + ["text"] = "+# seconds to Lockdown Timer", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_803737631", + ["text"] = "+# to Accuracy Rating", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_691932474", + ["text"] = "+# to Accuracy Rating (Local)", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4280703528", + ["text"] = "+# to Accuracy Rating for each Empty Green Socket on any Equipped Item", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_100820057", + ["text"] = "+# to Accuracy Rating per 10 Dexterity on Unallocated Passives in Radius", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3996149330", + ["text"] = "+# to Accuracy Rating per 10 Intelligence on Unallocated Passives in Radius", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_773731062", + ["text"] = "+# to Accuracy Rating per 2 Dexterity", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_539841130", + ["text"] = "+# to Accuracy Rating per Level", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3213407110", + ["text"] = "+# to Accuracy Rating while at Maximum Frenzy Charges", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2943725337", + ["text"] = "+# to Agility Level for Heists", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_809229260", + ["text"] = "+# to Armour", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3484657501", + ["text"] = "+# to Armour (Local)", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2316658489", + ["text"] = "+# to Armour and Evasion Rating", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2818854203", + ["text"] = "+# to Armour and Evasion Rating per 1% Chance to Block Attack Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1539825365", + ["text"] = "+# to Armour during Soul Gain Prevention", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2368149582", + ["text"] = "+# to Armour if you've Hit an Enemy Recently", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3088183606", + ["text"] = "+# to Armour per 5 Evasion Rating on Equipped Shield", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_513221334", + ["text"] = "+# to Armour per Endurance Charge", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_153004860", + ["text"] = "+# to Armour while Fortified", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_504366827", + ["text"] = "+# to Armour while Frozen", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3742808908", + ["text"] = "+# to Armour while affected by Determination", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1169552613", + ["text"] = "+# to Brute Force Level for Heists", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1172162241", + ["text"] = "+# to Character Level", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4207149030", + ["text"] = "+# to Counter-Thaumaturgy Level for Heists", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_828170926", + ["text"] = "+# to Deception Level for Heists", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2359025380", + ["text"] = "+# to Demolition Level for Heists", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3261801346", + ["text"] = "+# to Dexterity", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2300185227", + ["text"] = "+# to Dexterity and Intelligence", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2978835006", + ["text"] = "+# to Engineering Level for Heists", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2144192055", + ["text"] = "+# to Evasion Rating", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_53045048", + ["text"] = "+# to Evasion Rating (Local)", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1549868759", + ["text"] = "+# to Evasion Rating and Energy Shield", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2935548106", + ["text"] = "+# to Evasion Rating if Hit an Enemy Recently", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1144937587", + ["text"] = "+# to Evasion Rating per 1 Maximum Energy Shield on Equipped Helmet", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3637775205", + ["text"] = "+# to Evasion Rating per 10 Player Maximum Life", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1115914670", + ["text"] = "+# to Evasion Rating per 5 Maximum Energy Shield on Equipped Shield", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1922061483", + ["text"] = "+# to Evasion Rating while in Sand Stance", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4082111882", + ["text"] = "+# to Evasion Rating while on Full Life", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3470876581", + ["text"] = "+# to Evasion Rating while on Low Life", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_328541901", + ["text"] = "+# to Intelligence", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2551600084", + ["text"] = "+# to Level of Socketed AoE Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2452998583", + ["text"] = "+# to Level of Socketed Aura Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2027269580", + ["text"] = "+# to Level of Socketed Bow Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2675603254", + ["text"] = "+# to Level of Socketed Chaos Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1645459191", + ["text"] = "+# to Level of Socketed Cold Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3691695237", + ["text"] = "+# to Level of Socketed Curse Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2718698372", + ["text"] = "+# to Level of Socketed Dexterity Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3571342795", + ["text"] = "+# to Level of Socketed Elemental Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_339179093", + ["text"] = "+# to Level of Socketed Fire Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2843100721", + ["text"] = "+# to Level of Socketed Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3298991976", + ["text"] = "+# to Level of Socketed Gems while there is a single Gem Socketed in this Item", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3448743676", + ["text"] = "+# to Level of Socketed Golem Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1344805487", + ["text"] = "+# to Level of Socketed Herald Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1719423857", + ["text"] = "+# to Level of Socketed Intelligence Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4043416969", + ["text"] = "+# to Level of Socketed Lightning Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_829382474", + ["text"] = "+# to Level of Socketed Melee Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3604946673", + ["text"] = "+# to Level of Socketed Minion Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3852526385", + ["text"] = "+# to Level of Socketed Movement Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2574694107", + ["text"] = "+# to Level of Socketed Non-Vaal Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2176571093", + ["text"] = "+# to Level of Socketed Projectile Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_524797741", + ["text"] = "+# to Level of Socketed Skill Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_446733281", + ["text"] = "+# to Level of Socketed Spell Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_916797432", + ["text"] = "+# to Level of Socketed Strength Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4154259475", + ["text"] = "+# to Level of Socketed Support Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_407139870", + ["text"] = "+# to Level of Socketed Trap Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_150668988", + ["text"] = "+# to Level of Socketed Trap or Mine Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1170386874", + ["text"] = "+# to Level of Socketed Vaal Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1672793731", + ["text"] = "+# to Level of Socketed Warcry Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_251", + ["text"] = "+# to Level of all Absolution Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_270", + ["text"] = "+# to Level of all Alchemist's Mark Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_248", + ["text"] = "+# to Level of all Ambush Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_222", + ["text"] = "+# to Level of all Ancestral Cry Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_68", + ["text"] = "+# to Level of all Anger Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_95", + ["text"] = "+# to Level of all Animate Guardian Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_97", + ["text"] = "+# to Level of all Animate Weapon Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_61", + ["text"] = "+# to Level of all Arc Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_220", + ["text"] = "+# to Level of all Arcane Cloak Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_225", + ["text"] = "+# to Level of all Arcanist Brand Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_81", + ["text"] = "+# to Level of all Arctic Armour Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_182", + ["text"] = "+# to Level of all Armageddon Brand Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_213", + ["text"] = "+# to Level of all Artillery Ballista Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_43", + ["text"] = "+# to Level of all Assassin's Mark Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_274", + ["text"] = "+# to Level of all Autoexertion Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_273", + ["text"] = "+# to Level of all Automation Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_104", + ["text"] = "+# to Level of all Ball Lightning Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_190", + ["text"] = "+# to Level of all Bane Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_103", + ["text"] = "+# to Level of all Barrage Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_250", + ["text"] = "+# to Level of all Battlemage's Cry Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_76", + ["text"] = "+# to Level of all Bear Trap Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_200", + ["text"] = "+# to Level of all Berserk Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_217", + ["text"] = "+# to Level of all Blade Blast Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_157", + ["text"] = "+# to Level of all Blade Flurry Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_255", + ["text"] = "+# to Level of all Blade Trap Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_138", + ["text"] = "+# to Level of all Blade Vortex Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_136", + ["text"] = "+# to Level of all Bladefall Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_198", + ["text"] = "+# to Level of all Bladestorm Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_135", + ["text"] = "+# to Level of all Blast Rain Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_232", + ["text"] = "+# to Level of all Blazing Salvo Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_155", + ["text"] = "+# to Level of all Blight Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_120", + ["text"] = "+# to Level of all Blink Arrow Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_23", + ["text"] = "+# to Level of all Blood Rage Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_199", + ["text"] = "+# to Level of all Blood and Sand Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_162", + ["text"] = "+# to Level of all Bodyswap Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_109", + ["text"] = "+# to Level of all Bone Offering Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_247", + ["text"] = "+# to Level of all Boneshatter Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_183", + ["text"] = "+# to Level of all Brand Recall Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_71", + ["text"] = "+# to Level of all Burning Arrow Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_18", + ["text"] = "+# to Level of all Caustic Arrow Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_202", + ["text"] = "+# to Level of all Chain Hook Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_67169579", + ["text"] = "+# to Level of all Chaos Skill Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_436225640", + ["text"] = "+# to Level of all Chaos Skill Gems if 6 Hunter Items are Equipped", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4226189338", + ["text"] = "+# to Level of all Chaos Spell Skill Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_158", + ["text"] = "+# to Level of all Charged Dash Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_72", + ["text"] = "+# to Level of all Clarity Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_6", + ["text"] = "+# to Level of all Cleave Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_206", + ["text"] = "+# to Level of all Cobra Lash Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1078455967", + ["text"] = "+# to Level of all Cold Skill Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3496906750", + ["text"] = "+# to Level of all Cold Skill Gems if 6 Redeemer Items are Equipped", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_15", + ["text"] = "+# to Level of all Cold Snap Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2254480358", + ["text"] = "+# to Level of all Cold Spell Skill Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_85", + ["text"] = "+# to Level of all Conductivity Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_276", + ["text"] = "+# to Level of all Conflagration Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_175", + ["text"] = "+# to Level of all Consecrated Path Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_139", + ["text"] = "+# to Level of all Contagion Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_75", + ["text"] = "+# to Level of all Conversion Trap Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_111", + ["text"] = "+# to Level of all Convocation Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_239", + ["text"] = "+# to Level of all Corrupting Fever Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_233", + ["text"] = "+# to Level of all Crackling Lance Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_19", + ["text"] = "+# to Level of all Creeping Frost Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_161", + ["text"] = "+# to Level of all Cremation Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_49", + ["text"] = "+# to Level of all Crushing Fist Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_87", + ["text"] = "+# to Level of all Cyclone Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_159", + ["text"] = "+# to Level of all Dark Pact Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_197", + ["text"] = "+# to Level of all Dash Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_78", + ["text"] = "+# to Level of all Decoy Totem Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_242", + ["text"] = "+# to Level of all Defiance Banner Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_107", + ["text"] = "+# to Level of all Desecrate Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_45", + ["text"] = "+# to Level of all Despair Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_267", + ["text"] = "+# to Level of all Destructive Link Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_67", + ["text"] = "+# to Level of all Determination Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_17", + ["text"] = "+# to Level of all Detonate Dead Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_79", + ["text"] = "+# to Level of all Devouring Totem Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_146924886", + ["text"] = "+# to Level of all Dexterity Skill Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_25", + ["text"] = "+# to Level of all Discharge Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_65", + ["text"] = "+# to Level of all Discipline Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_286", + ["text"] = "+# to Level of all Divine Blast Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_191", + ["text"] = "+# to Level of all Divine Ire Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_275", + ["text"] = "+# to Level of all Divine Retribution Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_52", + ["text"] = "+# to Level of all Dominating Blow Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_9", + ["text"] = "+# to Level of all Double Strike Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_185", + ["text"] = "+# to Level of all Dread Banner Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_12", + ["text"] = "+# to Level of all Dual Strike Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_149", + ["text"] = "+# to Level of all Earthquake Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_228", + ["text"] = "+# to Level of all Earthshatter Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_10", + ["text"] = "+# to Level of all Elemental Hit Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_547920428", + ["text"] = "+# to Level of all Elemental Skill Gems if the stars are aligned", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1640163302", + ["text"] = "+# to Level of all Elemental Support Gems if the stars are aligned", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_39", + ["text"] = "+# to Level of all Elemental Weakness Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_8", + ["text"] = "+# to Level of all Enduring Cry Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_260", + ["text"] = "+# to Level of all Energy Blade Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_42", + ["text"] = "+# to Level of all Enfeeble Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_215", + ["text"] = "+# to Level of all Ensnaring Arrow Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_141", + ["text"] = "+# to Level of all Essence Drain Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_80", + ["text"] = "+# to Level of all Ethereal Knives Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_146", + ["text"] = "+# to Level of all Eviscerate Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_37", + ["text"] = "+# to Level of all Explosive Arrow Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_257", + ["text"] = "+# to Level of all Explosive Concoction Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_165", + ["text"] = "+# to Level of all Explosive Trap Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_238", + ["text"] = "+# to Level of all Exsanguinate Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_252", + ["text"] = "+# to Level of all Eye of Winter Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_599749213", + ["text"] = "+# to Level of all Fire Skill Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_355220397", + ["text"] = "+# to Level of all Fire Skill Gems if 6 Warlord Items are Equipped", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_591105508", + ["text"] = "+# to Level of all Fire Spell Skill Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_77", + ["text"] = "+# to Level of all Fire Trap Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_1", + ["text"] = "+# to Level of all Fireball Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_54", + ["text"] = "+# to Level of all Firestorm Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_131", + ["text"] = "+# to Level of all Flame Dash Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_263", + ["text"] = "+# to Level of all Flame Link Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_106", + ["text"] = "+# to Level of all Flame Surge Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_231", + ["text"] = "+# to Level of all Flame Wall Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_102", + ["text"] = "+# to Level of all Flameblast Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_167", + ["text"] = "+# to Level of all Flamethrower Trap Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_83", + ["text"] = "+# to Level of all Flammability Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_108", + ["text"] = "+# to Level of all Flesh Offering Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_204", + ["text"] = "+# to Level of all Flesh and Stone Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_26", + ["text"] = "+# to Level of all Flicker Strike Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_254", + ["text"] = "+# to Level of all Forbidden Rite Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_33", + ["text"] = "+# to Level of all Freezing Pulse Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_14", + ["text"] = "+# to Level of all Frenzy Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_132", + ["text"] = "+# to Level of all Frost Blades Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_144", + ["text"] = "+# to Level of all Frost Bomb Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_235", + ["text"] = "+# to Level of all Frost Shield Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_32", + ["text"] = "+# to Level of all Frost Wall Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_84", + ["text"] = "+# to Level of all Frostbite Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_203", + ["text"] = "+# to Level of all Frostblink Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_153", + ["text"] = "+# to Level of all Frostbolt Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_271", + ["text"] = "+# to Level of all Frozen Legion Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_134", + ["text"] = "+# to Level of all Galvanic Arrow Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_268", + ["text"] = "+# to Level of all Galvanic Field Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_224", + ["text"] = "+# to Level of all General's Cry Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_110", + ["text"] = "+# to Level of all Glacial Cascade Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_31", + ["text"] = "+# to Level of all Glacial Hammer Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_48", + ["text"] = "+# to Level of all Glacial Shield Swipe Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_66", + ["text"] = "+# to Level of all Grace Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_5", + ["text"] = "+# to Level of all Ground Slam Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_62", + ["text"] = "+# to Level of all Haste Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_69", + ["text"] = "+# to Level of all Hatred Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_51", + ["text"] = "+# to Level of all Heavy Strike Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_174", + ["text"] = "+# to Level of all Herald of Agony Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_114", + ["text"] = "+# to Level of all Herald of Ash Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_115", + ["text"] = "+# to Level of all Herald of Ice Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_173", + ["text"] = "+# to Level of all Herald of Purity Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_116", + ["text"] = "+# to Level of all Herald of Thunder Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_237", + ["text"] = "+# to Level of all Hexblast Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_82", + ["text"] = "+# to Level of all Holy Flame Totem Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_283", + ["text"] = "+# to Level of all Holy Hammers Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_285", + ["text"] = "+# to Level of all Holy Strike Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_4", + ["text"] = "+# to Level of all Holy Sweep Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_236", + ["text"] = "+# to Level of all Hydrosphere Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_126", + ["text"] = "+# to Level of all Ice Crash Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_2", + ["text"] = "+# to Level of all Ice Nova Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_20", + ["text"] = "+# to Level of all Ice Shot Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_28", + ["text"] = "+# to Level of all Ice Spear Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_142", + ["text"] = "+# to Level of all Ice Trap Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_93", + ["text"] = "+# to Level of all Icicle Mine Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_11", + ["text"] = "+# to Level of all Immortal Call Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_86", + ["text"] = "+# to Level of all Incinerate Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_30", + ["text"] = "+# to Level of all Infernal Blow Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_128", + ["text"] = "+# to Level of all Infernal Cry Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_493812998", + ["text"] = "+# to Level of all Intelligence Skill Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_221", + ["text"] = "+# to Level of all Intimidating Cry Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_264", + ["text"] = "+# to Level of all Intuitive Link Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2692578539", + ["text"] = "+# to Level of all Jobs for Heists", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_121", + ["text"] = "+# to Level of all Kinetic Blast Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_219", + ["text"] = "+# to Level of all Kinetic Bolt Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_277", + ["text"] = "+# to Level of all Kinetic Fusillade Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_282", + ["text"] = "+# to Level of all Kinetic Fusillade Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_278", + ["text"] = "+# to Level of all Kinetic Rain Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_151", + ["text"] = "+# to Level of all Lacerate Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_187", + ["text"] = "+# to Level of all Lancing Steel Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_3", + ["text"] = "+# to Level of all Leap Slam Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_60", + ["text"] = "+# to Level of all Lightning Arrow Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_269", + ["text"] = "+# to Level of all Lightning Conduit Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1147690586", + ["text"] = "+# to Level of all Lightning Skill Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1038851119", + ["text"] = "+# to Level of all Lightning Skill Gems if 6 Crusader Items are Equipped", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1545858329", + ["text"] = "+# to Level of all Lightning Spell Skill Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_168", + ["text"] = "+# to Level of all Lightning Spire Trap Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_55", + ["text"] = "+# to Level of all Lightning Strike Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_118", + ["text"] = "+# to Level of all Lightning Tendrils Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_90", + ["text"] = "+# to Level of all Lightning Trap Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_46", + ["text"] = "+# to Level of all Lightning Warp Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_194", + ["text"] = "+# to Level of all Malevolence Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_256", + ["text"] = "+# to Level of all Manabond Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_9187492", + ["text"] = "+# to Level of all Melee Skill Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2162097452", + ["text"] = "+# to Level of all Minion Skill Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_119", + ["text"] = "+# to Level of all Mirror Arrow Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_57", + ["text"] = "+# to Level of all Molten Shell Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_112", + ["text"] = "+# to Level of all Molten Strike Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_143", + ["text"] = "+# to Level of all Orb of Storms Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_226", + ["text"] = "+# to Level of all Penance Brand Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_201", + ["text"] = "+# to Level of all Perforate Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_211", + ["text"] = "+# to Level of all Pestilent Strike Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_240", + ["text"] = "+# to Level of all Petrified Blood Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_36", + ["text"] = "+# to Level of all Phase Run Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_619213329", + ["text"] = "+# to Level of all Physical Skill Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3564190077", + ["text"] = "+# to Level of all Physical Skill Gems if 6 Elder Items are Equipped", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1600707273", + ["text"] = "+# to Level of all Physical Spell Skill Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_210", + ["text"] = "+# to Level of all Plague Bearer Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_117", + ["text"] = "+# to Level of all Poacher's Mark Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_258", + ["text"] = "+# to Level of all Poisonous Concoction Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_58", + ["text"] = "+# to Level of all Power Siphon Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_195", + ["text"] = "+# to Level of all Precision Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_205", + ["text"] = "+# to Level of all Pride Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_265", + ["text"] = "+# to Level of all Protective Link Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_59", + ["text"] = "+# to Level of all Puncture Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_41", + ["text"] = "+# to Level of all Punishment Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_188", + ["text"] = "+# to Level of all Purifying Flame Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_63", + ["text"] = "+# to Level of all Purity of Elements Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_98", + ["text"] = "+# to Level of all Purity of Fire Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_99", + ["text"] = "+# to Level of all Purity of Ice Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_100", + ["text"] = "+# to Level of all Purity of Lightning Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_91", + ["text"] = "+# to Level of all Pyroclast Mine Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_244", + ["text"] = "+# to Level of all Rage Vortex Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_53", + ["text"] = "+# to Level of all Rain of Arrows Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_29", + ["text"] = "+# to Level of all Raise Spectre Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3235814433", + ["text"] = "+# to Level of all Raise Spectre Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_16", + ["text"] = "+# to Level of all Raise Zombie Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2739830820", + ["text"] = "+# to Level of all Raise Zombie Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_127", + ["text"] = "+# to Level of all Rallying Cry Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_241", + ["text"] = "+# to Level of all Reap Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_89", + ["text"] = "+# to Level of all Reave Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_74", + ["text"] = "+# to Level of all Rejuvenation Totem Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_24", + ["text"] = "+# to Level of all Righteous Fire Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_130", + ["text"] = "+# to Level of all Rolling Magma Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_156", + ["text"] = "+# to Level of all Scorching Ray Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_177", + ["text"] = "+# to Level of all Scourge Arrow Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_88", + ["text"] = "+# to Level of all Searing Bond Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_223", + ["text"] = "+# to Level of all Seismic Cry Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_169", + ["text"] = "+# to Level of all Seismic Trap Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_186", + ["text"] = "+# to Level of all Shattering Steel Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_7", + ["text"] = "+# to Level of all Shield Charge Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_245", + ["text"] = "+# to Level of all Shield Crush Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_284", + ["text"] = "+# to Level of all Shield of Light Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_34", + ["text"] = "+# to Level of all Shock Nova Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_73", + ["text"] = "+# to Level of all Shockwave Totem Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_214", + ["text"] = "+# to Level of all Shrapnel Ballista Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_137", + ["text"] = "+# to Level of all Siege Ballista Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_229", + ["text"] = "+# to Level of all Sigil of Power Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_166", + ["text"] = "+# to Level of all Siphoning Trap Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4283407333", + ["text"] = "+# to Level of all Skill Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_176", + ["text"] = "+# to Level of all Smite Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_92", + ["text"] = "+# to Level of all Smoke Mine Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_147", + ["text"] = "+# to Level of all Snipe Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_44", + ["text"] = "+# to Level of all Sniper's Mark Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_279", + ["text"] = "+# to Level of all Somatic Shell Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_262", + ["text"] = "+# to Level of all Soul Link Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_189", + ["text"] = "+# to Level of all Soulrend Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_27", + ["text"] = "+# to Level of all Spark Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_253", + ["text"] = "+# to Level of all Spectral Helix Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_172", + ["text"] = "+# to Level of all Spectral Shield Throw Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_96", + ["text"] = "+# to Level of all Spectral Throw Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_124131830", + ["text"] = "+# to Level of all Spell Skill Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_218", + ["text"] = "+# to Level of all Spellslinger Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_152", + ["text"] = "+# to Level of all Spirit Offering Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_22", + ["text"] = "+# to Level of all Split Arrow Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_230", + ["text"] = "+# to Level of all Splitting Steel Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_21", + ["text"] = "+# to Level of all Static Strike Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_196", + ["text"] = "+# to Level of all Steelskin Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_181", + ["text"] = "+# to Level of all Storm Brand Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_160", + ["text"] = "+# to Level of all Storm Burst Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_101", + ["text"] = "+# to Level of all Storm Call Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_243", + ["text"] = "+# to Level of all Storm Rain Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_216", + ["text"] = "+# to Level of all Stormbind Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_94", + ["text"] = "+# to Level of all Stormblast Mine Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2339012908", + ["text"] = "+# to Level of all Strength Skill Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_212", + ["text"] = "+# to Level of all Summon Carrion Golem Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_122", + ["text"] = "+# to Level of all Summon Chaos Golem Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_124", + ["text"] = "+# to Level of all Summon Flame Golem Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_179", + ["text"] = "+# to Level of all Summon Holy Relic Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_123", + ["text"] = "+# to Level of all Summon Ice Golem Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_125", + ["text"] = "+# to Level of all Summon Lightning Golem Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_105", + ["text"] = "+# to Level of all Summon Raging Spirit Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_246", + ["text"] = "+# to Level of all Summon Reaper Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_47", + ["text"] = "+# to Level of all Summon Skeletons Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_209", + ["text"] = "+# to Level of all Summon Skitterbots Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_145", + ["text"] = "+# to Level of all Summon Stone Golem Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_150", + ["text"] = "+# to Level of all Sunder Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_50", + ["text"] = "+# to Level of all Swordstorm Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_171", + ["text"] = "+# to Level of all Tectonic Slam Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_56", + ["text"] = "+# to Level of all Tempest Shield Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_38", + ["text"] = "+# to Level of all Temporal Chains Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_259", + ["text"] = "+# to Level of all Temporal Rift Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_281", + ["text"] = "+# to Level of all Thunderstorm Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_261", + ["text"] = "+# to Level of all Tornado Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_113", + ["text"] = "+# to Level of all Tornado Shot Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_178", + ["text"] = "+# to Level of all Toxic Rain Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_164", + ["text"] = "+# to Level of all Unearth Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_266", + ["text"] = "+# to Level of all Vampiric Link Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_148", + ["text"] = "+# to Level of all Vengeful Cry Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_208", + ["text"] = "+# to Level of all Venom Gyre Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_129", + ["text"] = "+# to Level of all Vigilant Strike Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_35", + ["text"] = "+# to Level of all Viper Strike Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_64", + ["text"] = "+# to Level of all Vitality Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_234", + ["text"] = "+# to Level of all Void Sphere Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_163", + ["text"] = "+# to Level of all Volatile Dead Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_272", + ["text"] = "+# to Level of all Volcanic Fissure Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_249", + ["text"] = "+# to Level of all Voltaxic Burst Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_154", + ["text"] = "+# to Level of all Vortex Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_170", + ["text"] = "+# to Level of all Vulnerability Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_280", + ["text"] = "+# to Level of all Wall of Force Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_184", + ["text"] = "+# to Level of all War Banner Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_40", + ["text"] = "+# to Level of all Warlord's Mark Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_192", + ["text"] = "+# to Level of all Wave of Conviction Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_13", + ["text"] = "+# to Level of all Whirling Blades Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_133", + ["text"] = "+# to Level of all Wild Strike Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_180", + ["text"] = "+# to Level of all Winter Orb Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_227", + ["text"] = "+# to Level of all Wintertide Brand Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_140", + ["text"] = "+# to Level of all Wither Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_207", + ["text"] = "+# to Level of all Withering Step Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_70", + ["text"] = "+# to Level of all Wrath Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_skill_193", + ["text"] = "+# to Level of all Zealotry Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1592303791", + ["text"] = "+# to Level of all non-Exceptional Support Gems if 6 Shaper Items are Equipped", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3031310169", + ["text"] = "+# to Lockpicking Level for Heists", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1437957544", + ["text"] = "+# to Maximum Charges", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1515657623", + ["text"] = "+# to Maximum Endurance Charges", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2657325376", + ["text"] = "+# to Maximum Endurance Charges if 6 Warlord Items are Equipped", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2110586221", + ["text"] = "+# to Maximum Endurance Charges while affected by Determination", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3636098185", + ["text"] = "+# to Maximum Energy Shield per 5 Armour on Equipped Shield", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2906522048", + ["text"] = "+# to Maximum Energy Shield per Blue Socket", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4078695", + ["text"] = "+# to Maximum Frenzy Charges", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1138578442", + ["text"] = "+# to Maximum Frenzy Charges if 6 Redeemer Items are Equipped", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3458080964", + ["text"] = "+# to Maximum Frenzy Charges while affected by Grace", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3806100539", + ["text"] = "+# to Maximum Life per 10 Dexterity", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1114351662", + ["text"] = "+# to Maximum Life per 10 Intelligence", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4284915962", + ["text"] = "+# to Maximum Life per 2 Intelligence", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3849523464", + ["text"] = "+# to Maximum Life per Elder Item Equipped", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4210076836", + ["text"] = "+# to Maximum Life per Red Socket", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1276712564", + ["text"] = "+# to Maximum Mana per 10 Dexterity on Unallocated Passives in Radius", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_896299992", + ["text"] = "+# to Maximum Mana per Green Socket", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_227523295", + ["text"] = "+# to Maximum Power Charges", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1460122571", + ["text"] = "+# to Maximum Power Charges if 6 Crusader Items are Equipped", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1465672972", + ["text"] = "+# to Maximum Power Charges while affected by Discipline", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1181501418", + ["text"] = "+# to Maximum Rage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_406887685", + ["text"] = "+# to Maximum Rage while wielding a Sword", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1872128565", + ["text"] = "+# to Maximum Siphoning Charges per Elder or Shaper Item Equipped", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4053097676", + ["text"] = "+# to Maximum Spirit Charges per Abyss Jewel affecting you", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2894704558", + ["text"] = "+# to Maximum number of Crab Barriers", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3706959521", + ["text"] = "+# to Minimum Endurance Charges", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2276643899", + ["text"] = "+# to Minimum Endurance Charges per Grand Spectrum", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_658456881", + ["text"] = "+# to Minimum Frenzy Charges", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_596758264", + ["text"] = "+# to Minimum Frenzy Charges per Grand Spectrum", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1999711879", + ["text"] = "+# to Minimum Power Charges", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_308799121", + ["text"] = "+# to Minimum Power Charges per Grand Spectrum", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2629689891", + ["text"] = "+# to Monster Level of Area", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2932532516", + ["text"] = "+# to Perception Level for Heists", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3111456397", + ["text"] = "+# to Spectre maximum Life", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4080418644", + ["text"] = "+# to Strength", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_538848803", + ["text"] = "+# to Strength and Dexterity", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1535626285", + ["text"] = "+# to Strength and Intelligence", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2543977012", + ["text"] = "+# to Strength and Intelligence", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3736589033", + ["text"] = "+# to Total Mana Cost of Skills", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3750572810", + ["text"] = "+# to Total Mana Cost of Skills for each Corrupted Item Equipped", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2445618239", + ["text"] = "+# to Total Mana Cost of Skills while affected by Clarity", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_555061211", + ["text"] = "+# to Trap Disarmament Level for Heists", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_774059442", + ["text"] = "+# to Ward", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1379411836", + ["text"] = "+# to all Attributes", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_324804503", + ["text"] = "+# to level of Skills used by this Graft", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2503682584", + ["text"] = "+# to level of Socketed Skill Gems per Socketed Gem", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3997368968", + ["text"] = "+# to maximum Divine Charges", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3489782002", + ["text"] = "+# to maximum Energy Shield", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4052037485", + ["text"] = "+# to maximum Energy Shield (Local)", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2236622399", + ["text"] = "+# to maximum Energy Shield if there are no Defence Modifiers on other Equipped Items", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4270089231", + ["text"] = "+# to maximum Energy Shield per 100 Reserved Life", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2094299742", + ["text"] = "+# to maximum Fortification", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_335507772", + ["text"] = "+# to maximum Fortification", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2032578228", + ["text"] = "+# to maximum Fortification per Endurance Charge", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_922014346", + ["text"] = "+# to maximum Fortification while Focused", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2611224062", + ["text"] = "+# to maximum Fortification while affected by Glorious Madness", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3299347043", + ["text"] = "+# to maximum Life", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_726359715", + ["text"] = "+# to maximum Life for each Empty Red Socket on any Equipped Item", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2927667525", + ["text"] = "+# to maximum Life if there are no Life Modifiers on other Equipped Items", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1050105434", + ["text"] = "+# to maximum Mana", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2962020005", + ["text"] = "+# to maximum Mana for each Empty Blue Socket on any Equipped Item", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3822999954", + ["text"] = "+# to maximum Mana per 2 Intelligence", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1239233415", + ["text"] = "+# to maximum Snipe Stages", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1915836277", + ["text"] = "+# to maximum number of Eaten Souls", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3143579606", + ["text"] = "+# to maximum number of Raging Spirits", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1664904679", + ["text"] = "+# to maximum number of Raised Spectres per Socketed Ghastly Eye Jewel", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_966747987", + ["text"] = "+# to maximum number of Raised Zombies", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_13590525", + ["text"] = "+# to maximum number of Sacred Wisps +# to number of Sacred Wisps Summoned", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1225383362", + ["text"] = "+# to maximum number of Skeletons", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_125218179", + ["text"] = "+# to maximum number of Spectres", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2821079699", + ["text"] = "+# to maximum number of Summoned Golems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_920385757", + ["text"] = "+# to maximum number of Summoned Golems if you have 3 Primordial Items Socketed or Equipped", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2056575682", + ["text"] = "+# to maximum number of Summoned Holy Relics", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_517587669", + ["text"] = "+# to maximum number of Summoned Phantasms", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2674643140", + ["text"] = "+# to maximum number of Summoned Searing Bond Totems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_429867172", + ["text"] = "+# to maximum number of Summoned Totems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1886245216", + ["text"] = "+# to number of Summoned Arbalists", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4253454700", + ["text"] = "+#% Chance to Block (Shields)", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1702195217", + ["text"] = "+#% Chance to Block Attack Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2519106214", + ["text"] = "+#% Chance to Block Attack Damage during Effect", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_8517868", + ["text"] = "+#% Chance to Block Attack Damage for every 200 Fire Damage taken from Hits Recently", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3304203764", + ["text"] = "+#% Chance to Block Attack Damage from Cursed Enemies", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1214532298", + ["text"] = "+#% Chance to Block Attack Damage if there are at least 5 nearby Enemies", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3789765926", + ["text"] = "+#% Chance to Block Attack Damage if you have Blocked Attack Damage Recently", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_647983250", + ["text"] = "+#% Chance to Block Attack Damage if you have Blocked Spell Damage Recently", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_852195286", + ["text"] = "+#% Chance to Block Attack Damage if you were Damaged by a Hit Recently", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2937199008", + ["text"] = "+#% Chance to Block Attack Damage if you've Stunned an Enemy Recently", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1061631617", + ["text"] = "+#% Chance to Block Attack Damage per 50 Strength", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2355741828", + ["text"] = "+#% Chance to Block Attack Damage per Endurance Charge", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3039589351", + ["text"] = "+#% Chance to Block Attack Damage per Endurance Charge", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2148784747", + ["text"] = "+#% Chance to Block Attack Damage per Frenzy Charge", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2856326982", + ["text"] = "+#% Chance to Block Attack Damage per Power Charge", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2445675562", + ["text"] = "+#% Chance to Block Attack Damage per Summoned Skeleton", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2040585053", + ["text"] = "+#% Chance to Block Attack Damage when in Off Hand", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2166444903", + ["text"] = "+#% Chance to Block Attack Damage while Dual Wielding", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2538694749", + ["text"] = "+#% Chance to Block Attack Damage while Dual Wielding Claws", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3692646597", + ["text"] = "+#% Chance to Block Attack Damage while affected by Determination", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4061558269", + ["text"] = "+#% Chance to Block Attack Damage while holding a Shield", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3619054484", + ["text"] = "+#% Chance to Block Attack Damage while not Cursed", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3865999868", + ["text"] = "+#% Chance to Block Attack Damage while on Consecrated Ground", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1778298516", + ["text"] = "+#% Chance to Block Attack Damage while wielding a Staff", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1001829678", + ["text"] = "+#% Chance to Block Attack Damage while wielding a Staff (Staves)", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_653107703", + ["text"] = "+#% Chance to Block Attack Damage while you have at least 10 Crab Barriers", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1354504703", + ["text"] = "+#% Chance to Block Attack Damage while you have at least 5 Crab Barriers", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_19803471", + ["text"] = "+#% Chance to Block Spell Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_215754572", + ["text"] = "+#% Chance to Block Spell Damage during Effect", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4263513561", + ["text"] = "+#% Chance to Block Spell Damage if you have Blocked Spell Damage Recently", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3771323968", + ["text"] = "+#% Chance to Block Spell Damage if you have not Blocked Recently", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1101206134", + ["text"] = "+#% Chance to Block Spell Damage if you were Damaged by a Hit Recently", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1114429046", + ["text"] = "+#% Chance to Block Spell Damage per 50 Strength", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_816458107", + ["text"] = "+#% Chance to Block Spell Damage per Power Charge", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3218891195", + ["text"] = "+#% Chance to Block Spell Damage while Cursed", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_138741818", + ["text"] = "+#% Chance to Block Spell Damage while Dual Wielding", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1313498929", + ["text"] = "+#% Chance to Block Spell Damage while affected by Discipline", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_938645499", + ["text"] = "+#% Chance to Block Spell Damage while holding a Shield", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2040964235", + ["text"] = "+#% Chance to Block Spell Damage while in Off Hand", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2253286128", + ["text"] = "+#% Chance to Block Spell Damage while on Low Life", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2120297997", + ["text"] = "+#% Chance to Block Spell Damage while wielding a Staff", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2156201537", + ["text"] = "+#% Chance to contain a Vaal Side Area", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2266636761", + ["text"] = "+#% Chaos Resistance against Damage Over Time", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1818900806", + ["text"] = "+#% Critical Strike Chance per Power Charge", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1166971727", + ["text"] = "+#% Critical Strike Chance while at maximum Power Charges", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3992439283", + ["text"] = "+#% Critical Strike Multiplier while a Rare or Unique Enemy is Nearby", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3375516056", + ["text"] = "+#% Global Critical Strike Multiplier while you have a Frenzy Charge", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3062763405", + ["text"] = "+#% Global Critical Strike Multiplier while you have no Frenzy Charges", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_365540634", + ["text"] = "+#% Monster Chaos Resistance", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1430380429", + ["text"] = "+#% Monster Cold Resistance", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1054098949", + ["text"] = "+#% Monster Elemental Resistances", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2319127046", + ["text"] = "+#% Monster Fire Resistance", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_162742068", + ["text"] = "+#% Monster Lightning Resistance", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_918170065", + ["text"] = "+#% Monster Mana Leech Resistance", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_839186746", + ["text"] = "+#% Monster Physical Damage Reduction", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2916448124", + ["text"] = "+#% Player Cold Resistance per 25% Alert Level", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1318683911", + ["text"] = "+#% Player Fire Resistance per 25% Alert Level", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3839688967", + ["text"] = "+#% Player Lightning Resistance per 25% Alert Level", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4098976931", + ["text"] = "+#% chance for a Synthesis Map to drop from Final Map Boss in each Map (Tier 14+)", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_143510471", + ["text"] = "+#% chance to Avoid Elemental Damage from Hits while Phasing", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2490633856", + ["text"] = "+#% chance to Avoid Physical Damage from Hits while Phasing", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3416410609", + ["text"] = "+#% chance to Block Projectile Attack Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1214153650", + ["text"] = "+#% chance to Block Spell Damage if you have Blocked Attack Damage Recently", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2021058489", + ["text"] = "+#% chance to Evade Attack Hits", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_969576725", + ["text"] = "+#% chance to Evade Attack Hits while affected by Grace", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3680664274", + ["text"] = "+#% chance to Suppress Spell Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_492027537", + ["text"] = "+#% chance to Suppress Spell Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3273678959", + ["text"] = "+#% chance to Suppress Spell Damage if you've Suppressed Spell Damage Recently", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_161741084", + ["text"] = "+#% chance to Suppress Spell Damage per Endurance Charge", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2731261141", + ["text"] = "+#% chance to Suppress Spell Damage per Fortification", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_482967934", + ["text"] = "+#% chance to Suppress Spell Damage per Frenzy Charge", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1309947938", + ["text"] = "+#% chance to Suppress Spell Damage per Power Charge", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4108186648", + ["text"] = "+#% chance to Suppress Spell Damage while Channelling", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4071658793", + ["text"] = "+#% chance to Suppress Spell Damage while affected by Grace", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2170859717", + ["text"] = "+#% chance to Suppress Spell Damage while affected by Haste", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2076926581", + ["text"] = "+#% chance to Suppress Spell Damage while your Off Hand is empty", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4245896836", + ["text"] = "+#% chance to be Frozen, Shocked and Ignited", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1618339429", + ["text"] = "+#% chance to be Ignited", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4250009622", + ["text"] = "+#% chance to be Poisoned", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3206652215", + ["text"] = "+#% chance to be Shocked", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_652638686", + ["text"] = "+#% maximum Player Resistances per 25% Alert Level", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2016723660", + ["text"] = "+#% to All Resistances", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4055307827", + ["text"] = "+#% to Chaos Damage over Time Multiplier", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3913282911", + ["text"] = "+#% to Chaos Damage over Time Multiplier with Attack Skills", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2923486259", + ["text"] = "+#% to Chaos Resistance", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_392168009", + ["text"] = "+#% to Chaos Resistance during any Flask Effect", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4210011075", + ["text"] = "+#% to Chaos Resistance per Endurance Charge", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_175362265", + ["text"] = "+#% to Chaos Resistance per Poison on you", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2366940416", + ["text"] = "+#% to Chaos Resistance when on Low Life", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3456816469", + ["text"] = "+#% to Chaos Resistance while affected by Herald of Agony", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1138813382", + ["text"] = "+#% to Chaos Resistance while affected by Purity of Elements", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_779829642", + ["text"] = "+#% to Chaos Resistance while stationary", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1950806024", + ["text"] = "+#% to Cold Damage over Time Multiplier", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2936849585", + ["text"] = "+#% to Cold Damage over Time Multiplier per Power Charge", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_787958710", + ["text"] = "+#% to Cold Damage over Time Multiplier while affected by Malevolence", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4220027924", + ["text"] = "+#% to Cold Resistance", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1064331314", + ["text"] = "+#% to Cold Resistance when Socketed with a Green Gem", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2494069187", + ["text"] = "+#% to Cold Resistance while affected by Herald of Ice", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3393628375", + ["text"] = "+#% to Cold and Chaos Resistances", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4277795662", + ["text"] = "+#% to Cold and Lightning Resistances", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1535051459", + ["text"] = "+#% to Critical Strike Chance against Enemies on Consecrated Ground during Effect", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3992636701", + ["text"] = "+#% to Critical Strike Chance while affected by Aspect of the Cat", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2753985507", + ["text"] = "+#% to Critical Strike Chance while affected by Hatred", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1963942874", + ["text"] = "+#% to Critical Strike Multiplier against Burning Enemies", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2355615476", + ["text"] = "+#% to Critical Strike Multiplier against Enemies that are on Full Life", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_274716455", + ["text"] = "+#% to Critical Strike Multiplier for Spell Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_729430714", + ["text"] = "+#% to Critical Strike Multiplier for Spells if you haven't Killed Recently", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2328588114", + ["text"] = "+#% to Critical Strike Multiplier if Dexterity is higher than Intelligence", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3527458221", + ["text"] = "+#% to Critical Strike Multiplier if you have Blocked Recently", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1478247313", + ["text"] = "+#% to Critical Strike Multiplier if you haven't dealt a Critical Strike Recently", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2937483991", + ["text"] = "+#% to Critical Strike Multiplier if you've Killed Recently", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_536929014", + ["text"] = "+#% to Critical Strike Multiplier if you've Shattered an Enemy Recently", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2379274646", + ["text"] = "+#% to Critical Strike Multiplier if you've cast Enfeeble in the past 10 seconds", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1626712767", + ["text"] = "+#% to Critical Strike Multiplier if you've dealt a Non-Critical Strike Recently", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2865731079", + ["text"] = "+#% to Critical Strike Multiplier if you've gained a Power Charge Recently", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_956384511", + ["text"] = "+#% to Critical Strike Multiplier per 1% Chance to Block Attack Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1154827254", + ["text"] = "+#% to Critical Strike Multiplier per 10 Strength on Unallocated Passives in Radius", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2846122155", + ["text"] = "+#% to Critical Strike Multiplier per 25 Dexterity", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4164870816", + ["text"] = "+#% to Critical Strike Multiplier per Power Charge", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2546185479", + ["text"] = "+#% to Critical Strike Multiplier while Dual Wielding", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3627458291", + ["text"] = "+#% to Critical Strike Multiplier while affected by Anger", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1817023621", + ["text"] = "+#% to Critical Strike Multiplier while affected by Precision", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3128272024", + ["text"] = "+#% to Critical Strike Multiplier while area is not in Lockdown Players have +#% to Critical Strike Multiplier while area is not in Lockdown", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1712221299", + ["text"] = "+#% to Critical Strike Multiplier with Bows", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_915908446", + ["text"] = "+#% to Critical Strike Multiplier with Cold Skills", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1569407745", + ["text"] = "+#% to Critical Strike Multiplier with Elemental Skills", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2307547323", + ["text"] = "+#% to Critical Strike Multiplier with Fire Skills", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2441475928", + ["text"] = "+#% to Critical Strike Multiplier with Lightning Skills", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_670153687", + ["text"] = "+#% to Critical Strike Multiplier with One Handed Melee Weapons", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_252507949", + ["text"] = "+#% to Critical Strike Multiplier with Two Handed Melee Weapons", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_468580269", + ["text"] = "+#% to Critical Strike Multiplier with Unarmed Melee Attacks", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3988349707", + ["text"] = "+#% to Damage over Time Multiplier", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2212731469", + ["text"] = "+#% to Damage over Time Multiplier for Ailments per Elder Item Equipped", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1423749435", + ["text"] = "+#% to Damage over Time Multiplier for Bleeding", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1454648374", + ["text"] = "+#% to Damage over Time Multiplier for Bleeding from Critical Strikes", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_951608773", + ["text"] = "+#% to Damage over Time Multiplier for Bleeding from Hits with this Weapon", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2583415204", + ["text"] = "+#% to Damage over Time Multiplier for Bleeding per Frenzy Charge", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1691221049", + ["text"] = "+#% to Damage over Time Multiplier for Poison from Critical Strikes during Effect", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4096656097", + ["text"] = "+#% to Damage over Time Multiplier for Poison inflicted with this Weapon", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3504652942", + ["text"] = "+#% to Damage over Time Multiplier for Poison per Frenzy Charge", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3203086927", + ["text"] = "+#% to Damage over Time Multiplier if you've dealt a Critical Strike in the past 8 seconds", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1994121713", + ["text"] = "+#% to Damage over Time Multiplier per 10 Intelligence on Unallocated Passives in Radius", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2736708072", + ["text"] = "+#% to Damage over Time Multiplier while affected by Malevolence", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_693959086", + ["text"] = "+#% to Damage over Time Multiplier with Attack Skills", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1867426121", + ["text"] = "+#% to Damage over Time Multiplier with Melee Weapon Attacks", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3110554274", + ["text"] = "+#% to Elemental Resistances during Effect", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3382807662", + ["text"] = "+#% to Fire Damage over Time Multiplier", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2139660169", + ["text"] = "+#% to Fire Damage over Time Multiplier with Attack Skills", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3372524247", + ["text"] = "+#% to Fire Resistance", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3051845758", + ["text"] = "+#% to Fire Resistance when Socketed with a Red Gem", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2675641469", + ["text"] = "+#% to Fire Resistance while affected by Herald of Ash", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_38301299", + ["text"] = "+#% to Fire Resistance while on Low Life", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_378817135", + ["text"] = "+#% to Fire and Chaos Resistances", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2915988346", + ["text"] = "+#% to Fire and Cold Resistances", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3441501978", + ["text"] = "+#% to Fire and Lightning Resistances", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3556824919", + ["text"] = "+#% to Global Critical Strike Multiplier", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_35810390", + ["text"] = "+#% to Global Critical Strike Multiplier per Green Socket", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1671376347", + ["text"] = "+#% to Lightning Resistance", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_289814996", + ["text"] = "+#% to Lightning Resistance when Socketed with a Blue Gem", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2687017988", + ["text"] = "+#% to Lightning Resistance while affected by Herald of Thunder", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3465022881", + ["text"] = "+#% to Lightning and Chaos Resistances", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2039822488", + ["text"] = "+#% to Maximum Quality", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4237442815", + ["text"] = "+#% to Melee Critical Strike Multiplier", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_605218169", + ["text"] = "+#% to Melee Weapon Critical Strike Multiplier", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_57326096", + ["text"] = "+#% to Monster Critical Strike Multiplier", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1653010703", + ["text"] = "+#% to Non-Ailment Chaos Damage over Time Multiplier", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1757389331", + ["text"] = "+#% to Off Hand Critical Strike Chance", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3285400610", + ["text"] = "+#% to Off Hand Critical Strike Chance per 10 Maximum Energy Shield on Shield", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3699529133", + ["text"] = "+#% to Off Hand Critical Strike Multiplier per Murderous Eye Jewel affecting you, up to a maximum of +100%", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_240790947", + ["text"] = "+#% to Off Hand Critical Strike Multiplier per 10 Maximum Energy Shield on Shield", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1314617696", + ["text"] = "+#% to Physical Damage over Time Multiplier", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_709768359", + ["text"] = "+#% to Physical Damage over Time Multiplier with Attack Skills", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2016708976", + ["text"] = "+#% to Quality", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_463675009", + ["text"] = "+#% to Quality of Maps offered by Kirac Missions in your Maps", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2062835769", + ["text"] = "+#% to Quality of Socketed Chaos Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1164882313", + ["text"] = "+#% to Quality of Socketed Cold Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3422008440", + ["text"] = "+#% to Quality of Socketed Fire Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3828613551", + ["text"] = "+#% to Quality of Socketed Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1065580342", + ["text"] = "+#% to Quality of Socketed Lightning Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1325783255", + ["text"] = "+#% to Quality of Socketed Skill Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1328548975", + ["text"] = "+#% to Quality of Socketed Support Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1723333214", + ["text"] = "+#% to Quality of all Minion Skill Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3655769732", + ["text"] = "+#% to Quality of all Skill Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_791835907", + ["text"] = "+#% to Spell Critical Strike Chance", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4216579611", + ["text"] = "+#% to Spell Critical Strike Chance if 4 Shaper Items are Equipped", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3613173483", + ["text"] = "+#% to Unarmed Melee Attack Critical Strike Chance", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2901986750", + ["text"] = "+#% to all Elemental Resistances", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_597739519", + ["text"] = "+#% to all Elemental Resistances for each Empty White Socket on any Equipped Item", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1910205563", + ["text"] = "+#% to all Elemental Resistances per 10 Devotion", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2569472704", + ["text"] = "+#% to all Elemental Resistances per 15 Omniscience", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1852896268", + ["text"] = "+#% to all Elemental Resistances per Endurance Charge", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_242161915", + ["text"] = "+#% to all Elemental Resistances per Grand Spectrum", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1637928656", + ["text"] = "+#% to all Elemental Resistances while on Low Life", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2415398184", + ["text"] = "+#% to all Elemental Resistances while you have at least 200 Strength", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3100523498", + ["text"] = "+#% to all Resistances for each Corrupted Item Equipped", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2894273152", + ["text"] = "+#% to all Resistances per Minion from your Non-Vaal Skills", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1978899297", + ["text"] = "+#% to all maximum Elemental Resistances", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4026156644", + ["text"] = "+#% to all maximum Elemental Resistances during Effect", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_15754647", + ["text"] = "+#% to all maximum Elemental Resistances if 6 Shaper Items are Equipped", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3234824465", + ["text"] = "+#% to all maximum Elemental Resistances while affected by Purity of Elements", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_569299859", + ["text"] = "+#% to all maximum Resistances", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1030987123", + ["text"] = "+#% to all maximum Resistances while Poisoned", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3635566977", + ["text"] = "+#% to all maximum Resistances while you have no Endurance Charges", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4124805414", + ["text"] = "+#% to maximum Chance to Block Attack Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2662252183", + ["text"] = "+#% to maximum Chance to Block Attack Damage if 4 Elder Items are Equipped", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2388574377", + ["text"] = "+#% to maximum Chance to Block Spell Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1737470038", + ["text"] = "+#% to maximum Chance to Block Spell Damage if 4 Shaper Items are Equipped", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1301765461", + ["text"] = "+#% to maximum Chaos Resistance", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1065101352", + ["text"] = "+#% to maximum Chaos Resistance if 4 Hunter Items are Equipped", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3676141501", + ["text"] = "+#% to maximum Cold Resistance", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4123011890", + ["text"] = "+#% to maximum Cold Resistance if 4 Redeemer Items are Equipped", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_950661692", + ["text"] = "+#% to maximum Cold Resistance while affected by Herald of Ice", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4095671657", + ["text"] = "+#% to maximum Fire Resistance", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1417125941", + ["text"] = "+#% to maximum Fire Resistance if 4 Warlord Items are Equipped", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3716758077", + ["text"] = "+#% to maximum Fire Resistance while affected by Herald of Ash", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1011760251", + ["text"] = "+#% to maximum Lightning Resistance", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_901386819", + ["text"] = "+#% to maximum Lightning Resistance if 4 Crusader Items are Equipped", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3259396413", + ["text"] = "+#% to maximum Lightning Resistance while affected by Herald of Thunder", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1435838855", + ["text"] = "+1 to Level of Socketed Skill Gems per # Player Levels", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_900892599", + ["text"] = "+1 to maximum number of Raised Zombies per # Intelligence", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4056985119", + ["text"] = "+1 to maximum number of Raised Zombies per # Strength", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4007740198", + ["text"] = "+40% to Maximum Effect of Shock", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4022743870", + ["text"] = "1 Added Passive Skill is Adrenaline", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1625939562", + ["text"] = "1 Added Passive Skill is Advance Guard", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3848677307", + ["text"] = "1 Added Passive Skill is Aerialist", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4120556534", + ["text"] = "1 Added Passive Skill is Aerodynamics", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3122491961", + ["text"] = "1 Added Passive Skill is Agent of Destruction", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4154008618", + ["text"] = "1 Added Passive Skill is Aggressive Defence", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2912949210", + ["text"] = "1 Added Passive Skill is Alchemist", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_957679205", + ["text"] = "1 Added Passive Skill is Ancestral Echo", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2387747995", + ["text"] = "1 Added Passive Skill is Ancestral Guidance", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_77045106", + ["text"] = "1 Added Passive Skill is Ancestral Inspiration", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3998316", + ["text"] = "1 Added Passive Skill is Ancestral Might", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3746703776", + ["text"] = "1 Added Passive Skill is Ancestral Preservation", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3294884567", + ["text"] = "1 Added Passive Skill is Ancestral Reach", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2622946553", + ["text"] = "1 Added Passive Skill is Antifreeze", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_774369953", + ["text"] = "1 Added Passive Skill is Antivenom", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_393565679", + ["text"] = "1 Added Passive Skill is Arcane Adept", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3901992019", + ["text"] = "1 Added Passive Skill is Arcane Heroism", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2043503530", + ["text"] = "1 Added Passive Skill is Arcane Pyrotechnics", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3212859169", + ["text"] = "1 Added Passive Skill is Arcing Shot", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4222265138", + ["text"] = "1 Added Passive Skill is Assert Dominance", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2428334013", + ["text"] = "1 Added Passive Skill is Astonishing Affliction", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3084359503", + ["text"] = "1 Added Passive Skill is Basics of Pain", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4188581520", + ["text"] = "1 Added Passive Skill is Battle-Hardened", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1499057234", + ["text"] = "1 Added Passive Skill is Battlefield Dominator", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1127706436", + ["text"] = "1 Added Passive Skill is Blacksmith", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1085167979", + ["text"] = "1 Added Passive Skill is Blanketed Snow", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_693808153", + ["text"] = "1 Added Passive Skill is Blast-Freeze", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_775689239", + ["text"] = "1 Added Passive Skill is Blessed", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1424794574", + ["text"] = "1 Added Passive Skill is Blessed Rebirth", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3758712376", + ["text"] = "1 Added Passive Skill is Blizzard Caller", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2284771334", + ["text"] = "1 Added Passive Skill is Blood Artist", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3967765261", + ["text"] = "1 Added Passive Skill is Bloodscent", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1612414696", + ["text"] = "1 Added Passive Skill is Blowback", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_791125124", + ["text"] = "1 Added Passive Skill is Bodyguards", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2449392400", + ["text"] = "1 Added Passive Skill is Born of Chaos", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3198006994", + ["text"] = "1 Added Passive Skill is Brand Loyalty", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3250272113", + ["text"] = "1 Added Passive Skill is Brewed for Potency", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2205982416", + ["text"] = "1 Added Passive Skill is Broadside", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2900833792", + ["text"] = "1 Added Passive Skill is Brush with Death", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2068574831", + ["text"] = "1 Added Passive Skill is Brutal Infamy", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2008682345", + ["text"] = "1 Added Passive Skill is Burden Projection", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4199056048", + ["text"] = "1 Added Passive Skill is Burning Bright", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3359207393", + ["text"] = "1 Added Passive Skill is Calamitous", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3317068522", + ["text"] = "1 Added Passive Skill is Call to the Slaughter", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4025536654", + ["text"] = "1 Added Passive Skill is Capacitor", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_456502758", + ["text"] = "1 Added Passive Skill is Careful Handling", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2834490860", + ["text"] = "1 Added Passive Skill is Chilling Presence", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_968069586", + ["text"] = "1 Added Passive Skill is Chip Away", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2129392647", + ["text"] = "1 Added Passive Skill is Circling Oblivion", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_684087686", + ["text"] = "1 Added Passive Skill is Clarity of Purpose", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1274505521", + ["text"] = "1 Added Passive Skill is Cold Conduction", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_744783843", + ["text"] = "1 Added Passive Skill is Cold to the Core", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_836566759", + ["text"] = "1 Added Passive Skill is Cold-Blooded Killer", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3122505794", + ["text"] = "1 Added Passive Skill is Combat Rhythm", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4018305528", + ["text"] = "1 Added Passive Skill is Compound Injury", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3930242735", + ["text"] = "1 Added Passive Skill is Confident Combatant", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4105031548", + ["text"] = "1 Added Passive Skill is Conjured Wall", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2083777017", + ["text"] = "1 Added Passive Skill is Conservation of Energy", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2938895712", + ["text"] = "1 Added Passive Skill is Cooked Alive", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1777139212", + ["text"] = "1 Added Passive Skill is Corrosive Elements", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1153801980", + ["text"] = "1 Added Passive Skill is Cremator", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1821748178", + ["text"] = "1 Added Passive Skill is Cry Wolf", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2026112251", + ["text"] = "1 Added Passive Skill is Cult-Leader", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2534405517", + ["text"] = "1 Added Passive Skill is Daring Ideas", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1603621602", + ["text"] = "1 Added Passive Skill is Dark Ideation", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3784610129", + ["text"] = "1 Added Passive Skill is Dark Messenger", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_846491278", + ["text"] = "1 Added Passive Skill is Darting Movements", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1013470938", + ["text"] = "1 Added Passive Skill is Deadly Repartee", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1703766309", + ["text"] = "1 Added Passive Skill is Deep Chill", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_410939404", + ["text"] = "1 Added Passive Skill is Deep Cuts", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3860179422", + ["text"] = "1 Added Passive Skill is Destructive Aspect", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3711553948", + ["text"] = "1 Added Passive Skill is Devastator", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3177526694", + ["text"] = "1 Added Passive Skill is Disciples", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_183591019", + ["text"] = "1 Added Passive Skill is Disease Vector", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3206911230", + ["text"] = "1 Added Passive Skill is Disorienting Display", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3351136461", + ["text"] = "1 Added Passive Skill is Disorienting Wounds", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3652138990", + ["text"] = "1 Added Passive Skill is Distilled Perfection", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1381945089", + ["text"] = "1 Added Passive Skill is Doedre's Apathy", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2695848124", + ["text"] = "1 Added Passive Skill is Doedre's Gluttony", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_462115791", + ["text"] = "1 Added Passive Skill is Doedre's Spite", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_228455793", + ["text"] = "1 Added Passive Skill is Doryani's Lesson", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1038955006", + ["text"] = "1 Added Passive Skill is Dragon Hunter", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3087667389", + ["text"] = "1 Added Passive Skill is Dread March", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1911162866", + ["text"] = "1 Added Passive Skill is Drive the Destruction", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3737604164", + ["text"] = "1 Added Passive Skill is Eldritch Inspiration", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3950683692", + ["text"] = "1 Added Passive Skill is Electric Presence", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_289714529", + ["text"] = "1 Added Passive Skill is Elegant Form", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2032453153", + ["text"] = "1 Added Passive Skill is Empowered Envoy", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2150878631", + ["text"] = "1 Added Passive Skill is Endbringer", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2043284086", + ["text"] = "1 Added Passive Skill is Enduring Composure", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2522970386", + ["text"] = "1 Added Passive Skill is Enduring Focus", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_252724319", + ["text"] = "1 Added Passive Skill is Enduring Ward", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2195518432", + ["text"] = "1 Added Passive Skill is Energy From Naught", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1096136223", + ["text"] = "1 Added Passive Skill is Essence Rush", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2144634814", + ["text"] = "1 Added Passive Skill is Eternal Suffering", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_156080652", + ["text"] = "1 Added Passive Skill is Evil Eye", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4291066912", + ["text"] = "1 Added Passive Skill is Evil Eye", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_394918362", + ["text"] = "1 Added Passive Skill is Expansive Might", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2020075345", + ["text"] = "1 Added Passive Skill is Expendability", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2084371547", + ["text"] = "1 Added Passive Skill is Expert Sabotage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_50129423", + ["text"] = "1 Added Passive Skill is Exploit Weakness", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2017927451", + ["text"] = "1 Added Passive Skill is Explosive Force", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_131358113", + ["text"] = "1 Added Passive Skill is Exposure Therapy", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3818661553", + ["text"] = "1 Added Passive Skill is Eye of the Storm", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_392942015", + ["text"] = "1 Added Passive Skill is Eye to Eye", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2484082827", + ["text"] = "1 Added Passive Skill is Fan of Blades", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2918755450", + ["text"] = "1 Added Passive Skill is Fan the Flames", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_37078857", + ["text"] = "1 Added Passive Skill is Fasting", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3134222965", + ["text"] = "1 Added Passive Skill is Fearsome Warrior", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2396755365", + ["text"] = "1 Added Passive Skill is Feast of Flesh", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_383245807", + ["text"] = "1 Added Passive Skill is Feasting Fiends", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3944525413", + ["text"] = "1 Added Passive Skill is Feed the Fury", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1353571444", + ["text"] = "1 Added Passive Skill is Fettle", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3233538204", + ["text"] = "1 Added Passive Skill is Fiery Aegis", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3188756614", + ["text"] = "1 Added Passive Skill is Fire Attunement", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_982290947", + ["text"] = "1 Added Passive Skill is Flexible Sentry", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2350430215", + ["text"] = "1 Added Passive Skill is Flow of Life", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3984980429", + ["text"] = "1 Added Passive Skill is Follow-Through", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2454339320", + ["text"] = "1 Added Passive Skill is Forbidden Words", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1904581068", + ["text"] = "1 Added Passive Skill is Force Multiplier", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_792262925", + ["text"] = "1 Added Passive Skill is Frantic Aspect", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3599340381", + ["text"] = "1 Added Passive Skill is Fuel the Fight", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3415827027", + ["text"] = "1 Added Passive Skill is Furious Assault", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2763732093", + ["text"] = "1 Added Passive Skill is Genius", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1591995797", + ["text"] = "1 Added Passive Skill is Gladiator's Fortitude", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1543731719", + ["text"] = "1 Added Passive Skill is Gladiatorial Combat", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1903496649", + ["text"] = "1 Added Passive Skill is Graceful Execution", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2350900742", + ["text"] = "1 Added Passive Skill is Grand Design", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2194205899", + ["text"] = "1 Added Passive Skill is Grim Oath", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1882129725", + ["text"] = "1 Added Passive Skill is Guerilla Tactics", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_72129119", + ["text"] = "1 Added Passive Skill is Haemorrhage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1080363357", + ["text"] = "1 Added Passive Skill is Haunting Shout", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1483358825", + ["text"] = "1 Added Passive Skill is Heart of Iron", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3640252904", + ["text"] = "1 Added Passive Skill is Heavy Hitter", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3274270612", + ["text"] = "1 Added Passive Skill is Heraldry", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2341828832", + ["text"] = "1 Added Passive Skill is Hex Breaker", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2294919888", + ["text"] = "1 Added Passive Skill is Hibernator", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2665170385", + ["text"] = "1 Added Passive Skill is Hit and Run", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3667965781", + ["text"] = "1 Added Passive Skill is Holistic Health", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3898572660", + ["text"] = "1 Added Passive Skill is Holy Conquest", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3697635701", + ["text"] = "1 Added Passive Skill is Holy Word", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_555800967", + ["text"] = "1 Added Passive Skill is Hound's Mark", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3467711950", + ["text"] = "1 Added Passive Skill is Hulking Corpses", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_810219447", + ["text"] = "1 Added Passive Skill is Improvisor", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3904970959", + ["text"] = "1 Added Passive Skill is Insatiable Killer", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3872380586", + ["text"] = "1 Added Passive Skill is Inspired Oppression", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_212648555", + ["text"] = "1 Added Passive Skill is Insulated", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2785835061", + ["text"] = "1 Added Passive Skill is Intensity", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1309218394", + ["text"] = "1 Added Passive Skill is Introspection", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2262034536", + ["text"] = "1 Added Passive Skill is Invigorating Portents", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3258653591", + ["text"] = "1 Added Passive Skill is Iron Breaker", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_426715778", + ["text"] = "1 Added Passive Skill is Lasting Impression", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2195406641", + ["text"] = "1 Added Passive Skill is Lead By Example", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2337273077", + ["text"] = "1 Added Passive Skill is Life from Death", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1094635162", + ["text"] = "1 Added Passive Skill is Liquid Inspiration", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2055715585", + ["text"] = "1 Added Passive Skill is Lord of Drought", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3989400244", + ["text"] = "1 Added Passive Skill is Low Tolerance", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_684155617", + ["text"] = "1 Added Passive Skill is Mage Bane", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2118664144", + ["text"] = "1 Added Passive Skill is Mage Hunter", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2886441936", + ["text"] = "1 Added Passive Skill is Magnifier", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1015189426", + ["text"] = "1 Added Passive Skill is Martial Mastery", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2978494217", + ["text"] = "1 Added Passive Skill is Martial Momentum", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1152182658", + ["text"] = "1 Added Passive Skill is Martial Prowess", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3257074218", + ["text"] = "1 Added Passive Skill is Master of Command", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2771217016", + ["text"] = "1 Added Passive Skill is Master of Fear", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1462135249", + ["text"] = "1 Added Passive Skill is Master of Fire", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_185592058", + ["text"] = "1 Added Passive Skill is Master of the Maelstrom", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3585232432", + ["text"] = "1 Added Passive Skill is Master the Fundamentals", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4291434923", + ["text"] = "1 Added Passive Skill is Mender's Wellspring", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4154709486", + ["text"] = "1 Added Passive Skill is Militarism", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2595115995", + ["text"] = "1 Added Passive Skill is Mindfulness", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3832665876", + ["text"] = "1 Added Passive Skill is Misery Everlasting", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1048879642", + ["text"] = "1 Added Passive Skill is Mob Mentality", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3875792669", + ["text"] = "1 Added Passive Skill is Molten One's Mark", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3881737087", + ["text"] = "1 Added Passive Skill is Mortifying Aspect", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2314111938", + ["text"] = "1 Added Passive Skill is Mystical Ward", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_510654792", + ["text"] = "1 Added Passive Skill is Natural Vigour", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1722480396", + ["text"] = "1 Added Passive Skill is No Witnesses", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_731840035", + ["text"] = "1 Added Passive Skill is Non-Flammable", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1028754276", + ["text"] = "1 Added Passive Skill is Numbing Elixir", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1976069869", + ["text"] = "1 Added Passive Skill is One with the Shield", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_633943719", + ["text"] = "1 Added Passive Skill is Openness", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4281625943", + ["text"] = "1 Added Passive Skill is Opportunistic Fusilade", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2250169390", + ["text"] = "1 Added Passive Skill is Overlord", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3777170562", + ["text"] = "1 Added Passive Skill is Overshock", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_770408103", + ["text"] = "1 Added Passive Skill is Overwhelming Malice", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4272503233", + ["text"] = "1 Added Passive Skill is Paralysis", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1734275536", + ["text"] = "1 Added Passive Skill is Peace Amidst Chaos", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1722821275", + ["text"] = "1 Added Passive Skill is Peak Vigour", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3057154383", + ["text"] = "1 Added Passive Skill is Phlebotomist", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1005475168", + ["text"] = "1 Added Passive Skill is Powerful Assault", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_164032122", + ["text"] = "1 Added Passive Skill is Powerful Ward", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3435403756", + ["text"] = "1 Added Passive Skill is Practiced Caster", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2913581789", + ["text"] = "1 Added Passive Skill is Precise Focus", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2335364359", + ["text"] = "1 Added Passive Skill is Precise Retaliation", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3391925584", + ["text"] = "1 Added Passive Skill is Pressure Points", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_622362787", + ["text"] = "1 Added Passive Skill is Primordial Bond", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3492924480", + ["text"] = "1 Added Passive Skill is Prismatic Carapace", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1149662934", + ["text"] = "1 Added Passive Skill is Prismatic Dance", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2342448236", + ["text"] = "1 Added Passive Skill is Prismatic Heart", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1705633890", + ["text"] = "1 Added Passive Skill is Prodigious Defence", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_814369372", + ["text"] = "1 Added Passive Skill is Provocateur", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1507409483", + ["text"] = "1 Added Passive Skill is Pure Agony", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3509724289", + ["text"] = "1 Added Passive Skill is Pure Aptitude", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1621496909", + ["text"] = "1 Added Passive Skill is Pure Guile", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2372915005", + ["text"] = "1 Added Passive Skill is Pure Might", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_507505131", + ["text"] = "1 Added Passive Skill is Purposeful Harbinger", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1626818279", + ["text"] = "1 Added Passive Skill is Quick Getaway", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2169345147", + ["text"] = "1 Added Passive Skill is Quick and Deadly", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4288473380", + ["text"] = "1 Added Passive Skill is Rattling Bellow", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1038897629", + ["text"] = "1 Added Passive Skill is Raze and Pillage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_845306697", + ["text"] = "1 Added Passive Skill is Readiness", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_691431951", + ["text"] = "1 Added Passive Skill is Remarkable", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4263287206", + ["text"] = "1 Added Passive Skill is Rend", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3607300552", + ["text"] = "1 Added Passive Skill is Renewal", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2233272527", + ["text"] = "1 Added Passive Skill is Repeater", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1496043857", + ["text"] = "1 Added Passive Skill is Replenishing Presence", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2620267328", + ["text"] = "1 Added Passive Skill is Righteous Path", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_254194892", + ["text"] = "1 Added Passive Skill is Riot Queller", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_713945233", + ["text"] = "1 Added Passive Skill is Rot-Resistant", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2478282326", + ["text"] = "1 Added Passive Skill is Rote Reinforcement", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2289610642", + ["text"] = "1 Added Passive Skill is Rotten Claws", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1488030420", + ["text"] = "1 Added Passive Skill is Run Through", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3638731729", + ["text"] = "1 Added Passive Skill is Sadist", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_478147593", + ["text"] = "1 Added Passive Skill is Sage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_715786975", + ["text"] = "1 Added Passive Skill is Sap Psyche", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4222635921", + ["text"] = "1 Added Passive Skill is Savage Response", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3539175001", + ["text"] = "1 Added Passive Skill is Savour the Moment", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2589589781", + ["text"] = "1 Added Passive Skill is Scintillating Idea", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_876846990", + ["text"] = "1 Added Passive Skill is Seal Mender", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2773515950", + ["text"] = "1 Added Passive Skill is Second Skin", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2261237498", + ["text"] = "1 Added Passive Skill is Seeker Runes", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3025453294", + ["text"] = "1 Added Passive Skill is Self-Control", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2644533453", + ["text"] = "1 Added Passive Skill is Self-Fulfilling Prophecy", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4290522695", + ["text"] = "1 Added Passive Skill is Septic Spells", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1101250813", + ["text"] = "1 Added Passive Skill is Set and Forget", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1476913894", + ["text"] = "1 Added Passive Skill is Shifting Shadow", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2783012144", + ["text"] = "1 Added Passive Skill is Shrieking Bolts", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1290215329", + ["text"] = "1 Added Passive Skill is Skeletal Atrophy", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_315697256", + ["text"] = "1 Added Passive Skill is Skullbreaker", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3993957711", + ["text"] = "1 Added Passive Skill is Sleepless Sentries", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_540300548", + ["text"] = "1 Added Passive Skill is Smite the Weak", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2322980282", + ["text"] = "1 Added Passive Skill is Smoking Remains", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3319205340", + ["text"] = "1 Added Passive Skill is Snaring Spirits", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1595367309", + ["text"] = "1 Added Passive Skill is Snowstorm", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4235300427", + ["text"] = "1 Added Passive Skill is Special Reserve", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3372255769", + ["text"] = "1 Added Passive Skill is Spiked Concoction", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1134501245", + ["text"] = "1 Added Passive Skill is Spiteful Presence", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3603695769", + ["text"] = "1 Added Passive Skill is Spring Back", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3500334379", + ["text"] = "1 Added Passive Skill is Steady Torment", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1088949570", + ["text"] = "1 Added Passive Skill is Stoic Focus", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2087561637", + ["text"] = "1 Added Passive Skill is Storm Drinker", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1122051203", + ["text"] = "1 Added Passive Skill is Storm's Hand", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_889728548", + ["text"] = "1 Added Passive Skill is Stormrider", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1397498432", + ["text"] = "1 Added Passive Skill is Streamlined", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_282062371", + ["text"] = "1 Added Passive Skill is Strike Leader", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2383914651", + ["text"] = "1 Added Passive Skill is Stubborn Student", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3202667190", + ["text"] = "1 Added Passive Skill is Student of Decay", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2251304016", + ["text"] = "1 Added Passive Skill is Sublime Form", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1364858171", + ["text"] = "1 Added Passive Skill is Sublime Sensation", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3226074658", + ["text"] = "1 Added Passive Skill is Supercharge", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3410752193", + ["text"] = "1 Added Passive Skill is Surefooted Striker", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2410501331", + ["text"] = "1 Added Passive Skill is Surging Vitality", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3051562738", + ["text"] = "1 Added Passive Skill is Surprise Sabotage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2631806437", + ["text"] = "1 Added Passive Skill is Tempered Arrowheads", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_348883745", + ["text"] = "1 Added Passive Skill is Tempt the Storm", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_177215332", + ["text"] = "1 Added Passive Skill is Thaumophage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1741700339", + ["text"] = "1 Added Passive Skill is Thunderstruck", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2930275641", + ["text"] = "1 Added Passive Skill is Titanic Swings", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2780712583", + ["text"] = "1 Added Passive Skill is Touch of Cruelty", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3536778624", + ["text"] = "1 Added Passive Skill is Towering Threat", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_382360671", + ["text"] = "1 Added Passive Skill is Uncompromising", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4186213466", + ["text"] = "1 Added Passive Skill is Unholy Grace", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1570474940", + ["text"] = "1 Added Passive Skill is Unrestrained Focus", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_729163974", + ["text"] = "1 Added Passive Skill is Unspeakable Gifts", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2758966888", + ["text"] = "1 Added Passive Skill is Untouchable", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_367638058", + ["text"] = "1 Added Passive Skill is Unwavering Focus", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2788982914", + ["text"] = "1 Added Passive Skill is Unwaveringly Evil", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1996576560", + ["text"] = "1 Added Passive Skill is Vast Power", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_664010431", + ["text"] = "1 Added Passive Skill is Veteran Defender", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_882876854", + ["text"] = "1 Added Passive Skill is Vicious Bite", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4054656914", + ["text"] = "1 Added Passive Skill is Vicious Guard", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_567971948", + ["text"] = "1 Added Passive Skill is Vicious Skewering", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1936135020", + ["text"] = "1 Added Passive Skill is Victim Maker", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_647201233", + ["text"] = "1 Added Passive Skill is Vile Reinvigoration", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2134141047", + ["text"] = "1 Added Passive Skill is Vital Focus", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3957006524", + ["text"] = "1 Added Passive Skill is Vivid Hues", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2350668735", + ["text"] = "1 Added Passive Skill is Volatile Presence", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1363668533", + ["text"] = "1 Added Passive Skill is Wall of Muscle", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_578355556", + ["text"] = "1 Added Passive Skill is Warning Call", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2066820199", + ["text"] = "1 Added Passive Skill is Wasting Affliction", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2244243943", + ["text"] = "1 Added Passive Skill is Weight Advantage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1616734644", + ["text"] = "1 Added Passive Skill is Wicked Pall", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1678643716", + ["text"] = "1 Added Passive Skill is Widespread Destruction", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1162352537", + ["text"] = "1 Added Passive Skill is Will Shaper", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1938661964", + ["text"] = "1 Added Passive Skill is Wind-up", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_755881431", + ["text"] = "1 Added Passive Skill is Winter Prowler", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_608164368", + ["text"] = "1 Added Passive Skill is Wish for Death", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3078065247", + ["text"] = "1 Added Passive Skill is Wizardry", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_69078820", + ["text"] = "1 Added Passive Skill is Wound Aggravation", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_241783558", + ["text"] = "1 Added Passive Skill is Wrapped in Flame", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2192181096", + ["text"] = "1% increased Armour per # Strength when in Off Hand", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1358422215", + ["text"] = "1% increased Attack Damage per 200 of the lowest of Armour and Evasion Rating", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1619923327", + ["text"] = "1% increased Claw Physical Damage per # Dexterity Allocated in Radius", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_679194784", + ["text"] = "1% increased Damage per # Strength when in Main Hand", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4113852051", + ["text"] = "1% increased Evasion Rating per # Dexterity Allocated in Radius", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_915233352", + ["text"] = "1% increased Melee Physical Damage with Unarmed Attacks per # Dexterity Allocated in Radius", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2591020064", + ["text"] = "1% increased Movement Speed per # Evasion Rating, up to 75%", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1382953917", + ["text"] = "1% increased Projectile Speed per # Evasion Rating, up to 75%", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4260403588", + ["text"] = "1% increased Rarity of Items found per # Rampage Kills", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_699783004", + ["text"] = "1% increased maximum Energy Shield per # Strength when in Off Hand", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3548542256", + ["text"] = "1% increased maximum Mana per # Strength when in Main Hand", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1493090598", + ["text"] = "35% chance to avoid being Stunned for each Herald Buff affecting you", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1928796626", + ["text"] = "A Beyond Unique drops when the first Unique Monster from Beyond is slain", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2623157736", + ["text"] = "A Map Boss is granted a random Essence Modifier from any Imprisoned Monsters slain in your Maps", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1669870438", + ["text"] = "A Monster in this Area will summon Abaxoth when Slain", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4077883829", + ["text"] = "A Monster in this Area will summon a Unique Monster from Beyond when Slain", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2517911661", + ["text"] = "A Strongbox in this Area is Corrupted", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_211873159", + ["text"] = "Abyss Cracks in your Maps have #% chance to spawn 100% increased Monsters", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_440232197", + ["text"] = "Abyss Cracks in your Maps have #% chance to spawn all Monsters as Magic for each prior Pit in that Abyss", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1388221282", + ["text"] = "Abyss Cracks in your Maps have #% chance to spawn all Monsters as at least Magic", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_286869897", + ["text"] = "Abyss Jewels dropped by Abyssal Troves or Stygian Spires in your Maps have a #% Chance to be Rare and Corrupted", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4842372", + ["text"] = "Abyss Jewels found have #% chance to be Corrupted and have 5 or 6 random Modifiers", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4842372", + ["text"] = "Abyss Jewels found in Abyssal Troves or dropped by Stygian Spires in your Maps have #% chance to be Corrupted and have 5 or 6 random Modifiers", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2975078312", + ["text"] = "Abyss Monsters in your Maps grant #% increased Experience", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1086708760", + ["text"] = "Abyss Pits in your Maps have #% chance to spawn 100% increased Monsters", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4049011082", + ["text"] = "Abyss Pits in your Maps have #% chance to spawn 5 additional Rare Monsters", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4157613372", + ["text"] = "Abyss Pits in your Maps have #% chance to spawn all Monsters as at least Magic", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2609011894", + ["text"] = "Abyssal Troves and Stygian Spires in your Maps have #% chance to drop a Rare Item with an Abyssal Socket", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1028265433", + ["text"] = "Abyssal Troves and Stygian Spires in your Maps have #% chance to drop an Abyss Scarab", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1553039081", + ["text"] = "Abyssal Troves and Stygian Spires in your Maps have #% increased chance to contain or drop an Abyss Jewel", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2722831300", + ["text"] = "Abysses in Area have #% increased chance to lead to an Abyssal Depths", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_944630113", + ["text"] = "Abysses in Area spawn #% increased Monsters", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2722831300", + ["text"] = "Abysses in your Maps have #% increased chance to lead to an Abyssal Depths", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_944630113", + ["text"] = "Abysses in your Maps spawn #% increased Monsters", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1927544133", + ["text"] = "Abysses in your Maps spawn #% increased Monsters for each prior Pit in that Abyss", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_836430463", + ["text"] = "Abysses in your Maps that do not lead to an Abyssal Depths have #% increased chance to lead to a Stygian Spire", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1977826050", + ["text"] = "Abysses in your Maps that do not lead to an Abyssal Depths lead to 4 Pits if able", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_911724954", + ["text"] = "Abysses in your Maps that do not lead to an Abyssal Depths lead to at least 3 Pits if able", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_383557755", + ["text"] = "Acrobatics", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_628716294", + ["text"] = "Action Speed cannot be modified to below Base Value", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3616500790", + ["text"] = "Action Speed cannot be modified to below Base Value if you've cast Temporal Chains in the past 10 seconds", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2146687910", + ["text"] = "Action Speed cannot be modified to below Base Value while Ignited", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_713280739", + ["text"] = "Added Small Passive Skills also grant: #% increased Area of Effect", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2642917409", + ["text"] = "Added Small Passive Skills also grant: #% increased Area of Effect of Aura Skills", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2138819920", + ["text"] = "Added Small Passive Skills also grant: #% increased Area of Effect of Hex Skills", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1411310186", + ["text"] = "Added Small Passive Skills also grant: #% increased Attack Speed", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3262895685", + ["text"] = "Added Small Passive Skills also grant: #% increased Attack and Cast Speed while affected by a Herald", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3692167527", + ["text"] = "Added Small Passive Skills also grant: #% increased Attack and Cast Speed with Chaos Skills", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2054530657", + ["text"] = "Added Small Passive Skills also grant: #% increased Attack and Cast Speed with Cold Skills", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2699118751", + ["text"] = "Added Small Passive Skills also grant: #% increased Attack and Cast Speed with Elemental Skills", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1849042097", + ["text"] = "Added Small Passive Skills also grant: #% increased Attack and Cast Speed with Fire Skills", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_201731102", + ["text"] = "Added Small Passive Skills also grant: #% increased Attack and Cast Speed with Lightning Skills", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1903097619", + ["text"] = "Added Small Passive Skills also grant: #% increased Attack and Cast Speed with Physical Skills", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2265469693", + ["text"] = "Added Small Passive Skills also grant: #% increased Brand Attachment range", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1195353227", + ["text"] = "Added Small Passive Skills also grant: #% increased Cast Speed", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1719521705", + ["text"] = "Added Small Passive Skills also grant: #% increased Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2401834120", + ["text"] = "Added Small Passive Skills also grant: #% increased Damage over Time", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3338465330", + ["text"] = "Added Small Passive Skills also grant: #% increased Duration of Elemental Ailments on Enemies", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3187805501", + ["text"] = "Added Small Passive Skills also grant: #% increased Flask Charges gained", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2474836297", + ["text"] = "Added Small Passive Skills also grant: #% increased Mana Regeneration Rate", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_679080252", + ["text"] = "Added Small Passive Skills also grant: #% increased Projectile Speed", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1588674629", + ["text"] = "Added Small Passive Skills also grant: #% increased Totem Placement speed", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2135246244", + ["text"] = "Added Small Passive Skills also grant: #% increased Trap and Mine Throwing Speed", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2596487673", + ["text"] = "Added Small Passive Skills also grant: #% increased Warcry Duration", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4036575250", + ["text"] = "Added Small Passive Skills also grant: +# to All Attributes", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2554466725", + ["text"] = "Added Small Passive Skills also grant: +# to Armour", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2090413987", + ["text"] = "Added Small Passive Skills also grant: +# to Dexterity", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4100161067", + ["text"] = "Added Small Passive Skills also grant: +# to Evasion", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_724930776", + ["text"] = "Added Small Passive Skills also grant: +# to Intelligence", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2643685329", + ["text"] = "Added Small Passive Skills also grant: +# to Maximum Energy Shield", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3819827377", + ["text"] = "Added Small Passive Skills also grant: +# to Maximum Life", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3994193163", + ["text"] = "Added Small Passive Skills also grant: +# to Maximum Mana", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3258414199", + ["text"] = "Added Small Passive Skills also grant: +# to Strength", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1811604576", + ["text"] = "Added Small Passive Skills also grant: +#% to Chaos Resistance", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2709692542", + ["text"] = "Added Small Passive Skills also grant: +#% to Cold Resistance", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1926135629", + ["text"] = "Added Small Passive Skills also grant: +#% to Critical Strike Multiplier", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1790411851", + ["text"] = "Added Small Passive Skills also grant: +#% to Fire Resistance", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2250780084", + ["text"] = "Added Small Passive Skills also grant: +#% to Lightning Resistance", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2669029667", + ["text"] = "Added Small Passive Skills also grant: +#% to all Elemental Resistances", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3799759054", + ["text"] = "Added Small Passive Skills also grant: Channelling Skills have #% increased Attack and Cast Speed", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_542238572", + ["text"] = "Added Small Passive Skills also grant: Minions Regenerate #% of Life per Second", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2310019673", + ["text"] = "Added Small Passive Skills also grant: Minions have #% increased Attack and Cast Speed", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1948127742", + ["text"] = "Added Small Passive Skills also grant: Minions have #% increased Attack and Cast Speed while you are affected by a Herald", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3721672021", + ["text"] = "Added Small Passive Skills also grant: Regenerate #% of Life per Second", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2557943734", + ["text"] = "Added Small Passive Skills grant Nothing", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2618549697", + ["text"] = "Added Small Passive Skills have #% increased Effect", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_247746531", + ["text"] = "Adds # Jewel Socket Passive Skills", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3086156145", + ["text"] = "Adds # Passive Skills", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1085446536", + ["text"] = "Adds # Small Passive Skills which grant nothing", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3408048164", + ["text"] = "Adds # minimum Cold Damage to Spells per Power Charge", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3531280422", + ["text"] = "Adds # to # Chaos Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2223678961", + ["text"] = "Adds # to # Chaos Damage (Local)", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4294344579", + ["text"] = "Adds # to # Chaos Damage for each Curse on the Enemy", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_982177653", + ["text"] = "Adds # to # Chaos Damage for each Spider's Web on the Enemy", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2523334466", + ["text"] = "Adds # to # Chaos Damage if you've dealt a Critical Strike Recently", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3758293500", + ["text"] = "Adds # to # Chaos Damage in Off Hand", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_674553446", + ["text"] = "Adds # to # Chaos Damage to Attacks", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_385361774", + ["text"] = "Adds # to # Chaos Damage to Attacks against you", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_117885424", + ["text"] = "Adds # to # Chaos Damage to Attacks per 80 Strength", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2152491486", + ["text"] = "Adds # to # Chaos Damage to Attacks while you have a Bestial Minion", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2300399854", + ["text"] = "Adds # to # Chaos Damage to Spells", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3519268108", + ["text"] = "Adds # to # Chaos Damage to Spells and Attacks during any Flask Effect", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2387423236", + ["text"] = "Adds # to # Cold Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1037193709", + ["text"] = "Adds # to # Cold Damage (Local)", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3734640451", + ["text"] = "Adds # to # Cold Damage against Chilled Enemies", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2233361223", + ["text"] = "Adds # to # Cold Damage against Chilled or Frozen Enemies", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3370223014", + ["text"] = "Adds # to # Cold Damage if you've dealt a Critical Strike Recently", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2109066258", + ["text"] = "Adds # to # Cold Damage in Off Hand", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4067062424", + ["text"] = "Adds # to # Cold Damage to Attacks", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_617462123", + ["text"] = "Adds # to # Cold Damage to Attacks against you", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_769783486", + ["text"] = "Adds # to # Cold Damage to Attacks per 10 Dexterity", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_149574107", + ["text"] = "Adds # to # Cold Damage to Attacks with this Weapon per 10 Dexterity", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3482587079", + ["text"] = "Adds # to # Cold Damage to Hits against you", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_178386603", + ["text"] = "Adds # to # Cold Damage to Hits against you per Frenzy Charge", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1109700751", + ["text"] = "Adds # to # Cold Damage to Retaliation Skills", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2469416729", + ["text"] = "Adds # to # Cold Damage to Spells", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1662717006", + ["text"] = "Adds # to # Cold Damage to Spells and Attacks", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_897996059", + ["text"] = "Adds # to # Cold Damage to Spells while no Life is Reserved", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2643562209", + ["text"] = "Adds # to # Cold Damage while affected by Hatred", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3485231932", + ["text"] = "Adds # to # Cold Damage while you have Avian's Might", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_761505024", + ["text"] = "Adds # to # Fire Attack Damage per Buff on you", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_321077055", + ["text"] = "Adds # to # Fire Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_709508406", + ["text"] = "Adds # to # Fire Damage (Local)", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_794830148", + ["text"] = "Adds # to # Fire Damage against Ignited Enemies", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3623716321", + ["text"] = "Adds # to # Fire Damage if you've Blocked Recently", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3144358296", + ["text"] = "Adds # to # Fire Damage if you've dealt a Critical Strike Recently", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_169657426", + ["text"] = "Adds # to # Fire Damage in Main Hand", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1573130764", + ["text"] = "Adds # to # Fire Damage to Attacks", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_627339348", + ["text"] = "Adds # to # Fire Damage to Attacks against Ignited Enemies", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2127433866", + ["text"] = "Adds # to # Fire Damage to Attacks against you", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1911822529", + ["text"] = "Adds # to # Fire Damage to Attacks for every 1% your Light Radius is above base value", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_68673913", + ["text"] = "Adds # to # Fire Damage to Attacks per 10 Strength", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1060540099", + ["text"] = "Adds # to # Fire Damage to Attacks with this Weapon per 10 Strength", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1905034712", + ["text"] = "Adds # to # Fire Damage to Hits against you", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3977907993", + ["text"] = "Adds # to # Fire Damage to Hits with this Weapon against Blinded Enemies", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1133016593", + ["text"] = "Adds # to # Fire Damage to Spells", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3964634628", + ["text"] = "Adds # to # Fire Damage to Spells and Attacks", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_833719670", + ["text"] = "Adds # to # Fire Damage to Spells while no Life is Reserved", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3434279150", + ["text"] = "Adds # to # Fire Spell Damage per Buff on you", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1334060246", + ["text"] = "Adds # to # Lightning Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3336890334", + ["text"] = "Adds # to # Lightning Damage (Local)", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_90012347", + ["text"] = "Adds # to # Lightning Damage against Shocked Enemies", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4222857095", + ["text"] = "Adds # to # Lightning Damage for each Shocked Enemy you've Killed Recently", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_935623115", + ["text"] = "Adds # to # Lightning Damage if you've dealt a Critical Strike Recently", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1754445556", + ["text"] = "Adds # to # Lightning Damage to Attacks", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2491363440", + ["text"] = "Adds # to # Lightning Damage to Attacks against you", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4292531291", + ["text"] = "Adds # to # Lightning Damage to Attacks during Effect", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3168149399", + ["text"] = "Adds # to # Lightning Damage to Attacks per 10 Intelligence", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_817611267", + ["text"] = "Adds # to # Lightning Damage to Attacks with this Weapon per 10 Dexterity", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3390848861", + ["text"] = "Adds # to # Lightning Damage to Attacks with this Weapon per 10 Intelligence", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2870108850", + ["text"] = "Adds # to # Lightning Damage to Hits against Ignited Enemies", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2923069345", + ["text"] = "Adds # to # Lightning Damage to Hits against you", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2831165374", + ["text"] = "Adds # to # Lightning Damage to Spells", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2885144362", + ["text"] = "Adds # to # Lightning Damage to Spells and Attacks", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4108305628", + ["text"] = "Adds # to # Lightning Damage to Spells during Effect", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4085417083", + ["text"] = "Adds # to # Lightning Damage to Spells per Power Charge", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3597806437", + ["text"] = "Adds # to # Lightning Damage to Spells while Unarmed", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_985999215", + ["text"] = "Adds # to # Lightning Damage to Spells while no Life is Reserved", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3835522656", + ["text"] = "Adds # to # Lightning Damage to Unarmed Melee Hits", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_855634301", + ["text"] = "Adds # to # Lightning Damage while you have Avian's Might", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_960081730", + ["text"] = "Adds # to # Physical Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1940865751", + ["text"] = "Adds # to # Physical Damage (Local)", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1244003614", + ["text"] = "Adds # to # Physical Damage against Bleeding Enemies", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_424026624", + ["text"] = "Adds # to # Physical Damage against Poisoned Enemies", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1455766505", + ["text"] = "Adds # to # Physical Damage for each Impale on Enemy", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2723101291", + ["text"] = "Adds # to # Physical Damage if you've dealt a Critical Strike Recently", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_173438493", + ["text"] = "Adds # to # Physical Damage per Endurance Charge", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3032590688", + ["text"] = "Adds # to # Physical Damage to Attacks", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3856468419", + ["text"] = "Adds # to # Physical Damage to Attacks against Frozen Enemies", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2093523445", + ["text"] = "Adds # to # Physical Damage to Attacks against you", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3368671817", + ["text"] = "Adds # to # Physical Damage to Attacks and Spells per Siphoning Charge", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2066426995", + ["text"] = "Adds # to # Physical Damage to Attacks per 25 Dexterity", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_787185456", + ["text"] = "Adds # to # Physical Damage to Attacks per 25 Strength", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3821472155", + ["text"] = "Adds # to # Physical Damage to Attacks per Level", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_242822230", + ["text"] = "Adds # to # Physical Damage to Attacks while you have a Bestial Minion", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1454603936", + ["text"] = "Adds # to # Physical Damage to Attacks with this Weapon per 3 Player Levels", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2435536961", + ["text"] = "Adds # to # Physical Damage to Spells", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1092545959", + ["text"] = "Adds # to # Physical Damage to Spells per 3 Player Levels", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_778050954", + ["text"] = "Adds 1 maximum Lightning Damage to Attacks per # Dexterity Allocated in Radius", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2865989731", + ["text"] = "Adds 1 to Maximum Life per # Intelligence Allocated in Radius", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3860869243", + ["text"] = "Adds Disciple of Kitava", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1376530950", + ["text"] = "Adds Hollow Palm Technique", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1798719926", + ["text"] = "Adds Kineticism", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_251342217", + ["text"] = "Adds Knockback to Melee Attacks during Effect", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1505850286", + ["text"] = "Adds Lone Messenger", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1360925132", + ["text"] = "Adds Nature's Patience", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_56720831", + ["text"] = "Adds Secrets of Suffering", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1379205566", + ["text"] = "Adds Veteran's Awareness", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_786460697", + ["text"] = "Agony Crawler deals #% increased Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2184130410", + ["text"] = "Ailments inflicted by Skills used by this Graft have #% increased duration", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3138486617", + ["text"] = "Alert Level increases by #% per second", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2818281118", + ["text"] = "All Abysses in Area must be completed to claim Reward", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2437193018", + ["text"] = "All Attack Damage Chills when you Stun", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_244239777", + ["text"] = "All Damage Taken from Hits can Chill you", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1405089557", + ["text"] = "All Damage Taken from Hits can Ignite you", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4052117756", + ["text"] = "All Damage can Freeze", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1369840970", + ["text"] = "All Damage can Ignite", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3669353918", + ["text"] = "All Damage from Monsters' Hits can Freeze", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_891135228", + ["text"] = "All Damage from Monsters' Hits can Ignite", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3555807120", + ["text"] = "All Damage from Monsters' Hits can Poison", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_165059239", + ["text"] = "All Damage from Monsters' Hits inflicts Shock", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3190526553", + ["text"] = "All Damage inflicts Poison against Enemies affected by at least # Grasping Vine", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3359218839", + ["text"] = "All Damage inflicts Poison while affected by Glorious Madness", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3833160777", + ["text"] = "All Damage with Hits can Chill", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_373509484", + ["text"] = "All Damage with Triggered Spells can Poison", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2423544033", + ["text"] = "All Elemental Damage Converted to Chaos Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_276813598", + ["text"] = "All Hits with your next Non-Channelling Attack within # second of taking a Critical Strike will be Critical Strikes", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3697237382", + ["text"] = "All Incursions must be completed to claim Reward", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1351226837", + ["text"] = "All Legion monsters in Area must be released to claim Reward", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3458622626", + ["text"] = "All Magic and Normal Monsters in Area are in a Union of Souls", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2919181457", + ["text"] = "All Monster Damage can Ignite, Freeze and Shock", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_816367946", + ["text"] = "All Monster Damage from Hits always Ignites", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2569941273", + ["text"] = "All Smuggler's Caches must be opened to claim Reward", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_211836731", + ["text"] = "All Sockets are White", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_357180449", + ["text"] = "All Strongboxes in Area must be opened to claim Reward", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2004435129", + ["text"] = "All Unstable Breaches must be Stabilised and Closed to claim Reward", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1489905076", + ["text"] = "Allies' Aura Buffs do not affect you", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_680202695", + ["text"] = "Allocated Notable Passive Skills in Radius grant nothing", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_325204898", + ["text"] = "Allocated Small Passive Skills in Radius grant nothing", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2460506030", + ["option"] = { + ["options"] = { + { + ["id"] = 32947, + ["text"] = "Swift Killer", + }, + { + ["id"] = 55867, + ["text"] = "Polymath", + }, + { + ["id"] = 28884, + ["text"] = "Heartstopper", + }, + { + ["id"] = 29825, + ["text"] = "Escape Artist", + }, + { + ["id"] = 41891, + ["text"] = "Spellbreaker", + }, + { + ["id"] = 23225, + ["text"] = "One Step Ahead", + }, + { + ["id"] = 57331, + ["text"] = "Harness the Void", + }, + { + ["id"] = 3184, + ["text"] = "Headsman", + }, + { + ["id"] = 17315, + ["text"] = "Overwhelm", + }, + { + ["id"] = 62817, + ["text"] = "Bane of Legends", + }, + { + ["id"] = 34484, + ["text"] = "Endless Hunger", + }, + { + ["id"] = 10143, + ["text"] = "Brutal Fervour", + }, + { + ["id"] = 38180, + ["text"] = "Impact", + }, + { + ["id"] = 16306, + ["text"] = "Masterful Form", + }, + { + ["id"] = 16940, + ["text"] = "Pyromaniac", + }, + { + ["id"] = 5087, + ["text"] = "Born in the Shadows", + }, + { + ["id"] = 14103, + ["text"] = "Calculated Risk", + }, + { + ["id"] = 51462, + ["text"] = "Like Clockwork", + }, + { + ["id"] = 28535, + ["text"] = "Perfect Crime", + }, + { + ["id"] = 39834, + ["text"] = "Demolitions Specialist", + }, + { + ["id"] = 38918, + ["text"] = "Chain Reaction", + }, + { + ["id"] = 47778, + ["text"] = "Bomb Specialist", + }, + { + ["id"] = 57175, + ["text"] = "Shrapnel Specialist", + }, + { + ["id"] = 31364, + ["text"] = "Oath of Spring", + }, + { + ["id"] = 16848, + ["text"] = "Oath of Winter", + }, + { + ["id"] = 4849, + ["text"] = "Mother's Teachings", + }, + { + ["id"] = 11597, + ["text"] = "Lesson of the Seasons", + }, + { + ["id"] = 33645, + ["text"] = "Oath of Summer", + }, + { + ["id"] = 55509, + ["text"] = "Avatar of the Wilds", + }, + { + ["id"] = 29662, + ["text"] = "Experienced Herbalist", + }, + { + ["id"] = 40104, + ["text"] = "Enduring Suffusion", + }, + { + ["id"] = 51101, + ["text"] = "Nature's Adrenaline", + }, + { + ["id"] = 63293, + ["text"] = "Master Surgeon", + }, + { + ["id"] = 65296, + ["text"] = "Nature's Boon", + }, + { + ["id"] = 61805, + ["text"] = "Master Alchemist", + }, + { + ["id"] = 6038, + ["text"] = "Master Distiller", + }, + { + ["id"] = 40813, + ["text"] = "Nature's Reprisal", + }, + { + ["id"] = 1697, + ["text"] = "Master Toxicist", + }, + { + ["id"] = 37127, + ["text"] = "Profane Bloom", + }, + { + ["id"] = 31344, + ["text"] = "Unholy Authority", + }, + { + ["id"] = 37492, + ["text"] = "Vile Bastion", + }, + { + ["id"] = 27096, + ["text"] = "Void Beacon", + }, + { + ["id"] = 62504, + ["text"] = "Forbidden Power", + }, + { + ["id"] = 25309, + ["text"] = "Withering Presence", + }, + { + ["id"] = 47630, + ["text"] = "Frigid Wake", + }, + { + ["id"] = 54159, + ["text"] = "Mindless Aggression", + }, + { + ["id"] = 65153, + ["text"] = "Unnatural Strength", + }, + { + ["id"] = 14603, + ["text"] = "Bone Barrier", + }, + { + ["id"] = 48719, + ["text"] = "Mistress of Sacrifice", + }, + { + ["id"] = 3554, + ["text"] = "Essence Glutton", + }, + { + ["id"] = 36017, + ["text"] = "Commander of Darkness", + }, + { + ["id"] = 11490, + ["text"] = "Plaguebringer", + }, + { + ["id"] = 23572, + ["text"] = "Corpse Pact", + }, + { + ["id"] = 5819, + ["text"] = "Unstoppable", + }, + { + ["id"] = 53816, + ["text"] = "Unbreakable", + }, + { + ["id"] = 62595, + ["text"] = "Unyielding", + }, + { + ["id"] = 44297, + ["text"] = "Undeniable", + }, + { + ["id"] = 1734, + ["text"] = "Unflinching", + }, + { + ["id"] = 56789, + ["text"] = "Unrelenting", + }, + { + ["id"] = 17988, + ["text"] = "Untiring", + }, + { + ["id"] = 53884, + ["text"] = "Righteous Providence", + }, + { + ["id"] = 48214, + ["text"] = "Inevitable Judgement", + }, + { + ["id"] = 40059, + ["text"] = "Augury of Penitence", + }, + { + ["id"] = 39790, + ["text"] = "Sanctuary", + }, + { + ["id"] = 32816, + ["text"] = "Pious Path", + }, + { + ["id"] = 13851, + ["text"] = "Instruments of Zeal", + }, + { + ["id"] = 19417, + ["text"] = "Instruments of Virtue", + }, + { + ["id"] = 922, + ["text"] = "Divine Guidance", + }, + { + ["id"] = 29026, + ["text"] = "Sanctuary of Thought", + }, + { + ["id"] = 1105, + ["text"] = "Pursuit of Faith", + }, + { + ["id"] = 34434, + ["text"] = "Ritual of Awakening", + }, + { + ["id"] = 25651, + ["text"] = "Conviction of Power", + }, + { + ["id"] = 60462, + ["text"] = "Illuminated Devotion", + }, + { + ["id"] = 40510, + ["text"] = "Arcane Blessing", + }, + { + ["id"] = 51492, + ["text"] = "Sign of Purpose", + }, + { + ["id"] = 55146, + ["text"] = "Time of Need", + }, + { + ["id"] = 42264, + ["text"] = "Radiant Faith", + }, + { + ["id"] = 39728, + ["text"] = "Bastion of Hope", + }, + { + ["id"] = 61372, + ["text"] = "Harmony of Purpose", + }, + { + ["id"] = 64768, + ["text"] = "Unwavering Faith", + }, + { + ["id"] = 4494, + ["text"] = "Radiant Crusade", + }, + { + ["id"] = 19641, + ["text"] = "Unwavering Crusade", + }, + { + ["id"] = 3458, + ["text"] = "Marshal of Divinity", + }, + { + ["id"] = 27864, + ["text"] = "Gratuitous Violence", + }, + { + ["id"] = 15616, + ["text"] = "Jagged Technique", + }, + { + ["id"] = 52575, + ["text"] = "Weapon Master", + }, + { + ["id"] = 8419, + ["text"] = "Determined Survivor", + }, + { + ["id"] = 63490, + ["text"] = "Measured Retaliation", + }, + { + ["id"] = 2598, + ["text"] = "More Than Skill", + }, + { + ["id"] = 758, + ["text"] = "War of Attrition", + }, + { + ["id"] = 56461, + ["text"] = "Liege of the Primordial", + }, + { + ["id"] = 61259, + ["text"] = "Mastermind of Discord", + }, + { + ["id"] = 57197, + ["text"] = "Heart of Destruction", + }, + { + ["id"] = 4917, + ["text"] = "Bastion of Elements", + }, + { + ["id"] = 258, + ["text"] = "Bringer of Ruin", + }, + { + ["id"] = 53123, + ["text"] = "Shaper of Flames", + }, + { + ["id"] = 27038, + ["text"] = "Shaper of Storms", + }, + { + ["id"] = 40810, + ["text"] = "Shaper of Winter", + }, + { + ["id"] = 5443, + ["text"] = "Focal Point", + }, + { + ["id"] = 61627, + ["text"] = "Ricochet", + }, + { + ["id"] = 26067, + ["text"] = "Endless Munitions", + }, + { + ["id"] = 45313, + ["text"] = "Far Shot", + }, + { + ["id"] = 44482, + ["text"] = "Avidity", + }, + { + ["id"] = 24848, + ["text"] = "Gathering Winds", + }, + { + ["id"] = 2872, + ["text"] = "Occupying Force", + }, + { + ["id"] = 23169, + ["text"] = "Wind Ward", + }, + { + ["id"] = 31667, + ["text"] = "Sione, Sun's Roar", + }, + { + ["id"] = 50692, + ["text"] = "Ngamahu, Flame's Advance", + }, + { + ["id"] = 1731, + ["text"] = "Hinekora, Death's Fury", + }, + { + ["id"] = 48480, + ["text"] = "Tasalio, Cleansing Water", + }, + { + ["id"] = 53095, + ["text"] = "Tukohama, War's Herald", + }, + { + ["id"] = 5029, + ["text"] = "Tawhoa, Forest's Strength", + }, + { + ["id"] = 61355, + ["text"] = "Ramako, Sun's Light", + }, + { + ["id"] = 32249, + ["text"] = "Valako, Storm's Embrace", + }, + { + ["id"] = 31700, + ["text"] = "Fortitude", + }, + { + ["id"] = 33940, + ["text"] = "Unstoppable Hero", + }, + { + ["id"] = 35750, + ["text"] = "Worthy Causes", + }, + { + ["id"] = 56967, + ["text"] = "Worthy Foe", + }, + { + ["id"] = 11412, + ["text"] = "Inspirational", + }, + { + ["id"] = 27604, + ["text"] = "First to Strike, Last to Fall", + }, + { + ["id"] = 13374, + ["text"] = "Master of Metal", + }, + { + ["id"] = 32251, + ["text"] = "War Bringer", + }, + { + ["id"] = 57560, + ["text"] = "Rite of Ruin", + }, + { + ["id"] = 9271, + ["text"] = "Defy Pain", + }, + { + ["id"] = 38999, + ["text"] = "Ancestral Fury", + }, + { + ["id"] = 24528, + ["text"] = "Crave the Slaughter", + }, + { + ["id"] = 59920, + ["text"] = "Aspect of Carnage", + }, + { + ["id"] = 29630, + ["text"] = "Gore Dancer", + }, + { + ["id"] = 4242, + ["text"] = "Unstable Infusion", + }, + { + ["id"] = 48239, + ["text"] = "Deathmarked", + }, + { + ["id"] = 21264, + ["text"] = "Knife in the Back", + }, + { + ["id"] = 19083, + ["text"] = "Opportunistic", + }, + { + ["id"] = 19598, + ["text"] = "Toxic Delivery", + }, + { + ["id"] = 1945, + ["text"] = "Mystical Infusion", + }, + { + ["id"] = 28782, + ["text"] = "Mistwalker", + }, + { + ["id"] = 61072, + ["text"] = "Juggernaut", + }, + { + ["id"] = 4194, + ["text"] = "Berserker", + }, + { + ["id"] = 57052, + ["text"] = "Chieftain", + }, + { + ["id"] = 8656, + ["text"] = "Warden", + }, + { + ["id"] = 34567, + ["text"] = "Deadeye", + }, + { + ["id"] = 9327, + ["text"] = "Pathfinder", + }, + { + ["id"] = 12597, + ["text"] = "Occultist", + }, + { + ["id"] = 8281, + ["text"] = "Elementalist", + }, + { + ["id"] = 10099, + ["text"] = "Necromancer", + }, + { + ["id"] = 43195, + ["text"] = "Slayer", + }, + { + ["id"] = 34774, + ["text"] = "Gladiator", + }, + { + ["id"] = 39598, + ["text"] = "Champion", + }, + { + ["id"] = 43962, + ["text"] = "Inquisitor", + }, + { + ["id"] = 42144, + ["text"] = "Hierophant", + }, + { + ["id"] = 30919, + ["text"] = "Guardian", + }, + { + ["id"] = 43122, + ["text"] = "Assassin", + }, + { + ["id"] = 6778, + ["text"] = "Trickster", + }, + { + ["id"] = 58827, + ["text"] = "Saboteur", + }, + { + ["id"] = 27602, + ["text"] = "Nine Lives", + }, + { + ["id"] = 57568, + ["text"] = "Searing Purity", + }, + { + ["id"] = 52435, + ["text"] = "Indomitable Resolve", + }, + { + ["id"] = 42469, + ["text"] = "Fatal Flourish", + }, + { + ["id"] = 18054, + ["text"] = "Fury of Nature", + }, + { + ["id"] = 48999, + ["text"] = "Soul Drinker", + }, + { + ["id"] = 19355, + ["text"] = "Unleashed Potential", + }, + { + ["id"] = 36958, + ["text"] = "Seasoned Hunter", + }, + { + ["id"] = 29844, + ["text"] = "Shadowed Blood", + }, + { + ["id"] = 18335, + ["text"] = "For the Jugular", + }, + { + ["id"] = 21192, + ["text"] = "Infused Toxins", + }, + }, + }, + ["text"] = "Allocates # if you have matching modifier on Forbidden Flame", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1190333629", + ["option"] = { + ["options"] = { + { + ["id"] = 32947, + ["text"] = "Swift Killer", + }, + { + ["id"] = 55867, + ["text"] = "Polymath", + }, + { + ["id"] = 28884, + ["text"] = "Heartstopper", + }, + { + ["id"] = 29825, + ["text"] = "Escape Artist", + }, + { + ["id"] = 41891, + ["text"] = "Spellbreaker", + }, + { + ["id"] = 23225, + ["text"] = "One Step Ahead", + }, + { + ["id"] = 57331, + ["text"] = "Harness the Void", + }, + { + ["id"] = 3184, + ["text"] = "Headsman", + }, + { + ["id"] = 17315, + ["text"] = "Overwhelm", + }, + { + ["id"] = 62817, + ["text"] = "Bane of Legends", + }, + { + ["id"] = 34484, + ["text"] = "Endless Hunger", + }, + { + ["id"] = 10143, + ["text"] = "Brutal Fervour", + }, + { + ["id"] = 38180, + ["text"] = "Impact", + }, + { + ["id"] = 16306, + ["text"] = "Masterful Form", + }, + { + ["id"] = 16940, + ["text"] = "Pyromaniac", + }, + { + ["id"] = 5087, + ["text"] = "Born in the Shadows", + }, + { + ["id"] = 14103, + ["text"] = "Calculated Risk", + }, + { + ["id"] = 51462, + ["text"] = "Like Clockwork", + }, + { + ["id"] = 28535, + ["text"] = "Perfect Crime", + }, + { + ["id"] = 39834, + ["text"] = "Demolitions Specialist", + }, + { + ["id"] = 38918, + ["text"] = "Chain Reaction", + }, + { + ["id"] = 47778, + ["text"] = "Bomb Specialist", + }, + { + ["id"] = 57175, + ["text"] = "Shrapnel Specialist", + }, + { + ["id"] = 31364, + ["text"] = "Oath of Spring", + }, + { + ["id"] = 16848, + ["text"] = "Oath of Winter", + }, + { + ["id"] = 4849, + ["text"] = "Mother's Teachings", + }, + { + ["id"] = 11597, + ["text"] = "Lesson of the Seasons", + }, + { + ["id"] = 33645, + ["text"] = "Oath of Summer", + }, + { + ["id"] = 55509, + ["text"] = "Avatar of the Wilds", + }, + { + ["id"] = 29662, + ["text"] = "Experienced Herbalist", + }, + { + ["id"] = 40104, + ["text"] = "Enduring Suffusion", + }, + { + ["id"] = 51101, + ["text"] = "Nature's Adrenaline", + }, + { + ["id"] = 63293, + ["text"] = "Master Surgeon", + }, + { + ["id"] = 65296, + ["text"] = "Nature's Boon", + }, + { + ["id"] = 61805, + ["text"] = "Master Alchemist", + }, + { + ["id"] = 6038, + ["text"] = "Master Distiller", + }, + { + ["id"] = 40813, + ["text"] = "Nature's Reprisal", + }, + { + ["id"] = 1697, + ["text"] = "Master Toxicist", + }, + { + ["id"] = 37127, + ["text"] = "Profane Bloom", + }, + { + ["id"] = 31344, + ["text"] = "Unholy Authority", + }, + { + ["id"] = 37492, + ["text"] = "Vile Bastion", + }, + { + ["id"] = 27096, + ["text"] = "Void Beacon", + }, + { + ["id"] = 62504, + ["text"] = "Forbidden Power", + }, + { + ["id"] = 25309, + ["text"] = "Withering Presence", + }, + { + ["id"] = 47630, + ["text"] = "Frigid Wake", + }, + { + ["id"] = 54159, + ["text"] = "Mindless Aggression", + }, + { + ["id"] = 65153, + ["text"] = "Unnatural Strength", + }, + { + ["id"] = 14603, + ["text"] = "Bone Barrier", + }, + { + ["id"] = 48719, + ["text"] = "Mistress of Sacrifice", + }, + { + ["id"] = 3554, + ["text"] = "Essence Glutton", + }, + { + ["id"] = 36017, + ["text"] = "Commander of Darkness", + }, + { + ["id"] = 11490, + ["text"] = "Plaguebringer", + }, + { + ["id"] = 23572, + ["text"] = "Corpse Pact", + }, + { + ["id"] = 5819, + ["text"] = "Unstoppable", + }, + { + ["id"] = 53816, + ["text"] = "Unbreakable", + }, + { + ["id"] = 62595, + ["text"] = "Unyielding", + }, + { + ["id"] = 44297, + ["text"] = "Undeniable", + }, + { + ["id"] = 1734, + ["text"] = "Unflinching", + }, + { + ["id"] = 56789, + ["text"] = "Unrelenting", + }, + { + ["id"] = 17988, + ["text"] = "Untiring", + }, + { + ["id"] = 53884, + ["text"] = "Righteous Providence", + }, + { + ["id"] = 48214, + ["text"] = "Inevitable Judgement", + }, + { + ["id"] = 40059, + ["text"] = "Augury of Penitence", + }, + { + ["id"] = 39790, + ["text"] = "Sanctuary", + }, + { + ["id"] = 32816, + ["text"] = "Pious Path", + }, + { + ["id"] = 13851, + ["text"] = "Instruments of Zeal", + }, + { + ["id"] = 19417, + ["text"] = "Instruments of Virtue", + }, + { + ["id"] = 922, + ["text"] = "Divine Guidance", + }, + { + ["id"] = 29026, + ["text"] = "Sanctuary of Thought", + }, + { + ["id"] = 1105, + ["text"] = "Pursuit of Faith", + }, + { + ["id"] = 34434, + ["text"] = "Ritual of Awakening", + }, + { + ["id"] = 25651, + ["text"] = "Conviction of Power", + }, + { + ["id"] = 60462, + ["text"] = "Illuminated Devotion", + }, + { + ["id"] = 40510, + ["text"] = "Arcane Blessing", + }, + { + ["id"] = 51492, + ["text"] = "Sign of Purpose", + }, + { + ["id"] = 55146, + ["text"] = "Time of Need", + }, + { + ["id"] = 42264, + ["text"] = "Radiant Faith", + }, + { + ["id"] = 39728, + ["text"] = "Bastion of Hope", + }, + { + ["id"] = 61372, + ["text"] = "Harmony of Purpose", + }, + { + ["id"] = 64768, + ["text"] = "Unwavering Faith", + }, + { + ["id"] = 4494, + ["text"] = "Radiant Crusade", + }, + { + ["id"] = 19641, + ["text"] = "Unwavering Crusade", + }, + { + ["id"] = 3458, + ["text"] = "Marshal of Divinity", + }, + { + ["id"] = 27864, + ["text"] = "Gratuitous Violence", + }, + { + ["id"] = 15616, + ["text"] = "Jagged Technique", + }, + { + ["id"] = 52575, + ["text"] = "Weapon Master", + }, + { + ["id"] = 8419, + ["text"] = "Determined Survivor", + }, + { + ["id"] = 63490, + ["text"] = "Measured Retaliation", + }, + { + ["id"] = 2598, + ["text"] = "More Than Skill", + }, + { + ["id"] = 758, + ["text"] = "War of Attrition", + }, + { + ["id"] = 56461, + ["text"] = "Liege of the Primordial", + }, + { + ["id"] = 61259, + ["text"] = "Mastermind of Discord", + }, + { + ["id"] = 57197, + ["text"] = "Heart of Destruction", + }, + { + ["id"] = 4917, + ["text"] = "Bastion of Elements", + }, + { + ["id"] = 258, + ["text"] = "Bringer of Ruin", + }, + { + ["id"] = 53123, + ["text"] = "Shaper of Flames", + }, + { + ["id"] = 27038, + ["text"] = "Shaper of Storms", + }, + { + ["id"] = 40810, + ["text"] = "Shaper of Winter", + }, + { + ["id"] = 5443, + ["text"] = "Focal Point", + }, + { + ["id"] = 61627, + ["text"] = "Ricochet", + }, + { + ["id"] = 26067, + ["text"] = "Endless Munitions", + }, + { + ["id"] = 45313, + ["text"] = "Far Shot", + }, + { + ["id"] = 44482, + ["text"] = "Avidity", + }, + { + ["id"] = 24848, + ["text"] = "Gathering Winds", + }, + { + ["id"] = 2872, + ["text"] = "Occupying Force", + }, + { + ["id"] = 23169, + ["text"] = "Wind Ward", + }, + { + ["id"] = 31667, + ["text"] = "Sione, Sun's Roar", + }, + { + ["id"] = 50692, + ["text"] = "Ngamahu, Flame's Advance", + }, + { + ["id"] = 1731, + ["text"] = "Hinekora, Death's Fury", + }, + { + ["id"] = 48480, + ["text"] = "Tasalio, Cleansing Water", + }, + { + ["id"] = 53095, + ["text"] = "Tukohama, War's Herald", + }, + { + ["id"] = 5029, + ["text"] = "Tawhoa, Forest's Strength", + }, + { + ["id"] = 61355, + ["text"] = "Ramako, Sun's Light", + }, + { + ["id"] = 32249, + ["text"] = "Valako, Storm's Embrace", + }, + { + ["id"] = 31700, + ["text"] = "Fortitude", + }, + { + ["id"] = 33940, + ["text"] = "Unstoppable Hero", + }, + { + ["id"] = 35750, + ["text"] = "Worthy Causes", + }, + { + ["id"] = 56967, + ["text"] = "Worthy Foe", + }, + { + ["id"] = 11412, + ["text"] = "Inspirational", + }, + { + ["id"] = 27604, + ["text"] = "First to Strike, Last to Fall", + }, + { + ["id"] = 13374, + ["text"] = "Master of Metal", + }, + { + ["id"] = 32251, + ["text"] = "War Bringer", + }, + { + ["id"] = 57560, + ["text"] = "Rite of Ruin", + }, + { + ["id"] = 9271, + ["text"] = "Defy Pain", + }, + { + ["id"] = 38999, + ["text"] = "Ancestral Fury", + }, + { + ["id"] = 24528, + ["text"] = "Crave the Slaughter", + }, + { + ["id"] = 59920, + ["text"] = "Aspect of Carnage", + }, + { + ["id"] = 29630, + ["text"] = "Gore Dancer", + }, + { + ["id"] = 4242, + ["text"] = "Unstable Infusion", + }, + { + ["id"] = 48239, + ["text"] = "Deathmarked", + }, + { + ["id"] = 21264, + ["text"] = "Knife in the Back", + }, + { + ["id"] = 19083, + ["text"] = "Opportunistic", + }, + { + ["id"] = 19598, + ["text"] = "Toxic Delivery", + }, + { + ["id"] = 1945, + ["text"] = "Mystical Infusion", + }, + { + ["id"] = 28782, + ["text"] = "Mistwalker", + }, + { + ["id"] = 61072, + ["text"] = "Juggernaut", + }, + { + ["id"] = 4194, + ["text"] = "Berserker", + }, + { + ["id"] = 57052, + ["text"] = "Chieftain", + }, + { + ["id"] = 8656, + ["text"] = "Warden", + }, + { + ["id"] = 34567, + ["text"] = "Deadeye", + }, + { + ["id"] = 9327, + ["text"] = "Pathfinder", + }, + { + ["id"] = 12597, + ["text"] = "Occultist", + }, + { + ["id"] = 8281, + ["text"] = "Elementalist", + }, + { + ["id"] = 10099, + ["text"] = "Necromancer", + }, + { + ["id"] = 43195, + ["text"] = "Slayer", + }, + { + ["id"] = 34774, + ["text"] = "Gladiator", + }, + { + ["id"] = 39598, + ["text"] = "Champion", + }, + { + ["id"] = 43962, + ["text"] = "Inquisitor", + }, + { + ["id"] = 42144, + ["text"] = "Hierophant", + }, + { + ["id"] = 30919, + ["text"] = "Guardian", + }, + { + ["id"] = 43122, + ["text"] = "Assassin", + }, + { + ["id"] = 6778, + ["text"] = "Trickster", + }, + { + ["id"] = 58827, + ["text"] = "Saboteur", + }, + { + ["id"] = 27602, + ["text"] = "Nine Lives", + }, + { + ["id"] = 57568, + ["text"] = "Searing Purity", + }, + { + ["id"] = 52435, + ["text"] = "Indomitable Resolve", + }, + { + ["id"] = 42469, + ["text"] = "Fatal Flourish", + }, + { + ["id"] = 18054, + ["text"] = "Fury of Nature", + }, + { + ["id"] = 48999, + ["text"] = "Soul Drinker", + }, + { + ["id"] = 19355, + ["text"] = "Unleashed Potential", + }, + { + ["id"] = 36958, + ["text"] = "Seasoned Hunter", + }, + { + ["id"] = 29844, + ["text"] = "Shadowed Blood", + }, + { + ["id"] = 18335, + ["text"] = "For the Jugular", + }, + { + ["id"] = 21192, + ["text"] = "Infused Toxins", + }, + }, + }, + ["text"] = "Allocates # if you have matching modifier on Forbidden Flesh", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2499038519", + ["text"] = "Always Sap while affected by Wrath", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1585991257", + ["text"] = "Always Scorch while affected by Anger", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_13285831", + ["text"] = "Always inflict Brittle while affected by Hatred", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_933024928", + ["text"] = "An Enemy Writhing Worm spawns every 2 seconds", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2434293916", + ["text"] = "An Enemy Writhing Worms escape the Flask when used Writhing Worms are destroyed when Hit", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2664271989", + ["text"] = "An additional #% of Damage from Hits is taken from Heart of Flame Buff used by this Graft before Life or Energy Shield", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2962051214", + ["text"] = "An additional Basic Currency Item drops when the first Invasion Boss is slain", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3112863846", + ["text"] = "An additional Curse can be applied to you", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2648570028", + ["text"] = "Ancestral Bond", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1592278124", + ["text"] = "Anger has #% increased Aura Effect", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2549369799", + ["text"] = "Anger has #% increased Mana Reservation Efficiency", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2963485753", + ["text"] = "Anger has #% increased Mana Reservation Efficiency", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2003753577", + ["text"] = "Anger has #% reduced Reservation", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2189891129", + ["text"] = "Anger has no Reservation", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_759294825", + ["text"] = "Animated Guardian deals #% increased Damage per Animated Weapon", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_478698670", + ["text"] = "Animated and Manifested Minions' Melee Strikes deal #% less Splash Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_91242932", + ["text"] = "Animated and Manifested Minions' Melee Strikes deal Splash Damage to surrounding targets", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2351239732", + ["text"] = "Arctic Armour has #% increased Mana Reservation Efficiency", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2605040931", + ["text"] = "Arctic Armour has #% increased Mana Reservation Efficiency", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2233726619", + ["text"] = "Arctic Armour has #% reduced Reservation", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1483066460", + ["text"] = "Arctic Armour has no Reservation", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2378288719", + ["text"] = "Area becomes fatal after some time", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_660313500", + ["text"] = "Area becomes fatal after some time", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2265281226", + ["text"] = "Area becomes increasingly lethal", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_550012797", + ["text"] = "Area contains # additional Animated Weapon Packs", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2343561786", + ["text"] = "Area contains # additional Clusters of Mysterious Barrels", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2180070554", + ["text"] = "Area contains # additional Rare Monsters that create Frost Walls and Flee", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_290923864", + ["text"] = "Area contains # additional pack of four Map Bosses", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2608186870", + ["text"] = "Area contains # additional packs of Elder Fiends", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2752993899", + ["text"] = "Area contains # additional packs of Frog", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2528440851", + ["text"] = "Area contains # additional packs of Shaper Creations", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3144021288", + ["text"] = "Area contains # additional packs of Sulphite Golems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_162627873", + ["text"] = "Area contains # additional packs of Untainted Wild Animals", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1640965354", + ["text"] = "Area contains #% increased number of Runic Monster Markers", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2244724505", + ["text"] = "Area contains 3 additional Magic Packs which have #% increased Attack, Cast and Movement Speed, and drop #% more items", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_25225034", + ["text"] = "Area contains Drowning Orbs", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2573185638", + ["text"] = "Area contains Einhar, Exilehunter", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2577650864", + ["text"] = "Area contains Labyrinth Hazards", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2482214457", + ["text"] = "Area contains Malachai's Creeping Agony", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3709982550", + ["text"] = "Area contains Petrification Statues", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2073168229", + ["text"] = "Area contains Runes of the Searing Exarch", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_129937324", + ["text"] = "Area contains Sirus' Deatomisation Storms", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_691726702", + ["text"] = "Area contains The Elderslayers", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_758191285", + ["text"] = "Area contains The Feared", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2599114883", + ["text"] = "Area contains The Forgotten", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_437006027", + ["text"] = "Area contains The Formed", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_840743474", + ["text"] = "Area contains The Hidden", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1210020540", + ["text"] = "Area contains The Remembered", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1145451936", + ["text"] = "Area contains The Sacred Grove", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2440093109", + ["text"] = "Area contains The Twisted", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1943574423", + ["text"] = "Area contains Unstable Tentacle Fiends", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_482341163", + ["text"] = "Area contains Yama the White", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3387914367", + ["text"] = "Area contains a Bearers of the Guardian Bloodline Pack", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3981126005", + ["text"] = "Area contains a Bismuth Ore Deposit", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2459443694", + ["text"] = "Area contains a Blight Encounter", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4197398087", + ["text"] = "Area contains a Cartographer's Strongbox", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_370321141", + ["text"] = "Area contains a Chayula Breach", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_49998574", + ["text"] = "Area contains a Gemcutter's Strongbox", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2814396031", + ["text"] = "Area contains a Gigantic Rogue Exile", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2471600316", + ["text"] = "Area contains a Keepers of the Trove Bloodline Pack", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2808735733", + ["text"] = "Area contains a Large Chest", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2589977608", + ["text"] = "Area contains a Rare Monster carrying a Tier 2 Talisman", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3057529096", + ["text"] = "Area contains a Rare Monster with Inner Treasure", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3960907415", + ["text"] = "Area contains a Smuggler's Cache", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3005800306", + ["text"] = "Area contains a Stone Circle", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3884309250", + ["text"] = "Area contains a Tormented Embezzler", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1077576866", + ["text"] = "Area contains a Tormented Seditionist", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_468681962", + ["text"] = "Area contains a Tormented Vaal Cultist", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_194037675", + ["text"] = "Area contains a Unique Strongbox", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2978408106", + ["text"] = "Area contains a Voidspawn of Abaxoth Bloodline Pack", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2264039874", + ["text"] = "Area contains additional packs of Restless Dead", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2210267337", + ["text"] = "Area contains additional waves of Bone Rhoas", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3397728378", + ["text"] = "Area contains additional waves of Ghosts", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4261620841", + ["text"] = "Area contains additional waves of Oriathan Zombies", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2681416653", + ["text"] = "Area contains additional waves of Phantasms", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1217959763", + ["text"] = "Area contains additional waves of Raging Spirits", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2481080006", + ["text"] = "Area contains additional waves of Ravager Maws", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2724985127", + ["text"] = "Area contains additional waves of Zombies", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_571003610", + ["text"] = "Area contains an Arcanist's Strongbox", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_445988468", + ["text"] = "Area contains an Essence of Hysteria", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3557750122", + ["text"] = "Area contains an Expedition Encounter", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2130441002", + ["text"] = "Area contains an Uul-Netol Breach", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1070816711", + ["text"] = "Area contains an additional Abyss", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2270693644", + ["text"] = "Area contains an additional Clutching Talisman", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3381731475", + ["text"] = "Area contains an additional Fangjaw Talisman", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_504850499", + ["text"] = "Area contains an additional Harbinger", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_395808938", + ["text"] = "Area contains an additional Imprisoned Monster", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3897451709", + ["text"] = "Area contains an additional Legion Encounter", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_581013336", + ["text"] = "Area contains an additional Magic Monster pack", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3900181441", + ["text"] = "Area contains an additional Magic Pack of Wealth", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3294034100", + ["text"] = "Area contains an additional Perandus Archive", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2299389484", + ["text"] = "Area contains an additional Perandus Coffer", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1105638781", + ["text"] = "Area contains an additional Perandus Jewellery Box", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_411810300", + ["text"] = "Area contains an additional Perandus Locker", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3955574239", + ["text"] = "Area contains an additional Perandus Treasury", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3831356603", + ["text"] = "Area contains an additional Primal Harvest Boss", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3982634141", + ["text"] = "Area contains an additional Regal Harbinger", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1468737867", + ["text"] = "Area contains an additional Shrine", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_28550326", + ["text"] = "Area contains an additional Shrine", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3240183538", + ["text"] = "Area contains an additional Strongbox", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2530071726", + ["text"] = "Area contains an additional Three Rat Talisman", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3956623857", + ["text"] = "Area contains an additional Unique Talisman", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2319738353", + ["text"] = "Area contains an additional Vivid Harvest Boss", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_204196526", + ["text"] = "Area contains an additional Wild Harvest Boss", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1612402470", + ["text"] = "Area contains an additional guarded Exquisite Vaal Vessel", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2810286377", + ["text"] = "Area contains an additional pack with a Rare monster", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1385280440", + ["text"] = "Area contains an additional unstable Breach", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2720707", + ["text"] = "Area contains enemies of all influence types", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3325532974", + ["text"] = "Area contains many Detonation Totems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1000591322", + ["text"] = "Area contains many Totems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1626998468", + ["text"] = "Area contains no monsters", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2796704737", + ["text"] = "Area contains patches of moving Marked Ground, inflicting random Marks", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4017859836", + ["text"] = "Area contains roaming Hexfields", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_799271621", + ["text"] = "Area contains two Unique Bosses", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_860864690", + ["text"] = "Area contains unbridged gaps to cross", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_588512487", + ["text"] = "Area has # additional random Modifier", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2609732382", + ["text"] = "Area has # seconds between monster waves", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4182502594", + ["text"] = "Area has # waves of monsters", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1314822783", + ["text"] = "Area has +#% chance to contain Ritual Altars", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1365687125", + ["text"] = "Area has +#% chance to contain an Ultimatum Encounter", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3788235244", + ["text"] = "Area has a #% chance to contain Cadiro Perandus", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3561450806", + ["text"] = "Area has increased monster variety", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3819443367", + ["text"] = "Area has no chance to contain Ultimatum Encounters", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_563277852", + ["text"] = "Area has patches of Awakeners' Desolation", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_133340941", + ["text"] = "Area has patches of Burning Ground", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3665534869", + ["text"] = "Area has patches of Burning Ground", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_349586058", + ["text"] = "Area has patches of Chilled Ground", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_389725673", + ["text"] = "Area has patches of Chilled Ground", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1948962470", + ["text"] = "Area has patches of Consecrated Ground", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3477720557", + ["text"] = "Area has patches of Shocked Ground", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3246076198", + ["text"] = "Area has patches of Shocked Ground which increase Damage taken by #%", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3577222856", + ["text"] = "Area has patches of desecrated ground", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1012100113", + ["text"] = "Area is #% larger", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1959271744", + ["text"] = "Area is a Maze", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_587175996", + ["text"] = "Area is a large Maze", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2836394633", + ["text"] = "Area is affected by a Corrupting Tempest", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1415399260", + ["text"] = "Area is controlled by a Warband Boss", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_358129101", + ["text"] = "Area is haunted by # additional Tormented Spirit", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3346320695", + ["text"] = "Area is infested with Maddening Tentacles", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2961018200", + ["text"] = "Area is inhabited by Abominations", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4198346809", + ["text"] = "Area is inhabited by Animals", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_643741006", + ["text"] = "Area is inhabited by Bandits", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2798324429", + ["text"] = "Area is inhabited by Bone Husks", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4252630904", + ["text"] = "Area is inhabited by Cultists of Kitava", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3916182167", + ["text"] = "Area is inhabited by Demons", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3516340048", + ["text"] = "Area is inhabited by Ghosts", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1813544255", + ["text"] = "Area is inhabited by Goatmen", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2651141461", + ["text"] = "Area is inhabited by Humanoids", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_632768824", + ["text"] = "Area is inhabited by Kitava's Heralds", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3134632618", + ["text"] = "Area is inhabited by Lunaris fanatics", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3408601861", + ["text"] = "Area is inhabited by Lunaris fanatics", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1169165579", + ["text"] = "Area is inhabited by Porcupines", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3560379096", + ["text"] = "Area is inhabited by Redblade Warbands", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_25085466", + ["text"] = "Area is inhabited by Sea Witches and their Spawn", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_45546355", + ["text"] = "Area is inhabited by Skeletons", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1934713036", + ["text"] = "Area is inhabited by Solaris fanatics", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2457517302", + ["text"] = "Area is inhabited by Solaris fanatics", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_808491979", + ["text"] = "Area is inhabited by Undead", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_279246355", + ["text"] = "Area is inhabited by an additional Invasion Boss", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3550168289", + ["text"] = "Area is inhabited by an additional Rogue Exile", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_645841425", + ["text"] = "Area is inhabited by ranged monsters", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2609768284", + ["text"] = "Area is inhabited by the Vaal", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3014313201", + ["text"] = "Area is inhabited by wild Animals", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1263962567", + ["text"] = "Areas are Breached Areas contain additional Large Breach Hands Breach Bosses have a chance to drop a Breachstone", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3751566939", + ["text"] = "Areas contain Einhar Areas can contain capturable Harvest Beasts", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1671749203", + ["text"] = "Areas contain Ritual Altars", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3422644692", + ["text"] = "Areas contain The Sacred Grove Crops are larger in size Crops contain higher tier seeds", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2789750513", + ["text"] = "Areas contain additional Abysses Abysses have already fully opened Abysses contain monsters from Beyond this realm", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4139137767", + ["text"] = "Areas contain additional Essences Essences contain Rogue Exiles", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_495299940", + ["text"] = "Areas contain additional Harbinger Portals Harbinger Portals drop additional Currency Shards when destroyed", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4252342397", + ["text"] = "Areas contain additional Shrines Area contains Shrines guarded by Pantheon Monsters", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_645735818", + ["text"] = "Areas contain additional Strongboxes Strongboxes are found in Sequences Strongboxes in a Sequence open when the previous Strongbox in the Sequence has unlocked", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3582614035", + ["text"] = "Areas contain additional Temporal Incursions Temporal Incursion Portals have their direction reversed", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2055257822", + ["text"] = "Areas contain an Ultimatum Encounter", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2518308945", + ["text"] = "Areas contain many additional Breaches Breaches open and close faster", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4109767878", + ["text"] = "Armour Items found in your Maps have #% chance to have 20% Quality", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4186532642", + ["text"] = "Armour also applies to Chaos Damage taken from Hits", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2134207902", + ["text"] = "Armour also applies to Lightning Damage taken from Hits", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_651387761", + ["text"] = "Armour from Equipped Shield is doubled", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2129352930", + ["text"] = "Armour is increased by Overcapped Fire Resistance", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3515781151", + ["text"] = "Armourer's Scraps found in your Maps have #% chance to drop as a full stack", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2606808909", + ["text"] = "Arrow Dancing", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2421436896", + ["text"] = "Arrows Fork", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1829238593", + ["text"] = "Arrows Pierce all Targets", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1997151732", + ["text"] = "Arrows Pierce all Targets after Chaining", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2138799639", + ["text"] = "Arrows Pierce all Targets after Forking", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3423006863", + ["text"] = "Arrows Pierce an additional Target", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3726936056", + ["text"] = "Arrows deal # to # Added Fire Damage for each time they've Pierced", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1019891080", + ["text"] = "Arrows deal #% increased Damage with Hits and Ailments to Targets they Pierce", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2168987271", + ["text"] = "Arrows fired from the first firing points always Pierce", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_226515115", + ["text"] = "Arrows fired from the fourth firing points Chain +# time", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3290081052", + ["text"] = "Arrows fired from the second firing points Fork", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_301746072", + ["text"] = "Arrows fired from the third firing points Return to you", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1064778484", + ["text"] = "Arrows that Pierce have +#% to Critical Strike Multiplier", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1812251528", + ["text"] = "Arrows that Pierce have 50% chance to inflict Bleeding", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_971749694", + ["text"] = "Arsenal of Vengeance", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2544408546", + ["text"] = "Aspect of the Avian also grants Avian's Might and Avian's Flight to nearby Allies", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3850409117", + ["text"] = "Aspect of the Cat has no Reservation", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1509532587", + ["text"] = "Aspect of the Spider can inflict Spider's Web on Enemies an additional time", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3832130495", + ["text"] = "Aspect of the Spider inflicts Spider's Webs and Hinder every # Seconds instead", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_341698555", + ["text"] = "At least one Perandus Chest is guarded by a Unique Monster", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4204320922", + ["text"] = "Attack Hits against Bleeding Enemies have #% chance to Blind", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1291726336", + ["text"] = "Attack Hits against Blinded Enemies have #% chance to Maim", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1658124062", + ["text"] = "Attack Projectiles Return to you", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1302700515", + ["text"] = "Attack Skills gain #% of Physical Damage as Extra Fire Damage per Socketed Red Gem", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3266394681", + ["text"] = "Attack Skills have +# to maximum number of Summoned Totems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2778228111", + ["text"] = "Attack Skills have Added Lightning Damage equal to #% of maximum Mana", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2466604008", + ["text"] = "Attacks Chain an additional time when in Main Hand", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3358745905", + ["text"] = "Attacks Cost Life instead of Mana", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2059771038", + ["text"] = "Attacks always inflict Bleeding while you have Cat's Stealth", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4209631466", + ["text"] = "Attacks fire # additional Projectile when in Off Hand", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1195705739", + ["text"] = "Attacks fire an additional Projectile", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2105048696", + ["text"] = "Attacks fire an additional Projectile when in Off Hand", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1510714129", + ["text"] = "Attacks have #% chance to Maim on Hit", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3654074125", + ["text"] = "Attacks have #% chance to Poison while at maximum Frenzy Charges", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1923879260", + ["text"] = "Attacks have #% chance to cause Bleeding", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_421841616", + ["text"] = "Attacks have #% increased Area of Effect when in Main Hand", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2572042788", + ["text"] = "Attacks have +#% to Critical Strike Chance", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1481800004", + ["text"] = "Attacks have +#% to Critical Strike Chance if 4 Elder Items are Equipped", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2591028853", + ["text"] = "Attacks have 25% chance to inflict Bleeding when Hitting Cursed Enemies", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3362271649", + ["text"] = "Attacks inflict Unnerve on Critical Strike for 4 seconds", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_591162856", + ["text"] = "Attacks that Fire Projectiles Consume up to # additional Steel Shard", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3418949024", + ["text"] = "Attacks with this Weapon Maim on hit", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3762412853", + ["text"] = "Attacks with this Weapon Penetrate #% Chaos Resistance", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1740229525", + ["text"] = "Attacks with this Weapon Penetrate #% Cold Resistance", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4064396395", + ["text"] = "Attacks with this Weapon Penetrate #% Elemental Resistances", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3398283493", + ["text"] = "Attacks with this Weapon Penetrate #% Fire Resistance", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2387539034", + ["text"] = "Attacks with this Weapon Penetrate #% Lightning Resistance", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3829706447", + ["text"] = "Attacks with this Weapon deal # to # added Chaos Damage against Enemies affected by at least 5 Poisons", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2453554491", + ["text"] = "Attacks with this Weapon deal # to # added Fire Damage to Bleeding Enemies", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2202639361", + ["text"] = "Attacks with this Weapon deal # to # added Physical Damage to Ignited Enemies", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1506185293", + ["text"] = "Attacks with this Weapon deal Double Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_625037258", + ["text"] = "Attacks with this Weapon deal Double Damage to Chilled Enemies", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3148418088", + ["text"] = "Attacks with this Weapon have #% chance to inflict Bleeding against Ignited Enemies", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_17526298", + ["text"] = "Attacks with this Weapon have #% increased Elemental Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3228133944", + ["text"] = "Attacks with this Weapon have Added Fire Damage equal to #% of Player's Maximum Life", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_973269941", + ["text"] = "Attacks with this Weapon have Added Maximum Lightning Damage equal to #% of Player's Maximum Energy Shield", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_254952564", + ["text"] = "Attacks with this weapon inflict Hallowing Flame on Hit", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_485236576", + ["text"] = "Attacks you use yourself Repeat an additional time", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2718073792", + ["text"] = "Attacks you use yourself have #% more Attack Speed", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3024338155", + ["text"] = "Attribute Requirements can be satisfied by #% of Omniscience", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2185337019", + ["text"] = "Aura Skills other than Anger are Disabled", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2010835448", + ["text"] = "Aura Skills other than Clarity are Disabled", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_460973817", + ["text"] = "Aura Skills other than Determination are Disabled", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2204523353", + ["text"] = "Aura Skills other than Discipline are Disabled", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1747401945", + ["text"] = "Aura Skills other than Grace are Disabled", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3067441492", + ["text"] = "Aura Skills other than Haste are Disabled", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3348211884", + ["text"] = "Aura Skills other than Hatred are Disabled", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3540033124", + ["text"] = "Aura Skills other than Malevolence are Disabled", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2800254163", + ["text"] = "Aura Skills other than Precision are Disabled", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3970941380", + ["text"] = "Aura Skills other than Pride are Disabled", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2225434657", + ["text"] = "Aura Skills other than Purity of Elements are Disabled", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3192291777", + ["text"] = "Aura Skills other than Purity of Fire are Disabled", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2517644375", + ["text"] = "Aura Skills other than Purity of Ice are Disabled", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2523986538", + ["text"] = "Aura Skills other than Purity of Lightning are Disabled", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_110034065", + ["text"] = "Aura Skills other than Vitality are Disabled", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3292388799", + ["text"] = "Aura Skills other than Wrath are Disabled", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_374559518", + ["text"] = "Aura Skills other than Zealotry are Disabled", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2156372077", + ["text"] = "Auras from Player Skills which affect Allies also affect Enemies", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3729445224", + ["text"] = "Auras from your Skills grant #% increased Damage to you and Allies", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_472812693", + ["text"] = "Auras from your Skills have #% increased Effect on you", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_346029096", + ["text"] = "Avatar of Fire", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2729804981", + ["text"] = "Banner Skills have #% increased Aura Effect", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2384457007", + ["text"] = "Banner Skills have no Reservation", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2560911401", + ["text"] = "Base Spell Critical Strike Chance of Spells is equal to that of Main Hand Weapon", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.pseudo_timeless_jewel_ahuana", + ["text"] = "Bathed in the blood of # sacrificed in the name of Ahuana", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.pseudo_timeless_jewel_doryani", + ["text"] = "Bathed in the blood of # sacrificed in the name of Doryani", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.pseudo_timeless_jewel_xibaqua", + ["text"] = "Bathed in the blood of # sacrificed in the name of Xibaqua", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.pseudo_timeless_jewel_zerphi", + ["text"] = "Bathed in the blood of # sacrificed in the name of Zerphi", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_448903047", + ["text"] = "Battlemage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4062346714", + ["text"] = "Beasts in your Maps are more likely to be less common varieties", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3241030924", + ["text"] = "Beasts in your Maps have a #% chance to break free Beasts which break free in your Maps gain Bestial Rage Defeating Beasts grants Hunters' Cunning per Bestial Rage on the defeated Beast", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3791540252", + ["text"] = "Beyond Demons in your Maps grant #% increased Experience", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3857813970", + ["text"] = "Beyond Demons in your Maps have #% increased chance to be followers of Beidat", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2541655454", + ["text"] = "Beyond Demons in your Maps have #% increased chance to be followers of Ghorr", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3175325766", + ["text"] = "Beyond Demons in your Maps have #% increased chance to be followers of K'tash", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4008016019", + ["text"] = "Beyond Portals have a #% chance to spawn an additional Beyond Demon", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1280481887", + ["text"] = "Beyond Portals in your Maps cannot spawn Unique Bosses", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4008016019", + ["text"] = "Beyond Portals in your Maps have #% chance to spawn an additional Beyond Demon", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1454090489", + ["text"] = "Beyond Portals in your Maps have #% increased Merging Radius", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4180165115", + ["text"] = "Beyond Portals in your Maps have #% increased chance to spawn a Unique Boss", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3009539307", + ["text"] = "Beyond Portals in your Maps have #% more Merging Radius", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3604585015", + ["text"] = "Bismuth Ore Deposits in your Maps have #% chance to add an additional Modifier to Monsters they affect", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3425389359", + ["text"] = "Blacksmith's Whetstones found in your Maps have #% chance to drop as a full stack", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3133323410", + ["text"] = "Bleeding Enemies you Kill Explode, dealing #% of their Maximum Life as Physical Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_881917501", + ["text"] = "Bleeding Enemies you Kill with Hits Shatter", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1901158930", + ["text"] = "Bleeding cannot be inflicted on you", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_391460978", + ["text"] = "Bleeding on you expires #% faster while Moving", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3828375170", + ["text"] = "Bleeding you inflict deals Damage #% faster", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1670470989", + ["text"] = "Bleeding you inflict deals Damage #% faster per Frenzy Charge", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2658399404", + ["text"] = "Bleeding you inflict is Reflected to you", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2317489660", + ["text"] = "Blessed Orbs found in your Maps have #% chance to drop as a stack of 8 Blessed Orbs instead", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_393389663", + ["text"] = "Blight Bosses in your Maps have #% chance to add an additional Reward Chest to their Lane", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2233120145", + ["text"] = "Blight Chests in your Maps have #% increased chance to contain Blighted Maps or Oils", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2002028881", + ["text"] = "Blight Chests in your Maps have #% more chance to contain Blighted Maps", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4091793171", + ["text"] = "Blight Encounters in your Maps spawn #% more Non-Unique Monsters", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1837341489", + ["text"] = "Blight Monsters in your Maps spawn #% faster", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3594607722", + ["text"] = "Blight Monsters in your Maps take #% increased Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2460639269", + ["text"] = "Blight Monsters in your Maps take #% more Damage from Players and their Minions", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1837341489", + ["text"] = "Blight Monsters spawn #% faster", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3738423246", + ["text"] = "Blight Towers and their Minions in your Maps deal #% more Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1421406768", + ["text"] = "Blight Towers in your Maps can be Salvaged after the Blight Encounter Higher Tier Towers grant better Salvaged Rewards Salvaged Rewards are improved for each different Tower Type built during Encounter", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_278772496", + ["text"] = "Blight chests in your Maps have a #% chance to be openable again", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4170725899", + ["text"] = "Blight has #% increased Hinder Duration", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1254426365", + ["text"] = "Blighted Chests in your Maps have #% increased chance to contain an Oil", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3450276548", + ["text"] = "Blind Chilled Enemies on Hit", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_44716414", + ["text"] = "Blind does not affect your Chance to Hit", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3013171896", + ["text"] = "Blind does not affect your Light Radius", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2458598175", + ["text"] = "Blind you inflict is Reflected to you", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2801937280", + ["text"] = "Blood Magic", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2363616962", + ["text"] = "Bloodsoaked Blade", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3113439544", + ["text"] = "Blueprints that drop in Area have #% chance to be fully Revealed", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3113439544", + ["text"] = "Blueprints that drop in your Maps have #% chance to be fully Revealed", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_151300265", + ["text"] = "Bow Attacks Sacrifice a random Damageable Minion to fire # additional Arrow", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3885405204", + ["text"] = "Bow Attacks fire # additional Arrows", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2482927318", + ["text"] = "Bow Attacks fire # additional Arrows if you haven't Cast Dash recently", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4217693429", + ["text"] = "Bow Attacks have Culling Strike", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3261557635", + ["text"] = "Bow Knockback at Close Range", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3089482869", + ["text"] = "Brand Skills have #% increased Duration", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3465894962", + ["text"] = "Breach Boss' Clasped Hands in your Maps have #% chance to spawn a Breach Boss when opened", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_988187710", + ["text"] = "Breach Bosses Defeated in Area have #% chance to drop a Breachstone", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_988187710", + ["text"] = "Breach Bosses Defeated in your Maps have #% chance to drop a Breachstone", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_253707123", + ["text"] = "Breach Bosses in your Maps drop double Breach Splinters", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2504358770", + ["text"] = "Breach Encounters are #% faster", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2504358770", + ["text"] = "Breach Encounters in your Maps are #% faster", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1210760818", + ["text"] = "Breach Monsters in Area have #% increased Pack Size", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3611255236", + ["text"] = "Breach Monsters in your Maps grant #% increased Experience", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1210760818", + ["text"] = "Breach Monsters in your Maps have #% increased Pack Size", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_538335880", + ["text"] = "Breach Monsters in your Maps have #% increased chance to drop a Breach Unique Item", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3394339562", + ["text"] = "Breach Splinters have #% chance to drop as Breachstones instead", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3394339562", + ["text"] = "Breach Splinters have #% chance to drop as Breachstones instead in your Maps", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_488900289", + ["text"] = "Breaches contain a Breachlord's Clasped Hand", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2224050171", + ["text"] = "Breaches in Area contain # additional Clasped Hand", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1386808918", + ["text"] = "Breaches in Area each contain a Breachlord", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2147182152", + ["text"] = "Breaches in Area have #% increased chance to belong to Esh", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_622901199", + ["text"] = "Breaches in Area have #% increased chance to belong to Tul", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2819193674", + ["text"] = "Breaches in Area have #% increased chance to belong to Uul-Netol", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3963266703", + ["text"] = "Breaches in Area have #% increased chance to belong to Xoph", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2224050171", + ["text"] = "Breaches in your Maps contain # additional Clasped Hand", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1601064200", + ["text"] = "Breaches in your Maps have #% chance to contain Xesht-Ula, the Open Hand", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3366450262", + ["text"] = "Breaches in your Maps have #% chance to contain a Hand of Xesht-Ula", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3377019059", + ["text"] = "Breaches in your Maps have #% increased chance to belong to Chayula", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2147182152", + ["text"] = "Breaches in your Maps have #% increased chance to belong to Esh", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_622901199", + ["text"] = "Breaches in your Maps have #% increased chance to belong to Tul", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2819193674", + ["text"] = "Breaches in your Maps have #% increased chance to belong to Uul-Netol", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3963266703", + ["text"] = "Breaches in your Maps have #% increased chance to belong to Xoph", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2433436306", + ["text"] = "Breaches in your Maps have #% increased chance to contain a Boss", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2042562038", + ["text"] = "Breaches in your Maps have #% increased chance to contain a Breach Boss' Clasped Hand", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1090596078", + ["text"] = "Breaches in your Maps spawn #% increased Magic Monsters", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1940017254", + ["text"] = "Breachstones dropped by Breach Bosses in your Maps have #% chance to be Flawless", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1082722194", + ["text"] = "Buff granted by Tender Embrace used by this Graft grants #% more Life Recovery Rate", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_291373897", + ["text"] = "Buff granted by Tender Embrace used by this Graft grants #% of Damage Leeched as Life", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_994844444", + ["text"] = "Buff granted by Tender Embrace used by this Graft grants +# Endurance Charge when gained", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2530984421", + ["text"] = "Buff granted by Tender Embrace used by this Graft grants +#% chance to Block Attack Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3328802509", + ["text"] = "Buffs from Active Ancestor Totems Linger for # second", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3847531781", + ["text"] = "Buffs granted by Orichalcum Ore Deposits in your Maps have #% increased Duration", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1217583941", + ["text"] = "Buffs on Players expire #% faster", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3576153145", + ["text"] = "Burning Hoofprints", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2879593163", + ["text"] = "Call of Steel causes #% increased Reflected Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2067717830", + ["text"] = "Call of Steel deals Reflected Damage with #% increased Area of Effect", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_109671187", + ["text"] = "Call of Steel has #% increased Use Speed", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_652310659", + ["text"] = "Call the Pyre used by this Graft creates +# Ashen Pillar", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3292262540", + ["text"] = "Call to Arms", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4005027470", + ["text"] = "Can be Enchanted by a Kalguuran Runesmith", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3221277412", + ["text"] = "Can be Runesmithed as though it were all One Handed Melee Weapon Types", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1161337167", + ["text"] = "Can be modified while Corrupted", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1135194732", + ["text"] = "Can have # additional Enchantment Modifiers", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1045438865", + ["text"] = "Can have # additional Runesmithing Enchantment", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1161341806", + ["text"] = "Can have a up to 1 Implicit Modifier while Item has this Modifier", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2224292784", + ["text"] = "Can have up to # additional Trap placed at a time", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1859333175", + ["text"] = "Can have up to 3 Crafted Modifiers", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4007482102", + ["text"] = "Can't use Chest armour", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3283268320", + ["text"] = "Can't use Life Flasks", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1863071073", + ["text"] = "Can't use Mana Flasks", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_64726306", + ["text"] = "Can't use other Rings", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4127720801", + ["text"] = "Cannot Block", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3162258068", + ["text"] = "Cannot Block Attack Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4076910393", + ["text"] = "Cannot Block Spell Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3890287045", + ["text"] = "Cannot Block while you have no Energy Shield", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_474452755", + ["text"] = "Cannot Evade Enemy Attacks", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3281123655", + ["text"] = "Cannot Ignite, Chill, Freeze or Shock", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_340591537", + ["text"] = "Cannot Inflict Wither on targets that are not on Full Life", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2095084973", + ["text"] = "Cannot Knock Enemies Back", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1336164384", + ["text"] = "Cannot Leech", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3769854701", + ["text"] = "Cannot Leech Life", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3243534964", + ["text"] = "Cannot Leech Life from Critical Strikes", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_526251910", + ["text"] = "Cannot Leech Life from Monsters", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1759630226", + ["text"] = "Cannot Leech Mana", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2918242917", + ["text"] = "Cannot Leech or Regenerate Mana", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3279535558", + ["text"] = "Cannot Leech when on Low Life", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1833990055", + ["text"] = "Cannot Poison Enemies with at least # Poison on them", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_164133604", + ["text"] = "Cannot Reroll Favours at Ritual Altars in your Maps", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1436284579", + ["text"] = "Cannot be Blinded", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1653848515", + ["text"] = "Cannot be Blinded while affected by Precision", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_283649372", + ["text"] = "Cannot be Chilled", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_628032624", + ["text"] = "Cannot be Chilled or Frozen while moving", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_876831634", + ["text"] = "Cannot be Frozen", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3423343084", + ["text"] = "Cannot be Frozen if 6 Redeemer Items are Equipped", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3881126302", + ["text"] = "Cannot be Frozen if Dexterity is higher than Intelligence", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_331731406", + ["text"] = "Cannot be Ignited", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_676883595", + ["text"] = "Cannot be Ignited if Strength is higher than Dexterity", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2420971151", + ["text"] = "Cannot be Ignited while at maximum Endurance Charges", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4212255859", + ["text"] = "Cannot be Knocked Back", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3835551335", + ["text"] = "Cannot be Poisoned", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2784102684", + ["text"] = "Cannot be Poisoned while Bleeding", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_491899612", + ["text"] = "Cannot be Shocked", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3024242403", + ["text"] = "Cannot be Shocked if Intelligence is higher than Strength", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3592330380", + ["text"] = "Cannot be Shocked or Ignited while moving", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1694106311", + ["text"] = "Cannot be Stunned", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2926399803", + ["text"] = "Cannot be Stunned by Attacks if your opposite Ring is an Elder Item", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3058290552", + ["text"] = "Cannot be Stunned by Hits you Block", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2312817839", + ["text"] = "Cannot be Stunned by Spells if your opposite Ring is a Shaper Item", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2916280114", + ["text"] = "Cannot be Stunned by Suppressed Spell Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3183988184", + ["text"] = "Cannot be Stunned if 6 Elder Items are Equipped", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_877233648", + ["text"] = "Cannot be Stunned if you have at least 10 Crab Barriers", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1472543401", + ["text"] = "Cannot be Stunned when on Low Life", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2638865425", + ["text"] = "Cannot be Stunned while Bleeding", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2983926876", + ["text"] = "Cannot be Stunned while Fortified", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1887508417", + ["text"] = "Cannot be Stunned while Leeching", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2971900104", + ["text"] = "Cannot be Stunned while you have at least 25 Rage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_623651254", + ["text"] = "Cannot be used with Chaos Inoculation", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3223376951", + ["text"] = "Cannot deal Critical Strikes with Attacks", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3180152291", + ["text"] = "Cannot deal non-Chaos Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_206243615", + ["text"] = "Cannot gain Energy Shield", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1731620212", + ["text"] = "Cannot gain Life during effect", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2198697797", + ["text"] = "Cannot gain Mana during effect", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2503253050", + ["text"] = "Cannot gain Power Charges", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2694161522", + ["text"] = "Cannot have a Boss in the final Round", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_612223930", + ["text"] = "Cannot inflict Freeze or Chill", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4198497576", + ["text"] = "Cannot inflict Ignite", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_990377349", + ["text"] = "Cannot inflict Shock", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_241251790", + ["text"] = "Cannot lose Crab Barriers if you have lost Crab Barriers Recently", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4122424929", + ["text"] = "Cannot roll Attack Modifiers", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1149326139", + ["text"] = "Cannot roll Caster Modifiers", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_238314698", + ["text"] = "Cannot roll Modifiers with Required Level above #", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1827932821", + ["text"] = "Cannot take Reflected Elemental Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3797685329", + ["text"] = "Cannot take Reflected Elemental Damage if 4 Shaper Items are Equipped", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_249805317", + ["text"] = "Cannot take Reflected Physical Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_609019022", + ["text"] = "Cannot take Reflected Physical Damage if 4 Elder Items are Equipped", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_553616540", + ["text"] = "Cartographer's Chisels found in your Maps have #% chance to drop as a full stack", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.pseudo_timeless_jewel_avarius", + ["text"] = "Carved to glorify # new faithful converted by High Templar Avarius", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.pseudo_timeless_jewel_dominus", + ["text"] = "Carved to glorify # new faithful converted by High Templar Dominus", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.pseudo_timeless_jewel_maxarius", + ["text"] = "Carved to glorify # new faithful converted by High Templar Maxarius", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.pseudo_timeless_jewel_venarius", + ["text"] = "Carved to glorify # new faithful converted by High Templar Venarius", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1621470436", + ["text"] = "Cast Level 20 Fire Burst on Hit", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_50381303", + ["text"] = "Celestial Footprints", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3776150692", + ["text"] = "Chance to Block Attack Damage is Unlucky", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3551025193", + ["text"] = "Chance to Block Spell Damage is Unlucky", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_984774803", + ["text"] = "Chance to Block is Unlucky", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1178188780", + ["text"] = "Channelling Skills Cost +# Mana", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2733285506", + ["text"] = "Channelling Skills deal #% increased Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_970844066", + ["text"] = "Channelling Skills deal #% increased Damage per 10 Devotion", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2421446548", + ["text"] = "Channelling Skills have +# to Total Mana Cost", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3470457445", + ["text"] = "Chaos Damage can Ignite, Chill and Shock", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1119465199", + ["text"] = "Chaos Damage taken does not bypass Energy Shield", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2229840047", + ["text"] = "Chaos Damage taken does not bypass Energy Shield during effect", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_887556907", + ["text"] = "Chaos Damage taken does not bypass Energy Shield while not on Low Life", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_795512669", + ["text"] = "Chaos Damage taken does not bypass Energy Shield while not on Low Mana", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3008104268", + ["text"] = "Chaos Damage taken does not bypass Minions' Energy Shield", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3586007174", + ["text"] = "Chaos Orbs found in your Maps have #% chance to drop as a full stack", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2439129490", + ["text"] = "Chaos Resistance is Zero", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3573128085", + ["text"] = "Chaos Skills have #% chance to Ignite", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_289885185", + ["text"] = "Chaos Skills have #% increased Skill Effect Duration", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2676773112", + ["text"] = "Chaos Skills inflict up to 15 Withered Debuffs on Hit for # seconds", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3374535912", + ["text"] = "Chayula, Who Dreamt in your Maps has a #% chance to be Duplicated", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1502389239", + ["text"] = "Chests have #% increased Item Quantity", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3457143479", + ["text"] = "Chests have #% increased Item Rarity", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1194648995", + ["text"] = "Chill Effect and Freeze Duration on you are based on #% of Energy Shield", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2223307291", + ["text"] = "Chill Enemies as though dealing #% more Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1488891279", + ["text"] = "Chill Enemies for # second on Hit with this Weapon when in Off Hand", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2459809121", + ["text"] = "Chill Enemy for # second when Hit, reducing their Action Speed by 30%", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_583277599", + ["text"] = "Chill Nearby Enemies when you Block", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2384145996", + ["text"] = "Chill nearby Enemies when you Focus, causing 30% reduced Action Speed", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2774670797", + ["text"] = "Chills from your Hits always reduce Action Speed by at least #%", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2469861066", + ["text"] = "Chromatic Orbs found in your Maps have #% chance to drop as a full stack", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2250543633", + ["text"] = "Clarity has no Reservation", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1975134334", + ["text"] = "Cluster Jewels from Delirium Rewards have a #% chance to be Rare and Corrupted", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3810337989", + ["text"] = "Cold Damage with Hits is Lucky if you've Suppressed Spell Damage Recently", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1168138239", + ["text"] = "Cold Exposure on Hit if you've cast Frostbite in the past 10 seconds", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_600221736", + ["text"] = "Cold Exposure you inflict applies an extra +#% to Cold Resistance", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1864616755", + ["text"] = "Cold Resistance cannot be Penetrated", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_496075050", + ["text"] = "Cold Resistance is #%", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2373079502", + ["text"] = "Cold Skills have #% chance to Poison on Hit", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.pseudo_timeless_jewel_akoya", + ["text"] = "Commanded leadership over # warriors under Akoya", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.pseudo_timeless_jewel_kaom", + ["text"] = "Commanded leadership over # warriors under Kaom", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.pseudo_timeless_jewel_kiloava", + ["text"] = "Commanded leadership over # warriors under Kiloava", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.pseudo_timeless_jewel_rakiata", + ["text"] = "Commanded leadership over # warriors under Rakiata", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.pseudo_timeless_jewel_cadiro", + ["text"] = "Commissioned # coins to commemorate Cadiro", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.pseudo_timeless_jewel_caspiro", + ["text"] = "Commissioned # coins to commemorate Caspiro", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.pseudo_timeless_jewel_chitus", + ["text"] = "Commissioned # coins to commemorate Chitus", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.pseudo_timeless_jewel_victario", + ["text"] = "Commissioned # coins to commemorate Victario", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3127831894", + ["text"] = "Completing a Blight Encounter in your Maps grants all Players Blightreach", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3008766302", + ["text"] = "Completing the final Ritual Altar in your Maps has #% chance to drop a Blood-filled Vessel", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_424189350", + ["text"] = "Completing your Maps grants # Intelligence for a random Immortal Syndicate Safehouse", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_622203853", + ["text"] = "Conductivity has #% reduced Reservation if Cast as an Aura", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1233358566", + ["text"] = "Conductivity has no Reservation if Cast as an Aura", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1994392904", + ["text"] = "Conduit", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4172727064", + ["text"] = "Consecrated Ground around you while stationary if 2 Crusader Items are Equipped", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_806698863", + ["text"] = "Consecrated Ground created by this Flask has Tripled Radius", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1866211373", + ["text"] = "Consecrated Ground created during Effect applies #% increased Damage taken to Enemies", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2474564741", + ["text"] = "Consecrated Ground you create applies #% increased Damage taken to Enemies", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1235229114", + ["text"] = "Consecrated Ground you create grants +#% maximum Chaos Resistance to you and Allies", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2434030180", + ["text"] = "Consecrated Ground you create while affected by Zealotry causes enemies to take #% increased Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_570159344", + ["text"] = "Consumes 1 Frenzy Charge on use", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3426614534", + ["text"] = "Consumes Maximum Charges to use", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3221550523", + ["text"] = "Consumes Socketed Uncorrupted Support Gems when they reach Maximum Level Can Consume # additional Uncorrupted Support Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3262369040", + ["text"] = "Consumes a Void Charge to Trigger Level # Void Shot when you fire Arrows with a Non-Triggered Skill", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_245814726", + ["text"] = "Contains a Furnace that adds a Crucible Passive Skill Tree to an Uncorrupted Unique Item", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3673969640", + ["text"] = "Contains a Furnace that removes a Crucible Passive Skill Tree from a Non-Unique Item", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1968038301", + ["text"] = "Contains additional waves of Undead Monsters", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4154778375", + ["text"] = "Contains an Expedition Encounter", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3787670808", + ["text"] = "Contains the Immortalised Grandmasters PvP damage scaling in effect", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1787444936", + ["text"] = "Contains waves of Monsters", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_586568910", + ["text"] = "Corpses you Spawn have #% increased Maximum Life", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1658498488", + ["text"] = "Corrupted Blood cannot be inflicted on you", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1911037487", + ["text"] = "Corrupted Soul", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2196928545", + ["text"] = "Count as Blocking Attack Damage from the first target Hit with each Shield Attack", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1090017486", + ["text"] = "Count as having maximum number of Endurance Charges", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3584443917", + ["text"] = "Count as having maximum number of Endurance Charges Count as having maximum number of Frenzy Charges Count as having maximum number of Power Charges", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2046300872", + ["text"] = "Count as having maximum number of Frenzy Charges", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_800091665", + ["text"] = "Count as having maximum number of Power Charges", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2797075304", + ["text"] = "Counts as Dual Wielding", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1524882321", + ["text"] = "Counts as all One Handed Melee Weapon Types", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2428064388", + ["text"] = "Cover Full Life Enemies in Ash for # seconds on Melee Weapon Hit", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1243613350", + ["text"] = "Create Profane Ground instead of Consecrated Ground", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2485187927", + ["text"] = "Create a Blighted Spore when your Skills or Minions Kill a Rare Monster", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3195625581", + ["text"] = "Creates Consecrated Ground on Critical Strike", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3321583955", + ["text"] = "Creates a Smoke Cloud on Rampage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_300702212", + ["text"] = "Crimson Dance", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3208431815", + ["text"] = "Crimson Iron Ore Deposits in your Maps are guarded by an additional Corrupted Growth", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1672183492", + ["text"] = "Critical Strike Chance is #% for Hits with this Weapon", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2155513095", + ["text"] = "Critical Strike Chance is increased by Lightning Resistance", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2478752719", + ["text"] = "Critical Strike Chance is increased by Overcapped Lightning Resistance", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2091518682", + ["text"] = "Critical Strikes Penetrate #% of Enemy Elemental Resistances while affected by Zealotry", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3245481061", + ["text"] = "Critical Strikes deal no Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3979476531", + ["text"] = "Critical Strikes do not inherently Freeze", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_249545292", + ["text"] = "Critical Strikes do not inherently inflict non-Damaging Ailments", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_843854434", + ["text"] = "Critical Strikes have #% chance to Blind Enemies while you have Cat's Stealth", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1109900829", + ["text"] = "Critical Strikes have #% chance to inflict Malignant Madness if The Eater of Worlds is dominant", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2996445420", + ["text"] = "Critical Strikes have Culling Strike", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4084476257", + ["text"] = "Critical Strikes with Spells have #% chance to inflict Impale", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1508661598", + ["text"] = "Critical Strikes with this Weapon do not deal extra Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1736735948", + ["text"] = "Crucible Passive Skills are more likely to be retained when Forging", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4294430899", + ["text"] = "Crucible Passive Skills on Forged Items cannot have tiers downgraded", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4226044796", + ["text"] = "Crucible Passive Skills on Forged Items have +#% chance for tiers to be upgraded", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2524254339", + ["text"] = "Culling Strike", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1777334641", + ["text"] = "Culling Strike against Burning Enemies", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2114080270", + ["text"] = "Culling Strike against Enemies Cursed with Poacher's Mark", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2664667514", + ["text"] = "Culling Strike against Frozen Enemies", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2175889777", + ["text"] = "Culling Strike during Effect", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_92114609", + ["text"] = "Currency Items from Strongboxes in your Maps are Duplicated", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_866347860", + ["text"] = "Currency Shards dropped by Harbingers in your Maps can drop as Currency Items instead", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2965611853", + ["text"] = "Curse Auras from Socketed Skills also affect you", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_710372469", + ["text"] = "Curse Enemies with Conductivity on Hit", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2764915899", + ["text"] = "Curse Enemies with Despair on Hit", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2028847114", + ["text"] = "Curse Enemies with Elemental Weakness on Hit", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2048643052", + ["text"] = "Curse Enemies with Elemental Weakness when you Block their Spell Damage, ignoring Curse Limit", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2776399916", + ["text"] = "Curse Enemies with Flammability on Block", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_338121249", + ["text"] = "Curse Enemies with Flammability on Hit", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_654274615", + ["text"] = "Curse Enemies with Flammability on Hit", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_426847518", + ["text"] = "Curse Enemies with Frostbite on Hit", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2922377850", + ["text"] = "Curse Enemies with Punishment when you Block their Melee Damage, ignoring Curse Limit", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3433724931", + ["text"] = "Curse Enemies with Temporal Chains on Hit", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4139135963", + ["text"] = "Curse Enemies with Temporal Chains on Hit", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_541329769", + ["text"] = "Curse Enemies with Temporal Chains when you Block their Projectile Attack Damage, ignoring Curse Limit", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3477714116", + ["text"] = "Curse Enemies with Vulnerability on Block", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3967845372", + ["text"] = "Curse Enemies with Vulnerability on Hit", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3804297142", + ["text"] = "Curse Non-Cursed Enemies with Enfeeble on Hit", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2378065031", + ["text"] = "Curse Skills have #% increased Cast Speed", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1435748744", + ["text"] = "Curse Skills have #% increased Skill Effect Duration", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2643613764", + ["text"] = "Cursed Enemies cannot inflict Elemental Ailments on You", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1763939859", + ["text"] = "Cursed Enemies you or your Minions Kill have a #% chance to Explode, dealing a quarter of their maximum Life as Chaos Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2999796964", + ["text"] = "Curses have #% reduced effect on Monsters", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_608898129", + ["text"] = "Curses on Enemies in your Chilling Areas have #% increased Effect", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3417711605", + ["text"] = "Damage Penetrates #% Cold Resistance", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1477032229", + ["text"] = "Damage Penetrates #% Cold Resistance against Chilled Enemies", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1222888897", + ["text"] = "Damage Penetrates #% Cold Resistance while affected by Hatred", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2101383955", + ["text"] = "Damage Penetrates #% Elemental Resistances", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3392890360", + ["text"] = "Damage Penetrates #% Elemental Resistances during any Flask Effect", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_455556407", + ["text"] = "Damage Penetrates #% Elemental Resistances if you haven't Killed Recently", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1089858120", + ["text"] = "Damage Penetrates #% Elemental Resistances while you are Chilled", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2653955271", + ["text"] = "Damage Penetrates #% Fire Resistance", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1748657990", + ["text"] = "Damage Penetrates #% Fire Resistance against Blinded Enemies", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3111519953", + ["text"] = "Damage Penetrates #% Fire Resistance while affected by Anger", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_818778753", + ["text"] = "Damage Penetrates #% Lightning Resistance", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4164990693", + ["text"] = "Damage Penetrates #% Lightning Resistance during Effect", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1077131949", + ["text"] = "Damage Penetrates #% Lightning Resistance while affected by Wrath", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_697807915", + ["text"] = "Damage Penetrates #% of Enemy Elemental Resistances", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2341811700", + ["text"] = "Damage Penetrates #% of Fire Resistance if you have Blocked Recently", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_133804429", + ["text"] = "Damage Penetrates Fire Resistance equal to your Overcapped Fire Resistance, up to a maximum of 200%", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2670993553", + ["text"] = "Damage cannot be Reflected", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1857928882", + ["text"] = "Damage from your Critical Strikes cannot be Reflected", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1937473464", + ["text"] = "Damage of Enemies Hitting you is Unlucky", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2758554648", + ["text"] = "Damage of Enemies Hitting you is Unlucky while you are Cursed with Vulnerability", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3629143471", + ["text"] = "Damage of Enemies Hitting you is Unlucky while you are on Full Life", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3753748365", + ["text"] = "Damage of Enemies Hitting you is Unlucky while you are on Low Life", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2510276385", + ["text"] = "Damage of Enemies Hitting you is Unlucky while you have a Magic Ring Equipped", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2331104018", + ["text"] = "Damage taken from Blocked Hits cannot bypass Energy Shield Damage taken from Unblocked hits always bypasses Energy Shield", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1274200851", + ["text"] = "Damage with Hits from Socketed Vaal Skills is Lucky", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2237902788", + ["text"] = "Damage with Weapons Penetrates #% Chaos Resistance", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1211769158", + ["text"] = "Damage with Weapons Penetrates #% Cold Resistance", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1736172673", + ["text"] = "Damage with Weapons Penetrates #% Elemental Resistances", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1123291426", + ["text"] = "Damage with Weapons Penetrates #% Fire Resistance", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3301510262", + ["text"] = "Damage with Weapons Penetrates #% Lightning Resistance", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_538241406", + ["text"] = "Damaging Ailments deal damage #% faster", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4230320163", + ["text"] = "Damaging Ailments inflicted by Skills used by this Graft deal damage #% faster", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3468843137", + ["text"] = "Damaging Ailments you inflict deal Damage #% faster while affected by Malevolence", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1631195850", + ["text"] = "Damaging Retaliation Skills become Usable every # seconds", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2372432170", + ["text"] = "Dance in the White used by this Graft creates an additional Tornado", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1180345918", + ["text"] = "Dance in the White used by this Graft has +# to maximum Tornados", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1855381243", + ["text"] = "Deal #% increased Damage Over Time per 100 Player Maximum Life", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_115695112", + ["text"] = "Deal Triple Damage with Elemental Skills", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1896269067", + ["text"] = "Deal no Chaos Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_743677006", + ["text"] = "Deal no Cold Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3716472556", + ["text"] = "Deal no Damage when not on Low Life", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2998305364", + ["text"] = "Deal no Elemental Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4031851097", + ["text"] = "Deal no Non-Elemental Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2075742842", + ["text"] = "Deal no Non-Lightning Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_282353000", + ["text"] = "Deal no Non-Physical Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3900877792", + ["text"] = "Deal no Physical Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4157542794", + ["text"] = "Deal no Physical or Elemental Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2280313599", + ["text"] = "Deals # Chaos Damage per second to nearby Enemies", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3019649166", + ["text"] = "Debilitate Enemies for # Seconds when you Suppress their Spell Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_545593248", + ["text"] = "Debilitate nearby Enemies for # Seconds when Effect ends", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1200027417", + ["text"] = "Debuffs on Monsters expire #% faster", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_195978073", + ["text"] = "Debuffs on players expire #% faster", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1238227257", + ["text"] = "Debuffs on you expire #% faster", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_207635700", + ["text"] = "Debuffs on you expire #% faster while affected by Haste", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3089299676", + ["text"] = "Defeating a Map Boss while Witnessed by The Maven has #% chance to count as also Witnessing an additional random Map Boss", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4271994824", + ["text"] = "Defences are Zero", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1345835998", + ["text"] = "Deferring Favours at Ritual Altars in your Maps costs #% increased Tribute", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3428124128", + ["text"] = "Delirious Monsters Killed in your Maps provide #% increased Reward Progress", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3312982927", + ["text"] = "Delirious Unique Monsters in your Maps have a #% chance to drop an additional Cluster Jewel", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4142971786", + ["text"] = "Delirious Unique Monsters in your Maps have a #% chance to drop an additional Delirium Orb", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_405988579", + ["text"] = "Delirium Bosses in your Maps drop #% increased Simulacrum Splinters", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_615948723", + ["text"] = "Delirium Bosses in your Maps have #% increased chance to drop Unique Cluster Jewels", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3962960008", + ["text"] = "Delirium Encounters in your Maps are #% more likely to spawn Unique Bosses", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1770833858", + ["text"] = "Delirium Encounters in your Maps have #% chance to generate an additional Reward type", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2312030426", + ["text"] = "Delirium Encounters in your Maps have #% chance to generate three additional Reward types", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3350944114", + ["text"] = "Delirium Fog in your Maps dissipates #% faster", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1174954559", + ["text"] = "Delirium Fog in your Maps lasts # additional seconds before dissipating", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4222365107", + ["text"] = "Delirium Fog in your Maps never dissipates Delirium in your Maps has doubled difficulty scaling with distance from the mirror Simulacrum Splinters cannot be found in your Maps Delirium Orbs cannot be found in your Maps", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3904950119", + ["text"] = "Delirium Fog in your Maps never dissipates Simulacrum Splinters cannot be found in your Maps Delirium Encounters in your Maps have no Reward types", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3465791711", + ["text"] = "Delirium Monsters in Area have #% increased Pack Size", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3465791711", + ["text"] = "Delirium Monsters in your Maps have #% increased Pack Size", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3580714718", + ["text"] = "Delirium Monsters in your Maps have #% increased chance to drop Cluster Jewels", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3387171641", + ["text"] = "Delirium Reward Types in your Maps gain +1 to count on Map Completion", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2901714012", + ["text"] = "Delirium Rewards in your Maps have #% increased chance to give Delirium Orbs", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1769611692", + ["text"] = "Delirium in your Maps increases #% faster with distance from the mirror", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.pseudo_timeless_jewel_asenath", + ["text"] = "Denoted service of # dekhara in the akhara of Asenath", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.pseudo_timeless_jewel_balbala", + ["text"] = "Denoted service of # dekhara in the akhara of Balbala", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.pseudo_timeless_jewel_deshret", + ["text"] = "Denoted service of # dekhara in the akhara of Deshret", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.pseudo_timeless_jewel_nasima", + ["text"] = "Denoted service of # dekhara in the akhara of Nasima", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2562564343", + ["text"] = "Despair has #% reduced Reservation if Cast as an Aura", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_450601566", + ["text"] = "Despair has no Reservation if Cast as an Aura", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2721871046", + ["text"] = "Determination has #% increased Mana Reservation Efficiency", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_325889252", + ["text"] = "Determination has #% increased Mana Reservation Efficiency", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3072232736", + ["text"] = "Determination has #% reduced Reservation", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1358697130", + ["text"] = "Determination has no Reservation", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_842363566", + ["text"] = "Dexterity and Intelligence from passives in Radius count towards Strength Melee Damage bonus", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2075199521", + ["text"] = "Dexterity from Passives in Radius is Transformed to Intelligence", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4097174922", + ["text"] = "Dexterity from Passives in Radius is Transformed to Strength", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1692887998", + ["text"] = "Discipline has #% increased Mana Reservation Efficiency", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2081344089", + ["text"] = "Discipline has #% increased Mana Reservation Efficiency", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2200030809", + ["text"] = "Discipline has #% reduced Reservation", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3708588508", + ["text"] = "Discipline has no Reservation", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3469094021", + ["text"] = "Divination Cards from Strongboxes in your Maps are Duplicated", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2321346567", + ["text"] = "Divine Flesh", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_721643763", + ["text"] = "Divine Orbs found in your Maps have #% chance to drop as a stack of 4 Divine Orbs instead", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2048995720", + ["text"] = "Divine Shield", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1686969928", + ["text"] = "Does not inflict Mana Burn over time", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3595254837", + ["text"] = "Drops Burning Ground while moving, dealing # Fire Damage per second for # second", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1558131185", + ["text"] = "Drops Scorched Ground while moving, lasting # seconds", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3002060175", + ["text"] = "Drops Shocked Ground while moving, lasting # seconds", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1158433054", + ["text"] = "Durability of Ichor Pumps in Area is 1", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1869678332", + ["text"] = "During Effect, #% reduced Damage taken of each Element for which your Uncapped Elemental Resistance is lowest", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2444301311", + ["text"] = "During Effect, Damage Penetrates #% Resistance of each Element for which your Uncapped Elemental Resistance is highest", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2688118197", + ["text"] = "Each 10 Rage also grants #% increased Physical Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_95850091", + ["text"] = "Each Legion in your Maps contains an additional War Hoard", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1563068812", + ["text"] = "Each Projectile created by Attacks you make with a Melee Weapon has between #% more and #% less Projectile Speed at random", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_769468514", + ["text"] = "Each Rage also grants +#% to Damage over Time Multiplier for Bleeding while wielding an Axe", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3947934765", + ["text"] = "Each Rage also grants +#% to Fire Damage Over Time Multiplier", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_943553365", + ["text"] = "Each Summoned Phantasm grants you Phantasmal Might", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2103621252", + ["text"] = "Eat a Soul when you Hit a Rare or Unique Enemy, no more than once every second", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2859483755", + ["text"] = "Eat a Soul when you Kill a Rare or Unique Enemy with this Weapon", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3969608626", + ["text"] = "Effect is not removed when Unreserved Mana is Filled Effect does not Queue", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3617672145", + ["text"] = "Effect is removed when Ward Breaks", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4113372195", + ["text"] = "Effects of Consecrated Ground you create Linger for 1 second", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2163419452", + ["text"] = "Effects of Consecrated Ground you create while affected by Zealotry Linger for # seconds", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3636871122", + ["text"] = "Effects of Profane Ground you create Linger for 1 second", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1709437962", + ["text"] = "Einhar deals #% more Damage to Unique Monsters in your Maps", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1288839550", + ["text"] = "Einhar has #% increased Cooldown Recovery Rate in your Maps", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1766031838", + ["text"] = "Einhar remains in your Maps after his Mission is Complete", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3619368685", + ["text"] = "Eldritch Altars Influenced by The Eater of Worlds have #% increased Effect of Upsides", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1488839433", + ["text"] = "Eldritch Altars Influenced by The Eater of Worlds have an additional Downside", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2348590020", + ["text"] = "Eldritch Altars Influenced by The Searing Exarch have #% chance to have an additional Upside", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1804970439", + ["text"] = "Eldritch Altars Influenced by The Searing Exarch which have an additional Upside have #% increased Effect of Downsides", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2262736444", + ["text"] = "Eldritch Battery", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1544417021", + ["text"] = "Eldritch Battery during Effect", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2514681311", + ["text"] = "Eldritch Embers found in your Maps influenced by The Searing Exarch have #% chance to be Duplicated", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2157440077", + ["text"] = "Eldritch Ichor found in your Maps influenced by The Eater of Worlds have #% chance to be Duplicated", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1370804479", + ["text"] = "Elemental Ailments you inflict are Reflected to you", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_888026555", + ["text"] = "Elemental Damage with Hits is Lucky while you are Shocked", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1740349133", + ["text"] = "Elemental Damage you Deal with Hits is Resisted by lowest Elemental Resistance instead", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1263158408", + ["text"] = "Elemental Equilibrium", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4109038270", + ["text"] = "Elemental Hit deals #% increased Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3574189159", + ["text"] = "Elemental Overload", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_85576425", + ["text"] = "Elemental Resistances are Zero", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3082079953", + ["text"] = "Elemental Resistances are capped by your highest Maximum Elemental Resistance instead", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3416664215", + ["text"] = "Elemental Weakness has no Reservation if Cast as an Aura", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_445314012", + ["text"] = "Enemies Blinded by you cannot inflict Damaging Ailments", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4216282855", + ["text"] = "Enemies Blinded by you have #% increased Critical Strike Chance", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2621660713", + ["text"] = "Enemies Blinded by you have Malediction", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_15523600", + ["text"] = "Enemies Blinded by you while you are Blinded have Malediction", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4293455942", + ["text"] = "Enemies Cannot Leech Life From you", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4293245253", + ["text"] = "Enemies Cannot Leech Mana From you", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3119292058", + ["text"] = "Enemies Chilled by your Hits can be Shattered as though Frozen", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1816894864", + ["text"] = "Enemies Chilled by your Hits have Damage taken increased by Chill Effect", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3594661200", + ["text"] = "Enemies Chilled by your Hits lessen their Damage dealt by half of Chill Effect", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_313419608", + ["text"] = "Enemies Cursed by you are Hindered if 25% of Curse Duration expired", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2057136736", + ["text"] = "Enemies Cursed by you take #% increased Damage if 75% of Curse Duration expired", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1588094148", + ["text"] = "Enemies Frozen by you take #% increased Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_849085925", + ["text"] = "Enemies Frozen by you take 20% increased Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3709502856", + ["text"] = "Enemies Hindered by you have #% increased Life Regeneration rate", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1558071928", + ["text"] = "Enemies Ignited by you during Effect have Malediction", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3477833022", + ["text"] = "Enemies Ignited by you during Effect take #% increased Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1272032962", + ["text"] = "Enemies Ignited by you have #% of Physical Damage they deal converted to Fire", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2714810050", + ["text"] = "Enemies Ignited by you take Chaos Damage instead of Fire Damage from Ignite", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1919892065", + ["text"] = "Enemies Intimidated by you have #% increased duration of stuns against them", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2857427872", + ["text"] = "Enemies Killed by Zombies' Hits Explode, dealing #% of their Life as Fire Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2970902024", + ["text"] = "Enemies Killed by your Hits are destroyed", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3797538318", + ["text"] = "Enemies Killed by your Hits are destroyed while Insane", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3457687358", + ["text"] = "Enemies Killed with Attack or Spell Hits Explode, dealing #% of their Life as Fire Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2745149002", + ["text"] = "Enemies Maimed by you take #% increased Damage Over Time", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1330636770", + ["text"] = "Enemies Poisoned by you cannot deal Critical Strikes", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2983226297", + ["text"] = "Enemies Shocked by you are Debilitated", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1070888079", + ["text"] = "Enemies Shocked by you have #% of Physical Damage they deal converted to Lightning", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1282219780", + ["text"] = "Enemies Taunted by you take #% increased Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2937093415", + ["text"] = "Enemies Taunted by your Warcries have #% chance to Explode on death, dealing 8% of their maximum Life as Chaos Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3610197448", + ["text"] = "Enemies Taunted by your Warcries take #% increased Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1032614900", + ["text"] = "Enemies Withered by you have +#% to all Resistances", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3231424461", + ["text"] = "Enemies affected by your Spider's Webs deal #% reduced Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_785655723", + ["text"] = "Enemies affected by your Spider's Webs have +#% to All Resistances", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4164361381", + ["text"] = "Enemies display their Monster Category", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1773891268", + ["text"] = "Enemies have #% reduced Evasion if you have Hit them Recently", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3923274300", + ["text"] = "Enemies in your Chilling Areas take #% increased Lightning Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2556900184", + ["text"] = "Enemies in your Link Beams cannot apply Elemental Ailments", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_979288792", + ["text"] = "Enemies inflict Elemental Ailments on you instead of nearby Allies", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1509756274", + ["text"] = "Enemies near corpses affected by your Curses are Blinded Enemies Killed near corpses affected by your Curses explode, dealing #% of their Life as Physical Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2224428651", + ["text"] = "Enemies on Fungal Ground you Kill have #% chance to Explode, dealing 10% of their Life as Chaos Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1217730254", + ["text"] = "Enemies take #% increased Damage for each type of Ailment you have inflicted on them", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3507915723", + ["text"] = "Enemies take #% increased Elemental Damage from your Hits for each Withered you have inflicted on them", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2006370586", + ["text"] = "Enemies you Attack Reflect # Physical Damage to you", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1220361974", + ["text"] = "Enemies you Kill Explode, dealing #% of their Life as Physical Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2165415361", + ["text"] = "Enemies you Kill during Effect have a #% chance to Explode, dealing a tenth of their maximum Life as Damage of a Random Element", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1776945532", + ["text"] = "Enemies you Kill have a #% chance to Explode, dealing a quarter of their maximum Life as Chaos Damage", + ["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", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_589437732", + ["text"] = "Enemies you Kill that are affected by Elemental Ailments grant #% increased Flask Charges", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2780297117", + ["text"] = "Enemies you Kill while affected by Glorious Madness have a #% chance to Explode, dealing a quarter of their Life as Chaos Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1961516633", + ["text"] = "Enemies you Kill while using Pride have #% chance to Explode, dealing a tenth of their maximum Life as Physical Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4107150355", + ["text"] = "Enemies you Shock have #% reduced Cast Speed", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3134790305", + ["text"] = "Enemies you Shock have #% reduced Movement Speed", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2671550669", + ["text"] = "Enemies you inflict Bleeding on grant #% increased Flask Charges", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_209387074", + ["text"] = "Enemies you kill are Shocked", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_215242678", + ["text"] = "Enemies you or your Totems Kill have #% chance to Explode, dealing 250% of their maximum Life as Fire Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1955994922", + ["text"] = "Enemy Hits inflict Temporal Chains on you", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1457679290", + ["text"] = "Enemy Projectiles Pierce you", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1004885987", + ["text"] = "Energy Shield Leech Effects from Attacks are not removed at Full Energy Shield", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_23814088", + ["text"] = "Energy Shield Recharge is not delayed by Damage during Effect", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_300482938", + ["text"] = "Enervating Grasp used by this Graft creates # additional Hand", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_56919069", + ["text"] = "Enfeeble has no Reservation if Cast as an Aura", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2503479316", + ["text"] = "Envy has no Reservation", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1813488582", + ["text"] = "Equipment Items with Rarity dropped by Possessed Monsters in your Maps have #% chance to be converted to Thaumaturgic Dust", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2649904663", + ["text"] = "Equipped Magic Flasks have #% increased effect on you if no Flasks are Adjacent to them", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1539916749", + ["text"] = "Esh, Forked Thought in your Maps has a #% chance to be Duplicated", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1506277901", + ["text"] = "Essences found are a tier higher", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1384838464", + ["text"] = "Essences found in this Area are Corrupted", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2996332612", + ["text"] = "Essences found in this Area are a higher level", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1506277901", + ["text"] = "Essences found in your Maps are a tier higher", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1308467455", + ["text"] = "Eternal Youth", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2358015838", + ["text"] = "Evasion Rating is increased by Overcapped Cold Resistance", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_145598447", + ["text"] = "Everlasting Sacrifice", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3938394827", + ["text"] = "Every 10 seconds: Gain 2% of Life per Enemy Hit with Attacks for 5 seconds Gain 5% of Life per Enemy Killed for 5 seconds", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_708913352", + ["text"] = "Every 16 seconds you gain Elemental Overload for 8 seconds", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2200114771", + ["text"] = "Every 16 seconds you gain Iron Reflexes for 8 seconds", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1242155304", + ["text"] = "Every 4 seconds, Regenerate #% of Life over one second", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3417925939", + ["text"] = "Every 4 seconds, Regenerate #% of Life over one second if 2 Hunter Items are Equipped", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2189230542", + ["text"] = "Every 4 seconds, remove Curses and Ailments from you", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2501671832", + ["text"] = "Every 5 seconds, gain one of the following for 5 seconds: Your Hits are always Critical Strikes Hits against you are always Critical Strikes Attacks cannot Hit you Attacks against you always Hit Your Damage with Hits is Lucky Damage of Hits against you is Lucky", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3345955207", + ["text"] = "Every 8 seconds, gain Avatar of Fire for 4 seconds", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1431402553", + ["text"] = "Every Rage also grants #% of Physical Damage as Extra Fire Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2765129230", + ["text"] = "Excommunicate Enemies on Melee Hit for # second", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1634061592", + ["text"] = "Exerted Attacks Knock Enemies Back on Hit", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1569101201", + ["text"] = "Exerted Attacks deal #% increased Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3907743910", + ["text"] = "Expedition Detonation Chains in your Maps travel #% slower", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2684644644", + ["text"] = "Expedition Monsters in your Maps spawn with an additional #% of Life missing", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3753446846", + ["text"] = "Expeditions in Area have +# Remnants", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3171270268", + ["text"] = "Expeditions in your Maps have #% increased chance to be led by Dannig", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_159709680", + ["text"] = "Expeditions in your Maps have #% increased chance to be led by Gwennen", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_140032086", + ["text"] = "Expeditions in your Maps have #% increased chance to be led by Rog", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2110260866", + ["text"] = "Expeditions in your Maps have #% increased chance to be led by Tujen", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3753446846", + ["text"] = "Expeditions in your Maps have +# Remnants", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3306713700", + ["text"] = "Exposure you inflict applies an extra +#% to the affected Resistance", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3403461239", + ["text"] = "Extra gore", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2123039991", + ["text"] = "Falling Crystals used by this Graft fires up to # additional mortar", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2483362276", + ["text"] = "Far Shot", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_28208665", + ["text"] = "Favours Deferred at Ritual Altars in your Maps reappear #% sooner", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_937291386", + ["text"] = "Favours Rerolled at Ritual Altars in your Maps have #% chance to cost no Tribute", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1276541261", + ["text"] = "Favours at Ritual Altars in your Maps randomly cost between 90% less and 80% more", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2689259705", + ["text"] = "Final Boss drops higher Level Items", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3014714876", + ["text"] = "Final Map Boss in each Map drops an additional Basic Currency Item", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1253988263", + ["text"] = "Final Map Boss in each Map has #% chance to drop a Vaal Item instead of an Adjacent Map", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1471729472", + ["text"] = "Final Map Boss in each Map has #% chance to drop additional Map Currency Items", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_326199362", + ["text"] = "Final Map Boss in each Map has #% chance to drop an additional Atlas Base Type", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1123167602", + ["text"] = "Final Map Boss in each Map has #% chance to drop an additional Divination Card", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1503311893", + ["text"] = "Final Map Boss in each Map has #% chance to drop an additional Essence", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_729281484", + ["text"] = "Final Map Boss in each Map has #% chance to drop an additional Map at a tier higher", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1384053575", + ["text"] = "Final Map Boss in each Map has #% chance to drop an additional Sacrifice Fragment", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4086926366", + ["text"] = "Final Map Boss in each Map has #% chance to drop an additional Scarab", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3546420819", + ["text"] = "Final Map Boss in each Map has #% chance to drop an additional Talisman", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3978557462", + ["text"] = "Final Map Boss in each Map has #% chance to drop an additional Unique Item", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_931052937", + ["text"] = "Final Map Boss in each Map has +#% chance to drop a Shaper Guardian Map (Tier 14+)", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1377454569", + ["text"] = "Final Map Boss in each Map has +#% chance to drop an Elder Guardian Map (Tier 14+)", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1946193520", + ["text"] = "Final Map Boss in each Map have #% chance to drop an additional Map Item", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3601177816", + ["text"] = "Fire Damage with Hits is Lucky if you've Blocked an Attack Recently", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1138860262", + ["text"] = "Fire Resistance cannot be Penetrated", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_763311546", + ["text"] = "Fire Resistance is #%", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2424717327", + ["text"] = "Fire Skills have #% chance to Poison on Hit", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3152149523", + ["text"] = "Flammability has #% reduced Reservation if Cast as an Aura", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1195140808", + ["text"] = "Flammability has no Reservation if Cast as an Aura", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_114734841", + ["text"] = "Flasks applied to you have #% increased Effect", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3867344930", + ["text"] = "Flasks applied to you have #% increased Effect per Level", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3003321700", + ["text"] = "Flasks do not apply to you", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3291313404", + ["text"] = "Flasks found in your Maps have #% chance to have 20% Quality", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3599443205", + ["text"] = "Flasks gain # Charge per second if you've Hit a Unique Enemy Recently", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1193283913", + ["text"] = "Flasks gain # Charges every 3 seconds", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3168399315", + ["text"] = "Flasks gain # Charges every 3 seconds while they are inactive", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_196260576", + ["text"] = "Flasks gain # Charges when you hit a Non-Unique Enemy, no more than once per second", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3127641775", + ["text"] = "Flasks you Use apply to your Raised Zombies and Spectres", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1537296847", + ["text"] = "Flesh and Stone has #% reduced Reservation", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2060601355", + ["text"] = "Flesh and Stone has no Reservation", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3610263531", + ["text"] = "Focus has #% increased Cooldown Recovery Rate", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_504462346", + ["text"] = "For each nearby corpse, #% increased Movement Speed", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2500585555", + ["text"] = "For each nearby corpse, Regenerate # Life per second", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3845048660", + ["text"] = "For each nearby corpse, Regenerate #% Life per second, up to 3%", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3478814676", + ["text"] = "Forged Items are Corrupted with an Implicit", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2592705940", + ["text"] = "Forged Items are fully Linked", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_881299808", + ["text"] = "Forged Items have 30% Quality", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2801601300", + ["text"] = "Forged Items have a Crucible Passive Skill that modifies the sell price of the Item if possible", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2418755296", + ["text"] = "Forged Items have the numeric values of Modifiers Randomised", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1944897696", + ["text"] = "Fortune Favours the Brave applies an additional random Option 100% more cost of the Fortune Favours the Brave Map Crafting Option", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_728267040", + ["text"] = "Found Items have #% chance to drop Corrupted in Area", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3020069394", + ["text"] = "Found Magic Items drop Identified", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4272678430", + ["text"] = "Freeze Chilled Enemies as though dealing #% more Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1302208736", + ["text"] = "Freeze Enemies as though dealing #% more Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3865389316", + ["text"] = "Freezes you inflict spread to other Enemies within # metre", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4272260340", + ["text"] = "Frostbite has #% reduced Reservation if Cast as an Aura", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3062707366", + ["text"] = "Frostbite has no Reservation if Cast as an Aura", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3941271999", + ["text"] = "Frostblink has #% increased Duration", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1166487805", + ["text"] = "Gain # Armour per Grand Spectrum", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1582728645", + ["text"] = "Gain # Charge when you are Hit by an Enemy", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2894476716", + ["text"] = "Gain # Endurance Charge every second if you've been Hit Recently", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4160015669", + ["text"] = "Gain # Endurance Charge every second if you've been Hit Recently and 4 Warlord Items are Equipped", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3986030307", + ["text"] = "Gain # Endurance Charge on use", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_549215295", + ["text"] = "Gain # Energy Shield for each Enemy you Hit which is affected by a Spider's Web", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_294153754", + ["text"] = "Gain # Energy Shield on Kill per Level", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3765507527", + ["text"] = "Gain # Energy Shield per Enemy Hit while affected by Discipline", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_211381198", + ["text"] = "Gain # Energy Shield per Enemy Hit with Attacks", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2528955616", + ["text"] = "Gain # Energy Shield per Enemy Killed", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_450695450", + ["text"] = "Gain # Energy Shield when you Block", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3841984913", + ["text"] = "Gain # Fragile Regrowth each second", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3230795453", + ["text"] = "Gain # Frenzy Charge on use", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_120895749", + ["text"] = "Gain # Life for each Ignited Enemy hit with Attacks", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2381677442", + ["text"] = "Gain # Life on Culling Strike", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4228691877", + ["text"] = "Gain # Life on Kill per Level", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3148570142", + ["text"] = "Gain # Life per Bleeding Enemy Hit", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1649099067", + ["text"] = "Gain # Life per Blinded Enemy Hit with this Weapon", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3072303874", + ["text"] = "Gain # Life per Cursed Enemy Hit with Attacks", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3285021988", + ["text"] = "Gain # Life per Enemy Hit if you have used a Vaal Skill Recently", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4259701244", + ["text"] = "Gain # Life per Enemy Hit while affected by Vitality", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2797971005", + ["text"] = "Gain # Life per Enemy Hit with Attacks", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3497810785", + ["text"] = "Gain # Life per Enemy Hit with Melee Weapons", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2018035324", + ["text"] = "Gain # Life per Enemy Hit with Spells", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3695891184", + ["text"] = "Gain # Life per Enemy Killed", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2507321875", + ["text"] = "Gain # Life per Enemy Killed with Melee Weapons", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_893903361", + ["text"] = "Gain # Life per Ignited Enemy Killed", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2968301430", + ["text"] = "Gain # Life when you Stun an Enemy", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3915702459", + ["text"] = "Gain # Life when you lose an Endurance Charge", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2845511711", + ["text"] = "Gain # Mana on Culling Strike", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1064067689", + ["text"] = "Gain # Mana on Kill per Level", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2087996552", + ["text"] = "Gain # Mana per Cursed Enemy Hit with Attacks", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_820939409", + ["text"] = "Gain # Mana per Enemy Hit with Attacks", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_766380077", + ["text"] = "Gain # Mana per Enemy Hit with Melee Weapons", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2474196346", + ["text"] = "Gain # Mana per Enemy Hit with Spells", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1368271171", + ["text"] = "Gain # Mana per Enemy Killed", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2230910022", + ["text"] = "Gain # Mana per Enemy Killed with Melee Weapons", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2592799343", + ["text"] = "Gain # Mana per Grand Spectrum", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1834588299", + ["text"] = "Gain # Mana per Taunted Enemy Hit", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2697049014", + ["text"] = "Gain # Power Charge on use", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4118945608", + ["text"] = "Gain # Power Charges when you Warcry", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3199910734", + ["text"] = "Gain # Rage after Spending a total of 200 Mana", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2709367754", + ["text"] = "Gain # Rage on Melee Hit", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3591816140", + ["text"] = "Gain #% increased Area of Effect for 2 seconds after Spending a total of 800 Mana", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3243270997", + ["text"] = "Gain #% increased Attack Speed for 20 seconds when you Kill a Rare or Unique Enemy", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2915373966", + ["text"] = "Gain #% of Cold Damage as Extra Chaos Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3916799917", + ["text"] = "Gain #% of Cold Damage as Extra Chaos Damage per Frenzy Charge", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1383929411", + ["text"] = "Gain #% of Cold Damage as Extra Fire Damage against Frozen Enemies", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3086896309", + ["text"] = "Gain #% of Cold Damage as Extra Fire Damage per 1% Chill Effect on Enemy", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3495544060", + ["text"] = "Gain #% of Elemental Damage as Extra Chaos Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3562241510", + ["text"] = "Gain #% of Elemental Damage as Extra Chaos Damage during effect", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_33348259", + ["text"] = "Gain #% of Elemental Damage as Extra Chaos Damage per Shaper Item Equipped", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1599775597", + ["text"] = "Gain #% of Fire Damage as Extra Chaos Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1109745356", + ["text"] = "Gain #% of Fire Damage as Extra Chaos Damage per Endurance Charge", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2402136583", + ["text"] = "Gain #% of Lightning Damage as Extra Chaos Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3115319277", + ["text"] = "Gain #% of Lightning Damage as Extra Chaos Damage per Power Charge", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_13172430", + ["text"] = "Gain #% of Lightning Damage as Extra Cold Damage per 2% Shock Effect on Enemy", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4118694562", + ["text"] = "Gain #% of Maximum Life as Extra Armour", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_67280387", + ["text"] = "Gain #% of Maximum Life as Extra Maximum Energy Shield", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_70766949", + ["text"] = "Gain #% of Maximum Life as Extra Maximum Energy Shield if no Equipped Items are Corrupted", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2663376056", + ["text"] = "Gain #% of Maximum Mana as Extra Maximum Energy Shield", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2831391506", + ["text"] = "Gain #% of Maximum Mana as Extra Maximum Energy Shield while affected by Clarity", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1383676476", + ["text"] = "Gain #% of Missing Unreserved Life before being Hit by an Enemy", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1441107401", + ["text"] = "Gain #% of Missing Unreserved Mana before being Hit by an Enemy", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1621629493", + ["text"] = "Gain #% of Non-Chaos Damage as Extra Chaos Damage per Summoned Void Spawn", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2063695047", + ["text"] = "Gain #% of Non-Chaos Damage as extra Chaos Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3296019532", + ["text"] = "Gain #% of Non-Chaos Damage as extra Chaos Damage per Siphoning Charge", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_273476097", + ["text"] = "Gain #% of Physical Attack Damage as Extra Fire Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1096897481", + ["text"] = "Gain #% of Physical Attack Damage as Extra Lightning Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3319896421", + ["text"] = "Gain #% of Physical Damage as Extra Chaos Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2818167778", + ["text"] = "Gain #% of Physical Damage as Extra Chaos Damage during effect", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2417314413", + ["text"] = "Gain #% of Physical Damage as Extra Chaos Damage if you've used an Amethyst Flask Recently", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1423002070", + ["text"] = "Gain #% of Physical Damage as Extra Chaos Damage per Elder Item Equipped", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3492297134", + ["text"] = "Gain #% of Physical Damage as Extra Chaos Damage while at maximum Power Charges", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_979246511", + ["text"] = "Gain #% of Physical Damage as Extra Cold Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2661163721", + ["text"] = "Gain #% of Physical Damage as Extra Cold Damage during effect", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4015395070", + ["text"] = "Gain #% of Physical Damage as Extra Cold Damage if you've used a Sapphire Flask Recently", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3753703249", + ["text"] = "Gain #% of Physical Damage as Extra Damage of a random Element", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3595519743", + ["text"] = "Gain #% of Physical Damage as Extra Damage of a random Element while you are Ignited", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_725571864", + ["text"] = "Gain #% of Physical Damage as Extra Damage of each Element if 6 Shaper Items are Equipped", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4288824781", + ["text"] = "Gain #% of Physical Damage as Extra Damage of each Element per Spirit Charge", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_369494213", + ["text"] = "Gain #% of Physical Damage as Extra Fire Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_128992179", + ["text"] = "Gain #% of Physical Damage as Extra Fire Damage if you've used a Ruby Flask Recently", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2810434465", + ["text"] = "Gain #% of Physical Damage as Extra Fire Damage if you've dealt a Critical Strike Recently", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4245204226", + ["text"] = "Gain #% of Physical Damage as Extra Fire Damage while affected by Anger", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_219391121", + ["text"] = "Gain #% of Physical Damage as Extra Lightning Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_270706555", + ["text"] = "Gain #% of Physical Damage as Extra Lightning Damage if you've used a Topaz Flask Recently", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2255914633", + ["text"] = "Gain #% of Physical Damage as Extra Lightning Damage while affected by Wrath", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4281949537", + ["text"] = "Gain #% of Physical Damage as a Random Element if you've cast Elemental Weakness in the past 10 seconds", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_754005431", + ["text"] = "Gain #% of Sword Physical Damage as Extra Fire Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1038949719", + ["text"] = "Gain #% of Weapon Physical Damage as Extra Damage of a random Element", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3913265126", + ["text"] = "Gain #% of Weapon Physical Damage as Extra Damage of each Element", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3726536628", + ["text"] = "Gain +# Life when you Taunt an Enemy", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2864779809", + ["text"] = "Gain +#% to Critical Strike Chance for 2 seconds after Spending a total of 800 Mana", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3916499001", + ["text"] = "Gain 1 Endurance Charge per Second during Effect", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1086623733", + ["text"] = "Gain 1 Fragile Regrowth each second", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1043982313", + ["text"] = "Gain 1 Rage on Critical Strike with Attacks", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_410922651", + ["text"] = "Gain 1 Remembrance when you spend a total of # Energy Shield with no Shaper Memory Summoned", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1379726309", + ["text"] = "Gain Absorption Charges instead of Power Charges", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1575519214", + ["text"] = "Gain Accuracy Rating equal to your Strength", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3535421504", + ["text"] = "Gain Added Chaos Damage equal to #% of Ward", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4145689649", + ["text"] = "Gain Adrenaline for # second on Kill", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4231915769", + ["text"] = "Gain Adrenaline for # second when Ward Breaks", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4205704547", + ["text"] = "Gain Adrenaline for # seconds when you reach Low Life", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_349619704", + ["text"] = "Gain Adrenaline when you become Flame-Touched", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1602173343", + ["text"] = "Gain Affliction Charges instead of Frenzy Charges", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_913614572", + ["text"] = "Gain Arcane Surge after Spending a total of # Mana", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1919069577", + ["text"] = "Gain Arcane Surge for 4 seconds when you create Consecrated Ground while affected by Zealotry", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4286031492", + ["text"] = "Gain Arcane Surge when you or your Totems Hit an Enemy with a Spell", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3221795893", + ["text"] = "Gain Arcane Surge when you use a Movement Skill", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2306836071", + ["text"] = "Gain Brutal Charges instead of Endurance Charges", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1183009081", + ["text"] = "Gain Chaotic Might for 4 seconds on Critical Strike", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3366450400", + ["text"] = "Gain Demonic Power on defeating a Beyond Boss in your Maps", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2868692131", + ["text"] = "Gain Elusive on reaching Low Life", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_608963131", + ["text"] = "Gain Her Embrace for # seconds when you Ignite an Enemy", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3100457893", + ["text"] = "Gain Immunity to Physical Damage for # second on Rampage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3442107889", + ["text"] = "Gain Maddening Presence for 10 seconds when you Kill a Rare or Unique Enemy", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3734229311", + ["text"] = "Gain Maximum Life instead of Maximum Energy Shield from Equipped Armour Items", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_661376813", + ["text"] = "Gain Onslaught for # second per Frenzy Charge consumed on use", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1693676706", + ["text"] = "Gain Onslaught for # seconds when you Cast Socketed Golem Skill", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3049436415", + ["text"] = "Gain Onslaught for # seconds when you Warcry", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1643796079", + ["text"] = "Gain Rampage while at Maximum Endurance Charges", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2287328323", + ["text"] = "Gain Sacrificial Zeal when you use a Skill, dealing you #% of the Skill's Mana Cost as Physical Damage per Second", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1091613629", + ["text"] = "Gain Shaper's Presence for 10 seconds when you kill a Rare or Unique Enemy", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3968454273", + ["text"] = "Gain Soul Eater during any Flask Effect", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_161058250", + ["text"] = "Gain Soul Eater for # seconds when you use a Vaal Skill", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_757315075", + ["text"] = "Gain Unholy Might for # second on Rampage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2763710567", + ["text"] = "Gain Unholy Might for 2 seconds on Critical Strike", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2959020308", + ["text"] = "Gain Unholy Might for 4 seconds on Critical Strike", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3184880507", + ["text"] = "Gain Unholy Might on Block for # seconds", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1655460656", + ["text"] = "Gain Vaal Souls equal to Charges Consumed when used", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_767698281", + ["text"] = "Gain Ward instead of #% of Armour and Evasion Rating from Equipped Body Armour", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1546046884", + ["text"] = "Gain a Flask Charge when you deal a Critical Strike", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3772841281", + ["text"] = "Gain a Flask Charge when you deal a Critical Strike while affected by Precision", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_651232125", + ["text"] = "Gain a Frenzy Charge each second", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3598983877", + ["text"] = "Gain a Frenzy Charge if an Attack Ignites an Enemy", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_398702949", + ["text"] = "Gain a Frenzy Charge on Critical Strike", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2977774856", + ["text"] = "Gain a Frenzy Charge on Hit while Bleeding", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_637690626", + ["text"] = "Gain a Frenzy Charge on every 50th Rampage Kill", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2732344760", + ["text"] = "Gain a Frenzy Charge on reaching Maximum Power Charges", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1438403666", + ["text"] = "Gain a Frenzy, Endurance, or Power Charge once per second while you are Stationary", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3269060224", + ["text"] = "Gain a Power Charge after Spending a total of 200 Mana", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_521054609", + ["text"] = "Gain a Power Charge each second", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1099200124", + ["text"] = "Gain a Power Charge every Second if you haven't lost Power Charges Recently", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1556625719", + ["text"] = "Gain a Power Charge for each Enemy you hit with a Critical Strike", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3468151987", + ["text"] = "Gain a Power Charge on Hit while Bleeding", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1592029809", + ["text"] = "Gain a Power Charge on Non-Critical Strike", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3973790753", + ["text"] = "Gain a Power Charge when you Hit a Frozen Enemy", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_328131617", + ["text"] = "Gain a Spirit Charge every second", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_34273389", + ["text"] = "Gain a Void Charge every # seconds", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3493440964", + ["text"] = "Gain a random Shrine Buff for # seconds when you Kill a Rare or Unique Enemy", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3990082744", + ["text"] = "Gain additional Elemental Damage Reduction equal to half your Chaos Resistance", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3778599971", + ["text"] = "Gain an Endurance Charge each second", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3331206505", + ["text"] = "Gain an Endurance Charge each second while Stationary", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2156210979", + ["text"] = "Gain an Endurance Charge every 4 seconds while Stationary", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_407576170", + ["text"] = "Gain an Endurance Charge if an Attack Freezes an Enemy", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1791875585", + ["text"] = "Gain an Endurance Charge when you lose a Power Charge", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2609824731", + ["text"] = "Gain an Endurance Charge when you take a Critical Strike", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1258100102", + ["text"] = "Gain an Endurance Charge, Frenzy Charge, and Power Charge when you use a Vaal Skill", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2199099676", + ["text"] = "Gain an Endurance, Frenzy or Power charge when you Block", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2150125858", + ["text"] = "Gain no Armour from Equipped Body Armour", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2035199242", + ["text"] = "Gain no inherent bonuses from Strength", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4080206249", + ["text"] = "Gain up to maximum Endurance Charges when you take a Critical Strike", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2796308895", + ["text"] = "Gain up to maximum Fragile Regrowth when Hit", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3558528738", + ["text"] = "Gain up to maximum Power Charges when you use a Vaal Skill", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_523966073", + ["text"] = "Gain up to your maximum number of Frenzy and Endurance Charges when you gain Cat's Agility", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2446580062", + ["text"] = "Gain up to your maximum number of Frenzy and Power Charges when you gain Cat's Stealth", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3741956733", + ["text"] = "Gains no Charges during Effect of any Overflowing Chalice Flask", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2748763342", + ["text"] = "Gains no Charges during Effect of any Soul Ripper Flask", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1604751261", + ["text"] = "Gemcutter's Prisms found in your Maps have #% chance to drop as a stack of 6 Gemcutter's Prisms instead", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2236460050", + ["text"] = "Gems Socketed in Blue Sockets gain #% increased Experience", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3799930101", + ["text"] = "Gems Socketed in Green Sockets have +#% to Quality", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2886998024", + ["text"] = "Gems Socketed in Red Sockets have +# to Level", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_899329924", + ["text"] = "Gems can be Socketed in this Item ignoring Socket Colour", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1992708227", + ["text"] = "Gems contained in Strongboxes in your Maps are Duplicated", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3991611906", + ["text"] = "Gems found in your Maps have #% chance to have 20% Quality", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4169460025", + ["text"] = "Geysers created by this Graft fire # additional Projectile when you Warcry", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3590128077", + ["text"] = "Ghost Dance", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4272248216", + ["text"] = "Ghost Reaver", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4266776872", + ["text"] = "Glancing Blows", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_931560398", + ["text"] = "Glows while in an Area containing a Unique Fish", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_729180395", + ["text"] = "Golem Skills have #% increased Cooldown Recovery Rate", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2861397339", + ["text"] = "Golems Deal #% less Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2869193493", + ["text"] = "Golems Summoned in the past 8 seconds deal #% increased Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1417394145", + ["text"] = "Golems have # to # Added Attack Physical Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_56225773", + ["text"] = "Golems have #% increased Attack and Cast Speed", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1750735210", + ["text"] = "Golems have #% increased Maximum Life", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_186383409", + ["text"] = "Golems have #% increased Movement Speed", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3730242558", + ["text"] = "Golems have #% less Life", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1020786773", + ["text"] = "Golems have +# to Armour", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2319448214", + ["text"] = "Gore Footprints", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1803598623", + ["text"] = "Grace has #% increased Mana Reservation Efficiency", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_900639351", + ["text"] = "Grace has #% increased Mana Reservation Efficiency", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1549898151", + ["text"] = "Grace has #% reduced Reservation", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2930404958", + ["text"] = "Grace has no Reservation", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1243641369", + ["text"] = "Grant a Frenzy Charge to nearby Allies on Kill", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3174788165", + ["text"] = "Grant an Endurance Charge to nearby Allies on Hit", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_821021828", + ["text"] = "Grants # Life per Enemy Hit", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_640052854", + ["text"] = "Grants # Mana per Enemy Hit", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2416869319", + ["text"] = "Grants #% of Life Recovery to Minions", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_681709908", + ["text"] = "Grants Armour equal to #% of your Reserved Mana to you and nearby Allies", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3637628300", + ["text"] = "Grants Call of Steel", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_182714578", + ["text"] = "Grants Immunity to Bleeding for # seconds if used while Bleeding Grants Immunity to Corrupted Blood for # seconds if used while affected by Corrupted Blood", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3233646242", + ["text"] = "Grants Immunity to Bleeding for 4 seconds if used while Bleeding Grants Immunity to Corrupted Blood for 4 seconds if used while affected by Corrupted Blood", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3869628136", + ["text"] = "Grants Immunity to Chill for # seconds if used while Chilled Grants Immunity to Freeze for # seconds if used while Frozen", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3570046771", + ["text"] = "Grants Immunity to Chill for 4 seconds if used while Chilled Grants Immunity to Freeze for 4 seconds if used while Frozen", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4003593289", + ["text"] = "Grants Immunity to Hinder for # seconds if used while Hindered", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2361218755", + ["text"] = "Grants Immunity to Ignite for # seconds if used while Ignited Removes all Burning when used", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2695527599", + ["text"] = "Grants Immunity to Ignite for 4 seconds if used while Ignited Removes all Burning when used", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4232582040", + ["text"] = "Grants Immunity to Maim for # seconds if used while Maimed", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_542375676", + ["text"] = "Grants Immunity to Poison for # seconds if used while Poisoned", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3596333054", + ["text"] = "Grants Immunity to Poison for 4 seconds if used while Poisoned", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3854439683", + ["text"] = "Grants Immunity to Shock for # seconds if used while Shocked", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1823903967", + ["text"] = "Grants Immunity to Shock for 4 seconds if used while Shocked", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3686711832", + ["text"] = "Grants Last Breath when you Use a Skill during Effect, for #% of Mana Cost", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_449494711", + ["text"] = "Grants Level # Anger Skill", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_484879947", + ["text"] = "Grants Level # Anger Skill", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1943415243", + ["text"] = "Grants Level # Approaching Flames Skill", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3914740665", + ["text"] = "Grants Level # Aspect of the Avian Skill", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1265282021", + ["text"] = "Grants Level # Aspect of the Cat Skill", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4102318278", + ["text"] = "Grants Level # Aspect of the Crab Skill", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_956546305", + ["text"] = "Grants Level # Aspect of the Spider Skill", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2356594418", + ["text"] = "Grants Level # Battlemage's Cry Skill", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3541114083", + ["text"] = "Grants Level # Bear Trap Skill", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3696252104", + ["text"] = "Grants Level # Blazing Glare", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1198418726", + ["text"] = "Grants Level # Blight Skill", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3985468650", + ["text"] = "Grants Level # Blood Offering Skill", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_738386056", + ["text"] = "Grants Level # Blood Sacrament Skill", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2859437049", + ["text"] = "Grants Level # Brandsurge Skill", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_124458098", + ["text"] = "Grants Level # Caustic Retribution", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3511815065", + ["text"] = "Grants Level # Clarity Skill", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1786401772", + ["text"] = "Grants Level # Convocation Skill", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2434330144", + ["text"] = "Grants Level # Crushing Fist Skill", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3883691934", + ["text"] = "Grants Level # Dash Skill", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1965393792", + ["text"] = "Grants Level # Death Wish Skill", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3566242751", + ["text"] = "Grants Level # Decoy Totem Skill", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1604995720", + ["text"] = "Grants Level # Despair Curse Aura during Effect", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3231614028", + ["text"] = "Grants Level # Determination Skill", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4265392510", + ["text"] = "Grants Level # Determination Skill", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2341269061", + ["text"] = "Grants Level # Discipline Skill", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2578176147", + ["text"] = "Grants Level # Discipline Skill", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2498303876", + ["text"] = "Grants Level # Doryani's Touch Skill", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1749783861", + ["text"] = "Grants Level # Embrace Madness Skill", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1031644844", + ["text"] = "Grants Level # Enduring Cry Skill", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_52953650", + ["text"] = "Grants Level # Envy Skill", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1169502663", + ["text"] = "Grants Level # Frostbite Skill", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2911866787", + ["text"] = "Grants Level # Frostblink Skill", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3321235265", + ["text"] = "Grants Level # Gluttony of Elements Skill", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2867050084", + ["text"] = "Grants Level # Grace Skill", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3914774028", + ["text"] = "Grants Level # Grace Skill", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1188846263", + ["text"] = "Grants Level # Haste Skill", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2923442950", + ["text"] = "Grants Level # Haste Skill", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_178394804", + ["text"] = "Grants Level # Hatred Skill", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2429546158", + ["text"] = "Grants Level # Hatred Skill", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3880462354", + ["text"] = "Grants Level # Herald of Ash Skill", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3846248551", + ["text"] = "Grants Level # Herald of Ice Skill", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1665492921", + ["text"] = "Grants Level # Herald of Thunder Skill", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3610535490", + ["text"] = "Grants Level # Herald of the Hive Skill", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2103009393", + ["text"] = "Grants Level # Icestorm Skill", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3279574030", + ["text"] = "Grants Level # Illusory Warp Skill", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1271338211", + ["text"] = "Grants Level # Intimidating Cry Skill", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_243713911", + ["text"] = "Grants Level # Lightning Warp Skill", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3086585712", + ["text"] = "Grants Level # Malevolence Skill", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1904419785", + ["text"] = "Grants Level # Petrification Statue Skill", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2721815210", + ["text"] = "Grants Level # Precision Skill", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3612470379", + ["text"] = "Grants Level # Pride Skill", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_105466375", + ["text"] = "Grants Level # Purity of Elements Skill", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3716281760", + ["text"] = "Grants Level # Purity of Fire Skill", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3970432307", + ["text"] = "Grants Level # Purity of Fire Skill", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_151975117", + ["text"] = "Grants Level # Purity of Ice Skill", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4193390599", + ["text"] = "Grants Level # Purity of Ice Skill", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1141249906", + ["text"] = "Grants Level # Purity of Lightning Skill", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3822878124", + ["text"] = "Grants Level # Purity of Lightning Skill", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_509572644", + ["text"] = "Grants Level # Queen's Demand Skill", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2007746338", + ["text"] = "Grants Level # Rallying Cry Skill", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_636370122", + ["text"] = "Grants Level # Ravenous Skill", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1540840", + ["text"] = "Grants Level # Scorching Ray Skill", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_979973117", + ["text"] = "Grants Level # Smite Skill", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2343098806", + ["text"] = "Grants Level # Snipe Skill", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1517357911", + ["text"] = "Grants Level # Summon Doedre's Effigy Skill Socketed Hex Curse Skills are Triggered by Doedre's Effigy when Summoned Hexes from Socketed Skills can apply 5 additional Curses", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1757548756", + ["text"] = "Grants Level # Summon Doedre's Effigy Skill Socketed Hex Curse Skills are Triggered by Doedre's Effigy when Summoned Hexes from Socketed Skills can apply 5 additional Curses 20% less Effect of Curses from Socketed Hex Skills", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3056188914", + ["text"] = "Grants Level # Summon Stone Golem Skill", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1209807941", + ["text"] = "Grants Level # Thirst for Blood Skill", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3239991868", + ["text"] = "Grants Level # Unhinge Skill", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2700934265", + ["text"] = "Grants Level # Vaal Impurity of Fire Skill", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1300125165", + ["text"] = "Grants Level # Vaal Impurity of Ice Skill", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2959369472", + ["text"] = "Grants Level # Vaal Impurity of Lightning Skill", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4122367945", + ["text"] = "Grants Level # Vengeance Skill", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2410613176", + ["text"] = "Grants Level # Vitality Skill", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1660373569", + ["text"] = "Grants Level # Vulnerability Curse Aura during Effect", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_608058997", + ["text"] = "Grants Level # Will of the Lords Skill", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1826753218", + ["text"] = "Grants Level # Wintertide Brand Skill", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1568319697", + ["text"] = "Grants Level # Wrath Skill", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2265307453", + ["text"] = "Grants Level # Wrath Skill", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3734675602", + ["text"] = "Grants Level # Zealotry Skill", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2878779644", + ["option"] = { + ["options"] = { + { + ["id"] = 1, + ["text"] = "Rhoa", + }, + { + ["id"] = 2, + ["text"] = "Ursa", + }, + { + ["id"] = 3, + ["text"] = "Snake", + }, + }, + }, + ["text"] = "Grants Level 20 Summon Bestial # Skill", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_367775264", + ["text"] = "Grants Level 20 Summon Shaper Memory Grants Level 20 Shaper's Devastation, which will be used by Shaper Memory", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2918150296", + ["text"] = "Grants Malachai's Endurance, Frenzy and Power for 6 seconds each, in sequence", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3741365813", + ["text"] = "Grants Perfect Agony during effect", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3872739249", + ["option"] = { + ["options"] = { + { + ["id"] = 1, + ["text"] = "Harbinger of the Arcane", + }, + { + ["id"] = 2, + ["text"] = "Harbinger of Time", + }, + { + ["id"] = 3, + ["text"] = "Harbinger of Focus", + }, + { + ["id"] = 4, + ["text"] = "Harbinger of Directions", + }, + { + ["id"] = 5, + ["text"] = "Harbinger of Storms", + }, + { + ["id"] = 6, + ["text"] = "Harbinger of Brutality", + }, + { + ["id"] = 7, + ["text"] = "Greater Harbinger of the Arcane", + }, + { + ["id"] = 8, + ["text"] = "Greater Harbinger of Time", + }, + { + ["id"] = 9, + ["text"] = "Greater Harbinger of Focus", + }, + { + ["id"] = 10, + ["text"] = "Greater Harbinger of Directions", + }, + { + ["id"] = 11, + ["text"] = "Greater Harbinger of Storms", + }, + { + ["id"] = 12, + ["text"] = "Greater Harbinger of Brutality", + }, + }, + }, + ["text"] = "Grants Summon Harbinger Skill", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3081454623", + ["text"] = "Grants a random Divination Buff for # seconds when Used", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3530244373", + ["text"] = "Grants all bonuses of Unallocated Notable Passive Skills in Radius", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_737702863", + ["text"] = "Grants all bonuses of Unallocated Small Passive Skills in Radius", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3486646279", + ["text"] = "Grants level # Affliction", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_913306901", + ["text"] = "Grants level # Pacify", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_88120117", + ["text"] = "Grants level # Penance Mark", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1535006826", + ["text"] = "Guards add additional Alert Level on Death", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2569717992", + ["text"] = "Guards deal #% increased Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_873692616", + ["text"] = "Guards take #% increased Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2195137717", + ["text"] = "Half of your Strength is added to your Minions", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1972294007", + ["text"] = "Harbingers have #% increased Cooldown Recovery Rate", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3511358099", + ["text"] = "Harbingers have a #% chance to be replaced by a powerful Harbinger boss", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3448022820", + ["text"] = "Harbingers in your Maps drop rarer Currency Shards", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3511358099", + ["text"] = "Harbingers in your Maps have #% chance to be replaced by a powerful Harbinger boss", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1413020589", + ["text"] = "Harbingers in your Maps have #% chance to drop an additional Stack of Currency Shards", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1972294007", + ["text"] = "Harbingers in your Maps have #% increased Cooldown Recovery Rate", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2992379436", + ["text"] = "Harvest Crops in Area have #% increased chance to contain Tier 3 Plants", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2765997141", + ["text"] = "Harvest Crops in your Maps contain only Tier 1 Plants Harvesting Crops in your Maps has a chance to upgrade the Tier of Plants of different colours", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2992379436", + ["text"] = "Harvest Crops in your Maps have #% increased chance to contain Tier 3 Plants", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1505882627", + ["text"] = "Harvest Crops in your Maps have #% increased chance to contain a Tier 4 Plant", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1234594761", + ["text"] = "Harvest Crops in your Maps have #% increased chance to grow Blue Plants", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4191390667", + ["text"] = "Harvest Crops in your Maps have #% increased chance to grow Purple Plants", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_744497885", + ["text"] = "Harvest Crops in your Maps have #% increased chance to grow Yellow Plants", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2456335054", + ["text"] = "Harvest Crops in your Maps have an extra chance to grow higher Tier Plants", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3483648190", + ["text"] = "Harvest Monsters in your Maps drop #% increased Quantity of Lifeforce", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4251234305", + ["text"] = "Harvest Monsters in your Maps grant #% increased Experience", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4128958145", + ["text"] = "Harvested Plants in Area have #% chance to spawn an additional Monster", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4128958145", + ["text"] = "Harvested Plants in your Maps have #% chance to spawn an additional Monster", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1565587169", + ["text"] = "Harvests in Area have #% chance for the unchosen Crop to not wilt", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1565587169", + ["text"] = "Harvests in your Maps have #% chance for the unchosen Crop to not wilt", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3527617737", + ["text"] = "Has # Abyssal Sockets", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4077843608", + ["text"] = "Has 1 Socket", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1827605890", + ["text"] = "Has a Crucible Passive Skill Tree Crucible Passive Skill Tree is removed if this Modifier is removed", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3031897787", + ["text"] = "Has a Crucible Passive Skill Tree with only Support Passive Skills Crucible Passive Skill Tree is removed if this Modifier is removed", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2141582975", + ["text"] = "Has a Two Handed Sword Crucible Passive Skill Tree Crucible Passive Skill Tree is removed if this Modifier is removed", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2489070122", + ["text"] = "Has an additional Implicit Mod", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2739148464", + ["text"] = "Has no Attribute Requirements", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3109875952", + ["text"] = "Has no Energy Shield", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1493091477", + ["text"] = "Has no Sockets", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_751322171", + ["text"] = "Haste has no Reservation", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3742945352", + ["text"] = "Hatred has #% increased Aura Effect", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1920370417", + ["text"] = "Hatred has #% increased Mana Reservation Efficiency", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2156140483", + ["text"] = "Hatred has #% increased Mana Reservation Efficiency", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_47734694", + ["text"] = "Hatred has #% more Reservation", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3835483564", + ["text"] = "Hatred has #% reduced Reservation", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1391583476", + ["text"] = "Hatred has no Reservation", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4068494864", + ["text"] = "Having a placed Banner does not prevent you gaining Valour", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2338032775", + ["text"] = "Heart of Flame Buff used by this Graft can take #% more Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_602627011", + ["text"] = "Heart of Flame Buff used by this Graft can take an additional # Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2057803518", + ["text"] = "Heart of Flame Buff used by this Graft grants #% increased Armour", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_14664297", + ["text"] = "Heist Chests have a #% chance to Duplicate contained Basic Currency", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2121053002", + ["text"] = "Heist Chests have a #% chance to Duplicate contained Blighted Maps and Catalysts", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_668504404", + ["text"] = "Heist Chests have a #% chance to Duplicate contained Breach Splinters", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_746798754", + ["text"] = "Heist Chests have a #% chance to Duplicate contained Catalysts", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1870262721", + ["text"] = "Heist Chests have a #% chance to Duplicate contained Delirium Orbs and Splinters", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_63302094", + ["text"] = "Heist Chests have a #% chance to Duplicate contained Divination Cards", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2175178647", + ["text"] = "Heist Chests have a #% chance to Duplicate contained Essences", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2462090973", + ["text"] = "Heist Chests have a #% chance to Duplicate contained Jewels", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_145701647", + ["text"] = "Heist Chests have a #% chance to Duplicate contained Legion Splinters", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3967122169", + ["text"] = "Heist Chests have a #% chance to Duplicate contained Map Fragments", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2885763444", + ["text"] = "Heist Chests have a #% chance to Duplicate contained Maps", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2233905349", + ["text"] = "Heist Chests have a #% chance to Duplicate contained Oils", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4216809421", + ["text"] = "Heist Chests have a #% chance to Duplicate contained Scarabs", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_590557979", + ["text"] = "Heist Chests have a #% chance to Duplicate contained Sextants", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3288016752", + ["text"] = "Heist Chests have a #% chance to contain more valuable Uniques", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_496819486", + ["text"] = "Heist Contracts found in your Maps are #% more likely to require Agility, Deception or Engineering", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3225564606", + ["text"] = "Heist Contracts found in your Maps are #% more likely to require Demolition, Counter-Thaumaturgy or Trap Disarmament", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1870692844", + ["text"] = "Heist Contracts found in your Maps are #% more likely to require Lockpicking, Brute Force or Perception", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3688987182", + ["text"] = "Heist Contracts found in your Maps are #% more likely to require level 3 Jobs", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2054538312", + ["text"] = "Heist Contracts found in your Maps are #% more likely to require level 4 Jobs", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2251697080", + ["text"] = "Heist Contracts found in your Maps are #% more likely to require level 5 Jobs", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2429444272", + ["text"] = "Heist Contracts found in your Maps are #% more likely to target High Value Targets", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1288317603", + ["text"] = "Heist Contracts found in your Maps are #% more likely to target Precious Targets", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2572910724", + ["text"] = "Herald of Agony has #% increased Buff Effect", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1133703802", + ["text"] = "Herald of Agony has #% increased Mana Reservation Efficiency", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1284151528", + ["text"] = "Herald of Agony has #% increased Mana Reservation Efficiency", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4253105373", + ["text"] = "Herald of Agony has #% reduced Reservation", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2154349925", + ["text"] = "Herald of Ash has #% increased Buff Effect", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2500442851", + ["text"] = "Herald of Ash has #% increased Mana Reservation Efficiency", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3819451758", + ["text"] = "Herald of Ash has #% increased Mana Reservation Efficiency", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2328234364", + ["text"] = "Herald of Ash has #% reduced Reservation", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1862926389", + ["text"] = "Herald of Ice has #% increased Buff Effect", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3059700363", + ["text"] = "Herald of Ice has #% increased Mana Reservation Efficiency", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3395872960", + ["text"] = "Herald of Ice has #% increased Mana Reservation Efficiency", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3537762266", + ["text"] = "Herald of Ice has #% reduced Reservation", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2126027382", + ["text"] = "Herald of Purity has #% increased Buff Effect", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1542765265", + ["text"] = "Herald of Purity has #% increased Mana Reservation Efficiency", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2189040439", + ["text"] = "Herald of Purity has #% increased Mana Reservation Efficiency", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1730304831", + ["text"] = "Herald of Purity has #% reduced Reservation", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1964607303", + ["text"] = "Herald of Thunder also creates a storm when you Shock an Enemy", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3814686091", + ["text"] = "Herald of Thunder has #% increased Buff Effect", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3817220109", + ["text"] = "Herald of Thunder has #% increased Mana Reservation Efficiency", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3959101898", + ["text"] = "Herald of Thunder has #% increased Mana Reservation Efficiency", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_966400988", + ["text"] = "Herald of Thunder has #% reduced Reservation", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_28299254", + ["text"] = "Herald of Thunder's Storms Hit Enemies with #% increased Frequency", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3849554033", + ["text"] = "Hex Master", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1731672673", + ["text"] = "Hex Reflection", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_986616727", + ["text"] = "Hexes Transfer to all Enemies within 3 metres when Hexed Enemy dies", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_32859524", + ["text"] = "Hexes applied by Socketed Curse Skills are Reflected back to you", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1462364052", + ["text"] = "Hinders nearby Enemies with #% reduced Movement Speed if used while not on Full Life", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2313899959", + ["text"] = "Hinders nearby Enemies with #% reduced Movement Speed if used while not on Full Mana", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2610093703", + ["text"] = "His Burning Message used by this Graft creates an additional geyser", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3787436548", + ["text"] = "Historic", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1415418540", + ["text"] = "Hits Overwhelm #% of Physical Damage Reduction while you have Sacrificial Zeal", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3896241826", + ["text"] = "Hits against Nearby Enemies have #% increased Critical Strike Chance", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_992435560", + ["text"] = "Hits against Nearby Enemies have 50% increased Critical Strike Chance", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_248982637", + ["text"] = "Hits against you gain #% of Physical Damage as Extra Fire Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2610583760", + ["text"] = "Hits always Shock Enemies that are on Low Life", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4126210832", + ["text"] = "Hits can't be Evaded", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2540508981", + ["text"] = "Hits from Socketed Vaal Skills ignore Enemy Monster Resistances", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1388374928", + ["text"] = "Hits from Socketed Vaal Skills ignore Enemy Physical Damage Reduction", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2289189129", + ["text"] = "Hits have #% chance to deal 50% more Area Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2839577586", + ["text"] = "Hits have #% chance to ignore Enemy Physical Damage Reduction", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4243208518", + ["text"] = "Hits have #% chance to ignore Enemy Physical Damage Reduction while you have Sacrificial Zeal", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3593401321", + ["text"] = "Hits have #% chance to treat Enemy Monster Elemental Resistance values as inverted", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_165218607", + ["text"] = "Hits have #% increased Critical Strike Chance against you", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4270096386", + ["text"] = "Hits have #% increased Critical Strike Chance against you", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_89314980", + ["text"] = "Hits ignore Enemy Monster Chaos Resistance if all Equipped Items are Elder Items", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4234677275", + ["text"] = "Hits ignore Enemy Monster Chaos Resistance if all Equipped Items are Shaper Items", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4040152475", + ["text"] = "Hits ignore Enemy Monster Fire Resistance while you are Ignited", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3035931505", + ["text"] = "Hits ignore Enemy Physical Damage Reduction if you've Blocked in the past 20 seconds", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_59547568", + ["text"] = "Hits with Melee Movement Skills have #% chance to Fortify", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2355907154", + ["text"] = "Hits with Prismatic Skills always Sap", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2324756482", + ["text"] = "Hits with Prismatic Skills always Scorch", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2034210174", + ["text"] = "Hits with Prismatic Skills always inflict Brittle", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2071306253", + ["text"] = "Hits with this Weapon Freeze Enemies as though dealing #% more Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3579673398", + ["text"] = "Hits with this Weapon Overwhelm #% Physical Damage Reduction", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1386792919", + ["text"] = "Hits with this Weapon Shock Enemies as though dealing #% more Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2451774989", + ["text"] = "Hits with this Weapon always Ignite, Freeze, and Shock", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_196313911", + ["text"] = "Hits with this Weapon deal #% increased Damage to Frozen Enemies", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3095345438", + ["text"] = "Hits with this Weapon deal #% increased Damage to Ignited Enemies", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1470894892", + ["text"] = "Hits with this Weapon deal #% increased Damage to Shocked Enemies", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1023968711", + ["text"] = "Hits with this Weapon gain #% of Physical Damage as Extra Cold or Lightning Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1907260000", + ["text"] = "Hits with this Weapon have #% chance to ignore Enemy Physical Damage Reduction", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1872107885", + ["text"] = "Hits with this Weapon have +#% to Critical Strike Multiplier per Enemy Power", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2558253923", + ["text"] = "Hits with this Weapon have Culling Strike against Bleeding Enemies", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3959337123", + ["text"] = "Hollow Palm Technique", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4286661423", + ["text"] = "Huck accompanies you on opening the first Smuggler's Cache in each of your Maps", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4151744887", + ["text"] = "If no Notables Allocated in Radius, When you Kill a Rare monster, you gain # of its Modifiers for 20 seconds", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_199329214", + ["text"] = "If there is fewer than 1 monster remaining in your Maps, Final Map Bosses are Empowered by Wildwood Wisps", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1945607273", + ["text"] = "If this Area contains any Unique Monsters, one is Possessed", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089969970", + ["text"] = "If you Consumed a corpse Recently, you and nearby Allies Regenerate #% of Life per second", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_176085824", + ["text"] = "If you have Blocked Recently, you and nearby Allies Regenerate #% of Life per second", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1453771408", + ["text"] = "If you've Attacked Recently, you and nearby Allies have +#% Chance to Block Attack Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1952992278", + ["text"] = "If you've Cast a Spell Recently, you and nearby Allies have +#% Chance to Block Spell Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1464115829", + ["text"] = "If you've Warcried Recently, you and nearby allies have #% increased Attack, Cast and Movement Speed", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1619549198", + ["text"] = "Ignited Enemies Burn #% slower", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3173052379", + ["text"] = "Ignited Enemies Killed by your Hits are destroyed", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_321971518", + ["text"] = "Ignited Enemies you Kill Explode, dealing #% of their Life as Fire Damage which cannot Ignite", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3165905801", + ["text"] = "Ignites inflicted with this Weapon deal #% more Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1049974046", + ["text"] = "Ignites you cause are reflected back to you", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2443492284", + ["text"] = "Ignites you inflict deal Damage #% faster", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3052040294", + ["text"] = "Ignites you inflict during Effect spread to other Enemies within # metre", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2011785027", + ["text"] = "Ignites you inflict spread to other Enemies within # metre", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1420236871", + ["text"] = "Ignites you inflict with Attacks deal Damage #% faster", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1010930352", + ["text"] = "Ignites you inflict with this weapon spread to other Enemies within # metre", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2852307173", + ["text"] = "Ignore Attribute Requirements of Gems Socketed in Blue Sockets", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3850932596", + ["text"] = "Ignore Attribute Requirements of Socketed Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1311723478", + ["text"] = "Ignore all Movement Penalties from Armour", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3868073741", + ["text"] = "Imbalanced Guard", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2413219096", + ["text"] = "Immortal Ambition", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1856204587", + ["text"] = "Immortal Syndicate Leaders in your Maps drop an additional Veiled Item", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3615401038", + ["text"] = "Immortal Syndicate Members Executed in your Maps have #% chance to gain an additional Rank", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1259656520", + ["text"] = "Immortal Syndicate Members in your Maps are #% more likely to offer to Bargain for Items", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1820067107", + ["text"] = "Immortal Syndicate Members in your Maps are #% more likely to be accompanied by their Leader", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_574706723", + ["text"] = "Immortal Syndicate Members in your Maps drop #% more Items when Bargained with for Items", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4122946258", + ["text"] = "Immortal Syndicate Members in your Maps have #% chance to drop an additional Veiled Item", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3467824501", + ["text"] = "Immortal Syndicate Members in your Maps have #% chance to grant double Experience", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2181411965", + ["text"] = "Immortal Syndicate Members in your Maps have #% increased chance to be accompanied by reinforcements", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3705740723", + ["text"] = "Immune to Burning Ground, Shocked Ground and Chilled Ground", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3510243006", + ["text"] = "Immune to Chill", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2773026887", + ["text"] = "Immune to Curses if you've cast Despair in the past 10 seconds", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_534844170", + ["text"] = "Immune to Curses while you have at least # Rage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2526304488", + ["text"] = "Immune to Elemental Ailments while Bleeding", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1065479853", + ["text"] = "Immune to Elemental Ailments while affected by Glorious Madness", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2921954092", + ["text"] = "Immune to Exposure if you've cast Elemental Weakness in the past 10 seconds", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1512695141", + ["text"] = "Immune to Freeze and Chill while Ignited", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2720072724", + ["text"] = "Immune to Freeze while affected by Purity of Ice", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_371612541", + ["text"] = "Immune to Ignite while affected by Purity of Fire", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2713909980", + ["text"] = "Immune to Reflected Damage if you've cast Punishment in the past 10 seconds", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_281949611", + ["text"] = "Immune to Shock while affected by Purity of Lightning", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3965637181", + ["text"] = "Immunity to Bleeding and Corrupted Blood during Effect", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3838369929", + ["text"] = "Immunity to Freeze and Chill during Effect", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_803730540", + ["text"] = "Immunity to Freeze, Chill, Curses and Stuns during Effect", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_658443507", + ["text"] = "Immunity to Ignite during Effect Removes Burning on use", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1349296959", + ["text"] = "Immunity to Poison during Effect", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_589991690", + ["text"] = "Immunity to Shock during Effect", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3609854472", + ["text"] = "Impale Damage dealt to Enemies Impaled by you Overwhelms #% Physical Damage Reduction", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1011863394", + ["text"] = "Impales you inflict last # additional Hits while using Pride", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3425951133", + ["text"] = "Impales you inflict last 1 additional Hit", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4249200326", + ["text"] = "Implicit Modifier magnitudes are doubled", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3910859570", + ["text"] = "Implicit Modifier magnitudes are tripled", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1445968994", + ["text"] = "Imprisoned Monsters have #% chance to drop an additional Rare Item with an Essence Modifier", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_712621072", + ["text"] = "Imprisoned Monsters have #% reduced Action Speed", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_679682964", + ["text"] = "Imprisoned Monsters have an additional Essence", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3011076420", + ["text"] = "Imprisoned Monsters in Area have #% chance to have 3 additional Essences", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1445968994", + ["text"] = "Imprisoned Monsters in your Maps have #% chance to drop an additional Rare Item with an Essence Modifier", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3011076420", + ["text"] = "Imprisoned Monsters in your Maps have #% chance to have 3 additional Essences", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2874244045", + ["text"] = "Imprisoned Monsters in your Maps have #% chance to have an additional Essence", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2175157402", + ["text"] = "Imprisoned Monsters in your Maps have at least 1 Essence at the highest possible tier", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4003821677", + ["text"] = "Imprisoned Monsters take #% increased Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3520223758", + ["text"] = "Increases and Reductions to Cast Speed also Apply to Trap Throwing Speed", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4126447694", + ["text"] = "Increases and Reductions to Cast Speed apply to Attack Speed", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2628865242", + ["text"] = "Increases and Reductions to Chaos Damage also apply to Effect of Auras from Chaos Skills at #% of their value, up to a maximum of 150%", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_935686778", + ["text"] = "Increases and Reductions to Cold Damage also apply to Effect of Auras from Cold Skills at #% of their value, up to a maximum of 150%", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3772485866", + ["text"] = "Increases and Reductions to Cold Damage in Radius are Transformed to apply to Physical Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1213832501", + ["text"] = "Increases and Reductions to Effect of Flasks applied to you also applies to Effect of Arcane Surge on you", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2605119037", + ["text"] = "Increases and Reductions to Energy Shield in Radius are Transformed to apply to Armour at 200% of their value", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2548156334", + ["text"] = "Increases and Reductions to Evasion Rating in Radius are Transformed to apply to Armour", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1320057994", + ["text"] = "Increases and Reductions to Fire Damage also apply to Effect of Auras from Fire Skills at #% of their value, up to a maximum of 150%", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3194864913", + ["text"] = "Increases and Reductions to Life in Radius are Transformed to apply to Energy Shield", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2479374428", + ["text"] = "Increases and Reductions to Life in Radius are Transformed to apply to Mana at 200% of their value", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_411986876", + ["text"] = "Increases and Reductions to Light Radius also apply to Accuracy", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1138742368", + ["text"] = "Increases and Reductions to Light Radius also apply to Area of Effect at #% of their value", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3519807287", + ["text"] = "Increases and Reductions to Light Radius also apply to Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_232010308", + ["text"] = "Increases and Reductions to Lightning Damage also apply to Effect of Auras from Lightning Skills at #% of their value, up to a maximum of 150%", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4100175081", + ["text"] = "Increases and Reductions to Maximum Energy Shield instead apply to Ward", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2293111154", + ["text"] = "Increases and Reductions to Minion Attack Speed also affect you", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2284852387", + ["text"] = "Increases and Reductions to Minion Cast Speed also affect you", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1631928082", + ["text"] = "Increases and Reductions to Minion Damage also affect you", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1433144735", + ["text"] = "Increases and Reductions to Minion Damage also affect you at 150% of their value", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3942379359", + ["text"] = "Increases and Reductions to Minion Maximum Life also apply to you at #% of their value", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1092506510", + ["text"] = "Increases and Reductions to Physical Damage also apply to Effect of Auras from Physical Skills at #% of their value, up to a maximum of 150%", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_738100799", + ["text"] = "Increases and Reductions to Physical Damage in Radius are Transformed to apply to Cold Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4171078509", + ["text"] = "Increases and Reductions to Spell Damage also apply to Attack Damage with Retaliation Skills", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3811649872", + ["text"] = "Increases and Reductions to Spell Damage also apply to Attacks", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_185598681", + ["text"] = "Increases and Reductions to Spell Damage also apply to Attacks at 150% of their value", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3446950357", + ["text"] = "Increases and Reductions to other Damage Types in Radius are Transformed to apply to Fire Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_103999915", + ["text"] = "Increases to Cast Speed from Arcane Surge also applies to Movement Speed", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_617548179", + ["text"] = "Incursion Architects have #% chance to be Possessed by a Tormented Spirit", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3349136454", + ["text"] = "Incursion Architects have #% chance to drop an additional Rare Incursion Item", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3349136454", + ["text"] = "Incursion Architects in your Maps have #% chance to drop an additional Rare Incursion Item", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3396926649", + ["text"] = "Incursion Architects in your Maps have #% chance to grant double Experience", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1419687153", + ["text"] = "Incursions in your Maps contain Cursed Treasures", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1822007489", + ["text"] = "Incursions in your Maps contain a Vaal Flesh Merchant", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_787321478", + ["text"] = "Incursions in your Maps have #% chance for all Monsters to be at least Magic", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2490898366", + ["text"] = "Incursions in your Maps have #% increased Pack Size", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_773846741", + ["text"] = "Inflict Decay on Enemies you Curse with Hex Skills, dealing # Chaos Damage per Second for 8 Seconds", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3403551644", + ["text"] = "Inflict Fire Exposure on Hit against Enemies with 5 Cinderflame, applying #% to Fire Resistance", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3259812992", + ["text"] = "Inflict Fire Exposure on Hit if you've cast Flammability in the past 10 seconds", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3933226405", + ["text"] = "Inflict Fire, Cold and Lightning Exposure on nearby Enemies when used", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3087629547", + ["text"] = "Inflict Hallowing Flame on Hit while on Consecrated Ground", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3339663313", + ["text"] = "Inflict Lightning Exposure on Hit if you've cast Conductivity in the past 10 seconds", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1904031052", + ["text"] = "Inflict Withered for 2 seconds on Hit if you've cast Despair in the past 10 seconds", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2087599022", + ["text"] = "Inflict an additional Poison on the same Target when you inflict Poison with this weapon", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1345113611", + ["text"] = "Inflict non-Damaging Ailments as though dealing #% more Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1330482101", + ["text"] = "Inflicts Mana Burn on you when you Hit an Enemy with a Melee Weapon", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2918129907", + ["text"] = "Inflicts a random Hex on you when your Totems die", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3931293247", + ["text"] = "Influenced Monsters in your Maps have #% chance to drop an additional Basic Currency Item", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3230138360", + ["text"] = "Influenced Monsters in your Maps have #% chance to drop an additional Gem with Quality", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4223033382", + ["text"] = "Influenced Monsters in your Maps have #% chance to drop an additional Rare Armour Item", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2391424983", + ["text"] = "Influenced Monsters in your Maps have #% chance to drop an additional Rare Jewellery Item", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_914487959", + ["text"] = "Influenced Monsters in your Maps have #% chance to drop an additional Rare Weapon", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2842935061", + ["text"] = "Inherent Rage Loss starts 1 second later", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3645269560", + ["text"] = "Inherent loss of Rage is #% faster", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_354080151", + ["text"] = "Inner Conviction", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2412871991", + ["text"] = "Inscribed Ultimatums found in your Maps have #% increased chance to reward Currency Items", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2367226239", + ["text"] = "Inscribed Ultimatums found in your Maps have #% increased chance to reward Divination Cards", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2112979059", + ["text"] = "Inscribed Ultimatums found in your Maps have #% increased chance to reward Unique Items", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1526933524", + ["text"] = "Instant Recovery", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3812107348", + ["text"] = "Instant Recovery when on Low Life", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2564976564", + ["text"] = "Insufficient Mana doesn't prevent your Bow Attacks", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1852317988", + ["text"] = "Insufficient Mana doesn't prevent your Melee Attacks", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1608425196", + ["text"] = "Intelligence from Passives in Radius is Transformed to Dexterity", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1285587221", + ["text"] = "Intelligence from Passives in Radius is Transformed to Strength", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2546599258", + ["text"] = "Intelligence provides no inherent bonus to Maximum Mana", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_91505809", + ["text"] = "Intimidate Enemies on Hit if you've cast Punishment in the past 10 seconds", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_442509523", + ["text"] = "Invasion Bosses are Duplicated", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3209835461", + ["text"] = "Invasion Bosses are guarded by a Magic Pack", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_899928542", + ["text"] = "Invasion Bosses drop an additional Vaal Orb", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1984366275", + ["text"] = "Invasion Bosses have #% more Quantity and Rarity of dropped Items", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_573347393", + ["text"] = "Iron Grip", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_326965591", + ["text"] = "Iron Reflexes", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_187998220", + ["text"] = "Iron Reflexes while stationary", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4092697134", + ["text"] = "Iron Will", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3909846940", + ["text"] = "Item drops on Death if Equipped by an Animated Guardian", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_752930724", + ["text"] = "Items and Gems have #% increased Attribute Requirements", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2004028089", + ["text"] = "Items dropped by Invasion Bosses are fully Linked", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_444117960", + ["text"] = "Items dropped by Invasion Bosses have an additional Socket", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2736953654", + ["text"] = "Items dropped by Rare Monsters have #% chance to be Corrupted", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_663447087", + ["text"] = "Items dropped by Rogue Exiles are Corrupted", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2047177714", + ["text"] = "Items dropped by Rogue Exiles are Mirrored", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_898094766", + ["text"] = "Items dropped by Rogue Exiles are fully Linked", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1852765051", + ["text"] = "Items dropped by Unique Monsters have #% chance to be Corrupted", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1986702303", + ["text"] = "Items found in your Conqueror Maps have #% increased chance to be Influenced", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1407304212", + ["text"] = "Items found in your Corrupted Maps have #% chance to be Corrupted", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_728267040", + ["text"] = "Items found in your Maps have #% chance to be Corrupted", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2356069535", + ["text"] = "Items found in your Maps have #% chance to be fully Linked", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3060454102", + ["text"] = "Items found in your Maps have #% chance to have a White Socket", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4092986415", + ["text"] = "Items found in your Maps have #% chance to have the maximum number of Sockets", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_10358266", + ["text"] = "Jeweller's Orbs found in your Maps have #% chance to drop as a full stack", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1265046157", + ["text"] = "Jolt granted by this Graft grants #% increased Critical Strike Chance", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1945948244", + ["text"] = "Jolt granted by this Graft grants #% increased Movement Speed", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3853303544", + ["text"] = "Jolt granted by this Graft grants +#% increased Damage taken", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3955143601", + ["text"] = "Jolt granted by this Graft grants +#% more Maximum Attack Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3905327148", + ["text"] = "Jolt granted by this Graft grants +#% to Critical Strike Multiplier", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2054162825", + ["text"] = "Karui Stone Hook", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1211779989", + ["text"] = "Keystone Passive Skills in Radius can be Allocated without being connected to your tree Passage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3768948090", + ["text"] = "Kill Enemies that have 15% or lower Life on Hit if The Searing Exarch is dominant", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1346625818", + ["text"] = "Killing non-resident Architects in your Maps has #% chance to add an additional Upgrade Tier to the surviving Architect's Room", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3052174721", + ["text"] = "Killing resident Architects in your Maps adds their Upgrade Tier to the surviving Architect's Room", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3271016161", + ["text"] = "Kills grant an additional Vaal Soul if you have Rampaged Recently", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_281201999", + ["text"] = "Knockback direction is reversed", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3591397930", + ["text"] = "Knocks Back Enemies in an Area when you use a Flask", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_340272125", + ["text"] = "Labyrinth Trials in your Maps have #% chance to award an Improved Offering to the Goddess", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3986662538", + ["text"] = "Lanes of Blight Encounters have #% chance for an additional Reward Chest", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3986662538", + ["text"] = "Lanes of Blight Encounters in your Maps have #% chance for an additional Reward Chest", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_96869632", + ["text"] = "Leech #% of Expected Ignite Damage as Life when you Ignite an Enemy during Effect", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3346092312", + ["text"] = "Leech Energy Shield instead of Life", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_625885138", + ["text"] = "Left Ring Slot: Your Chilling Skitterbot's Aura applies Socketed Hex Curse instead", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2533512212", + ["text"] = "Left Ring slot: Cover Enemies in Ash for # seconds when you Ignite them", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_195090426", + ["text"] = "Left ring slot: #% increased Mana Regeneration Rate", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3991837781", + ["text"] = "Left ring slot: #% of Elemental Hit Damage from you and your Minions cannot be Reflected", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_674502195", + ["text"] = "Left ring slot: +# to Evasion Rating", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1497601437", + ["text"] = "Left ring slot: +# to maximum Energy Shield", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2437476305", + ["text"] = "Left ring slot: Projectiles from Spells Fork", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3647242059", + ["text"] = "Left ring slot: Projectiles from Spells cannot Chain", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3241234878", + ["text"] = "Left ring slot: Regenerate # Mana per Second", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_597522922", + ["text"] = "Left ring slot: Skills supported by Unleash have +# to maximum number of Seals", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4263540840", + ["text"] = "Left ring slot: You cannot Recharge or Regenerate Energy Shield", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2388347909", + ["text"] = "Leftmost # Magic Utility Flask constantly applies its Flask Effect to you", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1088328219", + ["text"] = "Legion Chests in your Maps contain an additional Random Reward", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_793510540", + ["text"] = "Legion Chests released from Stasis in your Maps release other Monsters and Chests with #% increased Range", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_480028751", + ["text"] = "Legion Encounters contain # additional Sergeant", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_113049735", + ["text"] = "Legion Encounters in your Maps are #% more likely to include a General", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_480028751", + ["text"] = "Legion Encounters in your Maps contain # additional Sergeant", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_699122342", + ["text"] = "Legion Encounters in your Maps have #% increased Duration", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4094461744", + ["text"] = "Legion Encounters in your Maps have #% increased chance to include a Karui army", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1611826374", + ["text"] = "Legion Encounters in your Maps have #% increased chance to include a Maraketh army", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_573511501", + ["text"] = "Legion Encounters in your Maps have #% increased chance to include a Templar army", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3218477736", + ["text"] = "Legion Encounters in your Maps have #% increased chance to include a Vaal army", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3825355878", + ["text"] = "Legion Encounters in your Maps have #% increased chance to include an Eternal Empire army", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_222333372", + ["text"] = "Legion Encounters in your Maps have no Timer Breaking out Monsters and Chests that are in stasis progressively causes a Schism Legion Encounters in your Maps begin once the Schism has occurred", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2347014488", + ["text"] = "Legion Encounters with a General in Area have both Generals", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2347014488", + ["text"] = "Legion Encounters with a General in your Maps have both Generals", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2416852492", + ["text"] = "Legion Monsters in Area have a Volatile Core", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4183582609", + ["text"] = "Legion Monsters in your Maps have #% increased Pack Size", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2596927667", + ["text"] = "Legion Monsters in your Maps take #% increased Damage while in Stasis", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_611792282", + ["text"] = "Legion Monsters in your Maps which have Rewards have #% chance to gain two additional Rewards, and if not have #% chance to gain one additional Reward", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_958835998", + ["text"] = "Legion Sergeants in your Maps have #% additional chance to have Rewards", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1678358883", + ["text"] = "Lethe Shade", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2592686757", + ["text"] = "Life Flasks gain # Charge every 3 seconds", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1200347828", + ["text"] = "Life Flasks used while on Low Life apply Recovery Instantly", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2108380422", + ["text"] = "Life Leech effects are not removed when Unreserved Life is Filled", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_990335387", + ["text"] = "Life Leech effects are not removed when Unreserved Life is Filled Life Leech effects Recover Energy Shield instead while on Full Life", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_272906215", + ["text"] = "Life Leech from Exerted Attacks is instant", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1765389199", + ["text"] = "Life Leech from Hits with this Weapon is instant", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_74462130", + ["text"] = "Life Recovery from Flasks also applies to Energy Shield during Effect", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3947672598", + ["text"] = "Life Recovery from Regeneration is not applied", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1102362593", + ["text"] = "Life and Mana Leech are instant during effect", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3389184522", + ["text"] = "Life and Mana Leech from Critical Strikes are instant", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1777740627", + ["text"] = "Life that would be lost by taking Damage is instead Reserved until you take no Damage to Life for # second", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2591612078", + ["text"] = "Lifeforce dropped by Harvest Monsters in your Maps has #% chance to be Duplicated", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2175879462", + ["text"] = "Lifeforce found in your Maps is granted as a random Crop instead at #% of the value", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3836017971", + ["text"] = "Light Radius is based on Energy Shield instead of Life", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4224965099", + ["text"] = "Lightning Damage of Enemies Hitting you is Lucky", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1327356547", + ["text"] = "Lightning Damage with Hits is Lucky if you've Blocked Spell Damage Recently", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1430928642", + ["text"] = "Lightning Damage with Non-Critical Strikes is Lucky", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3515979920", + ["text"] = "Lightning Resistance cannot be Penetrated", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3999959974", + ["text"] = "Lightning Resistance does not affect Lightning Damage taken", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1942151132", + ["text"] = "Lightning Resistance is #%", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_949718413", + ["text"] = "Lightning Skills have #% chance to Poison on Hit", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1323344255", + ["text"] = "Link Skills can target Damageable Minions", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2597985144", + ["text"] = "Link Skills have #% increased Cast Speed", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1214762172", + ["text"] = "Link Skills have #% increased Skill Effect Duration", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3251211004", + ["text"] = "Linked Targets Cannot Die for # seconds after you Die", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3678739763", + ["text"] = "Linked Targets always count as in range of Non-Curse Auras from your Skills Non-Curse Auras from your Skills only apply to you and Linked Targets", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1624503220", + ["text"] = "Living Weapons", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1239251576", + ["text"] = "Lockdown occurs immediately when Alert Level is full", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_155220198", + ["text"] = "Lone Messenger", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_771127912", + ["text"] = "Lose # Life per second", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2589042711", + ["text"] = "Lose # Mana per Second", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_838272676", + ["text"] = "Lose # Mana per second", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2924302129", + ["text"] = "Lose # Mana when you use a Skill", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1124360291", + ["text"] = "Lose # Rage per second", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1383458163", + ["text"] = "Lose #% Life and Energy Shield per Second per Minion", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1699499433", + ["text"] = "Lose #% of Energy Shield on Kill", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_761102773", + ["text"] = "Lose #% of Energy Shield per second", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1229725509", + ["text"] = "Lose #% of Energy Shield when you deal a Critical Strike", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_751813227", + ["text"] = "Lose #% of Life on Kill", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1661347488", + ["text"] = "Lose #% of Life per second", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2325592140", + ["text"] = "Lose #% of Life per second if you have been Hit Recently", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1862591837", + ["text"] = "Lose #% of Life when you deal a Critical Strike", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2936435999", + ["text"] = "Lose #% of Mana per Second", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_113147867", + ["text"] = "Lose #% of Mana when you use an Attack Skill", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_138579627", + ["text"] = "Lose Adrenaline when you cease to be Flame-Touched", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3530865840", + ["text"] = "Lose a Power Charge each second if you have not Detonated Mines Recently", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3577316952", + ["text"] = "Lose all Eaten Souls when you use a Flask", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2881426199", + ["text"] = "Lose all Endurance Charges when Rampage ends", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1306791873", + ["text"] = "Lose all Fragile Regrowth when Hit", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2522975315", + ["text"] = "Lose all Frenzy Charges on reaching Maximum Frenzy Charges to make the next Bow Attack you perform fire that many additional Arrows", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_31415336", + ["text"] = "Lose all Frenzy, Endurance, and Power Charges when you Move", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2735889191", + ["text"] = "Lose all Power Charges on Critical Strike", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2135899247", + ["text"] = "Lose all Power Charges on reaching Maximum Power Charges", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3898799092", + ["text"] = "Lose all Power Charges when you Block", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1331907976", + ["text"] = "Lose an Eaten Soul every second while no Unique Enemy is in your Presence", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_738821856", + ["text"] = "Lose no Experience when you die because a Linked target died", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_776020689", + ["text"] = "Loses all Charges when you enter a new area", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4180925106", + ["text"] = "Magebane", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3879236300", + ["text"] = "Magic Monsters are Maimed", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_481710678", + ["text"] = "Magic Monsters in your Maps have #% chance to drop an additional Basic Currency Item", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2731946686", + ["text"] = "Magic Monsters in your Maps have #% chance to drop an additional Gem with Quality", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3457217894", + ["text"] = "Magic Monsters in your Maps have #% chance to drop an additional Rare Armour Item", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4265306219", + ["text"] = "Magic Monsters in your Maps have #% chance to drop an additional Rare Jewellery Item", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1818703431", + ["text"] = "Magic Monsters in your Maps have #% chance to drop an additional Rare Weapon", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3056215807", + ["text"] = "Magic Monsters take #% increased Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_344389721", + ["text"] = "Magic Utility Flask Effects cannot be removed", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2564857472", + ["text"] = "Magic Utility Flasks applied to you have #% increased Effect", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3986704288", + ["text"] = "Magic Utility Flasks cannot be Used", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4175197580", + ["text"] = "Malevolence has #% increased Aura Effect", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3266567165", + ["text"] = "Malevolence has #% increased Mana Reservation Efficiency", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3383226338", + ["text"] = "Malevolence has #% increased Mana Reservation Efficiency", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4120821275", + ["text"] = "Malevolence has #% reduced Reservation", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_585622486", + ["text"] = "Malevolence has no Reservation", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1548467016", + ["text"] = "Mana Flask Effects are not removed when Unreserved Mana is Filled Mana Flask Effects do not Queue", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1193925814", + ["text"] = "Mana Flasks gain # Charge every 3 seconds", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1839832419", + ["text"] = "Mana Flasks used while on Low Mana apply Recovery Instantly", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4204954479", + ["text"] = "Mana Recovery occurs instantly at the end of Effect", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_262773569", + ["text"] = "Mana Reservation of Herald Skills is always 45%", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3178534707", + ["text"] = "Mana is increased by 50% of Overcapped Lightning Resistance", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1820083363", + ["text"] = "Manifest Dancing Dervish also manifests a copy of Dancing Dervish", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1414945937", + ["text"] = "Manifested Dancing Dervishes die when Rampage ends", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_398335579", + ["text"] = "Manifested Dancing Dervishes disables both weapon slots", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4150353141", + ["text"] = "Map Boss is accompanied by a Synthesis Boss", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_124877078", + ["text"] = "Map Bosses deal #% increased Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_472880157", + ["text"] = "Map Bosses have #% chance to be accompanied by two Rogue Exile Bodyguards", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3408085256", + ["text"] = "Map Bosses have #% chance to be accompanied by two Rogue Exiles", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_906368454", + ["text"] = "Map Bosses have #% chance to be surrounded by Tormented Spirits", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2657125649", + ["text"] = "Map Bosses have #% chance to drop an additional Item with random Influence", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_364425699", + ["text"] = "Map Bosses have #% chance to drop an additional Silver Coin", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1959158336", + ["text"] = "Map Bosses have #% increased Life", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1554844434", + ["text"] = "Map Bosses have #% increased chance to drop a Conqueror Map", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4140427516", + ["text"] = "Map Device has #% chance not to consume Scarabs", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2132807290", + ["text"] = "Map has # additional Synthesis Global Modifier", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4003278965", + ["text"] = "Map has # additional random Modifier", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_23537505", + ["text"] = "Map has # additional random Prefix", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1153966848", + ["text"] = "Map has # additional random Suffix", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_441900529", + ["text"] = "Maps found cannot be your Favoured Maps", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3527275979", + ["text"] = "Maps found have #% more chance to be Favoured Maps", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1482478377", + ["text"] = "Maps found in your Maps have #% chance to have layers of Delirium", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1363247141", + ["text"] = "Maps found in your Maps have +#% chance to have a special Implicit Modifier for each different Map you have Favoured", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089738202", + ["text"] = "Maps from Strongboxes in your Maps are Duplicated", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1750700932", + ["text"] = "Maps have a #% chance to drop as a random Unique Map instead in your Maps", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_812317919", + ["text"] = "Maps modified in this way have 1-3 additional random Map Modifiers", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4189061307", + ["text"] = "Mark Skills have #% increased Cast Speed", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3606985138", + ["text"] = "Maven releases all Bosses at once", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3153125103", + ["text"] = "Maximum # Eaten Soul", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1173537953", + ["text"] = "Maximum # Fragile Regrowth", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3469876297", + ["text"] = "Maximum # Remembrance", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4154520427", + ["text"] = "Maximum # Spectral Totems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_725696472", + ["text"] = "Maximum 1 Buff from an Active Ancestor Totem at a time", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2494027711", + ["text"] = "Maximum Absorption Charges is equal to Maximum Power Charges", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2817027713", + ["text"] = "Maximum Affliction Charges is equal to Maximum Frenzy Charges", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3710150470", + ["text"] = "Maximum Brutal Charges is equal to Maximum Endurance Charges", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1463929958", + ["text"] = "Maximum Critical Strike Chance is 50%", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2957871460", + ["text"] = "Maximum Endurance, Frenzy and Power Charges is 0", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1301612627", + ["text"] = "Maximum Energy Shield is increased by Chaos Resistance", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_275498888", + ["text"] = "Maximum Quality is #%", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_73569783", + ["text"] = "Maximum Rage is Halved", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4113811490", + ["text"] = "Maximum Recovery per Energy Shield Leech is Doubled", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_737980235", + ["text"] = "Maximum number of Animated Weapons is Doubled", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_56473917|1", + ["text"] = "Maximum number of Animated Weapons is Doubled Cannot have Minions other than Animated Weapons", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_56473917|16", + ["text"] = "Maximum number of Holy Armaments is Doubled Cannot have Minions other than Holy Armaments", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_56473917|15", + ["text"] = "Maximum number of Living Lightning is Doubled Cannot have Minions other than Living Lightning", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2521230387", + ["text"] = "Maximum number of Players in Area is one", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_56473917|4", + ["text"] = "Maximum number of Raised Spectres is Doubled Cannot have Minions other than Raised Spectres", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_56473917|5", + ["text"] = "Maximum number of Raised Spiders is Doubled Cannot have Minions other than Raised Spiders", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_56473917|6", + ["text"] = "Maximum number of Raised Zombies is Doubled Cannot have Minions other than Raised Zombies", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_56473917|8", + ["text"] = "Maximum number of Sentinels of Absolution is Doubled Cannot have Minions other than Sentinels of Absolution", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_56473917|9", + ["text"] = "Maximum number of Sentinels of Dominance is Doubled Cannot have Minions other than Sentinels of Dominance", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_56473917|10", + ["text"] = "Maximum number of Sentinels of Purity is Doubled Cannot have Minions other than Sentinels of Purity", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_56473917|2", + ["text"] = "Maximum number of Summoned Golems is Doubled Cannot have Minions other than Summoned Golems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_56473917|11", + ["text"] = "Maximum number of Summoned Holy Relics is Doubled Cannot have Minions other than Summoned Holy Relics", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_56473917|12", + ["text"] = "Maximum number of Summoned Phantasms is Doubled Cannot have Minions other than Summoned Phantasms", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_56473917|3", + ["text"] = "Maximum number of Summoned Raging Spirits is Doubled Cannot have Minions other than Summoned Raging Spirits", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_56473917|7", + ["text"] = "Maximum number of Summoned Reapers is Doubled Cannot have Minions other than Summoned Reapers", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_56473917|13", + ["text"] = "Maximum number of Summoned Skeletons is Doubled Cannot have Minions other than Summoned Skeletons", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_56473917|14", + ["text"] = "Maximum number of Summoned Spectral Wolves is Doubled Cannot have Minions other than Summoned Spectral Wolves", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3962823719", + ["text"] = "Melee Attacks Knock Enemies Back on Hit", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_33065250", + ["text"] = "Melee Attacks have #% chance to Poison on Hit", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1285056331", + ["text"] = "Melee Attacks have #% chance to cause Bleeding", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4154636328", + ["text"] = "Melee Attacks have +#% to Critical Strike Chance against Excommunicated Enemies", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1166417447", + ["text"] = "Melee Hits Fortify", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2239810203", + ["text"] = "Melee Hits Fortify if 6 Warlord Items are Equipped", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2889807051", + ["text"] = "Melee Hits count as Rampage Kills Rampage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3049891689", + ["text"] = "Melee Hits from Strike Skills Fortify", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3206381437", + ["text"] = "Melee Hits which Stun have #% chance to Fortify", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1737583880", + ["text"] = "Melee Hits with Strike Skills always Knockback", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3675300253", + ["text"] = "Melee Strike Skills deal Splash Damage to surrounding targets", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1039536123", + ["text"] = "Melee Strike Skills deal Splash Damage to surrounding targets, with #% reduced Area of Effect", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_802532569", + ["text"] = "Melee Weapon Attacks have Culling Strike", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2499808413", + ["text"] = "Melee Weapon Damage Penetrates #% Elemental Resistances", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3685214225", + ["text"] = "Melee Weapon Damage Penetrates #% Elemental Resistances per Mana Burn, up to a maximum of 200%", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1103333624", + ["text"] = "Melee Weapon Hits Inflict # Withered Debuffs for 2 seconds", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1676663186", + ["text"] = "Melee Weapon Hits have #% chance to ignore Enemy Physical Damage Reduction", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_854030602", + ["text"] = "Melee and Melee Weapon Type modifiers in Radius are Transformed to Bow Modifiers", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3970396418", + ["text"] = "Mercury Footprints", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3265124719", + ["text"] = "Metamorph Samples dropped in your Maps have #% increased chance to have a Reward", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_373964381", + ["text"] = "Mind Over Matter", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_325437053", + ["text"] = "Mines can be Detonated an additional time", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3085465082", + ["text"] = "Mines have #% increased Detonation Speed", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3410776118", + ["text"] = "Minimum Endurance Charges equal to Maximum while stationary Minimum Frenzy Charges equal to Maximum while stationary Minimum Power Charges equal to Maximum while stationary", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_433293234", + ["text"] = "Minion Instability", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1586164348", + ["text"] = "Minion Life is increased by their Overcapped Fire Resistance", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_433536969", + ["text"] = "Minions Convert #% of their Maximum Life to Maximum Energy Shield per 1% Chaos Resistance they have", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2770782267", + ["text"] = "Minions Leech #% of Damage as Life", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_548721233", + ["text"] = "Minions Leech #% of Damage as Life against Poisoned Enemies", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2809815072", + ["text"] = "Minions Leech #% of Elemental Damage as Energy Shield", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2602664175", + ["text"] = "Minions Recover #% of Life on Killing a Poisoned Enemy", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_676967140", + ["text"] = "Minions Recover #% of their Life when they Block", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3500359417", + ["text"] = "Minions Recover #% of their Life when you Focus", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3062329212", + ["text"] = "Minions Regenerate # Life per second", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2479683456", + ["text"] = "Minions Regenerate #% of Life per second", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_128585622", + ["text"] = "Minions are Aggressive", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2735021664", + ["text"] = "Minions can hear the whispers for # seconds after they deal a Critical Strike", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2684385509", + ["text"] = "Minions cannot be Blinded", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2727256287", + ["text"] = "Minions convert #% of Fire Damage to Chaos Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_199362230", + ["text"] = "Minions convert #% of Physical Damage to Chaos Damage per White Socket", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_264042266", + ["text"] = "Minions convert #% of Physical Damage to Cold Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_306443498", + ["text"] = "Minions convert #% of Physical Damage to Cold Damage per Green Socket", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2139569643", + ["text"] = "Minions convert #% of Physical Damage to Fire Damage per Red Socket", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3366426512", + ["text"] = "Minions convert #% of Physical Damage to Lightning Damage per Blue Socket", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2797097751", + ["text"] = "Minions count as having the same number of Endurance, Frenzy and Power Charges as you", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3913090641", + ["text"] = "Minions created Recently have #% increased Critical Hit Chance", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_797833282", + ["text"] = "Minions deal # to # additional Attack Physical Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2889601781", + ["text"] = "Minions deal # to # additional Chaos Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3152982863", + ["text"] = "Minions deal # to # additional Cold Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3351784991", + ["text"] = "Minions deal # to # additional Fire Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2930653471", + ["text"] = "Minions deal # to # additional Lightning Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1172029298", + ["text"] = "Minions deal # to # additional Physical Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1589917703", + ["text"] = "Minions deal #% increased Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2337295272", + ["text"] = "Minions deal #% increased Damage if you've Hit Recently", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_412745376", + ["text"] = "Minions deal #% increased Damage if you've used a Minion Skill Recently", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4187741589", + ["text"] = "Minions deal #% increased Damage per 5 Dexterity", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1086057912", + ["text"] = "Minions deal #% increased Damage with Hits and Ailments against Abyssal Monsters", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_935592011", + ["text"] = "Minions deal no Non-Cold Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_247168950", + ["text"] = "Minions gain #% of Elemental Damage as Extra Chaos Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2656936969", + ["text"] = "Minions gain #% of Physical Damage as Extra Chaos Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1236638414", + ["text"] = "Minions gain #% of Physical Damage as Extra Cold Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3217428772", + ["text"] = "Minions gain #% of Physical Damage as Extra Fire Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2268802111", + ["text"] = "Minions gain Added Physical Damage equal to #% of Maximum Energy Shield on your Equipped Helmet", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3835570161", + ["text"] = "Minions gain Unholy Might for # seconds on Kill", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2370748292", + ["text"] = "Minions gain added Resistances equal to #% of your Resistances", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3119612865", + ["text"] = "Minions have #% additional Physical Damage Reduction", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2939409392", + ["text"] = "Minions have #% chance to Blind Enemies on hit", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2431643207", + ["text"] = "Minions have #% chance to Blind on Hit with Attacks", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1994549323", + ["text"] = "Minions have #% chance to Freeze, Shock and Ignite", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2323739383", + ["text"] = "Minions have #% chance to Hinder Enemies on Hit with Spells", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3945908658", + ["text"] = "Minions have #% chance to Ignite", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2138548436", + ["text"] = "Minions have #% chance to Maim Enemies on Hit with Attacks", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1974445926", + ["text"] = "Minions have #% chance to Poison Enemies on Hit", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2911442053", + ["text"] = "Minions have #% chance to Taunt on Hit with Attacks", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3998967779", + ["text"] = "Minions have #% chance to cause Bleeding with Attacks", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_755922799", + ["text"] = "Minions have #% chance to deal Double Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1793564431", + ["text"] = "Minions have #% chance to deal Double Damage per Fortification on you", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3131367308", + ["text"] = "Minions have #% chance to gain Unholy Might for 4 seconds on Kill", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1387367793", + ["text"] = "Minions have #% chance to inflict Withered on Hit", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2834476618", + ["text"] = "Minions have #% faster start of Energy Shield Recharge", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3811191316", + ["text"] = "Minions have #% increased Area of Effect", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3375935924", + ["text"] = "Minions have #% increased Attack Speed", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3091578504", + ["text"] = "Minions have #% increased Attack and Cast Speed", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4227567885", + ["text"] = "Minions have #% increased Attack and Cast Speed if you or your Minions have Killed Recently", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4000101551", + ["text"] = "Minions have #% increased Cast Speed", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1691403182", + ["text"] = "Minions have #% increased Cooldown Recovery Rate", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_491450213", + ["text"] = "Minions have #% increased Critical Strike Chance", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_446070669", + ["text"] = "Minions have #% increased Critical Strike Chance per Maximum Power Charge you have", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1932583315", + ["text"] = "Minions have #% increased Flask Effect Duration", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_174664100", + ["text"] = "Minions have #% increased Movement Speed", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_770672621", + ["text"] = "Minions have #% increased maximum Life", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_180240697", + ["text"] = "Minions have #% reduced Flask Charges used", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1661151735", + ["text"] = "Minions have +# to Accuracy Rating", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2830135449", + ["text"] = "Minions have +# to Accuracy Rating per 10 Devotion", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2048970144", + ["text"] = "Minions have +# to Armour", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3374054207", + ["text"] = "Minions have +#% Chance to Block Attack Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2762046953", + ["text"] = "Minions have +#% Chance to Block Spell Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3195300715", + ["text"] = "Minions have +#% chance to Suppress Spell Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3837707023", + ["text"] = "Minions have +#% to Chaos Resistance", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2200407711", + ["text"] = "Minions have +#% to Cold Resistance", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_440812751", + ["text"] = "Minions have +#% to Critical Strike Chance", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1854213750", + ["text"] = "Minions have +#% to Critical Strike Multiplier", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_482240997", + ["text"] = "Minions have +#% to Critical Strike Multiplier per Grand Spectrum", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1494965559", + ["text"] = "Minions have +#% to Critical Strike Multiplier per Withered Debuff on Enemy", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_613055432", + ["text"] = "Minions have +#% to Damage over Time Multiplier per Ghastly Eye Jewel affecting you, up to a maximum of +30%", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1889350679", + ["text"] = "Minions have +#% to Fire Resistance", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1423639565", + ["text"] = "Minions have +#% to all Elemental Resistances", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_10224385", + ["text"] = "Minions have +#% to all maximum Elemental Resistances", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1436083424", + ["text"] = "Minions have Unholy Might", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3879726065", + ["text"] = "Minions have the same maximum number of Endurance, Frenzy and Power Charges as you", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3690025845", + ["text"] = "Minions summoned by this Graft deal #% increased Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2186396714", + ["text"] = "Minions summoned by this Graft gain #% of Physical Damage as Extra Cold Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2313228671", + ["text"] = "Minions summoned by this Graft have #% chance to Blind on Hit", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_131940510", + ["text"] = "Minions summoned by this Graft have #% chance to Taunt on Hit", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_967852806", + ["text"] = "Minions summoned by this Graft have #% increased Attack Speed", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4267516534", + ["text"] = "Minions summoned by this Graft have #% increased Life", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3700085184", + ["text"] = "Minions' Base Attack Critical Strike Chance is equal to the Critical Strike Chance of your Main Hand Weapon", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1736403946", + ["text"] = "Minions' Hits can only Kill Ignited Enemies", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1634426651", + ["text"] = "Mirrors of Kalandra found in your Maps have #% chance to drop as a stack of 2 Mirrors of Kalandra instead", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_298904616", + ["text"] = "Missions in your Maps grant #% increased Favour", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2519043677", + ["text"] = "Misty Footprints", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1411347992", + ["text"] = "Modifiers to Attributes instead apply to Omniscience", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2543019543", + ["text"] = "Modifiers to Chance to Avoid being Shocked apply to all Elemental Ailments", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2401345409", + ["text"] = "Modifiers to Chance to Suppress Spell Damage also apply to Chance to Avoid Elemental Ailments at #% of their Value", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_860891010", + ["text"] = "Modifiers to Chance to Suppress Spell Damage also apply to Chance to Defend with 200% of Armour at #% of their Value", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2988055461", + ["text"] = "Modifiers to Claw Attack Speed also apply to Unarmed Attack Speed with Melee Skills", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_531932482", + ["text"] = "Modifiers to Claw Critical Strike Chance also apply to Unarmed Critical Strike Chance with Melee Skills", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2865232420", + ["text"] = "Modifiers to Claw Damage also apply to Unarmed Attack Damage with Melee Skills", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2845551354", + ["text"] = "Modifiers to Ignite Duration on you apply to all Elemental Ailments", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2966482502", + ["text"] = "Modifiers to Minimum Endurance Charges instead apply to Minimum Brutal Charges", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1424305790", + ["text"] = "Modifiers to Minimum Frenzy Charges instead apply to Minimum Affliction Charges", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1752582590", + ["text"] = "Modifiers to Minimum Power Charges instead apply to Minimum Absorption Charges", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3399892496", + ["text"] = "Modifiers to Quantity of Items found in your Maps instead apply to Rarity of Items found in your Maps at 300% of their value", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2057712935", + ["text"] = "Modifiers to number of Projectiles instead apply to the number of targets Projectiles Split towards", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1898978455", + ["text"] = "Monster Damage Penetrates #% Elemental Resistances", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_284496119", + ["text"] = "Monster Level: #", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2459732614", + ["text"] = "Monster Packs Influenced by Conquerors in your Maps have #% increased Pack Size", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4185631652", + ["text"] = "Monster Packs Influenced by The Eater of Worlds in your Maps have #% increased Pack Size", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3275918621", + ["text"] = "Monster Packs Influenced by The Elder in your Maps have #% increased Pack Size", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2127991449", + ["text"] = "Monster Packs Influenced by The Searing Exarch in your Maps have #% increased Pack Size", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3017475694", + ["text"] = "Monster Packs Influenced by The Shaper in your Maps have #% increased Pack Size", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2411886876", + ["text"] = "Monster corpses cannot be Destroyed", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4118076613", + ["text"] = "Monsters Enrage on Low Life", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_637101875", + ["text"] = "Monsters Fracture", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1335713735", + ["text"] = "Monsters Imprisoned around Essences in Area are Magic", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1439991839", + ["text"] = "Monsters Imprisoned by Essences have a #% chance to contain a Remnant of Corruption", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2121601076", + ["text"] = "Monsters Influenced by The Eater of Worlds in your Maps have #% chance to drop an item with an Eater of Worlds Implicit Modifier", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_532540562", + ["text"] = "Monsters Influenced by The Searing Exarch in your Maps have #% chance to drop an Item with a Searing Exarch Implicit Modifier", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_822476873", + ["text"] = "Monsters Kill things with 20% or lower Life on Hit", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1280322024", + ["text"] = "Monsters Overwhelm #% Physical Damage Reduction", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3350803563", + ["text"] = "Monsters Poison on Hit", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_394639761", + ["text"] = "Monsters Poison on Hit", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_261224780", + ["text"] = "Monsters Possessed by Tormented Spirits take #% increased Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1341845920", + ["text"] = "Monsters Reflect Hexes", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_159726667", + ["text"] = "Monsters Sacrificed at Ritual Altars in Area grant #% increased Tribute", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_159726667", + ["text"] = "Monsters Sacrificed at Ritual Altars in your Maps grant #% increased Tribute", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2590915311", + ["text"] = "Monsters Sacrificed at Ritual Altars in your Maps grant #% more Tribute", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1238581103", + ["text"] = "Monsters and Chests in your Maps have #% chance to drop Items with +1 to Item Level", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4154059009", + ["text"] = "Monsters are Hexproof", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2355312681", + ["text"] = "Monsters are Immune to randomly chosen Elemental Ailments or Stun", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1472832594", + ["text"] = "Monsters are Unaffected by Curses", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2453321622", + ["text"] = "Monsters are Unaffected by Shock", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3791071930", + ["text"] = "Monsters can only be Damaged while within # metres of a Player Players' modifiers to Light Radius also apply to this range", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1140978125", + ["text"] = "Monsters cannot be Leeched from", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1041951480", + ["text"] = "Monsters cannot be Stunned", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1106651798", + ["text"] = "Monsters cannot be Taunted", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3448216135", + ["text"] = "Monsters deal #% extra Physical Damage as Cold", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1497673356", + ["text"] = "Monsters deal #% extra Physical Damage as Fire", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3416853625", + ["text"] = "Monsters deal #% extra Physical Damage as Lightning", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2243070229", + ["text"] = "Monsters drop no Items", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1309819744", + ["text"] = "Monsters fire # additional Projectiles", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2624514051", + ["text"] = "Monsters from Beyond create Desecrated Ground Beyond Bosses cannot spawn", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3422445312", + ["text"] = "Monsters from Beyond have #% more Quantity and Rarity of Dropped Items", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_622678123", + ["text"] = "Monsters gain # Endurance Charge every 20 seconds", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3580556037", + ["text"] = "Monsters gain # Frenzy Charge every 20 seconds", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_70389693", + ["text"] = "Monsters gain # Power Charge every 20 seconds", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2887760183", + ["text"] = "Monsters gain #% of Maximum Life as Extra Maximum Energy Shield", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1840747977", + ["text"] = "Monsters gain #% of their Physical Damage as Extra Chaos Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4062840317", + ["text"] = "Monsters gain #% of their Physical Damage as Extra Damage of a random Element", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_598809739", + ["text"] = "Monsters grant #% increased Experience", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3738127245", + ["text"] = "Monsters guarding Shrines are Magic", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_376585490", + ["text"] = "Monsters have #% chance to Avoid Ailments", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_322206271", + ["text"] = "Monsters have #% chance to Avoid Elemental Ailments", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3757930834", + ["text"] = "Monsters have #% chance to Avoid being Shocked", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1629869774", + ["text"] = "Monsters have #% chance to Blind on Hit", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_823106560", + ["text"] = "Monsters have #% chance to Duplicate dropped Rogue's Marker", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_962720646", + ["text"] = "Monsters have #% chance to Hinder on Hit with Spells", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4164174520", + ["text"] = "Monsters have #% chance to Maim on Hit with Attacks", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1742567045", + ["text"] = "Monsters have #% chance to gain a Frenzy Charge on Hit", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_406353061", + ["text"] = "Monsters have #% chance to gain a Power Charge on Hit", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_687813731", + ["text"] = "Monsters have #% chance to gain an Endurance Charge on Hit", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4222719527", + ["text"] = "Monsters have #% chance to have a Volatile Core", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3044826007", + ["text"] = "Monsters have #% chance to inflict Withered for 2 seconds on Hit", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3222482040", + ["text"] = "Monsters have #% chance to steal Power, Frenzy and Endurance charges on Hit", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1588049749", + ["text"] = "Monsters have #% increased Accuracy Rating", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3231732417", + ["text"] = "Monsters have #% increased Action Speed", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1708461270", + ["text"] = "Monsters have #% increased Area of Effect", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3909654181", + ["text"] = "Monsters have #% increased Attack, Cast and Movement Speed", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1882837088", + ["text"] = "Monsters have #% increased Bleeding Duration", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2753083623", + ["text"] = "Monsters have #% increased Critical Strike Chance", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2029018782", + ["text"] = "Monsters have #% increased Effect of Shock", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3865186586", + ["text"] = "Monsters have #% increased Freeze Duration", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2849040018", + ["text"] = "Monsters have #% increased Ignite Duration", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_134839587", + ["text"] = "Monsters have #% increased Poison Duration", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3051860083", + ["text"] = "Monsters have #% increased chance to spawn a Beyond Portal", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4067268731", + ["text"] = "Monsters have +# to Maximum Endurance Charges", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3900284865", + ["text"] = "Monsters have +# to Maximum Frenzy Charges", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1103106414", + ["text"] = "Monsters have +# to Maximum Power Charges", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_881836292", + ["text"] = "Monsters have +#% Chance to Block Attack Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_395617565", + ["text"] = "Monsters have +#% Chance to Block Spell Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2138205941", + ["text"] = "Monsters have +#% chance to Suppress Spell Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3783555531", + ["text"] = "Monsters have +#% to all maximum Elemental Resistances", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2553656203", + ["text"] = "Monsters have a #% chance to Ignite, Freeze and Shock on Hit", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_144665660", + ["text"] = "Monsters have a #% chance to avoid Poison, Impale, and Bleeding", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3707756896", + ["text"] = "Monsters have a #% chance to gain an Endurance Charge when hit", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2937898686", + ["text"] = "Monsters in your Maps deal #% more Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3516276449", + ["text"] = "Monsters in your Maps deal #% more Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2804300445", + ["text"] = "Monsters in your Maps have #% more Life", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4190580879", + ["text"] = "Monsters in your Maps have #% more Life", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1751584857", + ["text"] = "Monsters inflict # Grasping Vine on Hit", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3444140926", + ["text"] = "Monsters inflict Malediction on hit", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3437613601", + ["text"] = "Monsters inflict Petrification for # seconds on hit", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1819739544", + ["text"] = "Monsters initially carrying a Talisman drop an additional Rare Item", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2473016979", + ["text"] = "Monsters near Shrines are Chilled", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1260060682", + ["text"] = "Monsters prevent +#% of Suppressed Spell Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2764017512", + ["text"] = "Monsters reflect #% of Elemental Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3464419871", + ["text"] = "Monsters reflect #% of Physical Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3007862517", + ["text"] = "Monsters take #% increased Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_337935900", + ["text"] = "Monsters take #% reduced Extra Damage from Critical Strikes", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1183247801", + ["text"] = "Monsters with Silver Coins drop an additional Basic Currency Item", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3877259945", + ["text"] = "Monsters with Silver Coins drop an additional Rare Item", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3679287686", + ["text"] = "Monsters with Silver Coins drop an additional Silver Coin", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2758454849", + ["text"] = "Monsters' Action Speed cannot be modified to below Base Value", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_798009319", + ["text"] = "Monsters' Action Speed cannot be modified to below Base Value Monsters' Movement Speed cannot be modified to below Base Value", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1091321491", + ["text"] = "Monsters' Attack Hits inflict Bleeding", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1541224187", + ["text"] = "Monsters' Attacks have #% chance to Impale on Hit", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3337579297", + ["text"] = "Monsters' Hits are always Critical Strikes", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1534390486", + ["text"] = "Monsters' Hits can't be Evaded", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2227428689", + ["text"] = "Monsters' Hits have #% chance to Freeze", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2130085756", + ["text"] = "Monsters' Hits have #% chance to Ignite", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3428180555", + ["text"] = "Monsters' Hits have #% chance to Shock", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_41394014", + ["text"] = "Monsters' Melee Attacks apply random Hexes on Hit", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_777421120", + ["text"] = "Monsters' Movement Speed cannot be modified to below Base Value", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2753403220", + ["text"] = "Monsters' Projectiles have #% chance to be able to Chain when colliding with Terrain", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3183973644", + ["text"] = "Monsters' skills Chain # additional times", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3875592188", + ["text"] = "Movement Speed cannot be modified to below Base Value", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_935326447", + ["text"] = "Moving while Bleeding doesn't cause you to take extra Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_385496396", + ["text"] = "Must complete an Expedition with three or more Remnants enabled to claim Reward", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2776366800", + ["text"] = "Must complete ten Ultimatum Encounter waves to claim Reward", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_43034837", + ["text"] = "Must fully complete all Ritual Encounters in Area to claim Reward", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3641521906", + ["text"] = "Must successfully defend all Ichor Pumps in Area to claim Reward", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_778848857", + ["text"] = "Nearby Allies gain #% increased Mana Regeneration Rate", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3462673103", + ["text"] = "Nearby Allies gain #% of Life Regenerated per second", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3941641418", + ["text"] = "Nearby Allies have #% Chance to Block Attack Damage per 100 Strength you have", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2373999301", + ["text"] = "Nearby Allies have #% increased Cast Speed per 100 Intelligence you have", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3767939384", + ["text"] = "Nearby Allies have #% increased Defences per 100 Strength you have", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1722463112", + ["text"] = "Nearby Allies have #% increased Item Rarity", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_244825991", + ["text"] = "Nearby Allies have +# Fortification", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3152714748", + ["text"] = "Nearby Allies have +#% to Critical Strike Multiplier", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1438488526", + ["text"] = "Nearby Allies have +#% to Critical Strike Multiplier per 100 Dexterity you have", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1560540713", + ["text"] = "Nearby Allies have Culling Strike", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1356468153", + ["text"] = "Nearby Allies' Action Speed cannot be modified to below Base Value", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_655871604", + ["text"] = "Nearby Allies' Damage with Hits is Lucky", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3729324251", + ["text"] = "Nearby Enemies Convert #% of their Physical Damage to Fire", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2307982579", + ["text"] = "Nearby Enemies Killed by anyone count as being Killed by you instead", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2826979740", + ["text"] = "Nearby Enemies are Blinded", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3844045281", + ["text"] = "Nearby Enemies are Blinded if 2 Redeemer Items are Equipped", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2504709365", + ["text"] = "Nearby Enemies are Blinded while Physical Aegis is not depleted", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2159555743", + ["text"] = "Nearby Enemies are Chilled", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2480873346", + ["text"] = "Nearby Enemies are Chilled", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_746994389", + ["text"] = "Nearby Enemies are Covered in Ash", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3069588220", + ["text"] = "Nearby Enemies are Crushed while you have at least # Rage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2006060276", + ["text"] = "Nearby Enemies are Debilitated", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_607839150", + ["text"] = "Nearby Enemies are Hindered, with #% reduced Movement Speed", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2899095498", + ["text"] = "Nearby Enemies are Intimidated", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1142276332", + ["text"] = "Nearby Enemies are Intimidated if 2 Warlord Items are Equipped", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3733114005", + ["text"] = "Nearby Enemies are Scorched", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1439308328", + ["text"] = "Nearby Enemies are Unnerved", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_282325999", + ["text"] = "Nearby Enemies are Unnerved if 2 Elder Items are Equipped", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1177959871", + ["text"] = "Nearby Enemies cannot deal Critical Strikes", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4031527864", + ["text"] = "Nearby Enemies cannot gain Power, Frenzy or Endurance Charges", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3547189490", + ["text"] = "Nearby Enemies grant #% increased Flask Charges", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_443525707", + ["text"] = "Nearby Enemies have #% increased Effect of Curses on them", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4273356746", + ["text"] = "Nearby Enemies have #% increased Fire and Cold Resistances", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3169825297", + ["text"] = "Nearby Enemies have #% reduced Stun and Block Recovery", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_668145148", + ["text"] = "Nearby Enemies have #% to all Resistances", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1902595112", + ["text"] = "Nearby Enemies have +#% to Chaos Resistance", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2674336304", + ["text"] = "Nearby Enemies have +#% to Cold Resistance", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3914021960", + ["text"] = "Nearby Enemies have +#% to Fire Resistance", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1849749435", + ["text"] = "Nearby Enemies have +#% to Lightning Resistance", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3952509108", + ["text"] = "Nearby Enemies have Fire Exposure while at maximum Rage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3549734978", + ["text"] = "Nearby Enemies have Lightning Resistance equal to yours", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_639595152", + ["text"] = "Nearby Enemies take #% increased Elemental Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_415837237", + ["text"] = "Nearby Enemies take #% increased Physical Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4187518631", + ["text"] = "Nearby Enemies take #% increased Physical Damage per two Fortification on you", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_663080464", + ["text"] = "Nearby Enemies' Chaos Resistance is 0", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1063263585", + ["text"] = "Nearby Enemy Monsters have at least #% of Life Reserved", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3484267929", + ["text"] = "Nearby allies Recover #% of your Maximum Life when you Die", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3175679225", + ["text"] = "Nearby allies gain #% increased Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_293071889", + ["text"] = "Nearby corpses Explode when you Warcry, dealing #% of their Life as Physical Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3469279727", + ["text"] = "Nearby stationary Enemies gain a Grasping Vine every second", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_214242256", + ["text"] = "Necrotic Footprints", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3638599682", + ["text"] = "Never deal Critical Strikes", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1023752508", + ["text"] = "No Chance to Block", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2946222246", + ["text"] = "No Travel Cost", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_847744351", + ["text"] = "Non-Aura Curses you inflict are not removed from Dying Enemies", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2417456003", + ["text"] = "Non-Aura Hexes expire upon reaching #% of base Effect", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3266609002", + ["text"] = "Non-Aura Hexes gain 20% increased Effect per second", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_849152640", + ["text"] = "Non-Aura Skills Cost no Mana or Life while Focused", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3533432197", + ["text"] = "Non-Aura Vaal Skills require #% reduced Souls Per Use", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1274125114", + ["text"] = "Non-Aura Vaal Skills require #% reduced Souls Per Use during Effect", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_407482587", + ["text"] = "Non-Channelling Skills Cost +# Mana", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_677564538", + ["text"] = "Non-Channelling Skills have +# to Total Mana Cost", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1853636813", + ["text"] = "Non-Channelling Skills have +# to Total Mana Cost while affected by Clarity", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3998191356", + ["text"] = "Non-Chilled Enemies you Poison are Chilled", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_398940995", + ["text"] = "Non-Chilled Enemies you inflict Bleeding on are Chilled", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2511969244", + ["text"] = "Non-Critical Strikes deal no Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4152389562", + ["text"] = "Non-Curse Aura Skills have #% increased Duration", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3014823981", + ["text"] = "Non-Damaging Ailments have #% increased Effect on you while you have Arcane Surge", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3303984198", + ["text"] = "Non-Exerted Attacks deal no Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3764294022", + ["text"] = "Non-Favoured Maps found in your Maps drop as Basic Currency Items instead", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1863128284", + ["text"] = "Non-Instant Warcries ignore their Cooldown when Used", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_449526948", + ["text"] = "Non-Unique Equipment found in Area drops as Currency instead", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_865273657", + ["text"] = "Non-Unique Utility Flasks you Use apply to Linked Targets", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1661253443", + ["text"] = "Non-Vaal Strike Skills target # additional nearby Enemy", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1711683262", + ["text"] = "Non-critical strikes deal #% more Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2262007777", + ["text"] = "Non-instant Mana Recovery from Flasks is also Recovered as Life", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3430460307", + ["text"] = "Notable Passive Skills in Radius are Transformed to instead grant: #% increased Mana Cost of Skills and #% increased Spell Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3362879252", + ["text"] = "Notable Passive Skills in Radius are Transformed to instead grant: Minions have #% increased Movement Speed", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3659983276", + ["text"] = "Notable Passive Skills in Radius are Transformed to instead grant: Minions take #% increased Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2627243269", + ["text"] = "Notable Passive Skills in Radius grant nothing", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3250070049", + ["text"] = "Nova Spells Cast at the targeted location instead of around you", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_200113086", + ["text"] = "Nova Spells have #% more Area of Effect", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_353291915", + ["text"] = "Number of Explosives is one", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1271391587", + ["text"] = "Number of Perandus Coins dropped in this Area is Doubled", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2957407601", + ["text"] = "Offering Skills have #% increased Duration", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3259960466", + ["text"] = "Oils found in Area have #% chance to be 1 tier higher", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3259960466", + ["text"] = "Oils found in your Maps have #% chance to be 1 tier higher", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_456916387", + ["text"] = "On Killing a Poisoned Enemy, Enemies within 3 metres are Poisoned, and you and Allies Regenerate 400 Life per second for the Poison's duration if within 3 metres", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_517280174", + ["text"] = "On Killing a Rare monster, a random Linked Minion gains its Modifiers for # seconds", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1341154644", + ["text"] = "On non-channelling Attack, set a Life Flask with greater than 50% of maximum Charges remaining to 50% For each Charge removed this way, that Attack gains +#% to Damage over time Multiplier", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3418377329", + ["text"] = "Only # Portal is opened to each of your Maps", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3642528642", + ["option"] = { + ["options"] = { + { + ["id"] = 1, + ["text"] = "Small", + }, + { + ["id"] = 2, + ["text"] = "Medium", + }, + { + ["id"] = 3, + ["text"] = "Large", + }, + { + ["id"] = 4, + ["text"] = "Very Large", + }, + { + ["id"] = 5, + ["text"] = "Massive", + }, + }, + }, + ["text"] = "Only affects Passives in # Ring", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3418377329", + ["text"] = "Only opens # Portal to Area", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1520059289", + ["text"] = "Onslaught", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_262769816", + ["text"] = "Orbs of Alchemy found in your Maps have #% chance to drop as a full stack", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1857447509", + ["text"] = "Orbs of Alteration found in your Maps have #% chance to drop as a full stack", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3559931431", + ["text"] = "Orbs of Chance found in your Maps have #% chance to drop as a full stack", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1552965282", + ["text"] = "Orbs of Fusing found in your Maps have #% chance to drop as a full stack", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2188554989", + ["text"] = "Orbs of Regret found in your Maps have #% chance to drop as a stack of 20 Orbs of Regret instead", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4252890057", + ["text"] = "Orbs of Scouring found in your Maps have #% chance to drop as a full stack", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2888521660", + ["text"] = "Orbs of Transmutation found in your Maps have #% chance to drop as a full stack", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3201470460", + ["text"] = "Ore Deposits in your Maps are more likely to be rarer varieties", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_643727077", + ["text"] = "Ore Deposits in your Maps are replaced by Lost Shipments", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_792089502", + ["text"] = "Ore Deposits in your Maps contain #% increased Ore", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1601123381", + ["text"] = "Overcharged Sinews used by this Graft can apply +# maximum Jolt Buffs", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2495041954", + ["text"] = "Overwhelm #% Physical Damage Reduction", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_98977150", + ["text"] = "Pain Attunement", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1647724040", + ["text"] = "Passive Skills in Radius also grant #% increased Armour", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1313763128", + ["text"] = "Passive Skills in Radius also grant #% increased Chaos Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2999571636", + ["text"] = "Passive Skills in Radius also grant #% increased Cold Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4215928287", + ["text"] = "Passive Skills in Radius also grant #% increased Energy Shield", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3761482453", + ["text"] = "Passive Skills in Radius also grant #% increased Evasion Rating", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_719810173", + ["text"] = "Passive Skills in Radius also grant #% increased Fire Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3901726941", + ["text"] = "Passive Skills in Radius also grant #% increased Global Critical Strike Chance", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3556460433", + ["text"] = "Passive Skills in Radius also grant #% increased Lightning Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3252387974", + ["text"] = "Passive Skills in Radius also grant #% increased Physical Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3587101704", + ["text"] = "Passive Skills in Radius also grant +# to all Attributes", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1223932609", + ["text"] = "Passive Skills in Radius also grant +# to maximum Life", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3382199855", + ["text"] = "Passive Skills in Radius also grant +# to maximum Mana", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1812306107", + ["text"] = "Passive Skills in Radius also grant +#% to Chaos Resistance", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3087912144", + ["text"] = "Passive Skills in Radius also grant: #% increased Unarmed Attack Speed with Melee Skills", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_576760472", + ["text"] = "Passive Skills in Radius also grant: Traps and Mines deal # to # added Physical Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1725885727", + ["text"] = "Passive Skills in Radius can be Allocated without being connected to your tree Passage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2422708892", + ["option"] = { + ["options"] = { + { + ["id"] = 18663, + ["text"] = "Minion Instability", + }, + { + ["id"] = 23540, + ["text"] = "Conduit", + }, + { + ["id"] = 54307, + ["text"] = "Acrobatics", + }, + { + ["id"] = 10661, + ["text"] = "Iron Reflexes", + }, + { + ["id"] = 31961, + ["text"] = "Resolute Technique", + }, + { + ["id"] = 40907, + ["text"] = "Unwavering Stance", + }, + { + ["id"] = 11455, + ["text"] = "Chaos Inoculation", + }, + { + ["id"] = 56075, + ["text"] = "Eldritch Battery", + }, + { + ["id"] = 57279, + ["text"] = "Blood Magic", + }, + { + ["id"] = 45175, + ["text"] = "Necromantic Aegis", + }, + { + ["id"] = 31703, + ["text"] = "Pain Attunement", + }, + { + ["id"] = 39085, + ["text"] = "Elemental Equilibrium", + }, + { + ["id"] = 12926, + ["text"] = "Iron Grip", + }, + { + ["id"] = 42178, + ["text"] = "Point Blank", + }, + { + ["id"] = 54922, + ["text"] = "Arrow Dancing", + }, + { + ["id"] = 41970, + ["text"] = "Ancestral Bond", + }, + { + ["id"] = 24426, + ["text"] = "Ghost Reaver", + }, + { + ["id"] = 10808, + ["text"] = "Vaal Pact", + }, + { + ["id"] = 63425, + ["text"] = "Zealot's Oath", + }, + { + ["id"] = 44941, + ["text"] = "Avatar of Fire", + }, + { + ["id"] = 34098, + ["text"] = "Mind Over Matter", + }, + { + ["id"] = 22088, + ["text"] = "Elemental Overload", + }, + { + ["id"] = 23407, + ["text"] = "Perfect Agony", + }, + { + ["id"] = 17818, + ["text"] = "Crimson Dance", + }, + { + ["id"] = 42343, + ["text"] = "Runebinder", + }, + { + ["id"] = 23950, + ["text"] = "Wicked Ward", + }, + { + ["id"] = 23090, + ["text"] = "Call to Arms", + }, + { + ["id"] = 21650, + ["text"] = "Eternal Youth", + }, + { + ["id"] = 39713, + ["text"] = "Glancing Blows", + }, + { + ["id"] = 11239, + ["text"] = "Wind Dancer", + }, + { + ["id"] = 19732, + ["text"] = "The Agnostic", + }, + { + ["id"] = 49639, + ["text"] = "Supreme Ego", + }, + { + ["id"] = 24720, + ["text"] = "Imbalanced Guard", + }, + { + ["id"] = 57257, + ["text"] = "The Impaler", + }, + { + ["id"] = 43988, + ["text"] = "Hex Master", + }, + { + ["id"] = 56116, + ["text"] = "Magebane", + }, + { + ["id"] = 50288, + ["text"] = "Iron Will", + }, + { + ["id"] = 60247, + ["text"] = "Solipsism", + }, + { + ["id"] = 35255, + ["text"] = "Ghost Dance", + }, + { + ["id"] = 58556, + ["text"] = "Divine Shield", + }, + { + ["id"] = 50679, + ["text"] = "Versatile Combatant", + }, + { + ["id"] = 62791, + ["text"] = "Lethe Shade", + }, + { + ["id"] = 63620, + ["text"] = "Precise Technique", + }, + { + ["id"] = 21210, + ["text"] = "Arsenal of Vengeance", + }, + { + ["id"] = 13019, + ["text"] = "Bloodsoaked Blade", + }, + }, + }, + ["text"] = "Passive Skills in Radius of # can be Allocated without being connected to your tree Passage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1409669176", + ["text"] = "Passives granting Cold Resistance or all Elemental Resistances in Radius also grant Chance to Suppress Spell Damage at #% of its value", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_248241207", + ["text"] = "Passives granting Cold Resistance or all Elemental Resistances in Radius also grant Cold Damage Converted to Chaos Damage at #% of its value", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_509677462", + ["text"] = "Passives granting Cold Resistance or all Elemental Resistances in Radius also grant an equal chance to gain a Frenzy Charge on Kill", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1535088208", + ["text"] = "Passives granting Cold Resistance or all Elemental Resistances in Radius also grant increased Maximum Mana at #% of its value", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3931143552", + ["text"] = "Passives granting Fire Resistance or all Elemental Resistances in Radius also grant Chance to Block Attack Damage at #% of its value", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1124207360", + ["text"] = "Passives granting Fire Resistance or all Elemental Resistances in Radius also grant Fire Damage Converted to Chaos Damage at #% of its value", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1645524575", + ["text"] = "Passives granting Fire Resistance or all Elemental Resistances in Radius also grant an equal chance to gain an Endurance Charge on Kill", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4068640319", + ["text"] = "Passives granting Fire Resistance or all Elemental Resistances in Radius also grant increased Maximum Life at #% of its value", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1224928411", + ["text"] = "Passives granting Lightning Resistance or all Elemental Resistances in Radius also grant Chance to Block Spell Damage at #% of its value", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1525329150", + ["text"] = "Passives granting Lightning Resistance or all Elemental Resistances in Radius also grant Lightning Damage Converted to Chaos Damage at #% of its value", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_926444104", + ["text"] = "Passives granting Lightning Resistance or all Elemental Resistances in Radius also grant an equal chance to gain a Power Charge on Kill", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1348513056", + ["text"] = "Passives granting Lightning Resistance or all Elemental Resistances in Radius also grant increased Maximum Energy Shield at #% of its value", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1982436039", + ["text"] = "Patrol Packs have #% increased chance to be replaced by an Elite Patrol Pack", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3702411606", + ["text"] = "Patrol Packs take #% increased damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3144910208", + ["text"] = "Patrolling Monsters deal #% increased Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2757041809", + ["text"] = "Penetrate #% Elemental Resistances per 15 Omniscience", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4250752669", + ["text"] = "Penetrate #% Elemental Resistances per Abyss Jewel affecting you", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2156472123", + ["text"] = "Perandus Chests are guarded by additional Rare monsters", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1532770406", + ["text"] = "Perandus Chests have #% more Quantity of Items Dropped", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3535403838", + ["text"] = "Perandus Chests have #% more Rarity of Items Dropped", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1183261553", + ["text"] = "Perandus Chests in your Maps have #% increased chance to be Archives", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1207229270", + ["text"] = "Perandus Chests in your Maps have #% increased chance to be Catalogues", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1186599719", + ["text"] = "Perandus Chests in your Maps have #% increased chance to be Coffers", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4262046342", + ["text"] = "Perandus Chests in your Maps have #% increased chance to be Hoards", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3568535270", + ["text"] = "Perandus Chests in your Maps have #% increased chance to be Treasuries", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3689836025", + ["text"] = "Perandus Monsters have a #% chance to drop Perandus Coins", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3884934810", + ["text"] = "Perfect Agony", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2485799092", + ["text"] = "Performing Brute Force during Lockdown doesn't take additional time", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3969573213", + ["text"] = "Performing Counter-Thaumaturgy during Lockdown doesn't take additional time", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_450155423", + ["text"] = "Performing Demolition during Lockdown doesn't take additional time", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1124657098", + ["text"] = "Performing Engineering during Lockdown doesn't take additional time", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3144025395", + ["text"] = "Performing Lockpicking during Lockdown doesn't take additional time", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2930706364", + ["text"] = "Permanently Intimidate Enemies on Block", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1235842798", + ["text"] = "Petrified Amber Ore Deposits in your Maps take #% increased Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1935500672", + ["text"] = "Petrified during Effect", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2424163939", + ["text"] = "Physical Damage of Enemies Hitting you is Lucky", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2649513539", + ["text"] = "Physical Damage taken bypasses Energy Shield", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2632037464", + ["text"] = "Physical Skills have #% increased Duration per 12 Intelligence", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1042687374", + ["text"] = "Plants Harvested in your Maps have #% chance to give an additional Crafting option", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2634325281", + ["text"] = "Plants Harvested in your Maps have #% chance to spawn duplicated Monsters", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3633247582", + ["text"] = "Player Skills which Throw Mines throw up to # fewer Mines", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3693062339", + ["text"] = "Player Skills which Throw Traps throw up to # fewer Traps", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_286947568", + ["text"] = "Players Prevent +#% of Suppressed Spell Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3072066782", + ["text"] = "Players Regenerate #% of Life per second per 25 Rampage Kills", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_430044247", + ["text"] = "Players and their Minions Regenerate #% of Life per second", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2408625104", + ["text"] = "Players and their Minions deal no damage for 3 out of every 10 seconds", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2513410880", + ["text"] = "Players and their Minions have #% increased Mana Regeneration Rate", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_376158712", + ["text"] = "Players are Cursed with Conductivity", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1551563177", + ["text"] = "Players are Cursed with Despair", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_558910024", + ["text"] = "Players are Cursed with Elemental Weakness", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4103440490", + ["text"] = "Players are Cursed with Enfeeble", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_989228672", + ["text"] = "Players are Cursed with Flammability", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3442976749", + ["text"] = "Players are Cursed with Frostbite", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2326202293", + ["text"] = "Players are Cursed with Temporal Chains", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1366534040", + ["text"] = "Players are Cursed with Vulnerability", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_436406826", + ["text"] = "Players are Marked for Death for # seconds after killing a Rare or Unique monster", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3052102815", + ["text"] = "Players are assaulted by Bloodstained Sawblades", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2818657516", + ["text"] = "Players are assaulted by Ruinous Ghosts Reaching seven Ruin prevents Reward from being claimed", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2866498028", + ["text"] = "Players are assaulted by apparitions of Al-Hezmin, the Hunter", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4263525693", + ["text"] = "Players are assaulted by apparitions of Atziri, Queen of the Vaal", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4283248632", + ["text"] = "Players are assaulted by apparitions of Baran, the Crusader", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2768602791", + ["text"] = "Players are assaulted by apparitions of Drox, the Warlord", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3847635614", + ["text"] = "Players are assaulted by apparitions of Sirus, Awakener of Worlds", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_631346032", + ["text"] = "Players are assaulted by apparitions of The Elder", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3925252825", + ["text"] = "Players are assaulted by apparitions of The Shaper", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4041943326", + ["text"] = "Players are assaulted by apparitions of Veritania, the Redeemer", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2283806768", + ["text"] = "Players are assaulted by many dangerous Apparitions", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2846886500", + ["text"] = "Players are randomly targeted by Meteors", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_419810844", + ["text"] = "Players cannot Block", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2736953535", + ["text"] = "Players cannot Block Attack Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4261179672", + ["text"] = "Players cannot Block Spell Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1011537121", + ["text"] = "Players cannot Evade", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1888489569", + ["text"] = "Players cannot Recharge Energy Shield", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1467713556", + ["text"] = "Players cannot Recover Life or Energy Shield above #% during Rituals in Area", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1910157106", + ["text"] = "Players cannot Regenerate Life, Mana or Energy Shield", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3203905334", + ["text"] = "Players cannot Suppress Spell Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3845167239", + ["text"] = "Players cannot choose which Ultimatum Modifier is applied each Round", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3532144131", + ["text"] = "Players cannot gain Endurance Charges", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_36406748", + ["text"] = "Players cannot gain Flask Charges", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_620879593", + ["text"] = "Players cannot gain Frenzy Charges", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1282233725", + ["text"] = "Players cannot gain Power Charges", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1026390635", + ["text"] = "Players cannot inflict Exposure", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2272004210", + ["text"] = "Players deal #% increased Damage while Dead", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2908391015", + ["text"] = "Players deal #% increased Damage with Hits to Breach Monsters", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_802316710", + ["text"] = "Players deal #% more Damage per Equipped Item", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3781201833", + ["text"] = "Players do not gain Experience", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_816079058", + ["text"] = "Players gain #% increased Flask Charges per 25% Alert Level", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2549889921", + ["text"] = "Players gain #% reduced Flask Charges", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2886495370", + ["text"] = "Players gain Instability on Kill Unstable Players eventually detonate", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1260064327", + ["text"] = "Players gain Onslaught for # seconds when they Kill a Rare Monster", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4102870672", + ["text"] = "Players have #% chance to be targeted by a Meteor when they use a Flask", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3609345433", + ["text"] = "Players have #% chance to gain Rare Monster Modifiers for 20 seconds on Kill", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3479892158", + ["text"] = "Players have #% increased Action Speed for each time they've used a Skill Recently", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1061545609", + ["text"] = "Players have #% increased Attack, Cast and Movement Speed while they have Onslaught", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4033049853", + ["text"] = "Players have #% increased Character Size", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2159994279", + ["text"] = "Players have #% increased Cooldown Recovery Rate for Movement Skills", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4039124672", + ["text"] = "Players have #% increased Cost of Skills for each Skill they've used Recently", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2946888410", + ["text"] = "Players have #% increased Maximum total Life, Mana and Energy Shield Recovery per second from Leech", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1416455556", + ["text"] = "Players have #% increased Movement Speed", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3463633447", + ["text"] = "Players have #% increased Movement Speed", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1489997462", + ["text"] = "Players have #% increased Rarity of Items Found per 15 Rampage Kills", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2450628570", + ["text"] = "Players have #% increased effect of Non-Curse Auras from Skills", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2312028586", + ["text"] = "Players have #% less Area of Effect", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_272758639", + ["text"] = "Players have #% less Armour", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4181072906", + ["text"] = "Players have #% less Recovery Rate of Life and Energy Shield", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3667574329", + ["text"] = "Players have #% more Accuracy Rating", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2787931289", + ["text"] = "Players have #% more Armour per 25% Alert Level", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_941368244", + ["text"] = "Players have #% more Cooldown Recovery Rate", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_943960754", + ["text"] = "Players have #% more Defences", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_751773204", + ["text"] = "Players have #% more Energy Shield Recovery Rate per 25% Alert Level", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1238382441", + ["text"] = "Players have #% more Evasion per 25% Alert Level", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1466172118", + ["text"] = "Players have #% more Life Recovery Rate per 25% Alert Level", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_953449033", + ["text"] = "Players have #% more Mana Recovery Rate per 25% Alert Level", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1207482628", + ["text"] = "Players have #% more effect of Flasks applied to them", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3729221884", + ["text"] = "Players have #% reduced Chance to Block", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3376488707", + ["text"] = "Players have #% to all maximum Resistances", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2912613786", + ["text"] = "Players have +# to maximum number of Summoned Totems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_86122490", + ["text"] = "Players have Blood Magic", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1413930902", + ["text"] = "Players have Level 20 Dash Skill", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2576546039", + ["text"] = "Players have Onslaught while using Flasks", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2835888248", + ["text"] = "Players have Point Blank", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_428119274", + ["text"] = "Players have Shroud Walker", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3563824294", + ["text"] = "Players have a #% chance to gain Onslaught on Kill For 4 seconds", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3941376120", + ["text"] = "Players have a #% chance when they Kill a Rare Monster to gain 1 of its Modifiers for 20 seconds", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1890969167", + ["text"] = "Players have no Life or Mana Regeneration", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1715784068", + ["text"] = "Players in Area are #% Delirious", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3084283832", + ["text"] = "Players in Area are driven mad", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4045850340", + ["text"] = "Players in Area take #% increased Damage per nearby Ally", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2467500499", + ["text"] = "Players in Areas take on the form of Harbingers Items found in Areas are replaced by stacks of Currency Shards", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3749823751", + ["text"] = "Players reflect #% of Melee Physical Damage taken", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3031766225", + ["text"] = "Players take # Chaos Damage per second", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1755438602", + ["text"] = "Players take #% reduced Damage from Breach Monsters", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3045897926", + ["text"] = "Players take #% reduced Damage from Monsters from Beyond", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1095765106", + ["text"] = "Players who Die in area are sent to the Void", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3045094957", + ["text"] = "Players with at least 50 Rampage Kills take #% reduced Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3854489687", + ["text"] = "Players' Minions deal #% more Damage per Item Equipped by their Master", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1308016791", + ["text"] = "Players' Minions have #% more Attack Speed", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1237051929", + ["text"] = "Players' Minions have #% more Cast Speed", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3991644188", + ["text"] = "Players' Minions have #% more Movement Speed", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1555263964", + ["text"] = "Players' Travel Skills are Disabled", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2896346114", + ["text"] = "Point Blank", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4266201818", + ["text"] = "Poison Cursed Enemies on hit", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2374357674", + ["text"] = "Poison you inflict is Reflected to you if you have fewer than 100 Poisons on you", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_130616495", + ["text"] = "Poison you inflict with Travel Skills is Reflected to you if you have fewer than 5 Poisons on you", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3350228283", + ["text"] = "Poisoned Enemies you Kill with Hits Shatter", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4075957192", + ["text"] = "Poisonous Hit", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2443132097", + ["text"] = "Poisons on you expire #% slower", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2907156609", + ["text"] = "Poisons you inflict deal Damage #% faster", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2757672659", + ["text"] = "Portals to Area close over time", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3596335518", + ["text"] = "Portals to Area only close when Players die", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4096273663", + ["text"] = "Precise Technique", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3859865977", + ["text"] = "Precision has #% increased Mana Reservation Efficiency", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1291925008", + ["text"] = "Precision has 100% increased Mana Reservation Efficiency", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3736628755", + ["text"] = "Precision has 50% less Reservation", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2879723104", + ["text"] = "Prefixes Cannot Be Changed", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2134023442", + ["text"] = "Preserving Stillness used by this Graft also grants +#% to all Elemental Resistances", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_557952718", + ["text"] = "Preserving Stillness used by this Graft also grants +#% to all maximum Elemental Resistances", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3725714391", + ["text"] = "Preserving Stillness used by this Graft can take # additional Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4116705863", + ["text"] = "Prevent +#% of Suppressed Spell Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1409317489", + ["text"] = "Prevent +#% of Suppressed Spell Damage if you have not Suppressed Spell Damage Recently", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1493325653", + ["text"] = "Prevent +#% of Suppressed Spell Damage while on Full Energy Shield", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3484910620", + ["text"] = "Pride has #% increased Mana Reservation Efficiency", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3993865658", + ["text"] = "Pride has #% increased Mana Reservation Efficiency", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_250961191", + ["text"] = "Pride has #% reduced Reservation", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3554614456", + ["text"] = "Pride has no Reservation", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1089165168", + ["text"] = "Primordial", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4095169720", + ["text"] = "Projectile Attack Skills have #% increased Critical Strike Chance", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3953699641", + ["text"] = "Projectile Barrages have no spread", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_383509486", + ["text"] = "Projectiles Chain +# times while you have Phasing", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_942938211", + ["text"] = "Projectiles Fork", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2067062068", + ["text"] = "Projectiles Pierce # additional Targets", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2813428845", + ["text"] = "Projectiles Pierce # additional Targets if 2 Hunter Items are Equipped", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3640956958", + ["text"] = "Projectiles Pierce 2 additional Targets", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2214228141", + ["text"] = "Projectiles Pierce all Burning Enemies", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2636403786", + ["text"] = "Projectiles Pierce all Targets while you have Phasing", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1284333657", + ["text"] = "Projectiles Pierce all nearby Targets", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_97250660", + ["text"] = "Projectiles Pierce an additional Target while you have Phasing", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4159765624", + ["text"] = "Projectiles are fired in random directions", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2940232338", + ["text"] = "Projectiles can Chain from any number of additional targets in Close Range", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2826633504", + ["text"] = "Projectiles cannot collide with Enemies in Close Range", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1732165753", + ["text"] = "Projectiles cannot continue after colliding with targets", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_793704702", + ["text"] = "Projectiles created by this Graft that have Pierced deal #% more Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_883169830", + ["text"] = "Projectiles deal #% increased Damage with Hits and Ailments for each Enemy Pierced", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_396113830", + ["text"] = "Projectiles from Attacks Fork", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1643324992", + ["text"] = "Projectiles from Attacks can Fork # additional time", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1753916791", + ["text"] = "Projectiles from Attacks have #% chance to Maim on Hit while you have a Bestial Minion", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1114411822", + ["text"] = "Projectiles from Attacks have #% chance to Poison on Hit while you have a Bestial Minion", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4058504226", + ["text"] = "Projectiles from Attacks have #% chance to inflict Bleeding on Hit while you have a Bestial Minion", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1519665289", + ["text"] = "Projectiles from Socketed Gems Fork", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3826125995", + ["text"] = "Projectiles from Spells cannot Pierce", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1924041432", + ["text"] = "Projectiles gain #% of Non-Chaos Damage as extra Chaos Damage per Chain", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2083727359", + ["text"] = "Projectiles gain Damage as they travel farther, dealing up to #% increased Damage with Hits to targets", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2521866096", + ["text"] = "Projectiles gain Impale effect as they travel farther, causing Impales they inflict to have up to #% increased effect", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2134307667", + ["text"] = "Projectiles have #% chance to Return to you", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2140446632", + ["text"] = "Projectiles have #% chance to be able to Chain when colliding with terrain", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1485085047", + ["text"] = "Projectiles have #% chance to be able to Chain when colliding with terrain per Searching Eye Jewel affecting you, up to a maximum of 20%", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1698276268", + ["text"] = "Projectiles that have Chained gain #% of Non-Chaos Damage as extra Chaos Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2097195894", + ["text"] = "Punishment has no Reservation if Cast as an Aura", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1826480903", + ["text"] = "Purity of Elements has no Reservation", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1135152940", + ["text"] = "Purity of Fire has #% increased Mana Reservation Efficiency", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3003688066", + ["text"] = "Purity of Fire has #% increased Mana Reservation Efficiency", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3215042347", + ["text"] = "Purity of Fire has #% reduced Reservation", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2278589942", + ["text"] = "Purity of Fire has no Reservation", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_139925400", + ["text"] = "Purity of Ice has #% increased Mana Reservation Efficiency", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2665518524", + ["text"] = "Purity of Ice has #% increased Mana Reservation Efficiency", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3192966873", + ["text"] = "Purity of Ice has #% reduced Reservation", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1622979279", + ["text"] = "Purity of Ice has no Reservation", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1450978702", + ["text"] = "Purity of Lightning has #% increased Mana Reservation Efficiency", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3411256933", + ["text"] = "Purity of Lightning has #% increased Mana Reservation Efficiency", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1285430327", + ["text"] = "Purity of Lightning has #% reduced Reservation", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2308225900", + ["text"] = "Purity of Lightning has no Reservation", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2766423342", + ["text"] = "Queen's Demand can Trigger Level # Flames of Judgement", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_758006884", + ["text"] = "Queen's Demand can Trigger Level # Storm of Judgement", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_699756626", + ["text"] = "Quicksilver Flasks you Use also apply to nearby Allies", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1993898498", + ["text"] = "Radiant Ground created by Skills from this Graft grants Allies on it an additional # to # added Lightning Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1903477793", + ["text"] = "Rage grants Cast Speed instead of Attack Speed", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2933909365", + ["text"] = "Rage grants Spell Damage instead of Attack Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_16924183", + ["text"] = "Raise Zombie does not require a corpse", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1275218140", + ["text"] = "Raised Spectres fire # additional Projectiles", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3724637507", + ["text"] = "Raised Spectres have #% increased Area of Effect", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1862097882", + ["text"] = "Raised Spectres have #% increased Critical Strike Chance", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3035514623", + ["text"] = "Raised Spectres have #% increased maximum Life", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2341487846", + ["text"] = "Raised Spectres have +#% to Critical Strike Chance", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2472962676", + ["text"] = "Raised Spectres have +#% to all maximum Resistances", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1210937073", + ["text"] = "Raised Spectres have a Base Duration of # seconds Spectres do not travel between Areas", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_613525808", + ["text"] = "Raised Zombies Cover Enemies in Ash on Hit", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_568070507", + ["text"] = "Raised Zombies deal #% more Physical Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_927817294", + ["text"] = "Raised Zombies have #% increased maximum Life", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4116579804", + ["text"] = "Raised Zombies have +# to maximum Life", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3150000576", + ["text"] = "Raised Zombies have +#% to all Resistances", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1474437010", + ["text"] = "Raised Zombies have Avatar of Fire", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3733496041", + ["text"] = "Raised Zombies take #% of their Maximum Life per second as Fire Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2397408229", + ["text"] = "Rampage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1306304169", + ["text"] = "Randomly encountered Masters in your Maps have #% increased chance to be Zana Master Missions from completing your Maps have #% increased chance to be Zana", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3097206473", + ["text"] = "Rare Breach Monsters drop an additional Splinter", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1293790340", + ["text"] = "Rare Maps found in your Maps have #% chance to be Corrupted", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3628993863", + ["text"] = "Rare Monsters are Hindered, with #% reduced Movement Speed", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3190223614", + ["text"] = "Rare Monsters drop an additional Rare Item", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2550456553", + ["text"] = "Rare Monsters each have # additional Modifier", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4157714333", + ["text"] = "Rare Monsters from Breaches have a #% chance to Drop a Breach Ring", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3266549586", + ["text"] = "Rare Monsters have #% chance to drop a Rare Prismatic Ring", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1706239920", + ["text"] = "Rare Monsters have #% chance to have a Volatile Core", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_118849615", + ["text"] = "Rare Monsters have #% chance to spawn a Duplicate of Map Boss on Death", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2220602676", + ["text"] = "Rare Monsters have Essence effects", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2550456553", + ["text"] = "Rare Monsters in your Maps have # additional Modifier", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3458597256", + ["text"] = "Rare Monsters in your Maps have #% chance to drop an additional Basic Currency Item", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1189717666", + ["text"] = "Rare Monsters in your Maps have #% chance to drop an additional Gem with Quality", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2804918815", + ["text"] = "Rare Monsters in your Maps have #% chance to drop an additional Rare Armour Item", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4028855406", + ["text"] = "Rare Monsters in your Maps have #% chance to drop an additional Rare Jewellery Item", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2737229970", + ["text"] = "Rare Monsters in your Maps have #% chance to drop an additional Rare Weapon", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_829341851", + ["text"] = "Rare Monsters in your Maps have #% increased chance to drop Scarabs per Monster Modifier affecting them", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1745401062", + ["text"] = "Rare and Unique Crucible Monsters have #% chance to drop a Melee Weapon with a Crucible Passive Skill Tree", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3243514586", + ["text"] = "Rare and Unique Crucible Monsters have #% chance to drop a Ranged Weapon with a Crucible Passive Skill Tree", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1131820918", + ["text"] = "Rare and Unique Crucible Monsters have #% chance to drop a Shield with a Crucible Passive Skill Tree", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2543266731", + ["text"] = "Rare and Unique Enemies within 120 metres have Minimap Icons", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2168365746", + ["text"] = "Rare and Unique Monsters found in Areas are Possessed and their Minions are Touched", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1777881400", + ["text"] = "Rare and Unique Monsters have #% chance to drop Divination Cards that grant Unique Weapons", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2779247747", + ["text"] = "Rare and Unique Monsters have #% chance to drop a Magmatic Ore", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_362579144", + ["text"] = "Rare and Unique Monsters in Area are Possessed by up to # Tormented Spirit and if Possessed their Minions are Touched", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3270788481", + ["text"] = "Rare and Unique Monsters remove #% of Life, Mana and Energy Shield from Players or their Minions on Hit", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1864874865", + ["text"] = "Rare and Unique monsters spawn a Tormented Spirit on reaching Low Life", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1593763475", + ["text"] = "Rare monsters in area Temporarily Revive on death", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2931889194", + ["text"] = "Rare monsters in area are Shaper-Touched", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2557247391", + ["text"] = "Recharges # Charge when you Consume an Ignited corpse", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2961372685", + ["text"] = "Recharges # Charge when you deal a Critical Strike", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3662336899", + ["text"] = "Recharges # Charge when you take a Critical Strike", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_825316273", + ["text"] = "Recoup #% of Damage Taken by your Totems as Life", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4074053582", + ["text"] = "Recoup Energy Shield instead of Life", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1073384532", + ["text"] = "Recover # Energy Shield when your Trap is triggered by an Enemy", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1678831767", + ["text"] = "Recover # Life when you Block", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4045269075", + ["text"] = "Recover # Life when you Ignite an Enemy", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1807705940", + ["text"] = "Recover # Life when you Suppress Spell Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3952196842", + ["text"] = "Recover # Life when your Trap is triggered by an Enemy", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2406605753", + ["text"] = "Recover #% of Energy Shield on Kill", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1606263610", + ["text"] = "Recover #% of Energy Shield when you Block", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2347201221", + ["text"] = "Recover #% of Energy Shield when you Kill an Enemy during Effect", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1996775727", + ["text"] = "Recover #% of Energy Shield when you lose a Spirit Charge", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4078194486", + ["text"] = "Recover #% of Life at the end of the Effect", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2023107756", + ["text"] = "Recover #% of Life on Kill", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2737492258", + ["text"] = "Recover #% of Life on Rampage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2629106530", + ["text"] = "Recover #% of Life on use", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_521653232", + ["text"] = "Recover #% of Life per Endurance Charge on use Lose all Endurance Charges on use", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2442647190", + ["text"] = "Recover #% of Life when you Block", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3883840239", + ["text"] = "Recover #% of Life when you Chill a non-Chilled Enemy", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3112776239", + ["text"] = "Recover #% of Life when you Ignite an Enemy", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1217476473", + ["text"] = "Recover #% of Life when you Kill an Enemy during Effect", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_305634887", + ["text"] = "Recover #% of Life when you lose a Spirit Charge", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3184268466", + ["text"] = "Recover #% of Life when you use a Flask", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1926816773", + ["text"] = "Recover #% of Life when you use a Mana Flask", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2992263716", + ["text"] = "Recover #% of Mana and Energy Shield when you Focus", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1030153674", + ["text"] = "Recover #% of Mana on Kill", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1604736568", + ["text"] = "Recover #% of Mana on Kill", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3247931236", + ["text"] = "Recover #% of Mana when you Kill an Enemy during Effect", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2524029637", + ["text"] = "Recover #% of Mana when you Shock an Enemy", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3041288981", + ["text"] = "Recover #% of your maximum Mana when you Block", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3681057026", + ["text"] = "Recover Energy Shield equal to #% of Armour when you Block", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3495989808", + ["text"] = "Recover Energy Shield equal to #% of Evasion Rating when you Block", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_307410279", + ["text"] = "Recover an additional #% of Flask's Life Recovery Amount over 10 seconds if used while not on Full Life", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3773225751", + ["text"] = "Red Beasts captured in your Maps have a #% chance to gain a Modifier that provides a chance to not be consumed when sacrificed at the Blood Altar", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_543949956", + ["text"] = "Red Beasts in your Maps have #% chance to appear in Pairs", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3190100548", + ["text"] = "Red Beasts in your Maps have #% chance to grant double Experience", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1595637549", + ["text"] = "Red Beasts in your Maps have #% increased chance to be from The Caverns", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_59091266", + ["text"] = "Red Beasts in your Maps have #% increased chance to be from The Deep", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2436491720", + ["text"] = "Red Beasts in your Maps have #% increased chance to be from The Sands", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3090817208", + ["text"] = "Red Beasts in your Maps have #% increased chance to be from The Wilds", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_615884286", + ["text"] = "Reflect Shocks applied to you to all Nearby Enemies", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_189451991", + ["text"] = "Reflects # Chaos Damage to Melee Attackers", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4235886357", + ["text"] = "Reflects # Cold Damage to Melee Attackers", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3815724042", + ["text"] = "Reflects # Fire Damage to Attackers on Block", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1757945818", + ["text"] = "Reflects # Fire Damage to Melee Attackers", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1810011556", + ["text"] = "Reflects # Lightning Damage to Attackers on Block", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3868184702", + ["text"] = "Reflects # Lightning Damage to Melee Attackers", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3767873853", + ["text"] = "Reflects # Physical Damage to Melee Attackers", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1243237244", + ["text"] = "Reflects # to # Lightning Damage to Melee Attackers", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1445684883", + ["text"] = "Reflects # to # Physical Damage to Attackers on Block", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2970307386", + ["text"] = "Reflects # to # Physical Damage to Melee Attackers", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_746505085", + ["text"] = "Reflects opposite Ring", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3063495090", + ["text"] = "Regal Orbs found in your Maps have #% chance to drop as a stack of 5 Regal Orbs instead", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_948687156", + ["text"] = "Regenerate # Energy Shield per Second per Poison on you, up to 400 per second", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1330109706", + ["text"] = "Regenerate # Energy Shield per second", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2561836520", + ["text"] = "Regenerate # Energy Shield per second", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4156715241", + ["text"] = "Regenerate # Energy Shield per second if all Equipped items are Corrupted", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2238019079", + ["text"] = "Regenerate # Energy Shield per second while a Rare or Unique Enemy is Nearby", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1955882986", + ["text"] = "Regenerate # Life over 1 second when you Cast a Spell", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3489570622", + ["text"] = "Regenerate # Life per Second while affected by Vitality", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_550848224", + ["text"] = "Regenerate # Life per Second while in Blood Stance", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2161482953", + ["text"] = "Regenerate # Life per Second while on Low Life", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2589482056", + ["text"] = "Regenerate # Life per Second while you have Avian's Flight", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3325883026", + ["text"] = "Regenerate # Life per second", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_405941409", + ["text"] = "Regenerate # Life per second for each Uncorrupted Item Equipped", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2497198283", + ["text"] = "Regenerate # Life per second if no Equipped Items are Corrupted", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1704843611", + ["text"] = "Regenerate # Life per second if you have at least 1000 Maximum Energy Shield", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3227159962", + ["text"] = "Regenerate # Life per second if you have at least 1500 Maximum Energy Shield", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1103902353", + ["text"] = "Regenerate # Life per second if you have at least 500 Maximum Energy Shield", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1898967950", + ["text"] = "Regenerate # Life per second per Endurance Charge", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1384864963", + ["text"] = "Regenerate # Life per second per Level", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_952897668", + ["text"] = "Regenerate # Life per second while Ignited", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2841027131", + ["text"] = "Regenerate # Life per second while moving", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2042813020", + ["text"] = "Regenerate # Mana per Second per 10 Devotion", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4084763463", + ["text"] = "Regenerate # Mana per Second per Power Charge", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1495376076", + ["text"] = "Regenerate # Mana per Second while you have Avian's Flight", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4291461939", + ["text"] = "Regenerate # Mana per second", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2760138143", + ["text"] = "Regenerate # Mana per second if all Equipped Items are Corrupted", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2504632495", + ["text"] = "Regenerate #% Life over one second when Hit while Sane", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1366273824", + ["text"] = "Regenerate #% Life over one second when hit while affected by Vitality", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2900084972", + ["text"] = "Regenerate #% of Energy Shield over 2 seconds when you Consume a corpse", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_615595418", + ["text"] = "Regenerate #% of Energy Shield per Second for every 10 Intelligence on Allocated Passives in Radius", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_991194404", + ["text"] = "Regenerate #% of Energy Shield per Second while affected by Discipline", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3594640492", + ["text"] = "Regenerate #% of Energy Shield per second", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2160190507", + ["text"] = "Regenerate #% of Energy Shield per second if you've Consumed a Corpse Recently", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_588560583", + ["text"] = "Regenerate #% of Energy Shield per second if you've Hit an Enemy Recently", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_298613712", + ["text"] = "Regenerate #% of Energy Shield per second if you've dealt a Critical Strike with this weapon Recently", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1700808530", + ["text"] = "Regenerate #% of Energy Shield per second while Shocked", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_115109959", + ["text"] = "Regenerate #% of Energy Shield per second while on Low Life", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_836936635", + ["text"] = "Regenerate #% of Life per second", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_871270154", + ["text"] = "Regenerate #% of Life per second during Effect", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3500911418", + ["text"] = "Regenerate #% of Life per second during any Flask Effect", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2841618445", + ["text"] = "Regenerate #% of Life per second for each Raised Zombie", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3491639130", + ["text"] = "Regenerate #% of Life per second for each different Ailment affecting you", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2201614328", + ["text"] = "Regenerate #% of Life per second if you have been Hit Recently", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1107877645", + ["text"] = "Regenerate #% of Life per second if you've Consumed a corpse Recently", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_710105516", + ["text"] = "Regenerate #% of Life per second on Chilled Ground", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1960833438", + ["text"] = "Regenerate #% of Life per second per 500 Maximum Energy Shield", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_989800292", + ["text"] = "Regenerate #% of Life per second per Endurance Charge", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2828673491", + ["text"] = "Regenerate #% of Life per second per Frenzy Charge", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3961213398", + ["text"] = "Regenerate #% of Life per second per Power Charge", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2656696317", + ["text"] = "Regenerate #% of Life per second while Frozen", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1165583295", + ["text"] = "Regenerate #% of Life per second while affected by Vitality", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_908516597", + ["text"] = "Regenerate #% of Life per second while moving", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3942946753", + ["text"] = "Regenerate #% of Life per second while on Low Life", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1173027373", + ["text"] = "Regenerate #% of Life per second with at least 400 Strength", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3721828090", + ["text"] = "Regenerate #% of Mana over 2 seconds when you Consume a corpse", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3188455409", + ["text"] = "Regenerate #% of Mana per second", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1309492287", + ["text"] = "Regenerate #% of Mana per second if you've Consumed a corpse Recently", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2602865453", + ["text"] = "Regenerate #% of Mana per second if you've Hit an Enemy Recently", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4103111421", + ["text"] = "Regenerate 1 Rage per second for every # Life Recovery per second from Regeneration Does not delay Inherent Loss of Rage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1339532482", + ["text"] = "Reinforcements have #% increased Attack Speed", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1843941387", + ["text"] = "Reinforcements have #% increased Cast Speed", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1342271987", + ["text"] = "Reinforcements have #% increased Movement Speed", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.pseudo_timeless_jewel_medved", + ["text"] = "Remembrancing # songworthy deeds by the line of Medved", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.pseudo_timeless_jewel_uhtred", + ["text"] = "Remembrancing # songworthy deeds by the line of Uhtred", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.pseudo_timeless_jewel_vorana", + ["text"] = "Remembrancing # songworthy deeds by the line of Vorana", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1871805225", + ["text"] = "Remnants have #% chance to have an additional Suffix Modifier", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1871805225", + ["text"] = "Remnants in your Maps have #% chance to have an additional Suffix Modifier", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3296873305", + ["text"] = "Remove Chill and Freeze when you use a Flask", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1162425204", + ["text"] = "Remove Ignite and Burning when you use a Flask", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_561861132", + ["text"] = "Remove Shock when you use a Flask", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2917587077", + ["text"] = "Remove an Ailment when you use a Flask if all Equipped Items are Elder Items", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_648019518", + ["text"] = "Removes #% of Life Recovered from Mana when used", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3860231079", + ["text"] = "Removes #% of Life when Used", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_959641748", + ["text"] = "Removes #% of Mana Recovered from Life when used", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2917449574", + ["text"] = "Removes #% of your maximum Energy Shield on use", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2202201823", + ["text"] = "Removes Bleeding when you use a Flask", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3936926420", + ["text"] = "Removes Bleeding when you use a Warcry", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3895393544", + ["text"] = "Removes Curses on use", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_627889781", + ["text"] = "Removes Elemental Ailments on Rampage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1482608021", + ["text"] = "Removes all Energy Shield", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4120779321", + ["text"] = "Removes all but one Life on use Removed life is Regenerated as Energy Shield over # seconds", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2282052746", + ["text"] = "Rerolling Favours at Ritual Altars in your Maps costs #% increased Tribute", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2492660287", + ["text"] = "Reserves #% of Life", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3943945975", + ["text"] = "Resolute Technique", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3303551725", + ["text"] = "Restless Dead", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2547149004", + ["text"] = "Retaliation Skills become Usable for #% longer", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1531617714", + ["text"] = "Retaliation Skills deal #% increased Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1173860008", + ["text"] = "Retaliation Skills have #% increased Cooldown Recovery Rate", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1390113017", + ["text"] = "Reward Room Monsters deal #% increased Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_839556554", + ["text"] = "Reward Room Monsters take #% increased Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4056408881", + ["text"] = "Reward Rooms have #% increased Monsters", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3360430812", + ["text"] = "Rhoa Feather Lure", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1809329372", + ["text"] = "Right Ring Slot: Your Shocking Skitterbot's Aura applies Socketed Hex Curse instead", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3536082205", + ["text"] = "Right Ring slot: Cover Enemies in Frost for # seconds when you Freeze them", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3829555156", + ["text"] = "Right ring slot: #% of Physical Hit Damage from you and your Minions cannot be Reflected", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1223912433", + ["text"] = "Right ring slot: +# to Armour", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_417509375", + ["text"] = "Right ring slot: +# to maximum Mana", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1555918911", + ["text"] = "Right ring slot: Projectiles from Spells Chain +# times", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2933024469", + ["text"] = "Right ring slot: Projectiles from Spells cannot Fork", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3676958605", + ["text"] = "Right ring slot: Regenerate #% of Energy Shield per second", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_651133374", + ["text"] = "Right ring slot: Shockwave has +# to Cooldown Uses", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_783864527", + ["text"] = "Right ring slot: You cannot Regenerate Mana", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2651470813", + ["text"] = "Rightmost # Magic Utility Flask constantly applies its Flask Effect to you", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_120737942", + ["text"] = "Ritual Altars in Area allow rerolling Favours an additional time", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_120737942", + ["text"] = "Ritual Altars in your Maps allow rerolling Favours an additional time", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2219456349", + ["text"] = "Ritual Altars in your Maps can have #% increased number of Spawned Monsters at once", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2428948876", + ["text"] = "Ritual Altars in your Maps spawn Monsters #% faster", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1724306833", + ["text"] = "Ritual Splinters offered at Ritual Altars in your Maps have #% increased Stack Size", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1080855680", + ["text"] = "Rogue Exiles deal #% increased Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_600723636", + ["text"] = "Rogue Exiles drop # additional Basic Currency Items", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4143730600", + ["text"] = "Rogue Exiles drop an additional Jewel", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3795004497", + ["text"] = "Rogue Exiles each drop a Skill Gem with Quality", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2653164718", + ["text"] = "Rogue Exiles each have a Rogue Exile ally", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_399295164", + ["text"] = "Rogue Exiles have #% increased Attack, Cast and Movement Speed", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2008953542", + ["text"] = "Rogue Exiles have #% more Rarity of Items Dropped", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2646493318", + ["text"] = "Rogue Exiles in your Maps have #% chance to drop an additional Currency Item", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1379148633", + ["text"] = "Rogue's Markers, Contracts and Blueprints cannot be found in Your Maps", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4080245957", + ["text"] = "Runebinder", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_795239488", + ["text"] = "Runic Monsters deal #% more Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_120845723", + ["text"] = "Runic Monsters have #% more Life", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_613752285", + ["text"] = "Sacrifice #% of Life to gain that much Energy Shield when you Cast a Spell", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_545408899", + ["text"] = "Sacrifice #% of your Life when you Use or Trigger a Spell Skill", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1849225887", + ["text"] = "Scarabs dropped in Area have #% increased chance to be Abyss Scarabs", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_723578929", + ["text"] = "Scarabs dropped in Area have #% increased chance to be Anarchy Scarabs", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_9949109", + ["text"] = "Scarabs dropped in Area have #% increased chance to be Bestiary Scarabs", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1048062553", + ["text"] = "Scarabs dropped in Area have #% increased chance to be Betrayal Scarabs", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2507275343", + ["text"] = "Scarabs dropped in Area have #% increased chance to be Beyond Scarabs", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3866432319", + ["text"] = "Scarabs dropped in Area have #% increased chance to be Blight Scarabs", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1762451150", + ["text"] = "Scarabs dropped in Area have #% increased chance to be Cartography Scarabs", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1571899068", + ["text"] = "Scarabs dropped in Area have #% increased chance to be Delirium Scarabs", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1684527465", + ["text"] = "Scarabs dropped in Area have #% increased chance to be Divination Scarabs", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2477998669", + ["text"] = "Scarabs dropped in Area have #% increased chance to be Domination Scarabs", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_751635784", + ["text"] = "Scarabs dropped in Area have #% increased chance to be Essence Scarabs", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_46751559", + ["text"] = "Scarabs dropped in Area have #% increased chance to be Expedition Scarabs", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1560748306", + ["text"] = "Scarabs dropped in Area have #% increased chance to be Harbinger Scarabs", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_316950976", + ["text"] = "Scarabs dropped in Area have #% increased chance to be Harvest Scarabs", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1215465898", + ["text"] = "Scarabs dropped in Area have #% increased chance to be Incursion Scarabs", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3346769137", + ["text"] = "Scarabs dropped in Area have #% increased chance to be Kalguuran Scarabs", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1858240316", + ["text"] = "Scarabs dropped in Area have #% increased chance to be Legion Scarabs", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2810822634", + ["text"] = "Scarabs dropped in Area have #% increased chance to be Ritual Scarabs", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1395445308", + ["text"] = "Scarabs dropped in Area have #% increased chance to be Sulphite Scarabs", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2584308379", + ["text"] = "Scarabs dropped in Area have #% increased chance to be Titanic Scarabs", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3070577277", + ["text"] = "Scarabs dropped in Area have #% increased chance to be Torment Scarabs", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2263557454", + ["text"] = "Scarabs dropped in Area have #% increased chance to be Ultimatum Scarabs", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1849225887", + ["text"] = "Scarabs dropped in your Maps have #% increased chance to be Abyss Scarabs", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_723578929", + ["text"] = "Scarabs dropped in your Maps have #% increased chance to be Anarchy Scarabs", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_9949109", + ["text"] = "Scarabs dropped in your Maps have #% increased chance to be Bestiary Scarabs", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1048062553", + ["text"] = "Scarabs dropped in your Maps have #% increased chance to be Betrayal Scarabs", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2507275343", + ["text"] = "Scarabs dropped in your Maps have #% increased chance to be Beyond Scarabs", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3866432319", + ["text"] = "Scarabs dropped in your Maps have #% increased chance to be Blight Scarabs", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1762451150", + ["text"] = "Scarabs dropped in your Maps have #% increased chance to be Cartography Scarabs", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1571899068", + ["text"] = "Scarabs dropped in your Maps have #% increased chance to be Delirium Scarabs", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1684527465", + ["text"] = "Scarabs dropped in your Maps have #% increased chance to be Divination Scarabs", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2477998669", + ["text"] = "Scarabs dropped in your Maps have #% increased chance to be Domination Scarabs", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_751635784", + ["text"] = "Scarabs dropped in your Maps have #% increased chance to be Essence Scarabs", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_46751559", + ["text"] = "Scarabs dropped in your Maps have #% increased chance to be Expedition Scarabs", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1560748306", + ["text"] = "Scarabs dropped in your Maps have #% increased chance to be Harbinger Scarabs", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_316950976", + ["text"] = "Scarabs dropped in your Maps have #% increased chance to be Harvest Scarabs", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1215465898", + ["text"] = "Scarabs dropped in your Maps have #% increased chance to be Incursion Scarabs", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3346769137", + ["text"] = "Scarabs dropped in your Maps have #% increased chance to be Kalguuran Scarabs", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1858240316", + ["text"] = "Scarabs dropped in your Maps have #% increased chance to be Legion Scarabs", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2810822634", + ["text"] = "Scarabs dropped in your Maps have #% increased chance to be Ritual Scarabs", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1395445308", + ["text"] = "Scarabs dropped in your Maps have #% increased chance to be Sulphite Scarabs", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2584308379", + ["text"] = "Scarabs dropped in your Maps have #% increased chance to be Titanic Scarabs", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3070577277", + ["text"] = "Scarabs dropped in your Maps have #% increased chance to be Torment Scarabs", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2263557454", + ["text"] = "Scarabs dropped in your Maps have #% increased chance to be Ultimatum Scarabs", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3017211510", + ["text"] = "Scarabs found in Area have #% increased chance to be Ambush Scarabs", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2789471089", + ["text"] = "Scarabs found in your Maps are more likely to be less common varieties", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1978710645", + ["text"] = "Scarabs found in your Maps cannot be Abyss Scarabs", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_785938790", + ["text"] = "Scarabs found in your Maps cannot be Blight Scarabs", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1089629910", + ["text"] = "Scarabs found in your Maps cannot be Breach Scarabs", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_278421201", + ["text"] = "Scarabs found in your Maps cannot be Delirium Scarabs", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3965835074", + ["text"] = "Scarabs found in your Maps cannot be Expedition Scarabs", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_388787643", + ["text"] = "Scarabs found in your Maps cannot be Harvest Scarabs", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3777973541", + ["text"] = "Scarabs found in your Maps cannot be Legion Scarabs", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1693489030", + ["text"] = "Scarabs found in your Maps cannot be Ritual Scarabs", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_264552782", + ["text"] = "Scarabs found in your Maps cannot be Ultimatum Scarabs", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3017211510", + ["text"] = "Scarabs found in your Maps have #% increased chance to be Ambush Scarabs", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_41178696", + ["text"] = "Scorch Enemies in Close Range when you Block", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_385266470", + ["text"] = "Seize the Flesh used by this Graft creates +# Spire", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_650630047", + ["text"] = "Sentinels of Purity deal #% increased Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1881314095", + ["text"] = "Share Endurance Charges with nearby party members", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_956038713", + ["text"] = "Shared Suffering", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2038577923", + ["text"] = "Shepherd of Souls", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2206792089", + ["text"] = "Shock Enemies as though dealing #% more Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_451866048", + ["text"] = "Shock Enemies as though dealing #% more Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3291999509", + ["text"] = "Shock Reflection", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3031766858", + ["text"] = "Shock nearby Enemies for # Seconds when you Focus", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3181879507", + ["text"] = "Shock yourself for # Seconds when you Focus", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2706994884", + ["text"] = "Shocked Enemies you Kill Explode, dealing #% of their Life as Lightning Damage which cannot Shock", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1712740586", + ["text"] = "Shocks from your Hits always increase Damage taken by at least #%", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3446170049", + ["text"] = "Shocks nearby Enemies during Effect, causing 10% increased Damage taken", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_807955413", + ["text"] = "Shocks you cause are reflected back to you", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_911839512", + ["text"] = "Shocks you inflict during Effect spread to other Enemies within # metre", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_424549222", + ["text"] = "Shocks you inflict spread to other Enemies within # metre", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1640259660", + ["text"] = "Shocks you inflict spread to other Enemies within 1.5 metres", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4256314560", + ["text"] = "Shocks you when you reach Maximum Power Charges", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1124661381", + ["text"] = "Shrapnel Ballista has +# to maximum number of Summoned Totems per 200 Strength", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2305944553", + ["text"] = "Shrines drop a Basic Currency Item when used", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1594755360", + ["text"] = "Shrines grant a random additional Shrine Effect", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2167121354", + ["text"] = "Shrines in your Maps are guarded by at least one Magic Pack", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1594755360", + ["text"] = "Shrines in your Maps grant a random additional Shrine Effect", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2831543675", + ["text"] = "Shrines in your Maps have #% chance to be a Covetous Shrine", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1751949663", + ["text"] = "Shrines in your Maps have #% chance to be guarded by an additional Pack of Monsters", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2125178364", + ["text"] = "Siege Ballista has +# to maximum number of Summoned Totems per 200 Dexterity", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1475598909", + ["text"] = "Skeletons gain Added Chaos Damage equal to #% of Maximum Energy Shield on your Equipped Shield", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1787073323", + ["text"] = "Skills Chain +# times", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_285624304", + ["text"] = "Skills Chain an additional time while at maximum Frenzy Charges", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_89922905", + ["text"] = "Skills Cost Energy Shield instead of Mana or Life", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1669220541", + ["text"] = "Skills Cost no Mana during Effect", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1031404836", + ["text"] = "Skills Fire # additional Projectile for 4 seconds after you consume a total of 8 Steel Shards", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1504513372", + ["text"] = "Skills Supported by Unleash have #% increased Seal gain frequency", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2023285759", + ["text"] = "Skills deal #% more Damage for each Warcry Exerting them", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_74338099", + ["text"] = "Skills fire an additional Projectile", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_323705912", + ["text"] = "Skills fire an additional Projectile during Effect", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3778002979", + ["text"] = "Skills fire an additional Projectile if 6 Hunter Items are Equipped", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_988207959", + ["text"] = "Skills fire an additional Projectile if you've been Hit Recently", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2809802678", + ["text"] = "Skills fire an additional Projectile if you've used a Movement Skill Recently", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_820155465", + ["text"] = "Skills gain Added Chaos Damage equal to #% of Mana Cost, if Mana Cost is not higher than the maximum you could spend", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4013794060", + ["text"] = "Skills gain a Base Energy Shield Cost equal to #% of Base Mana Cost", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3605834869", + ["text"] = "Skills gain a Base Life Cost equal to #% of Base Mana Cost", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3528761893", + ["text"] = "Skills have +#% to Critical Strike Chance for each Warcry Exerting them", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1264919148", + ["text"] = "Skills supported by Unleash have +# to maximum number of Seals", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1870732546", + ["text"] = "Skills that Summon a Totem have #% chance to Summon two Totems instead of one", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3954265754", + ["text"] = "Skills that leave Lingering Blades have +# to Maximum Lingering Blades", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2228913626", + ["text"] = "Skills used by Mines have #% increased Area of Effect", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3959546773", + ["text"] = "Skills used by Spectral Totems deal #% more Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4050593908", + ["text"] = "Skills used by Traps have #% increased Area of Effect", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2752930426", + ["text"] = "Skills used by this Graft Gain #% of Cold Damage as Extra Chaos Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2506782284", + ["text"] = "Skills used by this Graft Gain #% of Fire Damage as Extra Chaos Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_9906535", + ["text"] = "Skills used by this Graft Gain #% of Lightning Damage as Extra Chaos Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3626715014", + ["text"] = "Skills used by this Graft Shock Enemies as though dealing #% more Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2810785117", + ["text"] = "Skills used by this Graft cause an additional lightning bolt strike", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3686635598", + ["text"] = "Skills used by this Graft deal #% increased Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3781496089", + ["text"] = "Skills used by this Graft deal #% increased Damage against Ignited Enemies", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1662209485", + ["text"] = "Skills used by this Graft deal #% more Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4064732043", + ["text"] = "Skills used by this Graft deal #% more Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3395681357", + ["text"] = "Skills used by this Graft deal #% more Damage to Frozen Enemies", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2858824325", + ["text"] = "Skills used by this Graft fire an additional Projectile", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_613591578", + ["text"] = "Skills used by this Graft have #% chance to Cover Enemies in Ash on Hit", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1987305786", + ["text"] = "Skills used by this Graft have #% chance to Cover Enemies in Frost on Hit", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_668072950", + ["text"] = "Skills used by this Graft have #% chance to Crush on Hit", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3732269294", + ["text"] = "Skills used by this Graft have #% chance to Freeze", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_158467587", + ["text"] = "Skills used by this Graft have #% chance to Ignite", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1790471105", + ["text"] = "Skills used by this Graft have #% chance to Intimidate on Hit", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2376903385", + ["text"] = "Skills used by this Graft have #% chance to Shock", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2418139890", + ["text"] = "Skills used by this Graft have #% chance to Unnerve on Hit", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2150059749", + ["text"] = "Skills used by this Graft have #% chance to ignore Enemy Physical Damage Reduction", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3285341404", + ["text"] = "Skills used by this Graft have #% chance to inflict Conductivity on Hit", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3069466464", + ["text"] = "Skills used by this Graft have #% chance to inflict Fire Exposure on Hit", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1593675162", + ["text"] = "Skills used by this Graft have #% chance to inflict Frostbite on Hit", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2375092881", + ["text"] = "Skills used by this Graft have #% chance to inflict Lightning Exposure on Hit", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1245902490", + ["text"] = "Skills used by this Graft have #% chance to inflict Punishment on Hit", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3989101809", + ["text"] = "Skills used by this Graft have #% chance to inflict Vulnerability on Hit", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2520970416", + ["text"] = "Skills used by this Graft have #% chance to not consume a Cooldown on use", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_137115575", + ["text"] = "Skills used by this Graft have #% increased Area of Effect", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3533780673", + ["text"] = "Skills used by this Graft have #% increased Chaining range", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1053840971", + ["text"] = "Skills used by this Graft have #% increased Cooldown Recovery Rate", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1443956585", + ["text"] = "Skills used by this Graft have #% increased Critical Strike Chance", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1501454660", + ["text"] = "Skills used by this Graft have #% increased Impale Effect", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_76615773", + ["text"] = "Skills used by this Graft have #% increased Projectile Speed", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_261121382", + ["text"] = "Skills used by this Graft have #% increased Skill Effect Duration", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3150918189", + ["text"] = "Skills used by this Graft have #% increased Stun Duration", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_308139248", + ["text"] = "Skills used by this Graft have #% increased effect of Non-Damaging Ailments", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4013357916", + ["text"] = "Skills used by this Graft have +#% to Critical Strike Multiplier", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4063492405", + ["text"] = "Skills used by this Graft penetrate #% Enemy Cold Resistance", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2425071139", + ["text"] = "Skills used by this Graft penetrate #% Enemy Fire Resistance", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4236519263", + ["text"] = "Skills used by this Graft penetrate #% Enemy Lightning Resistance", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2999750998", + ["text"] = "Skills used by your Traps and Mines Chain an additional time", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2538411280", + ["text"] = "Skills which Exert an Attack have #% chance to not count that Attack", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4001105802", + ["text"] = "Skills which Throw Traps have +# Cooldown Use", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1220800126", + ["text"] = "Skills which Throw Traps throw up to 1 additional Trap", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1917661185", + ["text"] = "Skills which throw Mines throw up to 1 additional Mine if you have at least 800 Dexterity", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_5955083", + ["text"] = "Skills which throw Mines throw up to 1 additional Mine if you have at least 800 Intelligence", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2420786978", + ["text"] = "Skills which throw Traps Cost Life instead of Mana", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1837040413", + ["text"] = "Slaying Enemies close together can attract monsters from Beyond this realm", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3036422124", + ["text"] = "Slaying Enemies has a #% increased chance to spawn a Beyond Portal", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_452077019", + ["text"] = "Slaying Enemies in a kill streak grants Rampage bonuses", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3036422124", + ["text"] = "Slaying Enemies in your Maps has a #% increased chance to spawn a Beyond Portal", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2863957119", + ["text"] = "Smuggler's Caches drop #% more Rogue Markers for each Smuggler's Cache opened in the Area", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_833254006", + ["text"] = "Smuggler's Caches have #% chance to Duplicate contained Rogue's Markers", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3343561142", + ["text"] = "Smuggler's Caches in area are guarded", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3556555275", + ["text"] = "Smuggler's Caches in your Maps have #% increased chance to contain Blueprints for each Smuggler's Cache opened in the Map", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2018889940", + ["text"] = "Smuggler's Caches in your Maps have #% increased chance to drop Blueprints", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_470630932", + ["text"] = "Smuggler's Caches in your Maps have #% increased chance to drop Contracts", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2264586521", + ["text"] = "Socketed Attacks have +# to Total Mana Cost", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2867348718", + ["text"] = "Socketed Attacks have +#% to Critical Strike Chance", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_356456977", + ["text"] = "Socketed Attacks have +#% to Critical Strike Multiplier", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1471600638", + ["text"] = "Socketed Curse Gems have #% increased Reservation Efficiency", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2788729902", + ["text"] = "Socketed Gems Chain # additional times", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1104246401", + ["text"] = "Socketed Gems Cost and Reserve Life instead of Mana", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_support_128", + ["text"] = "Socketed Gems are Supported by Level # Added Chaos Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_411460446", + ["text"] = "Socketed Gems are Supported by Level # Added Chaos Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_support_127", + ["text"] = "Socketed Gems are Supported by Level # Added Cold Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4020144606", + ["text"] = "Socketed Gems are Supported by Level # Added Cold Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_support_126", + ["text"] = "Socketed Gems are Supported by Level # Added Fire Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2572192375", + ["text"] = "Socketed Gems are Supported by Level # Added Fire Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_support_125", + ["text"] = "Socketed Gems are Supported by Level # Added Lightning Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1647529598", + ["text"] = "Socketed Gems are Supported by Level # Added Lightning Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_support_124", + ["text"] = "Socketed Gems are Supported by Level # Additional Accuracy", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_support_6", + ["text"] = "Socketed Gems are Supported by Level # Advanced Traps", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3839163699", + ["text"] = "Socketed Gems are Supported by Level # Advanced Traps", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_support_14", + ["text"] = "Socketed Gems are Supported by Level # Ancestral Call", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_696805682", + ["text"] = "Socketed Gems are Supported by Level # Ancestral Call", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_833438017", + ["text"] = "Socketed Gems are Supported by Level # Annihilation", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_support_123", + ["text"] = "Socketed Gems are Supported by Level # Arcane Surge", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2287264161", + ["text"] = "Socketed Gems are Supported by Level # Arcane Surge", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_support_122", + ["text"] = "Socketed Gems are Supported by Level # Archmage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3652278215", + ["text"] = "Socketed Gems are Supported by Level # Archmage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_support_116", + ["text"] = "Socketed Gems are Supported by Level # Arrogance", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3922006600", + ["text"] = "Socketed Gems are Supported by Level # Arrogance", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_support_121", + ["text"] = "Socketed Gems are Supported by Level # Arrow Nova", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1331336999", + ["text"] = "Socketed Gems are Supported by Level # Arrow Nova", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2722592119", + ["text"] = "Socketed Gems are Supported by Level # Awakened Added Chaos Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2509486489", + ["text"] = "Socketed Gems are Supported by Level # Awakened Added Cold Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_339131601", + ["text"] = "Socketed Gems are Supported by Level # Awakened Added Fire Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3429304534", + ["text"] = "Socketed Gems are Supported by Level # Awakened Added Lightning Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4055526353", + ["text"] = "Socketed Gems are Supported by Level # Awakened Ancestral Call", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1046449631", + ["text"] = "Socketed Gems are Supported by Level # Awakened Blasphemy", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3610200044", + ["text"] = "Socketed Gems are Supported by Level # Awakened Brutality", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_493707013", + ["text"] = "Socketed Gems are Supported by Level # Awakened Burning Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2249251344", + ["text"] = "Socketed Gems are Supported by Level # Awakened Chain", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1889095429", + ["text"] = "Socketed Gems are Supported by Level # Awakened Cold Penetration", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_271119551", + ["text"] = "Socketed Gems are Supported by Level # Awakened Controlled Destruction", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1621366871", + ["text"] = "Socketed Gems are Supported by Level # Awakened Deadly Ailments", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1786672841", + ["text"] = "Socketed Gems are Supported by Level # Awakened Elemental Damage With Attacks", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2111661233", + ["text"] = "Socketed Gems are Supported by Level # Awakened Elemental Focus", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3739157305", + ["text"] = "Socketed Gems are Supported by Level # Awakened Empower", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2133566731", + ["text"] = "Socketed Gems are Supported by Level # Awakened Enhance", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_170274897", + ["text"] = "Socketed Gems are Supported by Level # Awakened Fire Penetration", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1803865171", + ["text"] = "Socketed Gems are Supported by Level # Awakened Fork", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1007586373", + ["text"] = "Socketed Gems are Supported by Level # Awakened Generosity", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1980028507", + ["text"] = "Socketed Gems are Supported by Level # Awakened Greater Multiple Projectiles", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2333301609", + ["text"] = "Socketed Gems are Supported by Level # Awakened Increased Area Of Effect", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1544223714", + ["text"] = "Socketed Gems are Supported by Level # Awakened Lightning Penetration", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2173069393", + ["text"] = "Socketed Gems are Supported by Level # Awakened Melee Physical Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2253550081", + ["text"] = "Socketed Gems are Supported by Level # Awakened Melee Splash", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2100048639", + ["text"] = "Socketed Gems are Supported by Level # Awakened Minion Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_511417258", + ["text"] = "Socketed Gems are Supported by Level # Awakened Multistrike", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2222752567", + ["text"] = "Socketed Gems are Supported by Level # Awakened Spell Cascade", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_48859060", + ["text"] = "Socketed Gems are Supported by Level # Awakened Spell Echo", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089933397", + ["text"] = "Socketed Gems are Supported by Level # Awakened Swift Affliction", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2116002108", + ["text"] = "Socketed Gems are Supported by Level # Awakened Unbound Ailments", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3428829446", + ["text"] = "Socketed Gems are Supported by Level # Awakened Unleash", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2647355055", + ["text"] = "Socketed Gems are Supported by Level # Awakened Vicious Projectiles", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1882929618", + ["text"] = "Socketed Gems are Supported by Level # Awakened Void Manipulation", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_support_27", + ["text"] = "Socketed Gems are Supported by Level # Ballista Totem", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3030692053", + ["text"] = "Socketed Gems are Supported by Level # Ballista Totem", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_support_120", + ["text"] = "Socketed Gems are Supported by Level # Barrage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3827538724", + ["text"] = "Socketed Gems are Supported by Level # Barrage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_support_140", + ["text"] = "Socketed Gems are Supported by Level # Behead", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1019145105", + ["text"] = "Socketed Gems are Supported by Level # Behead", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_support_119", + ["text"] = "Socketed Gems are Supported by Level # Blasphemy", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_539747809", + ["text"] = "Socketed Gems are Supported by Level # Blasphemy", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_support_23", + ["text"] = "Socketed Gems are Supported by Level # Blastchain Mine", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1710508327", + ["text"] = "Socketed Gems are Supported by Level # Blastchain Mine", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_support_170", + ["text"] = "Socketed Gems are Supported by Level # Blessed Call", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_support_118", + ["text"] = "Socketed Gems are Supported by Level # Blind", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1966051190", + ["text"] = "Socketed Gems are Supported by Level # Block Chance Reduction", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_support_117", + ["text"] = "Socketed Gems are Supported by Level # Bloodlust", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_804508379", + ["text"] = "Socketed Gems are Supported by Level # Bloodlust", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_support_135", + ["text"] = "Socketed Gems are Supported by Level # Bloodthirst", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_support_115", + ["text"] = "Socketed Gems are Supported by Level # Bonechill", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1859244771", + ["text"] = "Socketed Gems are Supported by Level # Bonechill", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_support_114", + ["text"] = "Socketed Gems are Supported by Level # Brutality", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_715256302", + ["text"] = "Socketed Gems are Supported by Level # Brutality", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_support_68", + ["text"] = "Socketed Gems are Supported by Level # Burning Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2680613507", + ["text"] = "Socketed Gems are Supported by Level # Burning Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_support_113", + ["text"] = "Socketed Gems are Supported by Level # Cast On Critical Strike", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3312593243", + ["text"] = "Socketed Gems are Supported by Level # Cast On Melee Kill", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1316646496", + ["text"] = "Socketed Gems are Supported by Level # Cast While Channelling", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_support_111", + ["text"] = "Socketed Gems are Supported by Level # Cast on Death", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_support_110", + ["text"] = "Socketed Gems are Supported by Level # Cast on Melee Kill", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_668102856", + ["text"] = "Socketed Gems are Supported by Level # Cast on Ward Break", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_support_112", + ["text"] = "Socketed Gems are Supported by Level # Cast when Damage Taken", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3036440332", + ["text"] = "Socketed Gems are Supported by Level # Cast when Damage Taken", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_support_109", + ["text"] = "Socketed Gems are Supported by Level # Cast when Stunned", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_support_108", + ["text"] = "Socketed Gems are Supported by Level # Cast while Channelling", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_support_107", + ["text"] = "Socketed Gems are Supported by Level # Chain", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2643665787", + ["text"] = "Socketed Gems are Supported by Level # Chain", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4197676934", + ["text"] = "Socketed Gems are Supported by Level # Chance To Bleed", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_support_106", + ["text"] = "Socketed Gems are Supported by Level # Chance to Bleed", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_support_81", + ["text"] = "Socketed Gems are Supported by Level # Chance to Flee", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_support_54", + ["text"] = "Socketed Gems are Supported by Level # Chance to Poison", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_228165595", + ["text"] = "Socketed Gems are Supported by Level # Chance to Poison", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_support_103", + ["text"] = "Socketed Gems are Supported by Level # Charged Mines", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1365328494", + ["text"] = "Socketed Gems are Supported by Level # Charged Mines", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_support_78", + ["text"] = "Socketed Gems are Supported by Level # Charged Traps", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_479453859", + ["text"] = "Socketed Gems are Supported by Level # Charged Traps", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_support_102", + ["text"] = "Socketed Gems are Supported by Level # Close Combat", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_694651314", + ["text"] = "Socketed Gems are Supported by Level # Close Combat", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2854183975", + ["text"] = "Socketed Gems are Supported by Level # Cluster Trap", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_support_101", + ["text"] = "Socketed Gems are Supported by Level # Cluster Traps", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_support_100", + ["text"] = "Socketed Gems are Supported by Level # Cold Penetration", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1991958615", + ["text"] = "Socketed Gems are Supported by Level # Cold Penetration", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_support_99", + ["text"] = "Socketed Gems are Supported by Level # Cold to Fire", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_550444281", + ["text"] = "Socketed Gems are Supported by Level # Cold to Fire", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_support_105", + ["text"] = "Socketed Gems are Supported by Level # Combustion", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1828254451", + ["text"] = "Socketed Gems are Supported by Level # Combustion", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2020568221", + ["text"] = "Socketed Gems are Supported by Level # Companionship", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_support_98", + ["text"] = "Socketed Gems are Supported by Level # Concentrated Effect", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2388360415", + ["text"] = "Socketed Gems are Supported by Level # Concentrated Effect", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1674086814", + ["text"] = "Socketed Gems are Supported by Level # Congregation", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_support_162", + ["text"] = "Socketed Gems are Supported by Level # Controlled Blaze", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_124226929", + ["text"] = "Socketed Gems are Supported by Level # Controlled Blaze", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_support_97", + ["text"] = "Socketed Gems are Supported by Level # Controlled Destruction", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3718597497", + ["text"] = "Socketed Gems are Supported by Level # Controlled Destruction", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_support_155", + ["text"] = "Socketed Gems are Supported by Level # Corrupting Cry", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3486166615", + ["text"] = "Socketed Gems are Supported by Level # Corrupting Cry", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_support_31", + ["text"] = "Socketed Gems are Supported by Level # Critical Strike Affliction", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2228279620", + ["text"] = "Socketed Gems are Supported by Level # Critical Strike Affliction", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_support_136", + ["text"] = "Socketed Gems are Supported by Level # Cruelty", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1679136", + ["text"] = "Socketed Gems are Supported by Level # Cruelty", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2252088501", + ["text"] = "Socketed Gems are Supported by Level # Cull the Weak", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_support_96", + ["text"] = "Socketed Gems are Supported by Level # Culling Strike", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1135493957", + ["text"] = "Socketed Gems are Supported by Level # Culling Strike", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_support_145", + ["text"] = "Socketed Gems are Supported by Level # Cursed Ground", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3998071134", + ["text"] = "Socketed Gems are Supported by Level # Cursed Ground", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2126431157", + ["text"] = "Socketed Gems are Supported by Level # Damage On Full Life", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_support_47", + ["text"] = "Socketed Gems are Supported by Level # Damage on Full Life", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_support_94", + ["text"] = "Socketed Gems are Supported by Level # Deadly Ailments", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_103909236", + ["text"] = "Socketed Gems are Supported by Level # Deadly Ailments", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_support_92", + ["text"] = "Socketed Gems are Supported by Level # Decay", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_388696990", + ["text"] = "Socketed Gems are Supported by Level # Decay", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_support_152", + ["text"] = "Socketed Gems are Supported by Level # Devour", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2820883532", + ["text"] = "Socketed Gems are Supported by Level # Devour", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3274973940", + ["text"] = "Socketed Gems are Supported by Level # Divine Blessing", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2755724036", + ["text"] = "Socketed Gems are Supported by Level # Divine Sentinel", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3207084920", + ["text"] = "Socketed Gems are Supported by Level # Eclipse", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_support_91", + ["text"] = "Socketed Gems are Supported by Level # Efficacy", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3924539382", + ["text"] = "Socketed Gems are Supported by Level # Efficacy", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_support_11", + ["text"] = "Socketed Gems are Supported by Level # Elemental Army", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_514705332", + ["text"] = "Socketed Gems are Supported by Level # Elemental Army Support", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_support_76", + ["text"] = "Socketed Gems are Supported by Level # Elemental Damage with Attacks", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_support_90", + ["text"] = "Socketed Gems are Supported by Level # Elemental Focus", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1169422227", + ["text"] = "Socketed Gems are Supported by Level # Elemental Focus", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1994143317", + ["text"] = "Socketed Gems are Supported by Level # Elemental Penetration", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_support_89", + ["text"] = "Socketed Gems are Supported by Level # Elemental Proliferation", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2929101122", + ["text"] = "Socketed Gems are Supported by Level # Elemental Proliferation", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3581578643", + ["text"] = "Socketed Gems are Supported by Level # Empower", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_support_88", + ["text"] = "Socketed Gems are Supported by Level # Endurance Charge on Melee Stun", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3375208082", + ["text"] = "Socketed Gems are Supported by Level # Endurance Charge on Melee Stun", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_support_87", + ["text"] = "Socketed Gems are Supported by Level # Energy Leech", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_799443127", + ["text"] = "Socketed Gems are Supported by Level # Energy Leech", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2556436882", + ["text"] = "Socketed Gems are Supported by Level # Enhance", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2065361612", + ["text"] = "Socketed Gems are Supported by Level # Enlighten", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_support_143", + ["text"] = "Socketed Gems are Supported by Level # Eternal Blessing", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3062849155", + ["text"] = "Socketed Gems are Supported by Level # Eternal Blessing", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_support_169", + ["text"] = "Socketed Gems are Supported by Level # Excommunicate", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1385879224", + ["text"] = "Socketed Gems are Supported by Level # Excommunicate", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_support_171", + ["text"] = "Socketed Gems are Supported by Level # Exemplar", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3370631451", + ["text"] = "Socketed Gems are Supported by Level # Exemplar", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_support_164", + ["text"] = "Socketed Gems are Supported by Level # Expert Retaliation", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3570337997", + ["text"] = "Socketed Gems are Supported by Level # Expert Retaliation", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_support_86", + ["text"] = "Socketed Gems are Supported by Level # Faster Attacks", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_928701213", + ["text"] = "Socketed Gems are Supported by Level # Faster Attacks", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_support_85", + ["text"] = "Socketed Gems are Supported by Level # Faster Casting", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2169938251", + ["text"] = "Socketed Gems are Supported by Level # Faster Casting", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_support_84", + ["text"] = "Socketed Gems are Supported by Level # Faster Projectiles", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_support_83", + ["text"] = "Socketed Gems are Supported by Level # Feeding Frenzy", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2269282877", + ["text"] = "Socketed Gems are Supported by Level # Feeding Frenzy", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_support_82", + ["text"] = "Socketed Gems are Supported by Level # Fire Penetration", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1979658770", + ["text"] = "Socketed Gems are Supported by Level # Fire Penetration", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3265951306", + ["text"] = "Socketed Gems are Supported by Level # Fire Penetration", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_support_129", + ["text"] = "Socketed Gems are Supported by Level # Fist of War", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2419657101", + ["text"] = "Socketed Gems are Supported by Level # Fist of War", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_support_154", + ["text"] = "Socketed Gems are Supported by Level # Flamewood", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_285773939", + ["text"] = "Socketed Gems are Supported by Level # Flamewood", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_support_138", + ["text"] = "Socketed Gems are Supported by Level # Focused Ballista", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_921536976", + ["text"] = "Socketed Gems are Supported by Level # Focused Ballista", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_support_165", + ["text"] = "Socketed Gems are Supported by Level # Focused Channelling", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1948535732", + ["text"] = "Socketed Gems are Supported by Level # Focused Channelling", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_support_80", + ["text"] = "Socketed Gems are Supported by Level # Fork", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_support_79", + ["text"] = "Socketed Gems are Supported by Level # Fortify", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_107118693", + ["text"] = "Socketed Gems are Supported by Level # Fortify", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_support_153", + ["text"] = "Socketed Gems are Supported by Level # Fresh Meat", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3713917371", + ["text"] = "Socketed Gems are Supported by Level # Fresh Meat", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_support_159", + ["text"] = "Socketed Gems are Supported by Level # Frigid Bond", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3031999964", + ["text"] = "Socketed Gems are Supported by Level # Frigid Bond", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_support_77", + ["text"] = "Socketed Gems are Supported by Level # Generosity", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2593773031", + ["text"] = "Socketed Gems are Supported by Level # Generosity", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2336972637", + ["text"] = "Socketed Gems are Supported by Level # Greater Fork", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_support_1", + ["text"] = "Socketed Gems are Supported by Level # Greater Multiple Projectiles", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_359450079", + ["text"] = "Socketed Gems are Supported by Level # Greater Multiple Projectiles", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3144811156", + ["text"] = "Socketed Gems are Supported by Level # Greater Multistrike", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2292610865", + ["text"] = "Socketed Gems are Supported by Level # Greater Spell Cascade", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3388448323", + ["text"] = "Socketed Gems are Supported by Level # Greater Spell Echo", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_90008414", + ["text"] = "Socketed Gems are Supported by Level # Greater Unleash", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_support_75", + ["text"] = "Socketed Gems are Supported by Level # Greater Volley", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2223565123", + ["text"] = "Socketed Gems are Supported by Level # Greater Volley", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_support_157", + ["text"] = "Socketed Gems are Supported by Level # Guardian's Blessing", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3434296257", + ["text"] = "Socketed Gems are Supported by Level # Guardian's Blessing", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_support_172", + ["text"] = "Socketed Gems are Supported by Level # Hallow", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_support_146", + ["text"] = "Socketed Gems are Supported by Level # Hex Bloom", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3199084318", + ["text"] = "Socketed Gems are Supported by Level # Hex Bloom", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3684412823", + ["text"] = "Socketed Gems are Supported by Level # Hexpass", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2172297405", + ["text"] = "Socketed Gems are Supported by Level # Hextoad", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_support_95", + ["text"] = "Socketed Gems are Supported by Level # Hextouch", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2697741965", + ["text"] = "Socketed Gems are Supported by Level # Hextouch", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_support_22", + ["text"] = "Socketed Gems are Supported by Level # High-Impact Mine", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2116100988", + ["text"] = "Socketed Gems are Supported by Level # High-Impact Mine", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_support_74", + ["text"] = "Socketed Gems are Supported by Level # Hypothermia", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_13669281", + ["text"] = "Socketed Gems are Supported by Level # Hypothermia", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_support_73", + ["text"] = "Socketed Gems are Supported by Level # Ice Bite", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1384629003", + ["text"] = "Socketed Gems are Supported by Level # Ice Bite", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_support_72", + ["text"] = "Socketed Gems are Supported by Level # Ignite Proliferation", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3593797653", + ["text"] = "Socketed Gems are Supported by Level # Ignite Proliferation", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_support_71", + ["text"] = "Socketed Gems are Supported by Level # Immolate", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2420410470", + ["text"] = "Socketed Gems are Supported by Level # Immolate", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_support_70", + ["text"] = "Socketed Gems are Supported by Level # Impale", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1900098804", + ["text"] = "Socketed Gems are Supported by Level # Impale", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_support_133", + ["text"] = "Socketed Gems are Supported by Level # Impending Doom", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3227145554", + ["text"] = "Socketed Gems are Supported by Level # Impending Doom", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_support_69", + ["text"] = "Socketed Gems are Supported by Level # Increased Area of Effect", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3720936304", + ["text"] = "Socketed Gems are Supported by Level # Increased Area of Effect", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_support_67", + ["text"] = "Socketed Gems are Supported by Level # Increased Critical Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_support_66", + ["text"] = "Socketed Gems are Supported by Level # Increased Critical Strikes", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2259700079", + ["text"] = "Socketed Gems are Supported by Level # Increased Critical Strikes", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_support_61", + ["text"] = "Socketed Gems are Supported by Level # Infernal Legion", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2201102274", + ["text"] = "Socketed Gems are Supported by Level # Infernal Legion", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_support_13", + ["text"] = "Socketed Gems are Supported by Level # Infused Channelling", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4048257027", + ["text"] = "Socketed Gems are Supported by Level # Infused Channelling", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_support_60", + ["text"] = "Socketed Gems are Supported by Level # Innervate", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1106668565", + ["text"] = "Socketed Gems are Supported by Level # Innervate", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_support_24", + ["text"] = "Socketed Gems are Supported by Level # Inspiration", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1866911844", + ["text"] = "Socketed Gems are Supported by Level # Inspiration", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_749770518", + ["text"] = "Socketed Gems are Supported by Level # Inspiration", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_support_16", + ["text"] = "Socketed Gems are Supported by Level # Intensify", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1792524915", + ["text"] = "Socketed Gems are Supported by Level # Intensify", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1876637240", + ["text"] = "Socketed Gems are Supported by Level # Intensify", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_28821524", + ["text"] = "Socketed Gems are Supported by Level # Intensify", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2475469642", + ["text"] = "Socketed Gems are Supported by Level # Invert the Rules", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_support_59", + ["text"] = "Socketed Gems are Supported by Level # Iron Grip", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_251446805", + ["text"] = "Socketed Gems are Supported by Level # Iron Grip", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_support_58", + ["text"] = "Socketed Gems are Supported by Level # Iron Will", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_906997920", + ["text"] = "Socketed Gems are Supported by Level # Iron Will", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_248646071", + ["text"] = "Socketed Gems are Supported by Level # Item Quantity", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_support_57", + ["text"] = "Socketed Gems are Supported by Level # Item Rarity", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3587013273", + ["text"] = "Socketed Gems are Supported by Level # Item Rarity", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_support_167", + ["text"] = "Socketed Gems are Supported by Level # Kinetic Instability", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_support_56", + ["text"] = "Socketed Gems are Supported by Level # Knockback", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4066711249", + ["text"] = "Socketed Gems are Supported by Level # Knockback", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_support_25", + ["text"] = "Socketed Gems are Supported by Level # Less Duration", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2487643588", + ["text"] = "Socketed Gems are Supported by Level # Less Duration", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2032386732", + ["text"] = "Socketed Gems are Supported by Level # Life Gain On Hit", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_support_53", + ["text"] = "Socketed Gems are Supported by Level # Life Gain on Hit", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_support_52", + ["text"] = "Socketed Gems are Supported by Level # Life Leech", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_support_137", + ["text"] = "Socketed Gems are Supported by Level # Lifetap", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1079239905", + ["text"] = "Socketed Gems are Supported by Level # Lifetap", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_support_51", + ["text"] = "Socketed Gems are Supported by Level # Lightning Penetration", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3354027870", + ["text"] = "Socketed Gems are Supported by Level # Lightning Penetration", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_support_168", + ["text"] = "Socketed Gems are Supported by Level # Living Lightning", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4096329121", + ["text"] = "Socketed Gems are Supported by Level # Living Lightning", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_support_160", + ["text"] = "Socketed Gems are Supported by Level # Locus Mine", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_support_50", + ["text"] = "Socketed Gems are Supported by Level # Maim", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3826977109", + ["text"] = "Socketed Gems are Supported by Level # Maim", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_support_49", + ["text"] = "Socketed Gems are Supported by Level # Mana Leech", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2608615082", + ["text"] = "Socketed Gems are Supported by Level # Mana Leech", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_support_147", + ["text"] = "Socketed Gems are Supported by Level # Manaforged Arrows", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4022502578", + ["text"] = "Socketed Gems are Supported by Level # Manaforged Arrows", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_support_141", + ["text"] = "Socketed Gems are Supported by Level # Mark On Hit", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3485498591", + ["text"] = "Socketed Gems are Supported by Level # Mark On Hit", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_support_48", + ["text"] = "Socketed Gems are Supported by Level # Meat Shield", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_858460086", + ["text"] = "Socketed Gems are Supported by Level # Meat Shield", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_support_46", + ["text"] = "Socketed Gems are Supported by Level # Melee Physical Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2985291457", + ["text"] = "Socketed Gems are Supported by Level # Melee Physical Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_support_45", + ["text"] = "Socketed Gems are Supported by Level # Melee Splash", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_support_44", + ["text"] = "Socketed Gems are Supported by Level # Minefield", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2805586447", + ["text"] = "Socketed Gems are Supported by Level # Minefield", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_support_64", + ["text"] = "Socketed Gems are Supported by Level # Minion Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_808939569", + ["text"] = "Socketed Gems are Supported by Level # Minion Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_support_63", + ["text"] = "Socketed Gems are Supported by Level # Minion Life", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1337327984", + ["text"] = "Socketed Gems are Supported by Level # Minion Life", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_991044906", + ["text"] = "Socketed Gems are Supported by Level # Minion Pact", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_support_62", + ["text"] = "Socketed Gems are Supported by Level # Minion Speed", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_995332031", + ["text"] = "Socketed Gems are Supported by Level # Minion Speed", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_support_43", + ["text"] = "Socketed Gems are Supported by Level # Mirage Archer", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3239503729", + ["text"] = "Socketed Gems are Supported by Level # Mirage Archer", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_support_37", + ["text"] = "Socketed Gems are Supported by Level # Momentum", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3237923082", + ["text"] = "Socketed Gems are Supported by Level # Momentum", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_support_65", + ["text"] = "Socketed Gems are Supported by Level # More Duration", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_407317553", + ["text"] = "Socketed Gems are Supported by Level # More Duration", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_support_55", + ["text"] = "Socketed Gems are Supported by Level # Multiple Projectiles", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_584144941", + ["text"] = "Socketed Gems are Supported by Level # Multiple Projectiles", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_support_40", + ["text"] = "Socketed Gems are Supported by Level # Multiple Totems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_807186595", + ["text"] = "Socketed Gems are Supported by Level # Multiple Totems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_support_39", + ["text"] = "Socketed Gems are Supported by Level # Multiple Traps", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3016436615", + ["text"] = "Socketed Gems are Supported by Level # Multiple Traps", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_support_41", + ["text"] = "Socketed Gems are Supported by Level # Multistrike", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_support_38", + ["text"] = "Socketed Gems are Supported by Level # Nightblade", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2861649515", + ["text"] = "Socketed Gems are Supported by Level # Nightblade", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_support_144", + ["text"] = "Socketed Gems are Supported by Level # Overcharge", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3462081007", + ["text"] = "Socketed Gems are Supported by Level # Overcharge", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_support_139", + ["text"] = "Socketed Gems are Supported by Level # Overexertion", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3327487371", + ["text"] = "Socketed Gems are Supported by Level # Physical To Lightning", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_support_34", + ["text"] = "Socketed Gems are Supported by Level # Physical to Lightning", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_support_33", + ["text"] = "Socketed Gems are Supported by Level # Pierce", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_254728692", + ["text"] = "Socketed Gems are Supported by Level # Pierce", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_support_132", + ["text"] = "Socketed Gems are Supported by Level # Pinpoint", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1609369521", + ["text"] = "Socketed Gems are Supported by Level # Pinpoint", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_support_32", + ["text"] = "Socketed Gems are Supported by Level # Point Blank", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3754129682", + ["text"] = "Socketed Gems are Supported by Level # Point Blank", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_support_30", + ["text"] = "Socketed Gems are Supported by Level # Power Charge On Critical", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4015918489", + ["text"] = "Socketed Gems are Supported by Level # Power Charge On Critical Strike", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_support_93", + ["text"] = "Socketed Gems are Supported by Level # Predator", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4082662318", + ["text"] = "Socketed Gems are Supported by Level # Predator", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_support_148", + ["text"] = "Socketed Gems are Supported by Level # Prismatic Burst", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2910545715", + ["text"] = "Socketed Gems are Supported by Level # Prismatic Burst", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_support_29", + ["text"] = "Socketed Gems are Supported by Level # Pulverise", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_282757414", + ["text"] = "Socketed Gems are Supported by Level # Pulverise", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_support_28", + ["text"] = "Socketed Gems are Supported by Level # Rage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_369650395", + ["text"] = "Socketed Gems are Supported by Level # Rage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_support_149", + ["text"] = "Socketed Gems are Supported by Level # Returning Projectiles", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1549219417", + ["text"] = "Socketed Gems are Supported by Level # Returning Projectiles", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_52197415", + ["text"] = "Socketed Gems are Supported by Level # Returning Projectiles", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_support_142", + ["text"] = "Socketed Gems are Supported by Level # Rupture", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_970734352", + ["text"] = "Socketed Gems are Supported by Level # Rupture", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_support_21", + ["text"] = "Socketed Gems are Supported by Level # Ruthless", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3796013729", + ["text"] = "Socketed Gems are Supported by Level # Ruthless", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_support_163", + ["text"] = "Socketed Gems are Supported by Level # Sacred Wisps", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3304737450", + ["text"] = "Socketed Gems are Supported by Level # Sacred Wisps", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_support_158", + ["text"] = "Socketed Gems are Supported by Level # Sacrifice", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2302807931", + ["text"] = "Socketed Gems are Supported by Level # Sacrifice", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_support_161", + ["text"] = "Socketed Gems are Supported by Level # Sadism", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_794471597", + ["text"] = "Socketed Gems are Supported by Level # Sadism", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_support_20", + ["text"] = "Socketed Gems are Supported by Level # Second Wind", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_402499111", + ["text"] = "Socketed Gems are Supported by Level # Second Wind", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_support_19", + ["text"] = "Socketed Gems are Supported by Level # Shockwave", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1344789934", + ["text"] = "Socketed Gems are Supported by Level # Shockwave", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_support_18", + ["text"] = "Socketed Gems are Supported by Level # Slower Projectiles", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1390285657", + ["text"] = "Socketed Gems are Supported by Level # Slower Projectiles", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_support_17", + ["text"] = "Socketed Gems are Supported by Level # Spell Cascade", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_503990161", + ["text"] = "Socketed Gems are Supported by Level # Spell Cascade", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_support_42", + ["text"] = "Socketed Gems are Supported by Level # Spell Echo", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_438778966", + ["text"] = "Socketed Gems are Supported by Level # Spell Echo", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_913919528", + ["text"] = "Socketed Gems are Supported by Level # Spell Echo", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_support_15", + ["text"] = "Socketed Gems are Supported by Level # Spell Totem", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2962840349", + ["text"] = "Socketed Gems are Supported by Level # Spell Totem", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_support_151", + ["text"] = "Socketed Gems are Supported by Level # Spellblade", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_633235561", + ["text"] = "Socketed Gems are Supported by Level # Spellblade", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_support_12", + ["text"] = "Socketed Gems are Supported by Level # Stun", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_support_10", + ["text"] = "Socketed Gems are Supported by Level # Summon Phantasm", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2169409479", + ["text"] = "Socketed Gems are Supported by Level # Summon Phantasm", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3155072742", + ["text"] = "Socketed Gems are Supported by Level # Summon Phantasm", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_support_26", + ["text"] = "Socketed Gems are Supported by Level # Swift Affliction", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1636220212", + ["text"] = "Socketed Gems are Supported by Level # Swift Affliction", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_support_9", + ["text"] = "Socketed Gems are Supported by Level # Swift Assembly", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4021476585", + ["text"] = "Socketed Gems are Supported by Level # Swift Assembly", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_support_130", + ["text"] = "Socketed Gems are Supported by Level # Swiftbrand", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2127532091", + ["text"] = "Socketed Gems are Supported by Level # Swiftbrand", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3740740992", + ["text"] = "Socketed Gems are Supported by Level # Transfusion", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_support_8", + ["text"] = "Socketed Gems are Supported by Level # Trap", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1122134690", + ["text"] = "Socketed Gems are Supported by Level # Trap", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3814066599", + ["text"] = "Socketed Gems are Supported by Level # Trap And Mine Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_support_7", + ["text"] = "Socketed Gems are Supported by Level # Trap and Mine Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_support_150", + ["text"] = "Socketed Gems are Supported by Level # Trauma", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1715139253", + ["text"] = "Socketed Gems are Supported by Level # Trauma", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_support_134", + ["text"] = "Socketed Gems are Supported by Level # Trinity", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3111091501", + ["text"] = "Socketed Gems are Supported by Level # Trinity", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_support_5", + ["text"] = "Socketed Gems are Supported by Level # Unbound Ailments", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3699494172", + ["text"] = "Socketed Gems are Supported by Level # Unbound Ailments", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_support_4", + ["text"] = "Socketed Gems are Supported by Level # Unleash", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3356013982", + ["text"] = "Socketed Gems are Supported by Level # Unleash", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_support_131", + ["text"] = "Socketed Gems are Supported by Level # Urgent Orders", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1485525812", + ["text"] = "Socketed Gems are Supported by Level # Urgent Orders", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_support_35", + ["text"] = "Socketed Gems are Supported by Level # Vicious Projectiles", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2513293614", + ["text"] = "Socketed Gems are Supported by Level # Vicious Projectiles", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_support_3", + ["text"] = "Socketed Gems are Supported by Level # Vile Toxins", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1002855537", + ["text"] = "Socketed Gems are Supported by Level # Vile Toxins", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_support_2", + ["text"] = "Socketed Gems are Supported by Level # Void Manipulation", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1866583932", + ["text"] = "Socketed Gems are Supported by Level # Void Manipulation", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3455096360", + ["text"] = "Socketed Gems are Supported by Level # Void Shockwave", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_support_156", + ["text"] = "Socketed Gems are Supported by Level # Volatility", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4184135167", + ["text"] = "Socketed Gems are Supported by Level # Volatility", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_support_36", + ["text"] = "Socketed Gems are Supported by Level # Volley", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2696557965", + ["text"] = "Socketed Gems are Supported by Level # Volley", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_support_166", + ["text"] = "Socketed Gems are Supported by Level # Windburst", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.indexable_support_104", + ["text"] = "Socketed Gems are Supported by Level # Withering Touch", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3287477747", + ["text"] = "Socketed Gems are Supported by Level # Withering Touch", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2530022765", + ["text"] = "Socketed Gems are Supported by Level 1 Greater Spell Echo", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3425526049", + ["text"] = "Socketed Gems are Supported by Level 10 Controlled Destruction", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3561676020", + ["text"] = "Socketed Gems are Supported by Level 10 Intensify", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_725896422", + ["text"] = "Socketed Gems are Supported by Level 10 Spell Echo", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1567462963", + ["text"] = "Socketed Gems are supported by Level # Additional Accuracy", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2223640518", + ["text"] = "Socketed Gems are supported by Level # Blind", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2325632050", + ["text"] = "Socketed Gems are supported by Level # Cast On Critical Strike", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3878987051", + ["text"] = "Socketed Gems are supported by Level # Cast on Death", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1079148723", + ["text"] = "Socketed Gems are supported by Level # Cast when Stunned", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2178803872", + ["text"] = "Socketed Gems are supported by Level # Chance to Bleed", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_952060721", + ["text"] = "Socketed Gems are supported by Level # Chance to Flee", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2532625478", + ["text"] = "Socketed Gems are supported by Level # Elemental Damage with Attacks", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_99089516", + ["text"] = "Socketed Gems are supported by Level # Faster Projectiles", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2062753054", + ["text"] = "Socketed Gems are supported by Level # Fork", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1108755349", + ["text"] = "Socketed Gems are supported by Level # Increased Critical Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_891277550", + ["text"] = "Socketed Gems are supported by Level # Life Leech", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1811422871", + ["text"] = "Socketed Gems are supported by Level # Melee Splash", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2501237765", + ["text"] = "Socketed Gems are supported by Level # Multistrike", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2433615566", + ["text"] = "Socketed Gems are supported by Level # Pierce", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_689720069", + ["text"] = "Socketed Gems are supported by Level # Stun", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1289910726", + ["text"] = "Socketed Gems deal # to # Added Fire Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3846088475", + ["text"] = "Socketed Gems deal #% more Damage over Time", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1235873320", + ["text"] = "Socketed Gems deal #% more Damage while on Low Life", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3835899275", + ["text"] = "Socketed Gems deal #% more Elemental Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_967556848", + ["text"] = "Socketed Gems fire Projectiles in a circle", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4016885052", + ["text"] = "Socketed Gems fire an additional Projectile", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1859937391", + ["text"] = "Socketed Gems gain #% of Physical Damage as extra Lightning Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3984519770", + ["text"] = "Socketed Gems have #% chance to Ignite", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3418772", + ["text"] = "Socketed Gems have #% chance to cause Enemies to Flee on Hit", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3289633055", + ["text"] = "Socketed Gems have #% increased Reservation Efficiency", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_346351023", + ["text"] = "Socketed Gems have #% more Attack and Cast Speed", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2816901897", + ["text"] = "Socketed Gems have #% reduced Mana Cost", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1681904129", + ["text"] = "Socketed Gems have +#% Critical Strike Chance", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2605850929", + ["text"] = "Socketed Gems have Elemental Equilibrium", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4051493629", + ["text"] = "Socketed Gems have Secrets of Suffering", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2497009514", + ["text"] = "Socketed Gems have no Reservation Your Blessing Skills are Disabled", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1199118714", + ["text"] = "Socketed Golem Skills gain #% of Maximum Life as Extra Maximum Energy Shield", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_178057093", + ["text"] = "Socketed Golem Skills have #% chance to Taunt on Hit", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_706212417", + ["text"] = "Socketed Golem Skills have #% increased Attack and Cast Speed", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_693460617", + ["text"] = "Socketed Golem Skills have Minions Regenerate #% of Life per second", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2462976337", + ["text"] = "Socketed Melee Gems have #% increased Area of Effect", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4006301249", + ["text"] = "Socketed Minion Gems are Supported by Level # Life Leech", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3263216405", + ["text"] = "Socketed Movement Skills Cost no Mana", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3282302743", + ["text"] = "Socketed Non-Channelling Bow Skills are Triggered by Snipe Socketed Triggered Bow Skills gain a 0.05 second Cooldown", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2443457281", + ["text"] = "Socketed Projectile Spells deal #% more Damage with Hits", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3235941702", + ["text"] = "Socketed Projectile Spells fire Projectiles in a circle", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_973574623", + ["text"] = "Socketed Projectile Spells fire an additional Projectile", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3104895675", + ["text"] = "Socketed Projectile Spells have #% more Skill Effect Duration", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_470459031", + ["text"] = "Socketed Projectile Spells have +# seconds to Cooldown", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2629366488", + ["text"] = "Socketed Red Gems get #% Physical Damage as Extra Fire Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1970781345", + ["text"] = "Socketed Skills deal #% more Attack Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2964800094", + ["text"] = "Socketed Skills deal #% more Spell Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2132884933", + ["text"] = "Socketed Skills deal Double Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2881124988", + ["text"] = "Socketed Skills have #% increased Attack Speed", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3425934849", + ["text"] = "Socketed Skills have #% increased Cast Speed", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_940684417", + ["text"] = "Socketed Slam Gems are Supported by Level 25 Earthbreaker", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1688834903", + ["text"] = "Socketed Spells have #% reduced Mana Cost", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_135378852", + ["text"] = "Socketed Spells have +#% to Critical Strike Chance", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2828710986", + ["text"] = "Socketed Spells have +#% to Critical Strike Multiplier", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_591645420", + ["text"] = "Socketed Support Gems can also Support Skills from Equipped Body Armour", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_806627038", + ["text"] = "Socketed Support Gems can also Support Skills from your Main Hand", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1020412108", + ["text"] = "Socketed Travel Skills deal #% more Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4021083819", + ["text"] = "Socketed Triggered Skills deal Double Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3106951888", + ["text"] = "Socketed Vaal Skills deal #% more Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1831825995", + ["text"] = "Socketed Vaal Skills grant Elusive when Used", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2505291583", + ["text"] = "Socketed Vaal Skills have #% increased Area of Effect", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2932121832", + ["text"] = "Socketed Vaal Skills have #% increased Aura Effect", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2237174578", + ["text"] = "Socketed Vaal Skills have #% increased Projectile Speed", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_476204410", + ["text"] = "Socketed Vaal Skills have #% increased Skill Effect Duration", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2599305231", + ["text"] = "Socketed Vaal Skills have #% increased Soul Gain Prevention Duration", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_207863952", + ["text"] = "Socketed Vaal Skills have 20% chance to regain consumed Souls when used", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2198756560", + ["text"] = "Socketed Vaal Skills require #% more Souls per Use", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3784504781", + ["text"] = "Socketed Warcry Skills have +# Cooldown Use", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3192592092", + ["text"] = "Sockets cannot be modified", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_112130960", + ["text"] = "Solipsism", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3738009328", + ["text"] = "Spell Skills always deal Critical Strikes on final Repeat", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2516869940", + ["text"] = "Spell Skills cannot deal Critical Strikes except on final Repeat", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_291644318", + ["text"] = "Spell Skills deal no Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1357409216", + ["text"] = "Spells cause you to gain Energy Shield equal to their Upfront Cost every fifth time you Pay it", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3175648755", + ["text"] = "Spells deal added Chaos Damage equal to #% of your maximum Life", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1011373762", + ["text"] = "Spells fire an additional Projectile", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2923377613", + ["text"] = "Spells have #% increased Critical Strike Chance per Intensity", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2813626504", + ["text"] = "Spells have a #% chance to deal Double Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_181229988", + ["text"] = "Spells inflict Intimidate on Critical Strike for 4 seconds", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_463925000", + ["text"] = "Spells used by this Graft have #% chance to Hinder Enemies on Hit", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2540626225", + ["text"] = "Spells which have gained Intensity Recently gain 1 Intensity every # Seconds", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2122561670", + ["text"] = "Spells which have gained Intensity Recently lose 1 Intensity every # Seconds", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1794950665", + ["text"] = "Splinters contained in Legion Chests in your Maps have #% chance to be Duplicated", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3473008748", + ["text"] = "Splinters dropped by Legion Monsters in your Maps have #% chance to be Duplicated", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3374667389", + ["text"] = "Splinters dropped by Legion Monsters or contained in Legion Chests in your Maps have #% chance to be Duplicated", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2894567787", + ["text"] = "Spreads Tar when you Block", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_927458676", + ["text"] = "Spreads Tar when you take a Critical Strike", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3130697435", + ["text"] = "Starts Energy Shield Recharge when Used", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2237528173", + ["text"] = "Strength from Passives in Radius is Transformed to Dexterity", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3771273420", + ["text"] = "Strength from Passives in Radius is Transformed to Intelligence", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2290031712", + ["text"] = "Strength provides no bonus to Maximum Life", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1531241759", + ["text"] = "Strength's Damage Bonus instead grants 3% increased Melee Physical Damage per 10 Strength", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_719626796", + ["text"] = "Strike Skills also target the previous location they were used", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1037449707", + ["text"] = "Strongboxes are Magic", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3089506271", + ["text"] = "Strongboxes each contain an additional random Rare Item", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_403369937", + ["text"] = "Strongboxes have #% chance to be guarded by an additional Pack of Monsters", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2681419531", + ["text"] = "Strongboxes in Area are Corrupted", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1564500422", + ["text"] = "Strongboxes in Area are at least Rare", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_607308532", + ["text"] = "Strongboxes in Area have #% chance to contain an additional Vaal Orb", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2681419531", + ["text"] = "Strongboxes in your Maps are Corrupted", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1564500422", + ["text"] = "Strongboxes in your Maps are at least Rare", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_403369937", + ["text"] = "Strongboxes in your Maps have #% chance to be guarded by an additional Pack of Monsters", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1753206712", + ["text"] = "Strongboxes in your Maps have #% increased chance to be Rare", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3273190973", + ["text"] = "Strongboxes in your Maps have #% increased chance to be a Cartographer's Strongbox", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2388239017", + ["text"] = "Strongboxes in your Maps have #% increased chance to be a Diviner's Strongbox", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_773912026", + ["text"] = "Strongboxes in your Maps have #% increased chance to be a Gemcutter's Strongbox", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2115623338", + ["text"] = "Strongboxes in your Maps have #% increased chance to be an Arcanist's Strongbox", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3089506271", + ["text"] = "Strongboxes in your Maps will each contain an additional random Rare Item", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3353484695", + ["text"] = "Strongboxes opened in your Maps have #% chance to be openable again", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2280488002", + ["text"] = "Stun Threshold is based on #% of your Mana instead of Life", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2562665460", + ["text"] = "Stun Threshold is based on Energy Shield instead of Life", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3464137628", + ["text"] = "Suffixes Cannot Be Changed", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3862876997", + ["text"] = "Sulphite Veins and Chests in your Maps have #% chance to also contain an equal amount of Azurite", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_413137939", + ["text"] = "Sulphite Veins and Chests in your Maps have #% chance to be guarded by Sulphite-hoarding Monsters", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2604629394", + ["text"] = "Sulphite found in your Maps is granted as a random Ore instead at #% of the value", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_38715141", + ["text"] = "Summon Raging Spirit has #% increased Duration", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3402861859", + ["text"] = "Summon Skitterbots also summons a Scorching Skitterbot", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1589090910", + ["text"] = "Summon an additional Skeleton with Summon Skeletons", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1094808741", + ["text"] = "Summoned Arbalists Convert #% of Physical Damage to Cold Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2954406821", + ["text"] = "Summoned Arbalists Convert #% of Physical Damage to Fire Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2934219859", + ["text"] = "Summoned Arbalists Convert #% of Physical Damage to Lightning Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2087104263", + ["text"] = "Summoned Arbalists fire # additional Projectiles", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_655918588", + ["text"] = "Summoned Arbalists gain #% of Physical Damage as Extra Cold Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1477474340", + ["text"] = "Summoned Arbalists gain #% of Physical Damage as Extra Fire Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2631827343", + ["text"] = "Summoned Arbalists gain #% of Physical Damage as Extra Lightning Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1658936540", + ["text"] = "Summoned Arbalists have #% chance to Crush on Hit", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2052458107", + ["text"] = "Summoned Arbalists have #% chance to Freeze", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_357325557", + ["text"] = "Summoned Arbalists have #% chance to Freeze, Shock, and Ignite", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_831284309", + ["text"] = "Summoned Arbalists have #% chance to Ignite", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3964074505", + ["text"] = "Summoned Arbalists have #% chance to Intimidate for 4 seconds on Hit", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3652224635", + ["text"] = "Summoned Arbalists have #% chance to Maim for 4 seconds on Hit", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2894626576", + ["text"] = "Summoned Arbalists have #% chance to Poison", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2144847042", + ["text"] = "Summoned Arbalists have #% chance to Shock", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3976916585", + ["text"] = "Summoned Arbalists have #% chance to Unnerve for 4 seconds on Hit", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3057722139", + ["text"] = "Summoned Arbalists have #% chance to deal Double Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_157070900", + ["text"] = "Summoned Arbalists have #% chance to inflict Cold Exposure on Hit", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3327243369", + ["text"] = "Summoned Arbalists have #% chance to inflict Fire Exposure on Hit", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_223656429", + ["text"] = "Summoned Arbalists have #% chance to inflict Lightning Exposure on Hit", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4054463312", + ["text"] = "Summoned Arbalists have #% increased Attack Speed", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1841503755", + ["text"] = "Summoned Arbalists' Attacks have #% chance to inflict Bleeding", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3010688059", + ["text"] = "Summoned Arbalists' Projectiles Chain +# times", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2461270975", + ["text"] = "Summoned Arbalists' Projectiles Fork", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3741465646", + ["text"] = "Summoned Arbalists' Projectiles Pierce # additional Targets", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1857935842", + ["text"] = "Summoned Arbalists' Projectiles Split into #", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2235163762", + ["text"] = "Summoned Golems Regenerate #% of their Life per second", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3630426972", + ["text"] = "Summoned Golems are Aggressive", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3246099900", + ["text"] = "Summoned Golems have #% increased Cooldown Recovery Rate", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1583498502", + ["text"] = "Summoned Holy Relics have #% reduced Cooldown Recovery Rate", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_7847395", + ["text"] = "Summoned Phantasms have #% chance to refresh their Duration when they Hit a Rare or Unique Enemy", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2085855914", + ["text"] = "Summoned Raging Spirits deal #% increased Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4070754804", + ["text"] = "Summoned Raging Spirits have #% chance to refresh their Duration when they Hit a Rare or Unique Enemy", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3999870307", + ["text"] = "Summoned Raging Spirits have #% increased maximum Life", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2761732967", + ["text"] = "Summoned Raging Spirits refresh their Duration when they Kill an Ignited Enemy", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1063920218", + ["text"] = "Summoned Raging Spirits take #% of their Maximum Life per second as Chaos Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3954637034", + ["text"] = "Summoned Raging Spirits' Hits always Ignite", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_221328679", + ["text"] = "Summoned Raging Spirits' Melee Strikes deal Fire-only Splash Damage to Surrounding Targets", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_697059777", + ["text"] = "Summoned Skeleton Warriors and Soldiers deal Triple Damage with this Weapon if you've Hit with this Weapon Recently", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2646007123", + ["text"] = "Summoned Skeleton Warriors and Soldiers wield this Weapon while in your Main Hand", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1021552211", + ["text"] = "Summoned Skeleton Warriors are Permanent and Follow you Summon Skeletons cannot Summon more than 1 Skeleton Warrior", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1958210928", + ["text"] = "Summoned Skeletons have Avatar of Fire", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3074608753", + ["text"] = "Summoned Skeletons have a #% chance to Cover Enemies in Ash on Hit", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2912438397", + ["text"] = "Summoned Skeletons take #% of their Maximum Life per second as Fire Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2483115633", + ["text"] = "Summoned Skitterbots' Auras affect you as well as Enemies", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3215997147", + ["text"] = "Supreme Decadence", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1421267186", + ["text"] = "Supreme Ego", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2995661301", + ["text"] = "Survival", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_623132242", + ["text"] = "Syndicate Members Obtain an additional Equipment Item when appearing in your Maps", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2049349490", + ["text"] = "Synthesised Monsters in Synthesis Maps have #% increased Pack Size", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_308618188", + ["text"] = "Take # Chaos Damage per Second during Effect", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3664778308", + ["text"] = "Take # Cold Damage on reaching Maximum Power Charges", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3511992942", + ["text"] = "Take # Fire Damage per Second while Flame-Touched", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2518598473", + ["text"] = "Take # Fire Damage when you Ignite an Enemy", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4076381228", + ["text"] = "Take # Fire Damage when you Use a Skill", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2007062029", + ["text"] = "Take # Lightning Damage when Herald of Thunder Hits an Enemy", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2440172920", + ["text"] = "Take # Physical Damage per Second per Siphoning Charge if you've used a Skill Recently", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2590715472", + ["text"] = "Take # Physical Damage when you use a Movement Skill", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2738190959", + ["text"] = "Take no Burning Damage if you've stopped taking Burning Damage Recently", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4294267596", + ["text"] = "Take no Extra Damage from Critical Strikes", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3753680856", + ["text"] = "Take no Extra Damage from Critical Strikes if Energy Shield Recharge started Recently", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_611839381", + ["text"] = "Take no Extra Damage from Critical Strikes if you have a Magic Ring in left slot", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4077357269", + ["text"] = "Take no Extra Damage from Critical Strikes if you've cast Enfeeble in the past 10 seconds", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1971757986", + ["text"] = "Taking Chaos Damage over Time heals you instead while Leeching Life", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2800333900", + ["text"] = "Talismans found in this Area are 1 Tier higher", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1401233515", + ["text"] = "Talismans found in this Area are Rare", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2325471503", + ["text"] = "Targets are Unaffected by your Hexes", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3643076184", + ["text"] = "Tempest Effects have #% increased Area of Effect", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1152934561", + ["text"] = "Temporal Chains has #% reduced Effect on you", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3779771090", + ["text"] = "Temporal Chains has #% reduced Reservation if Cast as an Aura", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2100165275", + ["text"] = "Temporal Chains has no Reservation if Cast as an Aura", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2139238642", + ["text"] = "Temporal Rift has no Reservation", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_462691314", + ["text"] = "The Agnostic", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2955966707", + ["text"] = "The Effect of Chill on you is reversed", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4070390513", + ["text"] = "The Grey Wind Howls used by this Graft also grants #% chance to Avoid Elemental Ailments", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1761211254", + ["text"] = "The Grey Wind Howls used by this Graft also grants #% of Elemental Damage gained as Extra Chaos Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_457484464", + ["text"] = "The Grey Wind Howls used by this Graft also grants +#% to all Elemental Resistances", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4234527870", + ["text"] = "The Grey Wind Howls used by this Graft grants +#% additional Physical Damage gained as Extra Elemental Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1441799693", + ["text"] = "The Impaler", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2960155368", + ["text"] = "The Maven has a #% chance to cast Up the Stakes summoning 1 to 3 additional Atlas Bosses when Witnessing Map Bosses The number of additional Bosses summoned is higher if there are fewer monsters remaining in the Map Modifiers to the Final Map Boss in each Map also apply to these summoned Bosses", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1594156261", + ["text"] = "The Maven interferes with Players", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_616993076", + ["text"] = "The Ring takes no Cut", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_293465345", + ["text"] = "The Ring's Cut increased by #%", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1880405255", + ["text"] = "The Sacred Grove in your Maps has #% chance to contain an additional Harvest", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_648923098", + ["text"] = "The first Strongbox Opened in this Area is guarded by an additional Rare Monster", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4048158159", + ["text"] = "The first time a Player reaches # Rampage Kills in this Area, 6 Basic Currency Items will drop", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_329336318", + ["text"] = "The first time a Player reaches # Rampage Kills in this Area, they will encounter a Powerful Monster", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4108379292", + ["text"] = "The number of Memory Strands on Equipment Items found in your Maps has #% chance to be Lucky", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1389615049", + ["text"] = "The stars are aligned if you have 6 Influence types among other Equipped Items", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_436556261", + ["text"] = "This Area's Modifiers to Quantity of Items found also apply to Rarity", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_372478711", + ["text"] = "This Jewel's Socket has #% increased effect per Allocated Passive Skill between it and your Class' starting location", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_436556261", + ["text"] = "This Map's Modifiers to Quantity of Items found also apply to Rarity", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1963540179", + ["text"] = "This Weapon's Critical Strike Chance is 100%", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2395088636", + ["text"] = "Throw an additional Mine", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_51196661", + ["text"] = "Tier 1-15 Maps found have #% chance to become 1 tier higher", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1927424401", + ["text"] = "Time gained from Kills is Doubled for Incursions in your Maps", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3249943883", + ["text"] = "Tormented Spirits can Possess Players for 20 seconds Tormented Spirits cannot Possess Monsters", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4268822436", + ["text"] = "Tormented Spirits drop 1 additional Rare Item", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_663610248", + ["text"] = "Tormented Spirits have #% increased Duration", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4028829918", + ["text"] = "Tormented Spirits have a #% chance to be set free when Possessed Monsters are slain", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_564845047", + ["text"] = "Tormented Spirits in your Maps are more likely to be less common varieties", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1582162479", + ["text"] = "Tormented Spirits in your Maps can Possess Players for 20 seconds Tormented Spirits in your Maps cannot Possess Monsters", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3249943883", + ["text"] = "Tormented Spirits in your Maps can Possess Players for 20 seconds Tormented Spirits in your Maps cannot Possess Monsters", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_663610248", + ["text"] = "Tormented Spirits in your Maps have #% increased Duration", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1277035917", + ["text"] = "Total Recovery per second from Life Leech is Doubled", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_284063465", + ["text"] = "Totem Life is increased by their Overcapped Fire Resistance", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1723061251", + ["text"] = "Totems Reflect #% of their maximum Life as Fire Damage to nearby Enemies when Hit", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2076876595", + ["text"] = "Totems Taunt Enemies around them for # second when Summoned", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_335735137", + ["text"] = "Totems cannot be Stunned", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_736847554", + ["text"] = "Totems fire # additional Projectile", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1809006367", + ["text"] = "Totems gain +#% to all Elemental Resistances", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4016251064", + ["text"] = "Totems which would be killed by Enemies become Spectral Totems for # seconds instead", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2381571742", + ["text"] = "Transcendence", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_881645355", + ["text"] = "Transfiguration of Body", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2571899044", + ["text"] = "Transfiguration of Mind", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3268519799", + ["text"] = "Transfiguration of Soul", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3391324703", + ["text"] = "Traps and Mines deal # to # additional Physical Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3192135716", + ["text"] = "Traps and Mines have a #% chance to Poison on Hit", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1861759600", + ["text"] = "Traps cannot be triggered by Enemies", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2727188901", + ["text"] = "Traps from Skills are thrown randomly around targeted location", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1263384098", + ["text"] = "Traps from Socketed Skills create a Smoke Cloud when triggered", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3066073024", + ["text"] = "Travel Skills other than Dash are Disabled", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3897054103", + ["text"] = "Treats Enemy Monster Chaos Resistance values as inverted", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2750800428", + ["text"] = "Treats Enemy Monster Elemental Resistance values as inverted", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3382957283", + ["text"] = "Trigger Level # Assassin's Mark when you Hit a Rare or Unique Enemy and have no Mark", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3924520095", + ["text"] = "Trigger Level # Assassin's Mark when you Hit a Rare or Unique Enemy and have no Mark", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2634885412", + ["text"] = "Trigger Level # Bone Nova when you Hit a Bleeding Enemy", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1663239249", + ["text"] = "Trigger Level # Bone Offering, Flesh Offering, Spirit Offering every 5 seconds in sequence Offering Skills Triggered this way also affect you", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4015227054", + ["text"] = "Trigger Level # Cinders when Equipped", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_899293871", + ["text"] = "Trigger Level # Consecrate when you deal a Critical Strike", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3159312340", + ["text"] = "Trigger Level # Contaminate when you Kill an Enemy", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_825352061", + ["text"] = "Trigger Level # Death Aura when Equipped", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_810166817", + ["text"] = "Trigger Level # Elemental Warding on Melee Hit while Cursed", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1024189516", + ["text"] = "Trigger Level # Feast of Flesh every 5 seconds", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_208447205", + ["text"] = "Trigger Level # Fog of War when your Trap is triggered", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_252427115", + ["text"] = "Trigger Level # Gore Shockwave on Melee Hit if you have at least 150 Strength", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1357672429", + ["text"] = "Trigger Level # Icicle Burst when you Hit a Frozen Enemy", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1795756125", + ["text"] = "Trigger Level # Intimidating Cry on Hit", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3892608176", + ["text"] = "Trigger Level # Intimidating Cry when you lose Cat's Stealth", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3195558548", + ["text"] = "Trigger Level # Lightning Bolt on Melee Hit with this Weapon, with a 0.25 second cooldown", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3241494164", + ["text"] = "Trigger Level # Lightning Bolt when you deal a Critical Strike", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1527893390", + ["text"] = "Trigger Level # Lightning Warp on Hit with this Weapon", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2659463225", + ["text"] = "Trigger Level # Poacher's Mark when you Hit a Rare or Unique Enemy and have no Mark", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_364728407", + ["text"] = "Trigger Level # Poacher's Mark when you Hit a Rare or Unique Enemy and have no Mark", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3904501306", + ["text"] = "Trigger Level # Poacher's Mark when you Hit a Rare or Unique Enemy and have no Mark", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2935409762", + ["text"] = "Trigger Level # Rain of Arrows when you Attack with a Bow", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_401685616", + ["text"] = "Trigger Level # Shield Shatter when you Block", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2668070396", + ["text"] = "Trigger Level # Shock Ground when Hit", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1992516007", + ["text"] = "Trigger Level # Spirit Burst when you Use a Skill while you have a Spirit Charge", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1662669872", + ["text"] = "Trigger Level # Stalking Pustule on Kill", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_818329660", + ["text"] = "Trigger Level # Storm Cascade when you Attack", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3252082366", + ["text"] = "Trigger Level # Summon Phantasm Skill when you Consume a corpse", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_658873122", + ["text"] = "Trigger Level # Summon Void Spawn every 4 seconds", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3131535174", + ["text"] = "Trigger Level # Tawhoa's Chosen when you Attack with a Non-Vaal Slam or Strike Skill near an Enemy", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1714905437", + ["text"] = "Trigger Level # Tears of Rot when Equipped", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_767464019", + ["text"] = "Trigger Level # Toxic Rain when you Attack with a Bow", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3165215973", + ["text"] = "Trigger Level # Unseen Strike every 0.5 seconds while Phasing", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1869144397", + ["text"] = "Trigger Level # Void Gaze when you use a Skill", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2049471530", + ["text"] = "Trigger Level # Warlord's Mark when you Hit a Rare or Unique Enemy and have no Mark", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2021420128", + ["text"] = "Trigger Level # Warlords's Mark when you Hit a Rare or Unique Enemy and have no Mark", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1468606528", + ["text"] = "Trigger Level 10 Summon Spectral Wolf on Kill", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3844016207", + ["text"] = "Trigger Level 20 Raise Spiders on Kill", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2554328719", + ["text"] = "Trigger Level 20 Twister when you gain Avian's Might or Avian's Flight", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2603798371", + ["text"] = "Trigger Level 30 Shade Form when Hit", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2816098341", + ["text"] = "Trigger Socketed Minion Spells on Kill with this Weapon Minion Spells Triggered by this Item have a 0.25 second Cooldown with 5 Uses", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2295303426", + ["text"] = "Trigger a Socketed Cold Spell on Melee Critical Strike, with a 0.25 second Cooldown", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3591112611", + ["text"] = "Trigger a Socketed Elemental Spell on Block, with a # second Cooldown", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_654971543", + ["text"] = "Trigger a Socketed Lightning Spell on Hit, with a 0.25 second Cooldown Socketed Lightning Spells have no Cost if Triggered", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1181232657", + ["text"] = "Trigger a Socketed Spell on Unarmed Melee Critical Strike, with a # second Cooldown", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1582781759", + ["text"] = "Trigger a Socketed Spell on Using a Skill, with a # second Cooldown Spells Triggered this way have 150% more Cost", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_537034483", + ["text"] = "Trigger a Socketed Spell when a Hit from this Weapon Freezes a Target, with a 0.25 second Cooldown", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1565744562", + ["text"] = "Trigger a Socketed Spell when you Block, with a 0.25 second Cooldown", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2397674290", + ["text"] = "Trigger level # Ceaseless Flesh once every second", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1925643497", + ["text"] = "Trigger level 20 Suspend in Time on Casting a Spell", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3484434547", + ["text"] = "Triggered Spells Poison on Hit", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3250579936", + ["text"] = "Triggers Level # Abberath's Fury when Equipped", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_125312907", + ["text"] = "Triggers Level # Blinding Aura when Equipped", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3918947537", + ["text"] = "Triggers Level # Cold Aegis when Equipped", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_779168081", + ["text"] = "Triggers Level # Corpse Walk when Equipped", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_651875072", + ["text"] = "Triggers Level # Death Walk when Equipped", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2602585351", + ["text"] = "Triggers Level # Elemental Aegis when Equipped", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1128763150", + ["text"] = "Triggers Level # Fire Aegis when Equipped", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_850729424", + ["text"] = "Triggers Level # Lightning Aegis when Equipped", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4007938693", + ["text"] = "Triggers Level # Manifest Dancing Dervishes on Rampage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1892084828", + ["text"] = "Triggers Level # Physical Aegis when Equipped", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3451043685", + ["text"] = "Triggers Level # Reflection when Equipped", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3664803307", + ["text"] = "Triggers Level # Summon Arbalists when Equipped", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_470688636", + ["text"] = "Triggers Level 20 Spectral Spirits when Equipped +# to maximum number of Spectral Spirits", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4059583727", + ["text"] = "Tul, Creeping Avalanche in your Maps has a #% chance to be Duplicated", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4281937233", + ["text"] = "Ultimatum Altars in your Maps have #% increased Life", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_236047788", + ["text"] = "Ultimatum Boss drops a full stack of a random Catalyst", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1937345315", + ["text"] = "Ultimatum Encounters in Area grant rewards as though you completed an additional Round", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1602736646", + ["text"] = "Ultimatum Encounters in your Maps get #% increased Radius each Round", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1937345315", + ["text"] = "Ultimatum Encounters in your Maps grant rewards as though you completed an additional Round", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1603263120", + ["text"] = "Ultimatum Encounters in your Maps have #% increased chance for the final Round to include a Boss", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_306537703", + ["text"] = "Ultimatum Encounters in your Maps have #% increased chance to only require you to Survive", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_802960755", + ["text"] = "Ultimatum Encounters in your Maps have #% increased chance to require you to Stand in the Stone Circles", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2014727907", + ["text"] = "Ultimatum Encounters in your Maps have #% increased chance to require you to defeat waves of Enemies", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4236665456", + ["text"] = "Ultimatum Encounters in your Maps have #% increased chance to require you to protect the Altar", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3283585444", + ["text"] = "Ultimatum Encounters in your Maps last up to 13 Rounds", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3099069648", + ["text"] = "Ultimatum Encounters in your Maps only requiring you to Survive have #% increased duration", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_340836576", + ["text"] = "Ultimatum Encounters in your Maps requiring you to Defeat waves of Enemies require killing #% increased number of Enemies", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3025100555", + ["text"] = "Ultimatum Encounters in your Maps spawn #% increased number of Monsters", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1901628087", + ["text"] = "Ultimatum Modifiers in your Maps start a Tier higher if possible", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3683980805", + ["text"] = "Ultimatum Monsters and Modifiers in your Maps deal #% more Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3027114376", + ["text"] = "Ultimatum Monsters in Area grant #% increased Experience", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3645622851", + ["text"] = "Ultimatum Monsters in your Maps apply Ruin with their special abilities Fail on reaching 7 Ruin", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3027114376", + ["text"] = "Ultimatum Monsters in your Maps grant #% increased Experience", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1683239984", + ["text"] = "Ultimatum Rewards in your Maps have #% chance to be duplicated", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3093967539", + ["text"] = "Ultimatum Rewards in your Maps have #% increased chance to be Abyssal Items", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1763481236", + ["text"] = "Ultimatum Rewards in your Maps have #% increased chance to be Blight Oils", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_502838809", + ["text"] = "Ultimatum Rewards in your Maps have #% increased chance to be Breach Items", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4234425443", + ["text"] = "Ultimatum Rewards in your Maps have #% increased chance to be Catalysts", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1528872781", + ["text"] = "Ultimatum Rewards in your Maps have #% increased chance to be Corrupted Rare Items", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1656757869", + ["text"] = "Ultimatum Rewards in your Maps have #% increased chance to be Currency Items", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3324186704", + ["text"] = "Ultimatum Rewards in your Maps have #% increased chance to be Delirium Items", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_297961897", + ["text"] = "Ultimatum Rewards in your Maps have #% increased chance to be Divination Cards", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3860246335", + ["text"] = "Ultimatum Rewards in your Maps have #% increased chance to be Essences", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_469837536", + ["text"] = "Ultimatum Rewards in your Maps have #% increased chance to be Fossils", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2091246228", + ["text"] = "Ultimatum Rewards in your Maps have #% increased chance to be Gems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1322064377", + ["text"] = "Ultimatum Rewards in your Maps have #% increased chance to be Heist Items", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_294140055", + ["text"] = "Ultimatum Rewards in your Maps have #% increased chance to be Inscribed Ultimatums", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3814215147", + ["text"] = "Ultimatum Rewards in your Maps have #% increased chance to be Jewellery", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3962675867", + ["text"] = "Ultimatum Rewards in your Maps have #% increased chance to be Legion Items", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3116664709", + ["text"] = "Ultimatum Rewards in your Maps have #% increased chance to be Map Fragments", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3261121444", + ["text"] = "Ultimatum Rewards in your Maps have #% increased chance to be Maps", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1280423224", + ["text"] = "Ultimatum Rewards in your Maps have #% increased chance to be Unique Items", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1805474879", + ["text"] = "Ultimatum Stone Circles in your Maps have #% increased radius", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4104891138", + ["text"] = "Unaffected by Bleeding while affected by Malevolence", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4193902224", + ["text"] = "Unaffected by Blind", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1643688236", + ["text"] = "Unaffected by Burning Ground", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3308185931", + ["text"] = "Unaffected by Burning Ground while affected by Purity of Fire", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_937372143", + ["text"] = "Unaffected by Chill", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3910756536", + ["text"] = "Unaffected by Chill if 2 Redeemer Items are Equipped", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4014328139", + ["text"] = "Unaffected by Chill while Leeching Mana", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3653191834", + ["text"] = "Unaffected by Chilled Ground", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2647344903", + ["text"] = "Unaffected by Chilled Ground while affected by Purity of Ice", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1567542124", + ["text"] = "Unaffected by Conductivity while affected by Purity of Lightning", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3809896400", + ["text"] = "Unaffected by Curses", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3403419549", + ["text"] = "Unaffected by Curses while affected by Zealotry", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1575046591", + ["text"] = "Unaffected by Damaging Ailments", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4004298002", + ["text"] = "Unaffected by Desecrated Ground", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3223142064", + ["text"] = "Unaffected by Elemental Weakness while affected by Purity of Elements", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2365917222", + ["text"] = "Unaffected by Enfeeble while affected by Grace", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1173690938", + ["text"] = "Unaffected by Flammability while affected by Purity of Fire", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4012281889", + ["text"] = "Unaffected by Frostbite while affected by Purity of Ice", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2635869389", + ["text"] = "Unaffected by Ignite", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_621302497", + ["text"] = "Unaffected by Ignite if 2 Warlord Items are Equipped", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2716882575", + ["text"] = "Unaffected by Ignite or Shock if Maximum Life and Maximum Mana are within 500", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1953432004", + ["text"] = "Unaffected by Poison", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3525542360", + ["text"] = "Unaffected by Poison if 2 Hunter Items are Equipped", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_34059570", + ["text"] = "Unaffected by Poison while affected by Malevolence", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1473289174", + ["text"] = "Unaffected by Shock", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1060931694", + ["text"] = "Unaffected by Shock if 2 Crusader Items are Equipped", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2967697688", + ["text"] = "Unaffected by Shock while Channelling", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4102393882", + ["text"] = "Unaffected by Shock while Leeching Energy Shield", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2234049899", + ["text"] = "Unaffected by Shocked Ground", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2567659895", + ["text"] = "Unaffected by Shocked Ground while affected by Purity of Lightning", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4212372504", + ["text"] = "Unaffected by Temporal Chains", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2806391472", + ["text"] = "Unaffected by Temporal Chains while affected by Haste", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3207781478", + ["text"] = "Unaffected by Vulnerability while affected by Determination", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1646760085", + ["text"] = "Unholy Might", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_207573834", + ["text"] = "Unholy Might during Effect", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_124877078", + ["text"] = "Unique Boss deals #% increased Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1733969225", + ["text"] = "Unique Boss drops # additional Currency Items", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2343216207", + ["text"] = "Unique Boss drops # additional Rare #", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1432093361", + ["text"] = "Unique Boss drops an additional Harbinger Scroll", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_655278200", + ["text"] = "Unique Boss drops an additional Map", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2170294665", + ["text"] = "Unique Boss drops divination cards", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2484223218", + ["text"] = "Unique Boss gives #% increased Experience", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3040667106", + ["text"] = "Unique Boss has #% increased Area of Effect", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2109106920", + ["text"] = "Unique Boss has #% increased Attack and Cast Speed", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1959158336", + ["text"] = "Unique Boss has #% increased Life", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_338643834", + ["text"] = "Unique Boss is augmented by Player choices", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2588474575", + ["text"] = "Unique Bosses are Possessed", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_798723493", + ["text"] = "Unique Crucible Monsters have #% chance to drop a Unique Item with a Crucible Passive Skill Tree", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2123200297", + ["text"] = "Unique Crucible Monsters have #% chance to drop a Unique Melee Weapon", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_648161868", + ["text"] = "Unique Crucible Monsters have #% chance to drop a Unique Ranged Weapon", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1344329033", + ["text"] = "Unique Crucible Monsters have #% chance to drop a Unique Shield", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_531937370", + ["text"] = "Unique Monsters from Beyond have a #% chance to Summon another Unique Monster from Beyond when Slain", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_872972810", + ["text"] = "Unique Monsters have a random Shrine Buff", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3190161627", + ["text"] = "Unique Monsters in your Maps have #% increased chance to drop Scarabs", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3957379603", + ["text"] = "Unique Monsters slain at Ritual Altars in your Maps grant #% less Tribute", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3789157216", + ["text"] = "Unstable Breaches in Area contain a Boss", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1683578560", + ["text"] = "Unwavering Stance", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3788412017", + ["text"] = "Up to # Rare Monsters in each of your Maps are Possessed and their Minions are Touched", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2846730569", + ["text"] = "Uses both hand slots", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1019460035", + ["text"] = "Using a Vaal Orb on Imprisoned Monsters in your Maps replaces all Essences with one of the Essences on the Imprisoned Monster", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2567919918", + ["text"] = "Utility Flasks gain # Charge every 3 seconds", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_66623393", + ["text"] = "Uul-Netol, Unburdened Flesh in your Maps has a #% chance to be Duplicated", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1103075489", + ["text"] = "Vaal Attack Skills you Use yourself Cost Rage instead of requiring Souls", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_697969593", + ["text"] = "Vaal Orbs found in your Maps have #% chance to drop as a stack of 7 Vaal Orbs instead", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2257118425", + ["text"] = "Vaal Pact", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1516986886", + ["text"] = "Vaal Side Areas in your Maps are no longer Corrupted", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4131593417", + ["text"] = "Vaal Side Areas in your Maps have #% chance for Rewards from Vaal Vessels to be Duplicated", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2063734057", + ["text"] = "Vaal Side Areas in your Maps have #% chance to be an Alluring Vaal Side Area", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4147528862", + ["text"] = "Vaal Skills deal #% more Damage during Effect", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2833218772", + ["text"] = "Vaal Skills have #% chance to regain consumed Souls when used", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_547412107", + ["text"] = "Vaal Skills have #% increased Skill Effect Duration", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2344590267", + ["text"] = "Vaal Skills used during effect do not apply Soul Gain Prevention", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_902947445", + ["text"] = "Vaal Skills used during effect have #% reduced Soul Gain Prevention Duration", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1730598557", + ["text"] = "Varieties of Items contained in # Blight Chests are Lucky", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1730598557", + ["text"] = "Varieties of Items contained in 1 Blight Chest in your Maps are Lucky", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1949656826", + ["text"] = "Verisium Ore Deposits in your Maps can be channelled on for #% longer", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_593845252", + ["text"] = "Versatile Combatant", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_468012134", + ["text"] = "Violent Desire used by this Graft also grants #% increased Area of Effect with Attacks", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1570004834", + ["text"] = "Violent Desire used by this Graft also grants #% increased Attack Speed", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3830354140", + ["text"] = "Violent Desire used by this Graft also grants Hits have #% chance to ignore Enemy Physical Damage Reduction", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2000483559", + ["text"] = "Violent Desire used by this Graft grants +#% increased effect of Impale", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_438083873", + ["text"] = "Vitality has no Reservation", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3236481633", + ["text"] = "Voltaxic Sulphite Veins and Chests found in your Maps have #% chance to contain Doomed Spirits", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2503157846", + ["text"] = "Voltaxic Sulphite Veins and Chests in your Maps are guarded by Sulphite-hoarding Monsters", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4276927142", + ["text"] = "Voltaxic Sulphite Veins and Chests in your Maps contain #% increased Sulphite", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1174549622", + ["text"] = "Voltaxic Sulphite Veins and Chests in your Maps have #% chance to contain double Sulphite", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1798031916", + ["text"] = "Vulnerability has #% reduced Reservation if Cast as an Aura", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_531868030", + ["text"] = "Vulnerability has no Reservation if Cast as an Aura", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_121093551", + ["text"] = "Warbands have #% more Quantity of Items Dropped", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_751847284", + ["text"] = "Warbands have #% more Rarity of Items Dropped", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3628411738", + ["text"] = "Warbands in the Area have an additional Elite Member", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1773553795", + ["text"] = "Warbands in the Area have an additional Support Member", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4072582319", + ["text"] = "Warbands in this Area have an additional Member", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1427553227", + ["text"] = "Warcries Cost +#% of Life", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1434716233", + ["text"] = "Warcries Exert # additional Attack", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_519622288", + ["text"] = "Warcries Knock Back and Interrupt Enemies in a smaller Area", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2174134106", + ["text"] = "Warcries cannot Exert Travel Skills", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3608339129", + ["text"] = "Warcries grant # Rage per 5 Power if you have less than 25 Rage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3399924348", + ["text"] = "Warcries grant Arcane Surge to you and Allies, with #% increased effect per 5 power, up to 50%", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3168635562", + ["text"] = "Warcries have infinite Power", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2567751411", + ["text"] = "Warcry Skills have #% increased Area of Effect", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_684268017", + ["text"] = "Warcry Skills' Cooldown Time is 4 seconds", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_80764074", + ["text"] = "Ward does not Break during Effect", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1747220877", + ["text"] = "Weapons and Shields found have #% chance to be Corrupted with an Implicit", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4280114386", + ["text"] = "Weapons and Shields found have #% chance to be Fractured", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_375750705", + ["text"] = "Weapons and Shields found have #% chance to be fully Linked", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3785942492", + ["text"] = "Weapons and Shields found have #% chance to have the maximum number of Sockets", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3664934139", + ["text"] = "Weapons found in your Maps have #% chance to have 20% Quality", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1266553505", + ["text"] = "Weapons you Animate create an additional copy", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_224931623", + ["text"] = "When 90% of your Hex's Duration Expires on an Enemy, Eat 1 Soul per Enemy Power", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_41860024", + ["text"] = "When Hit during effect, #% of Life loss from Damage taken occurs over 4 seconds instead", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1718051959", + ["text"] = "When Hit, Players gain a random Movement Speed modifier from #% less to #% more, until Hit again", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3281809492", + ["text"] = "When Hit, gain a random Movement Speed modifier from #% reduced to #% increased, until Hit again", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_200299748", + ["text"] = "When a Bloodline Pack is Slain, it drops a Basic Currency Item", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2309624770", + ["text"] = "When a Bloodline Pack is Slain, it drops a Rare Item", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1353527704", + ["text"] = "When a fifth Impale is inflicted on a Player, Impales are removed to Reflect their Physical Damage multiplied by their remaining Hits to that Player and their Allies within 1.8 metres", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1353527704", + ["text"] = "When a fifth Impale is inflicted on a Player, Impales are removed to Reflect their Physical Damage multiplied by their remaining Hits to that Player and their Allies within 1.8 metres", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1960869129", + ["text"] = "When a nearby Minion dies, gain Rotten Bulwark equal to #% of its maximum Life", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3714446071", + ["text"] = "When an Enemy Hit deals Elemental Damage to you, their Resistance to those Elements becomes zero for 4 seconds", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3461563650", + ["text"] = "When used in the Synthesiser, the new item will have an additional Herald Modifier", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1615324731", + ["text"] = "When you Attack, take #% of Life as Physical Damage for each Warcry Exerting the Attack", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_820827484", + ["text"] = "When you Cast a Spell, Sacrifice all Mana to gain Added Maximum Lightning Damage equal to #% of Sacrificed Mana for 4 seconds", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3976991498", + ["text"] = "When you Kill a Magic Monster gain its Modifiers for 60 seconds", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2736829661", + ["text"] = "When you Kill a Rare Monster, #% chance to gain one of its Modifiers for 10 seconds", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2913235441", + ["text"] = "When you Kill a Rare monster, you gain its Modifiers for 60 seconds", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3462132936", + ["text"] = "When you Kill a Shocked Enemy, inflict an equivalent Shock on each nearby Enemy", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1406092431", + ["text"] = "When you Kill an Enemy Cursed with a Non-Aura Hex, become Immune to Curses for remaining Hex Duration", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2638352064", + ["text"] = "When you Kill an Ignited Enemy, inflict an equivalent Ignite on each nearby Enemy", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3559020159", + ["text"] = "When you kill a Poisoned Enemy, Enemies within 1.5 metres are Poisoned", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3906150898", + ["text"] = "When you leave your Banner's Area, recover #% of the Valour consumed for that Banner", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2174796794", + ["text"] = "When you lose Temporal Chains you gain maximum Rage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1360359242", + ["text"] = "While Minions have Energy Shield, their Hits Ignore Monster Elemental Resistances", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_413362507", + ["text"] = "While at maximum Frenzy Charges, Attacks Poison Enemies", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2442112158", + ["text"] = "While in Her Embrace, take #% of your total Maximum Life and Energy Shield as Fire Damage per second per Level", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4197693974", + ["text"] = "While on Low Life, Life Flasks gain # Charge every 3 seconds", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3730497630", + ["text"] = "While there are at least five nearby Allies, you and nearby Allies have Onslaught", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_769192511", + ["text"] = "While your Passive Skill Tree connects to a class' starting location, you gain: Marauder: Melee Skills have #% increased Area of Effect Duelist: #% of Attack Damage Leeched as Life Ranger: #% increased Movement Speed Shadow: +#% to Critical Strike Chance Witch: #% of Mana Regenerated per second Templar: Damage Penetrates #% Elemental Resistances Scion: +# to All Attributes", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_76458612", + ["text"] = "While your Passive Skill Tree connects to the Marauder's starting location, you gain: #% of Life Regenerated per second", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1109343199", + ["text"] = "Wicked Ward", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3034509000", + ["text"] = "Wild Rogue Exiles in your Maps have #% chance to be Possessed by a Tormented Spirit", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_113499389", + ["text"] = "Wild Rogue Exiles in your Maps have #% chance to have additional Rewards", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4170338365", + ["text"] = "Wind Dancer", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1831757355", + ["text"] = "Wintertide Brand has #% increased Chill Effect", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3225265684", + ["text"] = "With # Corrupted Items Equipped: 50% of Chaos Damage taken does not bypass Energy Shield, and 50% of Physical Damage taken bypasses Energy Shield", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4192058279", + ["text"] = "With # Corrupted Items Equipped: Life Leech recovers based on your Chaos Damage instead", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_370099215", + ["text"] = "With # Small Passives Allocated in Radius, When you Kill a Rare monster, you gain 1 of its Modifiers for 20 seconds", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3807518091", + ["text"] = "With 4 Notables Allocated in Radius, When you Kill a Rare monster, you gain # of its Modifiers for 20 seconds", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1478305007", + ["text"] = "With 40 Intelligence in Radius, #% of Glacial Cascade Physical Damage Converted to Cold Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1367987042", + ["text"] = "With 40 Intelligence in Radius, Glacial Cascade has an additional Burst", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_637033100", + ["text"] = "With 40 total Dexterity and Strength in Radius, Prismatic Skills cannot choose Lightning", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2053992416", + ["text"] = "With 40 total Dexterity and Strength in Radius, Prismatic Skills deal 50% less Lightning Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2105355711", + ["text"] = "With 40 total Dexterity and Strength in Radius, Spectral Shield Throw Chains +# times", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_894768849", + ["text"] = "With 40 total Dexterity and Strength in Radius, Spectral Shield Throw fires #% more Shard Projectiles", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_63111803", + ["text"] = "With 40 total Intelligence and Dexterity in Radius, Prismatic Skills cannot choose Fire", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1813069390", + ["text"] = "With 40 total Intelligence and Dexterity in Radius, Prismatic Skills deal 50% less Fire Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2864618930", + ["text"] = "With 40 total Strength and Intelligence in Radius, Prismatic Skills cannot choose Cold", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3286480398", + ["text"] = "With 40 total Strength and Intelligence in Radius, Prismatic Skills deal 50% less Cold Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4122732904", + ["text"] = "With a Ghastly Eye Jewel Socketed, Minions have #% chance to gain Unholy Might on Hit with Spells", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2388362438", + ["text"] = "With a Ghastly Eye Jewel Socketed, Minions have +# to Accuracy Rating", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3153744598", + ["text"] = "With a Hypnotic Eye Jewel Socketed, gain Arcane Surge on Hit with Spells", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_642457541", + ["text"] = "With a Murderous Eye Jewel Socketed, Intimidate Enemies for 4 seconds on Hit with Attacks", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3892691596", + ["text"] = "With a Murderous Eye Jewel Socketed, Melee Attacks grant # Rage on Hit", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_186482813", + ["text"] = "With a Murderous Eye Jewel Socketed, Melee Hits have #% chance to Fortify", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2863332749", + ["text"] = "With a Searching Eye Jewel Socketed, Attacks have #% chance to grant Onslaught On Kill", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2044840211", + ["text"] = "With a Searching Eye Jewel Socketed, Blind Enemies for 4 seconds on Hit with Attacks", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2750004091", + ["text"] = "With a Searching Eye Jewel Socketed, Maim Enemies for 4 seconds on Hit with Attacks", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1919087214", + ["text"] = "With at least 1000 Intelligence, #% of Damage dealt by your Raised Zombies is Leeched to you as Energy Shield", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2802263253", + ["text"] = "With at least 1000 Strength, #% of Damage dealt by your Raised Zombies is Leeched to you as Life", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3585572043", + ["text"] = "With at least 40 Dexterity in Radius, Animate Weapon can Animate up to # Ranged Weapons", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_630867098", + ["text"] = "With at least 40 Dexterity in Radius, Barrage fires an additional projectile simultaneously on the first and final attacks", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_100088509", + ["text"] = "With at least 40 Dexterity in Radius, Dual Strike Hits Intimidate Enemies for 4 seconds while wielding an Axe", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3603019813", + ["text"] = "With at least 40 Dexterity in Radius, Dual Strike deals Off Hand Splash Damage to surrounding targets", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2562474285", + ["text"] = "With at least 40 Dexterity in Radius, Dual Strike deals Splash Damage to surrounding targets while wielding a Mace", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2869420801", + ["text"] = "With at least 40 Dexterity in Radius, Dual Strike has #% increased Accuracy Rating while wielding a Sword", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1795260970", + ["text"] = "With at least 40 Dexterity in Radius, Dual Strike has #% increased Attack Speed while wielding a Claw", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1503812817", + ["text"] = "With at least 40 Dexterity in Radius, Dual Strike has +#% to Critical Strike Multiplier while wielding a Dagger", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3765671129", + ["text"] = "With at least 40 Dexterity in Radius, Dual Strike has a #% chance to deal Double Damage with the Main-Hand Weapon", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2511280084", + ["text"] = "With at least 40 Dexterity in Radius, Ethereal Knives fires Projectiles in a circle", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2822821681", + ["text"] = "With at least 40 Dexterity in Radius, Ethereal Knives fires an additional Projectile", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2092708508", + ["text"] = "With at least 40 Dexterity in Radius, Frost Blades has #% increased Projectile Speed", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1170556324", + ["text"] = "With at least 40 Dexterity in Radius, Galvanic Arrow deals #% increased Area Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3945934607", + ["text"] = "With at least 40 Dexterity in Radius, Galvanic Arrow has #% increased Area of Effect", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3103494675", + ["text"] = "With at least 40 Dexterity in Radius, Ice Shot Pierces an additional Target", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3442130499", + ["text"] = "With at least 40 Dexterity in Radius, Ice Shot has #% increased Area of Effect", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2412100590", + ["text"] = "With at least 40 Dexterity in Radius, Melee Damage dealt by Frost Blades Penetrates #% Cold Resistance", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_695031402", + ["text"] = "With at least 40 Dexterity in Radius, Viper Strike deals #% increased Damage with Hits and Poison for each Poison on the Enemy", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_235847153", + ["text"] = "With at least 40 Dexterity in Radius, Viper Strike has a #% chance per Poison on Enemy to grant Unholy Might for 4 seconds on Hit", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_811386429", + ["text"] = "With at least 40 Dexterity in Radius, each Spectral Throw Projectile gains #% increased Damage each time it Hits", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2074744008", + ["text"] = "With at least 40 Intelligence in Radius, #% increased Freezing Pulse Damage if you've Shattered an Enemy Recently", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_303219716", + ["text"] = "With at least 40 Intelligence in Radius, #% of Damage taken Recouped as Mana if you've Warcried Recently", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_222829382", + ["text"] = "With at least 40 Intelligence in Radius, Blight has #% increased Cast Speed", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2181499453", + ["text"] = "With at least 40 Intelligence in Radius, Blight has #% increased Hinder Duration", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3881647885", + ["text"] = "With at least 40 Intelligence in Radius, Blight inflicts Withered for # seconds", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_435737693", + ["text"] = "With at least 40 Intelligence in Radius, Blight inflicts Withered for 2 seconds", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2560038623", + ["text"] = "With at least 40 Intelligence in Radius, Cold Snap grants Power Charges instead of Frenzy Charges when Enemies die in its Area With at least 40 Intelligence in Radius, Cold Snap's Cooldown can be bypassed by Power Charges instead of Frenzy Charges", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1213084913", + ["text"] = "With at least 40 Intelligence in Radius, Discharge Cooldown is # ms", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2818653316", + ["text"] = "With at least 40 Intelligence in Radius, Discharge deals #% more Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2045330446", + ["text"] = "With at least 40 Intelligence in Radius, Discharge has #% more Area of Effect", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_24977021", + ["text"] = "With at least 40 Intelligence in Radius, Fireball Projectiles gain Area as they travel farther, up to #% increased Area of Effect", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_480975218", + ["text"] = "With at least 40 Intelligence in Radius, Fireball cannot ignite", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1482194094", + ["text"] = "With at least 40 Intelligence in Radius, Fireball has +#% chance to inflict scorch", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2098320128", + ["text"] = "With at least 40 Intelligence in Radius, Freezing Pulse fires an additional Projectile", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2727977666", + ["text"] = "With at least 40 Intelligence in Radius, Frostbolt Projectiles gain #% increased Projectile Speed per second", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3790108551", + ["text"] = "With at least 40 Intelligence in Radius, Frostbolt fires an additional Projectile", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1351893427", + ["text"] = "With at least 40 Intelligence in Radius, Projectiles gain radius as they travel farther, up to a maximum of +# metre to radius", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1097026492", + ["text"] = "With at least 40 Intelligence in Radius, Raised Zombies' Slam Attack has #% increased Cooldown Recovery Rate", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2390273715", + ["text"] = "With at least 40 Intelligence in Radius, Raised Spectres have a #% chance to gain Soul Eater for 20 seconds on Kill", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_781633505", + ["text"] = "With at least 40 Intelligence in Radius, Raised Zombies' Slam Attack deals #% increased Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_160933750", + ["text"] = "With at least 40 Intelligence in Radius, Rolling Magma has #% increased Area of Effect per Chain", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3131110290", + ["text"] = "With at least 40 Intelligence in Radius, Rolling Magma deals #% more Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1141756390", + ["text"] = "With at least 40 Intelligence in Radius, Rolling Magma deals #% more Damage per Chain", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2542542825", + ["text"] = "With at least 40 Intelligence in Radius, Rolling Magma fires an additional Projectile", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_935386993", + ["text"] = "With at least 40 Intelligence in Radius, Spark fires Projectiles in a circle", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1650632809", + ["text"] = "With at least 40 Intelligence in Radius, Spark fires an additional Projectile", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3088991881", + ["text"] = "With at least 40 Intelligence in Radius, Summon Skeletons can Summon up to # Skeleton Mages", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1250317014", + ["text"] = "With at least 40 Strength in Radius, #% increased Rarity of Items dropped by Enemies Shattered by Glacial Hammer", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3738331820", + ["text"] = "With at least 40 Strength in Radius, #% of Glacial Hammer Physical Damage Converted to Cold Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2298311736", + ["text"] = "With at least 40 Strength in Radius, Attacks Exerted by Infernal Cry deal #% more Damage with Ignite", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1539696482", + ["text"] = "With at least 40 Strength in Radius, Cleave has +0.1 metres to Radius per Nearby Enemy, up to a maximum of +1 metre", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2471517399", + ["text"] = "With at least 40 Strength in Radius, Combust is Disabled", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3565558422", + ["text"] = "With at least 40 Strength in Radius, Glacial Hammer deals Cold-only Splash Damage to surrounding targets", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_156016608", + ["text"] = "With at least 40 Strength in Radius, Ground Slam has a #% increased angle", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1559361866", + ["text"] = "With at least 40 Strength in Radius, Ground Slam has a #% chance to grant an Endurance Charge when you Stun an Enemy", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1025503586", + ["text"] = "With at least 40 Strength in Radius, Heavy Strike has a #% chance to deal Double Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1248507170", + ["text"] = "With at least 40 Strength in Radius, Hits with Cleave Fortify", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_530280833", + ["text"] = "With at least 40 Strength in Radius, Hits with Vigilant Strike Fortify you and Nearby Allies for # seconds", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2295439133", + ["text"] = "With at least 40 Strength in Radius, Molten Strike Projectiles Chain +# time", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_670814047", + ["text"] = "With at least 40 Strength in Radius, Molten Strike Projectiles Chain on impacting ground", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_786380548", + ["text"] = "With at least 40 Strength in Radius, Molten Strike fires #% more Projectiles", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2845889407", + ["text"] = "With at least 40 Strength in Radius, Molten Strike fires an additional Projectile", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1163758055", + ["text"] = "With at least 40 Strength in Radius, Molten Strike has #% increased Area of Effect", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4202723071", + ["text"] = "Wither on Hit with this weapon against Enemies with at least # Poison on them", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_279110104", + ["text"] = "Withered does not expire on Enemies Ignited by you", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2181791238", + ["text"] = "Wrath has #% increased Aura Effect", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1761642973", + ["text"] = "Wrath has #% increased Mana Reservation Efficiency", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3444518809", + ["text"] = "Wrath has #% increased Mana Reservation Efficiency", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3600749521", + ["text"] = "Wrath has #% reduced Reservation", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1865987277", + ["text"] = "Wrath has no Reservation", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_482204003", + ["text"] = "Xoph, Dark Embers in your Maps has a #% chance to be Duplicated", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4103953516", + ["text"] = "Yellow Beasts in your Maps have #% chance to be replaced with Red Beasts", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2636728487", + ["text"] = "You always Ignite while Burning", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_113536037", + ["text"] = "You and Enemies in your Presence count as moving while affected by Elemental Ailments", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3232695173", + ["text"] = "You and Nearby Allies have # to # added Chaos Damage per White Socket", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2665149933", + ["text"] = "You and Nearby Allies have # to # added Cold Damage per Green Socket", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1666896662", + ["text"] = "You and Nearby Allies have # to # added Fire Damage per Red Socket", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3726585224", + ["text"] = "You and Nearby Allies have # to # added Lightning Damage per Blue Socket", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_549203380", + ["text"] = "You and Nearby Allies have #% increased Item Rarity", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_319842716", + ["text"] = "You and nearby Allies have +#% to Elemental Resistances", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2936084533", + ["text"] = "You and nearby Allies have 30% increased Mana Regeneration Rate", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_637766438", + ["text"] = "You and nearby allies gain #% increased Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3577248251", + ["text"] = "You and your Minions take #% reduced Reflected Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2160417795", + ["text"] = "You and your Minions take #% reduced Reflected Elemental Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_129035625", + ["text"] = "You and your Minions take #% reduced Reflected Physical Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1496370423", + ["text"] = "You and your Totems Regenerate #% of Life per second for each Summoned Totem", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1802660259", + ["text"] = "You are Chilled when you are Poisoned", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_67132951", + ["text"] = "You are Chilled while you are Bleeding", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_694123963", + ["text"] = "You are Cursed with Vulnerability", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1989416016", + ["text"] = "You are Debilitated", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_165884462", + ["text"] = "You are Hexproof if you have a Magic Ring in right slot", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1766730250", + ["text"] = "You are Immune to Ailments while Focused", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_116621037", + ["text"] = "You are Immune to Curses", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1187803783", + ["text"] = "You are Shocked during Effect, causing 50% increased Damage taken", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_971937289", + ["text"] = "You are Unaffected by Bleeding if you've cast Vulnerability in the past 10 seconds", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2291122510", + ["text"] = "You are Unaffected by Bleeding while Leeching", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4194606073", + ["text"] = "You are Unaffected by Freeze if you've cast Frostbite in the past 10 seconds", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_40907696", + ["text"] = "You are Unaffected by Ignite if you've cast Flammability in the past 10 seconds", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2517037025", + ["text"] = "You are Unaffected by Shock if you've cast Conductivity in the past 10 seconds", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2584264074", + ["text"] = "You are at Maximum Chance to Block Attack Damage if you have not Blocked Recently", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1817677817", + ["text"] = "You are at Maximum Chance to Block Spell Damage if you have not Blocked Recently", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_708630863", + ["text"] = "You can Cast an additional Brand", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_30642521", + ["text"] = "You can apply # additional Curses", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3897433431", + ["text"] = "You can apply # additional Curses during Effect", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1397871191", + ["text"] = "You can apply # additional Curses if 6 Hunter Items are Equipped", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4102244881", + ["text"] = "You can apply an additional Curse while affected by Malevolence", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_761598374", + ["text"] = "You can apply an additional Curse while at maximum Power Charges", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4197792189", + ["text"] = "You can be Touched by Tormented Spirits", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1471580517", + ["text"] = "You can catch Exotic Fish", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_230941555", + ["text"] = "You can have an Offering of each type", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3806798486", + ["text"] = "You can have an additional Tincture active", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3639765866", + ["text"] = "You can have two Offerings of different types", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_28721242", + ["text"] = "You can have two different Banners at the same time", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2837603657", + ["text"] = "You can inflict an additional Ignite on each Enemy", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_608438307", + ["text"] = "You can only Socket Corrupted Gems in this item", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3128318472", + ["text"] = "You can only deal Damage with this Weapon or Ignite", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1736212068", + ["text"] = "You cannot Cast Socketed Hex Curse Skills Inflict Socketed Hexes on Enemies that trigger your Traps", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4164247992", + ["text"] = "You cannot Recharge Energy Shield", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1052583507", + ["text"] = "You cannot Regenerate Energy Shield", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2306924373", + ["text"] = "You cannot be Chilled for # second after being Chilled", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1654414582", + ["text"] = "You cannot be Cursed with Silence", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3612464552", + ["text"] = "You cannot be Frozen for # second after being Frozen", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_721014846", + ["text"] = "You cannot be Hindered", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_947072590", + ["text"] = "You cannot be Ignited for # second after being Ignited", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1126826428", + ["text"] = "You cannot be Maimed", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_215346464", + ["text"] = "You cannot be Shocked for # second after being Shocked", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_798853218", + ["text"] = "You cannot be Shocked while Frozen", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_798111687", + ["text"] = "You cannot be Shocked while at maximum Endurance Charges", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3780437763", + ["text"] = "You cannot be Stunned while at maximum Endurance Charges", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_683365179", + ["text"] = "You cannot gain Rage during Soul Gain Prevention", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1220105149", + ["text"] = "You cannot have Non-Animated, Non-Manifested Minions", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2836980154", + ["text"] = "You cannot have Non-Spectre Minions", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1121911611", + ["text"] = "You cannot have more than 2 Summoned Totems of the same type", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1826605755", + ["text"] = "You cannot have non-Golem Minions", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3257374551", + ["text"] = "You count as on Full Life while you are Cursed with Vulnerability", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2304300603", + ["text"] = "You count as on Low Life while you are Cursed with Vulnerability", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3560157887", + ["text"] = "You do not inherently take less Damage for having Fortification", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1280291906", + ["text"] = "You gain #% increased Damage per stack of Sulphite Intoxication", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1774735706", + ["text"] = "You gain #% increased Movement Speed per stack of Sulphite Intoxication", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3363725306", + ["text"] = "You gain +#% to all maximum Elemental Resistances per stack of Sulphite Intoxication", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3856092403", + ["text"] = "You gain Adrenaline for # second on using a Vaal Skill", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1174243390", + ["text"] = "You gain Divinity for # seconds on reaching maximum Divine Charges Lose all Divine Charges when you gain Divinity", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3714207489", + ["text"] = "You gain Onslaught for # second per Endurance Charge when Hit", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1055188639", + ["text"] = "You gain Onslaught for # seconds on Critical Strike", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3818161429", + ["text"] = "You gain Onslaught for # seconds on Culling Strike", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1195849808", + ["text"] = "You gain Onslaught for # seconds on Kill", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1424006185", + ["text"] = "You gain Onslaught for # seconds on Kill while affected by Haste", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2580101523", + ["text"] = "You gain Onslaught for # seconds on Killing Taunted Enemies", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2654043939", + ["text"] = "You gain Onslaught for # seconds on using a Vaal Skill", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2764164760", + ["text"] = "You gain Onslaught for # seconds when Hit", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089413281", + ["text"] = "You gain Phasing for # seconds on using a Vaal Skill", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_375932027", + ["text"] = "You gain a Grasping Vine when you take a Critical Strike", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2064503808", + ["text"] = "You gain an Endurance Charge on Kill", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2105456174", + ["text"] = "You grant # Frenzy Charges to allies on Death", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1190121450", + ["option"] = { + ["options"] = { + { + ["id"] = 1, + ["text"] = "Chilling", + }, + { + ["id"] = 2, + ["text"] = "Shocking", + }, + { + ["id"] = 3, + ["text"] = "Igniting", + }, + }, + }, + ["text"] = "You have # Conflux for 3 seconds every 8 seconds", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_845062586", + ["text"] = "You have Acceleration Shrine Buff while affected by no Flasks", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1243471794", + ["text"] = "You have Arcane Surge during Effect of any Mana Flask", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1665800734", + ["text"] = "You have Brutal Shrine Buff while affected by no Flasks", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1196333117", + ["text"] = "You have Consecrated Ground around you while stationary if Strength is your highest Attribute", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_880970200", + ["text"] = "You have Consecrated Ground around you while stationary", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1756017808", + ["text"] = "You have Crimson Dance if you have dealt a Critical Strike Recently", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3492797685", + ["text"] = "You have Crimson Dance while you have Cat's Stealth", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2150694455", + ["text"] = "You have Culling Strike against Cursed Enemies", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1962944794", + ["text"] = "You have Diamond Shrine Buff while affected by no Flasks", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1941745370", + ["text"] = "You have Echoing Shrine Buff while affected by no Flasks", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2741732114", + ["text"] = "You have Elemental Conflux if the stars are aligned", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3284029342", + ["text"] = "You have Far Shot while you do not have Iron Reflexes", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_799872465", + ["text"] = "You have Fungal Ground around you while stationary", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1525347447", + ["text"] = "You have Gloom Shrine Buff while affected by no Flasks", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3677336814", + ["text"] = "You have Greater Freezing Shrine Buff while affected by no Flasks", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1838429243", + ["text"] = "You have Greater Shocking Shrine Buff while affected by no Flasks", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3878995435", + ["text"] = "You have Greater Skeletal Shrine Buff while affected by no Flasks", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3909952544", + ["text"] = "You have Igniting, Chilling and Shocking Conflux while affected by Glorious Madness", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2954550164", + ["text"] = "You have Immortal Ambition while all Socketed Gems are Red", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1451444229", + ["text"] = "You have Impenetrable Shrine Buff while affected by no Flasks", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1990354706", + ["text"] = "You have Iron Reflexes while at maximum Frenzy Charges", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2761538350", + ["text"] = "You have Lesser Brutal Shrine Buff", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3779398176", + ["text"] = "You have Lesser Massive Shrine Buff", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3810260531", + ["text"] = "You have Massive Shrine Buff while affected by no Flasks", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1876857497", + ["text"] = "You have Mind over Matter while at maximum Power Charges", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1572897579", + ["text"] = "You have Onslaught during Soul Gain Prevention", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1493590317", + ["text"] = "You have Onslaught while Fortified", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3101915418", + ["text"] = "You have Onslaught while at maximum Endurance Charges", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1959256242", + ["text"] = "You have Onslaught while not on Low Mana", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1871938116", + ["text"] = "You have Onslaught while on Low Life", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4274075490", + ["text"] = "You have Onslaught while you have Cat's Agility", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3058395672", + ["text"] = "You have Perfect Agony if you've dealt a Critical Strike recently", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2632954025", + ["text"] = "You have Phasing if Energy Shield Recharge has started Recently", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3492654051", + ["text"] = "You have Phasing if you have Blocked Recently", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3489372920", + ["text"] = "You have Phasing if you've Killed Recently", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1346311588", + ["text"] = "You have Phasing while affected by Haste", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_23466649", + ["text"] = "You have Phasing while on Low Life", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1834455446", + ["text"] = "You have Phasing while you have Cat's Stealth", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2752009372", + ["text"] = "You have Replenishing Shrine Buff while affected by no Flasks", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3934633832", + ["text"] = "You have Resistance Shrine Buff while affected by no Flasks", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2905429068", + ["text"] = "You have Resolute Technique while you do not have Elemental Overload", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_736980450", + ["text"] = "You have Resonating Shrine Buff while affected by no Flasks", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1518701332", + ["text"] = "You have Scorching Conflux, Brittle Conflux and Sapping Conflux while your two highest Attributes are equal", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1085545682", + ["text"] = "You have Tailwind if you have dealt a Critical Strike Recently", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1678234826", + ["text"] = "You have Tailwind if you've used a Socketed Vaal Skill Recently", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2353201291", + ["text"] = "You have Unholy Might while you have no Energy Shield", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1032751668", + ["text"] = "You have Vaal Pact if you've dealt a Critical Strike Recently", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2022851697", + ["text"] = "You have Vaal Pact while Focused", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3242537102", + ["text"] = "You have Vaal Pact while all Socketed Gems are Red", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1314418188", + ["text"] = "You have Vaal Pact while at maximum Endurance Charges", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2391255504", + ["text"] = "You have Zealot's Oath if you haven't been hit recently", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3591359751", + ["text"] = "You have no Armour or Maximum Energy Shield", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2706175703", + ["text"] = "You have no Intelligence", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_854225133", + ["text"] = "You have no Life Regeneration", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2350411833", + ["text"] = "You lose #% of Energy Shield per second", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3590104875", + ["text"] = "You lose all Endurance Charges on reaching maximum Endurance Charges", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2994477068", + ["text"] = "You lose all Endurance Charges when Hit", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2663792764", + ["text"] = "You lose all Spirit Charges when taking a Savage Hit", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_455217103", + ["text"] = "You only lose # Crab Barriers when you take Physical Damage from a Hit", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4031081471", + ["text"] = "You take # Chaos Damage per second for # seconds on Kill", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2070361501", + ["text"] = "You take #% increased Extra Damage from Critical Strikes by Poisoned Enemies", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2905515354", + ["text"] = "You take #% of Damage from Blocked Hits", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2393355605", + ["text"] = "You take #% of Elemental Damage from Blocked Hits", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2301696196", + ["text"] = "You take #% of your maximum Life as Chaos Damage on use", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3855016469", + ["text"] = "You take #% reduced Extra Damage from Critical Strikes", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2380848911", + ["text"] = "You take #% reduced Extra Damage from Critical Strikes per Endurance Charge", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_68410701", + ["text"] = "You take #% reduced Extra Damage from Critical Strikes while affected by Determination", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3544527742", + ["text"] = "You take #% reduced Extra Damage from Critical Strikes while you have no Power Charges", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1623397857", + ["text"] = "You take Chaos Damage instead of Physical Damage from Bleeding", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2953854044", + ["text"] = "You take no Extra Damage from Critical Strikes while Elusive", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_179010262", + ["text"] = "Your Action Speed is at least 90% of base value", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4196775867", + ["text"] = "Your Aura Buffs do not affect allies", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3148879215", + ["text"] = "Your Blink and Mirror arrow clones use your Gloves", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3549040753", + ["text"] = "Your Chaos Damage Poisons Enemies", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3686066640", + ["text"] = "Your Chaos Damage can Chill", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2973498992", + ["text"] = "Your Chaos Damage can Freeze", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1139878780", + ["text"] = "Your Chaos Damage can Ignite", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2418601510", + ["text"] = "Your Chaos Damage can Shock", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2894297982", + ["text"] = "Your Chaos Damage has #% chance to Poison Enemies", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1888494262", + ["text"] = "Your Cold Damage can Ignite", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3573591118", + ["text"] = "Your Cold Damage can Ignite", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1261612903", + ["text"] = "Your Cold Damage can Ignite but not Freeze or Chill", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1917124426", + ["text"] = "Your Cold Damage can Poison", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_220932154", + ["text"] = "Your Cold Damage cannot Freeze", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3936990754", + ["text"] = "Your Corrupted Rare Maps are modified unpredictably when opened", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1349659520", + ["text"] = "Your Critical Strike Chance is Lucky while Focused", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2706122133", + ["text"] = "Your Critical Strike Chance is Lucky while on Low Life", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_824024007", + ["text"] = "Your Critical Strike Multiplier is 300%", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4058681894", + ["text"] = "Your Critical Strikes do not deal extra Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2893557981", + ["text"] = "Your Critical Strikes do not deal extra Damage during Effect", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_973000407", + ["text"] = "Your Curse Limit is equal to your maximum Power Charges", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2339022735", + ["text"] = "Your Curses have #% increased Effect if 50% of Curse Duration expired", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_204466006", + ["text"] = "Your Damage with Hits is Lucky while on Low Life", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2933625540", + ["text"] = "Your Elemental Damage can Shock", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1985969957", + ["text"] = "Your Fire Damage can Poison", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_932096321", + ["text"] = "Your Fire Damage can Shock", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2949096603", + ["text"] = "Your Fire Damage can Shock but not Ignite", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1367119630", + ["text"] = "Your Hexes can affect Hexproof Enemies", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3772848194", + ["text"] = "Your Hits Intimidate Enemies for 4 seconds while you are using Pride", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2740359895", + ["text"] = "Your Hits can only Kill Frozen Enemies", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_90597215", + ["text"] = "Your Hits can't be Evaded by Blinded Enemies", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3091072796", + ["text"] = "Your Hits cannot Penetrate or ignore Elemental Resistances", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3322709337", + ["text"] = "Your Hits inflict Decay, dealing 700 Chaos Damage per second for 8 seconds", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_380759151", + ["text"] = "Your Lightning Damage can Freeze", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1011772129", + ["text"] = "Your Lightning Damage can Freeze but not Shock", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3121133045", + ["text"] = "Your Lightning Damage can Ignite", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1604984482", + ["text"] = "Your Lightning Damage can Poison", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3132594008", + ["text"] = "Your Linked Minions take #% more Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_675784826", + ["text"] = "Your Lucky or Unlucky effects use the best or worst from three rolls instead of two", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_358129101", + ["text"] = "Your Maps are haunted by an additional Tormented Spirit", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_279246355", + ["text"] = "Your Maps are inhabited by an additional Invasion Boss", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3550168289", + ["text"] = "Your Maps are inhabited by an additional Rogue Exile", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3187151138", + ["option"] = { + ["options"] = { + { + ["id"] = 2, + ["text"] = "Einhar", + }, + { + ["id"] = 3, + ["text"] = "Alva", + }, + { + ["id"] = 5, + ["text"] = "Niko", + }, + { + ["id"] = 6, + ["text"] = "Jun", + }, + }, + }, + ["text"] = "Your Maps contain # (Master)", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2343561786", + ["text"] = "Your Maps contain # additional Clusters of Mysterious Barrels", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3240183538", + ["text"] = "Your Maps contain # additional Strongboxes", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2608186870", + ["text"] = "Your Maps contain # additional packs of Elder Fiends", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1640965354", + ["text"] = "Your Maps contain #% increased number of Runic Monster Markers", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1366180761", + ["text"] = "Your Maps contain #% more Monster Packs consisting of difficult and rewarding Monsters", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2482214457", + ["text"] = "Your Maps contain Creeping Agony", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1671749203", + ["text"] = "Your Maps contain Ritual Altars", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2459443694", + ["text"] = "Your Maps contain a Blight Encounter", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2055257822", + ["text"] = "Your Maps contain an Ultimatum Encounter", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1070816711", + ["text"] = "Your Maps contain an additional Abyss", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_504850499", + ["text"] = "Your Maps contain an additional Harbinger", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_395808938", + ["text"] = "Your Maps contain an additional Imprisoned Monster", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3897451709", + ["text"] = "Your Maps contain an additional Legion Encounter", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_581013336", + ["text"] = "Your Maps contain an additional Magic Monster pack", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1468737867", + ["text"] = "Your Maps contain an additional Shrine", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2810286377", + ["text"] = "Your Maps contain an additional pack with a Rare monster", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1385280440", + ["text"] = "Your Maps contain an additional unstable Breach", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2528440851", + ["text"] = "Your Maps contains # additional packs of Shaper Creations", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_588512487", + ["text"] = "Your Maps have # additional random Modifier", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1943774953", + ["text"] = "Your Maps have #% chance to award double progress towards encountering The Eater of Worlds", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2523194133", + ["text"] = "Your Maps have #% chance to award double progress towards encountering The Searing Exarch", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3788235244", + ["text"] = "Your Maps have #% chance to contain Cadiro Perandus", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2039130613", + ["text"] = "Your Maps have #% chance to contain an additional Imprisoned Monster", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3629418990", + ["text"] = "Your Maps have #% increased chance to contain Alva", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1301096166", + ["text"] = "Your Maps have #% increased chance to contain Einhar", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4116217552", + ["text"] = "Your Maps have #% increased chance to contain Jun", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_399319107", + ["text"] = "Your Maps have #% increased chance to contain Niko", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1777351949", + ["text"] = "Your Maps have #% increased chance to contain Ritual Altars", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2936740844", + ["text"] = "Your Maps have #% increased chance to contain The Sacred Grove", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1393318927", + ["text"] = "Your Maps have #% increased chance to contain a Blight Encounter", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2372432713", + ["text"] = "Your Maps have #% increased chance to contain a Breach", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_310950600", + ["text"] = "Your Maps have #% increased chance to contain a Legion Encounter", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3573600538", + ["text"] = "Your Maps have #% increased chance to contain a Mirror of Delirium", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4069523014", + ["text"] = "Your Maps have #% increased chance to contain a Smuggler's Cache", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4111037980", + ["text"] = "Your Maps have #% increased chance to contain an Abyss", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1561678231", + ["text"] = "Your Maps have #% increased chance to contain an Expedition Encounter", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_880963174", + ["text"] = "Your Maps have #% increased chance to contain an Ultimatum Encounter", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2750973094", + ["text"] = "Your Maps have +#% chance to be haunted by a Tormented Spirit", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2709296039", + ["text"] = "Your Maps have +#% chance to contain Alva", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1133841298", + ["text"] = "Your Maps have +#% chance to contain Breaches", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1566972708", + ["text"] = "Your Maps have +#% chance to contain Einhar", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_527292219", + ["text"] = "Your Maps have +#% chance to contain Jun", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4267923742", + ["text"] = "Your Maps have +#% chance to contain Niko", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2661886285", + ["text"] = "Your Maps have +#% chance to contain Ore Deposits", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1314822783", + ["text"] = "Your Maps have +#% chance to contain Ritual Altars", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1145451936", + ["text"] = "Your Maps have +#% chance to contain The Sacred Grove", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_764545335", + ["text"] = "Your Maps have +#% chance to contain a Blight Encounter", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1981273563", + ["text"] = "Your Maps have +#% chance to contain a Legion Encounter", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1808954678", + ["text"] = "Your Maps have +#% chance to contain a Mirror of Delirium", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2974922599", + ["text"] = "Your Maps have +#% chance to contain a Rogue Exile", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2571125745", + ["text"] = "Your Maps have +#% chance to contain a Shrine", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1975869602", + ["text"] = "Your Maps have +#% chance to contain a Smuggler's Cache", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2388936716", + ["text"] = "Your Maps have +#% chance to contain a Strongbox", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_495465216", + ["text"] = "Your Maps have +#% chance to contain a Trial of Ascendancy", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2156201537", + ["text"] = "Your Maps have +#% chance to contain a Vaal Side Area", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4278144676", + ["text"] = "Your Maps have +#% chance to contain an Abyss", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_827686764", + ["text"] = "Your Maps have +#% chance to contain an Abyss per 2% increased Pack Size", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4154778375", + ["text"] = "Your Maps have +#% chance to contain an Expedition Encounter", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4098286334", + ["text"] = "Your Maps have +#% chance to contain an Imprisoned Monster", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1365687125", + ["text"] = "Your Maps have +#% chance to contain an Ultimatum Encounter", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_344979199", + ["text"] = "Your Maps have +#% chance to contain other Extra Content that can be turned off through Atlas Passives", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_416299653", + ["text"] = "Your Maps have +#% chance to grant an Atlas Mission on Completion", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_846433713", + ["text"] = "Your Maps have a #% chance to be haunted by an additional Tormented Spirit", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_776258428", + ["text"] = "Your Maps have a #% chance to contain # additional Rogue Exiles", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1051510395", + ["text"] = "Your Maps have a #% chance to contain 20 additional Rogue Exiles", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_266448395", + ["text"] = "Your Maps have a #% chance to contain an additional Harbinger", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2059168182", + ["text"] = "Your Maps have a #% chance to contain an additional Invasion Boss", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1123357133", + ["text"] = "Your Maps have a #% chance to contain an additional Rogue Exile", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1260233365", + ["text"] = "Your Maps have a #% chance to contain an additional Shrine", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2399560930", + ["text"] = "Your Maps have no chance to contain Abysses", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1981776737", + ["text"] = "Your Maps have no chance to contain Blight Encounters", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1562449600", + ["text"] = "Your Maps have no chance to contain Breaches", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2978599106", + ["text"] = "Your Maps have no chance to contain Expedition Encounters", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1132162798", + ["text"] = "Your Maps have no chance to contain Legion Encounters", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2400312255", + ["text"] = "Your Maps have no chance to contain Mirrors of Delirium", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_847340197", + ["text"] = "Your Maps have no chance to contain Ritual Altars", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3178985579", + ["text"] = "Your Maps have no chance to contain Smuggler's Caches", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3819443367", + ["text"] = "Your Maps have no chance to contain Ultimatum Encounters", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_328145899", + ["text"] = "Your Maps have no chance to contain the Sacred Grove", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1488908340", + ["text"] = "Your Maps that contain Smuggler's Caches have a #% chance to contain 6 additional Smuggler's Caches", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_549540629", + ["text"] = "Your Maps that contain Smuggler's Caches have a #% chance to contain an additional Smuggler's Cache", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1320130840", + ["text"] = "Your Maps that contain capturable Beasts contain # additional Yellow Beast", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1044770866", + ["text"] = "Your Maps that contain capturable Beasts have #% chance to contain an additional Red Beast", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3049505189", + ["text"] = "Your Maps which contain Unstable Breaches have #% chance to contain an additional Unstable Breach", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2714721644", + ["text"] = "Your Maps which contain Unstable Breaches have #% chance to contain ten additional Unstable Breaches", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2440265466", + ["text"] = "Your Maps which contain Unstable Breaches have #% chance to contain three additional Unstable Breaches", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3051957033", + ["text"] = "Your Maps which contain Unstable Breaches have #% chance to contain two additional Unstable Breaches", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4224761993", + ["text"] = "Your Maps with Incursions always have four Incursions", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2843145261", + ["text"] = "Your Maps with Ore Deposits have #% increased chance to contain at least two Ore Deposits", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2302977956", + ["text"] = "Your Maps with Ritual Altars always have four Ritual Altars", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1104120660", + ["text"] = "Your Mark Transfers to another Enemy when Marked Enemy dies", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3443585706", + ["text"] = "Your Maximum Endurance Charges is equal to your Maximum Frenzy Charges", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4053338379", + ["text"] = "Your Maximum Energy Shield is Equal to #% of Your Maximum Life", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2238831336", + ["text"] = "Your Maximum Frenzy Charges is equal to your Maximum Power Charges", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_798767971", + ["text"] = "Your Maximum Resistances are #%", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2537902937", + ["text"] = "Your Melee Hits can't be Evaded while wielding a Sword", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4099989681", + ["text"] = "Your Minions spread Burning Ground on Death, dealing #% of their maximum Life as Fire Damage per second", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_688802590", + ["text"] = "Your Minions spread Caustic Ground on Death, dealing #% of their maximum Life as Chaos Damage per second", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1827636152", + ["text"] = "Your Minions use your Flasks when summoned", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3945685369", + ["text"] = "Your Movement Speed is #% of its base value", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2071120096", + ["text"] = "Your Offerings have #% increased Effect on you", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2227042420", + ["text"] = "Your Physical Damage can Chill", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1526975429", + ["text"] = "Your Physical Damage can Freeze", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3914001710", + ["text"] = "Your Physical Damage can Ignite during Effect", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3848047105", + ["text"] = "Your Physical Damage can Shock", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3462113315", + ["text"] = "Your Raised Spectres also gain Arcane Surge when you do", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3951269079", + ["text"] = "Your Raised Zombies count as corpses", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1267068028", + ["text"] = "Your Red Tier Maps grant # additional Voltaxic Sulphite on Completion", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_99487834", + ["text"] = "Your Skills deal you #% of Mana Spent on Upfront Skill Mana Costs as Physical Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1192252020", + ["text"] = "Your Skills that throw Mines reserve Life instead of Mana", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1981749265", + ["text"] = "Your Spells are disabled", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3238189103", + ["text"] = "Your Spells have Culling Strike", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_335741860", + ["text"] = "Your Travel Skills Critically Strike", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_345628839", + ["text"] = "Your Warcries are disabled", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3946593978", + ["text"] = "Your Warcries cover Enemies in Ash for # second", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3452963763", + ["text"] = "Your Warcries open Chests", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1235418654", + ["text"] = "Your White Tier Maps grant # additional Voltaxic Sulphite on Completion", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_932764321", + ["text"] = "Your Yellow Tier Maps grant # additional Voltaxic Sulphite on Completion", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1165023334", + ["text"] = "Your hits can't be Evaded", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_598215770", + ["text"] = "Your nearby party members maximum Endurance Charges is equal to yours", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_288651645", + ["text"] = "Your spells have #% chance to Shock against Frozen Enemies", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3343030527", + ["text"] = "Zana Missions in your Maps have # additional Map option", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_632761194", + ["text"] = "Zealot's Oath", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_851224302", + ["text"] = "Zealot's Oath during Effect", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4096052153", + ["text"] = "Zealotry has #% increased Aura Effect", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_168308685", + ["text"] = "Zealotry has #% increased Mana Reservation Efficiency", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4216444167", + ["text"] = "Zealotry has #% increased Mana Reservation Efficiency", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_478612089", + ["text"] = "Zealotry has #% reduced Reservation", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1741242318", + ["text"] = "Zealotry has no Reservation", + ["type"] = "explicit", + }, + }, + ["id"] = "explicit", + ["label"] = "Explicit", + }, + { + ["entries"] = { + { + ["id"] = "implicit.stat_762600725", + ["text"] = "# Life gained when you Block", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2122183138", + ["text"] = "# Mana gained when you Block", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_4139229725", + ["text"] = "# to # Added Attack Lightning Damage per 200 Accuracy Rating", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3478075311", + ["text"] = "# to # Added Chaos Damage with Bow Attacks", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3648858570", + ["text"] = "# to # Added Cold Damage per Frenzy Charge", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_215124030", + ["text"] = "# to # Added Cold Damage with Bow Attacks", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3120164895", + ["text"] = "# to # Added Fire Damage with Bow Attacks", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1040269876", + ["text"] = "# to # Added Lightning Damage with Bow Attacks", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1760576992", + ["text"] = "# to # Added Physical Damage with Bow Attacks", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2530372417", + ["text"] = "#% Chance to Block Attack Damage", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_561307714", + ["text"] = "#% Chance to Block Spell Damage", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2881111359", + ["text"] = "#% Chance to Block Spell Damage (Legacy)", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2221570601", + ["text"] = "#% Global chance to Blind Enemies on hit", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3771516363", + ["text"] = "#% additional Physical Damage Reduction", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_287491423", + ["text"] = "#% additional Physical Damage Reduction against Abyssal Monsters", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1873457881", + ["text"] = "#% additional Physical Damage Reduction while affected by Determination", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2181129193", + ["text"] = "#% additional Physical Damage Reduction while stationary", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2705185939", + ["text"] = "#% chance to Aggravate Bleeding on targets you Hit with Attacks", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1618589784", + ["text"] = "#% chance to Avoid Bleeding", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3743375737", + ["text"] = "#% chance to Avoid Cold Damage from Hits", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3005472710", + ["text"] = "#% chance to Avoid Elemental Ailments", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_42242677", + ["text"] = "#% chance to Avoid Fire Damage from Hits", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2889664727", + ["text"] = "#% chance to Avoid Lightning Damage from Hits", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3483999943", + ["text"] = "#% chance to Avoid being Chilled", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1514829491", + ["text"] = "#% chance to Avoid being Frozen", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1783006896", + ["text"] = "#% chance to Avoid being Ignited", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_4053951709", + ["text"] = "#% chance to Avoid being Poisoned", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1871765599", + ["text"] = "#% chance to Avoid being Shocked", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_4262448838", + ["text"] = "#% chance to Avoid being Stunned", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_318953428", + ["text"] = "#% chance to Blind Enemies on Hit with Attacks", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2795267150", + ["text"] = "#% chance to Blind Enemies on Hit with Melee Weapons", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3181974858", + ["text"] = "#% chance to Cause Monsters to Flee", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_327253797", + ["text"] = "#% chance to Defend with 200% of Armour", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_49183689", + ["text"] = "#% chance to Extinguish Enemies on Hit", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2309614417", + ["text"] = "#% chance to Freeze", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1858426568", + ["text"] = "#% chance to Freeze with Melee Weapons", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_800141891", + ["text"] = "#% chance to Freeze, Shock and Ignite", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_4208096430", + ["text"] = "#% chance to Gain Arcane Surge on Hit with Spells", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3002506763", + ["text"] = "#% chance to Hinder Enemies on Hit with Spells", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1335054179", + ["text"] = "#% chance to Ignite", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_4206255461", + ["text"] = "#% chance to Ignite with Melee Weapons", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1916706958", + ["text"] = "#% chance to Ignore Stuns while Casting", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3739863694", + ["text"] = "#% chance to Impale Enemies on Hit with Attacks", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2089652545", + ["text"] = "#% chance to Intimidate Enemies for 4 seconds on Hit", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_78985352", + ["text"] = "#% chance to Intimidate Enemies for 4 seconds on Hit", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3438201750", + ["text"] = "#% chance to Intimidate Enemies for 4 seconds on Hit with Attacks", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_977908611", + ["text"] = "#% chance to Knock Enemies Back on hit", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2763429652", + ["text"] = "#% chance to Maim on Hit", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_795138349", + ["text"] = "#% chance to Poison on Hit", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3885634897", + ["text"] = "#% chance to Poison on Hit (Local)", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1168985596", + ["text"] = "#% chance to Poison with Melee Weapons", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2113677718", + ["text"] = "#% chance to Sap Enemies when you Block their Damage", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_779391868", + ["text"] = "#% chance to Scorch Enemies when you Block their Damage", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1538773178", + ["text"] = "#% chance to Shock", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2313961828", + ["text"] = "#% chance to Shock with Melee Weapons", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_280213220", + ["text"] = "#% chance to Taunt Enemies on Hit with Attacks", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_763611529", + ["text"] = "#% chance to Unnerve Enemies for 4 seconds on Hit", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1519615863", + ["text"] = "#% chance to cause Bleeding on Hit", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1630041051", + ["text"] = "#% chance to cause Bleeding with Melee Weapons", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1172810729", + ["text"] = "#% chance to deal Double Damage", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2622251413", + ["text"] = "#% chance to double Stun Duration", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3023957681", + ["text"] = "#% chance to gain Onslaught for 4 seconds on Kill", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3562211447", + ["text"] = "#% chance to gain Unholy Might for 3 seconds on Kill", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2323242761", + ["text"] = "#% chance to gain a Frenzy Charge on Hit", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1826802197", + ["text"] = "#% chance to gain a Frenzy Charge on Kill", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3814876985", + ["text"] = "#% chance to gain a Power Charge on Critical Strike", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2483795307", + ["text"] = "#% chance to gain a Power Charge on Kill", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1054322244", + ["text"] = "#% chance to gain an Endurance Charge on Kill", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1582887649", + ["text"] = "#% chance to gain an Endurance Charge when you Stun an Enemy", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1962922582", + ["text"] = "#% chance to gain an additional Vaal Soul on Kill", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1749278976", + ["text"] = "#% chance to inflict Brittle on Enemies when you Block their Damage", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1469603435", + ["text"] = "#% chance to take 20% less Area Damage from Hits per 2% Overcapped Cold Resistance", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1915414884", + ["text"] = "#% chance when you pay a Skill's Cost to gain that much Mana", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1782086450", + ["text"] = "#% faster start of Energy Shield Recharge", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2538120572", + ["text"] = "#% increased Accuracy Rating with Axes", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_169946467", + ["text"] = "#% increased Accuracy Rating with Bows", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1297965523", + ["text"] = "#% increased Accuracy Rating with Claws", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2054715690", + ["text"] = "#% increased Accuracy Rating with Daggers", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3208450870", + ["text"] = "#% increased Accuracy Rating with Maces or Sceptres", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1617235962", + ["text"] = "#% increased Accuracy Rating with Staves", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2090868905", + ["text"] = "#% increased Accuracy Rating with Swords", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2150183156", + ["text"] = "#% increased Accuracy Rating with Wands", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2878959938", + ["text"] = "#% increased Action Speed", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3422638915", + ["text"] = "#% increased Agility speed", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3995612171", + ["text"] = "#% increased Arctic Armour Buff Effect", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_4251717817", + ["text"] = "#% increased Area Damage", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_280731498", + ["text"] = "#% increased Area of Effect", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_430248187", + ["text"] = "#% increased Area of Effect if you have Stunned an Enemy Recently", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_895264825", + ["text"] = "#% increased Area of Effect of Aura Skills", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2866361420", + ["text"] = "#% increased Armour", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1062208444", + ["text"] = "#% increased Armour (Local)", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_791154540", + ["text"] = "#% increased Armour from Equipped Helmet and Gloves", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2843214518", + ["text"] = "#% increased Attack Damage", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3944782785", + ["text"] = "#% increased Attack Damage against Bleeding Enemies", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2347923784", + ["text"] = "#% increased Attack Damage if Corrupted", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_4134865890", + ["text"] = "#% increased Attack Damage per 500 Maximum Mana", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2696701853", + ["text"] = "#% increased Attack Damage with Main Hand", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2924279089", + ["text"] = "#% increased Attack Damage with Off Hand", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_681332047", + ["text"] = "#% increased Attack Speed", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_210067635", + ["text"] = "#% increased Attack Speed (Local)", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1365052901", + ["text"] = "#% increased Attack Speed during any Flask Effect", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3548561213", + ["text"] = "#% increased Attack Speed per Frenzy Charge", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3550868361", + ["text"] = "#% increased Attack Speed with Axes", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3759735052", + ["text"] = "#% increased Attack Speed with Bows", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1421645223", + ["text"] = "#% increased Attack Speed with Claws", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2538566497", + ["text"] = "#% increased Attack Speed with Daggers", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2515515064", + ["text"] = "#% increased Attack Speed with Maces or Sceptres", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1394963553", + ["text"] = "#% increased Attack Speed with Staves", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3293699237", + ["text"] = "#% increased Attack Speed with Swords", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3720627346", + ["text"] = "#% increased Attack Speed with Wands", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2672805335", + ["text"] = "#% increased Attack and Cast Speed", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2320884914", + ["text"] = "#% increased Attack and Cast Speed during Onslaught", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_26867112", + ["text"] = "#% increased Attack and Cast Speed if Corrupted", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3143208761", + ["text"] = "#% increased Attributes", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2426838124", + ["text"] = "#% increased Battlemage's Cry Buff Effect", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1692879867", + ["text"] = "#% increased Bleed Duration on you", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1459321413", + ["text"] = "#% increased Bleeding Duration", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1585769763", + ["text"] = "#% increased Blind Effect", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_369183568", + ["text"] = "#% increased Block Recovery", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_4223377453", + ["text"] = "#% increased Brand Attachment range", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3095027077", + ["text"] = "#% increased Brute Force speed", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1175385867", + ["text"] = "#% increased Burning Damage", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2891184298", + ["text"] = "#% increased Cast Speed", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_252194507", + ["text"] = "#% increased Cast Speed during any Flask Effect", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1334577255", + ["text"] = "#% increased Cast Speed per 20 Dexterity", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2382196858", + ["text"] = "#% increased Cast Speed while Dual Wielding", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1612163368", + ["text"] = "#% increased Cast Speed while holding a Shield", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2066542501", + ["text"] = "#% increased Cast Speed while wielding a Staff", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2622009823", + ["text"] = "#% increased Chaining range", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_736967255", + ["text"] = "#% increased Chaos Damage", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_4004011170", + ["text"] = "#% increased Chaos Damage for each Corrupted Item Equipped", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1959092146", + ["text"] = "#% increased Chaos Damage with Attack Skills", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3761858151", + ["text"] = "#% increased Chaos Damage with Spell Skills", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1408638732", + ["text"] = "#% increased Character Size", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3485067555", + ["text"] = "#% increased Chill Duration on Enemies", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3291658075", + ["text"] = "#% increased Cold Damage", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_860668586", + ["text"] = "#% increased Cold Damage with Attack Skills", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2186994986", + ["text"] = "#% increased Cold Damage with Spell Skills", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3395908304", + ["text"] = "#% increased Conductivity Curse Effect", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1004011302", + ["text"] = "#% increased Cooldown Recovery Rate", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_162292333", + ["text"] = "#% increased Cooldown Recovery Rate for each Green Skill Gem you have socketed", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3417757416", + ["text"] = "#% increased Cooldown Recovery Rate for throwing Traps", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1124980805", + ["text"] = "#% increased Cooldown Recovery Rate of Movement Skills", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2308278768", + ["text"] = "#% increased Cooldown Recovery Rate of Travel Skills", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2888942321", + ["text"] = "#% increased Counter-Thaumaturgy speed", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2375316951", + ["text"] = "#% increased Critical Strike Chance", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2898434123", + ["text"] = "#% increased Critical Strike Chance during any Flask Effect", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2194114101", + ["text"] = "#% increased Critical Strike Chance for Attacks", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1218939541", + ["text"] = "#% increased Critical Strike Chance for Spells while Dual Wielding", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_952509814", + ["text"] = "#% increased Critical Strike Chance for Spells while holding a Shield", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_140429540", + ["text"] = "#% increased Critical Strike Chance for Spells while wielding a Staff", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2091591880", + ["text"] = "#% increased Critical Strike Chance with Bows", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3678828098", + ["text"] = "#% increased Critical Strike Chance with Melee Weapons", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2154246560", + ["text"] = "#% increased Damage", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2947215268", + ["text"] = "#% increased Damage during any Flask Effect", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_767196662", + ["text"] = "#% increased Damage if Corrupted", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_967627487", + ["text"] = "#% increased Damage over Time", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_342670903", + ["text"] = "#% increased Damage per 100 Dexterity", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3966666111", + ["text"] = "#% increased Damage per 100 Intelligence", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_4274080377", + ["text"] = "#% increased Damage per 100 Strength", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2062174346", + ["text"] = "#% increased Damage per 15 Dexterity", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3801128794", + ["text"] = "#% increased Damage per 15 Intelligence", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3948776386", + ["text"] = "#% increased Damage per 15 Strength", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3515686789", + ["text"] = "#% increased Damage per Endurance Charge", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_902747843", + ["text"] = "#% increased Damage per Frenzy Charge", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2034658008", + ["text"] = "#% increased Damage per Power Charge", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2477636501", + ["text"] = "#% increased Damage taken per 250 Dexterity", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3522931817", + ["text"] = "#% increased Damage taken per 250 Intelligence", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1443108510", + ["text"] = "#% increased Damage taken per 250 Strength", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3582580206", + ["text"] = "#% increased Damage while Dead", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_310246444", + ["text"] = "#% increased Damage while Leeching", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3591306273", + ["text"] = "#% increased Damage while Leeching Life", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1994684426", + ["text"] = "#% increased Damage while Leeching Mana", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_690707482", + ["text"] = "#% increased Damage with Ailments", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1294118672", + ["text"] = "#% increased Damage with Bleeding", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3660450649", + ["text"] = "#% increased Damage with Bleeding from Melee Weapons", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3257279374", + ["text"] = "#% increased Damage with Hits and Ailments against Abyssal Monsters", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3935936274", + ["text"] = "#% increased Damage with Ignite from Melee Weapons", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1290399200", + ["text"] = "#% increased Damage with Poison", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_776174407", + ["text"] = "#% increased Damage with Poison from Melee Weapons", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2257141320", + ["text"] = "#% increased Damage with Vaal Skills", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2520458995", + ["text"] = "#% increased Deception speed", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2847917427", + ["text"] = "#% increased Demolition speed", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3185156108", + ["text"] = "#% increased Despair Curse Effect", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_4139681126", + ["text"] = "#% increased Dexterity", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2419712247", + ["text"] = "#% increased Duration of Ailments on Enemies", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2604619892", + ["text"] = "#% increased Duration of Elemental Ailments on Enemies", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3015437071", + ["text"] = "#% increased Effect of Arcane Surge on you", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1808507379", + ["text"] = "#% increased Effect of Blind from Melee Weapons", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2109043683", + ["text"] = "#% increased Effect of Buffs granted by your Golems", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_828179689", + ["text"] = "#% increased Effect of Chill", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3296814491", + ["text"] = "#% increased Effect of Chill from Melee Weapons", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1793818220", + ["text"] = "#% increased Effect of Cold Ailments", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_782230869", + ["text"] = "#% increased Effect of Non-Damaging Ailments", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2324668473", + ["text"] = "#% increased Effect of Non-Damaging Ailments for each Blue Skill Gem you have socketed", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3151397056", + ["text"] = "#% increased Effect of Onslaught on you", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2527686725", + ["text"] = "#% increased Effect of Shock", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2245266924", + ["text"] = "#% increased Effect of Shock from Melee Weapons", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1482572705", + ["text"] = "#% increased Effect of Socketed Abyss Jewels", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2420972973", + ["text"] = "#% increased Effect of the Buff granted by your Carrion Golems", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1648511635", + ["text"] = "#% increased Effect of the Buff granted by your Chaos Golems", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_269930125", + ["text"] = "#% increased Effect of the Buff granted by your Flame Golems", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2250111474", + ["text"] = "#% increased Effect of the Buff granted by your Ice Golems", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2527931375", + ["text"] = "#% increased Effect of the Buff granted by your Lightning Golems", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2284801675", + ["text"] = "#% increased Effect of the Buff granted by your Stone Golems", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2353576063", + ["text"] = "#% increased Effect of your Curses", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_803185500", + ["text"] = "#% increased Effect of your Marks", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3141070085", + ["text"] = "#% increased Elemental Damage", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_387439868", + ["text"] = "#% increased Elemental Damage with Attack Skills", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_503138266", + ["text"] = "#% increased Elemental Damage with Melee Weapons", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3348324479", + ["text"] = "#% increased Elemental Weakness Curse Effect", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_240857668", + ["text"] = "#% increased Elusive Effect", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2377438118", + ["text"] = "#% increased Empowerment", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1170174456", + ["text"] = "#% increased Endurance Charge Duration", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2839036860", + ["text"] = "#% increased Endurance, Frenzy and Power Charge Duration", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_4015621042", + ["text"] = "#% increased Energy Shield (Local)", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2339757871", + ["text"] = "#% increased Energy Shield Recharge Rate", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_988575597", + ["text"] = "#% increased Energy Shield Recovery rate", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3293830776", + ["text"] = "#% increased Enfeeble Curse Effect", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3211817426", + ["text"] = "#% increased Engineering speed", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2106365538", + ["text"] = "#% increased Evasion Rating", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_124859000", + ["text"] = "#% increased Evasion Rating (Local)", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_623823763", + ["text"] = "#% increased Evasion Rating from Equipped Helmet and Boots", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_660404777", + ["text"] = "#% increased Evasion Rating per Frenzy Charge", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3666934677", + ["text"] = "#% increased Experience gain", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1581907402", + ["text"] = "#% increased Explicit Modifier magnitudes", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1539368271", + ["text"] = "#% increased Explosive Placement Range", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1539368271", + ["text"] = "#% increased Explosive Placement Range in your Maps", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3289828378", + ["text"] = "#% increased Explosive Radius", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3289828378", + ["text"] = "#% increased Explosive Radius in your Maps", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3962278098", + ["text"] = "#% increased Fire Damage", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2241902512", + ["text"] = "#% increased Fire Damage per 20 Strength", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3743301799", + ["text"] = "#% increased Fire Damage taken", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2468413380", + ["text"] = "#% increased Fire Damage with Attack Skills", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_361162316", + ["text"] = "#% increased Fire Damage with Spell Skills", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1296614065", + ["text"] = "#% increased Fish Bite Sensitivity", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_282417259", + ["text"] = "#% increased Flammability Curse Effect", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1452809865", + ["text"] = "#% increased Flask Charges gained", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3741323227", + ["text"] = "#% increased Flask Effect Duration", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1073942215", + ["text"] = "#% increased Freeze Duration on Enemies", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3338298622", + ["text"] = "#% increased Frenzy Charge Duration", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1443215722", + ["text"] = "#% increased Frostbite Curse Effect", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_624954515", + ["text"] = "#% increased Global Accuracy Rating", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_587431675", + ["text"] = "#% increased Global Critical Strike Chance", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_4023723828", + ["text"] = "#% increased Global Critical Strike Chance if Corrupted", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1389153006", + ["text"] = "#% increased Global Defences", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1310194496", + ["text"] = "#% increased Global Physical Damage", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1086147743", + ["text"] = "#% increased Ignite Duration on Enemies", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_656461285", + ["text"] = "#% increased Intelligence", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_821241191", + ["text"] = "#% increased Life Recovery from Flasks", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3240073117", + ["text"] = "#% increased Life Recovery rate", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_44972811", + ["text"] = "#% increased Life Regeneration rate", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1263695895", + ["text"] = "#% increased Light Radius", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2231156303", + ["text"] = "#% increased Lightning Damage", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_4208907162", + ["text"] = "#% increased Lightning Damage with Attack Skills", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3935031607", + ["text"] = "#% increased Lightning Damage with Spell Skills", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3312732077", + ["text"] = "#% increased Lockpicking speed", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3513180117", + ["text"] = "#% increased Mana Recovery rate", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_789117908", + ["text"] = "#% increased Mana Regeneration Rate", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2847548062", + ["text"] = "#% increased Mana Regeneration Rate per Power Charge", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1269219558", + ["text"] = "#% increased Mana Reservation Efficiency of Skills", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_4237190083", + ["text"] = "#% increased Mana Reservation Efficiency of Skills", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2227180465", + ["text"] = "#% increased Mana Reservation of Skills", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2777224821", + ["text"] = "#% increased Maps found in your Maps", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1234687045", + ["text"] = "#% increased Maximum Energy Shield from Equipped Gloves and Boots", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2013799819", + ["text"] = "#% increased Maximum total Energy Shield Recovery per second from Leech", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_4118987751", + ["text"] = "#% increased Maximum total Life Recovery per second from Leech", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_96977651", + ["text"] = "#% increased Maximum total Mana Recovery per second from Leech", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1002362373", + ["text"] = "#% increased Melee Damage", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2645167381", + ["text"] = "#% increased Melee Damage per 20 Intelligence", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1896971621", + ["text"] = "#% increased Mine Throwing Speed", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1718147982", + ["text"] = "#% increased Minion Accuracy Rating", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2306522833", + ["text"] = "#% increased Monster Movement Speed", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2250533757", + ["text"] = "#% increased Movement Speed", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_304970526", + ["text"] = "#% increased Movement Speed during any Flask Effect", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2880601380", + ["text"] = "#% increased Movement Speed if Corrupted", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3684879618", + ["text"] = "#% increased Movement Speed while Phasing", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1456551059", + ["text"] = "#% increased Perception speed", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1509134228", + ["text"] = "#% increased Physical Damage", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1609570656", + ["text"] = "#% increased Physical Damage while you have Unholy Might", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2266750692", + ["text"] = "#% increased Physical Damage with Attack Skills", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2008219439", + ["text"] = "#% increased Physical Damage with Axes", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_402920808", + ["text"] = "#% increased Physical Damage with Bows", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_635761691", + ["text"] = "#% increased Physical Damage with Claws", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3882531569", + ["text"] = "#% increased Physical Damage with Daggers", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3774831856", + ["text"] = "#% increased Physical Damage with Maces or Sceptres", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1430255627", + ["text"] = "#% increased Physical Damage with Spell Skills", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3150705301", + ["text"] = "#% increased Physical Damage with Staves", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3814560373", + ["text"] = "#% increased Physical Damage with Swords", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2769075491", + ["text"] = "#% increased Physical Damage with Wands", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2011656677", + ["text"] = "#% increased Poison Duration", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3301100256", + ["text"] = "#% increased Poison Duration on you", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3872306017", + ["text"] = "#% increased Power Charge Duration", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1794120699", + ["text"] = "#% increased Prefix Modifier magnitudes", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2162876159", + ["text"] = "#% increased Projectile Attack Damage", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1839076647", + ["text"] = "#% increased Projectile Damage", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3759663284", + ["text"] = "#% increased Projectile Speed", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1998937909", + ["text"] = "#% increased Projectile Speed per 20 Strength", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2844206732", + ["text"] = "#% increased Punishment Curse Effect", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3802667447", + ["text"] = "#% increased Quantity of Fish Caught", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_884586851", + ["text"] = "#% increased Quantity of Items found", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2390685262", + ["text"] = "#% increased Quantity of Items found in your Maps", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_4147277532", + ["text"] = "#% increased Rallying Cry Buff Effect", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3310914132", + ["text"] = "#% increased Rarity of Fish Caught", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2833896424", + ["text"] = "#% increased Rarity of Items dropped in Heists", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3917489142", + ["text"] = "#% increased Rarity of Items found", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2587176568", + ["text"] = "#% increased Reservation Efficiency of Skills", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_4202507508", + ["text"] = "#% increased Reservation Efficiency of Skills", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2264523604", + ["text"] = "#% increased Reservation of Skills", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3668351662", + ["text"] = "#% increased Shock Duration on Enemies", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3377888098", + ["text"] = "#% increased Skill Effect Duration", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1430991954", + ["text"] = "#% increased Skill Effect Duration for each Red Skill Gem you have socketed", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_737908626", + ["text"] = "#% increased Spell Critical Strike Chance", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2974417149", + ["text"] = "#% increased Spell Damage", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_374116820", + ["text"] = "#% increased Spell Damage if Corrupted", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2818518881", + ["text"] = "#% increased Spell Damage per 10 Intelligence", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1073314277", + ["text"] = "#% increased Spell Damage per 10 Strength", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2612056840", + ["text"] = "#% increased Spell Damage per 16 Dexterity", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3961014595", + ["text"] = "#% increased Spell Damage per 16 Intelligence", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_4249521944", + ["text"] = "#% increased Spell Damage per 16 Strength", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3555662994", + ["text"] = "#% increased Spell Damage per 500 Maximum Mana", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_827329571", + ["text"] = "#% increased Spell Damage per Power Charge", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1678690824", + ["text"] = "#% increased Spell Damage while Dual Wielding", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1766142294", + ["text"] = "#% increased Spell Damage while holding a Shield", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3496944181", + ["text"] = "#% increased Spell Damage while wielding a Staff", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_734614379", + ["text"] = "#% increased Strength", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2517001139", + ["text"] = "#% increased Stun Duration on Enemies", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2912587137", + ["text"] = "#% increased Stun Duration with Melee Weapons", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_680068163", + ["text"] = "#% increased Stun Threshold", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2511217560", + ["text"] = "#% increased Stun and Block Recovery", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1033086302", + ["text"] = "#% increased Suffix Modifier magnitudes", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1662974426", + ["text"] = "#% increased Temporal Chains Curse Effect", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3374165039", + ["text"] = "#% increased Totem Placement speed", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1579578270", + ["text"] = "#% increased Trap Disarmament speed", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_118398748", + ["text"] = "#% increased Trap Throwing Speed", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3165492062", + ["text"] = "#% increased Vaal Skill Critical Strike Chance", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1065909420", + ["text"] = "#% increased Vulnerability Curse Effect", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3037553757", + ["text"] = "#% increased Warcry Buff Effect", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1316278494", + ["text"] = "#% increased Warcry Speed", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1880071428", + ["text"] = "#% increased effect of Non-Curse Auras from your Skills", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3191479793", + ["text"] = "#% increased effect of Offerings", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2482852589", + ["text"] = "#% increased maximum Energy Shield", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1025108940", + ["text"] = "#% increased maximum Energy Shield if Corrupted", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_983749596", + ["text"] = "#% increased maximum Life", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3887484120", + ["text"] = "#% increased maximum Life if Corrupted", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2748665614", + ["text"] = "#% increased maximum Mana", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3051490307", + ["text"] = "#% increased number of Explosives", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3051490307", + ["text"] = "#% increased number of Explosives in your Maps", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_4219583418", + ["text"] = "#% increased quantity of Artifacts dropped by Monsters", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_703341733", + ["text"] = "#% increased raising of Alert Level", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2633745731", + ["text"] = "#% increased total Recovery per second from Life Leech", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3815042054", + ["text"] = "#% increased total Recovery per second from Life Leech for each Corrupted Item Equipped", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_690135178", + ["text"] = "#% increased total Recovery per second from Mana Leech", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2679819855", + ["text"] = "#% increased total Recovery per second from Mana Leech for each Corrupted Item Equipped", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_170394517", + ["text"] = "#% more Accuracy Rating", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_95249895", + ["text"] = "#% more Monster Life", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_141810208", + ["text"] = "#% of Attack Damage Leeched as Life", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1828023575", + ["text"] = "#% of Attack Damage Leeched as Life", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_350069479", + ["text"] = "#% of Attack Damage Leeched as Mana", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2238792070", + ["text"] = "#% of Chaos Damage Leeched as Life", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_744082851", + ["text"] = "#% of Chaos Damage Leeched as Life", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2459451600", + ["text"] = "#% of Cold Damage Leeched as Life", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3999401129", + ["text"] = "#% of Cold Damage Leeched as Life", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1189760108", + ["text"] = "#% of Cold Damage from Hits taken as Fire Damage", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1313503107", + ["text"] = "#% of Cold Damage from Hits taken as Lightning Damage", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3679418014", + ["text"] = "#% of Cold Damage taken Recouped as Life", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1571797746", + ["text"] = "#% of Damage from your Hits cannot be Reflected", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2510655429", + ["text"] = "#% of Damage from your Hits cannot be Reflected", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_458438597", + ["text"] = "#% of Damage is taken from Mana before Life", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1444556985", + ["text"] = "#% of Damage taken Recouped as Life", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_472520716", + ["text"] = "#% of Damage taken Recouped as Mana", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_720395808", + ["text"] = "#% of Elemental Damage Leeched as Life", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1743742391", + ["text"] = "#% of Fire Damage Leeched as Life", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3848282610", + ["text"] = "#% of Fire Damage Leeched as Life", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2522672898", + ["text"] = "#% of Fire Damage from Hits taken as Cold Damage", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1504091975", + ["text"] = "#% of Fire Damage from Hits taken as Lightning Damage", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1742651309", + ["text"] = "#% of Fire Damage taken Recouped as Life", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2467518140", + ["text"] = "#% of Hit Damage from your Minions cannot be Reflected", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2696663331", + ["text"] = "#% of Lightning Damage Leeched as Life", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_80079005", + ["text"] = "#% of Lightning Damage Leeched as Life", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1017730114", + ["text"] = "#% of Lightning Damage from Hits taken as Cold Damage", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3375859421", + ["text"] = "#% of Lightning Damage from Hits taken as Fire Damage", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2970621759", + ["text"] = "#% of Lightning Damage taken Recouped as Life", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3593843976", + ["text"] = "#% of Physical Attack Damage Leeched as Life", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_55876295", + ["text"] = "#% of Physical Attack Damage Leeched as Life (Local)", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3237948413", + ["text"] = "#% of Physical Attack Damage Leeched as Mana", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_669069897", + ["text"] = "#% of Physical Attack Damage Leeched as Mana (Local)", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_490098963", + ["text"] = "#% of Physical Damage Converted to Chaos Damage", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2133341901", + ["text"] = "#% of Physical Damage Converted to Cold Damage", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1533563525", + ["text"] = "#% of Physical Damage Converted to Fire Damage", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3240769289", + ["text"] = "#% of Physical Damage Converted to Lightning Damage", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2508100173", + ["text"] = "#% of Physical Damage Leeched as Life", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3764265320", + ["text"] = "#% of Physical Damage Leeched as Life", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_4129825612", + ["text"] = "#% of Physical Damage from Hits taken as Chaos Damage", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1871056256", + ["text"] = "#% of Physical Damage from Hits taken as Cold Damage", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3342989455", + ["text"] = "#% of Physical Damage from Hits taken as Fire Damage", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_425242359", + ["text"] = "#% of Physical Damage from Hits taken as Lightning Damage", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1431238626", + ["text"] = "#% of Physical Damage from Hits with this Weapon is Converted to a random Element", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3743438423", + ["text"] = "#% of Physical Damage is taken from Mana before Life", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_4021566756", + ["text"] = "#% of Physical Damage taken Recouped as Life", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_11106713", + ["text"] = "#% of Spell Damage Leeched as Energy Shield", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3001376862", + ["text"] = "#% reduced Area Damage taken from Hits", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2960683632", + ["text"] = "#% reduced Chaos Damage taken", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1874553720", + ["text"] = "#% reduced Chill Duration on you", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3303114033", + ["text"] = "#% reduced Cold Damage taken", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2102212273", + ["text"] = "#% reduced Critical Strike Chance per Power Charge", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1101403182", + ["text"] = "#% reduced Damage taken from Damage Over Time", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1425651005", + ["text"] = "#% reduced Damage taken from Projectile Hits", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3309607228", + ["text"] = "#% reduced Damage taken if Corrupted", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1478653032", + ["text"] = "#% reduced Effect of Chill on you", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3407849389", + ["text"] = "#% reduced Effect of Curses on you", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3801067695", + ["text"] = "#% reduced Effect of Shock on you", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1745952865", + ["text"] = "#% reduced Elemental Ailment Duration on you", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1443060084", + ["text"] = "#% reduced Enemy Stun Threshold", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2791825817", + ["text"] = "#% reduced Enemy Stun Threshold with Melee Weapons", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_644456512", + ["text"] = "#% reduced Flask Charges used", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2160282525", + ["text"] = "#% reduced Freeze Duration on you", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_986397080", + ["text"] = "#% reduced Ignite Duration on you", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1276918229", + ["text"] = "#% reduced Lightning Damage taken", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2859471749", + ["text"] = "#% reduced Mana Cost of Attacks", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_474294393", + ["text"] = "#% reduced Mana Cost of Skills", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3846810663", + ["text"] = "#% reduced Reflected Damage taken", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_248838155", + ["text"] = "#% reduced Reflected Elemental Damage taken", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3158958938", + ["text"] = "#% reduced Reflected Physical Damage taken", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_99927264", + ["text"] = "#% reduced Shock Duration on you", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2551779822", + ["text"] = "+# Armour while stationary", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_496011033", + ["text"] = "+# Chaos Damage taken", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_261654754", + ["text"] = "+# Cold Damage taken from Hits", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_614758785", + ["text"] = "+# Fire Damage taken from Hits", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_465051235", + ["text"] = "+# Lightning Damage taken from Hits", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3441651621", + ["text"] = "+# Physical Damage taken from Attack Hits", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3182714256", + ["text"] = "+# Prefix Modifier allowed", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_718638445", + ["text"] = "+# Suffix Modifier allowed", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2264295449", + ["text"] = "+# metres to Melee Strike Range", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_350598685", + ["text"] = "+# metres to Weapon Range", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_803737631", + ["text"] = "+# to Accuracy Rating", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_691932474", + ["text"] = "+# to Accuracy Rating (Local)", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3126680545", + ["text"] = "+# to Accuracy Rating per Frenzy Charge", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3484657501", + ["text"] = "+# to Armour (Local)", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2316658489", + ["text"] = "+# to Armour and Evasion Rating", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2962782530", + ["text"] = "+# to Armour and Evasion Rating while Fortified", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3261801346", + ["text"] = "+# to Dexterity", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2300185227", + ["text"] = "+# to Dexterity and Intelligence", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_53045048", + ["text"] = "+# to Evasion Rating (Local)", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3825877290", + ["text"] = "+# to Global Evasion Rating while moving", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_328541901", + ["text"] = "+# to Intelligence", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2551600084", + ["text"] = "+# to Level of Socketed AoE Gems", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2452998583", + ["text"] = "+# to Level of Socketed Aura Gems", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2027269580", + ["text"] = "+# to Level of Socketed Bow Gems", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2675603254", + ["text"] = "+# to Level of Socketed Chaos Gems", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1645459191", + ["text"] = "+# to Level of Socketed Cold Gems", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3691695237", + ["text"] = "+# to Level of Socketed Curse Gems", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2718698372", + ["text"] = "+# to Level of Socketed Dexterity Gems", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2115168758", + ["text"] = "+# to Level of Socketed Duration Gems", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_339179093", + ["text"] = "+# to Level of Socketed Fire Gems", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2843100721", + ["text"] = "+# to Level of Socketed Gems", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1719423857", + ["text"] = "+# to Level of Socketed Intelligence Gems", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_4043416969", + ["text"] = "+# to Level of Socketed Lightning Gems", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_829382474", + ["text"] = "+# to Level of Socketed Melee Gems", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3604946673", + ["text"] = "+# to Level of Socketed Minion Gems", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2176571093", + ["text"] = "+# to Level of Socketed Projectile Gems", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_524797741", + ["text"] = "+# to Level of Socketed Skill Gems", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_916797432", + ["text"] = "+# to Level of Socketed Strength Gems", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_4154259475", + ["text"] = "+# to Level of Socketed Support Gems", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_150668988", + ["text"] = "+# to Level of Socketed Trap or Mine Gems", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1170386874", + ["text"] = "+# to Level of Socketed Vaal Gems", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1672793731", + ["text"] = "+# to Level of Socketed Warcry Gems", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_4180346416", + ["text"] = "+# to Level of all Vaal Skill Gems", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1515657623", + ["text"] = "+# to Maximum Endurance Charges", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_4078695", + ["text"] = "+# to Maximum Frenzy Charges", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_227523295", + ["text"] = "+# to Maximum Power Charges", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_4138979329", + ["text"] = "+# to Maximum Power Charges and Maximum Endurance Charges", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1181501418", + ["text"] = "+# to Maximum Rage", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3706959521", + ["text"] = "+# to Minimum Endurance Charges", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_66303477", + ["text"] = "+# to Minimum Endurance, Frenzy and Power Charges", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_658456881", + ["text"] = "+# to Minimum Frenzy Charges", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1999711879", + ["text"] = "+# to Minimum Power Charges", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_4080418644", + ["text"] = "+# to Strength", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_538848803", + ["text"] = "+# to Strength and Dexterity", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1535626285", + ["text"] = "+# to Strength and Intelligence", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3736589033", + ["text"] = "+# to Total Mana Cost of Skills", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1379411836", + ["text"] = "+# to all Attributes", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3489782002", + ["text"] = "+# to maximum Energy Shield", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_4052037485", + ["text"] = "+# to maximum Energy Shield (Local)", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_335507772", + ["text"] = "+# to maximum Fortification", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3299347043", + ["text"] = "+# to maximum Life", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1050105434", + ["text"] = "+# to maximum Mana", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_966747987", + ["text"] = "+# to maximum number of Raised Zombies", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_4253454700", + ["text"] = "+#% Chance to Block (Shields)", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1702195217", + ["text"] = "+#% Chance to Block Attack Damage", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2166444903", + ["text"] = "+#% Chance to Block Attack Damage while Dual Wielding", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1001829678", + ["text"] = "+#% Chance to Block Attack Damage while wielding a Staff (Staves)", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2120297997", + ["text"] = "+#% Chance to Block Spell Damage while wielding a Staff", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2156201537", + ["text"] = "+#% Chance to contain a Vaal Side Area", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2023217031", + ["text"] = "+#% Item Quantity", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_190932737", + ["text"] = "+#% Item Rarity", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_948600126", + ["text"] = "+#% Pack Size", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2021058489", + ["text"] = "+#% chance to Evade Attack Hits", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_969576725", + ["text"] = "+#% chance to Evade Attack Hits while affected by Grace", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3680664274", + ["text"] = "+#% chance to Suppress Spell Damage", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_492027537", + ["text"] = "+#% chance to Suppress Spell Damage", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2907896585", + ["text"] = "+#% chance to Suppress Spell Damage while moving", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2094281311", + ["text"] = "+#% to Animated Guardian Elemental Resistances", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_4055307827", + ["text"] = "+#% to Chaos Damage over Time Multiplier", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2923486259", + ["text"] = "+#% to Chaos Resistance", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1950806024", + ["text"] = "+#% to Cold Damage over Time Multiplier", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_4220027924", + ["text"] = "+#% to Cold Resistance", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_4277795662", + ["text"] = "+#% to Cold and Lightning Resistances", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_240289863", + ["text"] = "+#% to Critical Strike Multiplier during any Flask Effect", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3714003708", + ["text"] = "+#% to Critical Strike Multiplier for Attack Damage", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_274716455", + ["text"] = "+#% to Critical Strike Multiplier for Spell Damage", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2349237916", + ["text"] = "+#% to Critical Strike Multiplier for Spells while Dual Wielding", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2311200892", + ["text"] = "+#% to Critical Strike Multiplier for Spells while holding a Shield", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3629080637", + ["text"] = "+#% to Critical Strike Multiplier for Spells while wielding a Staff", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_4219746989", + ["text"] = "+#% to Critical Strike Multiplier with Axes", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1712221299", + ["text"] = "+#% to Critical Strike Multiplier with Bows", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2811834828", + ["text"] = "+#% to Critical Strike Multiplier with Claws", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3998601568", + ["text"] = "+#% to Critical Strike Multiplier with Daggers", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_458899422", + ["text"] = "+#% to Critical Strike Multiplier with Maces or Sceptres", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1474913037", + ["text"] = "+#% to Critical Strike Multiplier with Staves", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3114492047", + ["text"] = "+#% to Critical Strike Multiplier with Swords", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1241396104", + ["text"] = "+#% to Critical Strike Multiplier with Wands", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3988349707", + ["text"] = "+#% to Damage over Time Multiplier", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1423749435", + ["text"] = "+#% to Damage over Time Multiplier for Bleeding", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3382807662", + ["text"] = "+#% to Fire Damage over Time Multiplier", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3372524247", + ["text"] = "+#% to Fire Resistance", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2915988346", + ["text"] = "+#% to Fire and Cold Resistances", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3441501978", + ["text"] = "+#% to Fire and Lightning Resistances", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3556824919", + ["text"] = "+#% to Global Critical Strike Multiplier", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1671376347", + ["text"] = "+#% to Lightning Resistance", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2039822488", + ["text"] = "+#% to Maximum Quality", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1653010703", + ["text"] = "+#% to Non-Ailment Chaos Damage over Time Multiplier", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1314617696", + ["text"] = "+#% to Physical Damage over Time Multiplier", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_768982451", + ["text"] = "+#% to Quality of Socketed AoE Gems", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2276941637", + ["text"] = "+#% to Quality of Socketed Aura Gems", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3280600715", + ["text"] = "+#% to Quality of Socketed Bow Gems", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2062835769", + ["text"] = "+#% to Quality of Socketed Chaos Gems", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1164882313", + ["text"] = "+#% to Quality of Socketed Cold Gems", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2877754099", + ["text"] = "+#% to Quality of Socketed Dexterity Gems", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3422008440", + ["text"] = "+#% to Quality of Socketed Fire Gems", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3828613551", + ["text"] = "+#% to Quality of Socketed Gems", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3174776455", + ["text"] = "+#% to Quality of Socketed Intelligence Gems", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1065580342", + ["text"] = "+#% to Quality of Socketed Lightning Gems", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1396421504", + ["text"] = "+#% to Quality of Socketed Melee Gems", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2428621158", + ["text"] = "+#% to Quality of Socketed Projectile Gems", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_122841557", + ["text"] = "+#% to Quality of Socketed Strength Gems", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1328548975", + ["text"] = "+#% to Quality of Socketed Support Gems", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_791835907", + ["text"] = "+#% to Spell Critical Strike Chance", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2901986750", + ["text"] = "+#% to all Elemental Resistances", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3731630482", + ["text"] = "+#% to all Elemental Resistances if Corrupted", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_569299859", + ["text"] = "+#% to all maximum Resistances", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_4124805414", + ["text"] = "+#% to maximum Chance to Block Attack Damage", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2388574377", + ["text"] = "+#% to maximum Chance to Block Spell Damage", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1301765461", + ["text"] = "+#% to maximum Chaos Resistance", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3676141501", + ["text"] = "+#% to maximum Cold Resistance", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_4095671657", + ["text"] = "+#% to maximum Fire Resistance", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1011760251", + ["text"] = "+#% to maximum Lightning Resistance", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_824762042", + ["text"] = "1% less Damage Taken per # Dexterity", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2874488491", + ["text"] = "1% less Damage Taken per # Intelligence", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1871491972", + ["text"] = "1% less Damage Taken per # Strength", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3531280422", + ["text"] = "Adds # to # Chaos Damage", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2223678961", + ["text"] = "Adds # to # Chaos Damage (Local)", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_674553446", + ["text"] = "Adds # to # Chaos Damage to Attacks", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2300399854", + ["text"] = "Adds # to # Chaos Damage to Spells", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2387423236", + ["text"] = "Adds # to # Cold Damage", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1037193709", + ["text"] = "Adds # to # Cold Damage (Local)", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_4067062424", + ["text"] = "Adds # to # Cold Damage to Attacks", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_149574107", + ["text"] = "Adds # to # Cold Damage to Attacks with this Weapon per 10 Dexterity", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2469416729", + ["text"] = "Adds # to # Cold Damage to Spells", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1662717006", + ["text"] = "Adds # to # Cold Damage to Spells and Attacks", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_321077055", + ["text"] = "Adds # to # Fire Damage", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_709508406", + ["text"] = "Adds # to # Fire Damage (Local)", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1573130764", + ["text"] = "Adds # to # Fire Damage to Attacks", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1060540099", + ["text"] = "Adds # to # Fire Damage to Attacks with this Weapon per 10 Strength", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1133016593", + ["text"] = "Adds # to # Fire Damage to Spells", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3964634628", + ["text"] = "Adds # to # Fire Damage to Spells and Attacks", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1334060246", + ["text"] = "Adds # to # Lightning Damage", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3336890334", + ["text"] = "Adds # to # Lightning Damage (Local)", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1754445556", + ["text"] = "Adds # to # Lightning Damage to Attacks", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3390848861", + ["text"] = "Adds # to # Lightning Damage to Attacks with this Weapon per 10 Intelligence", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2831165374", + ["text"] = "Adds # to # Lightning Damage to Spells", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2885144362", + ["text"] = "Adds # to # Lightning Damage to Spells and Attacks", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1940865751", + ["text"] = "Adds # to # Physical Damage (Local)", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3032590688", + ["text"] = "Adds # to # Physical Damage to Attacks", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2435536961", + ["text"] = "Adds # to # Physical Damage to Spells", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_264042990", + ["text"] = "All Damage from Hits with This Weapon can Poison", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1592278124", + ["text"] = "Anger has #% increased Aura Effect", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2351239732", + ["text"] = "Arctic Armour has #% increased Mana Reservation Efficiency", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1669429179", + ["text"] = "Area contains # additional Afarud Commander Monster Marker", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3936576079", + ["text"] = "Area contains # additional Afarud Monster Markers", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_4160330571", + ["text"] = "Area contains # additional Chest Marker", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1915989164", + ["text"] = "Area contains #% increased number of Monster Markers", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2991413918", + ["text"] = "Area contains #% increased number of Remnants", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1640965354", + ["text"] = "Area contains #% increased number of Runic Monster Markers", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1994562755", + ["text"] = "Area contains Metamorph Monsters", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1145451936", + ["text"] = "Area contains The Sacred Grove", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_392469782", + ["text"] = "Area contains a Breach", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1900164129", + ["text"] = "Area contains a Monster possessed by an Ancient Talisman", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_49787903", + ["text"] = "Area contains a Perandus Chest", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_548865797", + ["text"] = "Area contains a Rogue Exile", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_585159631", + ["text"] = "Area contains a Silver Coin", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2570943032", + ["text"] = "Area contains a Strongbox", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2949489150", + ["text"] = "Area contains a Tormented Spirit", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3159649981", + ["option"] = { + ["options"] = { + { + ["id"] = 1, + ["text"] = "Medved, Feller of Heroes", + }, + { + ["id"] = 2, + ["text"] = "Vorana, Last to Fall", + }, + { + ["id"] = 3, + ["text"] = "Uhtred, Covetous Traitor", + }, + { + ["id"] = 4, + ["text"] = "Olroth, Origin of the Fall", + }, + }, + }, + ["text"] = "Area contains an Expedition Boss (#)", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3557750122", + ["text"] = "Area contains an Expedition Encounter", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3849207804", + ["text"] = "Area contains an Invasion Boss", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1070816711", + ["text"] = "Area contains an additional Abyss", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_504850499", + ["text"] = "Area contains an additional Harbinger", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_395808938", + ["text"] = "Area contains an additional Imprisoned Monster", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3897451709", + ["text"] = "Area contains an additional Legion Encounter", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_581013336", + ["text"] = "Area contains an additional Magic Monster pack", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1468737867", + ["text"] = "Area contains an additional Shrine", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3307533469", + ["text"] = "Area contains an additional Smuggler's Cache", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3240183538", + ["text"] = "Area contains an additional Strongbox", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1160596338", + ["text"] = "Area contains an additional Underground Area", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1612402470", + ["text"] = "Area contains an additional guarded Exquisite Vaal Vessel", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_44159086", + ["text"] = "Area contains an additional guarded Vaal Vessel", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2810286377", + ["text"] = "Area contains an additional pack with a Rare monster", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3907094951", + ["text"] = "Area contains at least 1 Warband Pack", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1050286373", + ["text"] = "Area contains up to 1 Monster imprisoned by Essences", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2878321598", + ["text"] = "Area contains up to 1 Shrine", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3788235244", + ["text"] = "Area has a #% chance to contain Cadiro Perandus", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_754268389", + ["text"] = "Area has an additional random Scarab effect", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2696470877", + ["text"] = "Area is Influenced by the Originator's Memories", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2834034653", + ["text"] = "Area is affected by an additional random Unallocated Notable Atlas Passives", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_358129101", + ["text"] = "Area is haunted by # additional Tormented Spirit", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_299373046", + ["text"] = "Area is infested with Fungal Growths Map's Item Quantity Modifiers also affect Blight Chest count at 25% value Can be Anointed up to 3 times", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1792283443", + ["option"] = { + ["options"] = { + { + ["id"] = 1, + ["text"] = "The Shaper", + }, + { + ["id"] = 2, + ["text"] = "The Elder", + }, + }, + }, + ["text"] = "Area is influenced by #", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_279246355", + ["text"] = "Area is inhabited by an additional Invasion Boss", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3550168289", + ["text"] = "Area is inhabited by an additional Rogue Exile", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1671749203", + ["text"] = "Areas contain Ritual Altars", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2055257822", + ["text"] = "Areas contain an Ultimatum Encounter", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1001077145", + ["text"] = "Arrows Chain +# times", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3492025235", + ["text"] = "Arrows Pierce 1 additional Target", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3423006863", + ["text"] = "Arrows Pierce an additional Target", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3737068014", + ["text"] = "Atlas Passives have #% reduced Effect on Area", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2170876738", + ["text"] = "Attack Critical Strikes ignore Enemy Monster Elemental Resistances", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2146663823", + ["text"] = "Attacks Exerted by Ancestral Cry deal #% increased Damage", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3252913608", + ["text"] = "Attacks Exerted by Seismic Cry deal #% increased Damage", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1510714129", + ["text"] = "Attacks have #% chance to Maim on Hit", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1923879260", + ["text"] = "Attacks have #% chance to cause Bleeding", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2572042788", + ["text"] = "Attacks have +#% to Critical Strike Chance", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_4064396395", + ["text"] = "Attacks with this Weapon Penetrate #% Elemental Resistances", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1901158930", + ["text"] = "Bleeding cannot be inflicted on you", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1652997002", + ["text"] = "Bleeding inflicted with Melee Weapons on non-Bleeding Enemies deals #% more Damage", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3828375170", + ["text"] = "Bleeding you inflict deals Damage #% faster", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1801289192", + ["text"] = "Bone Offering has #% increased Effect", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3885405204", + ["text"] = "Bow Attacks fire # additional Arrows", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_52068049", + ["text"] = "Can be Anointed", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2224292784", + ["text"] = "Can have up to # additional Trap placed at a time", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2994708956", + ["text"] = "Can roll Minion Modifiers", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_589489789", + ["text"] = "Can't use Flask in Fifth Slot", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1436284579", + ["text"] = "Cannot be Blinded", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_876831634", + ["text"] = "Cannot be Frozen", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_331731406", + ["text"] = "Cannot be Ignited", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_4212255859", + ["text"] = "Cannot be Knocked Back", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3835551335", + ["text"] = "Cannot be Poisoned", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_491899612", + ["text"] = "Cannot be Shocked", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_4082780964", + ["text"] = "Cannot roll Caster Modifiers", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3363758458", + ["text"] = "Cannot roll Modifiers of Non-Chaos Damage Types", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_4215265273", + ["text"] = "Cannot roll Modifiers of Non-Cold Damage Types", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_4040327616", + ["text"] = "Cannot roll Modifiers of Non-Fire Damage Types", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1765111378", + ["text"] = "Cannot roll Modifiers of Non-Lightning Damage Types", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_361491825", + ["text"] = "Cannot roll Modifiers of Non-Physical Damage Types", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3001853534", + ["text"] = "Contains a Forge that can Combine Crucible Passive Skill Trees", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_422450559", + ["text"] = "Contains a Forge that can Combine Crucible Passive Skill Trees, including on Unique and Corrupted Items", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_4154778375", + ["text"] = "Contains an Expedition Encounter", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1658498488", + ["text"] = "Corrupted Blood cannot be inflicted on you", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3311869501", + ["text"] = "Creates Chilled Ground on Use", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2146730404", + ["text"] = "Creates Consecrated Ground on Use", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_538730182", + ["text"] = "Creates a Smoke Cloud on Use", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2524254339", + ["text"] = "Culling Strike", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_710372469", + ["text"] = "Curse Enemies with Conductivity on Hit", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2764915899", + ["text"] = "Curse Enemies with Despair on Hit", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2028847114", + ["text"] = "Curse Enemies with Elemental Weakness on Hit", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1625819882", + ["text"] = "Curse Enemies with Enfeeble on Hit", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_338121249", + ["text"] = "Curse Enemies with Flammability on Hit", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_426847518", + ["text"] = "Curse Enemies with Frostbite on Hit", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3433724931", + ["text"] = "Curse Enemies with Temporal Chains on Hit", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3967845372", + ["text"] = "Curse Enemies with Vulnerability on Hit", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1435748744", + ["text"] = "Curse Skills have #% increased Skill Effect Duration", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3417711605", + ["text"] = "Damage Penetrates #% Cold Resistance", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2101383955", + ["text"] = "Damage Penetrates #% Elemental Resistances", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2653955271", + ["text"] = "Damage Penetrates #% Fire Resistance", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_818778753", + ["text"] = "Damage Penetrates #% Lightning Resistance", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1211769158", + ["text"] = "Damage with Weapons Penetrates #% Cold Resistance", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1123291426", + ["text"] = "Damage with Weapons Penetrates #% Fire Resistance", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3301510262", + ["text"] = "Damage with Weapons Penetrates #% Lightning Resistance", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3653400807", + ["text"] = "Determination has #% increased Aura Effect", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2721871046", + ["text"] = "Determination has #% increased Mana Reservation Efficiency", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_325889252", + ["text"] = "Determination has #% increased Mana Reservation Efficiency", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3072232736", + ["text"] = "Determination has #% reduced Reservation", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_788317702", + ["text"] = "Discipline has #% increased Aura Effect", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1692887998", + ["text"] = "Discipline has #% increased Mana Reservation Efficiency", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2081344089", + ["text"] = "Discipline has #% increased Mana Reservation Efficiency", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2200030809", + ["text"] = "Discipline has #% reduced Reservation", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_984148407", + ["text"] = "Drops Brittle Ground while moving, lasting # seconds", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1997664024", + ["text"] = "Drops Sapped Ground while moving, lasting # seconds", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_396238230", + ["text"] = "Drops Scorched Ground while moving, lasting # seconds", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3399320226", + ["text"] = "Effect is removed when Hit by a Player", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1263158408", + ["text"] = "Elemental Equilibrium", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3574189159", + ["text"] = "Elemental Overload", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3617955571", + ["text"] = "Enduring Cry has #% increased Cooldown Recovery Rate", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_4293455942", + ["text"] = "Enemies Cannot Leech Life From you", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1220361974", + ["text"] = "Enemies you Kill Explode, dealing #% of their Life as Physical Damage", + ["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", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3903907406", + ["text"] = "Enemies you've Hit Recently have #% reduced Life Regeneration rate", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3239978999", + ["text"] = "Excavated Chests have a #% chance to contain twice as many Items", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1569101201", + ["text"] = "Exerted Attacks deal #% increased Damage", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_114734841", + ["text"] = "Flasks applied to you have #% increased Effect", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1193283913", + ["text"] = "Flasks gain # Charges every 3 seconds", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3456379680", + ["text"] = "Flesh Offering has #% increased Effect", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_789978501", + ["text"] = "Flesh and Stone has #% increased Area of Effect", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1623640288", + ["text"] = "Freezes you inflict spread to other Enemies within # metre", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2894476716", + ["text"] = "Gain # Endurance Charge every second if you've been Hit Recently", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_211381198", + ["text"] = "Gain # Energy Shield per Enemy Hit with Attacks", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2797971005", + ["text"] = "Gain # Life per Enemy Hit with Attacks", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3695891184", + ["text"] = "Gain # Life per Enemy Killed", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_820939409", + ["text"] = "Gain # Mana per Enemy Hit with Attacks", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1368271171", + ["text"] = "Gain # Mana per Enemy Killed", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2676601655", + ["text"] = "Gain # Rage on Attack Hit", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2709367754", + ["text"] = "Gain # Rage on Melee Hit", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2012294704", + ["text"] = "Gain # Rage on Melee Weapon Hit", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2915373966", + ["text"] = "Gain #% of Cold Damage as Extra Chaos Damage", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1599775597", + ["text"] = "Gain #% of Fire Damage as Extra Chaos Damage", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2402136583", + ["text"] = "Gain #% of Lightning Damage as Extra Chaos Damage", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_67280387", + ["text"] = "Gain #% of Maximum Life as Extra Maximum Energy Shield", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3319896421", + ["text"] = "Gain #% of Physical Damage as Extra Chaos Damage", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_979246511", + ["text"] = "Gain #% of Physical Damage as Extra Cold Damage", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3753703249", + ["text"] = "Gain #% of Physical Damage as Extra Damage of a random Element", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_369494213", + ["text"] = "Gain #% of Physical Damage as Extra Fire Damage", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_219391121", + ["text"] = "Gain #% of Physical Damage as Extra Lightning Damage", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2802161115", + ["text"] = "Gain 1 Rage on Hit with Attacks", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3868549606", + ["text"] = "Gain a Frenzy Charge after Spending a total of 200 Mana", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3906868545", + ["text"] = "Gain a Frenzy Charge every # seconds", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3533655459", + ["text"] = "Gain a Power Charge every # seconds", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2555092341", + ["text"] = "Gain an Endurance Charge every # seconds", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_4282426229", + ["text"] = "Gain an Endurance, Frenzy or Power Charge every 6 seconds", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3637727672", + ["text"] = "General's Cry has #% increased Cooldown Recovery Rate", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_397427740", + ["text"] = "Grace has #% increased Aura Effect", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1803598623", + ["text"] = "Grace has #% increased Mana Reservation Efficiency", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_900639351", + ["text"] = "Grace has #% increased Mana Reservation Efficiency", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1549898151", + ["text"] = "Grace has #% reduced Reservation", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1420170973", + ["text"] = "Grants # Life and Mana per Enemy Hit", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_821021828", + ["text"] = "Grants # Life per Enemy Hit", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_640052854", + ["text"] = "Grants # Mana per Enemy Hit", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_484879947", + ["text"] = "Grants Level # Anger Skill", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3736925508", + ["text"] = "Grants Level # Assassin's Mark Skill", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3511815065", + ["text"] = "Grants Level # Clarity Skill", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_461472247", + ["text"] = "Grants Level # Conductivity Skill", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2044547677", + ["text"] = "Grants Level # Despair Skill", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_4265392510", + ["text"] = "Grants Level # Determination Skill", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2341269061", + ["text"] = "Grants Level # Discipline Skill", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3792821911", + ["text"] = "Grants Level # Elemental Weakness Skill", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2209668839", + ["text"] = "Grants Level # Flammability Skill", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1169502663", + ["text"] = "Grants Level # Frostbite Skill", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2867050084", + ["text"] = "Grants Level # Grace Skill", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1188846263", + ["text"] = "Grants Level # Haste Skill", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2429546158", + ["text"] = "Grants Level # Hatred Skill", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2148556029", + ["text"] = "Grants Level # Malevolence Skill", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_4184565463", + ["text"] = "Grants Level # Pride Skill", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_105466375", + ["text"] = "Grants Level # Purity of Elements Skill", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3970432307", + ["text"] = "Grants Level # Purity of Fire Skill", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_4193390599", + ["text"] = "Grants Level # Purity of Ice Skill", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3822878124", + ["text"] = "Grants Level # Purity of Lightning Skill", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3536689603", + ["text"] = "Grants Level # Sniper's Mark Skill", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_940324562", + ["text"] = "Grants Level # Temporal Chains Skill", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2410613176", + ["text"] = "Grants Level # Vitality Skill", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1447222021", + ["text"] = "Grants Level # Vulnerability Skill", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2265307453", + ["text"] = "Grants Level # Wrath Skill", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3224664127", + ["text"] = "Grants Level # Zealotry Skill", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3527617737", + ["text"] = "Has # Abyssal Sockets", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_4077843608", + ["text"] = "Has 1 Socket", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1795443614", + ["text"] = "Has Elder, Shaper and all Conqueror Influences", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1240056437", + ["text"] = "Haste has #% increased Aura Effect", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3742945352", + ["text"] = "Hatred has #% increased Aura Effect", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2572910724", + ["text"] = "Herald of Agony has #% increased Buff Effect", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2154349925", + ["text"] = "Herald of Ash has #% increased Buff Effect", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1862926389", + ["text"] = "Herald of Ice has #% increased Buff Effect", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2126027382", + ["text"] = "Herald of Purity has #% increased Buff Effect", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3814686091", + ["text"] = "Herald of Thunder has #% increased Buff Effect", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2839577586", + ["text"] = "Hits have #% chance to ignore Enemy Physical Damage Reduction", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_165218607", + ["text"] = "Hits have #% increased Critical Strike Chance against you", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1907260000", + ["text"] = "Hits with this Weapon have #% chance to ignore Enemy Physical Damage Reduction", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2443492284", + ["text"] = "Ignites you inflict deal Damage #% faster", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2011785027", + ["text"] = "Ignites you inflict spread to other Enemies within # metre", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1954526925", + ["text"] = "Immune to Curses if Corrupted", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_532463031", + ["text"] = "Implicit Modifiers Cannot Be Changed", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3871212304", + ["text"] = "Increases and Reductions to Damage with Vaal Skills also apply to Non-Vaal Skills", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_411986876", + ["text"] = "Increases and Reductions to Light Radius also apply to Accuracy", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_631097842", + ["text"] = "Infernal Cry has #% increased Area of Effect", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3005701891", + ["text"] = "Inflict Cold Exposure on Hit, applying #% to Cold Resistance", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1309840354", + ["text"] = "Inflict Fire Exposure on Hit, applying #% to Fire Resistance", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_981753179", + ["text"] = "Inflict Lightning Exposure on Hit, applying #% to Lightning Resistance", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1134560807", + ["text"] = "Intimidating Cry has #% increased Cooldown Recovery Rate", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3909846940", + ["text"] = "Item drops on Death if Equipped by an Animated Guardian", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3513534186", + ["text"] = "Item sells for much more to vendors", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_221309863", + ["text"] = "Left ring slot: #% increased Duration of Ailments on You", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_496053892", + ["text"] = "Left ring slot: #% increased Effect of Curses on you", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3320868777", + ["text"] = "Left ring slot: #% increased Skill Effect Duration", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1323927995", + ["text"] = "Left ring slot: #% of Cold Damage from Hits taken as Fire Damage", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_17730902", + ["text"] = "Left ring slot: #% of Fire Damage from Hits taken as Lightning Damage", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_450178102", + ["text"] = "Left ring slot: #% of Lightning Damage from Hits taken as Cold Damage", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1916904011", + ["text"] = "Left ring slot: Minions take #% increased Damage", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_4175197580", + ["text"] = "Malevolence has #% increased Aura Effect", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_4149961555", + ["text"] = "Map Crafting options for this Map have no cost", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2563183002", + ["option"] = { + ["options"] = { + { + ["id"] = 1, + ["text"] = "Baran", + }, + { + ["id"] = 2, + ["text"] = "Veritania", + }, + { + ["id"] = 3, + ["text"] = "Al-Hezmin", + }, + { + ["id"] = 4, + ["text"] = "Drox", + }, + }, + }, + ["text"] = "Map contains #'s Citadel", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3624393862", + ["option"] = { + ["options"] = { + { + ["id"] = 1, + ["text"] = "The Enslaver", + }, + { + ["id"] = 2, + ["text"] = "The Eradicator", + }, + { + ["id"] = 3, + ["text"] = "The Constrictor", + }, + { + ["id"] = 4, + ["text"] = "The Purifier", + }, + }, + }, + ["text"] = "Map is occupied by #", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1166417447", + ["text"] = "Melee Hits Fortify", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2479683456", + ["text"] = "Minions Regenerate #% of Life per second", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1589917703", + ["text"] = "Minions deal #% increased Damage", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3375935924", + ["text"] = "Minions have #% increased Attack Speed", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3091578504", + ["text"] = "Minions have #% increased Attack and Cast Speed", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_4000101551", + ["text"] = "Minions have #% increased Cast Speed", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_174664100", + ["text"] = "Minions have #% increased Movement Speed", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_770672621", + ["text"] = "Minions have #% increased maximum Life", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1423639565", + ["text"] = "Minions have +#% to all Elemental Resistances", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3056045252", + ["text"] = "Minions take #% reduced Reflected Damage", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_989948703", + ["text"] = "Modifiers to Item Quantity affect the amount of rewards dropped by the boss by #% of their value", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1522386771", + ["text"] = "Modifiers to Item Quantity will affect the number of encounter rewards dropped by #% of their value", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_284496119", + ["text"] = "Monster Level: #", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1277237365", + ["text"] = "Monsters have Onslaught", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2656027173", + ["text"] = "Natural inhabitants of this area have been removed", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2826979740", + ["text"] = "Nearby Enemies are Blinded", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3608782127", + ["text"] = "Nearby Enemies are Crushed", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2774148053", + ["text"] = "Nearby Enemies have Malediction", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1661253443", + ["text"] = "Non-Vaal Strike Skills target # additional nearby Enemy", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1520059289", + ["text"] = "Onslaught", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2495041954", + ["text"] = "Overwhelm #% Physical Damage Reduction", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_977063976", + ["text"] = "Players' Vaal Skills do not apply Soul Gain Prevention", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2896346114", + ["text"] = "Point Blank", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2907156609", + ["text"] = "Poisons you inflict deal Damage #% faster", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_4116705863", + ["text"] = "Prevent +#% of Suppressed Spell Damage", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_4247488219", + ["text"] = "Pride has #% increased Aura Effect", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2067062068", + ["text"] = "Projectiles Pierce # additional Targets", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2902845638", + ["text"] = "Projectiles Pierce # additional Targets", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_883169830", + ["text"] = "Projectiles deal #% increased Damage with Hits and Ailments for each Enemy Pierced", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1923210508", + ["text"] = "Projectiles deal #% increased Damage with Hits and Ailments for each time they have Chained", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_202275580", + ["text"] = "Properties are doubled while in a Breach", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3541970927", + ["text"] = "Purity of Elements has #% increased Aura Effect", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2539726203", + ["text"] = "Purity of Fire has #% increased Aura Effect", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1135152940", + ["text"] = "Purity of Fire has #% increased Mana Reservation Efficiency", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3003688066", + ["text"] = "Purity of Fire has #% increased Mana Reservation Efficiency", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3215042347", + ["text"] = "Purity of Fire has #% reduced Reservation", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1944316218", + ["text"] = "Purity of Ice has #% increased Aura Effect", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_139925400", + ["text"] = "Purity of Ice has #% increased Mana Reservation Efficiency", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2665518524", + ["text"] = "Purity of Ice has #% increased Mana Reservation Efficiency", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3192966873", + ["text"] = "Purity of Ice has #% reduced Reservation", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_45589825", + ["text"] = "Purity of Lightning has #% increased Aura Effect", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1450978702", + ["text"] = "Purity of Lightning has #% increased Mana Reservation Efficiency", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3411256933", + ["text"] = "Purity of Lightning has #% increased Mana Reservation Efficiency", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1285430327", + ["text"] = "Purity of Lightning has #% reduced Reservation", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3036505016", + ["text"] = "Quality applies to Pack Size instead of Item Quantity", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3645693773", + ["text"] = "Raised Spectres have #% increased Damage", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2228518621", + ["text"] = "Raised Zombies deal #% increased Damage", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2023107756", + ["text"] = "Recover #% of Life on Kill", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2442647190", + ["text"] = "Recover #% of Life when you Block", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1030153674", + ["text"] = "Recover #% of Mana on Kill", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3041288981", + ["text"] = "Recover #% of your maximum Mana when you Block", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3767873853", + ["text"] = "Reflects # Physical Damage to Melee Attackers", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3325883026", + ["text"] = "Regenerate # Life per second", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2841027131", + ["text"] = "Regenerate # Life per second while moving", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1361343333", + ["text"] = "Regenerate # Mana per Second while Dual Wielding", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3762868276", + ["text"] = "Regenerate # Mana per Second while holding a Shield", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_4291461939", + ["text"] = "Regenerate # Mana per second", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1388668644", + ["text"] = "Regenerate # Mana per second while wielding a Staff", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_991194404", + ["text"] = "Regenerate #% of Energy Shield per Second while affected by Discipline", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3594640492", + ["text"] = "Regenerate #% of Energy Shield per second", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_836936635", + ["text"] = "Regenerate #% of Life per second", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_989800292", + ["text"] = "Regenerate #% of Life per second per Endurance Charge", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3188455409", + ["text"] = "Regenerate #% of Mana per second", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1871805225", + ["text"] = "Remnants have #% chance to have an additional Suffix Modifier", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1871805225", + ["text"] = "Remnants in your Maps have #% chance to have an additional Suffix Modifier", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3296873305", + ["text"] = "Remove Chill and Freeze when you use a Flask", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1162425204", + ["text"] = "Remove Ignite and Burning when you use a Flask", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_561861132", + ["text"] = "Remove Shock when you use a Flask", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3943945975", + ["text"] = "Resolute Technique", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2451856207", + ["text"] = "Restores Ward on use", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2457848738", + ["text"] = "Right ring slot: #% increased Duration of Ailments on You", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_4279053153", + ["text"] = "Right ring slot: #% increased Effect of Curses on you", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2239667237", + ["text"] = "Right ring slot: #% increased Skill Effect Duration", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_744858137", + ["text"] = "Right ring slot: #% of Cold Damage from Hits taken as Lightning Damage", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2478238773", + ["text"] = "Right ring slot: #% of Fire Damage from Hits taken as Cold Damage", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1905512385", + ["text"] = "Right ring slot: #% of Lightning Damage from Hits taken as Fire Damage", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1069618951", + ["text"] = "Right ring slot: Minions take #% increased Damage", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_261342933", + ["text"] = "Secrets of Suffering", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_424549222", + ["text"] = "Shocks you inflict spread to other Enemies within # metre", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3059357595", + ["text"] = "Skeletons deal #% increased Damage", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1787073323", + ["text"] = "Skills Chain +# times", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_74338099", + ["text"] = "Skills fire an additional Projectile", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1837040413", + ["text"] = "Slaying Enemies close together can attract monsters from Beyond this realm", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_452077019", + ["text"] = "Slaying Enemies in a kill streak grants Rampage bonuses", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2572192375", + ["text"] = "Socketed Gems are Supported by Level # Added Fire Damage", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3922006600", + ["text"] = "Socketed Gems are Supported by Level # Arrogance", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2929101122", + ["text"] = "Socketed Gems are Supported by Level # Elemental Proliferation", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2169938251", + ["text"] = "Socketed Gems are Supported by Level # Faster Casting", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_107118693", + ["text"] = "Socketed Gems are Supported by Level # Fortify", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3720936304", + ["text"] = "Socketed Gems are Supported by Level # Increased Area of Effect", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1866911844", + ["text"] = "Socketed Gems are Supported by Level # Inspiration", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2032386732", + ["text"] = "Socketed Gems are Supported by Level # Life Gain On Hit", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1079239905", + ["text"] = "Socketed Gems are Supported by Level # Lifetap", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3237923082", + ["text"] = "Socketed Gems are Supported by Level # Momentum", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1567462963", + ["text"] = "Socketed Gems are supported by Level # Additional Accuracy", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2223640518", + ["text"] = "Socketed Gems are supported by Level # Blind", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2325632050", + ["text"] = "Socketed Gems are supported by Level # Cast On Critical Strike", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1079148723", + ["text"] = "Socketed Gems are supported by Level # Cast when Stunned", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2532625478", + ["text"] = "Socketed Gems are supported by Level # Elemental Damage with Attacks", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_99089516", + ["text"] = "Socketed Gems are supported by Level # Faster Projectiles", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2062753054", + ["text"] = "Socketed Gems are supported by Level # Fork", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1108755349", + ["text"] = "Socketed Gems are supported by Level # Increased Critical Damage", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_891277550", + ["text"] = "Socketed Gems are supported by Level # Life Leech", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1811422871", + ["text"] = "Socketed Gems are supported by Level # Melee Splash", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2501237765", + ["text"] = "Socketed Gems are supported by Level # Multistrike", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_689720069", + ["text"] = "Socketed Gems are supported by Level # Stun", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3289633055", + ["text"] = "Socketed Gems have #% increased Reservation Efficiency", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2865550257", + ["text"] = "Socketed Skill Gems get a #% Cost & Reservation Multiplier", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2192875806", + ["text"] = "Socketed Skills apply Fire, Cold and Lightning Exposure on Hit", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1967040409", + ["text"] = "Spell Skills have #% increased Area of Effect", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2813626504", + ["text"] = "Spells have a #% chance to deal Double Damage", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_563547620", + ["text"] = "Spend Energy Shield before Mana for Costs of Socketed Skills", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3544391750", + ["text"] = "Spirit Offering has #% increased Effect", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2898944747", + ["text"] = "Stun Threshold is increased by Overcapped Fire Resistance", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2005503156", + ["text"] = "Taunts nearby Enemies on use", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2662416009", + ["text"] = "Tempest Shield has #% increased Buff Effect", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1809006367", + ["text"] = "Totems gain +#% to all Elemental Resistances", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2546859843", + ["text"] = "Trap Skills have #% increased Skill Effect Duration", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1523888729", + ["text"] = "Trigger Level # Fiery Impact on Melee Hit with this Weapon", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1633778432", + ["text"] = "Trigger Level # Flame Dash when you use a Socketed Skill", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1774370437", + ["text"] = "Trigger Level # Summon Taunting Contraption when you use a Flask", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3067892458", + ["text"] = "Triggered Spells deal #% increased Spell Damage", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1643688236", + ["text"] = "Unaffected by Burning Ground", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3653191834", + ["text"] = "Unaffected by Chilled Ground", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2234049899", + ["text"] = "Unaffected by Shocked Ground", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_804187877", + ["text"] = "Unique Monsters drop Corrupted Items", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1683578560", + ["text"] = "Unwavering Stance", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.pseudo_graft_skill_gem|930501509", + ["text"] = "Uses level # Call the Pyre", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.pseudo_graft_skill_gem|3350875124", + ["text"] = "Uses level # Dance in the White", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.pseudo_graft_skill_gem|2428126196", + ["text"] = "Uses level # Enervating Grasp", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.pseudo_graft_skill_gem|3721411096", + ["text"] = "Uses level # Falling Crystals", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.pseudo_graft_skill_gem|4263796609", + ["text"] = "Uses level # Glowing Silhouette", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.pseudo_graft_skill_gem|2377746067", + ["text"] = "Uses level # Heart of Flame", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.pseudo_graft_skill_gem|211102360", + ["text"] = "Uses level # His Burning Message", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.pseudo_graft_skill_gem|2530977295", + ["text"] = "Uses level # Overcharged Sinews", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.pseudo_graft_skill_gem|193484859", + ["text"] = "Uses level # Preserving Stillness", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.pseudo_graft_skill_gem|1884607458", + ["text"] = "Uses level # Return to Dust", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.pseudo_graft_skill_gem|2589268690", + ["text"] = "Uses level # Seize the Flesh", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.pseudo_graft_skill_gem|1880337806", + ["text"] = "Uses level # Tender Embrace", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.pseudo_graft_skill_gem|3407671753", + ["text"] = "Uses level # The Great Avalanche", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.pseudo_graft_skill_gem|1096882931", + ["text"] = "Uses level # The Grey Wind Howls", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.pseudo_graft_skill_gem|2743290437", + ["text"] = "Uses level # Violent Desire", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.pseudo_graft_skill_gem|3846565594", + ["text"] = "Uses level # Wreathed in Light", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_547412107", + ["text"] = "Vaal Skills have #% increased Skill Effect Duration", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1233806203", + ["text"] = "Vitality has #% increased Mana Reservation Efficiency", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3972739758", + ["text"] = "Vitality has #% increased Mana Reservation Efficiency", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1122074043", + ["text"] = "Vitality has #% reduced Reservation", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1434716233", + ["text"] = "Warcries Exert # additional Attack", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1504905117", + ["text"] = "Warcry Skills have +# seconds to Cooldown", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3326567914", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% Chance to Block Attack Damage", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2996280658", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% Chance to Block Spell Damage", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_466064970", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% chance to Aggravate Bleeding on targets you Hit with Attacks", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2610114836", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% chance to Avoid Bleeding", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_4241033239", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% chance to Avoid Elemental Ailments", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2661498709", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% chance to Avoid being Frozen", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_911929910", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% chance to Avoid being Ignited", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2714750784", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% chance to Avoid being Poisoned", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3823702653", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% chance to Avoid being Shocked", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_990874979", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% chance to Avoid being Stunned", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3854721949", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% chance to Extinguish Enemies on Hit", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_4146719724", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% chance to Freeze", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_604515066", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% chance to Hinder Enemies on Hit with Spells", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1030674088", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% chance to Ignite", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2838459808", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% chance to Impale Enemies on Hit with Attacks", + ["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"] = "implicit", + }, + { + ["id"] = "implicit.stat_532792006", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% chance to Poison on Hit", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2459490852", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% chance to Shock", + ["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", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2251857767", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Action Speed", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3744585764", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Arctic Armour Buff Effect", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_568930056", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Area of Effect", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1371764251", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Armour", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3330140563", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Armour from Equipped Helmet and Gloves", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3133935886", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Attack Damage", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2446980928", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Attack Speed", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1455812442", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Battlemage's Cry Buff Effect", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_4122616021", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Blind Effect", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2391109128", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Brand Attachment range", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_4098747485", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Cast Speed", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2070979181", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Chaos Damage", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1576689223", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Cold Damage", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2095999895", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Conductivity Curse Effect", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_668321613", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Cooldown Recovery Rate", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_850668052", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Cooldown Recovery Rate of Travel Skills", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1840069423", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Critical Strike Chance for Attacks", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1870591253", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Damage per 100 Dexterity", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2532279515", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Damage per 100 Intelligence", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3183308031", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Damage per 100 Strength", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_740797388", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Damage per Endurance Charge", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1855179125", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Damage per Frenzy Charge", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2809284200", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Damage per Power Charge", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2775855429", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Despair Curse Effect", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_867827325", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Duration of Ailments on Enemies", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_664899091", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Effect of Arcane Surge on you", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_4128294206", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Effect of Buffs granted by your Golems", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1016769968", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Effect of Non-Damaging Ailments", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3209267362", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Effect of Onslaught on you", + ["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"] = "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"] = "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", + ["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"] = "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"] = "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"] = "implicit", + }, + { + ["id"] = "implicit.stat_1350472585", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Effect of your Curses", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1138753695", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Effect of your Marks", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2029969019", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Elemental Weakness Curse Effect", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3173079195", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Elusive Effect", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_26006636", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Energy Shield Recharge Rate", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_92591094", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Energy Shield Recovery rate", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_38083709", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Enfeeble Curse Effect", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2386062386", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Evasion Rating", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2980409921", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Evasion Rating from Equipped Helmet and Boots", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2782184338", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Fire Damage", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_323292443", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Flammability Curse Effect", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2068042138", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Frostbite Curse Effect", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2086047206", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Global Accuracy Rating", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2545907302", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Global Physical Damage", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2761472996", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Life Recovery rate", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_498250787", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Life Regeneration rate", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1328859059", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Lightning Damage", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_4117139221", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Mana Recovery rate", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_4222133389", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Mana Regeneration Rate", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2425364074", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Mana Regeneration Rate per Power Charge", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_4213793369", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Mana Reservation Efficiency of Skills", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1388739249", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Maximum Energy Shield from Equipped Gloves and Boots", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3827973062", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Mine Throwing Speed", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1702124724", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Movement Speed", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_40584863", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Punishment Curse Effect", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2063107864", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Rallying Cry Buff Effect", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2828309116", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Skill Effect Duration", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1412947753", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Spell Critical Strike Chance", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_817495383", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Spell Damage", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1513279759", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Stun Threshold", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3695602451", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Temporal Chains Curse Effect", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_100371300", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Totem Placement speed", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_547463927", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Trap Throwing Speed", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1668340466", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Vulnerability Curse Effect", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_794753348", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Warcry Buff Effect", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2117066923", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Warcry Speed", + ["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", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2526554500", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased effect of Offerings", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1917716710", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased maximum Energy Shield", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_10259064", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% of Chaos Damage Leeched as Life", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_339123312", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% of Cold Damage Leeched as Life", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2181576428", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% of Cold Damage taken Recouped as Life", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2173565521", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% of Damage from your Hits cannot be Reflected", + ["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"] = "implicit", + }, + { + ["id"] = "implicit.stat_2525287976", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% of Damage taken Recouped as Life", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1954944666", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% of Fire Damage Leeched as Life", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1613190388", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% of Fire Damage taken Recouped as Life", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_648344494", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% of Hit Damage from your Minions cannot be Reflected", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1896842319", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% of Lightning Damage Leeched as Life", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3870554516", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% of Lightning Damage taken Recouped as Life", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2204282073", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% of Physical Damage Converted to Chaos Damage", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3567752586", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% of Physical Damage Converted to Cold Damage", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3764409984", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% of Physical Damage Converted to Fire Damage", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3718361973", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% of Physical Damage Converted to Lightning Damage", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2500914030", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% of Physical Damage Leeched as Life", + ["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", + ["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", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3995172058", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% of Physical Damage from Hits taken as Fire Damage", + ["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", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1300694383", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% of Physical Damage taken Recouped as Life", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_433740375", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% reduced Effect of Shock on you", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2169620689", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% reduced Enemy Stun Threshold", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_928972227", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% reduced Freeze Duration on you", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3042217102", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% reduced Ignite Duration on you", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3671920033", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% reduced Mana Cost of Attacks", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_490830332", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, +# to Accuracy Rating per Frenzy Charge", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2998245080", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, +#% chance to Suppress Spell Damage", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2163155983", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, +#% to Chaos Damage over Time Multiplier", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_74135418", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, +#% to Chaos Resistance", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2619970520", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, +#% to Cold Damage over Time Multiplier", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3864103630", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, +#% to Cold Resistance", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2825010848", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, +#% to Critical Strike Multiplier for Attack Damage", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2955927568", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, +#% to Critical Strike Multiplier for Spell Damage", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1870961528", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, +#% to Fire Damage over Time Multiplier", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1299790658", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, +#% to Fire Resistance", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3980173235", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, +#% to Lightning Resistance", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_4084536353", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, +#% to Physical Damage over Time Multiplier", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2251516251", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, +#% to all Elemental Resistances", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_673499528", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, +#% to all maximum Resistances", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_944522962", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, +#% to maximum Chaos Resistance", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3415855998", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, +#% to maximum Cold Resistance", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1133929401", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, +#% to maximum Fire Resistance", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_4136085904", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, +#% to maximum Lightning Resistance", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2216092051", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, 1% less Damage Taken per # Dexterity", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3801851872", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, 1% less Damage Taken per # Intelligence", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_125264229", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, 1% less Damage Taken per # Strength", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3953801646", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Adds # to # Chaos Damage to Attacks", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3206883665", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Adds # to # Chaos Damage to Spells", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1016130575", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Adds # to # Cold Damage to Attacks", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3349767748", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Adds # to # Cold Damage to Spells", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3972399670", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Adds # to # Fire Damage to Attacks", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3954869480", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Adds # to # Fire Damage to Spells", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2925105924", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Adds # to # Lightning Damage to Attacks", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3874289", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Adds # to # Lightning Damage to Spells", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3477311591", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Adds # to # Physical Damage to Attacks", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_485268361", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Adds # to # Physical Damage to Spells", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1167349834", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Anger has #% increased Aura Effect", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1799586622", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Attacks Exerted by Ancestral Cry deal #% increased Damage", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1714653952", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Attacks Exerted by Seismic Cry deal #% increased Damage", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_4065516297", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Attacks have #% chance to Maim on Hit", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_4014428128", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Attacks have #% chance to cause Bleeding", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_4106235309", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Bleeding you inflict deals Damage #% faster", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3774100463", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Bone Offering has #% increased Effect", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_403285636", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Damage Penetrates #% Cold Resistance", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1175129684", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Damage Penetrates #% Fire Resistance", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_550672859", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Damage Penetrates #% Lightning Resistance", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1324460486", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Determination has #% increased Aura Effect", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2752131673", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Discipline has #% increased Aura Effect", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_235328972", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Drops Brittle Ground while moving, lasting # seconds", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1296291315", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Drops Sapped Ground while moving, lasting # seconds", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_4054012096", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Drops Scorched Ground while moving, lasting # seconds", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_906749304", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Enduring Cry has #% increased Cooldown Recovery Rate", + ["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", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_376260015", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Exerted Attacks deal #% increased Damage", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_4155771029", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Flasks applied to you have #% increased Effect", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1519845279", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Flasks gain # Charges every 3 seconds", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_862077496", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Flesh Offering has #% increased Effect", + ["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"] = "implicit", + }, + { + ["id"] = "implicit.stat_1436051850", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Freezes you inflict spread to other Enemies within # metre", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3509416536", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Gain # Rage on Attack Hit", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3490650294", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Gain #% of Physical Damage as Extra Chaos Damage", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1425454108", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Gain #% of Physical Damage as Extra Cold Damage", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1335630001", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Gain #% of Physical Damage as Extra Fire Damage", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_632297605", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Gain #% of Physical Damage as Extra Lightning Damage", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1270539481", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Gain 1 Rage on Hit with Attacks", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_560848642", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Gain a Frenzy Charge every # seconds", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2703923310", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Gain a Power Charge every # seconds", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_951862199", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Gain an Endurance Charge every # seconds", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_133006298", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, General's Cry has #% increased Cooldown Recovery Rate", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_81526858", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Grace has #% increased Aura Effect", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1065477979", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Haste has #% increased Aura Effect", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1253537227", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Hatred has #% increased Aura Effect", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3001066983", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Herald of Agony has #% increased Buff Effect", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3045509476", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Herald of Ash has #% increased Buff Effect", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1609260458", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Herald of Ice has #% increased Buff Effect", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3005679448", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Herald of Purity has #% increased Buff Effect", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1553385903", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Herald of Thunder has #% increased Buff Effect", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_4022700734", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Hits have #% chance to ignore Enemy Physical Damage Reduction", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1053495752", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Ignites you inflict deal Damage #% faster", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3343791355", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Ignites you inflict spread to other Enemies within # metre", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1774377226", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Infernal Cry has #% increased Area of Effect", + ["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", + ["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", + ["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", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3945581778", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Intimidating Cry has #% increased Cooldown Recovery Rate", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1033279468", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Malevolence has #% increased Aura Effect", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_298106626", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Melee Hits Fortify", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3141084961", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Minions deal #% increased Damage", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2809900883", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Minions have #% increased Movement Speed", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_4057257145", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Minions have #% increased maximum Life", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1884100040", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Non-Vaal Strike Skills target # additional nearby Enemy", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_995369618", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Poisons you inflict deal Damage #% faster", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2163876658", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Pride has #% increased Aura Effect", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_4045839821", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Projectiles Pierce # additional Targets", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_221690080", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Purity of Elements has #% increased Aura Effect", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2034940983", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Purity of Fire has #% increased Aura Effect", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3786274521", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Purity of Ice has #% increased Aura Effect", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1445513967", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Purity of Lightning has #% increased Aura Effect", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3225230656", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Regenerate #% of Life per second per Endurance Charge", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2218095219", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Shocks you inflict spread to other Enemies within # metre", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2399066987", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Spirit Offering has #% increased Effect", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2601015548", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Tempest Shield has #% increased Buff Effect", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3457821036", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Withered you Inflict expires #% faster", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1850144024", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Wrath has #% increased Aura Effect", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2293353005", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Zealotry has #% increased Aura Effect", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_725501141", + ["text"] = "While a Unique Enemy is in your Presence, #% Chance to Block Attack Damage", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1358320252", + ["text"] = "While a Unique Enemy is in your Presence, #% Chance to Block Spell Damage", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2543125349", + ["text"] = "While a Unique Enemy is in your Presence, #% chance to Aggravate Bleeding on targets you Hit with Attacks", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2651293339", + ["text"] = "While a Unique Enemy is in your Presence, #% chance to Avoid Bleeding", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3264420229", + ["text"] = "While a Unique Enemy is in your Presence, #% chance to Avoid Elemental Ailments", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3887072924", + ["text"] = "While a Unique Enemy is in your Presence, #% chance to Avoid being Frozen", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2796083262", + ["text"] = "While a Unique Enemy is in your Presence, #% chance to Avoid being Ignited", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3553907672", + ["text"] = "While a Unique Enemy is in your Presence, #% chance to Avoid being Poisoned", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3401199213", + ["text"] = "While a Unique Enemy is in your Presence, #% chance to Avoid being Shocked", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3322913142", + ["text"] = "While a Unique Enemy is in your Presence, #% chance to Avoid being Stunned", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_4163073767", + ["text"] = "While a Unique Enemy is in your Presence, #% chance to Extinguish Enemies on Hit", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1096728982", + ["text"] = "While a Unique Enemy is in your Presence, #% chance to Freeze", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3423886807", + ["text"] = "While a Unique Enemy is in your Presence, #% chance to Hinder Enemies on Hit with Spells", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_874990741", + ["text"] = "While a Unique Enemy is in your Presence, #% chance to Ignite", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2391907787", + ["text"] = "While a Unique Enemy is in your Presence, #% chance to Impale Enemies on Hit with Attacks", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_144453866", + ["text"] = "While a Unique Enemy is in your Presence, #% chance to Intimidate Enemies for 4 seconds on Hit", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2433754249", + ["text"] = "While a Unique Enemy is in your Presence, #% chance to Poison on Hit", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2621869142", + ["text"] = "While a Unique Enemy is in your Presence, #% chance to Shock", + ["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"] = "implicit", + }, + { + ["id"] = "implicit.stat_1829486532", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Action Speed", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_4047779849", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Arctic Armour Buff Effect", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1847660463", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Area of Effect", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1980216452", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Armour", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1586470077", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Armour from Equipped Helmet and Gloves", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_4061200499", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Attack Damage", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3401410854", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Attack Speed", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3173180145", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Battlemage's Cry Buff Effect", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_886650454", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Blind Effect", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_636616197", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Brand Attachment range", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2016247664", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Cast Speed", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2875239648", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Chaos Damage", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2127607252", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Cold Damage", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3547319552", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Conductivity Curse Effect", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2491353340", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Cooldown Recovery Rate", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2986495340", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Cooldown Recovery Rate of Travel Skills", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3710240762", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Critical Strike Chance for Attacks", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_535580777", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Damage per 100 Dexterity", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1894390763", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Damage per 100 Intelligence", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_4224921626", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Damage per 100 Strength", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2193147166", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Damage per Endurance Charge", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2415020123", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Damage per Frenzy Charge", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1394771132", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Damage per Power Charge", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2909684383", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Despair Curse Effect", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3341892633", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Duration of Ailments on Enemies", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3163099942", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Effect of Arcane Surge on you", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2159248495", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Effect of Buffs granted by your Golems", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2950684886", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Effect of Non-Damaging Ailments", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_491577732", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Effect of Onslaught on you", + ["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"] = "implicit", + }, + { + ["id"] = "implicit.stat_1807607778", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Effect of the Buff granted by your Chaos Golems", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3591219299", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Effect of the Buff granted by your Flame Golems", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3588695478", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Effect of the Buff granted by your Ice Golems", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1747983672", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Effect of the Buff granted by your Lightning Golems", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1722486495", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Effect of the Buff granted by your Stone Golems", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2669364207", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Effect of your Curses", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_505694848", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Effect of your Marks", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_771845579", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Elemental Weakness Curse Effect", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2413932980", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Elusive Effect", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3806837783", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Energy Shield Recharge Rate", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_587322642", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Energy Shield Recovery rate", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_937462392", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Enfeeble Curse Effect", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3394288644", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Evasion Rating", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2408490382", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Evasion Rating from Equipped Helmet and Boots", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1590336483", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Fire Damage", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1394267723", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Flammability Curse Effect", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3199183447", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Frostbite Curse Effect", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2423625781", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Global Accuracy Rating", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_604852150", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Global Physical Damage", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1481249164", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Life Recovery rate", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1916766878", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Life Regeneration rate", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2668120423", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Lightning Damage", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1217759839", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Mana Recovery rate", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_760444887", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Mana Regeneration Rate", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1918872160", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Mana Regeneration Rate per Power Charge", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2358903592", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Mana Reservation Efficiency of Skills", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_4288334466", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Maximum Energy Shield from Equipped Gloves and Boots", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1516326076", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Mine Throwing Speed", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3019083030", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Movement Speed", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_4171615823", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Punishment Curse Effect", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1381761351", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Rallying Cry Buff Effect", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_614709726", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Skill Effect Duration", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_4191234472", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Spell Critical Strike Chance", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_4136821316", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Spell Damage", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_266654028", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Stun Threshold", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_485385046", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Temporal Chains Curse Effect", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2033289503", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Totem Placement speed", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2479119864", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Trap Throwing Speed", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2638071469", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Vulnerability Curse Effect", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3611265227", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Warcry Buff Effect", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2255001736", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Warcry Speed", + ["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"] = "implicit", + }, + { + ["id"] = "implicit.stat_1132843482", + ["text"] = "While a Unique Enemy is in your Presence, #% increased effect of Offerings", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1114962813", + ["text"] = "While a Unique Enemy is in your Presence, #% increased maximum Energy Shield", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1172401338", + ["text"] = "While a Unique Enemy is in your Presence, #% of Chaos Damage Leeched as Life", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3357881628", + ["text"] = "While a Unique Enemy is in your Presence, #% of Cold Damage Leeched as Life", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1739741837", + ["text"] = "While a Unique Enemy is in your Presence, #% of Cold Damage taken Recouped as Life", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2195698019", + ["text"] = "While a Unique Enemy is in your Presence, #% of Damage from your Hits cannot be Reflected", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1749598944", + ["text"] = "While a Unique Enemy is in your Presence, #% of Damage is taken from Mana before Life", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2080582538", + ["text"] = "While a Unique Enemy is in your Presence, #% of Damage taken Recouped as Life", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3430693940", + ["text"] = "While a Unique Enemy is in your Presence, #% of Fire Damage Leeched as Life", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2143647966", + ["text"] = "While a Unique Enemy is in your Presence, #% of Fire Damage taken Recouped as Life", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_4260371388", + ["text"] = "While a Unique Enemy is in your Presence, #% of Hit Damage from your Minions cannot be Reflected", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2824722288", + ["text"] = "While a Unique Enemy is in your Presence, #% of Lightning Damage Leeched as Life", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1146717028", + ["text"] = "While a Unique Enemy is in your Presence, #% of Lightning Damage taken Recouped as Life", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1623369100", + ["text"] = "While a Unique Enemy is in your Presence, #% of Physical Damage Converted to Chaos Damage", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1153825002", + ["text"] = "While a Unique Enemy is in your Presence, #% of Physical Damage Converted to Cold Damage", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_380027104", + ["text"] = "While a Unique Enemy is in your Presence, #% of Physical Damage Converted to Fire Damage", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1516273114", + ["text"] = "While a Unique Enemy is in your Presence, #% of Physical Damage Converted to Lightning Damage", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2443166200", + ["text"] = "While a Unique Enemy is in your Presence, #% of Physical Damage Leeched as Life", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2393004388", + ["text"] = "While a Unique Enemy is in your Presence, #% of Physical Damage from Hits taken as Chaos Damage", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_848890513", + ["text"] = "While a Unique Enemy is in your Presence, #% of Physical Damage from Hits taken as Cold Damage", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1283684786", + ["text"] = "While a Unique Enemy is in your Presence, #% of Physical Damage from Hits taken as Fire Damage", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_196824923", + ["text"] = "While a Unique Enemy is in your Presence, #% of Physical Damage from Hits taken as Lightning Damage", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3796902731", + ["text"] = "While a Unique Enemy is in your Presence, #% of Physical Damage taken Recouped as Life", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1343931641", + ["text"] = "While a Unique Enemy is in your Presence, #% reduced Effect of Shock on you", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_944211673", + ["text"] = "While a Unique Enemy is in your Presence, #% reduced Enemy Stun Threshold", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3985862221", + ["text"] = "While a Unique Enemy is in your Presence, #% reduced Freeze Duration on you", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2520245478", + ["text"] = "While a Unique Enemy is in your Presence, #% reduced Ignite Duration on you", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1116269888", + ["text"] = "While a Unique Enemy is in your Presence, #% reduced Mana Cost of Attacks", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_475859964", + ["text"] = "While a Unique Enemy is in your Presence, +# to Accuracy Rating per Frenzy Charge", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3998961962", + ["text"] = "While a Unique Enemy is in your Presence, +#% chance to Suppress Spell Damage", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2634574895", + ["text"] = "While a Unique Enemy is in your Presence, +#% to Chaos Damage over Time Multiplier", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_744196525", + ["text"] = "While a Unique Enemy is in your Presence, +#% to Chaos Resistance", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_621576159", + ["text"] = "While a Unique Enemy is in your Presence, +#% to Cold Damage over Time Multiplier", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2240274773", + ["text"] = "While a Unique Enemy is in your Presence, +#% to Cold Resistance", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_26879978", + ["text"] = "While a Unique Enemy is in your Presence, +#% to Critical Strike Multiplier for Attack Damage", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_865433929", + ["text"] = "While a Unique Enemy is in your Presence, +#% to Critical Strike Multiplier for Spell Damage", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2112874376", + ["text"] = "While a Unique Enemy is in your Presence, +#% to Fire Damage over Time Multiplier", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3521653836", + ["text"] = "While a Unique Enemy is in your Presence, +#% to Fire Resistance", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3556129896", + ["text"] = "While a Unique Enemy is in your Presence, +#% to Lightning Resistance", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_841219865", + ["text"] = "While a Unique Enemy is in your Presence, +#% to Physical Damage over Time Multiplier", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2358153166", + ["text"] = "While a Unique Enemy is in your Presence, +#% to all Elemental Resistances", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3062531896", + ["text"] = "While a Unique Enemy is in your Presence, +#% to all maximum Resistances", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_575726461", + ["text"] = "While a Unique Enemy is in your Presence, +#% to maximum Chaos Resistance", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3444931985", + ["text"] = "While a Unique Enemy is in your Presence, +#% to maximum Cold Resistance", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_475684070", + ["text"] = "While a Unique Enemy is in your Presence, +#% to maximum Fire Resistance", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_789714862", + ["text"] = "While a Unique Enemy is in your Presence, +#% to maximum Lightning Resistance", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1682072497", + ["text"] = "While a Unique Enemy is in your Presence, 1% less Damage Taken per # Dexterity", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_553122931", + ["text"] = "While a Unique Enemy is in your Presence, 1% less Damage Taken per # Intelligence", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3389591826", + ["text"] = "While a Unique Enemy is in your Presence, 1% less Damage Taken per # Strength", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2444070126", + ["text"] = "While a Unique Enemy is in your Presence, Adds # to # Chaos Damage to Attacks", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1554912650", + ["text"] = "While a Unique Enemy is in your Presence, Adds # to # Chaos Damage to Spells", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_4057155645", + ["text"] = "While a Unique Enemy is in your Presence, Adds # to # Cold Damage to Attacks", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1018817416", + ["text"] = "While a Unique Enemy is in your Presence, Adds # to # Cold Damage to Spells", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2067485824", + ["text"] = "While a Unique Enemy is in your Presence, Adds # to # Fire Damage to Attacks", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_661603414", + ["text"] = "While a Unique Enemy is in your Presence, Adds # to # Fire Damage to Spells", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2111629859", + ["text"] = "While a Unique Enemy is in your Presence, Adds # to # Lightning Damage to Attacks", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_371531651", + ["text"] = "While a Unique Enemy is in your Presence, Adds # to # Lightning Damage to Spells", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2521809744", + ["text"] = "While a Unique Enemy is in your Presence, Adds # to # Physical Damage to Attacks", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_4272276606", + ["text"] = "While a Unique Enemy is in your Presence, Adds # to # Physical Damage to Spells", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_778803098", + ["text"] = "While a Unique Enemy is in your Presence, Anger has #% increased Aura Effect", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3598887112", + ["text"] = "While a Unique Enemy is in your Presence, Attacks Exerted by Ancestral Cry deal #% increased Damage", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1505297139", + ["text"] = "While a Unique Enemy is in your Presence, Attacks Exerted by Seismic Cry deal #% increased Damage", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_720015764", + ["text"] = "While a Unique Enemy is in your Presence, Attacks have #% chance to Maim on Hit", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_64193828", + ["text"] = "While a Unique Enemy is in your Presence, Attacks have #% chance to cause Bleeding", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_738837643", + ["text"] = "While a Unique Enemy is in your Presence, Bleeding you inflict deals Damage #% faster", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2290911895", + ["text"] = "While a Unique Enemy is in your Presence, Bone Offering has #% increased Effect", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1477049675", + ["text"] = "While a Unique Enemy is in your Presence, Damage Penetrates #% Cold Resistance", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3425675761", + ["text"] = "While a Unique Enemy is in your Presence, Damage Penetrates #% Fire Resistance", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1598254831", + ["text"] = "While a Unique Enemy is in your Presence, Damage Penetrates #% Lightning Resistance", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2366356855", + ["text"] = "While a Unique Enemy is in your Presence, Determination has #% increased Aura Effect", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_334238649", + ["text"] = "While a Unique Enemy is in your Presence, Discipline has #% increased Aura Effect", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1771822543", + ["text"] = "While a Unique Enemy is in your Presence, Drops Brittle Ground while moving, lasting # seconds", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2220831041", + ["text"] = "While a Unique Enemy is in your Presence, Drops Sapped Ground while moving, lasting # seconds", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_493814995", + ["text"] = "While a Unique Enemy is in your Presence, Drops Scorched Ground while moving, lasting # seconds", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2792560229", + ["text"] = "While a Unique Enemy is in your Presence, Enduring Cry has #% increased Cooldown Recovery Rate", + ["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", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3291139981", + ["text"] = "While a Unique Enemy is in your Presence, Exerted Attacks deal #% increased Damage", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3610955422", + ["text"] = "While a Unique Enemy is in your Presence, Flasks applied to you have #% increased Effect", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2150799098", + ["text"] = "While a Unique Enemy is in your Presence, Flasks gain # Charges every 3 seconds", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3599488608", + ["text"] = "While a Unique Enemy is in your Presence, Flesh Offering has #% increased Effect", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1472965536", + ["text"] = "While a Unique Enemy is in your Presence, Flesh and Stone has #% increased Area of Effect", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2543269407", + ["text"] = "While a Unique Enemy is in your Presence, Freezes you inflict spread to other Enemies within # metre", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3134649750", + ["text"] = "While a Unique Enemy is in your Presence, Gain # Rage on Attack Hit", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_620552892", + ["text"] = "While a Unique Enemy is in your Presence, Gain #% of Physical Damage as Extra Chaos Damage", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3171354842", + ["text"] = "While a Unique Enemy is in your Presence, Gain #% of Physical Damage as Extra Cold Damage", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3549954477", + ["text"] = "While a Unique Enemy is in your Presence, Gain #% of Physical Damage as Extra Fire Damage", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1918094957", + ["text"] = "While a Unique Enemy is in your Presence, Gain #% of Physical Damage as Extra Lightning Damage", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2076129434", + ["text"] = "While a Unique Enemy is in your Presence, Gain 1 Rage on Hit with Attacks", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2847070982", + ["text"] = "While a Unique Enemy is in your Presence, Gain a Frenzy Charge every # seconds", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_46472075", + ["text"] = "While a Unique Enemy is in your Presence, Gain a Power Charge every # seconds", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2441896589", + ["text"] = "While a Unique Enemy is in your Presence, Gain an Endurance Charge every # seconds", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_942266300", + ["text"] = "While a Unique Enemy is in your Presence, General's Cry has #% increased Cooldown Recovery Rate", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3303144948", + ["text"] = "While a Unique Enemy is in your Presence, Grace has #% increased Aura Effect", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1060820709", + ["text"] = "While a Unique Enemy is in your Presence, Haste has #% increased Aura Effect", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_4218330172", + ["text"] = "While a Unique Enemy is in your Presence, Hatred has #% increased Aura Effect", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_503887731", + ["text"] = "While a Unique Enemy is in your Presence, Herald of Agony has #% increased Buff Effect", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_109112452", + ["text"] = "While a Unique Enemy is in your Presence, Herald of Ash has #% increased Buff Effect", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3593717239", + ["text"] = "While a Unique Enemy is in your Presence, Herald of Ice has #% increased Buff Effect", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_4093169696", + ["text"] = "While a Unique Enemy is in your Presence, Herald of Purity has #% increased Buff Effect", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_649027123", + ["text"] = "While a Unique Enemy is in your Presence, Herald of Thunder has #% increased Buff Effect", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_71573030", + ["text"] = "While a Unique Enemy is in your Presence, Hits have #% chance to ignore Enemy Physical Damage Reduction", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2349328837", + ["text"] = "While a Unique Enemy is in your Presence, Ignites you inflict deal Damage #% faster", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1698847655", + ["text"] = "While a Unique Enemy is in your Presence, Ignites you inflict spread to other Enemies within # metre", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3199255605", + ["text"] = "While a Unique Enemy is in your Presence, Infernal Cry has #% increased Area of Effect", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1699220089", + ["text"] = "While a Unique Enemy is in your Presence, Inflict Cold Exposure on Hit, applying #% to Cold Resistance", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_732411542", + ["text"] = "While a Unique Enemy is in your Presence, Inflict Fire Exposure on Hit, applying #% to Fire Resistance", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2876365933", + ["text"] = "While a Unique Enemy is in your Presence, Inflict Lightning Exposure on Hit, applying #% to Lightning Resistance", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3381588096", + ["text"] = "While a Unique Enemy is in your Presence, Intimidating Cry has #% increased Cooldown Recovery Rate", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1327020319", + ["text"] = "While a Unique Enemy is in your Presence, Malevolence has #% increased Aura Effect", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_993223747", + ["text"] = "While a Unique Enemy is in your Presence, Melee Hits Fortify", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_4189960647", + ["text"] = "While a Unique Enemy is in your Presence, Minions deal #% increased Damage", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_93625449", + ["text"] = "While a Unique Enemy is in your Presence, Minions have #% increased Movement Speed", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3044748809", + ["text"] = "While a Unique Enemy is in your Presence, Minions have #% increased maximum Life", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1524679549", + ["text"] = "While a Unique Enemy is in your Presence, Non-Vaal Strike Skills target # additional nearby Enemy", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3828039449", + ["text"] = "While a Unique Enemy is in your Presence, Poisons you inflict deal Damage #% faster", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_4039774101", + ["text"] = "While a Unique Enemy is in your Presence, Pride has #% increased Aura Effect", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3924473787", + ["text"] = "While a Unique Enemy is in your Presence, Projectiles Pierce # additional Targets", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_348693938", + ["text"] = "While a Unique Enemy is in your Presence, Purity of Elements has #% increased Aura Effect", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1926772156", + ["text"] = "While a Unique Enemy is in your Presence, Purity of Fire has #% increased Aura Effect", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3499126604", + ["text"] = "While a Unique Enemy is in your Presence, Purity of Ice has #% increased Aura Effect", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_908556575", + ["text"] = "While a Unique Enemy is in your Presence, Purity of Lightning has #% increased Aura Effect", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1123587207", + ["text"] = "While a Unique Enemy is in your Presence, Regenerate #% of Life per second per Endurance Charge", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2868404935", + ["text"] = "While a Unique Enemy is in your Presence, Shocks you inflict spread to other Enemies within # metre", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2814835155", + ["text"] = "While a Unique Enemy is in your Presence, Spirit Offering has #% increased Effect", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_942478380", + ["text"] = "While a Unique Enemy is in your Presence, Tempest Shield has #% increased Buff Effect", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3262721796", + ["text"] = "While a Unique Enemy is in your Presence, Withered you Inflict expires #% faster", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_399528178", + ["text"] = "While a Unique Enemy is in your Presence, Wrath has #% increased Aura Effect", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3550578554", + ["text"] = "While a Unique Enemy is in your Presence, Zealotry has #% increased Aura Effect", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1625982517", + ["text"] = "Withered you Inflict expires #% faster", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2181791238", + ["text"] = "Wrath has #% increased Aura Effect", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1419713278", + ["text"] = "You and nearby Allies deal #% increased Damage", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3577248251", + ["text"] = "You and your Minions take #% reduced Reflected Damage", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_846313030", + ["text"] = "You are Crushed", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_30642521", + ["text"] = "You can apply # additional Curses", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2451060005", + ["text"] = "You can catch Corrupted Fish", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1654414582", + ["text"] = "You cannot be Cursed with Silence", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_721014846", + ["text"] = "You cannot be Hindered", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1126826428", + ["text"] = "You cannot be Maimed", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2514424018", + ["text"] = "You gain Onslaught for # seconds on Hit", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2905515354", + ["text"] = "You take #% of Damage from Blocked Hits", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3855016469", + ["text"] = "You take #% reduced Extra Damage from Critical Strikes", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_358129101", + ["text"] = "Your Maps are haunted by an additional Tormented Spirit", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_279246355", + ["text"] = "Your Maps are inhabited by an additional Invasion Boss", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3550168289", + ["text"] = "Your Maps are inhabited by an additional Rogue Exile", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2834034653", + ["text"] = "Your Maps are opened with # additional random Unallocated Notable Atlas Passives", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3240183538", + ["text"] = "Your Maps contain # additional Strongboxes", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1640965354", + ["text"] = "Your Maps contain #% increased number of Runic Monster Markers", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1671749203", + ["text"] = "Your Maps contain Ritual Altars", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2055257822", + ["text"] = "Your Maps contain an Ultimatum Encounter", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1070816711", + ["text"] = "Your Maps contain an additional Abyss", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_504850499", + ["text"] = "Your Maps contain an additional Harbinger", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_395808938", + ["text"] = "Your Maps contain an additional Imprisoned Monster", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3897451709", + ["text"] = "Your Maps contain an additional Legion Encounter", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_581013336", + ["text"] = "Your Maps contain an additional Magic Monster pack", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1468737867", + ["text"] = "Your Maps contain an additional Shrine", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2810286377", + ["text"] = "Your Maps contain an additional pack with a Rare monster", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3788235244", + ["text"] = "Your Maps have #% chance to contain Cadiro Perandus", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1145451936", + ["text"] = "Your Maps have +#% chance to contain The Sacred Grove", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2156201537", + ["text"] = "Your Maps have +#% chance to contain a Vaal Side Area", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_4154778375", + ["text"] = "Your Maps have +#% chance to contain an Expedition Encounter", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_4096052153", + ["text"] = "Zealotry has #% increased Aura Effect", + ["type"] = "implicit", + }, + }, + ["id"] = "implicit", + ["label"] = "Implicit", + }, + { + ["entries"] = { + { + ["id"] = "imbued.pseudo_built_in_support|1826945816", + ["text"] = "Supported by Level 1 Added Chaos Damage", + ["type"] = "imbued", + }, + { + ["id"] = "imbued.pseudo_built_in_support|2368767632", + ["text"] = "Supported by Level 1 Added Cold Damage", + ["type"] = "imbued", + }, + { + ["id"] = "imbued.pseudo_built_in_support|2554120916", + ["text"] = "Supported by Level 1 Added Fire Damage", + ["type"] = "imbued", + }, + { + ["id"] = "imbued.pseudo_built_in_support|3321425861", + ["text"] = "Supported by Level 1 Added Lightning Damage", + ["type"] = "imbued", + }, + { + ["id"] = "imbued.pseudo_built_in_support|3356250656", + ["text"] = "Supported by Level 1 Additional Accuracy", + ["type"] = "imbued", + }, + { + ["id"] = "imbued.pseudo_built_in_support|2633900295", + ["text"] = "Supported by Level 1 Advanced Traps", + ["type"] = "imbued", + }, + { + ["id"] = "imbued.pseudo_built_in_support|4269882850", + ["text"] = "Supported by Level 1 Ancestral Call", + ["type"] = "imbued", + }, + { + ["id"] = "imbued.pseudo_built_in_support|2744614343", + ["text"] = "Supported by Level 1 Arcane Surge", + ["type"] = "imbued", + }, + { + ["id"] = "imbued.pseudo_built_in_support|1887128856", + ["text"] = "Supported by Level 1 Archmage", + ["type"] = "imbued", + }, + { + ["id"] = "imbued.pseudo_built_in_support|4029843952", + ["text"] = "Supported by Level 1 Arrogance", + ["type"] = "imbued", + }, + { + ["id"] = "imbued.pseudo_built_in_support|2067275224", + ["text"] = "Supported by Level 1 Arrow Nova", + ["type"] = "imbued", + }, + { + ["id"] = "imbued.pseudo_built_in_support|379055421", + ["text"] = "Supported by Level 1 Ballista Totem", + ["type"] = "imbued", + }, + { + ["id"] = "imbued.pseudo_built_in_support|1190052435", + ["text"] = "Supported by Level 1 Barrage", + ["type"] = "imbued", + }, + { + ["id"] = "imbued.pseudo_built_in_support|3471518268", + ["text"] = "Supported by Level 1 Behead", + ["type"] = "imbued", + }, + { + ["id"] = "imbued.pseudo_built_in_support|1496371093", + ["text"] = "Supported by Level 1 Blasphemy", + ["type"] = "imbued", + }, + { + ["id"] = "imbued.pseudo_built_in_support|1874477201", + ["text"] = "Supported by Level 1 Blastchain Mine", + ["type"] = "imbued", + }, + { + ["id"] = "imbued.pseudo_built_in_support|3277324447", + ["text"] = "Supported by Level 1 Blessed Call", + ["type"] = "imbued", + }, + { + ["id"] = "imbued.pseudo_built_in_support|1221753837", + ["text"] = "Supported by Level 1 Blind", + ["type"] = "imbued", + }, + { + ["id"] = "imbued.pseudo_built_in_support|2069099215", + ["text"] = "Supported by Level 1 Bloodlust", + ["type"] = "imbued", + }, + { + ["id"] = "imbued.pseudo_built_in_support|3290360578", + ["text"] = "Supported by Level 1 Bloodthirst", + ["type"] = "imbued", + }, + { + ["id"] = "imbued.pseudo_built_in_support|2451064053", + ["text"] = "Supported by Level 1 Bonechill", + ["type"] = "imbued", + }, + { + ["id"] = "imbued.pseudo_built_in_support|1281012522", + ["text"] = "Supported by Level 1 Brutality", + ["type"] = "imbued", + }, + { + ["id"] = "imbued.pseudo_built_in_support|19679479", + ["text"] = "Supported by Level 1 Burning Damage", + ["type"] = "imbued", + }, + { + ["id"] = "imbued.pseudo_built_in_support|826020281", + ["text"] = "Supported by Level 1 Cast On Critical Strike", + ["type"] = "imbued", + }, + { + ["id"] = "imbued.pseudo_built_in_support|2894953063", + ["text"] = "Supported by Level 1 Cast on Death", + ["type"] = "imbued", + }, + { + ["id"] = "imbued.pseudo_built_in_support|3582467606", + ["text"] = "Supported by Level 1 Cast on Melee Kill", + ["type"] = "imbued", + }, + { + ["id"] = "imbued.pseudo_built_in_support|3311033584", + ["text"] = "Supported by Level 1 Cast when Stunned", + ["type"] = "imbued", + }, + { + ["id"] = "imbued.pseudo_built_in_support|1089139173", + ["text"] = "Supported by Level 1 Cast while Channelling", + ["type"] = "imbued", + }, + { + ["id"] = "imbued.pseudo_built_in_support|2300092378", + ["text"] = "Supported by Level 1 Chain", + ["type"] = "imbued", + }, + { + ["id"] = "imbued.pseudo_built_in_support|3078658653", + ["text"] = "Supported by Level 1 Chance to Bleed", + ["type"] = "imbued", + }, + { + ["id"] = "imbued.pseudo_built_in_support|2632782139", + ["text"] = "Supported by Level 1 Chance to Flee", + ["type"] = "imbued", + }, + { + ["id"] = "imbued.pseudo_built_in_support|2392994107", + ["text"] = "Supported by Level 1 Chance to Poison", + ["type"] = "imbued", + }, + { + ["id"] = "imbued.pseudo_built_in_support|619178891", + ["text"] = "Supported by Level 1 Charged Mines", + ["type"] = "imbued", + }, + { + ["id"] = "imbued.pseudo_built_in_support|1587233226", + ["text"] = "Supported by Level 1 Charged Traps", + ["type"] = "imbued", + }, + { + ["id"] = "imbued.pseudo_built_in_support|947240231", + ["text"] = "Supported by Level 1 Close Combat", + ["type"] = "imbued", + }, + { + ["id"] = "imbued.pseudo_built_in_support|2007342753", + ["text"] = "Supported by Level 1 Cluster Traps", + ["type"] = "imbued", + }, + { + ["id"] = "imbued.pseudo_built_in_support|1660360583", + ["text"] = "Supported by Level 1 Cold Penetration", + ["type"] = "imbued", + }, + { + ["id"] = "imbued.pseudo_built_in_support|3990013913", + ["text"] = "Supported by Level 1 Cold to Fire", + ["type"] = "imbued", + }, + { + ["id"] = "imbued.pseudo_built_in_support|3488848533", + ["text"] = "Supported by Level 1 Combustion", + ["type"] = "imbued", + }, + { + ["id"] = "imbued.pseudo_built_in_support|2571880157", + ["text"] = "Supported by Level 1 Concentrated Effect", + ["type"] = "imbued", + }, + { + ["id"] = "imbued.pseudo_built_in_support|3498757786", + ["text"] = "Supported by Level 1 Controlled Blaze", + ["type"] = "imbued", + }, + { + ["id"] = "imbued.pseudo_built_in_support|1716224442", + ["text"] = "Supported by Level 1 Controlled Destruction", + ["type"] = "imbued", + }, + { + ["id"] = "imbued.pseudo_built_in_support|2972801927", + ["text"] = "Supported by Level 1 Corrupting Cry", + ["type"] = "imbued", + }, + { + ["id"] = "imbued.pseudo_built_in_support|2533131557", + ["text"] = "Supported by Level 1 Critical Strike Affliction", + ["type"] = "imbued", + }, + { + ["id"] = "imbued.pseudo_built_in_support|1246588902", + ["text"] = "Supported by Level 1 Cruelty", + ["type"] = "imbued", + }, + { + ["id"] = "imbued.pseudo_built_in_support|3346867338", + ["text"] = "Supported by Level 1 Culling Strike", + ["type"] = "imbued", + }, + { + ["id"] = "imbued.pseudo_built_in_support|2011379008", + ["text"] = "Supported by Level 1 Cursed Ground", + ["type"] = "imbued", + }, + { + ["id"] = "imbued.pseudo_built_in_support|2721225790", + ["text"] = "Supported by Level 1 Damage on Full Life", + ["type"] = "imbued", + }, + { + ["id"] = "imbued.pseudo_built_in_support|3092222470", + ["text"] = "Supported by Level 1 Deadly Ailments", + ["type"] = "imbued", + }, + { + ["id"] = "imbued.pseudo_built_in_support|4149556221", + ["text"] = "Supported by Level 1 Decay", + ["type"] = "imbued", + }, + { + ["id"] = "imbued.pseudo_built_in_support|2451084442", + ["text"] = "Supported by Level 1 Devour", + ["type"] = "imbued", + }, + { + ["id"] = "imbued.pseudo_built_in_support|830701349", + ["text"] = "Supported by Level 1 Efficacy", + ["type"] = "imbued", + }, + { + ["id"] = "imbued.pseudo_built_in_support|3849702703", + ["text"] = "Supported by Level 1 Elemental Army", + ["type"] = "imbued", + }, + { + ["id"] = "imbued.pseudo_built_in_support|638399684", + ["text"] = "Supported by Level 1 Elemental Damage with Attacks", + ["type"] = "imbued", + }, + { + ["id"] = "imbued.pseudo_built_in_support|770262833", + ["text"] = "Supported by Level 1 Elemental Focus", + ["type"] = "imbued", + }, + { + ["id"] = "imbued.pseudo_built_in_support|1666671509", + ["text"] = "Supported by Level 1 Elemental Proliferation", + ["type"] = "imbued", + }, + { + ["id"] = "imbued.pseudo_built_in_support|1251682852", + ["text"] = "Supported by Level 1 Endurance Charge on Melee Stun", + ["type"] = "imbued", + }, + { + ["id"] = "imbued.pseudo_built_in_support|1237276220", + ["text"] = "Supported by Level 1 Energy Leech", + ["type"] = "imbued", + }, + { + ["id"] = "imbued.pseudo_built_in_support|1371874082", + ["text"] = "Supported by Level 1 Eternal Blessing", + ["type"] = "imbued", + }, + { + ["id"] = "imbued.pseudo_built_in_support|2952549466", + ["text"] = "Supported by Level 1 Excommunicate", + ["type"] = "imbued", + }, + { + ["id"] = "imbued.pseudo_built_in_support|2763365156", + ["text"] = "Supported by Level 1 Exemplar", + ["type"] = "imbued", + }, + { + ["id"] = "imbued.pseudo_built_in_support|2266469129", + ["text"] = "Supported by Level 1 Expert Retaliation", + ["type"] = "imbued", + }, + { + ["id"] = "imbued.pseudo_built_in_support|262345857", + ["text"] = "Supported by Level 1 Faster Attacks", + ["type"] = "imbued", + }, + { + ["id"] = "imbued.pseudo_built_in_support|1255849548", + ["text"] = "Supported by Level 1 Faster Casting", + ["type"] = "imbued", + }, + { + ["id"] = "imbued.pseudo_built_in_support|1049046441", + ["text"] = "Supported by Level 1 Faster Projectiles", + ["type"] = "imbued", + }, + { + ["id"] = "imbued.pseudo_built_in_support|3519811388", + ["text"] = "Supported by Level 1 Feeding Frenzy", + ["type"] = "imbued", + }, + { + ["id"] = "imbued.pseudo_built_in_support|3376396961", + ["text"] = "Supported by Level 1 Fire Penetration", + ["type"] = "imbued", + }, + { + ["id"] = "imbued.pseudo_built_in_support|172023623", + ["text"] = "Supported by Level 1 Fist of War", + ["type"] = "imbued", + }, + { + ["id"] = "imbued.pseudo_built_in_support|3255037645", + ["text"] = "Supported by Level 1 Focused Ballista", + ["type"] = "imbued", + }, + { + ["id"] = "imbued.pseudo_built_in_support|544627868", + ["text"] = "Supported by Level 1 Focused Channelling", + ["type"] = "imbued", + }, + { + ["id"] = "imbued.pseudo_built_in_support|1584251003", + ["text"] = "Supported by Level 1 Fork", + ["type"] = "imbued", + }, + { + ["id"] = "imbued.pseudo_built_in_support|4141042029", + ["text"] = "Supported by Level 1 Fortify", + ["type"] = "imbued", + }, + { + ["id"] = "imbued.pseudo_built_in_support|3131076360", + ["text"] = "Supported by Level 1 Fresh Meat", + ["type"] = "imbued", + }, + { + ["id"] = "imbued.pseudo_built_in_support|2096466553", + ["text"] = "Supported by Level 1 Frigid Bond", + ["type"] = "imbued", + }, + { + ["id"] = "imbued.pseudo_built_in_support|1892604624", + ["text"] = "Supported by Level 1 Generosity", + ["type"] = "imbued", + }, + { + ["id"] = "imbued.pseudo_built_in_support|3950169394", + ["text"] = "Supported by Level 1 Greater Multiple Projectiles", + ["type"] = "imbued", + }, + { + ["id"] = "imbued.pseudo_built_in_support|1088438448", + ["text"] = "Supported by Level 1 Greater Volley", + ["type"] = "imbued", + }, + { + ["id"] = "imbued.pseudo_built_in_support|71388113", + ["text"] = "Supported by Level 1 Guardian's Blessing", + ["type"] = "imbued", + }, + { + ["id"] = "imbued.pseudo_built_in_support|22608709", + ["text"] = "Supported by Level 1 Hallow", + ["type"] = "imbued", + }, + { + ["id"] = "imbued.pseudo_built_in_support|318949620", + ["text"] = "Supported by Level 1 Hex Bloom", + ["type"] = "imbued", + }, + { + ["id"] = "imbued.pseudo_built_in_support|2883596469", + ["text"] = "Supported by Level 1 Hextouch", + ["type"] = "imbued", + }, + { + ["id"] = "imbued.pseudo_built_in_support|3520866002", + ["text"] = "Supported by Level 1 High-Impact Mine", + ["type"] = "imbued", + }, + { + ["id"] = "imbued.pseudo_built_in_support|114272251", + ["text"] = "Supported by Level 1 Hypothermia", + ["type"] = "imbued", + }, + { + ["id"] = "imbued.pseudo_built_in_support|3232085103", + ["text"] = "Supported by Level 1 Ice Bite", + ["type"] = "imbued", + }, + { + ["id"] = "imbued.pseudo_built_in_support|2520596918", + ["text"] = "Supported by Level 1 Ignite Proliferation", + ["type"] = "imbued", + }, + { + ["id"] = "imbued.pseudo_built_in_support|4236314787", + ["text"] = "Supported by Level 1 Immolate", + ["type"] = "imbued", + }, + { + ["id"] = "imbued.pseudo_built_in_support|578583560", + ["text"] = "Supported by Level 1 Impale", + ["type"] = "imbued", + }, + { + ["id"] = "imbued.pseudo_built_in_support|1466145569", + ["text"] = "Supported by Level 1 Increased Area of Effect", + ["type"] = "imbued", + }, + { + ["id"] = "imbued.pseudo_built_in_support|191534163", + ["text"] = "Supported by Level 1 Increased Critical Damage", + ["type"] = "imbued", + }, + { + ["id"] = "imbued.pseudo_built_in_support|3398161162", + ["text"] = "Supported by Level 1 Increased Critical Strikes", + ["type"] = "imbued", + }, + { + ["id"] = "imbued.pseudo_built_in_support|4159921771", + ["text"] = "Supported by Level 1 Infernal Legion", + ["type"] = "imbued", + }, + { + ["id"] = "imbued.pseudo_built_in_support|3128644425", + ["text"] = "Supported by Level 1 Infused Channelling", + ["type"] = "imbued", + }, + { + ["id"] = "imbued.pseudo_built_in_support|110946631", + ["text"] = "Supported by Level 1 Innervate", + ["type"] = "imbued", + }, + { + ["id"] = "imbued.pseudo_built_in_support|282207976", + ["text"] = "Supported by Level 1 Inspiration", + ["type"] = "imbued", + }, + { + ["id"] = "imbued.pseudo_built_in_support|1796692633", + ["text"] = "Supported by Level 1 Intensify", + ["type"] = "imbued", + }, + { + ["id"] = "imbued.pseudo_built_in_support|1332031472", + ["text"] = "Supported by Level 1 Iron Grip", + ["type"] = "imbued", + }, + { + ["id"] = "imbued.pseudo_built_in_support|3373854464", + ["text"] = "Supported by Level 1 Iron Will", + ["type"] = "imbued", + }, + { + ["id"] = "imbued.pseudo_built_in_support|1787283513", + ["text"] = "Supported by Level 1 Item Rarity", + ["type"] = "imbued", + }, + { + ["id"] = "imbued.pseudo_built_in_support|2003102433", + ["text"] = "Supported by Level 1 Knockback", + ["type"] = "imbued", + }, + { + ["id"] = "imbued.pseudo_built_in_support|4224789409", + ["text"] = "Supported by Level 1 Less Duration", + ["type"] = "imbued", + }, + { + ["id"] = "imbued.pseudo_built_in_support|763543857", + ["text"] = "Supported by Level 1 Life Gain on Hit", + ["type"] = "imbued", + }, + { + ["id"] = "imbued.pseudo_built_in_support|2811214937", + ["text"] = "Supported by Level 1 Life Leech", + ["type"] = "imbued", + }, + { + ["id"] = "imbued.pseudo_built_in_support|3918067187", + ["text"] = "Supported by Level 1 Lifetap", + ["type"] = "imbued", + }, + { + ["id"] = "imbued.pseudo_built_in_support|3248757232", + ["text"] = "Supported by Level 1 Lightning Penetration", + ["type"] = "imbued", + }, + { + ["id"] = "imbued.pseudo_built_in_support|3320826005", + ["text"] = "Supported by Level 1 Locus Mine", + ["type"] = "imbued", + }, + { + ["id"] = "imbued.pseudo_built_in_support|86502960", + ["text"] = "Supported by Level 1 Maim", + ["type"] = "imbued", + }, + { + ["id"] = "imbued.pseudo_built_in_support|1236685577", + ["text"] = "Supported by Level 1 Mana Leech", + ["type"] = "imbued", + }, + { + ["id"] = "imbued.pseudo_built_in_support|2816032231", + ["text"] = "Supported by Level 1 Manaforged Arrows", + ["type"] = "imbued", + }, + { + ["id"] = "imbued.pseudo_built_in_support|3719049861", + ["text"] = "Supported by Level 1 Mark On Hit", + ["type"] = "imbued", + }, + { + ["id"] = "imbued.pseudo_built_in_support|3535984827", + ["text"] = "Supported by Level 1 Meat Shield", + ["type"] = "imbued", + }, + { + ["id"] = "imbued.pseudo_built_in_support|3626246352", + ["text"] = "Supported by Level 1 Melee Physical Damage", + ["type"] = "imbued", + }, + { + ["id"] = "imbued.pseudo_built_in_support|2277529223", + ["text"] = "Supported by Level 1 Melee Splash", + ["type"] = "imbued", + }, + { + ["id"] = "imbued.pseudo_built_in_support|3322685172", + ["text"] = "Supported by Level 1 Minefield", + ["type"] = "imbued", + }, + { + ["id"] = "imbued.pseudo_built_in_support|344293939", + ["text"] = "Supported by Level 1 Minion Damage", + ["type"] = "imbued", + }, + { + ["id"] = "imbued.pseudo_built_in_support|1181489488", + ["text"] = "Supported by Level 1 Minion Life", + ["type"] = "imbued", + }, + { + ["id"] = "imbued.pseudo_built_in_support|695144847", + ["text"] = "Supported by Level 1 Minion Speed", + ["type"] = "imbued", + }, + { + ["id"] = "imbued.pseudo_built_in_support|683812711", + ["text"] = "Supported by Level 1 Mirage Archer", + ["type"] = "imbued", + }, + { + ["id"] = "imbued.pseudo_built_in_support|3400389576", + ["text"] = "Supported by Level 1 Momentum", + ["type"] = "imbued", + }, + { + ["id"] = "imbued.pseudo_built_in_support|48249346", + ["text"] = "Supported by Level 1 More Duration", + ["type"] = "imbued", + }, + { + ["id"] = "imbued.pseudo_built_in_support|89542028", + ["text"] = "Supported by Level 1 Multiple Projectiles", + ["type"] = "imbued", + }, + { + ["id"] = "imbued.pseudo_built_in_support|33708788", + ["text"] = "Supported by Level 1 Multiple Totems", + ["type"] = "imbued", + }, + { + ["id"] = "imbued.pseudo_built_in_support|3313613094", + ["text"] = "Supported by Level 1 Multiple Traps", + ["type"] = "imbued", + }, + { + ["id"] = "imbued.pseudo_built_in_support|646275157", + ["text"] = "Supported by Level 1 Multistrike", + ["type"] = "imbued", + }, + { + ["id"] = "imbued.pseudo_built_in_support|3345636521", + ["text"] = "Supported by Level 1 Nightblade", + ["type"] = "imbued", + }, + { + ["id"] = "imbued.pseudo_built_in_support|1961131194", + ["text"] = "Supported by Level 1 Overcharge", + ["type"] = "imbued", + }, + { + ["id"] = "imbued.pseudo_built_in_support|3676897366", + ["text"] = "Supported by Level 1 Overexertion", + ["type"] = "imbued", + }, + { + ["id"] = "imbued.pseudo_built_in_support|817697514", + ["text"] = "Supported by Level 1 Physical to Lightning", + ["type"] = "imbued", + }, + { + ["id"] = "imbued.pseudo_built_in_support|4016557208", + ["text"] = "Supported by Level 1 Pierce", + ["type"] = "imbued", + }, + { + ["id"] = "imbued.pseudo_built_in_support|734543851", + ["text"] = "Supported by Level 1 Pinpoint", + ["type"] = "imbued", + }, + { + ["id"] = "imbued.pseudo_built_in_support|910857224", + ["text"] = "Supported by Level 1 Point Blank", + ["type"] = "imbued", + }, + { + ["id"] = "imbued.pseudo_built_in_support|3106835412", + ["text"] = "Supported by Level 1 Power Charge On Critical", + ["type"] = "imbued", + }, + { + ["id"] = "imbued.pseudo_built_in_support|687583659", + ["text"] = "Supported by Level 1 Pulverise", + ["type"] = "imbued", + }, + { + ["id"] = "imbued.pseudo_built_in_support|973619657", + ["text"] = "Supported by Level 1 Rage", + ["type"] = "imbued", + }, + { + ["id"] = "imbued.pseudo_built_in_support|2342654864", + ["text"] = "Supported by Level 1 Returning Projectiles", + ["type"] = "imbued", + }, + { + ["id"] = "imbued.pseudo_built_in_support|1235991958", + ["text"] = "Supported by Level 1 Rupture", + ["type"] = "imbued", + }, + { + ["id"] = "imbued.pseudo_built_in_support|4081846217", + ["text"] = "Supported by Level 1 Ruthless", + ["type"] = "imbued", + }, + { + ["id"] = "imbued.pseudo_built_in_support|2276372010", + ["text"] = "Supported by Level 1 Sacrifice", + ["type"] = "imbued", + }, + { + ["id"] = "imbued.pseudo_built_in_support|1591272514", + ["text"] = "Supported by Level 1 Sadism", + ["type"] = "imbued", + }, + { + ["id"] = "imbued.pseudo_built_in_support|3226210172", + ["text"] = "Supported by Level 1 Second Wind", + ["type"] = "imbued", + }, + { + ["id"] = "imbued.pseudo_built_in_support|663883068", + ["text"] = "Supported by Level 1 Slower Projectiles", + ["type"] = "imbued", + }, + { + ["id"] = "imbued.pseudo_built_in_support|3802739165", + ["text"] = "Supported by Level 1 Spell Cascade", + ["type"] = "imbued", + }, + { + ["id"] = "imbued.pseudo_built_in_support|3076322868", + ["text"] = "Supported by Level 1 Spell Echo", + ["type"] = "imbued", + }, + { + ["id"] = "imbued.pseudo_built_in_support|1342846117", + ["text"] = "Supported by Level 1 Spell Totem", + ["type"] = "imbued", + }, + { + ["id"] = "imbued.pseudo_built_in_support|2139519964", + ["text"] = "Supported by Level 1 Spellblade", + ["type"] = "imbued", + }, + { + ["id"] = "imbued.pseudo_built_in_support|3378399298", + ["text"] = "Supported by Level 1 Stun", + ["type"] = "imbued", + }, + { + ["id"] = "imbued.pseudo_built_in_support|21787019", + ["text"] = "Supported by Level 1 Summon Phantasm", + ["type"] = "imbued", + }, + { + ["id"] = "imbued.pseudo_built_in_support|2290801007", + ["text"] = "Supported by Level 1 Swift Affliction", + ["type"] = "imbued", + }, + { + ["id"] = "imbued.pseudo_built_in_support|3993822420", + ["text"] = "Supported by Level 1 Swift Assembly", + ["type"] = "imbued", + }, + { + ["id"] = "imbued.pseudo_built_in_support|1597853541", + ["text"] = "Supported by Level 1 Swiftbrand", + ["type"] = "imbued", + }, + { + ["id"] = "imbued.pseudo_built_in_support|865602902", + ["text"] = "Supported by Level 1 Trap", + ["type"] = "imbued", + }, + { + ["id"] = "imbued.pseudo_built_in_support|2222630080", + ["text"] = "Supported by Level 1 Trap and Mine Damage", + ["type"] = "imbued", + }, + { + ["id"] = "imbued.pseudo_built_in_support|2380689033", + ["text"] = "Supported by Level 1 Trauma", + ["type"] = "imbued", + }, + { + ["id"] = "imbued.pseudo_built_in_support|1826317887", + ["text"] = "Supported by Level 1 Trinity", + ["type"] = "imbued", + }, + { + ["id"] = "imbued.pseudo_built_in_support|796460095", + ["text"] = "Supported by Level 1 Unbound Ailments", + ["type"] = "imbued", + }, + { + ["id"] = "imbued.pseudo_built_in_support|2395805465", + ["text"] = "Supported by Level 1 Unleash", + ["type"] = "imbued", + }, + { + ["id"] = "imbued.pseudo_built_in_support|3288860132", + ["text"] = "Supported by Level 1 Urgent Orders", + ["type"] = "imbued", + }, + { + ["id"] = "imbued.pseudo_built_in_support|2679148081", + ["text"] = "Supported by Level 1 Vicious Projectiles", + ["type"] = "imbued", + }, + { + ["id"] = "imbued.pseudo_built_in_support|3064536173", + ["text"] = "Supported by Level 1 Vile Toxins", + ["type"] = "imbued", + }, + { + ["id"] = "imbued.pseudo_built_in_support|538077215", + ["text"] = "Supported by Level 1 Void Manipulation", + ["type"] = "imbued", + }, + { + ["id"] = "imbued.pseudo_built_in_support|1677409971", + ["text"] = "Supported by Level 1 Volatility", + ["type"] = "imbued", + }, + { + ["id"] = "imbued.pseudo_built_in_support|1041958248", + ["text"] = "Supported by Level 1 Volley", + ["type"] = "imbued", + }, + { + ["id"] = "imbued.pseudo_built_in_support|1337767102", + ["text"] = "Supported by Level 1 Withering Touch", + ["type"] = "imbued", + }, + }, + ["id"] = "imbued", + ["label"] = "Imbued", + }, + { + ["entries"] = { + { + ["id"] = "fractured.stat_4079888060", + ["text"] = "# Added Passive Skills are Jewel Sockets", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_762600725", + ["text"] = "# Life gained when you Block", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2122183138", + ["text"] = "# Mana gained when you Block", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3478075311", + ["text"] = "# to # Added Chaos Damage with Bow Attacks", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_4191067677", + ["text"] = "# to # Added Chaos Damage with Claw Attacks", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3248691197", + ["text"] = "# to # Added Chaos Damage with Dagger Attacks", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3648858570", + ["text"] = "# to # Added Cold Damage per Frenzy Charge", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1782176131", + ["text"] = "# to # Added Cold Damage with Axe Attacks", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_215124030", + ["text"] = "# to # Added Cold Damage with Bow Attacks", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2848646243", + ["text"] = "# to # Added Cold Damage with Claw Attacks", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1263342750", + ["text"] = "# to # Added Cold Damage with Dagger Attacks", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_187418672", + ["text"] = "# to # Added Cold Damage with Mace or Sceptre Attacks", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1261958804", + ["text"] = "# to # Added Cold Damage with Staff Attacks", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_972201717", + ["text"] = "# to # Added Cold Damage with Sword Attacks", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2383797932", + ["text"] = "# to # Added Cold Damage with Wand Attacks", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2461965653", + ["text"] = "# to # Added Fire Damage with Axe Attacks", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3120164895", + ["text"] = "# to # Added Fire Damage with Bow Attacks", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2154290807", + ["text"] = "# to # Added Fire Damage with Claw Attacks", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1910361436", + ["text"] = "# to # Added Fire Damage with Dagger Attacks", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3146788701", + ["text"] = "# to # Added Fire Damage with Mace or Sceptre Attacks", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3220927448", + ["text"] = "# to # Added Fire Damage with Staff Attacks", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_601249293", + ["text"] = "# to # Added Fire Damage with Sword Attacks", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_87098247", + ["text"] = "# to # Added Fire Damage with Wand Attacks", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1582068183", + ["text"] = "# to # Added Lightning Damage with Axe Attacks", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1040269876", + ["text"] = "# to # Added Lightning Damage with Bow Attacks", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_4231842891", + ["text"] = "# to # Added Lightning Damage with Claw Attacks", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3479683016", + ["text"] = "# to # Added Lightning Damage with Dagger Attacks", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2096159630", + ["text"] = "# to # Added Lightning Damage with Mace or Sceptre Attacks", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3212481075", + ["text"] = "# to # Added Lightning Damage with Staff Attacks", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1237708713", + ["text"] = "# to # Added Lightning Damage with Sword Attacks", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2787733863", + ["text"] = "# to # Added Lightning Damage with Wand Attacks", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_311030839", + ["text"] = "# to # Added Physical Damage with Axe Attacks", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1760576992", + ["text"] = "# to # Added Physical Damage with Bow Attacks", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3303015", + ["text"] = "# to # Added Physical Damage with Claw Attacks", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1298238534", + ["text"] = "# to # Added Physical Damage with Dagger Attacks", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3882662078", + ["text"] = "# to # Added Physical Damage with Mace or Sceptre Attacks", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_69898010", + ["text"] = "# to # Added Physical Damage with Staff Attacks", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1040189894", + ["text"] = "# to # Added Physical Damage with Sword Attacks", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_133683091", + ["text"] = "# to # Added Physical Damage with Wand Attacks", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1865428306", + ["text"] = "# to # Added Spell Chaos Damage while Dual Wielding", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1181129483", + ["text"] = "# to # Added Spell Chaos Damage while holding a Shield", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1743759111", + ["text"] = "# to # Added Spell Chaos Damage while wielding a Two Handed Weapon", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3376452528", + ["text"] = "# to # Added Spell Cold Damage while Dual Wielding", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2671663397", + ["text"] = "# to # Added Spell Cold Damage while holding a Shield", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2464689927", + ["text"] = "# to # Added Spell Cold Damage while wielding a Two Handed Weapon", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_662691280", + ["text"] = "# to # Added Spell Fire Damage while Dual Wielding", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_44182350", + ["text"] = "# to # Added Spell Fire Damage while holding a Shield", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2135335407", + ["text"] = "# to # Added Spell Fire Damage while wielding a Two Handed Weapon", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3352373076", + ["text"] = "# to # Added Spell Lightning Damage while Dual Wielding", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1801889979", + ["text"] = "# to # Added Spell Lightning Damage while holding a Shield", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2398198236", + ["text"] = "# to # Added Spell Lightning Damage while wielding a Two Handed Weapon", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_4255924189", + ["text"] = "# to # Added Spell Physical Damage while Dual Wielding", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3954157711", + ["text"] = "# to # Added Spell Physical Damage while holding a Shield", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2921084940", + ["text"] = "# to # Added Spell Physical Damage while wielding a Two Handed Weapon", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1073447019", + ["text"] = "# to # Fire Damage per Endurance Charge", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1917107159", + ["text"] = "# to # Lightning Damage per Power Charge", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3938603844", + ["text"] = "# to # added Cold Damage Players and their Minions have # to # added Cold Damage", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_190652296", + ["text"] = "# to # added Fire Damage Players and their Minions have # to # added Fire Damage", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_165402179", + ["text"] = "# to # added Fire Damage against Burning Enemies", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2697534676", + ["text"] = "# to # added Lightning Damage Players and their Minions have # to # added Lightning Damage", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1563396443", + ["text"] = "# to # added Physical Damage Players and their Minions have # to # added Physical Damage", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2312652600", + ["text"] = "#% Chance to Avoid being Stunned during Effect", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2530372417", + ["text"] = "#% Chance to Block Attack Damage", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_561307714", + ["text"] = "#% Chance to Block Spell Damage", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2221570601", + ["text"] = "#% Global chance to Blind Enemies on hit", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_962725504", + ["text"] = "#% additional Elemental Resistances during Effect", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3771516363", + ["text"] = "#% additional Physical Damage Reduction", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_287491423", + ["text"] = "#% additional Physical Damage Reduction against Abyssal Monsters", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2693266036", + ["text"] = "#% additional Physical Damage Reduction during any Flask Effect", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3603666270", + ["text"] = "#% additional Physical Damage Reduction if you weren't Damaged by a Hit Recently", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3753650187", + ["text"] = "#% additional Physical Damage Reduction while Focused", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2181129193", + ["text"] = "#% additional Physical Damage Reduction while stationary", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1560880986", + ["text"] = "#% chance for Bleeding inflicted with this Weapon to deal 100% more Damage", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_301104070", + ["text"] = "#% chance for Flasks to gain a Charge when you take a Critical Strike", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_311641062", + ["text"] = "#% chance for Flasks you use to not consume Charges", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2523146878", + ["text"] = "#% chance for Poisons inflicted with this Weapon to deal 100% more Damage", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3097694855", + ["text"] = "#% chance for Rare Monsters to Fracture on death", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1761297940", + ["text"] = "#% chance on Skill use to not Sacrifice Life but still gain benefits as though you had", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3107439245", + ["text"] = "#% chance on completing a Heist to generate an additional Reveal with Whakano", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3844152269", + ["text"] = "#% chance on opening a Chest to not generate Alert Level", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1618589784", + ["text"] = "#% chance to Avoid Bleeding", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3743375737", + ["text"] = "#% chance to Avoid Cold Damage from Hits", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3005472710", + ["text"] = "#% chance to Avoid Elemental Ailments", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2662268382", + ["text"] = "#% chance to Avoid Elemental Ailments while you have Elusive", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_720398262", + ["text"] = "#% chance to Avoid Elemental Damage from Hits during Soul Gain Prevention", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_42242677", + ["text"] = "#% chance to Avoid Fire Damage from Hits", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2889664727", + ["text"] = "#% chance to Avoid Lightning Damage from Hits", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2415497478", + ["text"] = "#% chance to Avoid Physical Damage from Hits", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3483999943", + ["text"] = "#% chance to Avoid being Chilled", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1619168299", + ["text"] = "#% chance to Avoid being Chilled during Effect", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1514829491", + ["text"] = "#% chance to Avoid being Frozen", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_475518267", + ["text"] = "#% chance to Avoid being Frozen during Effect", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1783006896", + ["text"] = "#% chance to Avoid being Ignited", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_20251177", + ["text"] = "#% chance to Avoid being Ignited during Effect", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3313284037", + ["text"] = "#% chance to Avoid being Interrupted", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_4053951709", + ["text"] = "#% chance to Avoid being Poisoned", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1871765599", + ["text"] = "#% chance to Avoid being Shocked", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3642618258", + ["text"] = "#% chance to Avoid being Shocked during Effect", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_4262448838", + ["text"] = "#% chance to Avoid being Stunned", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_318953428", + ["text"] = "#% chance to Blind Enemies on Hit with Attacks", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2301191210", + ["text"] = "#% chance to Blind Enemies on hit", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_864879045", + ["text"] = "#% chance to Chill Attackers for 4 seconds on Block", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2228892313", + ["text"] = "#% chance to Crush on Hit", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1352418057", + ["text"] = "#% chance to Curse Enemies with Socketed Hex Curse Gem on Hit", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2213584313", + ["text"] = "#% chance to Curse Enemies with Vulnerability on Hit", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_327253797", + ["text"] = "#% chance to Defend with 200% of Armour", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2309614417", + ["text"] = "#% chance to Freeze", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_800141891", + ["text"] = "#% chance to Freeze, Shock and Ignite", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_97064873", + ["text"] = "#% chance to Freeze, Shock and Ignite during Effect", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_446027070", + ["text"] = "#% chance to Gain Arcane Surge when you deal a Critical Strike", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3166317791", + ["text"] = "#% chance to Gain Unholy Might for 4 seconds on Melee Kill", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3002506763", + ["text"] = "#% chance to Hinder Enemies on Hit with Spells", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1335054179", + ["text"] = "#% chance to Ignite", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1916706958", + ["text"] = "#% chance to Ignore Stuns while Casting", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3739863694", + ["text"] = "#% chance to Impale Enemies on Hit with Attacks", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_725880290", + ["text"] = "#% chance to Impale Enemies on Hit with Attacks", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2089652545", + ["text"] = "#% chance to Intimidate Enemies for 4 seconds on Hit", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_78985352", + ["text"] = "#% chance to Intimidate Enemies for 4 seconds on Hit", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3438201750", + ["text"] = "#% chance to Intimidate Enemies for 4 seconds on Hit with Attacks", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_977908611", + ["text"] = "#% chance to Knock Enemies Back on hit", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2763429652", + ["text"] = "#% chance to Maim on Hit", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_795138349", + ["text"] = "#% chance to Poison on Hit", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3885634897", + ["text"] = "#% chance to Poison on Hit (Local)", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_308309328", + ["text"] = "#% chance to Recover 10% of Mana when you use a Skill", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1538773178", + ["text"] = "#% chance to Shock", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_575111651", + ["text"] = "#% chance to Shock Attackers for 4 seconds on Block", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_280213220", + ["text"] = "#% chance to Taunt Enemies on Hit with Attacks", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_205619502", + ["text"] = "#% chance to Trigger Level 1 Blood Rage when you Kill an Enemy", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2062792091", + ["text"] = "#% chance to Trigger Socketed Spells when you Focus, with a 0.25 second Cooldown", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3079007202", + ["text"] = "#% chance to Trigger a Socketed Spell on Using a Skill, with a 8 second Cooldown Spells Triggered this way have 150% more Cost", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_763611529", + ["text"] = "#% chance to Unnerve Enemies for 4 seconds on Hit", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_220991810", + ["text"] = "#% chance to Unnerve Enemies for 4 seconds on Hit with Spells", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3452269808", + ["text"] = "#% chance to avoid Projectiles", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1519615863", + ["text"] = "#% chance to cause Bleeding on Hit", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3748879662", + ["text"] = "#% chance to cover Enemies in Ash when they Hit you", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1172810729", + ["text"] = "#% chance to deal Double Damage", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1916537902", + ["text"] = "#% chance to deal Double Damage against Enemies for each type of Ailment you have inflicted on them", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_4224978303", + ["text"] = "#% chance to deal Double Damage if you have Stunned an Enemy Recently", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2908886986", + ["text"] = "#% chance to deal Double Damage while Focused", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2989883253", + ["text"] = "#% chance to gain Alchemist's Genius when you use a Flask", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_573223427", + ["text"] = "#% chance to gain Arcane Surge when you Kill an Enemy", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2896192589", + ["text"] = "#% chance to gain Elusive on Critical Strike", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3049760680", + ["text"] = "#% chance to gain Onslaught for 3 seconds when Hit", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3023957681", + ["text"] = "#% chance to gain Onslaught for 4 seconds on Kill", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_665823128", + ["text"] = "#% chance to gain Onslaught for 4 seconds on Kill", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2918708827", + ["text"] = "#% chance to gain Phasing for 4 seconds on Kill", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3562211447", + ["text"] = "#% chance to gain Unholy Might for 3 seconds on Kill", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3738001379", + ["text"] = "#% chance to gain a Flask Charge when you deal a Critical Strike", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3032585258", + ["text"] = "#% chance to gain a Frenzy Charge on Critical Strike", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2323242761", + ["text"] = "#% chance to gain a Frenzy Charge on Hit", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1826802197", + ["text"] = "#% chance to gain a Frenzy Charge on Kill", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3769211656", + ["text"] = "#% chance to gain a Frenzy Charge when you Block", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_4179663748", + ["text"] = "#% chance to gain a Frenzy Charge when you Hit a Rare or Unique Enemy", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3814876985", + ["text"] = "#% chance to gain a Power Charge on Critical Strike", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2483795307", + ["text"] = "#% chance to gain a Power Charge on Kill", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3607154250", + ["text"] = "#% chance to gain a Power Charge on Killing a Frozen Enemy", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3945147290", + ["text"] = "#% chance to gain a Power Charge when you Block", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_498214257", + ["text"] = "#% chance to gain a Power, Frenzy or Endurance Charge on Kill", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2542650946", + ["text"] = "#% chance to gain an Endurance Charge on Critical Strike", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1054322244", + ["text"] = "#% chance to gain an Endurance Charge on Kill", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_417188801", + ["text"] = "#% chance to gain an Endurance Charge when you Block", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1536266147", + ["text"] = "#% chance to gain an Endurance Charge when you Hit a Bleeding Enemy", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1962922582", + ["text"] = "#% chance to gain an additional Vaal Soul on Kill", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2630708439", + ["text"] = "#% chance to inflict Cold Exposure on Hit", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3602667353", + ["text"] = "#% chance to inflict Fire Exposure on Hit", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_4265906483", + ["text"] = "#% chance to inflict Lightning Exposure on Hit", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2858930612", + ["text"] = "#% chance to lose 10% of Mana when you use a Skill", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2142803347", + ["text"] = "#% chance to lose a Frenzy Charge on Kill", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2939195168", + ["text"] = "#% chance to lose a Power Charge on Kill", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_627015097", + ["text"] = "#% chance to lose an Endurance Charge on Kill", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2438099615", + ["text"] = "#% chance to not Activate Lockdown in Grand Heists", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_277930304", + ["text"] = "#% chance to not generate Alert Level on opening a Chest using Agility", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1195895224", + ["text"] = "#% chance to not generate Alert Level on opening a Chest using Brute Force", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2232609651", + ["text"] = "#% chance to not generate Alert Level on opening a Chest using Counter-Thaumaturgy", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3146356577", + ["text"] = "#% chance to not generate Alert Level on opening a Chest using Deception", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_581152495", + ["text"] = "#% chance to not generate Alert Level on opening a Chest using Demolition", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_316122366", + ["text"] = "#% chance to not generate Alert Level on opening a Chest using Engineering", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_647064288", + ["text"] = "#% chance to not generate Alert Level on opening a Chest using Lockpicking", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_397829245", + ["text"] = "#% chance to not generate Alert Level on opening a Chest using Perception", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3015749212", + ["text"] = "#% chance to not generate Alert Level on opening a Chest using Trap Disarmament", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1130670241", + ["text"] = "#% faster Restoration of Ward", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1782086450", + ["text"] = "#% faster start of Energy Shield Recharge", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2806435316", + ["text"] = "#% increased Accuracy Rating if you haven't Killed Recently", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3700381193", + ["text"] = "#% increased Accuracy Rating per Frenzy Charge", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_245401622", + ["text"] = "#% increased Agility Experience gained", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3422638915", + ["text"] = "#% increased Agility speed", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_700317374", + ["text"] = "#% increased Amount Recovered", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_4251717817", + ["text"] = "#% increased Area Damage", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_280731498", + ["text"] = "#% increased Area of Effect", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_430248187", + ["text"] = "#% increased Area of Effect if you have Stunned an Enemy Recently", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_153777645", + ["text"] = "#% increased Area of Effect of Hex Skills", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2611023406", + ["text"] = "#% increased Area of Effect per 50 Strength", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2866361420", + ["text"] = "#% increased Armour", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1062208444", + ["text"] = "#% increased Armour (Local)", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3321629045", + ["text"] = "#% increased Armour and Energy Shield (Local)", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2451402625", + ["text"] = "#% increased Armour and Evasion (Local)", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1693613464", + ["text"] = "#% increased Armour during Effect", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2424133568", + ["text"] = "#% increased Armour if you haven't Killed Recently", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3523867985", + ["text"] = "#% increased Armour, Evasion and Energy Shield (Local)", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3702513529", + ["text"] = "#% increased Attack Critical Strike Chance while Dual Wielding", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2843214518", + ["text"] = "#% increased Attack Damage", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_444174528", + ["text"] = "#% increased Attack Damage while Dual Wielding", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1393393937", + ["text"] = "#% increased Attack Damage while holding a Shield", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_681332047", + ["text"] = "#% increased Attack Speed", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_210067635", + ["text"] = "#% increased Attack Speed (Local)", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_968369591", + ["text"] = "#% increased Attack Speed during Effect", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1365052901", + ["text"] = "#% increased Attack Speed during any Flask Effect", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1507059769", + ["text"] = "#% increased Attack Speed if you've Killed Recently", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_4137521191", + ["text"] = "#% increased Attack Speed if you've been Hit Recently", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1585344030", + ["text"] = "#% increased Attack Speed if you've dealt a Critical Strike Recently", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2241560081", + ["text"] = "#% increased Attack Speed per 25 Dexterity", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_4249220643", + ["text"] = "#% increased Attack Speed while Dual Wielding", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_122450405", + ["text"] = "#% increased Attack Speed while Fortified", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2047819517", + ["text"] = "#% increased Attack Speed while Ignited", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_314741699", + ["text"] = "#% increased Attack Speed while a Rare or Unique Enemy is Nearby", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3805075944", + ["text"] = "#% increased Attack Speed while holding a Shield", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3550868361", + ["text"] = "#% increased Attack Speed with Axes", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3759735052", + ["text"] = "#% increased Attack Speed with Bows", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1421645223", + ["text"] = "#% increased Attack Speed with Claws", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2538566497", + ["text"] = "#% increased Attack Speed with Daggers", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2515515064", + ["text"] = "#% increased Attack Speed with Maces or Sceptres", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1813451228", + ["text"] = "#% increased Attack Speed with One Handed Melee Weapons", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1394963553", + ["text"] = "#% increased Attack Speed with Staves", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3293699237", + ["text"] = "#% increased Attack Speed with Swords", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1917910910", + ["text"] = "#% increased Attack Speed with Two Handed Melee Weapons", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3720627346", + ["text"] = "#% increased Attack Speed with Wands", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2672805335", + ["text"] = "#% increased Attack and Cast Speed", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1027670161", + ["text"] = "#% increased Attack and Cast Speed for each nearby Enemy, up to a maximum of 30%", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1483753325", + ["text"] = "#% increased Attack and Cast Speed if you've Hit an Enemy Recently", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2628163981", + ["text"] = "#% increased Attack and Cast Speed while Focused", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3639275092", + ["text"] = "#% increased Attribute Requirements", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3143208761", + ["text"] = "#% increased Attributes", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1692879867", + ["text"] = "#% increased Bleed Duration on you", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1459321413", + ["text"] = "#% increased Bleeding Duration", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3479987487", + ["text"] = "#% increased Block and Stun Recovery during Effect", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_4223377453", + ["text"] = "#% increased Brand Attachment range", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2377447058", + ["text"] = "#% increased Brute Force Experience gained", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3095027077", + ["text"] = "#% increased Brute Force speed", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1175385867", + ["text"] = "#% increased Burning Damage", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2891184298", + ["text"] = "#% increased Cast Speed", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3256116097", + ["text"] = "#% increased Cast Speed during Effect", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_252194507", + ["text"] = "#% increased Cast Speed during any Flask Effect", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3110907148", + ["text"] = "#% increased Cast Speed if a Minion has been Killed Recently", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2072625596", + ["text"] = "#% increased Cast Speed if you've Killed Recently", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1174076861", + ["text"] = "#% increased Cast Speed if you've dealt a Critical Strike Recently", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2382196858", + ["text"] = "#% increased Cast Speed while Dual Wielding", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1612163368", + ["text"] = "#% increased Cast Speed while holding a Shield", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2066542501", + ["text"] = "#% increased Cast Speed while wielding a Staff", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_928238845", + ["text"] = "#% increased Cast Speed with Cold Skills", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1476643878", + ["text"] = "#% increased Cast Speed with Fire Skills", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1788635023", + ["text"] = "#% increased Cast Speed with Lightning Skills", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2481353198", + ["text"] = "#% increased Chance to Block", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_736967255", + ["text"] = "#% increased Chaos Damage", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_601272515", + ["text"] = "#% increased Chaos Damage over Time", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3196823591", + ["text"] = "#% increased Charge Recovery", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_388617051", + ["text"] = "#% increased Charges per use", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3291658075", + ["text"] = "#% increased Cold Damage", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1004011302", + ["text"] = "#% increased Cooldown Recovery Rate", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3417757416", + ["text"] = "#% increased Cooldown Recovery Rate for throwing Traps", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1237550112", + ["text"] = "#% increased Counter-Thaumaturgy Experience gained", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2888942321", + ["text"] = "#% increased Counter-Thaumaturgy speed", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2375316951", + ["text"] = "#% increased Critical Strike Chance", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1939202111", + ["text"] = "#% increased Critical Strike Chance against Blinded Enemies", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1345659139", + ["text"] = "#% increased Critical Strike Chance against Poisoned Enemies", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_276103140", + ["text"] = "#% increased Critical Strike Chance against Shocked Enemies", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2008255263", + ["text"] = "#% increased Critical Strike Chance during Effect", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3914638685", + ["text"] = "#% increased Critical Strike Chance if you have Killed Recently", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2856328513", + ["text"] = "#% increased Critical Strike Chance if you haven't dealt a Critical Strike Recently", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1051688002", + ["text"] = "#% increased Critical Strike Chance while area is not in Lockdown Players have #% increased Critical Strike Chance while area is not in Lockdown", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2091591880", + ["text"] = "#% increased Critical Strike Chance with Bows", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3337344042", + ["text"] = "#% increased Critical Strike Chance with Cold Skills", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_439950087", + ["text"] = "#% increased Critical Strike Chance with Elemental Skills", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1104796138", + ["text"] = "#% increased Critical Strike Chance with Fire Skills", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1186596295", + ["text"] = "#% increased Critical Strike Chance with Lightning Skills", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2381842786", + ["text"] = "#% increased Critical Strike Chance with One Handed Melee Weapons", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_764295120", + ["text"] = "#% increased Critical Strike Chance with Two Handed Melee Weapons", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3824372849", + ["text"] = "#% increased Curse Duration", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2154246560", + ["text"] = "#% increased Damage", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2947215268", + ["text"] = "#% increased Damage during any Flask Effect", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_886366428", + ["text"] = "#% increased Damage for each Magic Item Equipped", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1072119541", + ["text"] = "#% increased Damage if you've Killed Recently", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_967627487", + ["text"] = "#% increased Damage over Time", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_214001793", + ["text"] = "#% increased Damage over Time while Dual Wielding", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1244360317", + ["text"] = "#% increased Damage over Time while holding a Shield", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_4193088553", + ["text"] = "#% increased Damage over Time while wielding a Two Handed Weapon", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3400437584", + ["text"] = "#% increased Damage per 1% Chance to Block Attack Damage", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2062174346", + ["text"] = "#% increased Damage per 15 Dexterity", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3801128794", + ["text"] = "#% increased Damage per 15 Intelligence", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3948776386", + ["text"] = "#% increased Damage per 15 Strength", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3515686789", + ["text"] = "#% increased Damage per Endurance Charge", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_902747843", + ["text"] = "#% increased Damage per Frenzy Charge", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2034658008", + ["text"] = "#% increased Damage per Power Charge", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_592020238", + ["text"] = "#% increased Damage when on Full Life", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_310246444", + ["text"] = "#% increased Damage while Leeching", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1312481589", + ["text"] = "#% increased Damage while area is not in Lockdown Players deal #% increased Damage while area is not in Lockdown", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_690707482", + ["text"] = "#% increased Damage with Ailments", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3314142259", + ["text"] = "#% increased Damage with Axes", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1294118672", + ["text"] = "#% increased Damage with Bleeding", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1241625305", + ["text"] = "#% increased Damage with Bow Skills", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_4188894176", + ["text"] = "#% increased Damage with Bows", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1069260037", + ["text"] = "#% increased Damage with Claws", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3586984690", + ["text"] = "#% increased Damage with Daggers", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2805714016", + ["text"] = "#% increased Damage with Hits against Chilled Enemies", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3708045494", + ["text"] = "#% increased Damage with Hits against Enemies on Full Life", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3257279374", + ["text"] = "#% increased Damage with Hits and Ailments against Abyssal Monsters", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_539970476", + ["text"] = "#% increased Damage with Hits and Ailments against Cursed Enemies", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1818773442", + ["text"] = "#% increased Damage with Hits and Ailments per Curse on Enemy", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1181419800", + ["text"] = "#% increased Damage with Maces or Sceptres", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1583385065", + ["text"] = "#% increased Damage with Non-Vaal Skills during Soul Gain Prevention", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1010549321", + ["text"] = "#% increased Damage with One Handed Weapons", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1290399200", + ["text"] = "#% increased Damage with Poison", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_4087089130", + ["text"] = "#% increased Damage with Staves", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_83050999", + ["text"] = "#% increased Damage with Swords", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1836374041", + ["text"] = "#% increased Damage with Two Handed Weapons", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2257141320", + ["text"] = "#% increased Damage with Vaal Skills", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_379328644", + ["text"] = "#% increased Damage with Wands", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2678065384", + ["text"] = "#% increased Deception Experience gained", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2520458995", + ["text"] = "#% increased Deception speed", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1492314881", + ["text"] = "#% increased Demolition Experience gained", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2847917427", + ["text"] = "#% increased Demolition speed", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_4139681126", + ["text"] = "#% increased Dexterity", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1256719186", + ["text"] = "#% increased Duration", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_967840105", + ["text"] = "#% increased Duration of Ailments of types you haven't inflicted Recently", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2419712247", + ["text"] = "#% increased Duration of Ailments on Enemies", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1840751341", + ["text"] = "#% increased Duration of Ailments you inflict while Focused", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3571964448", + ["text"] = "#% increased Duration of Cold Ailments", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3015437071", + ["text"] = "#% increased Effect of Arcane Surge on you", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_828179689", + ["text"] = "#% increased Effect of Chill", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1984113628", + ["text"] = "#% increased Effect of Chill and Shock on you", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1793818220", + ["text"] = "#% increased Effect of Cold Ailments", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1661698405", + ["text"] = "#% increased Effect of Curses on Monsters", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3444629796", + ["text"] = "#% increased Effect of Curses on you while on Consecrated Ground", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3081816887", + ["text"] = "#% increased Effect of Lightning Ailments", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1636209393", + ["text"] = "#% increased Effect of Non-Curse Auras from your Skills on Enemies", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_782230869", + ["text"] = "#% increased Effect of Non-Damaging Ailments", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3151397056", + ["text"] = "#% increased Effect of Onslaught on you", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2527686725", + ["text"] = "#% increased Effect of Shock", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1878455805", + ["text"] = "#% increased Effect of Shock on you during Effect", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2526952837", + ["text"] = "#% increased Effect of Socketed Magic Ghastly Eye Jewels", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_654501336", + ["text"] = "#% increased Effect of Socketed Magic Hypnotic Eye Jewels", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3949536301", + ["text"] = "#% increased Effect of Socketed Magic Murderous Eye Jewels", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1938324031", + ["text"] = "#% increased Effect of Socketed Magic Searching Eye Jewels", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1974290842", + ["text"] = "#% increased Effect of Socketed Rare Ghastly Eye Jewels", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1337730278", + ["text"] = "#% increased Effect of Socketed Rare Hypnotic Eye Jewels", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1217940944", + ["text"] = "#% increased Effect of Socketed Rare Murderous Eye Jewels", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3524275808", + ["text"] = "#% increased Effect of Socketed Rare Searching Eye Jewels", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2353576063", + ["text"] = "#% increased Effect of your Curses", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_803185500", + ["text"] = "#% increased Effect of your Marks", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3141070085", + ["text"] = "#% increased Elemental Damage", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2379781920", + ["text"] = "#% increased Elemental Damage if you've dealt a Critical Strike Recently", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_387439868", + ["text"] = "#% increased Elemental Damage with Attack Skills", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_4015621042", + ["text"] = "#% increased Energy Shield (Local)", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2339757871", + ["text"] = "#% increased Energy Shield Recharge Rate", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_988575597", + ["text"] = "#% increased Energy Shield Recovery rate", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1195319608", + ["text"] = "#% increased Energy Shield from Equipped Body Armour", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1372426763", + ["text"] = "#% increased Engineering Experience gained", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3211817426", + ["text"] = "#% increased Engineering speed", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2106365538", + ["text"] = "#% increased Evasion Rating", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_124859000", + ["text"] = "#% increased Evasion Rating (Local)", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_299054775", + ["text"] = "#% increased Evasion Rating during Effect", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3839620417", + ["text"] = "#% increased Evasion Rating while Focused", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_734823525", + ["text"] = "#% increased Evasion Rating while moving", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1999113824", + ["text"] = "#% increased Evasion and Energy Shield (Local)", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3666934677", + ["text"] = "#% increased Experience gain", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3962278098", + ["text"] = "#% increased Fire Damage", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3743301799", + ["text"] = "#% increased Fire Damage taken", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1842038569", + ["text"] = "#% increased Fishing Line Strength", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_170497091", + ["text"] = "#% increased Fishing Range", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1452809865", + ["text"] = "#% increased Flask Charges gained", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3741323227", + ["text"] = "#% increased Flask Effect Duration", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_51994685", + ["text"] = "#% increased Flask Life Recovery rate", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1412217137", + ["text"] = "#% increased Flask Mana Recovery rate", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1073942215", + ["text"] = "#% increased Freeze Duration on Enemies", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_774474440", + ["text"] = "#% increased Freeze Duration on you during Effect", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_624954515", + ["text"] = "#% increased Global Accuracy Rating", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_587431675", + ["text"] = "#% increased Global Critical Strike Chance", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1389153006", + ["text"] = "#% increased Global Defences", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2939710712", + ["text"] = "#% increased Global Defences if there are no Defence Modifiers on other Equipped Items", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1310194496", + ["text"] = "#% increased Global Physical Damage", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2164793549", + ["text"] = "#% increased Hiring Fee for Agility Jobs", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1018753640", + ["text"] = "#% increased Hiring Fee for Brute Force Jobs", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3063943261", + ["text"] = "#% increased Hiring Fee for Counter-Thaumaturgy Jobs", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2506681313", + ["text"] = "#% increased Hiring Fee for Deception Jobs", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3680061663", + ["text"] = "#% increased Hiring Fee for Demolition Jobs", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2956083810", + ["text"] = "#% increased Hiring Fee for Engineering Jobs", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3391299828", + ["text"] = "#% increased Hiring Fee for Lockpicking Jobs", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2885031631", + ["text"] = "#% increased Hiring Fee for Perception Jobs", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2872715880", + ["text"] = "#% increased Hiring Fee for Trap Disarmament Jobs", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2257592286", + ["text"] = "#% increased Hiring Fee of Rogues", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1086147743", + ["text"] = "#% increased Ignite Duration on Enemies", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_298173317", + ["text"] = "#% increased Impale Effect", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_656461285", + ["text"] = "#% increased Intelligence", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3569230441", + ["text"] = "#% increased Job Experience gain", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2978905446", + ["text"] = "#% increased Job speed", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1261982764", + ["text"] = "#% increased Life Recovered", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3240073117", + ["text"] = "#% increased Life Recovery rate", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_44972811", + ["text"] = "#% increased Life Regeneration rate", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_635485889", + ["text"] = "#% increased Life Reservation Efficiency of Skills", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1263695895", + ["text"] = "#% increased Light Radius", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2231156303", + ["text"] = "#% increased Lightning Damage", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2316712523", + ["text"] = "#% increased Lockpicking Experience gained", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3312732077", + ["text"] = "#% increased Lockpicking speed", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3873704640", + ["text"] = "#% increased Magic Monsters", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_683273571", + ["text"] = "#% increased Mana Cost of Skills during Effect", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1811130680", + ["text"] = "#% increased Mana Recovered", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3513180117", + ["text"] = "#% increased Mana Recovery rate", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_789117908", + ["text"] = "#% increased Mana Regeneration Rate", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2076519255", + ["text"] = "#% increased Mana Regeneration Rate while Shocked", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1327522346", + ["text"] = "#% increased Mana Regeneration Rate while moving", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1269219558", + ["text"] = "#% increased Mana Reservation Efficiency of Skills", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_4237190083", + ["text"] = "#% increased Mana Reservation Efficiency of Skills", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3305838454", + ["text"] = "#% increased Mana Reservation Efficiency of Skills Supported by Spellslinger", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2227180465", + ["text"] = "#% increased Mana Reservation of Skills", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2013799819", + ["text"] = "#% increased Maximum total Energy Shield Recovery per second from Leech", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_4118987751", + ["text"] = "#% increased Maximum total Life Recovery per second from Leech", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1199429645", + ["text"] = "#% increased Melee Critical Strike Chance", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1002362373", + ["text"] = "#% increased Melee Damage", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_4091369450", + ["text"] = "#% increased Melee Damage during any Flask Effect", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3501769159", + ["text"] = "#% increased Melee Physical Damage while holding a Shield", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2137912951", + ["text"] = "#% increased Mine Damage", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_117667746", + ["text"] = "#% increased Mine Duration", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1896971621", + ["text"] = "#% increased Mine Throwing Speed", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1718147982", + ["text"] = "#% increased Minion Accuracy Rating", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_999511066", + ["text"] = "#% increased Minion Duration", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1913583994", + ["text"] = "#% increased Monster Attack Speed", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2488361432", + ["text"] = "#% increased Monster Cast Speed", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1890519597", + ["text"] = "#% increased Monster Damage", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2306522833", + ["text"] = "#% increased Monster Movement Speed", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2250533757", + ["text"] = "#% increased Movement Speed", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3182498570", + ["text"] = "#% increased Movement Speed during Effect", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_304970526", + ["text"] = "#% increased Movement Speed during any Flask Effect", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1426967889", + ["text"] = "#% increased Movement Speed for each nearby Enemy, up to a maximum of 50%", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1177358866", + ["text"] = "#% increased Movement Speed if you haven't been Hit Recently", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_308396001", + ["text"] = "#% increased Movement Speed if you haven't been Hit Recently", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3854949926", + ["text"] = "#% increased Movement Speed if you haven't taken Damage Recently", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3178542354", + ["text"] = "#% increased Movement Speed if you've Hit an Enemy Recently", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_279227559", + ["text"] = "#% increased Movement Speed if you've Killed Recently", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1541516339", + ["text"] = "#% increased Movement Speed per Frenzy Charge", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_902577520", + ["text"] = "#% increased Movement Speed while area is not in Lockdown Players have #% increased Movement Speed while area is not in Lockdown", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1521863824", + ["text"] = "#% increased Movement speed while on Burning, Chilled or Shocked ground", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_154668190", + ["text"] = "#% increased Perception Experience gained", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1456551059", + ["text"] = "#% increased Perception speed", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1274831335", + ["text"] = "#% increased Physical Attack Damage while Dual Wielding", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1509134228", + ["text"] = "#% increased Physical Damage", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1692565595", + ["text"] = "#% increased Physical Damage over Time", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2008219439", + ["text"] = "#% increased Physical Damage with Axes", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_402920808", + ["text"] = "#% increased Physical Damage with Bows", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_635761691", + ["text"] = "#% increased Physical Damage with Claws", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3882531569", + ["text"] = "#% increased Physical Damage with Daggers", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3774831856", + ["text"] = "#% increased Physical Damage with Maces or Sceptres", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1334465904", + ["text"] = "#% increased Physical Damage with One Handed Melee Weapons", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3150705301", + ["text"] = "#% increased Physical Damage with Staves", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3814560373", + ["text"] = "#% increased Physical Damage with Swords", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2056783069", + ["text"] = "#% increased Physical Damage with Two Handed Melee Weapons", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2769075491", + ["text"] = "#% increased Physical Damage with Wands", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2011656677", + ["text"] = "#% increased Poison Duration", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3301100256", + ["text"] = "#% increased Poison Duration on you", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2162876159", + ["text"] = "#% increased Projectile Attack Damage", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2771016039", + ["text"] = "#% increased Projectile Attack Damage during any Flask Effect", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_4157767905", + ["text"] = "#% increased Projectile Attack Damage per 200 Accuracy Rating", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1839076647", + ["text"] = "#% increased Projectile Damage", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3759663284", + ["text"] = "#% increased Projectile Speed", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3802667447", + ["text"] = "#% increased Quantity of Fish Caught", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3683643898", + ["text"] = "#% increased Quantity of Items dropped in Heists", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_884586851", + ["text"] = "#% increased Quantity of Items found", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3310914132", + ["text"] = "#% increased Rarity of Fish Caught", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2161689853", + ["text"] = "#% increased Rarity of Items Dropped by Slain Rare or Unique Enemies", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2833896424", + ["text"] = "#% increased Rarity of Items dropped in Heists", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3917489142", + ["text"] = "#% increased Rarity of Items found", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_301625329", + ["text"] = "#% increased Rarity of Items found during any Flask Effect", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_121185030", + ["text"] = "#% increased Rarity of Items found from Slain Unique Enemies", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_173226756", + ["text"] = "#% increased Recovery rate", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2264523604", + ["text"] = "#% increased Reservation of Skills", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2357136187", + ["text"] = "#% increased Rogue's Marker value of primary Heist Target", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3668351662", + ["text"] = "#% increased Shock Duration on Enemies", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3377888098", + ["text"] = "#% increased Skill Effect Duration", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_737908626", + ["text"] = "#% increased Spell Critical Strike Chance", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2974417149", + ["text"] = "#% increased Spell Damage", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2080171093", + ["text"] = "#% increased Spell Damage during any Flask Effect", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2818518881", + ["text"] = "#% increased Spell Damage per 10 Intelligence", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1073314277", + ["text"] = "#% increased Spell Damage per 10 Strength", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2612056840", + ["text"] = "#% increased Spell Damage per 16 Dexterity", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3961014595", + ["text"] = "#% increased Spell Damage per 16 Intelligence", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_4249521944", + ["text"] = "#% increased Spell Damage per 16 Strength", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1678690824", + ["text"] = "#% increased Spell Damage while Dual Wielding", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1766142294", + ["text"] = "#% increased Spell Damage while holding a Shield", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3496944181", + ["text"] = "#% increased Spell Damage while wielding a Staff", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_734614379", + ["text"] = "#% increased Strength", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2517001139", + ["text"] = "#% increased Stun Duration on Enemies", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_680068163", + ["text"] = "#% increased Stun Threshold", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2511217560", + ["text"] = "#% increased Stun and Block Recovery", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_553402472", + ["text"] = "#% increased Total Heist Fee", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3851254963", + ["text"] = "#% increased Totem Damage", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_686254215", + ["text"] = "#% increased Totem Life", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3374165039", + ["text"] = "#% increased Totem Placement speed", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2941585404", + ["text"] = "#% increased Trap Damage", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_502047644", + ["text"] = "#% increased Trap Disarmament Experience gained", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1579578270", + ["text"] = "#% increased Trap Disarmament speed", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2001530951", + ["text"] = "#% increased Trap Duration", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_118398748", + ["text"] = "#% increased Trap Throwing Speed", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_464535071", + ["text"] = "#% increased Trap and Mine Throwing Speed", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2904116257", + ["text"] = "#% increased Travel Fee", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3165492062", + ["text"] = "#% increased Vaal Skill Critical Strike Chance", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3037553757", + ["text"] = "#% increased Warcry Buff Effect", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_4159248054", + ["text"] = "#% increased Warcry Cooldown Recovery Rate", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1316278494", + ["text"] = "#% increased Warcry Speed", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_830161081", + ["text"] = "#% increased Ward", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2891175306", + ["text"] = "#% increased Ward during Effect", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2448920197", + ["text"] = "#% increased effect", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1880071428", + ["text"] = "#% increased effect of Non-Curse Auras from your Skills", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3191479793", + ["text"] = "#% increased effect of Offerings", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2482852589", + ["text"] = "#% increased maximum Energy Shield", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_983749596", + ["text"] = "#% increased maximum Life", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2748665614", + ["text"] = "#% increased maximum Mana", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3873704640", + ["text"] = "#% increased number of Magic Monsters in your Maps", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3793155082", + ["text"] = "#% increased number of Rare Monsters", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3793155082", + ["text"] = "#% increased number of Rare Monsters in your Maps", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2500803699", + ["text"] = "#% increased raising of Alert Level from opening Chests", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2435922859", + ["text"] = "#% increased time before Lockdown", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2633745731", + ["text"] = "#% increased total Recovery per second from Life Leech", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3796523155", + ["text"] = "#% less effect of Curses on Monsters", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2379109976", + ["text"] = "#% more Area of Effect with Bow Attacks that fire a single Projectile", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1506355899", + ["text"] = "#% more Duration", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3452986510", + ["text"] = "#% more Life cost of Skills while on Low Life", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3964669425", + ["text"] = "#% more Mana cost of Lightning Skills while Shocked", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_95249895", + ["text"] = "#% more Monster Life", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_886931978", + ["text"] = "#% more Recovery if used while on Low Life", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1239225602", + ["text"] = "#% of Armour applies to Fire, Cold and Lightning Damage taken from Hits if you have Blocked Recently", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1173558568", + ["text"] = "#% of Attack Damage Leeched as Life during Effect", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_744082851", + ["text"] = "#% of Chaos Damage Leeched as Life", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_334180828", + ["text"] = "#% of Chaos Damage Leeched by Enemy as Life", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1939452467", + ["text"] = "#% of Cold Damage Leeched as Energy Shield", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3999401129", + ["text"] = "#% of Cold Damage Leeched as Life", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3271464175", + ["text"] = "#% of Cold Damage Leeched by Enemy as Life", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3324747104", + ["text"] = "#% of Damage Leeched as Life while Focused", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_297552946", + ["text"] = "#% of Damage Players' Totems take from Hits is taken from their Summoner's Life instead", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_458438597", + ["text"] = "#% of Damage is taken from Mana before Life", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1588539856", + ["text"] = "#% of Damage is taken from Mana before Life while Focused", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1444556985", + ["text"] = "#% of Damage taken Recouped as Life", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_472520716", + ["text"] = "#% of Damage taken Recouped as Mana", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2585984986", + ["text"] = "#% of Damage taken while Frozen Recouped as Life", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3244118730", + ["text"] = "#% of Evasion Rating is Regenerated as Life per second while Focused", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2731249891", + ["text"] = "#% of Fire Damage Converted to Chaos Damage", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3885409671", + ["text"] = "#% of Fire Damage Leeched as Energy Shield", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3848282610", + ["text"] = "#% of Fire Damage Leeched as Life", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1567747544", + ["text"] = "#% of Hit Damage from you and your Minions cannot be Reflected", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2264655303", + ["text"] = "#% of Life Recovery from Flasks is applied to nearby Allies instead of You", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3175722882", + ["text"] = "#% of Life Regenerated per second per Fragile Regrowth", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_80079005", + ["text"] = "#% of Lightning Damage Leeched as Life", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3925004212", + ["text"] = "#% of Lightning Damage Leeched by Enemy as Life", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2458962764", + ["text"] = "#% of Maximum Life Converted to Energy Shield", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3593843976", + ["text"] = "#% of Physical Attack Damage Leeched as Life", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_55876295", + ["text"] = "#% of Physical Attack Damage Leeched as Life (Local)", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3237948413", + ["text"] = "#% of Physical Attack Damage Leeched as Mana", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_669069897", + ["text"] = "#% of Physical Attack Damage Leeched as Mana (Local)", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2693705594", + ["text"] = "#% of Physical Attack Damage Leeched by Enemy as Life", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_407390981", + ["text"] = "#% of Physical Attack Damage Leeched by Enemy as Mana", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_490098963", + ["text"] = "#% of Physical Damage Converted to Chaos Damage", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2133341901", + ["text"] = "#% of Physical Damage Converted to Cold Damage", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1533563525", + ["text"] = "#% of Physical Damage Converted to Fire Damage", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3240769289", + ["text"] = "#% of Physical Damage Converted to Lightning Damage", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3764265320", + ["text"] = "#% of Physical Damage Leeched as Life", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3423022686", + ["text"] = "#% of Physical Damage Leeched by Enemy as Life", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_4129825612", + ["text"] = "#% of Physical Damage from Hits taken as Chaos Damage", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1871056256", + ["text"] = "#% of Physical Damage from Hits taken as Cold Damage", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3342989455", + ["text"] = "#% of Physical Damage from Hits taken as Fire Damage", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_425242359", + ["text"] = "#% of Physical Damage from Hits taken as Lightning Damage", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2503377690", + ["text"] = "#% of Recovery applied Instantly", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1456464057", + ["text"] = "#% of Spell Damage Leeched as Energy Shield during Effect", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2960683632", + ["text"] = "#% reduced Chaos Damage taken", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3762784591", + ["text"] = "#% reduced Chaos Damage taken over time", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3303114033", + ["text"] = "#% reduced Cold Damage taken", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1101403182", + ["text"] = "#% reduced Damage taken from Damage Over Time", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1478653032", + ["text"] = "#% reduced Effect of Chill on you", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2434101731", + ["text"] = "#% reduced Effect of Chill on you during Effect", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3407849389", + ["text"] = "#% reduced Effect of Curses on you", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_4265534424", + ["text"] = "#% reduced Effect of Curses on you during Effect", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3801067695", + ["text"] = "#% reduced Effect of Shock on you", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3859593448", + ["text"] = "#% reduced Elemental Damage Taken while stationary", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2477381238", + ["text"] = "#% reduced Enemy Block Chance", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1443060084", + ["text"] = "#% reduced Enemy Stun Threshold", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1550221644", + ["text"] = "#% reduced Fishing Pool Consumption", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_644456512", + ["text"] = "#% reduced Flask Charges used", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2160282525", + ["text"] = "#% reduced Freeze Duration on you", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_986397080", + ["text"] = "#% reduced Ignite Duration on you", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1276918229", + ["text"] = "#% reduced Lightning Damage taken", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_474294393", + ["text"] = "#% reduced Mana Cost of Skills", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_99927264", + ["text"] = "#% reduced Shock Duration on you", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_4091848539", + ["text"] = "+# Armour if you've Blocked Recently", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3441651621", + ["text"] = "+# Physical Damage taken from Attack Hits", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3255961830", + ["text"] = "+# metre to Melee Strike Range if you have Killed Recently", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2264295449", + ["text"] = "+# metres to Melee Strike Range", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_350598685", + ["text"] = "+# metres to Weapon Range", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3471951849", + ["text"] = "+# seconds to Lockdown Timer", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_803737631", + ["text"] = "+# to Accuracy Rating", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_691932474", + ["text"] = "+# to Accuracy Rating (Local)", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_773731062", + ["text"] = "+# to Accuracy Rating per 2 Dexterity", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2943725337", + ["text"] = "+# to Agility Level for Heists", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_809229260", + ["text"] = "+# to Armour", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3484657501", + ["text"] = "+# to Armour (Local)", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2316658489", + ["text"] = "+# to Armour and Evasion Rating", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1539825365", + ["text"] = "+# to Armour during Soul Gain Prevention", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1169552613", + ["text"] = "+# to Brute Force Level for Heists", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1172162241", + ["text"] = "+# to Character Level", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_4207149030", + ["text"] = "+# to Counter-Thaumaturgy Level for Heists", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_828170926", + ["text"] = "+# to Deception Level for Heists", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2359025380", + ["text"] = "+# to Demolition Level for Heists", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3261801346", + ["text"] = "+# to Dexterity", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2300185227", + ["text"] = "+# to Dexterity and Intelligence", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2978835006", + ["text"] = "+# to Engineering Level for Heists", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2144192055", + ["text"] = "+# to Evasion Rating", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_53045048", + ["text"] = "+# to Evasion Rating (Local)", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_328541901", + ["text"] = "+# to Intelligence", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2551600084", + ["text"] = "+# to Level of Socketed AoE Gems", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2452998583", + ["text"] = "+# to Level of Socketed Aura Gems", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2027269580", + ["text"] = "+# to Level of Socketed Bow Gems", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2675603254", + ["text"] = "+# to Level of Socketed Chaos Gems", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1645459191", + ["text"] = "+# to Level of Socketed Cold Gems", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3691695237", + ["text"] = "+# to Level of Socketed Curse Gems", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2718698372", + ["text"] = "+# to Level of Socketed Dexterity Gems", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_339179093", + ["text"] = "+# to Level of Socketed Fire Gems", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2843100721", + ["text"] = "+# to Level of Socketed Gems", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3298991976", + ["text"] = "+# to Level of Socketed Gems while there is a single Gem Socketed in this Item", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1719423857", + ["text"] = "+# to Level of Socketed Intelligence Gems", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_4043416969", + ["text"] = "+# to Level of Socketed Lightning Gems", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_829382474", + ["text"] = "+# to Level of Socketed Melee Gems", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3604946673", + ["text"] = "+# to Level of Socketed Minion Gems", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2176571093", + ["text"] = "+# to Level of Socketed Projectile Gems", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_524797741", + ["text"] = "+# to Level of Socketed Skill Gems", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_916797432", + ["text"] = "+# to Level of Socketed Strength Gems", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_4154259475", + ["text"] = "+# to Level of Socketed Support Gems", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_150668988", + ["text"] = "+# to Level of Socketed Trap or Mine Gems", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_67169579", + ["text"] = "+# to Level of all Chaos Skill Gems", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_4226189338", + ["text"] = "+# to Level of all Chaos Spell Skill Gems", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1078455967", + ["text"] = "+# to Level of all Cold Skill Gems", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2254480358", + ["text"] = "+# to Level of all Cold Spell Skill Gems", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_599749213", + ["text"] = "+# to Level of all Fire Skill Gems", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_591105508", + ["text"] = "+# to Level of all Fire Spell Skill Gems", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2692578539", + ["text"] = "+# to Level of all Jobs for Heists", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1147690586", + ["text"] = "+# to Level of all Lightning Skill Gems", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1545858329", + ["text"] = "+# to Level of all Lightning Spell Skill Gems", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2162097452", + ["text"] = "+# to Level of all Minion Skill Gems", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_619213329", + ["text"] = "+# to Level of all Physical Skill Gems", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1600707273", + ["text"] = "+# to Level of all Physical Spell Skill Gems", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3235814433", + ["text"] = "+# to Level of all Raise Spectre Gems", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_4283407333", + ["text"] = "+# to Level of all Skill Gems", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_124131830", + ["text"] = "+# to Level of all Spell Skill Gems", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3031310169", + ["text"] = "+# to Lockpicking Level for Heists", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1437957544", + ["text"] = "+# to Maximum Charges", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1515657623", + ["text"] = "+# to Maximum Endurance Charges", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_4078695", + ["text"] = "+# to Maximum Frenzy Charges", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_227523295", + ["text"] = "+# to Maximum Power Charges", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3706959521", + ["text"] = "+# to Minimum Endurance Charges", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_658456881", + ["text"] = "+# to Minimum Frenzy Charges", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1999711879", + ["text"] = "+# to Minimum Power Charges", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2932532516", + ["text"] = "+# to Perception Level for Heists", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_4080418644", + ["text"] = "+# to Strength", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_538848803", + ["text"] = "+# to Strength and Dexterity", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1535626285", + ["text"] = "+# to Strength and Intelligence", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3736589033", + ["text"] = "+# to Total Mana Cost of Skills", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_555061211", + ["text"] = "+# to Trap Disarmament Level for Heists", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_774059442", + ["text"] = "+# to Ward", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1379411836", + ["text"] = "+# to all Attributes", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3489782002", + ["text"] = "+# to maximum Energy Shield", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_4052037485", + ["text"] = "+# to maximum Energy Shield (Local)", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_335507772", + ["text"] = "+# to maximum Fortification", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_922014346", + ["text"] = "+# to maximum Fortification while Focused", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3299347043", + ["text"] = "+# to maximum Life", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1050105434", + ["text"] = "+# to maximum Mana", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3822999954", + ["text"] = "+# to maximum Mana per 2 Intelligence", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_966747987", + ["text"] = "+# to maximum number of Raised Zombies", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1225383362", + ["text"] = "+# to maximum number of Skeletons", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_125218179", + ["text"] = "+# to maximum number of Spectres", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_429867172", + ["text"] = "+# to maximum number of Summoned Totems", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_4253454700", + ["text"] = "+#% Chance to Block (Shields)", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1214532298", + ["text"] = "+#% Chance to Block Attack Damage if there are at least 5 nearby Enemies", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3789765926", + ["text"] = "+#% Chance to Block Attack Damage if you have Blocked Attack Damage Recently", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_852195286", + ["text"] = "+#% Chance to Block Attack Damage if you were Damaged by a Hit Recently", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3039589351", + ["text"] = "+#% Chance to Block Attack Damage per Endurance Charge", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2166444903", + ["text"] = "+#% Chance to Block Attack Damage while Dual Wielding", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_4061558269", + ["text"] = "+#% Chance to Block Attack Damage while holding a Shield", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1778298516", + ["text"] = "+#% Chance to Block Attack Damage while wielding a Staff", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1001829678", + ["text"] = "+#% Chance to Block Attack Damage while wielding a Staff (Staves)", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_4263513561", + ["text"] = "+#% Chance to Block Spell Damage if you have Blocked Spell Damage Recently", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1101206134", + ["text"] = "+#% Chance to Block Spell Damage if you were Damaged by a Hit Recently", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_138741818", + ["text"] = "+#% Chance to Block Spell Damage while Dual Wielding", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_938645499", + ["text"] = "+#% Chance to Block Spell Damage while holding a Shield", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2253286128", + ["text"] = "+#% Chance to Block Spell Damage while on Low Life", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2120297997", + ["text"] = "+#% Chance to Block Spell Damage while wielding a Staff", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3992439283", + ["text"] = "+#% Critical Strike Multiplier while a Rare or Unique Enemy is Nearby", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_365540634", + ["text"] = "+#% Monster Chaos Resistance", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1054098949", + ["text"] = "+#% Monster Elemental Resistances", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_918170065", + ["text"] = "+#% Monster Mana Leech Resistance", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_839186746", + ["text"] = "+#% Monster Physical Damage Reduction", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2916448124", + ["text"] = "+#% Player Cold Resistance per 25% Alert Level", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1318683911", + ["text"] = "+#% Player Fire Resistance per 25% Alert Level", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3839688967", + ["text"] = "+#% Player Lightning Resistance per 25% Alert Level", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3416410609", + ["text"] = "+#% chance to Block Projectile Attack Damage", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2021058489", + ["text"] = "+#% chance to Evade Attack Hits", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3680664274", + ["text"] = "+#% chance to Suppress Spell Damage", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_492027537", + ["text"] = "+#% chance to Suppress Spell Damage", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_652638686", + ["text"] = "+#% maximum Player Resistances per 25% Alert Level", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2016723660", + ["text"] = "+#% to All Resistances", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_4055307827", + ["text"] = "+#% to Chaos Damage over Time Multiplier", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3913282911", + ["text"] = "+#% to Chaos Damage over Time Multiplier with Attack Skills", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2923486259", + ["text"] = "+#% to Chaos Resistance", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_392168009", + ["text"] = "+#% to Chaos Resistance during any Flask Effect", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1950806024", + ["text"] = "+#% to Cold Damage over Time Multiplier", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_4220027924", + ["text"] = "+#% to Cold Resistance", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3393628375", + ["text"] = "+#% to Cold and Chaos Resistances", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_4277795662", + ["text"] = "+#% to Cold and Lightning Resistances", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2355615476", + ["text"] = "+#% to Critical Strike Multiplier against Enemies that are on Full Life", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_274716455", + ["text"] = "+#% to Critical Strike Multiplier for Spell Damage", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3527458221", + ["text"] = "+#% to Critical Strike Multiplier if you have Blocked Recently", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1478247313", + ["text"] = "+#% to Critical Strike Multiplier if you haven't dealt a Critical Strike Recently", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2937483991", + ["text"] = "+#% to Critical Strike Multiplier if you've Killed Recently", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_536929014", + ["text"] = "+#% to Critical Strike Multiplier if you've Shattered an Enemy Recently", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2546185479", + ["text"] = "+#% to Critical Strike Multiplier while Dual Wielding", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3128272024", + ["text"] = "+#% to Critical Strike Multiplier while area is not in Lockdown Players have +#% to Critical Strike Multiplier while area is not in Lockdown", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1712221299", + ["text"] = "+#% to Critical Strike Multiplier with Bows", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_915908446", + ["text"] = "+#% to Critical Strike Multiplier with Cold Skills", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1569407745", + ["text"] = "+#% to Critical Strike Multiplier with Elemental Skills", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2307547323", + ["text"] = "+#% to Critical Strike Multiplier with Fire Skills", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2441475928", + ["text"] = "+#% to Critical Strike Multiplier with Lightning Skills", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_670153687", + ["text"] = "+#% to Critical Strike Multiplier with One Handed Melee Weapons", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_252507949", + ["text"] = "+#% to Critical Strike Multiplier with Two Handed Melee Weapons", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3988349707", + ["text"] = "+#% to Damage over Time Multiplier", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_951608773", + ["text"] = "+#% to Damage over Time Multiplier for Bleeding from Hits with this Weapon", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_4096656097", + ["text"] = "+#% to Damage over Time Multiplier for Poison inflicted with this Weapon", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_693959086", + ["text"] = "+#% to Damage over Time Multiplier with Attack Skills", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3382807662", + ["text"] = "+#% to Fire Damage over Time Multiplier", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2139660169", + ["text"] = "+#% to Fire Damage over Time Multiplier with Attack Skills", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3372524247", + ["text"] = "+#% to Fire Resistance", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_378817135", + ["text"] = "+#% to Fire and Chaos Resistances", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2915988346", + ["text"] = "+#% to Fire and Cold Resistances", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3441501978", + ["text"] = "+#% to Fire and Lightning Resistances", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3556824919", + ["text"] = "+#% to Global Critical Strike Multiplier", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1671376347", + ["text"] = "+#% to Lightning Resistance", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3465022881", + ["text"] = "+#% to Lightning and Chaos Resistances", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_4237442815", + ["text"] = "+#% to Melee Critical Strike Multiplier", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_57326096", + ["text"] = "+#% to Monster Critical Strike Multiplier", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1653010703", + ["text"] = "+#% to Non-Ailment Chaos Damage over Time Multiplier", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1314617696", + ["text"] = "+#% to Physical Damage over Time Multiplier", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_709768359", + ["text"] = "+#% to Physical Damage over Time Multiplier with Attack Skills", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2016708976", + ["text"] = "+#% to Quality", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3828613551", + ["text"] = "+#% to Quality of Socketed Gems", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1328548975", + ["text"] = "+#% to Quality of Socketed Support Gems", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_791835907", + ["text"] = "+#% to Spell Critical Strike Chance", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2901986750", + ["text"] = "+#% to all Elemental Resistances", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_569299859", + ["text"] = "+#% to all maximum Resistances", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_4124805414", + ["text"] = "+#% to maximum Chance to Block Attack Damage", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2388574377", + ["text"] = "+#% to maximum Chance to Block Spell Damage", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1301765461", + ["text"] = "+#% to maximum Chaos Resistance", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3676141501", + ["text"] = "+#% to maximum Cold Resistance", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_4095671657", + ["text"] = "+#% to maximum Fire Resistance", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1011760251", + ["text"] = "+#% to maximum Lightning Resistance", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_4022743870", + ["text"] = "1 Added Passive Skill is Adrenaline", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1625939562", + ["text"] = "1 Added Passive Skill is Advance Guard", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3848677307", + ["text"] = "1 Added Passive Skill is Aerialist", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_4120556534", + ["text"] = "1 Added Passive Skill is Aerodynamics", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3122491961", + ["text"] = "1 Added Passive Skill is Agent of Destruction", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_4154008618", + ["text"] = "1 Added Passive Skill is Aggressive Defence", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2912949210", + ["text"] = "1 Added Passive Skill is Alchemist", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_957679205", + ["text"] = "1 Added Passive Skill is Ancestral Echo", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2387747995", + ["text"] = "1 Added Passive Skill is Ancestral Guidance", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_77045106", + ["text"] = "1 Added Passive Skill is Ancestral Inspiration", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3998316", + ["text"] = "1 Added Passive Skill is Ancestral Might", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3746703776", + ["text"] = "1 Added Passive Skill is Ancestral Preservation", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3294884567", + ["text"] = "1 Added Passive Skill is Ancestral Reach", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2622946553", + ["text"] = "1 Added Passive Skill is Antifreeze", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_774369953", + ["text"] = "1 Added Passive Skill is Antivenom", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_393565679", + ["text"] = "1 Added Passive Skill is Arcane Adept", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3901992019", + ["text"] = "1 Added Passive Skill is Arcane Heroism", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2043503530", + ["text"] = "1 Added Passive Skill is Arcane Pyrotechnics", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3212859169", + ["text"] = "1 Added Passive Skill is Arcing Shot", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_4222265138", + ["text"] = "1 Added Passive Skill is Assert Dominance", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2428334013", + ["text"] = "1 Added Passive Skill is Astonishing Affliction", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3084359503", + ["text"] = "1 Added Passive Skill is Basics of Pain", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_4188581520", + ["text"] = "1 Added Passive Skill is Battle-Hardened", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1499057234", + ["text"] = "1 Added Passive Skill is Battlefield Dominator", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1127706436", + ["text"] = "1 Added Passive Skill is Blacksmith", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1085167979", + ["text"] = "1 Added Passive Skill is Blanketed Snow", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_693808153", + ["text"] = "1 Added Passive Skill is Blast-Freeze", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_775689239", + ["text"] = "1 Added Passive Skill is Blessed", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1424794574", + ["text"] = "1 Added Passive Skill is Blessed Rebirth", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3758712376", + ["text"] = "1 Added Passive Skill is Blizzard Caller", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2284771334", + ["text"] = "1 Added Passive Skill is Blood Artist", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3967765261", + ["text"] = "1 Added Passive Skill is Bloodscent", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1612414696", + ["text"] = "1 Added Passive Skill is Blowback", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_791125124", + ["text"] = "1 Added Passive Skill is Bodyguards", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2449392400", + ["text"] = "1 Added Passive Skill is Born of Chaos", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3198006994", + ["text"] = "1 Added Passive Skill is Brand Loyalty", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3250272113", + ["text"] = "1 Added Passive Skill is Brewed for Potency", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2205982416", + ["text"] = "1 Added Passive Skill is Broadside", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2900833792", + ["text"] = "1 Added Passive Skill is Brush with Death", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2068574831", + ["text"] = "1 Added Passive Skill is Brutal Infamy", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2008682345", + ["text"] = "1 Added Passive Skill is Burden Projection", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_4199056048", + ["text"] = "1 Added Passive Skill is Burning Bright", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3359207393", + ["text"] = "1 Added Passive Skill is Calamitous", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3317068522", + ["text"] = "1 Added Passive Skill is Call to the Slaughter", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_4025536654", + ["text"] = "1 Added Passive Skill is Capacitor", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_456502758", + ["text"] = "1 Added Passive Skill is Careful Handling", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2834490860", + ["text"] = "1 Added Passive Skill is Chilling Presence", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_968069586", + ["text"] = "1 Added Passive Skill is Chip Away", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2129392647", + ["text"] = "1 Added Passive Skill is Circling Oblivion", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_684087686", + ["text"] = "1 Added Passive Skill is Clarity of Purpose", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1274505521", + ["text"] = "1 Added Passive Skill is Cold Conduction", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_744783843", + ["text"] = "1 Added Passive Skill is Cold to the Core", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_836566759", + ["text"] = "1 Added Passive Skill is Cold-Blooded Killer", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3122505794", + ["text"] = "1 Added Passive Skill is Combat Rhythm", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_4018305528", + ["text"] = "1 Added Passive Skill is Compound Injury", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3930242735", + ["text"] = "1 Added Passive Skill is Confident Combatant", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_4105031548", + ["text"] = "1 Added Passive Skill is Conjured Wall", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2083777017", + ["text"] = "1 Added Passive Skill is Conservation of Energy", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2938895712", + ["text"] = "1 Added Passive Skill is Cooked Alive", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1777139212", + ["text"] = "1 Added Passive Skill is Corrosive Elements", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1153801980", + ["text"] = "1 Added Passive Skill is Cremator", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1821748178", + ["text"] = "1 Added Passive Skill is Cry Wolf", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2026112251", + ["text"] = "1 Added Passive Skill is Cult-Leader", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2534405517", + ["text"] = "1 Added Passive Skill is Daring Ideas", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1603621602", + ["text"] = "1 Added Passive Skill is Dark Ideation", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3784610129", + ["text"] = "1 Added Passive Skill is Dark Messenger", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_846491278", + ["text"] = "1 Added Passive Skill is Darting Movements", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1013470938", + ["text"] = "1 Added Passive Skill is Deadly Repartee", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1703766309", + ["text"] = "1 Added Passive Skill is Deep Chill", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_410939404", + ["text"] = "1 Added Passive Skill is Deep Cuts", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3860179422", + ["text"] = "1 Added Passive Skill is Destructive Aspect", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3711553948", + ["text"] = "1 Added Passive Skill is Devastator", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3177526694", + ["text"] = "1 Added Passive Skill is Disciples", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_183591019", + ["text"] = "1 Added Passive Skill is Disease Vector", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3206911230", + ["text"] = "1 Added Passive Skill is Disorienting Display", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3351136461", + ["text"] = "1 Added Passive Skill is Disorienting Wounds", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3652138990", + ["text"] = "1 Added Passive Skill is Distilled Perfection", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1381945089", + ["text"] = "1 Added Passive Skill is Doedre's Apathy", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2695848124", + ["text"] = "1 Added Passive Skill is Doedre's Gluttony", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_462115791", + ["text"] = "1 Added Passive Skill is Doedre's Spite", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_228455793", + ["text"] = "1 Added Passive Skill is Doryani's Lesson", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1038955006", + ["text"] = "1 Added Passive Skill is Dragon Hunter", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3087667389", + ["text"] = "1 Added Passive Skill is Dread March", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1911162866", + ["text"] = "1 Added Passive Skill is Drive the Destruction", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3737604164", + ["text"] = "1 Added Passive Skill is Eldritch Inspiration", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3950683692", + ["text"] = "1 Added Passive Skill is Electric Presence", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_289714529", + ["text"] = "1 Added Passive Skill is Elegant Form", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2032453153", + ["text"] = "1 Added Passive Skill is Empowered Envoy", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2150878631", + ["text"] = "1 Added Passive Skill is Endbringer", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2043284086", + ["text"] = "1 Added Passive Skill is Enduring Composure", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2522970386", + ["text"] = "1 Added Passive Skill is Enduring Focus", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_252724319", + ["text"] = "1 Added Passive Skill is Enduring Ward", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2195518432", + ["text"] = "1 Added Passive Skill is Energy From Naught", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1096136223", + ["text"] = "1 Added Passive Skill is Essence Rush", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2144634814", + ["text"] = "1 Added Passive Skill is Eternal Suffering", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_156080652", + ["text"] = "1 Added Passive Skill is Evil Eye", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_4291066912", + ["text"] = "1 Added Passive Skill is Evil Eye", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_394918362", + ["text"] = "1 Added Passive Skill is Expansive Might", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2020075345", + ["text"] = "1 Added Passive Skill is Expendability", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2084371547", + ["text"] = "1 Added Passive Skill is Expert Sabotage", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_50129423", + ["text"] = "1 Added Passive Skill is Exploit Weakness", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2017927451", + ["text"] = "1 Added Passive Skill is Explosive Force", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_131358113", + ["text"] = "1 Added Passive Skill is Exposure Therapy", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3818661553", + ["text"] = "1 Added Passive Skill is Eye of the Storm", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_392942015", + ["text"] = "1 Added Passive Skill is Eye to Eye", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2484082827", + ["text"] = "1 Added Passive Skill is Fan of Blades", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2918755450", + ["text"] = "1 Added Passive Skill is Fan the Flames", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_37078857", + ["text"] = "1 Added Passive Skill is Fasting", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3134222965", + ["text"] = "1 Added Passive Skill is Fearsome Warrior", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2396755365", + ["text"] = "1 Added Passive Skill is Feast of Flesh", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_383245807", + ["text"] = "1 Added Passive Skill is Feasting Fiends", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3944525413", + ["text"] = "1 Added Passive Skill is Feed the Fury", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1353571444", + ["text"] = "1 Added Passive Skill is Fettle", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3233538204", + ["text"] = "1 Added Passive Skill is Fiery Aegis", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3188756614", + ["text"] = "1 Added Passive Skill is Fire Attunement", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_982290947", + ["text"] = "1 Added Passive Skill is Flexible Sentry", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2350430215", + ["text"] = "1 Added Passive Skill is Flow of Life", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3984980429", + ["text"] = "1 Added Passive Skill is Follow-Through", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2454339320", + ["text"] = "1 Added Passive Skill is Forbidden Words", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1904581068", + ["text"] = "1 Added Passive Skill is Force Multiplier", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_792262925", + ["text"] = "1 Added Passive Skill is Frantic Aspect", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3599340381", + ["text"] = "1 Added Passive Skill is Fuel the Fight", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3415827027", + ["text"] = "1 Added Passive Skill is Furious Assault", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2763732093", + ["text"] = "1 Added Passive Skill is Genius", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1591995797", + ["text"] = "1 Added Passive Skill is Gladiator's Fortitude", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1543731719", + ["text"] = "1 Added Passive Skill is Gladiatorial Combat", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1903496649", + ["text"] = "1 Added Passive Skill is Graceful Execution", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2350900742", + ["text"] = "1 Added Passive Skill is Grand Design", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2194205899", + ["text"] = "1 Added Passive Skill is Grim Oath", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1882129725", + ["text"] = "1 Added Passive Skill is Guerilla Tactics", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_72129119", + ["text"] = "1 Added Passive Skill is Haemorrhage", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1080363357", + ["text"] = "1 Added Passive Skill is Haunting Shout", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1483358825", + ["text"] = "1 Added Passive Skill is Heart of Iron", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3640252904", + ["text"] = "1 Added Passive Skill is Heavy Hitter", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3274270612", + ["text"] = "1 Added Passive Skill is Heraldry", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2341828832", + ["text"] = "1 Added Passive Skill is Hex Breaker", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2294919888", + ["text"] = "1 Added Passive Skill is Hibernator", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2665170385", + ["text"] = "1 Added Passive Skill is Hit and Run", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3667965781", + ["text"] = "1 Added Passive Skill is Holistic Health", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3898572660", + ["text"] = "1 Added Passive Skill is Holy Conquest", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3697635701", + ["text"] = "1 Added Passive Skill is Holy Word", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_555800967", + ["text"] = "1 Added Passive Skill is Hound's Mark", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3467711950", + ["text"] = "1 Added Passive Skill is Hulking Corpses", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_810219447", + ["text"] = "1 Added Passive Skill is Improvisor", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3904970959", + ["text"] = "1 Added Passive Skill is Insatiable Killer", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3872380586", + ["text"] = "1 Added Passive Skill is Inspired Oppression", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_212648555", + ["text"] = "1 Added Passive Skill is Insulated", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2785835061", + ["text"] = "1 Added Passive Skill is Intensity", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1309218394", + ["text"] = "1 Added Passive Skill is Introspection", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2262034536", + ["text"] = "1 Added Passive Skill is Invigorating Portents", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3258653591", + ["text"] = "1 Added Passive Skill is Iron Breaker", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_426715778", + ["text"] = "1 Added Passive Skill is Lasting Impression", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2195406641", + ["text"] = "1 Added Passive Skill is Lead By Example", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2337273077", + ["text"] = "1 Added Passive Skill is Life from Death", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1094635162", + ["text"] = "1 Added Passive Skill is Liquid Inspiration", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2055715585", + ["text"] = "1 Added Passive Skill is Lord of Drought", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3989400244", + ["text"] = "1 Added Passive Skill is Low Tolerance", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_684155617", + ["text"] = "1 Added Passive Skill is Mage Bane", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2118664144", + ["text"] = "1 Added Passive Skill is Mage Hunter", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2886441936", + ["text"] = "1 Added Passive Skill is Magnifier", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1015189426", + ["text"] = "1 Added Passive Skill is Martial Mastery", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2978494217", + ["text"] = "1 Added Passive Skill is Martial Momentum", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1152182658", + ["text"] = "1 Added Passive Skill is Martial Prowess", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3257074218", + ["text"] = "1 Added Passive Skill is Master of Command", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2771217016", + ["text"] = "1 Added Passive Skill is Master of Fear", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1462135249", + ["text"] = "1 Added Passive Skill is Master of Fire", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_185592058", + ["text"] = "1 Added Passive Skill is Master of the Maelstrom", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3585232432", + ["text"] = "1 Added Passive Skill is Master the Fundamentals", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_4291434923", + ["text"] = "1 Added Passive Skill is Mender's Wellspring", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_4154709486", + ["text"] = "1 Added Passive Skill is Militarism", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2595115995", + ["text"] = "1 Added Passive Skill is Mindfulness", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3832665876", + ["text"] = "1 Added Passive Skill is Misery Everlasting", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1048879642", + ["text"] = "1 Added Passive Skill is Mob Mentality", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3875792669", + ["text"] = "1 Added Passive Skill is Molten One's Mark", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3881737087", + ["text"] = "1 Added Passive Skill is Mortifying Aspect", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2314111938", + ["text"] = "1 Added Passive Skill is Mystical Ward", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_510654792", + ["text"] = "1 Added Passive Skill is Natural Vigour", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1722480396", + ["text"] = "1 Added Passive Skill is No Witnesses", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_731840035", + ["text"] = "1 Added Passive Skill is Non-Flammable", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1028754276", + ["text"] = "1 Added Passive Skill is Numbing Elixir", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1976069869", + ["text"] = "1 Added Passive Skill is One with the Shield", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_633943719", + ["text"] = "1 Added Passive Skill is Openness", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_4281625943", + ["text"] = "1 Added Passive Skill is Opportunistic Fusilade", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2250169390", + ["text"] = "1 Added Passive Skill is Overlord", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3777170562", + ["text"] = "1 Added Passive Skill is Overshock", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_770408103", + ["text"] = "1 Added Passive Skill is Overwhelming Malice", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_4272503233", + ["text"] = "1 Added Passive Skill is Paralysis", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1734275536", + ["text"] = "1 Added Passive Skill is Peace Amidst Chaos", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1722821275", + ["text"] = "1 Added Passive Skill is Peak Vigour", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3057154383", + ["text"] = "1 Added Passive Skill is Phlebotomist", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1005475168", + ["text"] = "1 Added Passive Skill is Powerful Assault", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_164032122", + ["text"] = "1 Added Passive Skill is Powerful Ward", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3435403756", + ["text"] = "1 Added Passive Skill is Practiced Caster", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2913581789", + ["text"] = "1 Added Passive Skill is Precise Focus", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2335364359", + ["text"] = "1 Added Passive Skill is Precise Retaliation", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3391925584", + ["text"] = "1 Added Passive Skill is Pressure Points", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_622362787", + ["text"] = "1 Added Passive Skill is Primordial Bond", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3492924480", + ["text"] = "1 Added Passive Skill is Prismatic Carapace", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1149662934", + ["text"] = "1 Added Passive Skill is Prismatic Dance", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2342448236", + ["text"] = "1 Added Passive Skill is Prismatic Heart", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1705633890", + ["text"] = "1 Added Passive Skill is Prodigious Defence", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_814369372", + ["text"] = "1 Added Passive Skill is Provocateur", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1507409483", + ["text"] = "1 Added Passive Skill is Pure Agony", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3509724289", + ["text"] = "1 Added Passive Skill is Pure Aptitude", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1621496909", + ["text"] = "1 Added Passive Skill is Pure Guile", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2372915005", + ["text"] = "1 Added Passive Skill is Pure Might", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_507505131", + ["text"] = "1 Added Passive Skill is Purposeful Harbinger", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1626818279", + ["text"] = "1 Added Passive Skill is Quick Getaway", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2169345147", + ["text"] = "1 Added Passive Skill is Quick and Deadly", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_4288473380", + ["text"] = "1 Added Passive Skill is Rattling Bellow", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1038897629", + ["text"] = "1 Added Passive Skill is Raze and Pillage", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_845306697", + ["text"] = "1 Added Passive Skill is Readiness", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_691431951", + ["text"] = "1 Added Passive Skill is Remarkable", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_4263287206", + ["text"] = "1 Added Passive Skill is Rend", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3607300552", + ["text"] = "1 Added Passive Skill is Renewal", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2233272527", + ["text"] = "1 Added Passive Skill is Repeater", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1496043857", + ["text"] = "1 Added Passive Skill is Replenishing Presence", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2620267328", + ["text"] = "1 Added Passive Skill is Righteous Path", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_254194892", + ["text"] = "1 Added Passive Skill is Riot Queller", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_713945233", + ["text"] = "1 Added Passive Skill is Rot-Resistant", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2478282326", + ["text"] = "1 Added Passive Skill is Rote Reinforcement", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2289610642", + ["text"] = "1 Added Passive Skill is Rotten Claws", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1488030420", + ["text"] = "1 Added Passive Skill is Run Through", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3638731729", + ["text"] = "1 Added Passive Skill is Sadist", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_478147593", + ["text"] = "1 Added Passive Skill is Sage", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_715786975", + ["text"] = "1 Added Passive Skill is Sap Psyche", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_4222635921", + ["text"] = "1 Added Passive Skill is Savage Response", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3539175001", + ["text"] = "1 Added Passive Skill is Savour the Moment", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2589589781", + ["text"] = "1 Added Passive Skill is Scintillating Idea", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_876846990", + ["text"] = "1 Added Passive Skill is Seal Mender", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2773515950", + ["text"] = "1 Added Passive Skill is Second Skin", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2261237498", + ["text"] = "1 Added Passive Skill is Seeker Runes", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3025453294", + ["text"] = "1 Added Passive Skill is Self-Control", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2644533453", + ["text"] = "1 Added Passive Skill is Self-Fulfilling Prophecy", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_4290522695", + ["text"] = "1 Added Passive Skill is Septic Spells", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1101250813", + ["text"] = "1 Added Passive Skill is Set and Forget", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1476913894", + ["text"] = "1 Added Passive Skill is Shifting Shadow", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2783012144", + ["text"] = "1 Added Passive Skill is Shrieking Bolts", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1290215329", + ["text"] = "1 Added Passive Skill is Skeletal Atrophy", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_315697256", + ["text"] = "1 Added Passive Skill is Skullbreaker", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3993957711", + ["text"] = "1 Added Passive Skill is Sleepless Sentries", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_540300548", + ["text"] = "1 Added Passive Skill is Smite the Weak", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2322980282", + ["text"] = "1 Added Passive Skill is Smoking Remains", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3319205340", + ["text"] = "1 Added Passive Skill is Snaring Spirits", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1595367309", + ["text"] = "1 Added Passive Skill is Snowstorm", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_4235300427", + ["text"] = "1 Added Passive Skill is Special Reserve", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3372255769", + ["text"] = "1 Added Passive Skill is Spiked Concoction", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1134501245", + ["text"] = "1 Added Passive Skill is Spiteful Presence", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3603695769", + ["text"] = "1 Added Passive Skill is Spring Back", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3500334379", + ["text"] = "1 Added Passive Skill is Steady Torment", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1088949570", + ["text"] = "1 Added Passive Skill is Stoic Focus", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2087561637", + ["text"] = "1 Added Passive Skill is Storm Drinker", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1122051203", + ["text"] = "1 Added Passive Skill is Storm's Hand", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_889728548", + ["text"] = "1 Added Passive Skill is Stormrider", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1397498432", + ["text"] = "1 Added Passive Skill is Streamlined", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_282062371", + ["text"] = "1 Added Passive Skill is Strike Leader", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2383914651", + ["text"] = "1 Added Passive Skill is Stubborn Student", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3202667190", + ["text"] = "1 Added Passive Skill is Student of Decay", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2251304016", + ["text"] = "1 Added Passive Skill is Sublime Form", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1364858171", + ["text"] = "1 Added Passive Skill is Sublime Sensation", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3226074658", + ["text"] = "1 Added Passive Skill is Supercharge", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3410752193", + ["text"] = "1 Added Passive Skill is Surefooted Striker", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2410501331", + ["text"] = "1 Added Passive Skill is Surging Vitality", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3051562738", + ["text"] = "1 Added Passive Skill is Surprise Sabotage", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2631806437", + ["text"] = "1 Added Passive Skill is Tempered Arrowheads", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_348883745", + ["text"] = "1 Added Passive Skill is Tempt the Storm", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_177215332", + ["text"] = "1 Added Passive Skill is Thaumophage", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1741700339", + ["text"] = "1 Added Passive Skill is Thunderstruck", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2930275641", + ["text"] = "1 Added Passive Skill is Titanic Swings", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2780712583", + ["text"] = "1 Added Passive Skill is Touch of Cruelty", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3536778624", + ["text"] = "1 Added Passive Skill is Towering Threat", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_382360671", + ["text"] = "1 Added Passive Skill is Uncompromising", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_4186213466", + ["text"] = "1 Added Passive Skill is Unholy Grace", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1570474940", + ["text"] = "1 Added Passive Skill is Unrestrained Focus", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_729163974", + ["text"] = "1 Added Passive Skill is Unspeakable Gifts", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2758966888", + ["text"] = "1 Added Passive Skill is Untouchable", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_367638058", + ["text"] = "1 Added Passive Skill is Unwavering Focus", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2788982914", + ["text"] = "1 Added Passive Skill is Unwaveringly Evil", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1996576560", + ["text"] = "1 Added Passive Skill is Vast Power", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_664010431", + ["text"] = "1 Added Passive Skill is Veteran Defender", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_882876854", + ["text"] = "1 Added Passive Skill is Vicious Bite", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_4054656914", + ["text"] = "1 Added Passive Skill is Vicious Guard", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_567971948", + ["text"] = "1 Added Passive Skill is Vicious Skewering", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1936135020", + ["text"] = "1 Added Passive Skill is Victim Maker", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_647201233", + ["text"] = "1 Added Passive Skill is Vile Reinvigoration", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2134141047", + ["text"] = "1 Added Passive Skill is Vital Focus", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3957006524", + ["text"] = "1 Added Passive Skill is Vivid Hues", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2350668735", + ["text"] = "1 Added Passive Skill is Volatile Presence", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1363668533", + ["text"] = "1 Added Passive Skill is Wall of Muscle", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_578355556", + ["text"] = "1 Added Passive Skill is Warning Call", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2066820199", + ["text"] = "1 Added Passive Skill is Wasting Affliction", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2244243943", + ["text"] = "1 Added Passive Skill is Weight Advantage", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1616734644", + ["text"] = "1 Added Passive Skill is Wicked Pall", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1678643716", + ["text"] = "1 Added Passive Skill is Widespread Destruction", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1162352537", + ["text"] = "1 Added Passive Skill is Will Shaper", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1938661964", + ["text"] = "1 Added Passive Skill is Wind-up", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_755881431", + ["text"] = "1 Added Passive Skill is Winter Prowler", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_608164368", + ["text"] = "1 Added Passive Skill is Wish for Death", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3078065247", + ["text"] = "1 Added Passive Skill is Wizardry", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_69078820", + ["text"] = "1 Added Passive Skill is Wound Aggravation", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_241783558", + ["text"] = "1 Added Passive Skill is Wrapped in Flame", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_679194784", + ["text"] = "1% increased Damage per # Strength when in Main Hand", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_4260403588", + ["text"] = "1% increased Rarity of Items found per # Rampage Kills", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_383557755", + ["text"] = "Acrobatics", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_713280739", + ["text"] = "Added Small Passive Skills also grant: #% increased Area of Effect", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2642917409", + ["text"] = "Added Small Passive Skills also grant: #% increased Area of Effect of Aura Skills", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2138819920", + ["text"] = "Added Small Passive Skills also grant: #% increased Area of Effect of Hex Skills", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1411310186", + ["text"] = "Added Small Passive Skills also grant: #% increased Attack Speed", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3262895685", + ["text"] = "Added Small Passive Skills also grant: #% increased Attack and Cast Speed while affected by a Herald", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3692167527", + ["text"] = "Added Small Passive Skills also grant: #% increased Attack and Cast Speed with Chaos Skills", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2054530657", + ["text"] = "Added Small Passive Skills also grant: #% increased Attack and Cast Speed with Cold Skills", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2699118751", + ["text"] = "Added Small Passive Skills also grant: #% increased Attack and Cast Speed with Elemental Skills", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1849042097", + ["text"] = "Added Small Passive Skills also grant: #% increased Attack and Cast Speed with Fire Skills", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_201731102", + ["text"] = "Added Small Passive Skills also grant: #% increased Attack and Cast Speed with Lightning Skills", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1903097619", + ["text"] = "Added Small Passive Skills also grant: #% increased Attack and Cast Speed with Physical Skills", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2265469693", + ["text"] = "Added Small Passive Skills also grant: #% increased Brand Attachment range", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1195353227", + ["text"] = "Added Small Passive Skills also grant: #% increased Cast Speed", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1719521705", + ["text"] = "Added Small Passive Skills also grant: #% increased Damage", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2401834120", + ["text"] = "Added Small Passive Skills also grant: #% increased Damage over Time", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3338465330", + ["text"] = "Added Small Passive Skills also grant: #% increased Duration of Elemental Ailments on Enemies", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3187805501", + ["text"] = "Added Small Passive Skills also grant: #% increased Flask Charges gained", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2474836297", + ["text"] = "Added Small Passive Skills also grant: #% increased Mana Regeneration Rate", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_679080252", + ["text"] = "Added Small Passive Skills also grant: #% increased Projectile Speed", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1588674629", + ["text"] = "Added Small Passive Skills also grant: #% increased Totem Placement speed", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2135246244", + ["text"] = "Added Small Passive Skills also grant: #% increased Trap and Mine Throwing Speed", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2596487673", + ["text"] = "Added Small Passive Skills also grant: #% increased Warcry Duration", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_4036575250", + ["text"] = "Added Small Passive Skills also grant: +# to All Attributes", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2554466725", + ["text"] = "Added Small Passive Skills also grant: +# to Armour", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2090413987", + ["text"] = "Added Small Passive Skills also grant: +# to Dexterity", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_4100161067", + ["text"] = "Added Small Passive Skills also grant: +# to Evasion", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_724930776", + ["text"] = "Added Small Passive Skills also grant: +# to Intelligence", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2643685329", + ["text"] = "Added Small Passive Skills also grant: +# to Maximum Energy Shield", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3819827377", + ["text"] = "Added Small Passive Skills also grant: +# to Maximum Life", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3994193163", + ["text"] = "Added Small Passive Skills also grant: +# to Maximum Mana", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3258414199", + ["text"] = "Added Small Passive Skills also grant: +# to Strength", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1811604576", + ["text"] = "Added Small Passive Skills also grant: +#% to Chaos Resistance", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2709692542", + ["text"] = "Added Small Passive Skills also grant: +#% to Cold Resistance", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1926135629", + ["text"] = "Added Small Passive Skills also grant: +#% to Critical Strike Multiplier", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1790411851", + ["text"] = "Added Small Passive Skills also grant: +#% to Fire Resistance", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2250780084", + ["text"] = "Added Small Passive Skills also grant: +#% to Lightning Resistance", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2669029667", + ["text"] = "Added Small Passive Skills also grant: +#% to all Elemental Resistances", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3799759054", + ["text"] = "Added Small Passive Skills also grant: Channelling Skills have #% increased Attack and Cast Speed", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_542238572", + ["text"] = "Added Small Passive Skills also grant: Minions Regenerate #% of Life per Second", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2310019673", + ["text"] = "Added Small Passive Skills also grant: Minions have #% increased Attack and Cast Speed", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1948127742", + ["text"] = "Added Small Passive Skills also grant: Minions have #% increased Attack and Cast Speed while you are affected by a Herald", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3721672021", + ["text"] = "Added Small Passive Skills also grant: Regenerate #% of Life per Second", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2618549697", + ["text"] = "Added Small Passive Skills have #% increased Effect", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3408048164", + ["text"] = "Adds # minimum Cold Damage to Spells per Power Charge", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2223678961", + ["text"] = "Adds # to # Chaos Damage (Local)", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2523334466", + ["text"] = "Adds # to # Chaos Damage if you've dealt a Critical Strike Recently", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_674553446", + ["text"] = "Adds # to # Chaos Damage to Attacks", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_385361774", + ["text"] = "Adds # to # Chaos Damage to Attacks against you", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2300399854", + ["text"] = "Adds # to # Chaos Damage to Spells", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2387423236", + ["text"] = "Adds # to # Cold Damage", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1037193709", + ["text"] = "Adds # to # Cold Damage (Local)", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2233361223", + ["text"] = "Adds # to # Cold Damage against Chilled or Frozen Enemies", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3370223014", + ["text"] = "Adds # to # Cold Damage if you've dealt a Critical Strike Recently", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_4067062424", + ["text"] = "Adds # to # Cold Damage to Attacks", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_617462123", + ["text"] = "Adds # to # Cold Damage to Attacks against you", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_769783486", + ["text"] = "Adds # to # Cold Damage to Attacks per 10 Dexterity", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_149574107", + ["text"] = "Adds # to # Cold Damage to Attacks with this Weapon per 10 Dexterity", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3482587079", + ["text"] = "Adds # to # Cold Damage to Hits against you", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_178386603", + ["text"] = "Adds # to # Cold Damage to Hits against you per Frenzy Charge", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2469416729", + ["text"] = "Adds # to # Cold Damage to Spells", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_321077055", + ["text"] = "Adds # to # Fire Damage", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_709508406", + ["text"] = "Adds # to # Fire Damage (Local)", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_794830148", + ["text"] = "Adds # to # Fire Damage against Ignited Enemies", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3623716321", + ["text"] = "Adds # to # Fire Damage if you've Blocked Recently", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3144358296", + ["text"] = "Adds # to # Fire Damage if you've dealt a Critical Strike Recently", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1573130764", + ["text"] = "Adds # to # Fire Damage to Attacks", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2127433866", + ["text"] = "Adds # to # Fire Damage to Attacks against you", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_68673913", + ["text"] = "Adds # to # Fire Damage to Attacks per 10 Strength", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1060540099", + ["text"] = "Adds # to # Fire Damage to Attacks with this Weapon per 10 Strength", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1905034712", + ["text"] = "Adds # to # Fire Damage to Hits against you", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1133016593", + ["text"] = "Adds # to # Fire Damage to Spells", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3964634628", + ["text"] = "Adds # to # Fire Damage to Spells and Attacks", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1334060246", + ["text"] = "Adds # to # Lightning Damage", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3336890334", + ["text"] = "Adds # to # Lightning Damage (Local)", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_90012347", + ["text"] = "Adds # to # Lightning Damage against Shocked Enemies", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_4222857095", + ["text"] = "Adds # to # Lightning Damage for each Shocked Enemy you've Killed Recently", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_935623115", + ["text"] = "Adds # to # Lightning Damage if you've dealt a Critical Strike Recently", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1754445556", + ["text"] = "Adds # to # Lightning Damage to Attacks", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2491363440", + ["text"] = "Adds # to # Lightning Damage to Attacks against you", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3168149399", + ["text"] = "Adds # to # Lightning Damage to Attacks per 10 Intelligence", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3390848861", + ["text"] = "Adds # to # Lightning Damage to Attacks with this Weapon per 10 Intelligence", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2923069345", + ["text"] = "Adds # to # Lightning Damage to Hits against you", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2831165374", + ["text"] = "Adds # to # Lightning Damage to Spells", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_960081730", + ["text"] = "Adds # to # Physical Damage", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1940865751", + ["text"] = "Adds # to # Physical Damage (Local)", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2723101291", + ["text"] = "Adds # to # Physical Damage if you've dealt a Critical Strike Recently", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3032590688", + ["text"] = "Adds # to # Physical Damage to Attacks", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2093523445", + ["text"] = "Adds # to # Physical Damage to Attacks against you", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2435536961", + ["text"] = "Adds # to # Physical Damage to Spells", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3138486617", + ["text"] = "Alert Level increases by #% per second", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3555807120", + ["text"] = "All Damage from Monsters' Hits can Poison", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3458622626", + ["text"] = "All Magic and Normal Monsters in Area are in a Union of Souls", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2919181457", + ["text"] = "All Monster Damage can Ignite, Freeze and Shock", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_816367946", + ["text"] = "All Monster Damage from Hits always Ignites", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2648570028", + ["text"] = "Ancestral Bond", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1592278124", + ["text"] = "Anger has #% increased Aura Effect", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2549369799", + ["text"] = "Anger has #% increased Mana Reservation Efficiency", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2351239732", + ["text"] = "Arctic Armour has #% increased Mana Reservation Efficiency", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2605040931", + ["text"] = "Arctic Armour has #% increased Mana Reservation Efficiency", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2343561786", + ["text"] = "Area contains # additional Clusters of Mysterious Barrels", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_25225034", + ["text"] = "Area contains Drowning Orbs", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2577650864", + ["text"] = "Area contains Labyrinth Hazards", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3709982550", + ["text"] = "Area contains Petrification Statues", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2073168229", + ["text"] = "Area contains Runes of the Searing Exarch", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1943574423", + ["text"] = "Area contains Unstable Tentacle Fiends", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1000591322", + ["text"] = "Area contains many Totems", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2796704737", + ["text"] = "Area contains patches of moving Marked Ground, inflicting random Marks", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_799271621", + ["text"] = "Area contains two Unique Bosses", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3561450806", + ["text"] = "Area has increased monster variety", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_563277852", + ["text"] = "Area has patches of Awakeners' Desolation", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_133340941", + ["text"] = "Area has patches of Burning Ground", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_349586058", + ["text"] = "Area has patches of Chilled Ground", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1948962470", + ["text"] = "Area has patches of Consecrated Ground", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3477720557", + ["text"] = "Area has patches of Shocked Ground", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3246076198", + ["text"] = "Area has patches of Shocked Ground which increase Damage taken by #%", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3577222856", + ["text"] = "Area has patches of desecrated ground", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2961018200", + ["text"] = "Area is inhabited by Abominations", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_4198346809", + ["text"] = "Area is inhabited by Animals", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_4252630904", + ["text"] = "Area is inhabited by Cultists of Kitava", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3916182167", + ["text"] = "Area is inhabited by Demons", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3516340048", + ["text"] = "Area is inhabited by Ghosts", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1813544255", + ["text"] = "Area is inhabited by Goatmen", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2651141461", + ["text"] = "Area is inhabited by Humanoids", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3134632618", + ["text"] = "Area is inhabited by Lunaris fanatics", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_25085466", + ["text"] = "Area is inhabited by Sea Witches and their Spawn", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_45546355", + ["text"] = "Area is inhabited by Skeletons", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2457517302", + ["text"] = "Area is inhabited by Solaris fanatics", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_808491979", + ["text"] = "Area is inhabited by Undead", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3550168289", + ["text"] = "Area is inhabited by an additional Rogue Exile", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_645841425", + ["text"] = "Area is inhabited by ranged monsters", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2609768284", + ["text"] = "Area is inhabited by the Vaal", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2129352930", + ["text"] = "Armour is increased by Overcapped Fire Resistance", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1510714129", + ["text"] = "Attacks have #% chance to Maim on Hit", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1923879260", + ["text"] = "Attacks have #% chance to cause Bleeding", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2572042788", + ["text"] = "Attacks have +#% to Critical Strike Chance", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3762412853", + ["text"] = "Attacks with this Weapon Penetrate #% Chaos Resistance", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1740229525", + ["text"] = "Attacks with this Weapon Penetrate #% Cold Resistance", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_4064396395", + ["text"] = "Attacks with this Weapon Penetrate #% Elemental Resistances", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3398283493", + ["text"] = "Attacks with this Weapon Penetrate #% Fire Resistance", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2387539034", + ["text"] = "Attacks with this Weapon Penetrate #% Lightning Resistance", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2156372077", + ["text"] = "Auras from Player Skills which affect Allies also affect Enemies", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3729445224", + ["text"] = "Auras from your Skills grant #% increased Damage to you and Allies", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_346029096", + ["text"] = "Avatar of Fire", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2729804981", + ["text"] = "Banner Skills have #% increased Aura Effect", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3828375170", + ["text"] = "Bleeding you inflict deals Damage #% faster", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3450276548", + ["text"] = "Blind Chilled Enemies on Hit", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2801937280", + ["text"] = "Blood Magic", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3885405204", + ["text"] = "Bow Attacks fire # additional Arrows", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1217583941", + ["text"] = "Buffs on Players expire #% faster", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3292262540", + ["text"] = "Call to Arms", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2224292784", + ["text"] = "Can have up to # additional Trap placed at a time", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1859333175", + ["text"] = "Can have up to 3 Crafted Modifiers", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_526251910", + ["text"] = "Cannot Leech Life from Monsters", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1436284579", + ["text"] = "Cannot be Blinded", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_876831634", + ["text"] = "Cannot be Frozen", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_4212255859", + ["text"] = "Cannot be Knocked Back", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3835551335", + ["text"] = "Cannot be Poisoned", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3592330380", + ["text"] = "Cannot be Shocked or Ignited while moving", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_4122424929", + ["text"] = "Cannot roll Attack Modifiers", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1149326139", + ["text"] = "Cannot roll Caster Modifiers", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1621470436", + ["text"] = "Cast Level 20 Fire Burst on Hit", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1178188780", + ["text"] = "Channelling Skills Cost +# Mana", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2421446548", + ["text"] = "Channelling Skills have +# to Total Mana Cost", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_887556907", + ["text"] = "Chaos Damage taken does not bypass Energy Shield while not on Low Life", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2439129490", + ["text"] = "Chaos Resistance is Zero", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_289885185", + ["text"] = "Chaos Skills have #% increased Skill Effect Duration", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2459809121", + ["text"] = "Chill Enemy for # second when Hit, reducing their Action Speed by 30%", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_583277599", + ["text"] = "Chill Nearby Enemies when you Block", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1864616755", + ["text"] = "Cold Resistance cannot be Penetrated", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1235229114", + ["text"] = "Consecrated Ground you create grants +#% maximum Chaos Resistance to you and Allies", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1658498488", + ["text"] = "Corrupted Blood cannot be inflicted on you", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_300702212", + ["text"] = "Crimson Dance", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2155513095", + ["text"] = "Critical Strike Chance is increased by Lightning Resistance", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2478752719", + ["text"] = "Critical Strike Chance is increased by Overcapped Lightning Resistance", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2524254339", + ["text"] = "Culling Strike", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_710372469", + ["text"] = "Curse Enemies with Conductivity on Hit", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2764915899", + ["text"] = "Curse Enemies with Despair on Hit", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2028847114", + ["text"] = "Curse Enemies with Elemental Weakness on Hit", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_338121249", + ["text"] = "Curse Enemies with Flammability on Hit", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_426847518", + ["text"] = "Curse Enemies with Frostbite on Hit", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3967845372", + ["text"] = "Curse Enemies with Vulnerability on Hit", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1435748744", + ["text"] = "Curse Skills have #% increased Skill Effect Duration", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_608898129", + ["text"] = "Curses on Enemies in your Chilling Areas have #% increased Effect", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3417711605", + ["text"] = "Damage Penetrates #% Cold Resistance", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2101383955", + ["text"] = "Damage Penetrates #% Elemental Resistances", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3392890360", + ["text"] = "Damage Penetrates #% Elemental Resistances during any Flask Effect", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_455556407", + ["text"] = "Damage Penetrates #% Elemental Resistances if you haven't Killed Recently", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2653955271", + ["text"] = "Damage Penetrates #% Fire Resistance", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_818778753", + ["text"] = "Damage Penetrates #% Lightning Resistance", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_538241406", + ["text"] = "Damaging Ailments deal damage #% faster", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3900877792", + ["text"] = "Deal no Physical Damage", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1200027417", + ["text"] = "Debuffs on Monsters expire #% faster", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1238227257", + ["text"] = "Debuffs on you expire #% faster", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_325889252", + ["text"] = "Determination has #% increased Mana Reservation Efficiency", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2048995720", + ["text"] = "Divine Shield", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3595254837", + ["text"] = "Drops Burning Ground while moving, dealing # Fire Damage per second for # second", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1563068812", + ["text"] = "Each Projectile created by Attacks you make with a Melee Weapon has between #% more and #% less Projectile Speed at random", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3969608626", + ["text"] = "Effect is not removed when Unreserved Mana is Filled Effect does not Queue", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2262736444", + ["text"] = "Eldritch Battery", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1263158408", + ["text"] = "Elemental Equilibrium", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3574189159", + ["text"] = "Elemental Overload", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_4216282855", + ["text"] = "Enemies Blinded by you have #% increased Critical Strike Chance", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3709502856", + ["text"] = "Enemies Hindered by you have #% increased Life Regeneration rate", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1919892065", + ["text"] = "Enemies Intimidated by you have #% increased duration of stuns against them", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3457687358", + ["text"] = "Enemies Killed with Attack or Spell Hits Explode, dealing #% of their Life as Fire Damage", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2745149002", + ["text"] = "Enemies Maimed by you take #% increased Damage Over Time", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3610197448", + ["text"] = "Enemies Taunted by your Warcries take #% increased Damage", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1032614900", + ["text"] = "Enemies Withered by you have +#% to all Resistances", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1773891268", + ["text"] = "Enemies have #% reduced Evasion if you have Hit them Recently", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1776945532", + ["text"] = "Enemies you Kill have a #% chance to Explode, dealing a quarter of their maximum Life as Chaos Damage", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3295179224", + ["text"] = "Enemies you Kill have a #% chance to Explode, dealing a tenth of their maximum Life as Physical Damage", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2649904663", + ["text"] = "Equipped Magic Flasks have #% increased effect on you if no Flasks are Adjacent to them", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2358015838", + ["text"] = "Evasion Rating is increased by Overcapped Cold Resistance", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1242155304", + ["text"] = "Every 4 seconds, Regenerate #% of Life over one second", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1569101201", + ["text"] = "Exerted Attacks deal #% increased Damage", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1138860262", + ["text"] = "Fire Resistance cannot be Penetrated", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_114734841", + ["text"] = "Flasks applied to you have #% increased Effect", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3003321700", + ["text"] = "Flasks do not apply to you", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3610263531", + ["text"] = "Focus has #% increased Cooldown Recovery Rate", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_728267040", + ["text"] = "Found Items have #% chance to drop Corrupted in Area", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1582728645", + ["text"] = "Gain # Charge when you are Hit by an Enemy", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2894476716", + ["text"] = "Gain # Endurance Charge every second if you've been Hit Recently", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_211381198", + ["text"] = "Gain # Energy Shield per Enemy Hit with Attacks", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3841984913", + ["text"] = "Gain # Fragile Regrowth each second", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_120895749", + ["text"] = "Gain # Life for each Ignited Enemy hit with Attacks", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1649099067", + ["text"] = "Gain # Life per Blinded Enemy Hit with this Weapon", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2797971005", + ["text"] = "Gain # Life per Enemy Hit with Attacks", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2018035324", + ["text"] = "Gain # Life per Enemy Hit with Spells", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3695891184", + ["text"] = "Gain # Life per Enemy Killed", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_820939409", + ["text"] = "Gain # Mana per Enemy Hit with Attacks", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2474196346", + ["text"] = "Gain # Mana per Enemy Hit with Spells", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1368271171", + ["text"] = "Gain # Mana per Enemy Killed", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2915373966", + ["text"] = "Gain #% of Cold Damage as Extra Chaos Damage", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3495544060", + ["text"] = "Gain #% of Elemental Damage as Extra Chaos Damage", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1599775597", + ["text"] = "Gain #% of Fire Damage as Extra Chaos Damage", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2402136583", + ["text"] = "Gain #% of Lightning Damage as Extra Chaos Damage", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_67280387", + ["text"] = "Gain #% of Maximum Life as Extra Maximum Energy Shield", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2063695047", + ["text"] = "Gain #% of Non-Chaos Damage as extra Chaos Damage", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3319896421", + ["text"] = "Gain #% of Physical Damage as Extra Chaos Damage", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_979246511", + ["text"] = "Gain #% of Physical Damage as Extra Cold Damage", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3753703249", + ["text"] = "Gain #% of Physical Damage as Extra Damage of a random Element", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_369494213", + ["text"] = "Gain #% of Physical Damage as Extra Fire Damage", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2810434465", + ["text"] = "Gain #% of Physical Damage as Extra Fire Damage if you've dealt a Critical Strike Recently", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_219391121", + ["text"] = "Gain #% of Physical Damage as Extra Lightning Damage", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1575519214", + ["text"] = "Gain Accuracy Rating equal to your Strength", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_913614572", + ["text"] = "Gain Arcane Surge after Spending a total of # Mana", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3269060224", + ["text"] = "Gain a Power Charge after Spending a total of 200 Mana", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2156210979", + ["text"] = "Gain an Endurance Charge every 4 seconds while Stationary", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2199099676", + ["text"] = "Gain an Endurance, Frenzy or Power charge when you Block", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_899329924", + ["text"] = "Gems can be Socketed in this Item ignoring Socket Colour", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3590128077", + ["text"] = "Ghost Dance", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_4272248216", + ["text"] = "Ghost Reaver", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_900639351", + ["text"] = "Grace has #% increased Mana Reservation Efficiency", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_821021828", + ["text"] = "Grants # Life per Enemy Hit", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2416869319", + ["text"] = "Grants #% of Life Recovery to Minions", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_182714578", + ["text"] = "Grants Immunity to Bleeding for # seconds if used while Bleeding Grants Immunity to Corrupted Blood for # seconds if used while affected by Corrupted Blood", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3869628136", + ["text"] = "Grants Immunity to Chill for # seconds if used while Chilled Grants Immunity to Freeze for # seconds if used while Frozen", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_4003593289", + ["text"] = "Grants Immunity to Hinder for # seconds if used while Hindered", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2361218755", + ["text"] = "Grants Immunity to Ignite for # seconds if used while Ignited Removes all Burning when used", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_4232582040", + ["text"] = "Grants Immunity to Maim for # seconds if used while Maimed", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_542375676", + ["text"] = "Grants Immunity to Poison for # seconds if used while Poisoned", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3854439683", + ["text"] = "Grants Immunity to Shock for # seconds if used while Shocked", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_449494711", + ["text"] = "Grants Level # Anger Skill", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_484879947", + ["text"] = "Grants Level # Anger Skill", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3914740665", + ["text"] = "Grants Level # Aspect of the Avian Skill", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1265282021", + ["text"] = "Grants Level # Aspect of the Cat Skill", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_4102318278", + ["text"] = "Grants Level # Aspect of the Crab Skill", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_956546305", + ["text"] = "Grants Level # Aspect of the Spider Skill", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3511815065", + ["text"] = "Grants Level # Clarity Skill", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1786401772", + ["text"] = "Grants Level # Convocation Skill", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3566242751", + ["text"] = "Grants Level # Decoy Totem Skill", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3231614028", + ["text"] = "Grants Level # Determination Skill", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_4265392510", + ["text"] = "Grants Level # Determination Skill", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2341269061", + ["text"] = "Grants Level # Discipline Skill", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2578176147", + ["text"] = "Grants Level # Discipline Skill", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1031644844", + ["text"] = "Grants Level # Enduring Cry Skill", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_52953650", + ["text"] = "Grants Level # Envy Skill", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2867050084", + ["text"] = "Grants Level # Grace Skill", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3914774028", + ["text"] = "Grants Level # Grace Skill", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1188846263", + ["text"] = "Grants Level # Haste Skill", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2923442950", + ["text"] = "Grants Level # Haste Skill", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_178394804", + ["text"] = "Grants Level # Hatred Skill", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2429546158", + ["text"] = "Grants Level # Hatred Skill", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3880462354", + ["text"] = "Grants Level # Herald of Ash Skill", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3846248551", + ["text"] = "Grants Level # Herald of Ice Skill", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1665492921", + ["text"] = "Grants Level # Herald of Thunder Skill", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1271338211", + ["text"] = "Grants Level # Intimidating Cry Skill", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3086585712", + ["text"] = "Grants Level # Malevolence Skill", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3612470379", + ["text"] = "Grants Level # Pride Skill", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3716281760", + ["text"] = "Grants Level # Purity of Fire Skill", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_151975117", + ["text"] = "Grants Level # Purity of Ice Skill", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1141249906", + ["text"] = "Grants Level # Purity of Lightning Skill", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2007746338", + ["text"] = "Grants Level # Rallying Cry Skill", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2410613176", + ["text"] = "Grants Level # Vitality Skill", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1568319697", + ["text"] = "Grants Level # Wrath Skill", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2265307453", + ["text"] = "Grants Level # Wrath Skill", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3734675602", + ["text"] = "Grants Level # Zealotry Skill", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2569717992", + ["text"] = "Guards deal #% increased Damage", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_873692616", + ["text"] = "Guards take #% increased Damage", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3527617737", + ["text"] = "Has # Abyssal Sockets", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2739148464", + ["text"] = "Has no Attribute Requirements", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3742945352", + ["text"] = "Hatred has #% increased Aura Effect", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2156140483", + ["text"] = "Hatred has #% increased Mana Reservation Efficiency", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_14664297", + ["text"] = "Heist Chests have a #% chance to Duplicate contained Basic Currency", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2121053002", + ["text"] = "Heist Chests have a #% chance to Duplicate contained Blighted Maps and Catalysts", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_668504404", + ["text"] = "Heist Chests have a #% chance to Duplicate contained Breach Splinters", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_746798754", + ["text"] = "Heist Chests have a #% chance to Duplicate contained Catalysts", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1870262721", + ["text"] = "Heist Chests have a #% chance to Duplicate contained Delirium Orbs and Splinters", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_63302094", + ["text"] = "Heist Chests have a #% chance to Duplicate contained Divination Cards", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2175178647", + ["text"] = "Heist Chests have a #% chance to Duplicate contained Essences", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2462090973", + ["text"] = "Heist Chests have a #% chance to Duplicate contained Jewels", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_145701647", + ["text"] = "Heist Chests have a #% chance to Duplicate contained Legion Splinters", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3967122169", + ["text"] = "Heist Chests have a #% chance to Duplicate contained Map Fragments", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2885763444", + ["text"] = "Heist Chests have a #% chance to Duplicate contained Maps", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2233905349", + ["text"] = "Heist Chests have a #% chance to Duplicate contained Oils", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_4216809421", + ["text"] = "Heist Chests have a #% chance to Duplicate contained Scarabs", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_590557979", + ["text"] = "Heist Chests have a #% chance to Duplicate contained Sextants", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1462364052", + ["text"] = "Hinders nearby Enemies with #% reduced Movement Speed if used while not on Full Life", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2313899959", + ["text"] = "Hinders nearby Enemies with #% reduced Movement Speed if used while not on Full Mana", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_248982637", + ["text"] = "Hits against you gain #% of Physical Damage as Extra Fire Damage", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_4126210832", + ["text"] = "Hits can't be Evaded", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_59547568", + ["text"] = "Hits with Melee Movement Skills have #% chance to Fortify", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3579673398", + ["text"] = "Hits with this Weapon Overwhelm #% Physical Damage Reduction", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1907260000", + ["text"] = "Hits with this Weapon have #% chance to ignore Enemy Physical Damage Reduction", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2558253923", + ["text"] = "Hits with this Weapon have Culling Strike against Bleeding Enemies", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2443492284", + ["text"] = "Ignites you inflict deal Damage #% faster", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1311723478", + ["text"] = "Ignore all Movement Penalties from Armour", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3965637181", + ["text"] = "Immunity to Bleeding and Corrupted Blood during Effect", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3838369929", + ["text"] = "Immunity to Freeze and Chill during Effect", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_658443507", + ["text"] = "Immunity to Ignite during Effect Removes Burning on use", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1349296959", + ["text"] = "Immunity to Poison during Effect", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_589991690", + ["text"] = "Immunity to Shock during Effect", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2605119037", + ["text"] = "Increases and Reductions to Energy Shield in Radius are Transformed to apply to Armour at 200% of their value", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3645269560", + ["text"] = "Inherent loss of Rage is #% faster", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1526933524", + ["text"] = "Instant Recovery", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3812107348", + ["text"] = "Instant Recovery when on Low Life", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_573347393", + ["text"] = "Iron Grip", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_4092697134", + ["text"] = "Iron Will", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3909846940", + ["text"] = "Item drops on Death if Equipped by an Animated Guardian", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_752930724", + ["text"] = "Items and Gems have #% increased Attribute Requirements", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_728267040", + ["text"] = "Items found in your Maps have #% chance to be Corrupted", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2054162825", + ["text"] = "Karui Stone Hook", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_597522922", + ["text"] = "Left ring slot: Skills supported by Unleash have +# to maximum number of Seals", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1678358883", + ["text"] = "Lethe Shade", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3836017971", + ["text"] = "Light Radius is based on Energy Shield instead of Life", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3515979920", + ["text"] = "Lightning Resistance cannot be Penetrated", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1239251576", + ["text"] = "Lockdown occurs immediately when Alert Level is full", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_771127912", + ["text"] = "Lose # Life per second", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_838272676", + ["text"] = "Lose # Mana per second", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_761102773", + ["text"] = "Lose #% of Energy Shield per second", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1306791873", + ["text"] = "Lose all Fragile Regrowth when Hit", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_4180925106", + ["text"] = "Magebane", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2564857472", + ["text"] = "Magic Utility Flasks applied to you have #% increased Effect", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_4175197580", + ["text"] = "Malevolence has #% increased Aura Effect", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_4204954479", + ["text"] = "Mana Recovery occurs instantly at the end of Effect", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_4150353141", + ["text"] = "Map Boss is accompanied by a Synthesis Boss", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_124877078", + ["text"] = "Map Bosses deal #% increased Damage", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1959158336", + ["text"] = "Map Bosses have #% increased Life", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1173537953", + ["text"] = "Maximum # Fragile Regrowth", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3962823719", + ["text"] = "Melee Attacks Knock Enemies Back on Hit", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3206381437", + ["text"] = "Melee Hits which Stun have #% chance to Fortify", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3085465082", + ["text"] = "Mines have #% increased Detonation Speed", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2770782267", + ["text"] = "Minions Leech #% of Damage as Life", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3500359417", + ["text"] = "Minions Recover #% of their Life when you Focus", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3062329212", + ["text"] = "Minions Regenerate # Life per second", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2479683456", + ["text"] = "Minions Regenerate #% of Life per second", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_128585622", + ["text"] = "Minions are Aggressive", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2727256287", + ["text"] = "Minions convert #% of Fire Damage to Chaos Damage", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3913090641", + ["text"] = "Minions created Recently have #% increased Critical Hit Chance", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2889601781", + ["text"] = "Minions deal # to # additional Chaos Damage", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3152982863", + ["text"] = "Minions deal # to # additional Cold Damage", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3351784991", + ["text"] = "Minions deal # to # additional Fire Damage", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2930653471", + ["text"] = "Minions deal # to # additional Lightning Damage", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1172029298", + ["text"] = "Minions deal # to # additional Physical Damage", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1589917703", + ["text"] = "Minions deal #% increased Damage", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_412745376", + ["text"] = "Minions deal #% increased Damage if you've used a Minion Skill Recently", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1086057912", + ["text"] = "Minions deal #% increased Damage with Hits and Ailments against Abyssal Monsters", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3119612865", + ["text"] = "Minions have #% additional Physical Damage Reduction", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2431643207", + ["text"] = "Minions have #% chance to Blind on Hit with Attacks", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2323739383", + ["text"] = "Minions have #% chance to Hinder Enemies on Hit with Spells", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3945908658", + ["text"] = "Minions have #% chance to Ignite", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1974445926", + ["text"] = "Minions have #% chance to Poison Enemies on Hit", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2911442053", + ["text"] = "Minions have #% chance to Taunt on Hit with Attacks", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3998967779", + ["text"] = "Minions have #% chance to cause Bleeding with Attacks", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_755922799", + ["text"] = "Minions have #% chance to deal Double Damage", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3811191316", + ["text"] = "Minions have #% increased Area of Effect", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3375935924", + ["text"] = "Minions have #% increased Attack Speed", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3091578504", + ["text"] = "Minions have #% increased Attack and Cast Speed", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_4227567885", + ["text"] = "Minions have #% increased Attack and Cast Speed if you or your Minions have Killed Recently", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_4000101551", + ["text"] = "Minions have #% increased Cast Speed", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1691403182", + ["text"] = "Minions have #% increased Cooldown Recovery Rate", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_491450213", + ["text"] = "Minions have #% increased Critical Strike Chance", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_174664100", + ["text"] = "Minions have #% increased Movement Speed", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_770672621", + ["text"] = "Minions have #% increased maximum Life", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1661151735", + ["text"] = "Minions have +# to Accuracy Rating", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3374054207", + ["text"] = "Minions have +#% Chance to Block Attack Damage", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3837707023", + ["text"] = "Minions have +#% to Chaos Resistance", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1854213750", + ["text"] = "Minions have +#% to Critical Strike Multiplier", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1423639565", + ["text"] = "Minions have +#% to all Elemental Resistances", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_10224385", + ["text"] = "Minions have +#% to all maximum Elemental Resistances", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1898978455", + ["text"] = "Monster Damage Penetrates #% Elemental Resistances", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_637101875", + ["text"] = "Monsters Fracture", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3350803563", + ["text"] = "Monsters Poison on Hit", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_4154059009", + ["text"] = "Monsters are Hexproof", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1140978125", + ["text"] = "Monsters cannot be Leeched from", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1041951480", + ["text"] = "Monsters cannot be Stunned", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1106651798", + ["text"] = "Monsters cannot be Taunted", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3448216135", + ["text"] = "Monsters deal #% extra Physical Damage as Cold", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1497673356", + ["text"] = "Monsters deal #% extra Physical Damage as Fire", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3416853625", + ["text"] = "Monsters deal #% extra Physical Damage as Lightning", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1309819744", + ["text"] = "Monsters fire # additional Projectiles", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2887760183", + ["text"] = "Monsters gain #% of Maximum Life as Extra Maximum Energy Shield", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1840747977", + ["text"] = "Monsters gain #% of their Physical Damage as Extra Chaos Damage", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_4062840317", + ["text"] = "Monsters gain #% of their Physical Damage as Extra Damage of a random Element", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_322206271", + ["text"] = "Monsters have #% chance to Avoid Elemental Ailments", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1629869774", + ["text"] = "Monsters have #% chance to Blind on Hit", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_962720646", + ["text"] = "Monsters have #% chance to Hinder on Hit with Spells", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_4164174520", + ["text"] = "Monsters have #% chance to Maim on Hit with Attacks", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1742567045", + ["text"] = "Monsters have #% chance to gain a Frenzy Charge on Hit", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_406353061", + ["text"] = "Monsters have #% chance to gain a Power Charge on Hit", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_687813731", + ["text"] = "Monsters have #% chance to gain an Endurance Charge on Hit", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3044826007", + ["text"] = "Monsters have #% chance to inflict Withered for 2 seconds on Hit", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3222482040", + ["text"] = "Monsters have #% chance to steal Power, Frenzy and Endurance charges on Hit", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1588049749", + ["text"] = "Monsters have #% increased Accuracy Rating", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1708461270", + ["text"] = "Monsters have #% increased Area of Effect", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2753083623", + ["text"] = "Monsters have #% increased Critical Strike Chance", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_134839587", + ["text"] = "Monsters have #% increased Poison Duration", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_4067268731", + ["text"] = "Monsters have +# to Maximum Endurance Charges", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3900284865", + ["text"] = "Monsters have +# to Maximum Frenzy Charges", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1103106414", + ["text"] = "Monsters have +# to Maximum Power Charges", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_881836292", + ["text"] = "Monsters have +#% Chance to Block Attack Damage", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2138205941", + ["text"] = "Monsters have +#% chance to Suppress Spell Damage", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2553656203", + ["text"] = "Monsters have a #% chance to Ignite, Freeze and Shock on Hit", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_144665660", + ["text"] = "Monsters have a #% chance to avoid Poison, Impale, and Bleeding", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3707756896", + ["text"] = "Monsters have a #% chance to gain an Endurance Charge when hit", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1751584857", + ["text"] = "Monsters inflict # Grasping Vine on Hit", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2764017512", + ["text"] = "Monsters reflect #% of Elemental Damage", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3464419871", + ["text"] = "Monsters reflect #% of Physical Damage", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_337935900", + ["text"] = "Monsters take #% reduced Extra Damage from Critical Strikes", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2758454849", + ["text"] = "Monsters' Action Speed cannot be modified to below Base Value", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_798009319", + ["text"] = "Monsters' Action Speed cannot be modified to below Base Value Monsters' Movement Speed cannot be modified to below Base Value", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1541224187", + ["text"] = "Monsters' Attacks have #% chance to Impale on Hit", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_777421120", + ["text"] = "Monsters' Movement Speed cannot be modified to below Base Value", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2753403220", + ["text"] = "Monsters' Projectiles have #% chance to be able to Chain when colliding with Terrain", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3183973644", + ["text"] = "Monsters' skills Chain # additional times", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3875592188", + ["text"] = "Movement Speed cannot be modified to below Base Value", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_935326447", + ["text"] = "Moving while Bleeding doesn't cause you to take extra Damage", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2826979740", + ["text"] = "Nearby Enemies are Blinded", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1902595112", + ["text"] = "Nearby Enemies have +#% to Chaos Resistance", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2674336304", + ["text"] = "Nearby Enemies have +#% to Cold Resistance", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3914021960", + ["text"] = "Nearby Enemies have +#% to Fire Resistance", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1849749435", + ["text"] = "Nearby Enemies have +#% to Lightning Resistance", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_639595152", + ["text"] = "Nearby Enemies take #% increased Elemental Damage", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_415837237", + ["text"] = "Nearby Enemies take #% increased Physical Damage", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_4187518631", + ["text"] = "Nearby Enemies take #% increased Physical Damage per two Fortification on you", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2946222246", + ["text"] = "No Travel Cost", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_849152640", + ["text"] = "Non-Aura Skills Cost no Mana or Life while Focused", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3533432197", + ["text"] = "Non-Aura Vaal Skills require #% reduced Souls Per Use", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_407482587", + ["text"] = "Non-Channelling Skills Cost +# Mana", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_677564538", + ["text"] = "Non-Channelling Skills have +# to Total Mana Cost", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2495041954", + ["text"] = "Overwhelm #% Physical Damage Reduction", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_98977150", + ["text"] = "Pain Attunement", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_576760472", + ["text"] = "Passive Skills in Radius also grant: Traps and Mines deal # to # added Physical Damage", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1982436039", + ["text"] = "Patrol Packs have #% increased chance to be replaced by an Elite Patrol Pack", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3702411606", + ["text"] = "Patrol Packs take #% increased damage", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3144910208", + ["text"] = "Patrolling Monsters deal #% increased Damage", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3884934810", + ["text"] = "Perfect Agony", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2485799092", + ["text"] = "Performing Brute Force during Lockdown doesn't take additional time", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3969573213", + ["text"] = "Performing Counter-Thaumaturgy during Lockdown doesn't take additional time", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_450155423", + ["text"] = "Performing Demolition during Lockdown doesn't take additional time", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1124657098", + ["text"] = "Performing Engineering during Lockdown doesn't take additional time", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3144025395", + ["text"] = "Performing Lockpicking during Lockdown doesn't take additional time", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2930706364", + ["text"] = "Permanently Intimidate Enemies on Block", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3633247582", + ["text"] = "Player Skills which Throw Mines throw up to # fewer Mines", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3693062339", + ["text"] = "Player Skills which Throw Traps throw up to # fewer Traps", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_286947568", + ["text"] = "Players Prevent +#% of Suppressed Spell Damage", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_430044247", + ["text"] = "Players and their Minions Regenerate #% of Life per second", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2408625104", + ["text"] = "Players and their Minions deal no damage for 3 out of every 10 seconds", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2513410880", + ["text"] = "Players and their Minions have #% increased Mana Regeneration Rate", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_558910024", + ["text"] = "Players are Cursed with Elemental Weakness", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_4103440490", + ["text"] = "Players are Cursed with Enfeeble", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2326202293", + ["text"] = "Players are Cursed with Temporal Chains", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1366534040", + ["text"] = "Players are Cursed with Vulnerability", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_436406826", + ["text"] = "Players are Marked for Death for # seconds after killing a Rare or Unique monster", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3052102815", + ["text"] = "Players are assaulted by Bloodstained Sawblades", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_419810844", + ["text"] = "Players cannot Block", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1888489569", + ["text"] = "Players cannot Recharge Energy Shield", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1910157106", + ["text"] = "Players cannot Regenerate Life, Mana or Energy Shield", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3203905334", + ["text"] = "Players cannot Suppress Spell Damage", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3532144131", + ["text"] = "Players cannot gain Endurance Charges", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_620879593", + ["text"] = "Players cannot gain Frenzy Charges", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1282233725", + ["text"] = "Players cannot gain Power Charges", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1026390635", + ["text"] = "Players cannot inflict Exposure", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_816079058", + ["text"] = "Players gain #% increased Flask Charges per 25% Alert Level", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2549889921", + ["text"] = "Players gain #% reduced Flask Charges", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_4102870672", + ["text"] = "Players have #% chance to be targeted by a Meteor when they use a Flask", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3479892158", + ["text"] = "Players have #% increased Action Speed for each time they've used a Skill Recently", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2946888410", + ["text"] = "Players have #% increased Maximum total Life, Mana and Energy Shield Recovery per second from Leech", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2450628570", + ["text"] = "Players have #% increased effect of Non-Curse Auras from Skills", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2312028586", + ["text"] = "Players have #% less Area of Effect", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_272758639", + ["text"] = "Players have #% less Armour", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_4181072906", + ["text"] = "Players have #% less Recovery Rate of Life and Energy Shield", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3667574329", + ["text"] = "Players have #% more Accuracy Rating", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2787931289", + ["text"] = "Players have #% more Armour per 25% Alert Level", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_941368244", + ["text"] = "Players have #% more Cooldown Recovery Rate", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_943960754", + ["text"] = "Players have #% more Defences", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_751773204", + ["text"] = "Players have #% more Energy Shield Recovery Rate per 25% Alert Level", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1238382441", + ["text"] = "Players have #% more Evasion per 25% Alert Level", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1466172118", + ["text"] = "Players have #% more Life Recovery Rate per 25% Alert Level", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_953449033", + ["text"] = "Players have #% more Mana Recovery Rate per 25% Alert Level", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1207482628", + ["text"] = "Players have #% more effect of Flasks applied to them", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3729221884", + ["text"] = "Players have #% reduced Chance to Block", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3376488707", + ["text"] = "Players have #% to all maximum Resistances", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2912613786", + ["text"] = "Players have +# to maximum number of Summoned Totems", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_86122490", + ["text"] = "Players have Blood Magic", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2835888248", + ["text"] = "Players have Point Blank", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_4045850340", + ["text"] = "Players in Area take #% increased Damage per nearby Ally", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1308016791", + ["text"] = "Players' Minions have #% more Attack Speed", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1237051929", + ["text"] = "Players' Minions have #% more Cast Speed", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3991644188", + ["text"] = "Players' Minions have #% more Movement Speed", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2896346114", + ["text"] = "Point Blank", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2907156609", + ["text"] = "Poisons you inflict deal Damage #% faster", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2879723104", + ["text"] = "Prefixes Cannot Be Changed", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_4116705863", + ["text"] = "Prevent +#% of Suppressed Spell Damage", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3993865658", + ["text"] = "Pride has #% increased Mana Reservation Efficiency", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2067062068", + ["text"] = "Projectiles Pierce # additional Targets", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2940232338", + ["text"] = "Projectiles can Chain from any number of additional targets in Close Range", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_883169830", + ["text"] = "Projectiles deal #% increased Damage with Hits and Ailments for each Enemy Pierced", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2521866096", + ["text"] = "Projectiles gain Impale effect as they travel farther, causing Impales they inflict to have up to #% increased effect", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3003688066", + ["text"] = "Purity of Fire has #% increased Mana Reservation Efficiency", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2550456553", + ["text"] = "Rare Monsters each have # additional Modifier", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1706239920", + ["text"] = "Rare Monsters have #% chance to have a Volatile Core", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2550456553", + ["text"] = "Rare Monsters in your Maps have # additional Modifier", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3270788481", + ["text"] = "Rare and Unique Monsters remove #% of Life, Mana and Energy Shield from Players or their Minions on Hit", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1593763475", + ["text"] = "Rare monsters in area Temporarily Revive on death", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2931889194", + ["text"] = "Rare monsters in area are Shaper-Touched", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2406605753", + ["text"] = "Recover #% of Energy Shield on Kill", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1606263610", + ["text"] = "Recover #% of Energy Shield when you Block", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2023107756", + ["text"] = "Recover #% of Life on Kill", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2442647190", + ["text"] = "Recover #% of Life when you Block", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2992263716", + ["text"] = "Recover #% of Mana and Energy Shield when you Focus", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1030153674", + ["text"] = "Recover #% of Mana on Kill", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3041288981", + ["text"] = "Recover #% of your maximum Mana when you Block", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_307410279", + ["text"] = "Recover an additional #% of Flask's Life Recovery Amount over 10 seconds if used while not on Full Life", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3767873853", + ["text"] = "Reflects # Physical Damage to Melee Attackers", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2561836520", + ["text"] = "Regenerate # Energy Shield per second", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2238019079", + ["text"] = "Regenerate # Energy Shield per second while a Rare or Unique Enemy is Nearby", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3325883026", + ["text"] = "Regenerate # Life per second", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_4291461939", + ["text"] = "Regenerate # Mana per second", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3594640492", + ["text"] = "Regenerate #% of Energy Shield per second", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_836936635", + ["text"] = "Regenerate #% of Life per second", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3500911418", + ["text"] = "Regenerate #% of Life per second during any Flask Effect", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_908516597", + ["text"] = "Regenerate #% of Life per second while moving", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3188455409", + ["text"] = "Regenerate #% of Mana per second", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1339532482", + ["text"] = "Reinforcements have #% increased Attack Speed", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1843941387", + ["text"] = "Reinforcements have #% increased Cast Speed", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1342271987", + ["text"] = "Reinforcements have #% increased Movement Speed", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3296873305", + ["text"] = "Remove Chill and Freeze when you use a Flask", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1162425204", + ["text"] = "Remove Ignite and Burning when you use a Flask", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_561861132", + ["text"] = "Remove Shock when you use a Flask", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_648019518", + ["text"] = "Removes #% of Life Recovered from Mana when used", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_959641748", + ["text"] = "Removes #% of Mana Recovered from Life when used", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3936926420", + ["text"] = "Removes Bleeding when you use a Warcry", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3895393544", + ["text"] = "Removes Curses on use", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3943945975", + ["text"] = "Resolute Technique", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1390113017", + ["text"] = "Reward Room Monsters deal #% increased Damage", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_839556554", + ["text"] = "Reward Room Monsters take #% increased Damage", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_4056408881", + ["text"] = "Reward Rooms have #% increased Monsters", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3360430812", + ["text"] = "Rhoa Feather Lure", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_651133374", + ["text"] = "Right ring slot: Shockwave has +# to Cooldown Uses", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_4080245957", + ["text"] = "Runebinder", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3291999509", + ["text"] = "Shock Reflection", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3031766858", + ["text"] = "Shock nearby Enemies for # Seconds when you Focus", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_74338099", + ["text"] = "Skills fire an additional Projectile", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3528761893", + ["text"] = "Skills have +#% to Critical Strike Chance for each Warcry Exerting them", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1264919148", + ["text"] = "Skills supported by Unleash have +# to maximum number of Seals", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3954265754", + ["text"] = "Skills that leave Lingering Blades have +# to Maximum Lingering Blades", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2228913626", + ["text"] = "Skills used by Mines have #% increased Area of Effect", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_4050593908", + ["text"] = "Skills used by Traps have #% increased Area of Effect", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2999750998", + ["text"] = "Skills used by your Traps and Mines Chain an additional time", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1837040413", + ["text"] = "Slaying Enemies close together can attract monsters from Beyond this realm", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2264586521", + ["text"] = "Socketed Attacks have +# to Total Mana Cost", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2867348718", + ["text"] = "Socketed Attacks have +#% to Critical Strike Chance", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_356456977", + ["text"] = "Socketed Attacks have +#% to Critical Strike Multiplier", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2788729902", + ["text"] = "Socketed Gems Chain # additional times", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2572192375", + ["text"] = "Socketed Gems are Supported by Level # Added Fire Damage", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3839163699", + ["text"] = "Socketed Gems are Supported by Level # Advanced Traps", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_696805682", + ["text"] = "Socketed Gems are Supported by Level # Ancestral Call", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2287264161", + ["text"] = "Socketed Gems are Supported by Level # Arcane Surge", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3030692053", + ["text"] = "Socketed Gems are Supported by Level # Ballista Totem", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1710508327", + ["text"] = "Socketed Gems are Supported by Level # Blastchain Mine", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_715256302", + ["text"] = "Socketed Gems are Supported by Level # Brutality", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2680613507", + ["text"] = "Socketed Gems are Supported by Level # Burning Damage", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3312593243", + ["text"] = "Socketed Gems are Supported by Level # Cast On Melee Kill", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1316646496", + ["text"] = "Socketed Gems are Supported by Level # Cast While Channelling", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3036440332", + ["text"] = "Socketed Gems are Supported by Level # Cast when Damage Taken", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_4197676934", + ["text"] = "Socketed Gems are Supported by Level # Chance To Bleed", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_228165595", + ["text"] = "Socketed Gems are Supported by Level # Chance to Poison", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1991958615", + ["text"] = "Socketed Gems are Supported by Level # Cold Penetration", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2388360415", + ["text"] = "Socketed Gems are Supported by Level # Concentrated Effect", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3718597497", + ["text"] = "Socketed Gems are Supported by Level # Controlled Destruction", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2228279620", + ["text"] = "Socketed Gems are Supported by Level # Critical Strike Affliction", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3924539382", + ["text"] = "Socketed Gems are Supported by Level # Efficacy", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1169422227", + ["text"] = "Socketed Gems are Supported by Level # Elemental Focus", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2929101122", + ["text"] = "Socketed Gems are Supported by Level # Elemental Proliferation", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3581578643", + ["text"] = "Socketed Gems are Supported by Level # Empower", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3375208082", + ["text"] = "Socketed Gems are Supported by Level # Endurance Charge on Melee Stun", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2556436882", + ["text"] = "Socketed Gems are Supported by Level # Enhance", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2065361612", + ["text"] = "Socketed Gems are Supported by Level # Enlighten", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_928701213", + ["text"] = "Socketed Gems are Supported by Level # Faster Attacks", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2169938251", + ["text"] = "Socketed Gems are Supported by Level # Faster Casting", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1979658770", + ["text"] = "Socketed Gems are Supported by Level # Fire Penetration", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_107118693", + ["text"] = "Socketed Gems are Supported by Level # Fortify", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_13669281", + ["text"] = "Socketed Gems are Supported by Level # Hypothermia", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2420410470", + ["text"] = "Socketed Gems are Supported by Level # Immolate", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3720936304", + ["text"] = "Socketed Gems are Supported by Level # Increased Area of Effect", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2259700079", + ["text"] = "Socketed Gems are Supported by Level # Increased Critical Strikes", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1106668565", + ["text"] = "Socketed Gems are Supported by Level # Innervate", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1866911844", + ["text"] = "Socketed Gems are Supported by Level # Inspiration", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3587013273", + ["text"] = "Socketed Gems are Supported by Level # Item Rarity", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2487643588", + ["text"] = "Socketed Gems are Supported by Level # Less Duration", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3354027870", + ["text"] = "Socketed Gems are Supported by Level # Lightning Penetration", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3826977109", + ["text"] = "Socketed Gems are Supported by Level # Maim", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2608615082", + ["text"] = "Socketed Gems are Supported by Level # Mana Leech", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2985291457", + ["text"] = "Socketed Gems are Supported by Level # Melee Physical Damage", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_808939569", + ["text"] = "Socketed Gems are Supported by Level # Minion Damage", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1337327984", + ["text"] = "Socketed Gems are Supported by Level # Minion Life", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3237923082", + ["text"] = "Socketed Gems are Supported by Level # Momentum", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_407317553", + ["text"] = "Socketed Gems are Supported by Level # More Duration", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_584144941", + ["text"] = "Socketed Gems are Supported by Level # Multiple Projectiles", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_4015918489", + ["text"] = "Socketed Gems are Supported by Level # Power Charge On Critical Strike", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3796013729", + ["text"] = "Socketed Gems are Supported by Level # Ruthless", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1390285657", + ["text"] = "Socketed Gems are Supported by Level # Slower Projectiles", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_503990161", + ["text"] = "Socketed Gems are Supported by Level # Spell Cascade", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_913919528", + ["text"] = "Socketed Gems are Supported by Level # Spell Echo", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2962840349", + ["text"] = "Socketed Gems are Supported by Level # Spell Totem", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1122134690", + ["text"] = "Socketed Gems are Supported by Level # Trap", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3814066599", + ["text"] = "Socketed Gems are Supported by Level # Trap And Mine Damage", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3699494172", + ["text"] = "Socketed Gems are Supported by Level # Unbound Ailments", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2696557965", + ["text"] = "Socketed Gems are Supported by Level # Volley", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1567462963", + ["text"] = "Socketed Gems are supported by Level # Additional Accuracy", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2223640518", + ["text"] = "Socketed Gems are supported by Level # Blind", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2325632050", + ["text"] = "Socketed Gems are supported by Level # Cast On Critical Strike", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2532625478", + ["text"] = "Socketed Gems are supported by Level # Elemental Damage with Attacks", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_99089516", + ["text"] = "Socketed Gems are supported by Level # Faster Projectiles", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1108755349", + ["text"] = "Socketed Gems are supported by Level # Increased Critical Damage", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_891277550", + ["text"] = "Socketed Gems are supported by Level # Life Leech", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1811422871", + ["text"] = "Socketed Gems are supported by Level # Melee Splash", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2501237765", + ["text"] = "Socketed Gems are supported by Level # Multistrike", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1289910726", + ["text"] = "Socketed Gems deal # to # Added Fire Damage", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3846088475", + ["text"] = "Socketed Gems deal #% more Damage over Time", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1235873320", + ["text"] = "Socketed Gems deal #% more Damage while on Low Life", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3835899275", + ["text"] = "Socketed Gems deal #% more Elemental Damage", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1859937391", + ["text"] = "Socketed Gems gain #% of Physical Damage as extra Lightning Damage", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3289633055", + ["text"] = "Socketed Gems have #% increased Reservation Efficiency", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_346351023", + ["text"] = "Socketed Gems have #% more Attack and Cast Speed", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1681904129", + ["text"] = "Socketed Gems have +#% Critical Strike Chance", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3263216405", + ["text"] = "Socketed Movement Skills Cost no Mana", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1970781345", + ["text"] = "Socketed Skills deal #% more Attack Damage", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2964800094", + ["text"] = "Socketed Skills deal #% more Spell Damage", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3425934849", + ["text"] = "Socketed Skills have #% increased Cast Speed", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_135378852", + ["text"] = "Socketed Spells have +#% to Critical Strike Chance", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2828710986", + ["text"] = "Socketed Spells have +#% to Critical Strike Multiplier", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_4021083819", + ["text"] = "Socketed Triggered Skills deal Double Damage", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2813626504", + ["text"] = "Spells have a #% chance to deal Double Damage", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2237528173", + ["text"] = "Strength from Passives in Radius is Transformed to Dexterity", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3464137628", + ["text"] = "Suffixes Cannot Be Changed", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1589090910", + ["text"] = "Summon an additional Skeleton with Summon Skeletons", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_7847395", + ["text"] = "Summoned Phantasms have #% chance to refresh their Duration when they Hit a Rare or Unique Enemy", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_4070754804", + ["text"] = "Summoned Raging Spirits have #% chance to refresh their Duration when they Hit a Rare or Unique Enemy", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1421267186", + ["text"] = "Supreme Ego", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_462691314", + ["text"] = "The Agnostic", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1441799693", + ["text"] = "The Impaler", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1594156261", + ["text"] = "The Maven interferes with Players", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_616993076", + ["text"] = "The Ring takes no Cut", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_293465345", + ["text"] = "The Ring's Cut increased by #%", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_436556261", + ["text"] = "This Area's Modifiers to Quantity of Items found also apply to Rarity", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_436556261", + ["text"] = "This Map's Modifiers to Quantity of Items found also apply to Rarity", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1809006367", + ["text"] = "Totems gain +#% to all Elemental Resistances", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1468606528", + ["text"] = "Trigger Level 10 Summon Spectral Wolf on Kill", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1582781759", + ["text"] = "Trigger a Socketed Spell on Using a Skill, with a # second Cooldown Spells Triggered this way have 150% more Cost", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_779168081", + ["text"] = "Triggers Level # Corpse Walk when Equipped", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_470688636", + ["text"] = "Triggers Level 20 Spectral Spirits when Equipped +# to maximum number of Spectral Spirits", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1643688236", + ["text"] = "Unaffected by Burning Ground", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3653191834", + ["text"] = "Unaffected by Chilled Ground", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_4004298002", + ["text"] = "Unaffected by Desecrated Ground", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2967697688", + ["text"] = "Unaffected by Shock while Channelling", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2234049899", + ["text"] = "Unaffected by Shocked Ground", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_124877078", + ["text"] = "Unique Boss deals #% increased Damage", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3040667106", + ["text"] = "Unique Boss has #% increased Area of Effect", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2109106920", + ["text"] = "Unique Boss has #% increased Attack and Cast Speed", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1959158336", + ["text"] = "Unique Boss has #% increased Life", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2588474575", + ["text"] = "Unique Bosses are Possessed", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_872972810", + ["text"] = "Unique Monsters have a random Shrine Buff", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2257118425", + ["text"] = "Vaal Pact", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_547412107", + ["text"] = "Vaal Skills have #% increased Skill Effect Duration", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_593845252", + ["text"] = "Versatile Combatant", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2174134106", + ["text"] = "Warcries cannot Exert Travel Skills", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2567751411", + ["text"] = "Warcry Skills have #% increased Area of Effect", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1353527704", + ["text"] = "When a fifth Impale is inflicted on a Player, Impales are removed to Reflect their Physical Damage multiplied by their remaining Hits to that Player and their Allies within 1.8 metres", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1353527704", + ["text"] = "When a fifth Impale is inflicted on a Player, Impales are removed to Reflect their Physical Damage multiplied by their remaining Hits to that Player and their Allies within 1.8 metres", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2736829661", + ["text"] = "When you Kill a Rare Monster, #% chance to gain one of its Modifiers for 10 seconds", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2092708508", + ["text"] = "With at least 40 Dexterity in Radius, Frost Blades has #% increased Projectile Speed", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3103494675", + ["text"] = "With at least 40 Dexterity in Radius, Ice Shot Pierces an additional Target", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3442130499", + ["text"] = "With at least 40 Dexterity in Radius, Ice Shot has #% increased Area of Effect", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2412100590", + ["text"] = "With at least 40 Dexterity in Radius, Melee Damage dealt by Frost Blades Penetrates #% Cold Resistance", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2074744008", + ["text"] = "With at least 40 Intelligence in Radius, #% increased Freezing Pulse Damage if you've Shattered an Enemy Recently", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2098320128", + ["text"] = "With at least 40 Intelligence in Radius, Freezing Pulse fires an additional Projectile", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2727977666", + ["text"] = "With at least 40 Intelligence in Radius, Frostbolt Projectiles gain #% increased Projectile Speed per second", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3790108551", + ["text"] = "With at least 40 Intelligence in Radius, Frostbolt fires an additional Projectile", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3738331820", + ["text"] = "With at least 40 Strength in Radius, #% of Glacial Hammer Physical Damage Converted to Cold Damage", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1539696482", + ["text"] = "With at least 40 Strength in Radius, Cleave has +0.1 metres to Radius per Nearby Enemy, up to a maximum of +1 metre", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3565558422", + ["text"] = "With at least 40 Strength in Radius, Glacial Hammer deals Cold-only Splash Damage to surrounding targets", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_156016608", + ["text"] = "With at least 40 Strength in Radius, Ground Slam has a #% increased angle", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1248507170", + ["text"] = "With at least 40 Strength in Radius, Hits with Cleave Fortify", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2181791238", + ["text"] = "Wrath has #% increased Aura Effect", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3444518809", + ["text"] = "Wrath has #% increased Mana Reservation Efficiency", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3577248251", + ["text"] = "You and your Minions take #% reduced Reflected Damage", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2160417795", + ["text"] = "You and your Minions take #% reduced Reflected Elemental Damage", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_129035625", + ["text"] = "You and your Minions take #% reduced Reflected Physical Damage", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1989416016", + ["text"] = "You are Debilitated", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1766730250", + ["text"] = "You are Immune to Ailments while Focused", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_30642521", + ["text"] = "You can apply # additional Curses", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2764164760", + ["text"] = "You gain Onslaught for # seconds when Hit", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1190121450", + ["option"] = { + ["options"] = { + { + ["id"] = 1, + ["text"] = "Chilling", + }, + { + ["id"] = 2, + ["text"] = "Shocking", + }, + { + ["id"] = 3, + ["text"] = "Igniting", + }, + }, + }, + ["text"] = "You have # Conflux for 3 seconds every 8 seconds", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_880970200", + ["text"] = "You have Consecrated Ground around you while stationary", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1572897579", + ["text"] = "You have Onslaught during Soul Gain Prevention", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1085545682", + ["text"] = "You have Tailwind if you have dealt a Critical Strike Recently", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2022851697", + ["text"] = "You have Vaal Pact while Focused", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_4031081471", + ["text"] = "You take # Chaos Damage per second for # seconds on Kill", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3855016469", + ["text"] = "You take #% reduced Extra Damage from Critical Strikes", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2380848911", + ["text"] = "You take #% reduced Extra Damage from Critical Strikes per Endurance Charge", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3148879215", + ["text"] = "Your Blink and Mirror arrow clones use your Gloves", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1888494262", + ["text"] = "Your Cold Damage can Ignite", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1349659520", + ["text"] = "Your Critical Strike Chance is Lucky while Focused", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_932096321", + ["text"] = "Your Fire Damage can Shock", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3322709337", + ["text"] = "Your Hits inflict Decay, dealing 700 Chaos Damage per second for 8 seconds", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_380759151", + ["text"] = "Your Lightning Damage can Freeze", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3550168289", + ["text"] = "Your Maps are inhabited by an additional Rogue Exile", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2343561786", + ["text"] = "Your Maps contain # additional Clusters of Mysterious Barrels", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_1192252020", + ["text"] = "Your Skills that throw Mines reserve Life instead of Mana", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_335741860", + ["text"] = "Your Travel Skills Critically Strike", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3946593978", + ["text"] = "Your Warcries cover Enemies in Ash for # second", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3452963763", + ["text"] = "Your Warcries open Chests", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_4096052153", + ["text"] = "Zealotry has #% increased Aura Effect", + ["type"] = "fractured", + }, + }, + ["id"] = "fractured", + ["label"] = "Fractured", + }, + { + ["entries"] = { + { + ["id"] = "enchant.stat_4079888060", + ["text"] = "# Added Passive Skills are Jewel Sockets", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_290368246", + ["text"] = "# uses remaining", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_244125450", + ["text"] = "#% Chance for Puncture to Maim on hit", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_4243904146", + ["text"] = "#% Chance on Frenzy to gain an additional Frenzy Charge", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3232905239", + ["text"] = "#% Chance to gain a Power Charge on Critical Strike with Ice Spear", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3609207587", + ["text"] = "#% Chance to gain an additional Power Charge on Kill with Power Siphon", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1560880986", + ["text"] = "#% chance for Bleeding inflicted with this Weapon to deal 100% more Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1260718722", + ["text"] = "#% chance for Blight Chests to contain an additional Reward", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1833626118", + ["text"] = "#% chance for Discharge to deal Damage without removing Charges", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1953644681", + ["text"] = "#% chance for Immortal Call to increase Duration without removing Endurance Charges", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_4259029320", + ["text"] = "#% chance for Phase Run to increase Duration without removing Frenzy Charges", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2523146878", + ["text"] = "#% chance for Poisons inflicted with this Weapon to deal 100% more Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2705185939", + ["text"] = "#% chance to Aggravate Bleeding on targets you Hit with Attacks", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2662268382", + ["text"] = "#% chance to Avoid Elemental Ailments while you have Elusive", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3483999943", + ["text"] = "#% chance to Avoid being Chilled", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1514829491", + ["text"] = "#% chance to Avoid being Frozen", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1783006896", + ["text"] = "#% chance to Avoid being Ignited", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_4053951709", + ["text"] = "#% chance to Avoid being Poisoned", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1871765599", + ["text"] = "#% chance to Avoid being Shocked", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_4262448838", + ["text"] = "#% chance to Avoid being Stunned", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_412905518", + ["text"] = "#% chance to Avoid being Stunned if you've Killed Recently", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3024408350", + ["text"] = "#% chance to Avoid being Stunned while Channelling Snipe", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1012291104", + ["text"] = "#% chance to Blind Enemies on Hit with Spells", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_324460247", + ["text"] = "#% chance to Cover Enemies in Ash on Hit", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3235270673", + ["text"] = "#% chance to Cover Enemies in Frost on Hit", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_636057969", + ["text"] = "#% chance to Curse Enemies with Elemental Weakness on Hit", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1516661546", + ["text"] = "#% chance to Curse Enemies with Enfeeble on Hit", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2950697759", + ["text"] = "#% chance to Curse Enemies with Punishment on Hit", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2309614417", + ["text"] = "#% chance to Freeze", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3915210550", + ["text"] = "#% chance to Freeze, Shock and Ignite if you haven't Crit Recently", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1335054179", + ["text"] = "#% chance to Ignite", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_884220218", + ["text"] = "#% chance to Ignore Stuns while Casting Storm Burst", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3094222195", + ["text"] = "#% chance to Impale on Spell Hit", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3885634897", + ["text"] = "#% chance to Poison on Hit (Local)", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1925110785", + ["text"] = "#% chance to Restore your Ward on Hit", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1538773178", + ["text"] = "#% chance to Shock", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1040958896", + ["text"] = "#% chance to Summon an additional Skeleton with Summon Skeletons", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_147952811", + ["text"] = "#% chance to Trigger Commandment of Blades on Hit", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3703722637", + ["text"] = "#% chance to Trigger Commandment of Flames on Hit", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2666843091", + ["text"] = "#% chance to Trigger Commandment of Force on Hit", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1877374369", + ["text"] = "#% chance to Trigger Commandment of Frost on Kill", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1554500307", + ["text"] = "#% chance to Trigger Commandment of Fury on Hit", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2020183428", + ["text"] = "#% chance to Trigger Commandment of Inferno on Kill", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_620045439", + ["text"] = "#% chance to Trigger Commandment of Ire when Hit", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3109915337", + ["text"] = "#% chance to Trigger Commandment of Light when you take a Critical Strike", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3036365740", + ["text"] = "#% chance to Trigger Commandment of Reflection when Hit", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1259277978", + ["text"] = "#% chance to Trigger Commandment of Spite when Hit", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1988467615", + ["text"] = "#% chance to Trigger Commandment of Thunder on Kill", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_494477497", + ["text"] = "#% chance to Trigger Commandment of War on Kill", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3222886961", + ["text"] = "#% chance to Trigger Commandment of Winter when Hit", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1374371477", + ["text"] = "#% chance to Trigger Commandment of the Grave when your Skills or Minions Kill", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_4203647216", + ["text"] = "#% chance to Trigger Commandment of the Tempest on Hit", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_165958462", + ["text"] = "#% chance to Trigger Decree of Blades on Hit", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_990408262", + ["text"] = "#% chance to Trigger Decree of Flames on Hit", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2925650365", + ["text"] = "#% chance to Trigger Decree of Force on Hit", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1268512925", + ["text"] = "#% chance to Trigger Decree of Frost on Kill", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2252338738", + ["text"] = "#% chance to Trigger Decree of Fury on Hit", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1366391108", + ["text"] = "#% chance to Trigger Decree of Inferno on Kill", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1818525360", + ["text"] = "#% chance to Trigger Decree of Ire when Hit", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3641868987", + ["text"] = "#% chance to Trigger Decree of Light when you take a Critical Strike", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1792647120", + ["text"] = "#% chance to Trigger Decree of Reflection when Hit", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_889695873", + ["text"] = "#% chance to Trigger Decree of Spite when Hit", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_4152292551", + ["text"] = "#% chance to Trigger Decree of Thunder on Kill", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1106926438", + ["text"] = "#% chance to Trigger Decree of War on Kill", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2515273888", + ["text"] = "#% chance to Trigger Decree of Winter when Hit", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2187415468", + ["text"] = "#% chance to Trigger Decree of the Grave when your Skills or Minions Kill", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1671985305", + ["text"] = "#% chance to Trigger Decree of the Tempest on Hit", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2160886943", + ["text"] = "#% chance to Trigger Edict of Blades on Hit", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_786149615", + ["text"] = "#% chance to Trigger Edict of Flames on Hit", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2760193888", + ["text"] = "#% chance to Trigger Edict of Force on Hit", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_90942364", + ["text"] = "#% chance to Trigger Edict of Frost on Kill", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1153637043", + ["text"] = "#% chance to Trigger Edict of Fury on Hit", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2246143608", + ["text"] = "#% chance to Trigger Edict of Inferno on Kill", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3285719520", + ["text"] = "#% chance to Trigger Edict of Ire when Hit", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_271342637", + ["text"] = "#% chance to Trigger Edict of Light when you take a Critical Strike", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_4228580629", + ["text"] = "#% chance to Trigger Edict of Reflection when Hit", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_257027296", + ["text"] = "#% chance to Trigger Edict of Spite when Hit", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_603658709", + ["text"] = "#% chance to Trigger Edict of Thunder on Kill", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2033463878", + ["text"] = "#% chance to Trigger Edict of War on Kill", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_147678606", + ["text"] = "#% chance to Trigger Edict of Winter when Hit", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_308154324", + ["text"] = "#% chance to Trigger Edict of the Grave when your Skills or Minions Kill", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1711789839", + ["text"] = "#% chance to Trigger Edict of the Tempest on Hit", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3751996449", + ["text"] = "#% chance to Trigger Level 10 Summon Raging Spirit on Kill", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_756653426", + ["text"] = "#% chance to Trigger Word of Blades on Hit", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_891161612", + ["text"] = "#% chance to Trigger Word of Flames on Hit", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1162506883", + ["text"] = "#% chance to Trigger Word of Force on Hit", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3302747233", + ["text"] = "#% chance to Trigger Word of Frost on Kill", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3012437250", + ["text"] = "#% chance to Trigger Word of Fury on Hit", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3901337328", + ["text"] = "#% chance to Trigger Word of Inferno on Kill", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2472584898", + ["text"] = "#% chance to Trigger Word of Ire when Hit", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3111060801", + ["text"] = "#% chance to Trigger Word of Light when you take a Critical Strike", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2634094270", + ["text"] = "#% chance to Trigger Word of Reflection when Hit", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3992962185", + ["text"] = "#% chance to Trigger Word of Spite when Hit", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1350605126", + ["text"] = "#% chance to Trigger Word of Thunder on Kill", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1906144841", + ["text"] = "#% chance to Trigger Word of War on Kill", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1354248411", + ["text"] = "#% chance to Trigger Word of Winter when Hit", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2527140156", + ["text"] = "#% chance to Trigger Word of the Grave when your Skills or Minions Kill", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3610104224", + ["text"] = "#% chance to Trigger Word of the Tempest on Hit", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1519615863", + ["text"] = "#% chance to cause Bleeding on Hit", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2901262227", + ["text"] = "#% chance to create Chilled Ground when you Freeze an Enemy", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_4148932984", + ["text"] = "#% chance to create Consecrated Ground when you Shatter an Enemy", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2020183023", + ["text"] = "#% chance to create a Charged Slam", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2836003955", + ["text"] = "#% chance to create a copy of Beasts Captured in Area", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2836003955", + ["text"] = "#% chance to create a copy of Beasts Captured in your Maps", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3711386843", + ["text"] = "#% chance to create an additional Animate Weapon copy", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_562371749", + ["text"] = "#% chance to gain Chaotic Might for 10 seconds on Kill", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2896192589", + ["text"] = "#% chance to gain Elusive on Critical Strike", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1826802197", + ["text"] = "#% chance to gain a Frenzy Charge on Kill", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2483795307", + ["text"] = "#% chance to gain a Power Charge on Kill", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1054322244", + ["text"] = "#% chance to gain an Endurance Charge on Kill", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1962922582", + ["text"] = "#% chance to gain an additional Vaal Soul on Kill", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2630708439", + ["text"] = "#% chance to inflict Cold Exposure on Hit", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1960314688", + ["text"] = "#% chance to inflict Corrosion on Hit with Spells", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3602667353", + ["text"] = "#% chance to inflict Fire Exposure on Hit", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_4265906483", + ["text"] = "#% chance to inflict Lightning Exposure on Hit", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1353140041", + ["text"] = "#% chance to not consume Sextant Uses", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2558170600", + ["text"] = "#% increased Absolution Cast Speed", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1934891174", + ["text"] = "#% increased Abyssal Cry Duration", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2593021351", + ["text"] = "#% increased Accuracy Rating while you have Onslaught", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3583185303", + ["text"] = "#% increased Alchemist's Mark Curse Effect", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2977107166", + ["text"] = "#% increased Ambush Cooldown Recovery Rate", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3171507121", + ["text"] = "#% increased Ancestral Blademaster Totem Area of Effect", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_4166834934", + ["text"] = "#% increased Ancestral Blademaster Totem Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_592861938", + ["text"] = "#% increased Ancestral Protector Totem Placement Speed", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3320271130", + ["text"] = "#% increased Ancestral Warchief Totem Area of Effect", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_78239163", + ["text"] = "#% increased Ancestral Warchief Totem Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3338074370", + ["text"] = "#% increased Animate Weapon Duration", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2740567252", + ["text"] = "#% increased Arc Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3995612171", + ["text"] = "#% increased Arctic Armour Buff Effect", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_895264825", + ["text"] = "#% increased Area of Effect of Aura Skills", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1406617410", + ["text"] = "#% increased Area of Effect while you have Arcane Surge", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1961975107", + ["text"] = "#% increased Assassin's Mark Curse Effect", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1609523492", + ["text"] = "#% increased Assassin's Mark Duration", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_210067635", + ["text"] = "#% increased Attack Speed (Local)", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3331111689", + ["text"] = "#% increased Attack Speed per 8% Quality", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2513745555", + ["text"] = "#% increased Attack Speed with Snipe", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_4135304575", + ["text"] = "#% increased Attack and Cast Speed if you've Killed Recently", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3639275092", + ["text"] = "#% increased Attribute Requirements", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_788307702", + ["text"] = "#% increased Ball Lightning Area of Effect", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3152812191", + ["text"] = "#% increased Ball Lightning Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2523298357", + ["text"] = "#% increased Barrage Attack Speed", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3685345485", + ["text"] = "#% increased Barrage Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2426838124", + ["text"] = "#% increased Battlemage's Cry Buff Effect", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1877863115", + ["text"] = "#% increased Bear Trap Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3362917830", + ["text"] = "#% increased Beyond Demon Pack Size in your Maps", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2746213081", + ["text"] = "#% increased Blade Flurry Area of Effect", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_754797886", + ["text"] = "#% increased Blade Flurry Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1502095380", + ["text"] = "#% increased Blade Trap Area of Effect", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3676486210", + ["text"] = "#% increased Blade Trap Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2748553775", + ["text"] = "#% increased Blade Vortex Area of Effect", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3024867180", + ["text"] = "#% increased Blade Vortex Duration", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_4221797807", + ["text"] = "#% increased Blade Vortex Spell Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2413715772", + ["text"] = "#% increased Bladefall Area of Effect", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2833482311", + ["text"] = "#% increased Bladefall Critical Strike Chance", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3069740560", + ["text"] = "#% increased Bladefall Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2511915418", + ["text"] = "#% increased Blight Area of Effect", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1623552446", + ["text"] = "#% increased Blight Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_397438226", + ["text"] = "#% increased Bodyswap Cast Speed", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_341054435", + ["text"] = "#% increased Bodyswap Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1607493537", + ["text"] = "#% increased Bone Offering Duration", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2384264970", + ["text"] = "#% increased Boneshatter Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2742093846", + ["text"] = "#% increased Boneshatter Stun Duration", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_696995312", + ["text"] = "#% increased Burning Arrow Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2891184298", + ["text"] = "#% increased Cast Speed", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3854556792", + ["text"] = "#% increased Caustic Arrow Area of Effect", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1496334795", + ["text"] = "#% increased Caustic Arrow Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_387490713", + ["text"] = "#% increased Caustic Arrow Duration", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3196823591", + ["text"] = "#% increased Charge Recovery", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1265055278", + ["text"] = "#% increased Charged Dash Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_388617051", + ["text"] = "#% increased Charges per use", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3172519570", + ["text"] = "#% increased Cleave Area of Effect", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3106577499", + ["text"] = "#% increased Cleave Attack Speed", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1359058534", + ["text"] = "#% increased Cleave Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3371538704", + ["text"] = "#% increased Cold Snap Area of Effect", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3729006707", + ["text"] = "#% increased Cold Snap Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3395908304", + ["text"] = "#% increased Conductivity Curse Effect", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_819890745", + ["text"] = "#% increased Conductivity Duration", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1056396846", + ["text"] = "#% increased Contagion Area of Effect", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_277116504", + ["text"] = "#% increased Contagion Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2565809961", + ["text"] = "#% increased Contagion Duration", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2054059315", + ["text"] = "#% increased Convocation Buff Effect", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3529090048", + ["text"] = "#% increased Corrupting Fever Duration", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2078691497", + ["text"] = "#% increased Cost of Building and Upgrading Towers", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3816022821", + ["text"] = "#% increased Creeping Frost Area of Effect", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2846773529", + ["text"] = "#% increased Creeping Frost Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3804575865", + ["text"] = "#% increased Creeping Frost Duration", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2938856716", + ["text"] = "#% increased Cremation Cast Speed", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_4175469673", + ["text"] = "#% increased Cremation Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2375316951", + ["text"] = "#% increased Critical Strike Chance", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3010587200", + ["text"] = "#% increased Critical Strike Chance if you haven't Crit Recently", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3103053611", + ["text"] = "#% increased Critical Strike Chance per 4% Quality", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_835592326", + ["text"] = "#% increased Cyclone Attack Speed", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1454162553", + ["text"] = "#% increased Cyclone Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_957864706", + ["text"] = "#% increased Dark Pact Area of Effect", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1549594869", + ["text"] = "#% increased Dark Pact Cast Speed", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1573799461", + ["text"] = "#% increased Dark Pact Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1686675991", + ["text"] = "#% increased Decoy Totem Area of Effect", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1631824124", + ["text"] = "#% increased Decoy Totem Life", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2679945072", + ["text"] = "#% increased Desecrate Duration", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3185156108", + ["text"] = "#% increased Despair Curse Effect", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_683073695", + ["text"] = "#% increased Despair Duration", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_728213819", + ["text"] = "#% increased Destructive Link Duration", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_482660590", + ["text"] = "#% increased Detonate Dead Area of Effect", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3087527696", + ["text"] = "#% increased Detonate Dead Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3317752680", + ["text"] = "#% increased Devouring Totem Leech per second", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1935930829", + ["text"] = "#% increased Discharge Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1743954272", + ["text"] = "#% increased Discharge Radius", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2661979205", + ["text"] = "#% increased Dominating Blow Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2779309910", + ["text"] = "#% increased Double Strike Attack Speed", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1201942540", + ["text"] = "#% increased Double Strike Critical Strike Chance", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1809965314", + ["text"] = "#% increased Double Strike Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1917107304", + ["text"] = "#% increased Dual Strike Attack Speed", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2729530556", + ["text"] = "#% increased Dual Strike Critical Strike Chance", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2094069860", + ["text"] = "#% increased Dual Strike Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1256719186", + ["text"] = "#% increased Duration", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_495713612", + ["text"] = "#% increased Duration of Shrine Effects on Players", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_495713612", + ["text"] = "#% increased Duration of Shrine Effects on Players in your Maps", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_684174846", + ["text"] = "#% increased Earthquake Area of Effect", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1697080607", + ["text"] = "#% increased Earthquake Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2843908086", + ["text"] = "#% increased Effect of Curses applied by Bane", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3444629796", + ["text"] = "#% increased Effect of Curses on you while on Consecrated Ground", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2420972973", + ["text"] = "#% increased Effect of the Buff granted by your Carrion Golems", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1648511635", + ["text"] = "#% increased Effect of the Buff granted by your Chaos Golems", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_269930125", + ["text"] = "#% increased Effect of the Buff granted by your Flame Golems", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2250111474", + ["text"] = "#% increased Effect of the Buff granted by your Ice Golems", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2527931375", + ["text"] = "#% increased Effect of the Buff granted by your Lightning Golems", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2284801675", + ["text"] = "#% increased Effect of the Buff granted by your Stone Golems", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1151217691", + ["text"] = "#% increased Elemental Hit Attack Speed", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3348324479", + ["text"] = "#% increased Elemental Weakness Curse Effect", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2690620076", + ["text"] = "#% increased Elemental Weakness Duration", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1170174456", + ["text"] = "#% increased Endurance Charge Duration", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_241781316", + ["text"] = "#% increased Enduring Cry Buff Effect", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2339757871", + ["text"] = "#% increased Energy Shield Recharge Rate", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3293830776", + ["text"] = "#% increased Enfeeble Curse Effect", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_516587640", + ["text"] = "#% increased Enfeeble Duration", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3469967347", + ["text"] = "#% increased Essence Drain Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3698833303", + ["text"] = "#% increased Essence Drain Duration", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3514973342", + ["text"] = "#% increased Ethereal Knives Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_760994068", + ["text"] = "#% increased Ethereal Knives Projectile Speed", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_57434274", + ["text"] = "#% increased Experience gain (Maps)", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3086446674", + ["text"] = "#% increased Explicit Ailment Modifier magnitudes", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3243861579", + ["text"] = "#% increased Explicit Attribute Modifier magnitudes", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1498186316", + ["text"] = "#% increased Explicit Caster Damage Modifier magnitudes", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3196512240", + ["text"] = "#% increased Explicit Chaos Modifier magnitudes", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3206904707", + ["text"] = "#% increased Explicit Cold Modifier magnitudes", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2393315299", + ["text"] = "#% increased Explicit Critical Modifier magnitudes", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2979443822", + ["text"] = "#% increased Explicit Damage Modifier magnitudes", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3300369861", + ["text"] = "#% increased Explicit Defence Modifier magnitudes", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3574578302", + ["text"] = "#% increased Explicit Fire Modifier magnitudes", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1308141466", + ["text"] = "#% increased Explicit Life Modifier magnitudes", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3624940721", + ["text"] = "#% increased Explicit Lightning Modifier magnitudes", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3514984677", + ["text"] = "#% increased Explicit Mana Modifier magnitudes", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1335369947", + ["text"] = "#% increased Explicit Physical Modifier magnitudes", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1972391381", + ["text"] = "#% increased Explicit Resistance Modifier magnitudes", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_363924732", + ["text"] = "#% increased Explicit Speed Modifier magnitudes", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_4100281103", + ["text"] = "#% increased Explosive Concoction Area of Effect", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_383710904", + ["text"] = "#% increased Explosive Concoction Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_292721070", + ["text"] = "#% increased Exsanguinate Duration", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1015388938", + ["text"] = "#% increased Eye of Winter Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1739537617", + ["text"] = "#% increased Eye of Winter Projectile Speed", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3013187834", + ["text"] = "#% increased Fire Damage per 1% Fire Resistance above 75%", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3211417111", + ["text"] = "#% increased Fire Nova Cast Speed", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2575601188", + ["text"] = "#% increased Fire Nova Mine Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_345703394", + ["text"] = "#% increased Fire Trap Burning Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3279786746", + ["text"] = "#% increased Fire Trap Burning Ground Duration", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_181307038", + ["text"] = "#% increased Fire Trap Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2231403318", + ["text"] = "#% increased Fireball Cast Speed", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2600498881", + ["text"] = "#% increased Fireball Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2201904285", + ["text"] = "#% increased Firestorm Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1691710359", + ["text"] = "#% increased Firestorm Duration", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3931013900", + ["text"] = "#% increased Firestorm explosion Area of Effect", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3013068851", + ["text"] = "#% increased Flame Dash Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3996051430", + ["text"] = "#% increased Flame Link Duration", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1030003515", + ["text"] = "#% increased Flame Surge Critical Strike Chance", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1491182794", + ["text"] = "#% increased Flame Surge Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_430890565", + ["text"] = "#% increased Flame Surge Damage with Hits and Ailments against Burning Enemies", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1532964880", + ["text"] = "#% increased Flameblast Area of Effect", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3053448465", + ["text"] = "#% increased Flameblast Critical Strike Chance", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_169405468", + ["text"] = "#% increased Flameblast Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1251350365", + ["text"] = "#% increased Flamethrower Trap Throwing Speed", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_282417259", + ["text"] = "#% increased Flammability Curse Effect", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2166622264", + ["text"] = "#% increased Flammability Duration", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3741323227", + ["text"] = "#% increased Flask Effect Duration", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_101788216", + ["text"] = "#% increased Flesh Offering Duration", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_464448327", + ["text"] = "#% increased Flicker Strike Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3701991680", + ["text"] = "#% increased Flicker Strike Damage per Frenzy Charge", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3383175526", + ["text"] = "#% increased Forbidden Rite Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3316480899", + ["text"] = "#% increased Forbidden Rite Projectile Speed", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2035168499", + ["text"] = "#% increased Freeze Mine Area of Effect", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1894493605", + ["text"] = "#% increased Freezing Pulse Cast Speed", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_819852672", + ["text"] = "#% increased Freezing Pulse Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2003026405", + ["text"] = "#% increased Freezing Pulse Projectile Speed", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3338298622", + ["text"] = "#% increased Frenzy Charge Duration", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_522780692", + ["text"] = "#% increased Frenzy Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1255310381", + ["text"] = "#% increased Frenzy Damage per Frenzy Charge", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3449510470", + ["text"] = "#% increased Frost Blades Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1087923932", + ["text"] = "#% increased Frost Blades Projectile Speed", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1451372148", + ["text"] = "#% increased Frost Bomb Area of Effect", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2380598805", + ["text"] = "#% increased Frost Bomb Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_775034903", + ["text"] = "#% increased Frost Wall Duration", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1443215722", + ["text"] = "#% increased Frostbite Curse Effect", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1783696476", + ["text"] = "#% increased Frostbite Duration", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_4231484190", + ["text"] = "#% increased Frostbolt Cast Speed", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2078274993", + ["text"] = "#% increased Frostbolt Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_354556858", + ["text"] = "#% increased Galvanic Arrow Area of Effect", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2634945088", + ["text"] = "#% increased Galvanic Arrow Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_88796379", + ["text"] = "#% increased Glacial Cascade Area of Effect", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_451037529", + ["text"] = "#% increased Glacial Cascade Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2732675053", + ["text"] = "#% increased Glacial Hammer Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3061969105", + ["text"] = "#% increased Ground Slam Area of Effect", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_108883700", + ["text"] = "#% increased Ground Slam Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_343849491", + ["text"] = "#% increased Heavy Strike Attack Speed", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_954135826", + ["text"] = "#% increased Heavy Strike Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_767884542", + ["text"] = "#% increased Herald of Ash Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3910961021", + ["text"] = "#% increased Herald of Ice Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_558298545", + ["text"] = "#% increased Herald of Thunder Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_4202548383", + ["text"] = "#% increased Holy Sweep Area of Effect", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_253870897", + ["text"] = "#% increased Holy Sweep Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3930497977", + ["text"] = "#% increased Ice Crash Area of Effect", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1794090421", + ["text"] = "#% increased Ice Crash Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_68809719", + ["text"] = "#% increased Ice Nova Area of Effect", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1086309398", + ["text"] = "#% increased Ice Nova Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1962401751", + ["text"] = "#% increased Ice Shot Area of Effect", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3026752303", + ["text"] = "#% increased Ice Shot Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2600949388", + ["text"] = "#% increased Ice Shot Duration", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3510848926", + ["text"] = "#% increased Ice Spear Critical Strike Chance in second form", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2423221070", + ["text"] = "#% increased Ice Spear Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3367298564", + ["text"] = "#% increased Ice Trap Area of Effect", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_4224384031", + ["text"] = "#% increased Ice Trap Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3976295500", + ["text"] = "#% increased Icicle Mine Throwing Speed", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1336543283", + ["text"] = "#% increased Immortal Call Duration", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2246425134", + ["text"] = "#% increased Incinerate Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_4151555126", + ["text"] = "#% increased Incinerate Damage for each stage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_4031295671", + ["text"] = "#% increased Infernal Blow Area of Effect", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_242838571", + ["text"] = "#% increased Infernal Blow Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_780453137", + ["text"] = "#% increased Infernal Cry Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1682417271", + ["text"] = "#% increased Intelligence gained from Immortal Syndicate targets", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1682417271", + ["text"] = "#% increased Intelligence gained from Immortal Syndicate targets encountered in your Maps", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3545503197", + ["text"] = "#% increased Intuitive Link Duration", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1660758870", + ["text"] = "#% increased Kinetic Blast Area of Effect", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1007135105", + ["text"] = "#% increased Kinetic Blast Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3854723321", + ["text"] = "#% increased Lacerate Area of Effect", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_578067404", + ["text"] = "#% increased Lacerate Critical Strike Chance", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1844721010", + ["text"] = "#% increased Lacerate Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3367800526", + ["text"] = "#% increased Leap Slam Area of Effect", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3730999759", + ["text"] = "#% increased Leap Slam Attack Speed", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3850775143", + ["text"] = "#% increased Leap Slam Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1263695895", + ["text"] = "#% increased Light Radius", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_4129421630", + ["text"] = "#% increased Lightning Arrow Area of Effect", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2896672990", + ["text"] = "#% increased Lightning Arrow Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1978232370", + ["text"] = "#% increased Lightning Spire Trap Throwing Speed", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3630274354", + ["text"] = "#% increased Lightning Strike Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1230050013", + ["text"] = "#% increased Lightning Tendrils Area of Effect", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_12756171", + ["text"] = "#% increased Lightning Tendrils Critical Strike Chance", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_39356080", + ["text"] = "#% increased Lightning Tendrils Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3131492956", + ["text"] = "#% increased Lightning Trap Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_4210927948", + ["text"] = "#% increased Lightning Trap Lightning Ailment Effect", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1347575155", + ["text"] = "#% increased Lightning Warp Cast Speed", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_209345940", + ["text"] = "#% increased Lightning Warp Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1714706956", + ["text"] = "#% increased Magic Pack Size", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1409388882", + ["text"] = "#% increased Mana Regeneration Rate if you've cast a Spell Recently", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1341061286", + ["text"] = "#% increased Mana Reservation Efficiency of Skills Supported by Spellslinger", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3305838454", + ["text"] = "#% increased Mana Reservation Efficiency of Skills Supported by Spellslinger", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_441455463", + ["text"] = "#% increased Manabond Area of Effect", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1609869231", + ["text"] = "#% increased Manabond Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1949390531", + ["text"] = "#% increased Molten Shell Buff Effect", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_815390778", + ["text"] = "#% increased Molten Shell Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2524620107", + ["text"] = "#% increased Molten Strike Area of Effect", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2038865857", + ["text"] = "#% increased Molten Strike Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2306522833", + ["text"] = "#% increased Monster Movement Speed", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2250533757", + ["text"] = "#% increased Movement Speed", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_308396001", + ["text"] = "#% increased Movement Speed if you haven't been Hit Recently", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2875508213", + ["text"] = "#% increased Orb of Storms Area of Effect", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_168538372", + ["text"] = "#% increased Orb of Storms Critical Strike Chance", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2130041903", + ["text"] = "#% increased Pack Size in your Unidentified Maps", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2556095677", + ["text"] = "#% increased Phase Run Duration", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1509134228", + ["text"] = "#% increased Physical Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3278819254", + ["text"] = "#% increased Poacher's Mark Curse Effect", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_4227497218", + ["text"] = "#% increased Poacher's Mark Duration", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2011656677", + ["text"] = "#% increased Poison Duration", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3892584986", + ["text"] = "#% increased Poisonous Concoction Area of Effect", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_295557151", + ["text"] = "#% increased Poisonous Concoction Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3872306017", + ["text"] = "#% increased Power Charge Duration", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2753191013", + ["text"] = "#% increased Power Siphon Attack Speed", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_78767457", + ["text"] = "#% increased Power Siphon Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3917923501", + ["text"] = "#% increased Protective Link Duration", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3496292484", + ["text"] = "#% increased Puncture Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3186938438", + ["text"] = "#% increased Puncture Duration", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2844206732", + ["text"] = "#% increased Punishment Curse Effect", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1924239636", + ["text"] = "#% increased Punishment Duration", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_253956903", + ["text"] = "#% increased Quantity of Gold Dropped by Slain Enemies", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3664950032", + ["text"] = "#% increased Quantity of Gold Dropped by Slain Enemies", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_98212089", + ["text"] = "#% increased Quantity of Items found in your Unidentified Maps", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2194261591", + ["text"] = "#% increased Rage Effect", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3988628118", + ["text"] = "#% increased Rage Vortex Area of Effect", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3153431030", + ["text"] = "#% increased Rage Vortex Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2205814812", + ["text"] = "#% increased Rain of Arrows Area of Effect", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3825617457", + ["text"] = "#% increased Rain of Arrows Attack Speed", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3432170876", + ["text"] = "#% increased Rain of Arrows Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_4147277532", + ["text"] = "#% increased Rallying Cry Buff Effect", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_865263728", + ["text"] = "#% increased Rallying Cry Buff Effect", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_945725535", + ["text"] = "#% increased Rallying Cry Buff Effect", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_4199670252", + ["text"] = "#% increased Rallying Cry Duration", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_647221668", + ["text"] = "#% increased Reap Area of Effect", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_862824495", + ["text"] = "#% increased Reave Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1486490067", + ["text"] = "#% increased Reave Radius", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_308326229", + ["text"] = "#% increased Reckoning Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1588572574", + ["text"] = "#% increased Rejuvenation Totem Aura Effect", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2430635444", + ["text"] = "#% increased Righteous Fire Area of Effect", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3359178310", + ["text"] = "#% increased Righteous Fire Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_4071708873", + ["text"] = "#% increased Riposte Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1646093658", + ["text"] = "#% increased Rolling Magma Area of Effect", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_600891507", + ["text"] = "#% increased Rolling Magma Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3279758713", + ["text"] = "#% increased Scorching Ray Cast Speed", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3395096718", + ["text"] = "#% increased Scorching Ray Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_702909553", + ["text"] = "#% increased Scorching Ray beam length", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2298223148", + ["text"] = "#% increased Searing Bond Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2519689029", + ["text"] = "#% increased Searing Bond Totem Elemental Resistances", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_708179348", + ["text"] = "#% increased Searing Bond Totem Placement Speed", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1778800422", + ["text"] = "#% increased Sentinel of Absolution Duration", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3772643988", + ["text"] = "#% increased Sentinel of Dominance Duration", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_648343221", + ["text"] = "#% increased Shield Charge Attack Speed", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3490662882", + ["text"] = "#% increased Shield Charge Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3208939528", + ["text"] = "#% increased Shield Charge Damage per Enemy Hit", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1948292587", + ["text"] = "#% increased Shield Crush Attack Speed", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1451671945", + ["text"] = "#% increased Shield Crush Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_565901339", + ["text"] = "#% increased Shock Nova Area of Effect", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3948894096", + ["text"] = "#% increased Shock Nova Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1153159301", + ["text"] = "#% increased Shockwave Totem Area of Effect", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2259906777", + ["text"] = "#% increased Shockwave Totem Cast Speed", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2440551805", + ["text"] = "#% increased Shockwave Totem Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3719728947", + ["text"] = "#% increased Smoke Mine Duration", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3975033889", + ["text"] = "#% increased Soul Link Duration", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1208019382", + ["text"] = "#% increased Spark Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_103922739", + ["text"] = "#% increased Spark Projectile Speed", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_183131376", + ["text"] = "#% increased Spectral Helix Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1952647315", + ["text"] = "#% increased Spectral Helix Projectile Speed", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1891516164", + ["text"] = "#% increased Spectral Shield Throw Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1561141582", + ["text"] = "#% increased Spectral Shield Throw Projectile Speed", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3755794090", + ["text"] = "#% increased Spectral Throw Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1062615953", + ["text"] = "#% increased Spectral Throw Projectile Speed", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_737908626", + ["text"] = "#% increased Spell Critical Strike Chance", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2974417149", + ["text"] = "#% increased Spell Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1063173946", + ["text"] = "#% increased Spirit Offering Duration", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1028884162", + ["text"] = "#% increased Split Arrow Critical Strike Chance", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2555469486", + ["text"] = "#% increased Split Arrow Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2685860927", + ["text"] = "#% increased Static Strike Area of Effect", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_551375258", + ["text"] = "#% increased Static Strike Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2906742892", + ["text"] = "#% increased Static Strike Duration", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3961497709", + ["text"] = "#% increased Storm Burst Area of Effect", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2948719994", + ["text"] = "#% increased Storm Burst Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2070247068", + ["text"] = "#% increased Storm Call Area of Effect", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3359777583", + ["text"] = "#% increased Storm Call Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1463790510", + ["text"] = "#% increased Storm Rain Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_82475304", + ["text"] = "#% increased Summon Reaper Cooldown Recovery Rate", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2121581717", + ["text"] = "#% increased Tempest Shield Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1662974426", + ["text"] = "#% increased Temporal Chains Curse Effect", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_888039248", + ["text"] = "#% increased Temporal Chains Duration", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1866415366", + ["text"] = "#% increased Tornado Area of Effect", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2681941384", + ["text"] = "#% increased Tornado Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1815368527", + ["text"] = "#% increased Tornado Shot Critical Strike Chance", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3555919553", + ["text"] = "#% increased Tornado Shot Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3374165039", + ["text"] = "#% increased Totem Placement speed", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2387717928", + ["text"] = "#% increased Unearth Cast Speed", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3953599026", + ["text"] = "#% increased Unearth Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1238426677", + ["text"] = "#% increased Vampiric Link Duration", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1972101281", + ["text"] = "#% increased Vengeance Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2287764959", + ["text"] = "#% increased Vigilant Strike Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3734756042", + ["text"] = "#% increased Viper Strike Critical Strike Chance", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2585271359", + ["text"] = "#% increased Viper Strike Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3869217625", + ["text"] = "#% increased Viper Strike Duration", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3179781611", + ["text"] = "#% increased Volatile Dead Cast Speed", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1212590278", + ["text"] = "#% increased Volatile Dead Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2982851186", + ["text"] = "#% increased Voltaxic Burst Area of Effect", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2913890852", + ["text"] = "#% increased Voltaxic Burst Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1730614496", + ["text"] = "#% increased Vortex Area of Effect", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_200942664", + ["text"] = "#% increased Vortex Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_4074562940", + ["text"] = "#% increased Vortex Duration", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1065909420", + ["text"] = "#% increased Vulnerability Curse Effect", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3229878341", + ["text"] = "#% increased Vulnerability Duration", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1528965411", + ["text"] = "#% increased Warlord's Mark Curse Effect", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3766479096", + ["text"] = "#% increased Warlord's Mark Duration", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1902197291", + ["text"] = "#% increased Whirling Blades Attack Speed", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3723124286", + ["text"] = "#% increased Whirling Blades Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_524936200", + ["text"] = "#% increased Wild Strike Area of Effect", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1666713639", + ["text"] = "#% increased Wild Strike Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2448920197", + ["text"] = "#% increased effect", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_429193272", + ["text"] = "#% increased time before Lockdown", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2633745731", + ["text"] = "#% increased total Recovery per second from Life Leech", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_690135178", + ["text"] = "#% increased total Recovery per second from Mana Leech", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1187817277", + ["text"] = "#% more Quantity of Items found", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3009603087", + ["text"] = "#% more Rogue's Marker value of primary Heist Target", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2186742030", + ["text"] = "#% of Attack Physical Damage Converted to Cold Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_796222013", + ["text"] = "#% of Attack Physical Damage Converted to Fire Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1188616832", + ["text"] = "#% of Attack Physical Damage Converted to Lightning Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3229580299", + ["text"] = "#% of Burning Arrow Physical Damage gained as Extra Fire Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2379258771", + ["text"] = "#% of Cold Damage Converted to Chaos Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_4291115328", + ["text"] = "#% of Damage Leeched as Life if you've Killed Recently", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_472520716", + ["text"] = "#% of Damage taken Recouped as Mana", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1943147282", + ["text"] = "#% of Galvanic Arrow Physical Damage gained as extra Lightning Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1154155584", + ["text"] = "#% of Glacial Cascade Physical Damage Converted to Cold Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2555366825", + ["text"] = "#% of Glacial Hammer Physical Damage gained as Extra Cold Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3465202861", + ["text"] = "#% of Ice Crash Physical Damage gained as Extra Cold Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2484188706", + ["text"] = "#% of Infernal Blow Physical Damage gained as Extra Fire Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_55876295", + ["text"] = "#% of Physical Attack Damage Leeched as Life (Local)", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_669069897", + ["text"] = "#% of Physical Attack Damage Leeched as Mana (Local)", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1243906675", + ["text"] = "#% reduced Ball Lightning Projectile Speed", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3917881666", + ["text"] = "#% reduced Earthquake Duration", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1478653032", + ["text"] = "#% reduced Effect of Chill on you", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3801067695", + ["text"] = "#% reduced Effect of Shock on you", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_832404842", + ["text"] = "#% reduced Enemy Stun Threshold with this Weapon", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2160282525", + ["text"] = "#% reduced Freeze Duration on you", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_986397080", + ["text"] = "#% reduced Ignite Duration on you", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_609478942", + ["text"] = "#% reduced Lightning Warp Duration", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3693451031", + ["text"] = "#% reduced Mana Cost of Skills if you've been Hit Recently", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_248838155", + ["text"] = "#% reduced Reflected Elemental Damage taken", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3158958938", + ["text"] = "#% reduced Reflected Physical Damage taken", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_444686294", + ["text"] = "#% reduced Spectral Throw Projectile Deceleration", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1843506018", + ["text"] = "#% reduced Storm Call Duration", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2716178075", + ["text"] = "+# metre to Discharge radius", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2967267655", + ["text"] = "+# metre to Weapon Range per 10% Quality", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_350598685", + ["text"] = "+# metres to Weapon Range", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_153004860", + ["text"] = "+# to Armour while Fortified", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3169671355", + ["text"] = "+# to Evasion Rating while you have Phasing", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_829382474", + ["text"] = "+# to Level of Socketed Melee Gems", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_4226189338", + ["text"] = "+# to Level of all Chaos Spell Skill Gems", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2254480358", + ["text"] = "+# to Level of all Cold Spell Skill Gems", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_591105508", + ["text"] = "+# to Level of all Fire Spell Skill Gems", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1545858329", + ["text"] = "+# to Level of all Lightning Spell Skill Gems", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2162097452", + ["text"] = "+# to Level of all Minion Skill Gems", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1600707273", + ["text"] = "+# to Level of all Physical Spell Skill Gems", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_124131830", + ["text"] = "+# to Level of all Spell Skill Gems", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_4218649240", + ["text"] = "+# to Maximum Blood Charges", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1437957544", + ["text"] = "+# to Maximum Charges", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1662993931", + ["text"] = "+# to Maximum number of Bladestorms at a time", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1239233415", + ["text"] = "+# to maximum Snipe Stages", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_4099204231", + ["text"] = "+# to maximum Sockets", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1531456858", + ["text"] = "+# to maximum number of Flame Walls", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2836937264", + ["text"] = "+# to maximum number of Sentinels of Purity", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2821079699", + ["text"] = "+# to maximum number of Summoned Golems", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2166444903", + ["text"] = "+#% Chance to Block Attack Damage while Dual Wielding", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_4118537428", + ["text"] = "+#% Holy Sweep Knockback Chance", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1503864797", + ["text"] = "+#% chance to Suppress Spell Damage if you've taken Spell Damage Recently", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2076926581", + ["text"] = "+#% chance to Suppress Spell Damage while your Off Hand is empty", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1298820272", + ["text"] = "+#% increased Flame Golem Elemental Resistances", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1220207954", + ["text"] = "+#% to Ancestral Protector Totem Elemental Resistances", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2094281311", + ["text"] = "+#% to Animated Guardian Elemental Resistances", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1946386823", + ["text"] = "+#% to Chaos Golem Elemental Resistances", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1781630546", + ["text"] = "+#% to Damage over Time Multiplier for Ailments from Critical Strikes", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2520825974", + ["text"] = "+#% to Ice Golem Elemental Resistances", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2338484156", + ["text"] = "+#% to Lightning Golem Elemental Resistances", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_4264358613", + ["text"] = "+#% to Maximum Effect of Shock", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_27640220", + ["text"] = "+#% to Raised Spectre Elemental Resistances", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1601558321", + ["text"] = "+#% to Stone Golem Elemental Resistances", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_865345996", + ["text"] = "+1 to maximum Blade Flurry stages", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_634375806", + ["text"] = "20% chance to Summon an additional Skeleton with Summon Skeletons", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3948993189", + ["option"] = { + ["options"] = { + { + ["id"] = 1, + ["text"] = "Axe Attacks deal 12% increased Damage with Hits and Ailments Sword Attacks deal 12% increased Damage with Hits and Ailments", + }, + { + ["id"] = 2, + ["text"] = "Staff Attacks deal 12% increased Damage with Hits and Ailments Mace or Sceptre Attacks deal 12% increased Damage with Hits and Ailments", + }, + { + ["id"] = 3, + ["text"] = "Claw Attacks deal 12% increased Damage with Hits and Ailments Dagger Attacks deal 12% increased Damage with Hits and Ailments", + }, + { + ["id"] = 4, + ["text"] = "12% increased Damage with Bows 12% increased Damage Over Time with Bow Skills", + }, + { + ["id"] = 5, + ["text"] = "Wand Attacks deal 12% increased Damage with Hits and Ailments", + }, + { + ["id"] = 6, + ["text"] = "12% increased Damage with Two Handed Weapons", + }, + { + ["id"] = 7, + ["text"] = "12% increased Attack Damage while Dual Wielding", + }, + { + ["id"] = 8, + ["text"] = "12% increased Attack Damage while holding a Shield", + }, + { + ["id"] = 9, + ["text"] = "10% increased Attack Damage", + }, + { + ["id"] = 10, + ["text"] = "10% increased Spell Damage", + }, + { + ["id"] = 11, + ["text"] = "10% increased Elemental Damage", + }, + { + ["id"] = 12, + ["text"] = "12% increased Physical Damage", + }, + { + ["id"] = 13, + ["text"] = "12% increased Fire Damage", + }, + { + ["id"] = 14, + ["text"] = "12% increased Lightning Damage", + }, + { + ["id"] = 15, + ["text"] = "12% increased Cold Damage", + }, + { + ["id"] = 16, + ["text"] = "12% increased Chaos Damage", + }, + { + ["id"] = 17, + ["text"] = "Minions deal 10% increased Damage", + }, + { + ["id"] = 18, + ["text"] = "12% increased Burning Damage", + }, + { + ["id"] = 19, + ["text"] = "12% increased Chaos Damage over Time", + }, + { + ["id"] = 20, + ["text"] = "12% increased Physical Damage over Time", + }, + { + ["id"] = 21, + ["text"] = "12% increased Cold Damage over Time", + }, + { + ["id"] = 22, + ["text"] = "10% increased Damage over Time", + }, + { + ["id"] = 23, + ["text"] = "10% increased Effect of Non-Damaging Ailments", + }, + { + ["id"] = 24, + ["text"] = "3% increased effect of Non-Curse Auras from your Skills (Legacy)", + }, + { + ["id"] = 25, + ["text"] = "2% increased Effect of your Curses (Legacy)", + }, + { + ["id"] = 26, + ["text"] = "10% increased Damage while affected by a Herald", + }, + { + ["id"] = 27, + ["text"] = "Minions deal 10% increased Damage while you are affected by a Herald", + }, + { + ["id"] = 28, + ["text"] = "Exerted Attacks deal 20% increased Damage", + }, + { + ["id"] = 29, + ["text"] = "15% increased Critical Strike Chance", + }, + { + ["id"] = 30, + ["text"] = "Minions have 12% increased maximum Life", + }, + { + ["id"] = 31, + ["text"] = "10% increased Area Damage", + }, + { + ["id"] = 32, + ["text"] = "10% increased Projectile Damage", + }, + { + ["id"] = 33, + ["text"] = "12% increased Trap Damage 12% increased Mine Damage", + }, + { + ["id"] = 34, + ["text"] = "12% increased Totem Damage", + }, + { + ["id"] = 35, + ["text"] = "12% increased Brand Damage", + }, + { + ["id"] = 36, + ["text"] = "Channelling Skills deal 12% increased Damage", + }, + { + ["id"] = 37, + ["text"] = "6% increased Flask Effect Duration", + }, + { + ["id"] = 38, + ["text"] = "10% increased Life Recovery from Flasks 10% increased Mana Recovery from Flasks", + }, + { + ["id"] = 39, + ["text"] = "4% increased maximum Life", + }, + { + ["id"] = 40, + ["text"] = "6% increased maximum Energy Shield", + }, + { + ["id"] = 41, + ["text"] = "6% increased maximum Mana", + }, + { + ["id"] = 42, + ["text"] = "15% increased Armour", + }, + { + ["id"] = 43, + ["text"] = "15% increased Evasion Rating", + }, + { + ["id"] = 44, + ["text"] = "+2% Chance to Block Attack Damage", + }, + { + ["id"] = 45, + ["text"] = "2% Chance to Block Spell Damage", + }, + { + ["id"] = 46, + ["text"] = "+15% to Fire Resistance", + }, + { + ["id"] = 47, + ["text"] = "+15% to Cold Resistance", + }, + { + ["id"] = 48, + ["text"] = "+15% to Lightning Resistance", + }, + { + ["id"] = 49, + ["text"] = "+12% to Chaos Resistance", + }, + { + ["id"] = 50, + ["text"] = "+4% chance to Suppress Spell Damage", + }, + { + ["id"] = 51, + ["text"] = "+10 to Strength", + }, + { + ["id"] = 52, + ["text"] = "+10 to Dexterity", + }, + { + ["id"] = 53, + ["text"] = "+10 to Intelligence", + }, + { + ["id"] = 54, + ["text"] = "6% increased Mana Reservation Efficiency of Skills", + }, + { + ["id"] = 55, + ["text"] = "2% increased Effect of your Curses", + }, + }, + }, + ["text"] = "Added Small Passive Skills grant: #", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3086156145", + ["text"] = "Adds # Passive Skills", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2223678961", + ["text"] = "Adds # to # Chaos Damage (Local)", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_391609701", + ["text"] = "Adds # to # Chaos Damage if you've taken a Critical Strike Recently", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1037193709", + ["text"] = "Adds # to # Cold Damage (Local)", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_884399432", + ["text"] = "Adds # to # Cold Damage if you've been Hit Recently", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_709508406", + ["text"] = "Adds # to # Fire Damage (Local)", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3077703716", + ["text"] = "Adds # to # Fire Damage if you've Killed Recently", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3336890334", + ["text"] = "Adds # to # Lightning Damage (Local)", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1293597434", + ["text"] = "Adds # to # Lightning Damage if you haven't Killed Recently", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2566313732", + ["text"] = "Adds #% of your Maximum Energy Shield as Cold Damage to Attacks with this Weapon", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_4107994326", + ["text"] = "Adds #% of your Maximum Mana as Fire Damage to Attacks with this Weapon", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2740018301", + ["text"] = "All Sockets Linked", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2803653753", + ["text"] = "All Sockets are Blue", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2849380136", + ["text"] = "All Sockets are Green", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1918718830", + ["text"] = "All Sockets are Red", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1959522666", + ["text"] = "All Towers in range of your Empowering Towers have #% chance to deal Double Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2954116742", + ["option"] = { + ["options"] = { + { + ["id"] = 4918, + ["text"] = "Indiscriminate Revenge", + }, + { + ["id"] = 15226, + ["text"] = "Cruel Retort", + }, + { + ["id"] = 2599, + ["text"] = "Prepared Response", + }, + { + ["id"] = 59976, + ["text"] = "Careful Counterattack", + }, + { + ["id"] = 37425, + ["text"] = "Practised Reapplication", + }, + { + ["id"] = 41305, + ["text"] = "Crushing Reply", + }, + { + ["id"] = 34978, + ["text"] = "Colloidal Mixture", + }, + { + ["id"] = 56330, + ["text"] = "Flow of Battle", + }, + { + ["id"] = 64226, + ["text"] = "Roaring Challenge", + }, + { + ["id"] = 52030, + ["text"] = "Burst of Energy", + }, + { + ["id"] = 30160, + ["text"] = "Fending", + }, + { + ["id"] = 24716, + ["text"] = "Battle Trance", + }, + { + ["id"] = 18357, + ["text"] = "Feline Swiftness", + }, + { + ["id"] = 23690, + ["text"] = "Essence Infusion", + }, + { + ["id"] = 10542, + ["text"] = "Spiked Bulwark", + }, + { + ["id"] = 37078, + ["text"] = "Path of the Savant", + }, + { + ["id"] = 12702, + ["text"] = "Path of the Warrior", + }, + { + ["id"] = 19506, + ["text"] = "Path of the Hunter", + }, + { + ["id"] = 38516, + ["text"] = "Righteous Decree", + }, + { + ["id"] = 63150, + ["text"] = "Ironwood", + }, + { + ["id"] = 16243, + ["text"] = "Fusillade", + }, + { + ["id"] = 2715, + ["text"] = "Quickstep", + }, + { + ["id"] = 52230, + ["text"] = "Weathered Hunter", + }, + { + ["id"] = 21435, + ["text"] = "Cloth and Chain", + }, + { + ["id"] = 31033, + ["text"] = "Robust", + }, + { + ["id"] = 65224, + ["text"] = "Aspect of the Eagle", + }, + { + ["id"] = 24256, + ["text"] = "Dynamo", + }, + { + ["id"] = 21973, + ["text"] = "Decay Ward", + }, + { + ["id"] = 45067, + ["text"] = "Thrill Killer", + }, + { + ["id"] = 24067, + ["text"] = "Instinct", + }, + { + ["id"] = 1382, + ["text"] = "Spirit Void", + }, + { + ["id"] = 529, + ["text"] = "Poisonous Fangs", + }, + { + ["id"] = 46965, + ["text"] = "Saboteur", + }, + { + ["id"] = 47484, + ["text"] = "Depth Perception", + }, + { + ["id"] = 42686, + ["text"] = "Elemental Focus", + }, + { + ["id"] = 27929, + ["text"] = "Deep Wisdom", + }, + { + ["id"] = 27806, + ["text"] = "As The Thunder", + }, + { + ["id"] = 27301, + ["text"] = "Martial Experience", + }, + { + ["id"] = 60002, + ["text"] = "Fury Bolts", + }, + { + ["id"] = 6783, + ["text"] = "Savage Skewering", + }, + { + ["id"] = 5289, + ["text"] = "Battle Rouse", + }, + { + ["id"] = 27190, + ["text"] = "Overprepared", + }, + { + ["id"] = 20832, + ["text"] = "Sanctuary", + }, + { + ["id"] = 49645, + ["text"] = "Cauterisation", + }, + { + ["id"] = 7440, + ["text"] = "Harvester of Foes", + }, + { + ["id"] = 8135, + ["text"] = "Practical Application", + }, + { + ["id"] = 46408, + ["text"] = "Fangs of the Viper", + }, + { + ["id"] = 10016, + ["text"] = "Executioner", + }, + { + ["id"] = 42804, + ["text"] = "Mind Drinker", + }, + { + ["id"] = 50690, + ["text"] = "Replenishing Remedies", + }, + { + ["id"] = 15344, + ["text"] = "Freedom of Movement", + }, + { + ["id"] = 10835, + ["text"] = "Dreamer", + }, + { + ["id"] = 8001, + ["text"] = "Clever Thief", + }, + { + ["id"] = 44788, + ["text"] = "Potent Connections", + }, + { + ["id"] = 2550, + ["text"] = "Arsonist", + }, + { + ["id"] = 28878, + ["text"] = "Relentless", + }, + { + ["id"] = 45283, + ["text"] = "Cornered Prey", + }, + { + ["id"] = 7085, + ["text"] = "Weapon Artistry", + }, + { + ["id"] = 35233, + ["text"] = "Discord Artisan", + }, + { + ["id"] = 18174, + ["text"] = "Mystic Bulwark", + }, + { + ["id"] = 53757, + ["text"] = "Shamanistic Fury", + }, + { + ["id"] = 22133, + ["text"] = "Invigorating Blaze", + }, + { + ["id"] = 12033, + ["text"] = "Wicked Blade", + }, + { + ["id"] = 24362, + ["text"] = "Deep Thoughts", + }, + { + ["id"] = 10115, + ["text"] = "Prodigal Perfection", + }, + { + ["id"] = 19144, + ["text"] = "Sentinel", + }, + { + ["id"] = 65107, + ["text"] = "Bastion Breaker", + }, + { + ["id"] = 42720, + ["text"] = "Heavy Draw", + }, + { + ["id"] = 54791, + ["text"] = "Claws of the Magpie", + }, + { + ["id"] = 52157, + ["text"] = "Soul Siphon", + }, + { + ["id"] = 59423, + ["text"] = "Escalation", + }, + { + ["id"] = 60781, + ["text"] = "Inspiring Bond", + }, + { + ["id"] = 31473, + ["text"] = "Master of Wounds", + }, + { + ["id"] = 17608, + ["text"] = "Silent Steps", + }, + { + ["id"] = 29861, + ["text"] = "Explosive Runes", + }, + { + ["id"] = 36859, + ["text"] = "Steelwood Stance", + }, + { + ["id"] = 44102, + ["text"] = "Efficient Explosives", + }, + { + ["id"] = 30693, + ["text"] = "Divine Fervour", + }, + { + ["id"] = 63933, + ["text"] = "Totemic Zeal", + }, + { + ["id"] = 40645, + ["text"] = "Bone Breaker", + }, + { + ["id"] = 11784, + ["text"] = "Vampirism", + }, + { + ["id"] = 2275, + ["text"] = "Nature's Concoction", + }, + { + ["id"] = 59556, + ["text"] = "Expeditious Munitions", + }, + { + ["id"] = 33082, + ["text"] = "Razor's Edge", + }, + { + ["id"] = 56359, + ["text"] = "Cannibalistic Rite", + }, + { + ["id"] = 28034, + ["text"] = "Empowered Bond", + }, + { + ["id"] = 59866, + ["text"] = "Entrench", + }, + { + ["id"] = 45657, + ["text"] = "Trial of the Faith", + }, + { + ["id"] = 35436, + ["text"] = "Kinetic Impacts", + }, + { + ["id"] = 41476, + ["text"] = "Elder Power", + }, + { + ["id"] = 58168, + ["text"] = "High Voltage", + }, + { + ["id"] = 45608, + ["text"] = "Successive Detonations", + }, + { + ["id"] = 33582, + ["text"] = "Forceful Skewering", + }, + { + ["id"] = 23038, + ["text"] = "Slaughter", + }, + { + ["id"] = 55002, + ["text"] = "Righteous Fury", + }, + { + ["id"] = 52789, + ["text"] = "Circle of Life", + }, + { + ["id"] = 60619, + ["text"] = "Galvanic Hammer", + }, + { + ["id"] = 63453, + ["text"] = "Excess Sustenance", + }, + { + ["id"] = 28449, + ["text"] = "Surge of Vigour", + }, + { + ["id"] = 62802, + ["text"] = "Brink of Death", + }, + { + ["id"] = 6237, + ["text"] = "Precision", + }, + { + ["id"] = 16236, + ["text"] = "Toxic Strikes", + }, + { + ["id"] = 39657, + ["text"] = "Pain Forger", + }, + { + ["id"] = 36915, + ["text"] = "Sacrifice", + }, + { + ["id"] = 51212, + ["text"] = "Entropy", + }, + { + ["id"] = 61982, + ["text"] = "Grave Intentions", + }, + { + ["id"] = 6233, + ["text"] = "Blast Waves", + }, + { + ["id"] = 48823, + ["text"] = "Deadly Draw", + }, + { + ["id"] = 65093, + ["text"] = "Bladedancer", + }, + { + ["id"] = 37504, + ["text"] = "Intuition", + }, + { + ["id"] = 36736, + ["text"] = "Burning Brutality", + }, + { + ["id"] = 64077, + ["text"] = "Warrior Training", + }, + { + ["id"] = 63635, + ["text"] = "Primal Manifestation", + }, + { + ["id"] = 5126, + ["text"] = "Spinecruncher", + }, + { + ["id"] = 51559, + ["text"] = "Smashing Strikes", + }, + { + ["id"] = 63921, + ["text"] = "Utmost Swiftness", + }, + { + ["id"] = 47743, + ["text"] = "Farsight", + }, + { + ["id"] = 42917, + ["text"] = "Whirling Barrier", + }, + { + ["id"] = 59605, + ["text"] = "Unstable Munitions", + }, + { + ["id"] = 46471, + ["text"] = "Powerful Bond", + }, + { + ["id"] = 1405, + ["text"] = "From the Shadows", + }, + { + ["id"] = 26096, + ["text"] = "Hatchet Master", + }, + { + ["id"] = 55380, + ["text"] = "Clever Construction", + }, + { + ["id"] = 49772, + ["text"] = "Utmost Might", + }, + { + ["id"] = 22972, + ["text"] = "Wandslinger", + }, + { + ["id"] = 49969, + ["text"] = "Courage", + }, + { + ["id"] = 26763, + ["text"] = "Perfected Formula", + }, + { + ["id"] = 41870, + ["text"] = "Winter's Embrace", + }, + { + ["id"] = 25738, + ["text"] = "Relentless Pursuit", + }, + { + ["id"] = 17171, + ["text"] = "Flash Freeze", + }, + { + ["id"] = 36490, + ["text"] = "Flaying", + }, + { + ["id"] = 35685, + ["text"] = "Fearsome Force", + }, + { + ["id"] = 62849, + ["text"] = "Glacial Cage", + }, + { + ["id"] = 24858, + ["text"] = "Harpooner", + }, + { + ["id"] = 15046, + ["text"] = "Redemption", + }, + { + ["id"] = 55114, + ["text"] = "Utmost Intellect", + }, + { + ["id"] = 7918, + ["text"] = "Enigmatic Defence", + }, + { + ["id"] = 14606, + ["text"] = "Butchery", + }, + { + ["id"] = 33435, + ["text"] = "Holy Dominion", + }, + { + ["id"] = 26557, + ["text"] = "Static Blows", + }, + { + ["id"] = 14001, + ["text"] = "Unfaltering", + }, + { + ["id"] = 9567, + ["text"] = "Light Eater", + }, + { + ["id"] = 63033, + ["text"] = "Bannerman", + }, + { + ["id"] = 63976, + ["text"] = "Shaper", + }, + { + ["id"] = 53493, + ["text"] = "Annihilation", + }, + { + ["id"] = 45317, + ["text"] = "Ash, Frost and Storm", + }, + { + ["id"] = 44207, + ["text"] = "Testudo", + }, + { + ["id"] = 30225, + ["text"] = "Lightning Walker", + }, + { + ["id"] = 9788, + ["text"] = "Nimbleness", + }, + { + ["id"] = 31508, + ["text"] = "Aspect of the Lynx", + }, + { + ["id"] = 53042, + ["text"] = "Exceptional Performance", + }, + { + ["id"] = 4940, + ["text"] = "Cleaving", + }, + { + ["id"] = 42795, + ["text"] = "Arcane Focus", + }, + { + ["id"] = 21413, + ["text"] = "Combat Stamina", + }, + { + ["id"] = 33903, + ["text"] = "Will of Blades", + }, + { + ["id"] = 44347, + ["text"] = "Divine Fury", + }, + { + ["id"] = 65502, + ["text"] = "Heartseeker", + }, + { + ["id"] = 6770, + ["text"] = "Arcane Guarding", + }, + { + ["id"] = 1340, + ["text"] = "Rampart", + }, + { + ["id"] = 13164, + ["text"] = "Divine Judgement", + }, + { + ["id"] = 35894, + ["text"] = "Trickery", + }, + { + ["id"] = 49538, + ["text"] = "Defiance", + }, + { + ["id"] = 33545, + ["text"] = "Harrier", + }, + { + ["id"] = 6, + ["text"] = "Twin Terrors", + }, + { + ["id"] = 65273, + ["text"] = "Enigmatic Reach", + }, + { + ["id"] = 25178, + ["text"] = "Primal Spirit", + }, + { + ["id"] = 29522, + ["text"] = "Dance of Blades", + }, + { + ["id"] = 19730, + ["text"] = "Assured Strike", + }, + { + ["id"] = 15085, + ["text"] = "Ambidexterity", + }, + { + ["id"] = 24383, + ["text"] = "Warrior's Blood", + }, + { + ["id"] = 32681, + ["text"] = "Mark the Prey", + }, + { + ["id"] = 6967, + ["text"] = "Safeguard", + }, + { + ["id"] = 37403, + ["text"] = "Infused Flesh", + }, + { + ["id"] = 54694, + ["text"] = "Light of Divinity", + }, + { + ["id"] = 45945, + ["text"] = "Conjured Barrier", + }, + { + ["id"] = 49621, + ["text"] = "Acuity", + }, + { + ["id"] = 54142, + ["text"] = "Finesse", + }, + { + ["id"] = 9432, + ["text"] = "Mental Rapidity", + }, + { + ["id"] = 26960, + ["text"] = "Forethought", + }, + { + ["id"] = 14813, + ["text"] = "Revelry", + }, + { + ["id"] = 861, + ["text"] = "Aggressive Bastion", + }, + { + ["id"] = 26866, + ["text"] = "Sanctity", + }, + { + ["id"] = 65053, + ["text"] = "Essence Sap", + }, + { + ["id"] = 25439, + ["text"] = "Undertaker", + }, + { + ["id"] = 49416, + ["text"] = "Adamant", + }, + { + ["id"] = 64355, + ["text"] = "Brand Equity", + }, + { + ["id"] = 24050, + ["text"] = "Coldhearted Calculation", + }, + { + ["id"] = 11420, + ["text"] = "Arcanist's Dominion", + }, + { + ["id"] = 2225, + ["text"] = "Eagle Eye", + }, + { + ["id"] = 32455, + ["text"] = "Storm Weaver", + }, + { + ["id"] = 12809, + ["text"] = "Berserking", + }, + { + ["id"] = 1006, + ["text"] = "Potency of Will", + }, + { + ["id"] = 5823, + ["text"] = "Coordination", + }, + { + ["id"] = 18703, + ["text"] = "Graceful Assault", + }, + { + ["id"] = 20835, + ["text"] = "Brinkmanship", + }, + { + ["id"] = 3309, + ["text"] = "Fleetfoot", + }, + { + ["id"] = 15842, + ["text"] = "One With Nature", + }, + { + ["id"] = 15711, + ["text"] = "Blast Radius", + }, + { + ["id"] = 34666, + ["text"] = "Destroyer", + }, + { + ["id"] = 14665, + ["text"] = "Divine Wrath", + }, + { + ["id"] = 30471, + ["text"] = "True Strike", + }, + { + ["id"] = 49318, + ["text"] = "Wrecking Ball", + }, + { + ["id"] = 32059, + ["text"] = "Titanic Impacts", + }, + { + ["id"] = 65308, + ["text"] = "Diamond Skin", + }, + { + ["id"] = 12795, + ["text"] = "Versatility", + }, + { + ["id"] = 33287, + ["text"] = "Juggernaut", + }, + { + ["id"] = 25456, + ["text"] = "Dervish", + }, + { + ["id"] = 35663, + ["text"] = "Strong Arm", + }, + { + ["id"] = 60737, + ["text"] = "Sleight of Hand", + }, + { + ["id"] = 41137, + ["text"] = "Field Medicine", + }, + { + ["id"] = 50858, + ["text"] = "Admonisher", + }, + { + ["id"] = 7069, + ["text"] = "Split Shot", + }, + { + ["id"] = 544, + ["text"] = "Surveillance", + }, + { + ["id"] = 61308, + ["text"] = "Amplify", + }, + { + ["id"] = 570, + ["text"] = "Dazzling Strikes", + }, + { + ["id"] = 34284, + ["text"] = "Seasoned Swordplay", + }, + { + ["id"] = 24324, + ["text"] = "Explosive Impact", + }, + { + ["id"] = 32738, + ["text"] = "Wall of Steel", + }, + { + ["id"] = 34661, + ["text"] = "Fire Walker", + }, + { + ["id"] = 54268, + ["text"] = "Blade Barrier", + }, + { + ["id"] = 44824, + ["text"] = "Mysticism", + }, + { + ["id"] = 18865, + ["text"] = "Melding", + }, + { + ["id"] = 49445, + ["text"] = "Deep Breaths", + }, + { + ["id"] = 47306, + ["text"] = "Throatseeker", + }, + { + ["id"] = 44955, + ["text"] = "Frost Walker", + }, + { + ["id"] = 22706, + ["text"] = "Savage Intensity", + }, + { + ["id"] = 39743, + ["text"] = "Dark Arts", + }, + { + ["id"] = 40619, + ["text"] = "Awe and Terror", + }, + { + ["id"] = 50338, + ["text"] = "Ballistics", + }, + { + ["id"] = 58032, + ["text"] = "Serpentine Spellslinger", + }, + { + ["id"] = 53802, + ["text"] = "Essence Extraction", + }, + { + ["id"] = 49254, + ["text"] = "Retribution", + }, + { + ["id"] = 25970, + ["text"] = "Acrimony", + }, + { + ["id"] = 32176, + ["text"] = "Soul Thief", + }, + { + ["id"] = 51748, + ["text"] = "Last Rites", + }, + { + ["id"] = 57900, + ["text"] = "Command of Steel", + }, + { + ["id"] = 5430, + ["text"] = "Magmatic Strikes", + }, + { + ["id"] = 49379, + ["text"] = "Hired Killer", + }, + { + ["id"] = 12878, + ["text"] = "Retaliation", + }, + { + ["id"] = 19103, + ["text"] = "Righteous Army", + }, + { + ["id"] = 8458, + ["text"] = "Longshot", + }, + { + ["id"] = 24721, + ["text"] = "Ribcage Crusher", + }, + { + ["id"] = 9015, + ["text"] = "Dire Torment", + }, + { + ["id"] = 27308, + ["text"] = "Gravepact", + }, + { + ["id"] = 31513, + ["text"] = "Adjacent Animosity", + }, + { + ["id"] = 30974, + ["text"] = "Expert Hunter", + }, + { + ["id"] = 6615, + ["text"] = "Arcing Blows", + }, + { + ["id"] = 64882, + ["text"] = "Disciple of the Unyielding", + }, + { + ["id"] = 52031, + ["text"] = "Disintegration", + }, + { + ["id"] = 25367, + ["text"] = "Blade Master", + }, + { + ["id"] = 57199, + ["text"] = "Fangs of Frost", + }, + { + ["id"] = 39761, + ["text"] = "Counterweight", + }, + { + ["id"] = 21602, + ["text"] = "Destructive Apparatus", + }, + { + ["id"] = 9535, + ["text"] = "Hunter's Gambit", + }, + { + ["id"] = 28503, + ["text"] = "Life Raker", + }, + { + ["id"] = 27163, + ["text"] = "Arcane Will", + }, + { + ["id"] = 8920, + ["text"] = "Backstabbing", + }, + { + ["id"] = 63207, + ["text"] = "Tempest Blast", + }, + { + ["id"] = 43385, + ["text"] = "Winter Spirit", + }, + { + ["id"] = 21297, + ["text"] = "High Explosives", + }, + { + ["id"] = 29049, + ["text"] = "Holy Fire", + }, + { + ["id"] = 54713, + ["text"] = "Force Shaper", + }, + { + ["id"] = 44562, + ["text"] = "Shaman's Dominion", + }, + { + ["id"] = 18707, + ["text"] = "Perfectionist", + }, + { + ["id"] = 41595, + ["text"] = "Marked for Death", + }, + { + ["id"] = 57839, + ["text"] = "Blade of Cunning", + }, + { + ["id"] = 15437, + ["text"] = "Deflection", + }, + { + ["id"] = 38849, + ["text"] = "Searing Heat", + }, + { + ["id"] = 33777, + ["text"] = "Devastating Devices", + }, + { + ["id"] = 26564, + ["text"] = "Vanquisher", + }, + { + ["id"] = 4481, + ["text"] = "Forces of Nature", + }, + { + ["id"] = 10511, + ["text"] = "Tolerance", + }, + { + ["id"] = 26620, + ["text"] = "Corruption", + }, + { + ["id"] = 16703, + ["text"] = "Skull Cracking", + }, + { + ["id"] = 32227, + ["text"] = "Adder's Touch", + }, + { + ["id"] = 19794, + ["text"] = "Concussive Force", + }, + { + ["id"] = 31359, + ["text"] = "Fatal Toxins", + }, + { + ["id"] = 63727, + ["text"] = "Gladiator's Perseverance", + }, + { + ["id"] = 41119, + ["text"] = "Lethality", + }, + { + ["id"] = 52090, + ["text"] = "Feller of Foes", + }, + { + ["id"] = 62094, + ["text"] = "Taste for Blood", + }, + { + ["id"] = 55772, + ["text"] = "Blacksmith's Clout", + }, + { + ["id"] = 49459, + ["text"] = "King of the Hill", + }, + { + ["id"] = 26294, + ["text"] = "Bloodletting", + }, + { + ["id"] = 7136, + ["text"] = "Master Sapper", + }, + { + ["id"] = 33725, + ["text"] = "Swagger", + }, + { + ["id"] = 34591, + ["text"] = "Malicious Intent", + }, + { + ["id"] = 31585, + ["text"] = "Careful Conservationist", + }, + { + ["id"] = 22702, + ["text"] = "Serpent Stance", + }, + { + ["id"] = 4854, + ["text"] = "Asylum", + }, + { + ["id"] = 36281, + ["text"] = "Primeval Force", + }, + { + ["id"] = 19897, + ["text"] = "Death Attunement", + }, + { + ["id"] = 51881, + ["text"] = "Master Fletcher", + }, + { + ["id"] = 15614, + ["text"] = "Claws of the Hawk", + }, + { + ["id"] = 61689, + ["text"] = "Explosive Elements", + }, + { + ["id"] = 9194, + ["text"] = "Merciless Skewering", + }, + { + ["id"] = 27611, + ["text"] = "Lord of the Dead", + }, + { + ["id"] = 64395, + ["text"] = "Blunt Trauma", + }, + { + ["id"] = 55381, + ["text"] = "Arcane Retaliation", + }, + { + ["id"] = 21389, + ["text"] = "Runesmith", + }, + { + ["id"] = 39986, + ["text"] = "Defiled Forces", + }, + { + ["id"] = 9261, + ["text"] = "Disciple of the Forbidden", + }, + { + ["id"] = 36687, + ["text"] = "Avatar of the Hunt", + }, + { + ["id"] = 63944, + ["text"] = "Prism Weave", + }, + { + ["id"] = 25409, + ["text"] = "Indomitable Army", + }, + { + ["id"] = 1568, + ["text"] = "Fatal Blade", + }, + { + ["id"] = 30439, + ["text"] = "Lava Lash", + }, + { + ["id"] = 53013, + ["text"] = "Atrophy", + }, + { + ["id"] = 41989, + ["text"] = "Resourcefulness", + }, + { + ["id"] = 43689, + ["text"] = "Spiritual Command", + }, + { + ["id"] = 7263, + ["text"] = "Swift Venoms", + }, + { + ["id"] = 38922, + ["text"] = "Goliath", + }, + { + ["id"] = 56094, + ["text"] = "One with the River", + }, + { + ["id"] = 7688, + ["text"] = "Enduring Bond", + }, + { + ["id"] = 59151, + ["text"] = "Brutal Blade", + }, + { + ["id"] = 56648, + ["text"] = "Claws of the Falcon", + }, + { + ["id"] = 4207, + ["text"] = "Window of Opportunity", + }, + { + ["id"] = 9864, + ["text"] = "Growth and Decay", + }, + { + ["id"] = 58921, + ["text"] = "Disciple of the Slaughter", + }, + { + ["id"] = 56276, + ["text"] = "Nightstalker", + }, + { + ["id"] = 9055, + ["text"] = "Volatile Mines", + }, + { + ["id"] = 48298, + ["text"] = "Insightfulness", + }, + { + ["id"] = 55194, + ["text"] = "Settling Ash", + }, + { + ["id"] = 42649, + ["text"] = "Snowforged", + }, + { + ["id"] = 53652, + ["text"] = "Steeped in the Profane", + }, + { + ["id"] = 61190, + ["text"] = "Rallying Icon", + }, + { + ["id"] = 12143, + ["text"] = "Influence", + }, + { + ["id"] = 38246, + ["text"] = "Presage", + }, + { + ["id"] = 56716, + ["text"] = "Heart of Thunder", + }, + { + ["id"] = 36949, + ["text"] = "Devotion", + }, + { + ["id"] = 45350, + ["text"] = "Glory of Command", + }, + { + ["id"] = 58218, + ["text"] = "Purity of Flesh", + }, + { + ["id"] = 61981, + ["text"] = "Doom Cast", + }, + { + ["id"] = 21330, + ["text"] = "Quick Recovery", + }, + { + ["id"] = 40743, + ["text"] = "Crystal Skin", + }, + { + ["id"] = 48438, + ["text"] = "Bravery", + }, + { + ["id"] = 11924, + ["text"] = "Breath of Flames", + }, + { + ["id"] = 45803, + ["text"] = "Veteran Soldier", + }, + { + ["id"] = 48614, + ["text"] = "Fervour", + }, + { + ["id"] = 27422, + ["text"] = "Spirit of War", + }, + { + ["id"] = 42041, + ["text"] = "Profane Chemistry", + }, + { + ["id"] = 60501, + ["text"] = "Heart of Flame", + }, + { + ["id"] = 18769, + ["text"] = "Written in Blood", + }, + { + ["id"] = 45329, + ["text"] = "Trick Shot", + }, + { + ["id"] = 21958, + ["text"] = "Cruel Preparation", + }, + { + ["id"] = 58831, + ["text"] = "Disemboweling", + }, + { + ["id"] = 27137, + ["text"] = "Sanctum of Thought", + }, + { + ["id"] = 13375, + ["text"] = "Multishot", + }, + { + ["id"] = 55027, + ["text"] = "Shining Justice", + }, + { + ["id"] = 55485, + ["text"] = "Constitution", + }, + { + ["id"] = 46842, + ["text"] = "Arcane Potency", + }, + { + ["id"] = 52742, + ["text"] = "Hasty Demise", + }, + { + ["id"] = 11645, + ["text"] = "Breath of Lightning", + }, + { + ["id"] = 4833, + ["text"] = "Vigour", + }, + { + ["id"] = 44191, + ["text"] = "As The Mountain", + }, + { + ["id"] = 22356, + ["text"] = "Hematophagy", + }, + { + ["id"] = 51440, + ["text"] = "Druidic Rite", + }, + { + ["id"] = 27203, + ["text"] = "Heart and Soul", + }, + { + ["id"] = 6289, + ["text"] = "Bloodless", + }, + { + ["id"] = 58449, + ["text"] = "Born to Fight", + }, + { + ["id"] = 65210, + ["text"] = "Heart of Oak", + }, + { + ["id"] = 33718, + ["text"] = "Champion of the Cause", + }, + { + ["id"] = 27623, + ["text"] = "Harsh Lessons", + }, + { + ["id"] = 24133, + ["text"] = "Survivalist", + }, + { + ["id"] = 34173, + ["text"] = "Overcharge", + }, + { + ["id"] = 47471, + ["text"] = "Overcharged", + }, + { + ["id"] = 34009, + ["text"] = "Master of the Arena", + }, + { + ["id"] = 53840, + ["text"] = "Vengeance", + }, + { + ["id"] = 58198, + ["text"] = "Fingers of Frost", + }, + { + ["id"] = 30302, + ["text"] = "Hearty", + }, + { + ["id"] = 19858, + ["text"] = "Herbalism", + }, + { + ["id"] = 41420, + ["text"] = "Natural Remedies", + }, + { + ["id"] = 25058, + ["text"] = "Blood Siphon", + }, + { + ["id"] = 7555, + ["text"] = "Crackling Speed", + }, + { + ["id"] = 65097, + ["text"] = "Leadership", + }, + { + ["id"] = 53573, + ["text"] = "Arcane Expanse", + }, + { + ["id"] = 11730, + ["text"] = "Endurance", + }, + { + ["id"] = 35958, + ["text"] = "Faith and Steel", + }, + { + ["id"] = 34973, + ["text"] = "Measured Fury", + }, + { + ["id"] = 13703, + ["text"] = "Defiant Stand", + }, + { + ["id"] = 26023, + ["text"] = "Savage Wounds", + }, + { + ["id"] = 2959, + ["text"] = "Season of Ice", + }, + { + ["id"] = 44103, + ["text"] = "Reflexes", + }, + { + ["id"] = 54629, + ["text"] = "Inexorable", + }, + { + ["id"] = 37326, + ["text"] = "Stamina", + }, + { + ["id"] = 51108, + ["text"] = "Arcane Capacitor", + }, + { + ["id"] = 65108, + ["text"] = "Tireless", + }, + { + ["id"] = 46904, + ["text"] = "Arcane Sanctuary", + }, + { + ["id"] = 44988, + ["text"] = "Wasting", + }, + { + ["id"] = 23066, + ["text"] = "Savagery", + }, + { + ["id"] = 54776, + ["text"] = "Mana Flows", + }, + { + ["id"] = 21634, + ["text"] = "Arcane Chemistry", + }, + { + ["id"] = 48807, + ["text"] = "Art of the Gladiator", + }, + { + ["id"] = 20528, + ["text"] = "Instability", + }, + { + ["id"] = 59766, + ["text"] = "Dirty Techniques", + }, + { + ["id"] = 15290, + ["text"] = "Watchtowers", + }, + { + ["id"] = 3452, + ["text"] = "Foresight", + }, + { + ["id"] = 21460, + ["text"] = "Breath of Rime", + }, + { + ["id"] = 58382, + ["text"] = "Renowned Deeds", + }, + { + ["id"] = 63422, + ["text"] = "Lust for Carnage", + }, + { + ["id"] = 42443, + ["text"] = "Frenetic", + }, + { + ["id"] = 47065, + ["text"] = "Master of Blades", + }, + { + ["id"] = 21228, + ["text"] = "Piercing Shots", + }, + { + ["id"] = 19069, + ["text"] = "Thick Skin", + }, + { + ["id"] = 37647, + ["text"] = "Dismembering", + }, + { + ["id"] = 25411, + ["text"] = "Infused", + }, + { + ["id"] = 8833, + ["text"] = "Heart of Ice", + }, + { + ["id"] = 63251, + ["text"] = "Inveterate", + }, + { + ["id"] = 27788, + ["text"] = "Blood Drinker", + }, + { + ["id"] = 39530, + ["text"] = "Vitality Void", + }, + { + ["id"] = 31257, + ["text"] = "Natural Authority", + }, + { + ["id"] = 15852, + ["text"] = "Ethereal Feast", + }, + { + ["id"] = 29381, + ["text"] = "Ravenous Horde", + }, + { + ["id"] = 13935, + ["text"] = "Thrill of Battle", + }, + { + ["id"] = 62577, + ["text"] = "Essence Surge", + }, + { + ["id"] = 34506, + ["text"] = "Golem Commander", + }, + { + ["id"] = 41472, + ["text"] = "Discipline and Training", + }, + { + ["id"] = 28754, + ["text"] = "Assassination", + }, + { + ["id"] = 61198, + ["text"] = "Heart of the Warrior", + }, + { + ["id"] = 48698, + ["text"] = "Void Barrier", + }, + { + ["id"] = 15400, + ["text"] = "Skittering Runes", + }, + { + ["id"] = 53118, + ["text"] = "Barbarism", + }, + { + ["id"] = 42009, + ["text"] = "Soul of Steel", + }, + { + ["id"] = 13922, + ["text"] = "Steadfast", + }, + { + ["id"] = 61039, + ["text"] = "Wild Hunger", + }, + { + ["id"] = 11820, + ["text"] = "Anointed Flesh", + }, + { + ["id"] = 50029, + ["text"] = "Unnatural Calm", + }, + { + ["id"] = 1325, + ["text"] = "Golem's Blood", + }, + { + ["id"] = 39904, + ["text"] = "Brutal Skewering", + }, + { + ["id"] = 53114, + ["text"] = "Revenge of the Hunted", + }, + { + ["id"] = 50842, + ["text"] = "Veteran's Wrath", + }, + { + ["id"] = 58851, + ["text"] = "Leader of the Pack", + }, + { + ["id"] = 32932, + ["text"] = "Sovereignty", + }, + { + ["id"] = 27119, + ["text"] = "Tribal Fury", + }, + { + ["id"] = 25989, + ["text"] = "Nomadic Teachings", + }, + { + ["id"] = 4177, + ["text"] = "Spiritual Aid", + }, + { + ["id"] = 6799, + ["text"] = "Charisma", + }, + { + ["id"] = 60031, + ["text"] = "Prismatic Skin", + }, + { + ["id"] = 22535, + ["text"] = "Whispers of Doom", + }, + { + ["id"] = 203, + ["text"] = "Vinespike Cordial", + }, + { + ["id"] = 24358, + ["text"] = "Selective Precision", + }, + { + ["id"] = 3195, + ["text"] = "Legacy of the Wilds", + }, + { + ["id"] = 33722, + ["text"] = "Hollow Effigy", + }, + { + ["id"] = 5574, + ["text"] = "Force of Darkness", + }, + { + ["id"] = 56274, + ["text"] = "Lasting Tempest", + }, + { + ["id"] = 14587, + ["text"] = "Adaptive Steel", + }, + { + ["id"] = 13739, + ["text"] = "Always Angry", + }, + { + ["id"] = 32853, + ["text"] = "Sione's Ambition", + }, + { + ["id"] = 37512, + ["text"] = "Bastion of Faith", + }, + { + ["id"] = 4354, + ["text"] = "Beacon of Hope", + }, + { + ["id"] = 14079, + ["text"] = "Wood, Stone, and Spell", + }, + { + ["id"] = 41169, + ["text"] = "Jagged Wounds", + }, + { + ["id"] = 20605, + ["text"] = "No Forgiveness", + }, + { + ["id"] = 56146, + ["text"] = "Deliberate Brutality", + }, + { + ["id"] = 1365, + ["text"] = "Knowledge Barrier", + }, + { + ["id"] = 23549, + ["text"] = "Incorporeal", + }, + { + ["id"] = 51360, + ["text"] = "Mixed Munitions", + }, + { + ["id"] = 56207, + ["text"] = "Hardened Scars", + }, + { + ["id"] = 57006, + ["text"] = "Vengeant Cascade", + }, + { + ["id"] = 48556, + ["text"] = "Heart of Darkness", + }, + { + ["id"] = 53759, + ["text"] = "Cleansed Thoughts", + }, + { + ["id"] = 40849, + ["text"] = "Persistence", + }, + { + ["id"] = 38706, + ["text"] = "Way of the Warrior", + }, + { + ["id"] = 62596, + ["text"] = "Mystic Talents", + }, + { + ["id"] = 41307, + ["text"] = "Deadly Inclinations", + }, + { + ["id"] = 16246, + ["text"] = "Tranquility", + }, + { + ["id"] = 64217, + ["text"] = "Aspect of Stone", + }, + { + ["id"] = 52282, + ["text"] = "Tenacity", + }, + { + ["id"] = 5624, + ["text"] = "Crusader", + }, + { + ["id"] = 27781, + ["text"] = "Worship the Blightheart", + }, + }, + }, + ["text"] = "Allocates #", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3199660333", + ["text"] = "Allocates #", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1422267548", + ["option"] = { + ["options"] = { + { + ["id"] = 4918, + ["text"] = "Indiscriminate Revenge", + }, + { + ["id"] = 15226, + ["text"] = "Cruel Retort", + }, + { + ["id"] = 2599, + ["text"] = "Prepared Response", + }, + { + ["id"] = 59976, + ["text"] = "Careful Counterattack", + }, + { + ["id"] = 37425, + ["text"] = "Practised Reapplication", + }, + { + ["id"] = 41305, + ["text"] = "Crushing Reply", + }, + { + ["id"] = 34978, + ["text"] = "Colloidal Mixture", + }, + { + ["id"] = 56330, + ["text"] = "Flow of Battle", + }, + { + ["id"] = 64226, + ["text"] = "Roaring Challenge", + }, + { + ["id"] = 52030, + ["text"] = "Burst of Energy", + }, + { + ["id"] = 30160, + ["text"] = "Fending", + }, + { + ["id"] = 24716, + ["text"] = "Battle Trance", + }, + { + ["id"] = 18357, + ["text"] = "Feline Swiftness", + }, + { + ["id"] = 23690, + ["text"] = "Essence Infusion", + }, + { + ["id"] = 10542, + ["text"] = "Spiked Bulwark", + }, + { + ["id"] = 37078, + ["text"] = "Path of the Savant", + }, + { + ["id"] = 12702, + ["text"] = "Path of the Warrior", + }, + { + ["id"] = 19506, + ["text"] = "Path of the Hunter", + }, + { + ["id"] = 38516, + ["text"] = "Righteous Decree", + }, + { + ["id"] = 63150, + ["text"] = "Ironwood", + }, + { + ["id"] = 16243, + ["text"] = "Fusillade", + }, + { + ["id"] = 2715, + ["text"] = "Quickstep", + }, + { + ["id"] = 52230, + ["text"] = "Weathered Hunter", + }, + { + ["id"] = 21435, + ["text"] = "Cloth and Chain", + }, + { + ["id"] = 31033, + ["text"] = "Robust", + }, + { + ["id"] = 65224, + ["text"] = "Aspect of the Eagle", + }, + { + ["id"] = 24256, + ["text"] = "Dynamo", + }, + { + ["id"] = 21973, + ["text"] = "Decay Ward", + }, + { + ["id"] = 45067, + ["text"] = "Thrill Killer", + }, + { + ["id"] = 24067, + ["text"] = "Instinct", + }, + { + ["id"] = 1382, + ["text"] = "Spirit Void", + }, + { + ["id"] = 529, + ["text"] = "Poisonous Fangs", + }, + { + ["id"] = 46965, + ["text"] = "Saboteur", + }, + { + ["id"] = 47484, + ["text"] = "Depth Perception", + }, + { + ["id"] = 42686, + ["text"] = "Elemental Focus", + }, + { + ["id"] = 27929, + ["text"] = "Deep Wisdom", + }, + { + ["id"] = 27806, + ["text"] = "As The Thunder", + }, + { + ["id"] = 27301, + ["text"] = "Martial Experience", + }, + { + ["id"] = 60002, + ["text"] = "Fury Bolts", + }, + { + ["id"] = 6783, + ["text"] = "Savage Skewering", + }, + { + ["id"] = 5289, + ["text"] = "Battle Rouse", + }, + { + ["id"] = 27190, + ["text"] = "Overprepared", + }, + { + ["id"] = 20832, + ["text"] = "Sanctuary", + }, + { + ["id"] = 49645, + ["text"] = "Cauterisation", + }, + { + ["id"] = 7440, + ["text"] = "Harvester of Foes", + }, + { + ["id"] = 8135, + ["text"] = "Practical Application", + }, + { + ["id"] = 46408, + ["text"] = "Fangs of the Viper", + }, + { + ["id"] = 10016, + ["text"] = "Executioner", + }, + { + ["id"] = 42804, + ["text"] = "Mind Drinker", + }, + { + ["id"] = 50690, + ["text"] = "Replenishing Remedies", + }, + { + ["id"] = 15344, + ["text"] = "Freedom of Movement", + }, + { + ["id"] = 10835, + ["text"] = "Dreamer", + }, + { + ["id"] = 8001, + ["text"] = "Clever Thief", + }, + { + ["id"] = 44788, + ["text"] = "Potent Connections", + }, + { + ["id"] = 2550, + ["text"] = "Arsonist", + }, + { + ["id"] = 28878, + ["text"] = "Relentless", + }, + { + ["id"] = 45283, + ["text"] = "Cornered Prey", + }, + { + ["id"] = 7085, + ["text"] = "Weapon Artistry", + }, + { + ["id"] = 35233, + ["text"] = "Discord Artisan", + }, + { + ["id"] = 18174, + ["text"] = "Mystic Bulwark", + }, + { + ["id"] = 53757, + ["text"] = "Shamanistic Fury", + }, + { + ["id"] = 22133, + ["text"] = "Invigorating Blaze", + }, + { + ["id"] = 12033, + ["text"] = "Wicked Blade", + }, + { + ["id"] = 24362, + ["text"] = "Deep Thoughts", + }, + { + ["id"] = 10115, + ["text"] = "Prodigal Perfection", + }, + { + ["id"] = 19144, + ["text"] = "Sentinel", + }, + { + ["id"] = 65107, + ["text"] = "Bastion Breaker", + }, + { + ["id"] = 42720, + ["text"] = "Heavy Draw", + }, + { + ["id"] = 54791, + ["text"] = "Claws of the Magpie", + }, + { + ["id"] = 52157, + ["text"] = "Soul Siphon", + }, + { + ["id"] = 59423, + ["text"] = "Escalation", + }, + { + ["id"] = 60781, + ["text"] = "Inspiring Bond", + }, + { + ["id"] = 31473, + ["text"] = "Master of Wounds", + }, + { + ["id"] = 17608, + ["text"] = "Silent Steps", + }, + { + ["id"] = 29861, + ["text"] = "Explosive Runes", + }, + { + ["id"] = 36859, + ["text"] = "Steelwood Stance", + }, + { + ["id"] = 44102, + ["text"] = "Efficient Explosives", + }, + { + ["id"] = 30693, + ["text"] = "Divine Fervour", + }, + { + ["id"] = 63933, + ["text"] = "Totemic Zeal", + }, + { + ["id"] = 40645, + ["text"] = "Bone Breaker", + }, + { + ["id"] = 11784, + ["text"] = "Vampirism", + }, + { + ["id"] = 2275, + ["text"] = "Nature's Concoction", + }, + { + ["id"] = 59556, + ["text"] = "Expeditious Munitions", + }, + { + ["id"] = 33082, + ["text"] = "Razor's Edge", + }, + { + ["id"] = 56359, + ["text"] = "Cannibalistic Rite", + }, + { + ["id"] = 28034, + ["text"] = "Empowered Bond", + }, + { + ["id"] = 59866, + ["text"] = "Entrench", + }, + { + ["id"] = 45657, + ["text"] = "Trial of the Faith", + }, + { + ["id"] = 35436, + ["text"] = "Kinetic Impacts", + }, + { + ["id"] = 41476, + ["text"] = "Elder Power", + }, + { + ["id"] = 58168, + ["text"] = "High Voltage", + }, + { + ["id"] = 45608, + ["text"] = "Successive Detonations", + }, + { + ["id"] = 33582, + ["text"] = "Forceful Skewering", + }, + { + ["id"] = 23038, + ["text"] = "Slaughter", + }, + { + ["id"] = 55002, + ["text"] = "Righteous Fury", + }, + { + ["id"] = 52789, + ["text"] = "Circle of Life", + }, + { + ["id"] = 60619, + ["text"] = "Galvanic Hammer", + }, + { + ["id"] = 63453, + ["text"] = "Excess Sustenance", + }, + { + ["id"] = 28449, + ["text"] = "Surge of Vigour", + }, + { + ["id"] = 62802, + ["text"] = "Brink of Death", + }, + { + ["id"] = 6237, + ["text"] = "Precision", + }, + { + ["id"] = 16236, + ["text"] = "Toxic Strikes", + }, + { + ["id"] = 39657, + ["text"] = "Pain Forger", + }, + { + ["id"] = 36915, + ["text"] = "Sacrifice", + }, + { + ["id"] = 51212, + ["text"] = "Entropy", + }, + { + ["id"] = 61982, + ["text"] = "Grave Intentions", + }, + { + ["id"] = 6233, + ["text"] = "Blast Waves", + }, + { + ["id"] = 48823, + ["text"] = "Deadly Draw", + }, + { + ["id"] = 65093, + ["text"] = "Bladedancer", + }, + { + ["id"] = 37504, + ["text"] = "Intuition", + }, + { + ["id"] = 36736, + ["text"] = "Burning Brutality", + }, + { + ["id"] = 64077, + ["text"] = "Warrior Training", + }, + { + ["id"] = 63635, + ["text"] = "Primal Manifestation", + }, + { + ["id"] = 5126, + ["text"] = "Spinecruncher", + }, + { + ["id"] = 51559, + ["text"] = "Smashing Strikes", + }, + { + ["id"] = 63921, + ["text"] = "Utmost Swiftness", + }, + { + ["id"] = 47743, + ["text"] = "Farsight", + }, + { + ["id"] = 42917, + ["text"] = "Whirling Barrier", + }, + { + ["id"] = 59605, + ["text"] = "Unstable Munitions", + }, + { + ["id"] = 46471, + ["text"] = "Powerful Bond", + }, + { + ["id"] = 1405, + ["text"] = "From the Shadows", + }, + { + ["id"] = 26096, + ["text"] = "Hatchet Master", + }, + { + ["id"] = 55380, + ["text"] = "Clever Construction", + }, + { + ["id"] = 49772, + ["text"] = "Utmost Might", + }, + { + ["id"] = 22972, + ["text"] = "Wandslinger", + }, + { + ["id"] = 49969, + ["text"] = "Courage", + }, + { + ["id"] = 26763, + ["text"] = "Perfected Formula", + }, + { + ["id"] = 41870, + ["text"] = "Winter's Embrace", + }, + { + ["id"] = 25738, + ["text"] = "Relentless Pursuit", + }, + { + ["id"] = 17171, + ["text"] = "Flash Freeze", + }, + { + ["id"] = 36490, + ["text"] = "Flaying", + }, + { + ["id"] = 35685, + ["text"] = "Fearsome Force", + }, + { + ["id"] = 62849, + ["text"] = "Glacial Cage", + }, + { + ["id"] = 24858, + ["text"] = "Harpooner", + }, + { + ["id"] = 15046, + ["text"] = "Redemption", + }, + { + ["id"] = 55114, + ["text"] = "Utmost Intellect", + }, + { + ["id"] = 7918, + ["text"] = "Enigmatic Defence", + }, + { + ["id"] = 14606, + ["text"] = "Butchery", + }, + { + ["id"] = 33435, + ["text"] = "Holy Dominion", + }, + { + ["id"] = 26557, + ["text"] = "Static Blows", + }, + { + ["id"] = 14001, + ["text"] = "Unfaltering", + }, + { + ["id"] = 9567, + ["text"] = "Light Eater", + }, + { + ["id"] = 63033, + ["text"] = "Bannerman", + }, + { + ["id"] = 63976, + ["text"] = "Shaper", + }, + { + ["id"] = 53493, + ["text"] = "Annihilation", + }, + { + ["id"] = 45317, + ["text"] = "Ash, Frost and Storm", + }, + { + ["id"] = 44207, + ["text"] = "Testudo", + }, + { + ["id"] = 30225, + ["text"] = "Lightning Walker", + }, + { + ["id"] = 9788, + ["text"] = "Nimbleness", + }, + { + ["id"] = 31508, + ["text"] = "Aspect of the Lynx", + }, + { + ["id"] = 53042, + ["text"] = "Exceptional Performance", + }, + { + ["id"] = 4940, + ["text"] = "Cleaving", + }, + { + ["id"] = 42795, + ["text"] = "Arcane Focus", + }, + { + ["id"] = 21413, + ["text"] = "Combat Stamina", + }, + { + ["id"] = 33903, + ["text"] = "Will of Blades", + }, + { + ["id"] = 44347, + ["text"] = "Divine Fury", + }, + { + ["id"] = 65502, + ["text"] = "Heartseeker", + }, + { + ["id"] = 6770, + ["text"] = "Arcane Guarding", + }, + { + ["id"] = 1340, + ["text"] = "Rampart", + }, + { + ["id"] = 13164, + ["text"] = "Divine Judgement", + }, + { + ["id"] = 35894, + ["text"] = "Trickery", + }, + { + ["id"] = 49538, + ["text"] = "Defiance", + }, + { + ["id"] = 33545, + ["text"] = "Harrier", + }, + { + ["id"] = 6, + ["text"] = "Twin Terrors", + }, + { + ["id"] = 65273, + ["text"] = "Enigmatic Reach", + }, + { + ["id"] = 25178, + ["text"] = "Primal Spirit", + }, + { + ["id"] = 29522, + ["text"] = "Dance of Blades", + }, + { + ["id"] = 19730, + ["text"] = "Assured Strike", + }, + { + ["id"] = 15085, + ["text"] = "Ambidexterity", + }, + { + ["id"] = 24383, + ["text"] = "Warrior's Blood", + }, + { + ["id"] = 32681, + ["text"] = "Mark the Prey", + }, + { + ["id"] = 6967, + ["text"] = "Safeguard", + }, + { + ["id"] = 37403, + ["text"] = "Infused Flesh", + }, + { + ["id"] = 54694, + ["text"] = "Light of Divinity", + }, + { + ["id"] = 45945, + ["text"] = "Conjured Barrier", + }, + { + ["id"] = 49621, + ["text"] = "Acuity", + }, + { + ["id"] = 54142, + ["text"] = "Finesse", + }, + { + ["id"] = 9432, + ["text"] = "Mental Rapidity", + }, + { + ["id"] = 26960, + ["text"] = "Forethought", + }, + { + ["id"] = 14813, + ["text"] = "Revelry", + }, + { + ["id"] = 861, + ["text"] = "Aggressive Bastion", + }, + { + ["id"] = 26866, + ["text"] = "Sanctity", + }, + { + ["id"] = 65053, + ["text"] = "Essence Sap", + }, + { + ["id"] = 25439, + ["text"] = "Undertaker", + }, + { + ["id"] = 49416, + ["text"] = "Adamant", + }, + { + ["id"] = 64355, + ["text"] = "Brand Equity", + }, + { + ["id"] = 24050, + ["text"] = "Coldhearted Calculation", + }, + { + ["id"] = 11420, + ["text"] = "Arcanist's Dominion", + }, + { + ["id"] = 2225, + ["text"] = "Eagle Eye", + }, + { + ["id"] = 32455, + ["text"] = "Storm Weaver", + }, + { + ["id"] = 12809, + ["text"] = "Berserking", + }, + { + ["id"] = 1006, + ["text"] = "Potency of Will", + }, + { + ["id"] = 5823, + ["text"] = "Coordination", + }, + { + ["id"] = 18703, + ["text"] = "Graceful Assault", + }, + { + ["id"] = 20835, + ["text"] = "Brinkmanship", + }, + { + ["id"] = 3309, + ["text"] = "Fleetfoot", + }, + { + ["id"] = 15842, + ["text"] = "One With Nature", + }, + { + ["id"] = 15711, + ["text"] = "Blast Radius", + }, + { + ["id"] = 34666, + ["text"] = "Destroyer", + }, + { + ["id"] = 14665, + ["text"] = "Divine Wrath", + }, + { + ["id"] = 30471, + ["text"] = "True Strike", + }, + { + ["id"] = 49318, + ["text"] = "Wrecking Ball", + }, + { + ["id"] = 32059, + ["text"] = "Titanic Impacts", + }, + { + ["id"] = 65308, + ["text"] = "Diamond Skin", + }, + { + ["id"] = 12795, + ["text"] = "Versatility", + }, + { + ["id"] = 33287, + ["text"] = "Juggernaut", + }, + { + ["id"] = 25456, + ["text"] = "Dervish", + }, + { + ["id"] = 35663, + ["text"] = "Strong Arm", + }, + { + ["id"] = 60737, + ["text"] = "Sleight of Hand", + }, + { + ["id"] = 41137, + ["text"] = "Field Medicine", + }, + { + ["id"] = 50858, + ["text"] = "Admonisher", + }, + { + ["id"] = 7069, + ["text"] = "Split Shot", + }, + { + ["id"] = 544, + ["text"] = "Surveillance", + }, + { + ["id"] = 61308, + ["text"] = "Amplify", + }, + { + ["id"] = 570, + ["text"] = "Dazzling Strikes", + }, + { + ["id"] = 34284, + ["text"] = "Seasoned Swordplay", + }, + { + ["id"] = 24324, + ["text"] = "Explosive Impact", + }, + { + ["id"] = 32738, + ["text"] = "Wall of Steel", + }, + { + ["id"] = 34661, + ["text"] = "Fire Walker", + }, + { + ["id"] = 54268, + ["text"] = "Blade Barrier", + }, + { + ["id"] = 44824, + ["text"] = "Mysticism", + }, + { + ["id"] = 18865, + ["text"] = "Melding", + }, + { + ["id"] = 49445, + ["text"] = "Deep Breaths", + }, + { + ["id"] = 47306, + ["text"] = "Throatseeker", + }, + { + ["id"] = 44955, + ["text"] = "Frost Walker", + }, + { + ["id"] = 22706, + ["text"] = "Savage Intensity", + }, + { + ["id"] = 39743, + ["text"] = "Dark Arts", + }, + { + ["id"] = 40619, + ["text"] = "Awe and Terror", + }, + { + ["id"] = 50338, + ["text"] = "Ballistics", + }, + { + ["id"] = 58032, + ["text"] = "Serpentine Spellslinger", + }, + { + ["id"] = 53802, + ["text"] = "Essence Extraction", + }, + { + ["id"] = 49254, + ["text"] = "Retribution", + }, + { + ["id"] = 25970, + ["text"] = "Acrimony", + }, + { + ["id"] = 32176, + ["text"] = "Soul Thief", + }, + { + ["id"] = 51748, + ["text"] = "Last Rites", + }, + { + ["id"] = 57900, + ["text"] = "Command of Steel", + }, + { + ["id"] = 5430, + ["text"] = "Magmatic Strikes", + }, + { + ["id"] = 49379, + ["text"] = "Hired Killer", + }, + { + ["id"] = 12878, + ["text"] = "Retaliation", + }, + { + ["id"] = 19103, + ["text"] = "Righteous Army", + }, + { + ["id"] = 8458, + ["text"] = "Longshot", + }, + { + ["id"] = 24721, + ["text"] = "Ribcage Crusher", + }, + { + ["id"] = 9015, + ["text"] = "Dire Torment", + }, + { + ["id"] = 27308, + ["text"] = "Gravepact", + }, + { + ["id"] = 31513, + ["text"] = "Adjacent Animosity", + }, + { + ["id"] = 30974, + ["text"] = "Expert Hunter", + }, + { + ["id"] = 6615, + ["text"] = "Arcing Blows", + }, + { + ["id"] = 64882, + ["text"] = "Disciple of the Unyielding", + }, + { + ["id"] = 52031, + ["text"] = "Disintegration", + }, + { + ["id"] = 25367, + ["text"] = "Blade Master", + }, + { + ["id"] = 57199, + ["text"] = "Fangs of Frost", + }, + { + ["id"] = 39761, + ["text"] = "Counterweight", + }, + { + ["id"] = 21602, + ["text"] = "Destructive Apparatus", + }, + { + ["id"] = 9535, + ["text"] = "Hunter's Gambit", + }, + { + ["id"] = 28503, + ["text"] = "Life Raker", + }, + { + ["id"] = 27163, + ["text"] = "Arcane Will", + }, + { + ["id"] = 8920, + ["text"] = "Backstabbing", + }, + { + ["id"] = 63207, + ["text"] = "Tempest Blast", + }, + { + ["id"] = 43385, + ["text"] = "Winter Spirit", + }, + { + ["id"] = 21297, + ["text"] = "High Explosives", + }, + { + ["id"] = 29049, + ["text"] = "Holy Fire", + }, + { + ["id"] = 54713, + ["text"] = "Force Shaper", + }, + { + ["id"] = 44562, + ["text"] = "Shaman's Dominion", + }, + { + ["id"] = 18707, + ["text"] = "Perfectionist", + }, + { + ["id"] = 41595, + ["text"] = "Marked for Death", + }, + { + ["id"] = 57839, + ["text"] = "Blade of Cunning", + }, + { + ["id"] = 15437, + ["text"] = "Deflection", + }, + { + ["id"] = 38849, + ["text"] = "Searing Heat", + }, + { + ["id"] = 33777, + ["text"] = "Devastating Devices", + }, + { + ["id"] = 26564, + ["text"] = "Vanquisher", + }, + { + ["id"] = 4481, + ["text"] = "Forces of Nature", + }, + { + ["id"] = 10511, + ["text"] = "Tolerance", + }, + { + ["id"] = 26620, + ["text"] = "Corruption", + }, + { + ["id"] = 16703, + ["text"] = "Skull Cracking", + }, + { + ["id"] = 32227, + ["text"] = "Adder's Touch", + }, + { + ["id"] = 19794, + ["text"] = "Concussive Force", + }, + { + ["id"] = 31359, + ["text"] = "Fatal Toxins", + }, + { + ["id"] = 63727, + ["text"] = "Gladiator's Perseverance", + }, + { + ["id"] = 41119, + ["text"] = "Lethality", + }, + { + ["id"] = 52090, + ["text"] = "Feller of Foes", + }, + { + ["id"] = 62094, + ["text"] = "Taste for Blood", + }, + { + ["id"] = 55772, + ["text"] = "Blacksmith's Clout", + }, + { + ["id"] = 49459, + ["text"] = "King of the Hill", + }, + { + ["id"] = 26294, + ["text"] = "Bloodletting", + }, + { + ["id"] = 7136, + ["text"] = "Master Sapper", + }, + { + ["id"] = 33725, + ["text"] = "Swagger", + }, + { + ["id"] = 34591, + ["text"] = "Malicious Intent", + }, + { + ["id"] = 31585, + ["text"] = "Careful Conservationist", + }, + { + ["id"] = 22702, + ["text"] = "Serpent Stance", + }, + { + ["id"] = 4854, + ["text"] = "Asylum", + }, + { + ["id"] = 36281, + ["text"] = "Primeval Force", + }, + { + ["id"] = 19897, + ["text"] = "Death Attunement", + }, + { + ["id"] = 51881, + ["text"] = "Master Fletcher", + }, + { + ["id"] = 15614, + ["text"] = "Claws of the Hawk", + }, + { + ["id"] = 61689, + ["text"] = "Explosive Elements", + }, + { + ["id"] = 9194, + ["text"] = "Merciless Skewering", + }, + { + ["id"] = 27611, + ["text"] = "Lord of the Dead", + }, + { + ["id"] = 64395, + ["text"] = "Blunt Trauma", + }, + { + ["id"] = 55381, + ["text"] = "Arcane Retaliation", + }, + { + ["id"] = 21389, + ["text"] = "Runesmith", + }, + { + ["id"] = 39986, + ["text"] = "Defiled Forces", + }, + { + ["id"] = 9261, + ["text"] = "Disciple of the Forbidden", + }, + { + ["id"] = 36687, + ["text"] = "Avatar of the Hunt", + }, + { + ["id"] = 63944, + ["text"] = "Prism Weave", + }, + { + ["id"] = 25409, + ["text"] = "Indomitable Army", + }, + { + ["id"] = 1568, + ["text"] = "Fatal Blade", + }, + { + ["id"] = 30439, + ["text"] = "Lava Lash", + }, + { + ["id"] = 53013, + ["text"] = "Atrophy", + }, + { + ["id"] = 41989, + ["text"] = "Resourcefulness", + }, + { + ["id"] = 43689, + ["text"] = "Spiritual Command", + }, + { + ["id"] = 7263, + ["text"] = "Swift Venoms", + }, + { + ["id"] = 38922, + ["text"] = "Goliath", + }, + { + ["id"] = 56094, + ["text"] = "One with the River", + }, + { + ["id"] = 7688, + ["text"] = "Enduring Bond", + }, + { + ["id"] = 59151, + ["text"] = "Brutal Blade", + }, + { + ["id"] = 56648, + ["text"] = "Claws of the Falcon", + }, + { + ["id"] = 4207, + ["text"] = "Window of Opportunity", + }, + { + ["id"] = 9864, + ["text"] = "Growth and Decay", + }, + { + ["id"] = 58921, + ["text"] = "Disciple of the Slaughter", + }, + { + ["id"] = 56276, + ["text"] = "Nightstalker", + }, + { + ["id"] = 9055, + ["text"] = "Volatile Mines", + }, + { + ["id"] = 48298, + ["text"] = "Insightfulness", + }, + { + ["id"] = 55194, + ["text"] = "Settling Ash", + }, + { + ["id"] = 42649, + ["text"] = "Snowforged", + }, + { + ["id"] = 53652, + ["text"] = "Steeped in the Profane", + }, + { + ["id"] = 61190, + ["text"] = "Rallying Icon", + }, + { + ["id"] = 12143, + ["text"] = "Influence", + }, + { + ["id"] = 38246, + ["text"] = "Presage", + }, + { + ["id"] = 56716, + ["text"] = "Heart of Thunder", + }, + { + ["id"] = 36949, + ["text"] = "Devotion", + }, + { + ["id"] = 45350, + ["text"] = "Glory of Command", + }, + { + ["id"] = 58218, + ["text"] = "Purity of Flesh", + }, + { + ["id"] = 61981, + ["text"] = "Doom Cast", + }, + { + ["id"] = 21330, + ["text"] = "Quick Recovery", + }, + { + ["id"] = 40743, + ["text"] = "Crystal Skin", + }, + { + ["id"] = 48438, + ["text"] = "Bravery", + }, + { + ["id"] = 11924, + ["text"] = "Breath of Flames", + }, + { + ["id"] = 45803, + ["text"] = "Veteran Soldier", + }, + { + ["id"] = 48614, + ["text"] = "Fervour", + }, + { + ["id"] = 27422, + ["text"] = "Spirit of War", + }, + { + ["id"] = 42041, + ["text"] = "Profane Chemistry", + }, + { + ["id"] = 60501, + ["text"] = "Heart of Flame", + }, + { + ["id"] = 18769, + ["text"] = "Written in Blood", + }, + { + ["id"] = 45329, + ["text"] = "Trick Shot", + }, + { + ["id"] = 21958, + ["text"] = "Cruel Preparation", + }, + { + ["id"] = 58831, + ["text"] = "Disemboweling", + }, + { + ["id"] = 27137, + ["text"] = "Sanctum of Thought", + }, + { + ["id"] = 13375, + ["text"] = "Multishot", + }, + { + ["id"] = 55027, + ["text"] = "Shining Justice", + }, + { + ["id"] = 55485, + ["text"] = "Constitution", + }, + { + ["id"] = 46842, + ["text"] = "Arcane Potency", + }, + { + ["id"] = 52742, + ["text"] = "Hasty Demise", + }, + { + ["id"] = 11645, + ["text"] = "Breath of Lightning", + }, + { + ["id"] = 4833, + ["text"] = "Vigour", + }, + { + ["id"] = 44191, + ["text"] = "As The Mountain", + }, + { + ["id"] = 22356, + ["text"] = "Hematophagy", + }, + { + ["id"] = 51440, + ["text"] = "Druidic Rite", + }, + { + ["id"] = 27203, + ["text"] = "Heart and Soul", + }, + { + ["id"] = 6289, + ["text"] = "Bloodless", + }, + { + ["id"] = 58449, + ["text"] = "Born to Fight", + }, + { + ["id"] = 65210, + ["text"] = "Heart of Oak", + }, + { + ["id"] = 33718, + ["text"] = "Champion of the Cause", + }, + { + ["id"] = 27623, + ["text"] = "Harsh Lessons", + }, + { + ["id"] = 24133, + ["text"] = "Survivalist", + }, + { + ["id"] = 34173, + ["text"] = "Overcharge", + }, + { + ["id"] = 47471, + ["text"] = "Overcharged", + }, + { + ["id"] = 34009, + ["text"] = "Master of the Arena", + }, + { + ["id"] = 53840, + ["text"] = "Vengeance", + }, + { + ["id"] = 58198, + ["text"] = "Fingers of Frost", + }, + { + ["id"] = 30302, + ["text"] = "Hearty", + }, + { + ["id"] = 19858, + ["text"] = "Herbalism", + }, + { + ["id"] = 41420, + ["text"] = "Natural Remedies", + }, + { + ["id"] = 25058, + ["text"] = "Blood Siphon", + }, + { + ["id"] = 7555, + ["text"] = "Crackling Speed", + }, + { + ["id"] = 65097, + ["text"] = "Leadership", + }, + { + ["id"] = 53573, + ["text"] = "Arcane Expanse", + }, + { + ["id"] = 11730, + ["text"] = "Endurance", + }, + { + ["id"] = 35958, + ["text"] = "Faith and Steel", + }, + { + ["id"] = 34973, + ["text"] = "Measured Fury", + }, + { + ["id"] = 13703, + ["text"] = "Defiant Stand", + }, + { + ["id"] = 26023, + ["text"] = "Savage Wounds", + }, + { + ["id"] = 2959, + ["text"] = "Season of Ice", + }, + { + ["id"] = 44103, + ["text"] = "Reflexes", + }, + { + ["id"] = 54629, + ["text"] = "Inexorable", + }, + { + ["id"] = 37326, + ["text"] = "Stamina", + }, + { + ["id"] = 51108, + ["text"] = "Arcane Capacitor", + }, + { + ["id"] = 65108, + ["text"] = "Tireless", + }, + { + ["id"] = 46904, + ["text"] = "Arcane Sanctuary", + }, + { + ["id"] = 44988, + ["text"] = "Wasting", + }, + { + ["id"] = 23066, + ["text"] = "Savagery", + }, + { + ["id"] = 54776, + ["text"] = "Mana Flows", + }, + { + ["id"] = 21634, + ["text"] = "Arcane Chemistry", + }, + { + ["id"] = 48807, + ["text"] = "Art of the Gladiator", + }, + { + ["id"] = 20528, + ["text"] = "Instability", + }, + { + ["id"] = 59766, + ["text"] = "Dirty Techniques", + }, + { + ["id"] = 15290, + ["text"] = "Watchtowers", + }, + { + ["id"] = 3452, + ["text"] = "Foresight", + }, + { + ["id"] = 21460, + ["text"] = "Breath of Rime", + }, + { + ["id"] = 58382, + ["text"] = "Renowned Deeds", + }, + { + ["id"] = 63422, + ["text"] = "Lust for Carnage", + }, + { + ["id"] = 42443, + ["text"] = "Frenetic", + }, + { + ["id"] = 47065, + ["text"] = "Master of Blades", + }, + { + ["id"] = 21228, + ["text"] = "Piercing Shots", + }, + { + ["id"] = 19069, + ["text"] = "Thick Skin", + }, + { + ["id"] = 37647, + ["text"] = "Dismembering", + }, + { + ["id"] = 25411, + ["text"] = "Infused", + }, + { + ["id"] = 8833, + ["text"] = "Heart of Ice", + }, + { + ["id"] = 63251, + ["text"] = "Inveterate", + }, + { + ["id"] = 27788, + ["text"] = "Blood Drinker", + }, + { + ["id"] = 39530, + ["text"] = "Vitality Void", + }, + { + ["id"] = 31257, + ["text"] = "Natural Authority", + }, + { + ["id"] = 15852, + ["text"] = "Ethereal Feast", + }, + { + ["id"] = 29381, + ["text"] = "Ravenous Horde", + }, + { + ["id"] = 13935, + ["text"] = "Thrill of Battle", + }, + { + ["id"] = 62577, + ["text"] = "Essence Surge", + }, + { + ["id"] = 34506, + ["text"] = "Golem Commander", + }, + { + ["id"] = 41472, + ["text"] = "Discipline and Training", + }, + { + ["id"] = 28754, + ["text"] = "Assassination", + }, + { + ["id"] = 61198, + ["text"] = "Heart of the Warrior", + }, + { + ["id"] = 48698, + ["text"] = "Void Barrier", + }, + { + ["id"] = 15400, + ["text"] = "Skittering Runes", + }, + { + ["id"] = 53118, + ["text"] = "Barbarism", + }, + { + ["id"] = 42009, + ["text"] = "Soul of Steel", + }, + { + ["id"] = 13922, + ["text"] = "Steadfast", + }, + { + ["id"] = 61039, + ["text"] = "Wild Hunger", + }, + { + ["id"] = 11820, + ["text"] = "Anointed Flesh", + }, + { + ["id"] = 50029, + ["text"] = "Unnatural Calm", + }, + { + ["id"] = 1325, + ["text"] = "Golem's Blood", + }, + { + ["id"] = 39904, + ["text"] = "Brutal Skewering", + }, + { + ["id"] = 53114, + ["text"] = "Revenge of the Hunted", + }, + { + ["id"] = 50842, + ["text"] = "Veteran's Wrath", + }, + { + ["id"] = 58851, + ["text"] = "Leader of the Pack", + }, + { + ["id"] = 32932, + ["text"] = "Sovereignty", + }, + { + ["id"] = 27119, + ["text"] = "Tribal Fury", + }, + { + ["id"] = 25989, + ["text"] = "Nomadic Teachings", + }, + { + ["id"] = 4177, + ["text"] = "Spiritual Aid", + }, + { + ["id"] = 6799, + ["text"] = "Charisma", + }, + { + ["id"] = 60031, + ["text"] = "Prismatic Skin", + }, + { + ["id"] = 22535, + ["text"] = "Whispers of Doom", + }, + { + ["id"] = 203, + ["text"] = "Vinespike Cordial", + }, + { + ["id"] = 24358, + ["text"] = "Selective Precision", + }, + { + ["id"] = 3195, + ["text"] = "Legacy of the Wilds", + }, + { + ["id"] = 33722, + ["text"] = "Hollow Effigy", + }, + { + ["id"] = 5574, + ["text"] = "Force of Darkness", + }, + { + ["id"] = 56274, + ["text"] = "Lasting Tempest", + }, + { + ["id"] = 14587, + ["text"] = "Adaptive Steel", + }, + { + ["id"] = 13739, + ["text"] = "Always Angry", + }, + { + ["id"] = 32853, + ["text"] = "Sione's Ambition", + }, + { + ["id"] = 37512, + ["text"] = "Bastion of Faith", + }, + { + ["id"] = 4354, + ["text"] = "Beacon of Hope", + }, + { + ["id"] = 14079, + ["text"] = "Wood, Stone, and Spell", + }, + { + ["id"] = 41169, + ["text"] = "Jagged Wounds", + }, + { + ["id"] = 20605, + ["text"] = "No Forgiveness", + }, + { + ["id"] = 56146, + ["text"] = "Deliberate Brutality", + }, + { + ["id"] = 1365, + ["text"] = "Knowledge Barrier", + }, + { + ["id"] = 23549, + ["text"] = "Incorporeal", + }, + { + ["id"] = 51360, + ["text"] = "Mixed Munitions", + }, + { + ["id"] = 56207, + ["text"] = "Hardened Scars", + }, + { + ["id"] = 57006, + ["text"] = "Vengeant Cascade", + }, + { + ["id"] = 48556, + ["text"] = "Heart of Darkness", + }, + { + ["id"] = 53759, + ["text"] = "Cleansed Thoughts", + }, + { + ["id"] = 40849, + ["text"] = "Persistence", + }, + { + ["id"] = 38706, + ["text"] = "Way of the Warrior", + }, + { + ["id"] = 62596, + ["text"] = "Mystic Talents", + }, + { + ["id"] = 41307, + ["text"] = "Deadly Inclinations", + }, + { + ["id"] = 16246, + ["text"] = "Tranquility", + }, + { + ["id"] = 64217, + ["text"] = "Aspect of Stone", + }, + { + ["id"] = 52282, + ["text"] = "Tenacity", + }, + { + ["id"] = 5624, + ["text"] = "Crusader", + }, + { + ["id"] = 27781, + ["text"] = "Worship the Blightheart", + }, + }, + }, + ["text"] = "Allocates # (Fourth)", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3459808765", + ["option"] = { + ["options"] = { + { + ["id"] = 4918, + ["text"] = "Indiscriminate Revenge", + }, + { + ["id"] = 15226, + ["text"] = "Cruel Retort", + }, + { + ["id"] = 2599, + ["text"] = "Prepared Response", + }, + { + ["id"] = 59976, + ["text"] = "Careful Counterattack", + }, + { + ["id"] = 37425, + ["text"] = "Practised Reapplication", + }, + { + ["id"] = 41305, + ["text"] = "Crushing Reply", + }, + { + ["id"] = 34978, + ["text"] = "Colloidal Mixture", + }, + { + ["id"] = 56330, + ["text"] = "Flow of Battle", + }, + { + ["id"] = 64226, + ["text"] = "Roaring Challenge", + }, + { + ["id"] = 52030, + ["text"] = "Burst of Energy", + }, + { + ["id"] = 30160, + ["text"] = "Fending", + }, + { + ["id"] = 24716, + ["text"] = "Battle Trance", + }, + { + ["id"] = 18357, + ["text"] = "Feline Swiftness", + }, + { + ["id"] = 23690, + ["text"] = "Essence Infusion", + }, + { + ["id"] = 10542, + ["text"] = "Spiked Bulwark", + }, + { + ["id"] = 37078, + ["text"] = "Path of the Savant", + }, + { + ["id"] = 12702, + ["text"] = "Path of the Warrior", + }, + { + ["id"] = 19506, + ["text"] = "Path of the Hunter", + }, + { + ["id"] = 38516, + ["text"] = "Righteous Decree", + }, + { + ["id"] = 63150, + ["text"] = "Ironwood", + }, + { + ["id"] = 16243, + ["text"] = "Fusillade", + }, + { + ["id"] = 2715, + ["text"] = "Quickstep", + }, + { + ["id"] = 52230, + ["text"] = "Weathered Hunter", + }, + { + ["id"] = 21435, + ["text"] = "Cloth and Chain", + }, + { + ["id"] = 31033, + ["text"] = "Robust", + }, + { + ["id"] = 65224, + ["text"] = "Aspect of the Eagle", + }, + { + ["id"] = 24256, + ["text"] = "Dynamo", + }, + { + ["id"] = 21973, + ["text"] = "Decay Ward", + }, + { + ["id"] = 45067, + ["text"] = "Thrill Killer", + }, + { + ["id"] = 24067, + ["text"] = "Instinct", + }, + { + ["id"] = 1382, + ["text"] = "Spirit Void", + }, + { + ["id"] = 529, + ["text"] = "Poisonous Fangs", + }, + { + ["id"] = 46965, + ["text"] = "Saboteur", + }, + { + ["id"] = 47484, + ["text"] = "Depth Perception", + }, + { + ["id"] = 42686, + ["text"] = "Elemental Focus", + }, + { + ["id"] = 27929, + ["text"] = "Deep Wisdom", + }, + { + ["id"] = 27806, + ["text"] = "As The Thunder", + }, + { + ["id"] = 27301, + ["text"] = "Martial Experience", + }, + { + ["id"] = 60002, + ["text"] = "Fury Bolts", + }, + { + ["id"] = 6783, + ["text"] = "Savage Skewering", + }, + { + ["id"] = 5289, + ["text"] = "Battle Rouse", + }, + { + ["id"] = 27190, + ["text"] = "Overprepared", + }, + { + ["id"] = 20832, + ["text"] = "Sanctuary", + }, + { + ["id"] = 49645, + ["text"] = "Cauterisation", + }, + { + ["id"] = 7440, + ["text"] = "Harvester of Foes", + }, + { + ["id"] = 8135, + ["text"] = "Practical Application", + }, + { + ["id"] = 46408, + ["text"] = "Fangs of the Viper", + }, + { + ["id"] = 10016, + ["text"] = "Executioner", + }, + { + ["id"] = 42804, + ["text"] = "Mind Drinker", + }, + { + ["id"] = 50690, + ["text"] = "Replenishing Remedies", + }, + { + ["id"] = 15344, + ["text"] = "Freedom of Movement", + }, + { + ["id"] = 10835, + ["text"] = "Dreamer", + }, + { + ["id"] = 8001, + ["text"] = "Clever Thief", + }, + { + ["id"] = 44788, + ["text"] = "Potent Connections", + }, + { + ["id"] = 2550, + ["text"] = "Arsonist", + }, + { + ["id"] = 28878, + ["text"] = "Relentless", + }, + { + ["id"] = 45283, + ["text"] = "Cornered Prey", + }, + { + ["id"] = 7085, + ["text"] = "Weapon Artistry", + }, + { + ["id"] = 35233, + ["text"] = "Discord Artisan", + }, + { + ["id"] = 18174, + ["text"] = "Mystic Bulwark", + }, + { + ["id"] = 53757, + ["text"] = "Shamanistic Fury", + }, + { + ["id"] = 22133, + ["text"] = "Invigorating Blaze", + }, + { + ["id"] = 12033, + ["text"] = "Wicked Blade", + }, + { + ["id"] = 24362, + ["text"] = "Deep Thoughts", + }, + { + ["id"] = 10115, + ["text"] = "Prodigal Perfection", + }, + { + ["id"] = 19144, + ["text"] = "Sentinel", + }, + { + ["id"] = 65107, + ["text"] = "Bastion Breaker", + }, + { + ["id"] = 42720, + ["text"] = "Heavy Draw", + }, + { + ["id"] = 54791, + ["text"] = "Claws of the Magpie", + }, + { + ["id"] = 52157, + ["text"] = "Soul Siphon", + }, + { + ["id"] = 59423, + ["text"] = "Escalation", + }, + { + ["id"] = 60781, + ["text"] = "Inspiring Bond", + }, + { + ["id"] = 31473, + ["text"] = "Master of Wounds", + }, + { + ["id"] = 17608, + ["text"] = "Silent Steps", + }, + { + ["id"] = 29861, + ["text"] = "Explosive Runes", + }, + { + ["id"] = 36859, + ["text"] = "Steelwood Stance", + }, + { + ["id"] = 44102, + ["text"] = "Efficient Explosives", + }, + { + ["id"] = 30693, + ["text"] = "Divine Fervour", + }, + { + ["id"] = 63933, + ["text"] = "Totemic Zeal", + }, + { + ["id"] = 40645, + ["text"] = "Bone Breaker", + }, + { + ["id"] = 11784, + ["text"] = "Vampirism", + }, + { + ["id"] = 2275, + ["text"] = "Nature's Concoction", + }, + { + ["id"] = 59556, + ["text"] = "Expeditious Munitions", + }, + { + ["id"] = 33082, + ["text"] = "Razor's Edge", + }, + { + ["id"] = 56359, + ["text"] = "Cannibalistic Rite", + }, + { + ["id"] = 28034, + ["text"] = "Empowered Bond", + }, + { + ["id"] = 59866, + ["text"] = "Entrench", + }, + { + ["id"] = 45657, + ["text"] = "Trial of the Faith", + }, + { + ["id"] = 35436, + ["text"] = "Kinetic Impacts", + }, + { + ["id"] = 41476, + ["text"] = "Elder Power", + }, + { + ["id"] = 58168, + ["text"] = "High Voltage", + }, + { + ["id"] = 45608, + ["text"] = "Successive Detonations", + }, + { + ["id"] = 33582, + ["text"] = "Forceful Skewering", + }, + { + ["id"] = 23038, + ["text"] = "Slaughter", + }, + { + ["id"] = 55002, + ["text"] = "Righteous Fury", + }, + { + ["id"] = 52789, + ["text"] = "Circle of Life", + }, + { + ["id"] = 60619, + ["text"] = "Galvanic Hammer", + }, + { + ["id"] = 63453, + ["text"] = "Excess Sustenance", + }, + { + ["id"] = 28449, + ["text"] = "Surge of Vigour", + }, + { + ["id"] = 62802, + ["text"] = "Brink of Death", + }, + { + ["id"] = 6237, + ["text"] = "Precision", + }, + { + ["id"] = 16236, + ["text"] = "Toxic Strikes", + }, + { + ["id"] = 39657, + ["text"] = "Pain Forger", + }, + { + ["id"] = 36915, + ["text"] = "Sacrifice", + }, + { + ["id"] = 51212, + ["text"] = "Entropy", + }, + { + ["id"] = 61982, + ["text"] = "Grave Intentions", + }, + { + ["id"] = 6233, + ["text"] = "Blast Waves", + }, + { + ["id"] = 48823, + ["text"] = "Deadly Draw", + }, + { + ["id"] = 65093, + ["text"] = "Bladedancer", + }, + { + ["id"] = 37504, + ["text"] = "Intuition", + }, + { + ["id"] = 36736, + ["text"] = "Burning Brutality", + }, + { + ["id"] = 64077, + ["text"] = "Warrior Training", + }, + { + ["id"] = 63635, + ["text"] = "Primal Manifestation", + }, + { + ["id"] = 5126, + ["text"] = "Spinecruncher", + }, + { + ["id"] = 51559, + ["text"] = "Smashing Strikes", + }, + { + ["id"] = 63921, + ["text"] = "Utmost Swiftness", + }, + { + ["id"] = 47743, + ["text"] = "Farsight", + }, + { + ["id"] = 42917, + ["text"] = "Whirling Barrier", + }, + { + ["id"] = 59605, + ["text"] = "Unstable Munitions", + }, + { + ["id"] = 46471, + ["text"] = "Powerful Bond", + }, + { + ["id"] = 1405, + ["text"] = "From the Shadows", + }, + { + ["id"] = 26096, + ["text"] = "Hatchet Master", + }, + { + ["id"] = 55380, + ["text"] = "Clever Construction", + }, + { + ["id"] = 49772, + ["text"] = "Utmost Might", + }, + { + ["id"] = 22972, + ["text"] = "Wandslinger", + }, + { + ["id"] = 49969, + ["text"] = "Courage", + }, + { + ["id"] = 26763, + ["text"] = "Perfected Formula", + }, + { + ["id"] = 41870, + ["text"] = "Winter's Embrace", + }, + { + ["id"] = 25738, + ["text"] = "Relentless Pursuit", + }, + { + ["id"] = 17171, + ["text"] = "Flash Freeze", + }, + { + ["id"] = 36490, + ["text"] = "Flaying", + }, + { + ["id"] = 35685, + ["text"] = "Fearsome Force", + }, + { + ["id"] = 62849, + ["text"] = "Glacial Cage", + }, + { + ["id"] = 24858, + ["text"] = "Harpooner", + }, + { + ["id"] = 15046, + ["text"] = "Redemption", + }, + { + ["id"] = 55114, + ["text"] = "Utmost Intellect", + }, + { + ["id"] = 7918, + ["text"] = "Enigmatic Defence", + }, + { + ["id"] = 14606, + ["text"] = "Butchery", + }, + { + ["id"] = 33435, + ["text"] = "Holy Dominion", + }, + { + ["id"] = 26557, + ["text"] = "Static Blows", + }, + { + ["id"] = 14001, + ["text"] = "Unfaltering", + }, + { + ["id"] = 9567, + ["text"] = "Light Eater", + }, + { + ["id"] = 63033, + ["text"] = "Bannerman", + }, + { + ["id"] = 63976, + ["text"] = "Shaper", + }, + { + ["id"] = 53493, + ["text"] = "Annihilation", + }, + { + ["id"] = 45317, + ["text"] = "Ash, Frost and Storm", + }, + { + ["id"] = 44207, + ["text"] = "Testudo", + }, + { + ["id"] = 30225, + ["text"] = "Lightning Walker", + }, + { + ["id"] = 9788, + ["text"] = "Nimbleness", + }, + { + ["id"] = 31508, + ["text"] = "Aspect of the Lynx", + }, + { + ["id"] = 53042, + ["text"] = "Exceptional Performance", + }, + { + ["id"] = 4940, + ["text"] = "Cleaving", + }, + { + ["id"] = 42795, + ["text"] = "Arcane Focus", + }, + { + ["id"] = 21413, + ["text"] = "Combat Stamina", + }, + { + ["id"] = 33903, + ["text"] = "Will of Blades", + }, + { + ["id"] = 44347, + ["text"] = "Divine Fury", + }, + { + ["id"] = 65502, + ["text"] = "Heartseeker", + }, + { + ["id"] = 6770, + ["text"] = "Arcane Guarding", + }, + { + ["id"] = 1340, + ["text"] = "Rampart", + }, + { + ["id"] = 13164, + ["text"] = "Divine Judgement", + }, + { + ["id"] = 35894, + ["text"] = "Trickery", + }, + { + ["id"] = 49538, + ["text"] = "Defiance", + }, + { + ["id"] = 33545, + ["text"] = "Harrier", + }, + { + ["id"] = 6, + ["text"] = "Twin Terrors", + }, + { + ["id"] = 65273, + ["text"] = "Enigmatic Reach", + }, + { + ["id"] = 25178, + ["text"] = "Primal Spirit", + }, + { + ["id"] = 29522, + ["text"] = "Dance of Blades", + }, + { + ["id"] = 19730, + ["text"] = "Assured Strike", + }, + { + ["id"] = 15085, + ["text"] = "Ambidexterity", + }, + { + ["id"] = 24383, + ["text"] = "Warrior's Blood", + }, + { + ["id"] = 32681, + ["text"] = "Mark the Prey", + }, + { + ["id"] = 6967, + ["text"] = "Safeguard", + }, + { + ["id"] = 37403, + ["text"] = "Infused Flesh", + }, + { + ["id"] = 54694, + ["text"] = "Light of Divinity", + }, + { + ["id"] = 45945, + ["text"] = "Conjured Barrier", + }, + { + ["id"] = 49621, + ["text"] = "Acuity", + }, + { + ["id"] = 54142, + ["text"] = "Finesse", + }, + { + ["id"] = 9432, + ["text"] = "Mental Rapidity", + }, + { + ["id"] = 26960, + ["text"] = "Forethought", + }, + { + ["id"] = 14813, + ["text"] = "Revelry", + }, + { + ["id"] = 861, + ["text"] = "Aggressive Bastion", + }, + { + ["id"] = 26866, + ["text"] = "Sanctity", + }, + { + ["id"] = 65053, + ["text"] = "Essence Sap", + }, + { + ["id"] = 25439, + ["text"] = "Undertaker", + }, + { + ["id"] = 49416, + ["text"] = "Adamant", + }, + { + ["id"] = 64355, + ["text"] = "Brand Equity", + }, + { + ["id"] = 24050, + ["text"] = "Coldhearted Calculation", + }, + { + ["id"] = 11420, + ["text"] = "Arcanist's Dominion", + }, + { + ["id"] = 2225, + ["text"] = "Eagle Eye", + }, + { + ["id"] = 32455, + ["text"] = "Storm Weaver", + }, + { + ["id"] = 12809, + ["text"] = "Berserking", + }, + { + ["id"] = 1006, + ["text"] = "Potency of Will", + }, + { + ["id"] = 5823, + ["text"] = "Coordination", + }, + { + ["id"] = 18703, + ["text"] = "Graceful Assault", + }, + { + ["id"] = 20835, + ["text"] = "Brinkmanship", + }, + { + ["id"] = 3309, + ["text"] = "Fleetfoot", + }, + { + ["id"] = 15842, + ["text"] = "One With Nature", + }, + { + ["id"] = 15711, + ["text"] = "Blast Radius", + }, + { + ["id"] = 34666, + ["text"] = "Destroyer", + }, + { + ["id"] = 14665, + ["text"] = "Divine Wrath", + }, + { + ["id"] = 30471, + ["text"] = "True Strike", + }, + { + ["id"] = 49318, + ["text"] = "Wrecking Ball", + }, + { + ["id"] = 32059, + ["text"] = "Titanic Impacts", + }, + { + ["id"] = 65308, + ["text"] = "Diamond Skin", + }, + { + ["id"] = 12795, + ["text"] = "Versatility", + }, + { + ["id"] = 33287, + ["text"] = "Juggernaut", + }, + { + ["id"] = 25456, + ["text"] = "Dervish", + }, + { + ["id"] = 35663, + ["text"] = "Strong Arm", + }, + { + ["id"] = 60737, + ["text"] = "Sleight of Hand", + }, + { + ["id"] = 41137, + ["text"] = "Field Medicine", + }, + { + ["id"] = 50858, + ["text"] = "Admonisher", + }, + { + ["id"] = 7069, + ["text"] = "Split Shot", + }, + { + ["id"] = 544, + ["text"] = "Surveillance", + }, + { + ["id"] = 61308, + ["text"] = "Amplify", + }, + { + ["id"] = 570, + ["text"] = "Dazzling Strikes", + }, + { + ["id"] = 34284, + ["text"] = "Seasoned Swordplay", + }, + { + ["id"] = 24324, + ["text"] = "Explosive Impact", + }, + { + ["id"] = 32738, + ["text"] = "Wall of Steel", + }, + { + ["id"] = 34661, + ["text"] = "Fire Walker", + }, + { + ["id"] = 54268, + ["text"] = "Blade Barrier", + }, + { + ["id"] = 44824, + ["text"] = "Mysticism", + }, + { + ["id"] = 18865, + ["text"] = "Melding", + }, + { + ["id"] = 49445, + ["text"] = "Deep Breaths", + }, + { + ["id"] = 47306, + ["text"] = "Throatseeker", + }, + { + ["id"] = 44955, + ["text"] = "Frost Walker", + }, + { + ["id"] = 22706, + ["text"] = "Savage Intensity", + }, + { + ["id"] = 39743, + ["text"] = "Dark Arts", + }, + { + ["id"] = 40619, + ["text"] = "Awe and Terror", + }, + { + ["id"] = 50338, + ["text"] = "Ballistics", + }, + { + ["id"] = 58032, + ["text"] = "Serpentine Spellslinger", + }, + { + ["id"] = 53802, + ["text"] = "Essence Extraction", + }, + { + ["id"] = 49254, + ["text"] = "Retribution", + }, + { + ["id"] = 25970, + ["text"] = "Acrimony", + }, + { + ["id"] = 32176, + ["text"] = "Soul Thief", + }, + { + ["id"] = 51748, + ["text"] = "Last Rites", + }, + { + ["id"] = 57900, + ["text"] = "Command of Steel", + }, + { + ["id"] = 5430, + ["text"] = "Magmatic Strikes", + }, + { + ["id"] = 49379, + ["text"] = "Hired Killer", + }, + { + ["id"] = 12878, + ["text"] = "Retaliation", + }, + { + ["id"] = 19103, + ["text"] = "Righteous Army", + }, + { + ["id"] = 8458, + ["text"] = "Longshot", + }, + { + ["id"] = 24721, + ["text"] = "Ribcage Crusher", + }, + { + ["id"] = 9015, + ["text"] = "Dire Torment", + }, + { + ["id"] = 27308, + ["text"] = "Gravepact", + }, + { + ["id"] = 31513, + ["text"] = "Adjacent Animosity", + }, + { + ["id"] = 30974, + ["text"] = "Expert Hunter", + }, + { + ["id"] = 6615, + ["text"] = "Arcing Blows", + }, + { + ["id"] = 64882, + ["text"] = "Disciple of the Unyielding", + }, + { + ["id"] = 52031, + ["text"] = "Disintegration", + }, + { + ["id"] = 25367, + ["text"] = "Blade Master", + }, + { + ["id"] = 57199, + ["text"] = "Fangs of Frost", + }, + { + ["id"] = 39761, + ["text"] = "Counterweight", + }, + { + ["id"] = 21602, + ["text"] = "Destructive Apparatus", + }, + { + ["id"] = 9535, + ["text"] = "Hunter's Gambit", + }, + { + ["id"] = 28503, + ["text"] = "Life Raker", + }, + { + ["id"] = 27163, + ["text"] = "Arcane Will", + }, + { + ["id"] = 8920, + ["text"] = "Backstabbing", + }, + { + ["id"] = 63207, + ["text"] = "Tempest Blast", + }, + { + ["id"] = 43385, + ["text"] = "Winter Spirit", + }, + { + ["id"] = 21297, + ["text"] = "High Explosives", + }, + { + ["id"] = 29049, + ["text"] = "Holy Fire", + }, + { + ["id"] = 54713, + ["text"] = "Force Shaper", + }, + { + ["id"] = 44562, + ["text"] = "Shaman's Dominion", + }, + { + ["id"] = 18707, + ["text"] = "Perfectionist", + }, + { + ["id"] = 41595, + ["text"] = "Marked for Death", + }, + { + ["id"] = 57839, + ["text"] = "Blade of Cunning", + }, + { + ["id"] = 15437, + ["text"] = "Deflection", + }, + { + ["id"] = 38849, + ["text"] = "Searing Heat", + }, + { + ["id"] = 33777, + ["text"] = "Devastating Devices", + }, + { + ["id"] = 26564, + ["text"] = "Vanquisher", + }, + { + ["id"] = 4481, + ["text"] = "Forces of Nature", + }, + { + ["id"] = 10511, + ["text"] = "Tolerance", + }, + { + ["id"] = 26620, + ["text"] = "Corruption", + }, + { + ["id"] = 16703, + ["text"] = "Skull Cracking", + }, + { + ["id"] = 32227, + ["text"] = "Adder's Touch", + }, + { + ["id"] = 19794, + ["text"] = "Concussive Force", + }, + { + ["id"] = 31359, + ["text"] = "Fatal Toxins", + }, + { + ["id"] = 63727, + ["text"] = "Gladiator's Perseverance", + }, + { + ["id"] = 41119, + ["text"] = "Lethality", + }, + { + ["id"] = 52090, + ["text"] = "Feller of Foes", + }, + { + ["id"] = 62094, + ["text"] = "Taste for Blood", + }, + { + ["id"] = 55772, + ["text"] = "Blacksmith's Clout", + }, + { + ["id"] = 49459, + ["text"] = "King of the Hill", + }, + { + ["id"] = 26294, + ["text"] = "Bloodletting", + }, + { + ["id"] = 7136, + ["text"] = "Master Sapper", + }, + { + ["id"] = 33725, + ["text"] = "Swagger", + }, + { + ["id"] = 34591, + ["text"] = "Malicious Intent", + }, + { + ["id"] = 31585, + ["text"] = "Careful Conservationist", + }, + { + ["id"] = 22702, + ["text"] = "Serpent Stance", + }, + { + ["id"] = 4854, + ["text"] = "Asylum", + }, + { + ["id"] = 36281, + ["text"] = "Primeval Force", + }, + { + ["id"] = 19897, + ["text"] = "Death Attunement", + }, + { + ["id"] = 51881, + ["text"] = "Master Fletcher", + }, + { + ["id"] = 15614, + ["text"] = "Claws of the Hawk", + }, + { + ["id"] = 61689, + ["text"] = "Explosive Elements", + }, + { + ["id"] = 9194, + ["text"] = "Merciless Skewering", + }, + { + ["id"] = 27611, + ["text"] = "Lord of the Dead", + }, + { + ["id"] = 64395, + ["text"] = "Blunt Trauma", + }, + { + ["id"] = 55381, + ["text"] = "Arcane Retaliation", + }, + { + ["id"] = 21389, + ["text"] = "Runesmith", + }, + { + ["id"] = 39986, + ["text"] = "Defiled Forces", + }, + { + ["id"] = 9261, + ["text"] = "Disciple of the Forbidden", + }, + { + ["id"] = 36687, + ["text"] = "Avatar of the Hunt", + }, + { + ["id"] = 63944, + ["text"] = "Prism Weave", + }, + { + ["id"] = 25409, + ["text"] = "Indomitable Army", + }, + { + ["id"] = 1568, + ["text"] = "Fatal Blade", + }, + { + ["id"] = 30439, + ["text"] = "Lava Lash", + }, + { + ["id"] = 53013, + ["text"] = "Atrophy", + }, + { + ["id"] = 41989, + ["text"] = "Resourcefulness", + }, + { + ["id"] = 43689, + ["text"] = "Spiritual Command", + }, + { + ["id"] = 7263, + ["text"] = "Swift Venoms", + }, + { + ["id"] = 38922, + ["text"] = "Goliath", + }, + { + ["id"] = 56094, + ["text"] = "One with the River", + }, + { + ["id"] = 7688, + ["text"] = "Enduring Bond", + }, + { + ["id"] = 59151, + ["text"] = "Brutal Blade", + }, + { + ["id"] = 56648, + ["text"] = "Claws of the Falcon", + }, + { + ["id"] = 4207, + ["text"] = "Window of Opportunity", + }, + { + ["id"] = 9864, + ["text"] = "Growth and Decay", + }, + { + ["id"] = 58921, + ["text"] = "Disciple of the Slaughter", + }, + { + ["id"] = 56276, + ["text"] = "Nightstalker", + }, + { + ["id"] = 9055, + ["text"] = "Volatile Mines", + }, + { + ["id"] = 48298, + ["text"] = "Insightfulness", + }, + { + ["id"] = 55194, + ["text"] = "Settling Ash", + }, + { + ["id"] = 42649, + ["text"] = "Snowforged", + }, + { + ["id"] = 53652, + ["text"] = "Steeped in the Profane", + }, + { + ["id"] = 61190, + ["text"] = "Rallying Icon", + }, + { + ["id"] = 12143, + ["text"] = "Influence", + }, + { + ["id"] = 38246, + ["text"] = "Presage", + }, + { + ["id"] = 56716, + ["text"] = "Heart of Thunder", + }, + { + ["id"] = 36949, + ["text"] = "Devotion", + }, + { + ["id"] = 45350, + ["text"] = "Glory of Command", + }, + { + ["id"] = 58218, + ["text"] = "Purity of Flesh", + }, + { + ["id"] = 61981, + ["text"] = "Doom Cast", + }, + { + ["id"] = 21330, + ["text"] = "Quick Recovery", + }, + { + ["id"] = 40743, + ["text"] = "Crystal Skin", + }, + { + ["id"] = 48438, + ["text"] = "Bravery", + }, + { + ["id"] = 11924, + ["text"] = "Breath of Flames", + }, + { + ["id"] = 45803, + ["text"] = "Veteran Soldier", + }, + { + ["id"] = 48614, + ["text"] = "Fervour", + }, + { + ["id"] = 27422, + ["text"] = "Spirit of War", + }, + { + ["id"] = 42041, + ["text"] = "Profane Chemistry", + }, + { + ["id"] = 60501, + ["text"] = "Heart of Flame", + }, + { + ["id"] = 18769, + ["text"] = "Written in Blood", + }, + { + ["id"] = 45329, + ["text"] = "Trick Shot", + }, + { + ["id"] = 21958, + ["text"] = "Cruel Preparation", + }, + { + ["id"] = 58831, + ["text"] = "Disemboweling", + }, + { + ["id"] = 27137, + ["text"] = "Sanctum of Thought", + }, + { + ["id"] = 13375, + ["text"] = "Multishot", + }, + { + ["id"] = 55027, + ["text"] = "Shining Justice", + }, + { + ["id"] = 55485, + ["text"] = "Constitution", + }, + { + ["id"] = 46842, + ["text"] = "Arcane Potency", + }, + { + ["id"] = 52742, + ["text"] = "Hasty Demise", + }, + { + ["id"] = 11645, + ["text"] = "Breath of Lightning", + }, + { + ["id"] = 4833, + ["text"] = "Vigour", + }, + { + ["id"] = 44191, + ["text"] = "As The Mountain", + }, + { + ["id"] = 22356, + ["text"] = "Hematophagy", + }, + { + ["id"] = 51440, + ["text"] = "Druidic Rite", + }, + { + ["id"] = 27203, + ["text"] = "Heart and Soul", + }, + { + ["id"] = 6289, + ["text"] = "Bloodless", + }, + { + ["id"] = 58449, + ["text"] = "Born to Fight", + }, + { + ["id"] = 65210, + ["text"] = "Heart of Oak", + }, + { + ["id"] = 33718, + ["text"] = "Champion of the Cause", + }, + { + ["id"] = 27623, + ["text"] = "Harsh Lessons", + }, + { + ["id"] = 24133, + ["text"] = "Survivalist", + }, + { + ["id"] = 34173, + ["text"] = "Overcharge", + }, + { + ["id"] = 47471, + ["text"] = "Overcharged", + }, + { + ["id"] = 34009, + ["text"] = "Master of the Arena", + }, + { + ["id"] = 53840, + ["text"] = "Vengeance", + }, + { + ["id"] = 58198, + ["text"] = "Fingers of Frost", + }, + { + ["id"] = 30302, + ["text"] = "Hearty", + }, + { + ["id"] = 19858, + ["text"] = "Herbalism", + }, + { + ["id"] = 41420, + ["text"] = "Natural Remedies", + }, + { + ["id"] = 25058, + ["text"] = "Blood Siphon", + }, + { + ["id"] = 7555, + ["text"] = "Crackling Speed", + }, + { + ["id"] = 65097, + ["text"] = "Leadership", + }, + { + ["id"] = 53573, + ["text"] = "Arcane Expanse", + }, + { + ["id"] = 11730, + ["text"] = "Endurance", + }, + { + ["id"] = 35958, + ["text"] = "Faith and Steel", + }, + { + ["id"] = 34973, + ["text"] = "Measured Fury", + }, + { + ["id"] = 13703, + ["text"] = "Defiant Stand", + }, + { + ["id"] = 26023, + ["text"] = "Savage Wounds", + }, + { + ["id"] = 2959, + ["text"] = "Season of Ice", + }, + { + ["id"] = 44103, + ["text"] = "Reflexes", + }, + { + ["id"] = 54629, + ["text"] = "Inexorable", + }, + { + ["id"] = 37326, + ["text"] = "Stamina", + }, + { + ["id"] = 51108, + ["text"] = "Arcane Capacitor", + }, + { + ["id"] = 65108, + ["text"] = "Tireless", + }, + { + ["id"] = 46904, + ["text"] = "Arcane Sanctuary", + }, + { + ["id"] = 44988, + ["text"] = "Wasting", + }, + { + ["id"] = 23066, + ["text"] = "Savagery", + }, + { + ["id"] = 54776, + ["text"] = "Mana Flows", + }, + { + ["id"] = 21634, + ["text"] = "Arcane Chemistry", + }, + { + ["id"] = 48807, + ["text"] = "Art of the Gladiator", + }, + { + ["id"] = 20528, + ["text"] = "Instability", + }, + { + ["id"] = 59766, + ["text"] = "Dirty Techniques", + }, + { + ["id"] = 15290, + ["text"] = "Watchtowers", + }, + { + ["id"] = 3452, + ["text"] = "Foresight", + }, + { + ["id"] = 21460, + ["text"] = "Breath of Rime", + }, + { + ["id"] = 58382, + ["text"] = "Renowned Deeds", + }, + { + ["id"] = 63422, + ["text"] = "Lust for Carnage", + }, + { + ["id"] = 42443, + ["text"] = "Frenetic", + }, + { + ["id"] = 47065, + ["text"] = "Master of Blades", + }, + { + ["id"] = 21228, + ["text"] = "Piercing Shots", + }, + { + ["id"] = 19069, + ["text"] = "Thick Skin", + }, + { + ["id"] = 37647, + ["text"] = "Dismembering", + }, + { + ["id"] = 25411, + ["text"] = "Infused", + }, + { + ["id"] = 8833, + ["text"] = "Heart of Ice", + }, + { + ["id"] = 63251, + ["text"] = "Inveterate", + }, + { + ["id"] = 27788, + ["text"] = "Blood Drinker", + }, + { + ["id"] = 39530, + ["text"] = "Vitality Void", + }, + { + ["id"] = 31257, + ["text"] = "Natural Authority", + }, + { + ["id"] = 15852, + ["text"] = "Ethereal Feast", + }, + { + ["id"] = 29381, + ["text"] = "Ravenous Horde", + }, + { + ["id"] = 13935, + ["text"] = "Thrill of Battle", + }, + { + ["id"] = 62577, + ["text"] = "Essence Surge", + }, + { + ["id"] = 34506, + ["text"] = "Golem Commander", + }, + { + ["id"] = 41472, + ["text"] = "Discipline and Training", + }, + { + ["id"] = 28754, + ["text"] = "Assassination", + }, + { + ["id"] = 61198, + ["text"] = "Heart of the Warrior", + }, + { + ["id"] = 48698, + ["text"] = "Void Barrier", + }, + { + ["id"] = 15400, + ["text"] = "Skittering Runes", + }, + { + ["id"] = 53118, + ["text"] = "Barbarism", + }, + { + ["id"] = 42009, + ["text"] = "Soul of Steel", + }, + { + ["id"] = 13922, + ["text"] = "Steadfast", + }, + { + ["id"] = 61039, + ["text"] = "Wild Hunger", + }, + { + ["id"] = 11820, + ["text"] = "Anointed Flesh", + }, + { + ["id"] = 50029, + ["text"] = "Unnatural Calm", + }, + { + ["id"] = 1325, + ["text"] = "Golem's Blood", + }, + { + ["id"] = 39904, + ["text"] = "Brutal Skewering", + }, + { + ["id"] = 53114, + ["text"] = "Revenge of the Hunted", + }, + { + ["id"] = 50842, + ["text"] = "Veteran's Wrath", + }, + { + ["id"] = 58851, + ["text"] = "Leader of the Pack", + }, + { + ["id"] = 32932, + ["text"] = "Sovereignty", + }, + { + ["id"] = 27119, + ["text"] = "Tribal Fury", + }, + { + ["id"] = 25989, + ["text"] = "Nomadic Teachings", + }, + { + ["id"] = 4177, + ["text"] = "Spiritual Aid", + }, + { + ["id"] = 6799, + ["text"] = "Charisma", + }, + { + ["id"] = 60031, + ["text"] = "Prismatic Skin", + }, + { + ["id"] = 22535, + ["text"] = "Whispers of Doom", + }, + { + ["id"] = 203, + ["text"] = "Vinespike Cordial", + }, + { + ["id"] = 24358, + ["text"] = "Selective Precision", + }, + { + ["id"] = 3195, + ["text"] = "Legacy of the Wilds", + }, + { + ["id"] = 33722, + ["text"] = "Hollow Effigy", + }, + { + ["id"] = 5574, + ["text"] = "Force of Darkness", + }, + { + ["id"] = 56274, + ["text"] = "Lasting Tempest", + }, + { + ["id"] = 14587, + ["text"] = "Adaptive Steel", + }, + { + ["id"] = 13739, + ["text"] = "Always Angry", + }, + { + ["id"] = 32853, + ["text"] = "Sione's Ambition", + }, + { + ["id"] = 37512, + ["text"] = "Bastion of Faith", + }, + { + ["id"] = 4354, + ["text"] = "Beacon of Hope", + }, + { + ["id"] = 14079, + ["text"] = "Wood, Stone, and Spell", + }, + { + ["id"] = 41169, + ["text"] = "Jagged Wounds", + }, + { + ["id"] = 20605, + ["text"] = "No Forgiveness", + }, + { + ["id"] = 56146, + ["text"] = "Deliberate Brutality", + }, + { + ["id"] = 1365, + ["text"] = "Knowledge Barrier", + }, + { + ["id"] = 23549, + ["text"] = "Incorporeal", + }, + { + ["id"] = 51360, + ["text"] = "Mixed Munitions", + }, + { + ["id"] = 56207, + ["text"] = "Hardened Scars", + }, + { + ["id"] = 57006, + ["text"] = "Vengeant Cascade", + }, + { + ["id"] = 48556, + ["text"] = "Heart of Darkness", + }, + { + ["id"] = 53759, + ["text"] = "Cleansed Thoughts", + }, + { + ["id"] = 40849, + ["text"] = "Persistence", + }, + { + ["id"] = 38706, + ["text"] = "Way of the Warrior", + }, + { + ["id"] = 62596, + ["text"] = "Mystic Talents", + }, + { + ["id"] = 41307, + ["text"] = "Deadly Inclinations", + }, + { + ["id"] = 16246, + ["text"] = "Tranquility", + }, + { + ["id"] = 64217, + ["text"] = "Aspect of Stone", + }, + { + ["id"] = 52282, + ["text"] = "Tenacity", + }, + { + ["id"] = 5624, + ["text"] = "Crusader", + }, + { + ["id"] = 27781, + ["text"] = "Worship the Blightheart", + }, + }, + }, + ["text"] = "Allocates # (Second)", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1898784841", + ["option"] = { + ["options"] = { + { + ["id"] = 4918, + ["text"] = "Indiscriminate Revenge", + }, + { + ["id"] = 15226, + ["text"] = "Cruel Retort", + }, + { + ["id"] = 2599, + ["text"] = "Prepared Response", + }, + { + ["id"] = 59976, + ["text"] = "Careful Counterattack", + }, + { + ["id"] = 37425, + ["text"] = "Practised Reapplication", + }, + { + ["id"] = 41305, + ["text"] = "Crushing Reply", + }, + { + ["id"] = 34978, + ["text"] = "Colloidal Mixture", + }, + { + ["id"] = 56330, + ["text"] = "Flow of Battle", + }, + { + ["id"] = 64226, + ["text"] = "Roaring Challenge", + }, + { + ["id"] = 52030, + ["text"] = "Burst of Energy", + }, + { + ["id"] = 30160, + ["text"] = "Fending", + }, + { + ["id"] = 24716, + ["text"] = "Battle Trance", + }, + { + ["id"] = 18357, + ["text"] = "Feline Swiftness", + }, + { + ["id"] = 23690, + ["text"] = "Essence Infusion", + }, + { + ["id"] = 10542, + ["text"] = "Spiked Bulwark", + }, + { + ["id"] = 37078, + ["text"] = "Path of the Savant", + }, + { + ["id"] = 12702, + ["text"] = "Path of the Warrior", + }, + { + ["id"] = 19506, + ["text"] = "Path of the Hunter", + }, + { + ["id"] = 38516, + ["text"] = "Righteous Decree", + }, + { + ["id"] = 63150, + ["text"] = "Ironwood", + }, + { + ["id"] = 16243, + ["text"] = "Fusillade", + }, + { + ["id"] = 2715, + ["text"] = "Quickstep", + }, + { + ["id"] = 52230, + ["text"] = "Weathered Hunter", + }, + { + ["id"] = 21435, + ["text"] = "Cloth and Chain", + }, + { + ["id"] = 31033, + ["text"] = "Robust", + }, + { + ["id"] = 65224, + ["text"] = "Aspect of the Eagle", + }, + { + ["id"] = 24256, + ["text"] = "Dynamo", + }, + { + ["id"] = 21973, + ["text"] = "Decay Ward", + }, + { + ["id"] = 45067, + ["text"] = "Thrill Killer", + }, + { + ["id"] = 24067, + ["text"] = "Instinct", + }, + { + ["id"] = 1382, + ["text"] = "Spirit Void", + }, + { + ["id"] = 529, + ["text"] = "Poisonous Fangs", + }, + { + ["id"] = 46965, + ["text"] = "Saboteur", + }, + { + ["id"] = 47484, + ["text"] = "Depth Perception", + }, + { + ["id"] = 42686, + ["text"] = "Elemental Focus", + }, + { + ["id"] = 27929, + ["text"] = "Deep Wisdom", + }, + { + ["id"] = 27806, + ["text"] = "As The Thunder", + }, + { + ["id"] = 27301, + ["text"] = "Martial Experience", + }, + { + ["id"] = 60002, + ["text"] = "Fury Bolts", + }, + { + ["id"] = 6783, + ["text"] = "Savage Skewering", + }, + { + ["id"] = 5289, + ["text"] = "Battle Rouse", + }, + { + ["id"] = 27190, + ["text"] = "Overprepared", + }, + { + ["id"] = 20832, + ["text"] = "Sanctuary", + }, + { + ["id"] = 49645, + ["text"] = "Cauterisation", + }, + { + ["id"] = 7440, + ["text"] = "Harvester of Foes", + }, + { + ["id"] = 8135, + ["text"] = "Practical Application", + }, + { + ["id"] = 46408, + ["text"] = "Fangs of the Viper", + }, + { + ["id"] = 10016, + ["text"] = "Executioner", + }, + { + ["id"] = 42804, + ["text"] = "Mind Drinker", + }, + { + ["id"] = 50690, + ["text"] = "Replenishing Remedies", + }, + { + ["id"] = 15344, + ["text"] = "Freedom of Movement", + }, + { + ["id"] = 10835, + ["text"] = "Dreamer", + }, + { + ["id"] = 8001, + ["text"] = "Clever Thief", + }, + { + ["id"] = 44788, + ["text"] = "Potent Connections", + }, + { + ["id"] = 2550, + ["text"] = "Arsonist", + }, + { + ["id"] = 28878, + ["text"] = "Relentless", + }, + { + ["id"] = 45283, + ["text"] = "Cornered Prey", + }, + { + ["id"] = 7085, + ["text"] = "Weapon Artistry", + }, + { + ["id"] = 35233, + ["text"] = "Discord Artisan", + }, + { + ["id"] = 18174, + ["text"] = "Mystic Bulwark", + }, + { + ["id"] = 53757, + ["text"] = "Shamanistic Fury", + }, + { + ["id"] = 22133, + ["text"] = "Invigorating Blaze", + }, + { + ["id"] = 12033, + ["text"] = "Wicked Blade", + }, + { + ["id"] = 24362, + ["text"] = "Deep Thoughts", + }, + { + ["id"] = 10115, + ["text"] = "Prodigal Perfection", + }, + { + ["id"] = 19144, + ["text"] = "Sentinel", + }, + { + ["id"] = 65107, + ["text"] = "Bastion Breaker", + }, + { + ["id"] = 42720, + ["text"] = "Heavy Draw", + }, + { + ["id"] = 54791, + ["text"] = "Claws of the Magpie", + }, + { + ["id"] = 52157, + ["text"] = "Soul Siphon", + }, + { + ["id"] = 59423, + ["text"] = "Escalation", + }, + { + ["id"] = 60781, + ["text"] = "Inspiring Bond", + }, + { + ["id"] = 31473, + ["text"] = "Master of Wounds", + }, + { + ["id"] = 17608, + ["text"] = "Silent Steps", + }, + { + ["id"] = 29861, + ["text"] = "Explosive Runes", + }, + { + ["id"] = 36859, + ["text"] = "Steelwood Stance", + }, + { + ["id"] = 44102, + ["text"] = "Efficient Explosives", + }, + { + ["id"] = 30693, + ["text"] = "Divine Fervour", + }, + { + ["id"] = 63933, + ["text"] = "Totemic Zeal", + }, + { + ["id"] = 40645, + ["text"] = "Bone Breaker", + }, + { + ["id"] = 11784, + ["text"] = "Vampirism", + }, + { + ["id"] = 2275, + ["text"] = "Nature's Concoction", + }, + { + ["id"] = 59556, + ["text"] = "Expeditious Munitions", + }, + { + ["id"] = 33082, + ["text"] = "Razor's Edge", + }, + { + ["id"] = 56359, + ["text"] = "Cannibalistic Rite", + }, + { + ["id"] = 28034, + ["text"] = "Empowered Bond", + }, + { + ["id"] = 59866, + ["text"] = "Entrench", + }, + { + ["id"] = 45657, + ["text"] = "Trial of the Faith", + }, + { + ["id"] = 35436, + ["text"] = "Kinetic Impacts", + }, + { + ["id"] = 41476, + ["text"] = "Elder Power", + }, + { + ["id"] = 58168, + ["text"] = "High Voltage", + }, + { + ["id"] = 45608, + ["text"] = "Successive Detonations", + }, + { + ["id"] = 33582, + ["text"] = "Forceful Skewering", + }, + { + ["id"] = 23038, + ["text"] = "Slaughter", + }, + { + ["id"] = 55002, + ["text"] = "Righteous Fury", + }, + { + ["id"] = 52789, + ["text"] = "Circle of Life", + }, + { + ["id"] = 60619, + ["text"] = "Galvanic Hammer", + }, + { + ["id"] = 63453, + ["text"] = "Excess Sustenance", + }, + { + ["id"] = 28449, + ["text"] = "Surge of Vigour", + }, + { + ["id"] = 62802, + ["text"] = "Brink of Death", + }, + { + ["id"] = 6237, + ["text"] = "Precision", + }, + { + ["id"] = 16236, + ["text"] = "Toxic Strikes", + }, + { + ["id"] = 39657, + ["text"] = "Pain Forger", + }, + { + ["id"] = 36915, + ["text"] = "Sacrifice", + }, + { + ["id"] = 51212, + ["text"] = "Entropy", + }, + { + ["id"] = 61982, + ["text"] = "Grave Intentions", + }, + { + ["id"] = 6233, + ["text"] = "Blast Waves", + }, + { + ["id"] = 48823, + ["text"] = "Deadly Draw", + }, + { + ["id"] = 65093, + ["text"] = "Bladedancer", + }, + { + ["id"] = 37504, + ["text"] = "Intuition", + }, + { + ["id"] = 36736, + ["text"] = "Burning Brutality", + }, + { + ["id"] = 64077, + ["text"] = "Warrior Training", + }, + { + ["id"] = 63635, + ["text"] = "Primal Manifestation", + }, + { + ["id"] = 5126, + ["text"] = "Spinecruncher", + }, + { + ["id"] = 51559, + ["text"] = "Smashing Strikes", + }, + { + ["id"] = 63921, + ["text"] = "Utmost Swiftness", + }, + { + ["id"] = 47743, + ["text"] = "Farsight", + }, + { + ["id"] = 42917, + ["text"] = "Whirling Barrier", + }, + { + ["id"] = 59605, + ["text"] = "Unstable Munitions", + }, + { + ["id"] = 46471, + ["text"] = "Powerful Bond", + }, + { + ["id"] = 1405, + ["text"] = "From the Shadows", + }, + { + ["id"] = 26096, + ["text"] = "Hatchet Master", + }, + { + ["id"] = 55380, + ["text"] = "Clever Construction", + }, + { + ["id"] = 49772, + ["text"] = "Utmost Might", + }, + { + ["id"] = 22972, + ["text"] = "Wandslinger", + }, + { + ["id"] = 49969, + ["text"] = "Courage", + }, + { + ["id"] = 26763, + ["text"] = "Perfected Formula", + }, + { + ["id"] = 41870, + ["text"] = "Winter's Embrace", + }, + { + ["id"] = 25738, + ["text"] = "Relentless Pursuit", + }, + { + ["id"] = 17171, + ["text"] = "Flash Freeze", + }, + { + ["id"] = 36490, + ["text"] = "Flaying", + }, + { + ["id"] = 35685, + ["text"] = "Fearsome Force", + }, + { + ["id"] = 62849, + ["text"] = "Glacial Cage", + }, + { + ["id"] = 24858, + ["text"] = "Harpooner", + }, + { + ["id"] = 15046, + ["text"] = "Redemption", + }, + { + ["id"] = 55114, + ["text"] = "Utmost Intellect", + }, + { + ["id"] = 7918, + ["text"] = "Enigmatic Defence", + }, + { + ["id"] = 14606, + ["text"] = "Butchery", + }, + { + ["id"] = 33435, + ["text"] = "Holy Dominion", + }, + { + ["id"] = 26557, + ["text"] = "Static Blows", + }, + { + ["id"] = 14001, + ["text"] = "Unfaltering", + }, + { + ["id"] = 9567, + ["text"] = "Light Eater", + }, + { + ["id"] = 63033, + ["text"] = "Bannerman", + }, + { + ["id"] = 63976, + ["text"] = "Shaper", + }, + { + ["id"] = 53493, + ["text"] = "Annihilation", + }, + { + ["id"] = 45317, + ["text"] = "Ash, Frost and Storm", + }, + { + ["id"] = 44207, + ["text"] = "Testudo", + }, + { + ["id"] = 30225, + ["text"] = "Lightning Walker", + }, + { + ["id"] = 9788, + ["text"] = "Nimbleness", + }, + { + ["id"] = 31508, + ["text"] = "Aspect of the Lynx", + }, + { + ["id"] = 53042, + ["text"] = "Exceptional Performance", + }, + { + ["id"] = 4940, + ["text"] = "Cleaving", + }, + { + ["id"] = 42795, + ["text"] = "Arcane Focus", + }, + { + ["id"] = 21413, + ["text"] = "Combat Stamina", + }, + { + ["id"] = 33903, + ["text"] = "Will of Blades", + }, + { + ["id"] = 44347, + ["text"] = "Divine Fury", + }, + { + ["id"] = 65502, + ["text"] = "Heartseeker", + }, + { + ["id"] = 6770, + ["text"] = "Arcane Guarding", + }, + { + ["id"] = 1340, + ["text"] = "Rampart", + }, + { + ["id"] = 13164, + ["text"] = "Divine Judgement", + }, + { + ["id"] = 35894, + ["text"] = "Trickery", + }, + { + ["id"] = 49538, + ["text"] = "Defiance", + }, + { + ["id"] = 33545, + ["text"] = "Harrier", + }, + { + ["id"] = 6, + ["text"] = "Twin Terrors", + }, + { + ["id"] = 65273, + ["text"] = "Enigmatic Reach", + }, + { + ["id"] = 25178, + ["text"] = "Primal Spirit", + }, + { + ["id"] = 29522, + ["text"] = "Dance of Blades", + }, + { + ["id"] = 19730, + ["text"] = "Assured Strike", + }, + { + ["id"] = 15085, + ["text"] = "Ambidexterity", + }, + { + ["id"] = 24383, + ["text"] = "Warrior's Blood", + }, + { + ["id"] = 32681, + ["text"] = "Mark the Prey", + }, + { + ["id"] = 6967, + ["text"] = "Safeguard", + }, + { + ["id"] = 37403, + ["text"] = "Infused Flesh", + }, + { + ["id"] = 54694, + ["text"] = "Light of Divinity", + }, + { + ["id"] = 45945, + ["text"] = "Conjured Barrier", + }, + { + ["id"] = 49621, + ["text"] = "Acuity", + }, + { + ["id"] = 54142, + ["text"] = "Finesse", + }, + { + ["id"] = 9432, + ["text"] = "Mental Rapidity", + }, + { + ["id"] = 26960, + ["text"] = "Forethought", + }, + { + ["id"] = 14813, + ["text"] = "Revelry", + }, + { + ["id"] = 861, + ["text"] = "Aggressive Bastion", + }, + { + ["id"] = 26866, + ["text"] = "Sanctity", + }, + { + ["id"] = 65053, + ["text"] = "Essence Sap", + }, + { + ["id"] = 25439, + ["text"] = "Undertaker", + }, + { + ["id"] = 49416, + ["text"] = "Adamant", + }, + { + ["id"] = 64355, + ["text"] = "Brand Equity", + }, + { + ["id"] = 24050, + ["text"] = "Coldhearted Calculation", + }, + { + ["id"] = 11420, + ["text"] = "Arcanist's Dominion", + }, + { + ["id"] = 2225, + ["text"] = "Eagle Eye", + }, + { + ["id"] = 32455, + ["text"] = "Storm Weaver", + }, + { + ["id"] = 12809, + ["text"] = "Berserking", + }, + { + ["id"] = 1006, + ["text"] = "Potency of Will", + }, + { + ["id"] = 5823, + ["text"] = "Coordination", + }, + { + ["id"] = 18703, + ["text"] = "Graceful Assault", + }, + { + ["id"] = 20835, + ["text"] = "Brinkmanship", + }, + { + ["id"] = 3309, + ["text"] = "Fleetfoot", + }, + { + ["id"] = 15842, + ["text"] = "One With Nature", + }, + { + ["id"] = 15711, + ["text"] = "Blast Radius", + }, + { + ["id"] = 34666, + ["text"] = "Destroyer", + }, + { + ["id"] = 14665, + ["text"] = "Divine Wrath", + }, + { + ["id"] = 30471, + ["text"] = "True Strike", + }, + { + ["id"] = 49318, + ["text"] = "Wrecking Ball", + }, + { + ["id"] = 32059, + ["text"] = "Titanic Impacts", + }, + { + ["id"] = 65308, + ["text"] = "Diamond Skin", + }, + { + ["id"] = 12795, + ["text"] = "Versatility", + }, + { + ["id"] = 33287, + ["text"] = "Juggernaut", + }, + { + ["id"] = 25456, + ["text"] = "Dervish", + }, + { + ["id"] = 35663, + ["text"] = "Strong Arm", + }, + { + ["id"] = 60737, + ["text"] = "Sleight of Hand", + }, + { + ["id"] = 41137, + ["text"] = "Field Medicine", + }, + { + ["id"] = 50858, + ["text"] = "Admonisher", + }, + { + ["id"] = 7069, + ["text"] = "Split Shot", + }, + { + ["id"] = 544, + ["text"] = "Surveillance", + }, + { + ["id"] = 61308, + ["text"] = "Amplify", + }, + { + ["id"] = 570, + ["text"] = "Dazzling Strikes", + }, + { + ["id"] = 34284, + ["text"] = "Seasoned Swordplay", + }, + { + ["id"] = 24324, + ["text"] = "Explosive Impact", + }, + { + ["id"] = 32738, + ["text"] = "Wall of Steel", + }, + { + ["id"] = 34661, + ["text"] = "Fire Walker", + }, + { + ["id"] = 54268, + ["text"] = "Blade Barrier", + }, + { + ["id"] = 44824, + ["text"] = "Mysticism", + }, + { + ["id"] = 18865, + ["text"] = "Melding", + }, + { + ["id"] = 49445, + ["text"] = "Deep Breaths", + }, + { + ["id"] = 47306, + ["text"] = "Throatseeker", + }, + { + ["id"] = 44955, + ["text"] = "Frost Walker", + }, + { + ["id"] = 22706, + ["text"] = "Savage Intensity", + }, + { + ["id"] = 39743, + ["text"] = "Dark Arts", + }, + { + ["id"] = 40619, + ["text"] = "Awe and Terror", + }, + { + ["id"] = 50338, + ["text"] = "Ballistics", + }, + { + ["id"] = 58032, + ["text"] = "Serpentine Spellslinger", + }, + { + ["id"] = 53802, + ["text"] = "Essence Extraction", + }, + { + ["id"] = 49254, + ["text"] = "Retribution", + }, + { + ["id"] = 25970, + ["text"] = "Acrimony", + }, + { + ["id"] = 32176, + ["text"] = "Soul Thief", + }, + { + ["id"] = 51748, + ["text"] = "Last Rites", + }, + { + ["id"] = 57900, + ["text"] = "Command of Steel", + }, + { + ["id"] = 5430, + ["text"] = "Magmatic Strikes", + }, + { + ["id"] = 49379, + ["text"] = "Hired Killer", + }, + { + ["id"] = 12878, + ["text"] = "Retaliation", + }, + { + ["id"] = 19103, + ["text"] = "Righteous Army", + }, + { + ["id"] = 8458, + ["text"] = "Longshot", + }, + { + ["id"] = 24721, + ["text"] = "Ribcage Crusher", + }, + { + ["id"] = 9015, + ["text"] = "Dire Torment", + }, + { + ["id"] = 27308, + ["text"] = "Gravepact", + }, + { + ["id"] = 31513, + ["text"] = "Adjacent Animosity", + }, + { + ["id"] = 30974, + ["text"] = "Expert Hunter", + }, + { + ["id"] = 6615, + ["text"] = "Arcing Blows", + }, + { + ["id"] = 64882, + ["text"] = "Disciple of the Unyielding", + }, + { + ["id"] = 52031, + ["text"] = "Disintegration", + }, + { + ["id"] = 25367, + ["text"] = "Blade Master", + }, + { + ["id"] = 57199, + ["text"] = "Fangs of Frost", + }, + { + ["id"] = 39761, + ["text"] = "Counterweight", + }, + { + ["id"] = 21602, + ["text"] = "Destructive Apparatus", + }, + { + ["id"] = 9535, + ["text"] = "Hunter's Gambit", + }, + { + ["id"] = 28503, + ["text"] = "Life Raker", + }, + { + ["id"] = 27163, + ["text"] = "Arcane Will", + }, + { + ["id"] = 8920, + ["text"] = "Backstabbing", + }, + { + ["id"] = 63207, + ["text"] = "Tempest Blast", + }, + { + ["id"] = 43385, + ["text"] = "Winter Spirit", + }, + { + ["id"] = 21297, + ["text"] = "High Explosives", + }, + { + ["id"] = 29049, + ["text"] = "Holy Fire", + }, + { + ["id"] = 54713, + ["text"] = "Force Shaper", + }, + { + ["id"] = 44562, + ["text"] = "Shaman's Dominion", + }, + { + ["id"] = 18707, + ["text"] = "Perfectionist", + }, + { + ["id"] = 41595, + ["text"] = "Marked for Death", + }, + { + ["id"] = 57839, + ["text"] = "Blade of Cunning", + }, + { + ["id"] = 15437, + ["text"] = "Deflection", + }, + { + ["id"] = 38849, + ["text"] = "Searing Heat", + }, + { + ["id"] = 33777, + ["text"] = "Devastating Devices", + }, + { + ["id"] = 26564, + ["text"] = "Vanquisher", + }, + { + ["id"] = 4481, + ["text"] = "Forces of Nature", + }, + { + ["id"] = 10511, + ["text"] = "Tolerance", + }, + { + ["id"] = 26620, + ["text"] = "Corruption", + }, + { + ["id"] = 16703, + ["text"] = "Skull Cracking", + }, + { + ["id"] = 32227, + ["text"] = "Adder's Touch", + }, + { + ["id"] = 19794, + ["text"] = "Concussive Force", + }, + { + ["id"] = 31359, + ["text"] = "Fatal Toxins", + }, + { + ["id"] = 63727, + ["text"] = "Gladiator's Perseverance", + }, + { + ["id"] = 41119, + ["text"] = "Lethality", + }, + { + ["id"] = 52090, + ["text"] = "Feller of Foes", + }, + { + ["id"] = 62094, + ["text"] = "Taste for Blood", + }, + { + ["id"] = 55772, + ["text"] = "Blacksmith's Clout", + }, + { + ["id"] = 49459, + ["text"] = "King of the Hill", + }, + { + ["id"] = 26294, + ["text"] = "Bloodletting", + }, + { + ["id"] = 7136, + ["text"] = "Master Sapper", + }, + { + ["id"] = 33725, + ["text"] = "Swagger", + }, + { + ["id"] = 34591, + ["text"] = "Malicious Intent", + }, + { + ["id"] = 31585, + ["text"] = "Careful Conservationist", + }, + { + ["id"] = 22702, + ["text"] = "Serpent Stance", + }, + { + ["id"] = 4854, + ["text"] = "Asylum", + }, + { + ["id"] = 36281, + ["text"] = "Primeval Force", + }, + { + ["id"] = 19897, + ["text"] = "Death Attunement", + }, + { + ["id"] = 51881, + ["text"] = "Master Fletcher", + }, + { + ["id"] = 15614, + ["text"] = "Claws of the Hawk", + }, + { + ["id"] = 61689, + ["text"] = "Explosive Elements", + }, + { + ["id"] = 9194, + ["text"] = "Merciless Skewering", + }, + { + ["id"] = 27611, + ["text"] = "Lord of the Dead", + }, + { + ["id"] = 64395, + ["text"] = "Blunt Trauma", + }, + { + ["id"] = 55381, + ["text"] = "Arcane Retaliation", + }, + { + ["id"] = 21389, + ["text"] = "Runesmith", + }, + { + ["id"] = 39986, + ["text"] = "Defiled Forces", + }, + { + ["id"] = 9261, + ["text"] = "Disciple of the Forbidden", + }, + { + ["id"] = 36687, + ["text"] = "Avatar of the Hunt", + }, + { + ["id"] = 63944, + ["text"] = "Prism Weave", + }, + { + ["id"] = 25409, + ["text"] = "Indomitable Army", + }, + { + ["id"] = 1568, + ["text"] = "Fatal Blade", + }, + { + ["id"] = 30439, + ["text"] = "Lava Lash", + }, + { + ["id"] = 53013, + ["text"] = "Atrophy", + }, + { + ["id"] = 41989, + ["text"] = "Resourcefulness", + }, + { + ["id"] = 43689, + ["text"] = "Spiritual Command", + }, + { + ["id"] = 7263, + ["text"] = "Swift Venoms", + }, + { + ["id"] = 38922, + ["text"] = "Goliath", + }, + { + ["id"] = 56094, + ["text"] = "One with the River", + }, + { + ["id"] = 7688, + ["text"] = "Enduring Bond", + }, + { + ["id"] = 59151, + ["text"] = "Brutal Blade", + }, + { + ["id"] = 56648, + ["text"] = "Claws of the Falcon", + }, + { + ["id"] = 4207, + ["text"] = "Window of Opportunity", + }, + { + ["id"] = 9864, + ["text"] = "Growth and Decay", + }, + { + ["id"] = 58921, + ["text"] = "Disciple of the Slaughter", + }, + { + ["id"] = 56276, + ["text"] = "Nightstalker", + }, + { + ["id"] = 9055, + ["text"] = "Volatile Mines", + }, + { + ["id"] = 48298, + ["text"] = "Insightfulness", + }, + { + ["id"] = 55194, + ["text"] = "Settling Ash", + }, + { + ["id"] = 42649, + ["text"] = "Snowforged", + }, + { + ["id"] = 53652, + ["text"] = "Steeped in the Profane", + }, + { + ["id"] = 61190, + ["text"] = "Rallying Icon", + }, + { + ["id"] = 12143, + ["text"] = "Influence", + }, + { + ["id"] = 38246, + ["text"] = "Presage", + }, + { + ["id"] = 56716, + ["text"] = "Heart of Thunder", + }, + { + ["id"] = 36949, + ["text"] = "Devotion", + }, + { + ["id"] = 45350, + ["text"] = "Glory of Command", + }, + { + ["id"] = 58218, + ["text"] = "Purity of Flesh", + }, + { + ["id"] = 61981, + ["text"] = "Doom Cast", + }, + { + ["id"] = 21330, + ["text"] = "Quick Recovery", + }, + { + ["id"] = 40743, + ["text"] = "Crystal Skin", + }, + { + ["id"] = 48438, + ["text"] = "Bravery", + }, + { + ["id"] = 11924, + ["text"] = "Breath of Flames", + }, + { + ["id"] = 45803, + ["text"] = "Veteran Soldier", + }, + { + ["id"] = 48614, + ["text"] = "Fervour", + }, + { + ["id"] = 27422, + ["text"] = "Spirit of War", + }, + { + ["id"] = 42041, + ["text"] = "Profane Chemistry", + }, + { + ["id"] = 60501, + ["text"] = "Heart of Flame", + }, + { + ["id"] = 18769, + ["text"] = "Written in Blood", + }, + { + ["id"] = 45329, + ["text"] = "Trick Shot", + }, + { + ["id"] = 21958, + ["text"] = "Cruel Preparation", + }, + { + ["id"] = 58831, + ["text"] = "Disemboweling", + }, + { + ["id"] = 27137, + ["text"] = "Sanctum of Thought", + }, + { + ["id"] = 13375, + ["text"] = "Multishot", + }, + { + ["id"] = 55027, + ["text"] = "Shining Justice", + }, + { + ["id"] = 55485, + ["text"] = "Constitution", + }, + { + ["id"] = 46842, + ["text"] = "Arcane Potency", + }, + { + ["id"] = 52742, + ["text"] = "Hasty Demise", + }, + { + ["id"] = 11645, + ["text"] = "Breath of Lightning", + }, + { + ["id"] = 4833, + ["text"] = "Vigour", + }, + { + ["id"] = 44191, + ["text"] = "As The Mountain", + }, + { + ["id"] = 22356, + ["text"] = "Hematophagy", + }, + { + ["id"] = 51440, + ["text"] = "Druidic Rite", + }, + { + ["id"] = 27203, + ["text"] = "Heart and Soul", + }, + { + ["id"] = 6289, + ["text"] = "Bloodless", + }, + { + ["id"] = 58449, + ["text"] = "Born to Fight", + }, + { + ["id"] = 65210, + ["text"] = "Heart of Oak", + }, + { + ["id"] = 33718, + ["text"] = "Champion of the Cause", + }, + { + ["id"] = 27623, + ["text"] = "Harsh Lessons", + }, + { + ["id"] = 24133, + ["text"] = "Survivalist", + }, + { + ["id"] = 34173, + ["text"] = "Overcharge", + }, + { + ["id"] = 47471, + ["text"] = "Overcharged", + }, + { + ["id"] = 34009, + ["text"] = "Master of the Arena", + }, + { + ["id"] = 53840, + ["text"] = "Vengeance", + }, + { + ["id"] = 58198, + ["text"] = "Fingers of Frost", + }, + { + ["id"] = 30302, + ["text"] = "Hearty", + }, + { + ["id"] = 19858, + ["text"] = "Herbalism", + }, + { + ["id"] = 41420, + ["text"] = "Natural Remedies", + }, + { + ["id"] = 25058, + ["text"] = "Blood Siphon", + }, + { + ["id"] = 7555, + ["text"] = "Crackling Speed", + }, + { + ["id"] = 65097, + ["text"] = "Leadership", + }, + { + ["id"] = 53573, + ["text"] = "Arcane Expanse", + }, + { + ["id"] = 11730, + ["text"] = "Endurance", + }, + { + ["id"] = 35958, + ["text"] = "Faith and Steel", + }, + { + ["id"] = 34973, + ["text"] = "Measured Fury", + }, + { + ["id"] = 13703, + ["text"] = "Defiant Stand", + }, + { + ["id"] = 26023, + ["text"] = "Savage Wounds", + }, + { + ["id"] = 2959, + ["text"] = "Season of Ice", + }, + { + ["id"] = 44103, + ["text"] = "Reflexes", + }, + { + ["id"] = 54629, + ["text"] = "Inexorable", + }, + { + ["id"] = 37326, + ["text"] = "Stamina", + }, + { + ["id"] = 51108, + ["text"] = "Arcane Capacitor", + }, + { + ["id"] = 65108, + ["text"] = "Tireless", + }, + { + ["id"] = 46904, + ["text"] = "Arcane Sanctuary", + }, + { + ["id"] = 44988, + ["text"] = "Wasting", + }, + { + ["id"] = 23066, + ["text"] = "Savagery", + }, + { + ["id"] = 54776, + ["text"] = "Mana Flows", + }, + { + ["id"] = 21634, + ["text"] = "Arcane Chemistry", + }, + { + ["id"] = 48807, + ["text"] = "Art of the Gladiator", + }, + { + ["id"] = 20528, + ["text"] = "Instability", + }, + { + ["id"] = 59766, + ["text"] = "Dirty Techniques", + }, + { + ["id"] = 15290, + ["text"] = "Watchtowers", + }, + { + ["id"] = 3452, + ["text"] = "Foresight", + }, + { + ["id"] = 21460, + ["text"] = "Breath of Rime", + }, + { + ["id"] = 58382, + ["text"] = "Renowned Deeds", + }, + { + ["id"] = 63422, + ["text"] = "Lust for Carnage", + }, + { + ["id"] = 42443, + ["text"] = "Frenetic", + }, + { + ["id"] = 47065, + ["text"] = "Master of Blades", + }, + { + ["id"] = 21228, + ["text"] = "Piercing Shots", + }, + { + ["id"] = 19069, + ["text"] = "Thick Skin", + }, + { + ["id"] = 37647, + ["text"] = "Dismembering", + }, + { + ["id"] = 25411, + ["text"] = "Infused", + }, + { + ["id"] = 8833, + ["text"] = "Heart of Ice", + }, + { + ["id"] = 63251, + ["text"] = "Inveterate", + }, + { + ["id"] = 27788, + ["text"] = "Blood Drinker", + }, + { + ["id"] = 39530, + ["text"] = "Vitality Void", + }, + { + ["id"] = 31257, + ["text"] = "Natural Authority", + }, + { + ["id"] = 15852, + ["text"] = "Ethereal Feast", + }, + { + ["id"] = 29381, + ["text"] = "Ravenous Horde", + }, + { + ["id"] = 13935, + ["text"] = "Thrill of Battle", + }, + { + ["id"] = 62577, + ["text"] = "Essence Surge", + }, + { + ["id"] = 34506, + ["text"] = "Golem Commander", + }, + { + ["id"] = 41472, + ["text"] = "Discipline and Training", + }, + { + ["id"] = 28754, + ["text"] = "Assassination", + }, + { + ["id"] = 61198, + ["text"] = "Heart of the Warrior", + }, + { + ["id"] = 48698, + ["text"] = "Void Barrier", + }, + { + ["id"] = 15400, + ["text"] = "Skittering Runes", + }, + { + ["id"] = 53118, + ["text"] = "Barbarism", + }, + { + ["id"] = 42009, + ["text"] = "Soul of Steel", + }, + { + ["id"] = 13922, + ["text"] = "Steadfast", + }, + { + ["id"] = 61039, + ["text"] = "Wild Hunger", + }, + { + ["id"] = 11820, + ["text"] = "Anointed Flesh", + }, + { + ["id"] = 50029, + ["text"] = "Unnatural Calm", + }, + { + ["id"] = 1325, + ["text"] = "Golem's Blood", + }, + { + ["id"] = 39904, + ["text"] = "Brutal Skewering", + }, + { + ["id"] = 53114, + ["text"] = "Revenge of the Hunted", + }, + { + ["id"] = 50842, + ["text"] = "Veteran's Wrath", + }, + { + ["id"] = 58851, + ["text"] = "Leader of the Pack", + }, + { + ["id"] = 32932, + ["text"] = "Sovereignty", + }, + { + ["id"] = 27119, + ["text"] = "Tribal Fury", + }, + { + ["id"] = 25989, + ["text"] = "Nomadic Teachings", + }, + { + ["id"] = 4177, + ["text"] = "Spiritual Aid", + }, + { + ["id"] = 6799, + ["text"] = "Charisma", + }, + { + ["id"] = 60031, + ["text"] = "Prismatic Skin", + }, + { + ["id"] = 22535, + ["text"] = "Whispers of Doom", + }, + { + ["id"] = 203, + ["text"] = "Vinespike Cordial", + }, + { + ["id"] = 24358, + ["text"] = "Selective Precision", + }, + { + ["id"] = 3195, + ["text"] = "Legacy of the Wilds", + }, + { + ["id"] = 33722, + ["text"] = "Hollow Effigy", + }, + { + ["id"] = 5574, + ["text"] = "Force of Darkness", + }, + { + ["id"] = 56274, + ["text"] = "Lasting Tempest", + }, + { + ["id"] = 14587, + ["text"] = "Adaptive Steel", + }, + { + ["id"] = 13739, + ["text"] = "Always Angry", + }, + { + ["id"] = 32853, + ["text"] = "Sione's Ambition", + }, + { + ["id"] = 37512, + ["text"] = "Bastion of Faith", + }, + { + ["id"] = 4354, + ["text"] = "Beacon of Hope", + }, + { + ["id"] = 14079, + ["text"] = "Wood, Stone, and Spell", + }, + { + ["id"] = 41169, + ["text"] = "Jagged Wounds", + }, + { + ["id"] = 20605, + ["text"] = "No Forgiveness", + }, + { + ["id"] = 56146, + ["text"] = "Deliberate Brutality", + }, + { + ["id"] = 1365, + ["text"] = "Knowledge Barrier", + }, + { + ["id"] = 23549, + ["text"] = "Incorporeal", + }, + { + ["id"] = 51360, + ["text"] = "Mixed Munitions", + }, + { + ["id"] = 56207, + ["text"] = "Hardened Scars", + }, + { + ["id"] = 57006, + ["text"] = "Vengeant Cascade", + }, + { + ["id"] = 48556, + ["text"] = "Heart of Darkness", + }, + { + ["id"] = 53759, + ["text"] = "Cleansed Thoughts", + }, + { + ["id"] = 40849, + ["text"] = "Persistence", + }, + { + ["id"] = 38706, + ["text"] = "Way of the Warrior", + }, + { + ["id"] = 62596, + ["text"] = "Mystic Talents", + }, + { + ["id"] = 41307, + ["text"] = "Deadly Inclinations", + }, + { + ["id"] = 16246, + ["text"] = "Tranquility", + }, + { + ["id"] = 64217, + ["text"] = "Aspect of Stone", + }, + { + ["id"] = 52282, + ["text"] = "Tenacity", + }, + { + ["id"] = 5624, + ["text"] = "Crusader", + }, + { + ["id"] = 27781, + ["text"] = "Worship the Blightheart", + }, + }, + }, + ["text"] = "Allocates # (Third)", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3903190985", + ["text"] = "An additional Conqueror Map drops on Completing Area (Tier 14+)", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3903190985", + ["text"] = "An additional Conqueror Map drops on Completing your Maps (Tier 14+)", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3844573517", + ["text"] = "An additional Elder Guardian Map drops on Completing Area (Tier 14+)", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3844573517", + ["text"] = "An additional Elder Guardian Map drops on Completing your Maps (Tier 14+)", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_696413077", + ["text"] = "An additional Map drops on Completing Area", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_696413077", + ["text"] = "An additional Map drops on Completing your Maps", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_493747147", + ["text"] = "An additional Shaper Guardian Map drops on Completing Area (Tier 14+)", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_493747147", + ["text"] = "An additional Shaper Guardian Map drops on Completing your Maps (Tier 14+)", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_988554168", + ["text"] = "Ancestral Cry has a minimum of # Power", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2596239449", + ["text"] = "Ancestral Protector Totem deals #% increased Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1303996723", + ["text"] = "Ancestral Protector Totem grants #% increased Attack Speed while Active", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3543257184", + ["text"] = "Ancestral Warchief Totem grants #% increased Melee Damage while Active", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2549369799", + ["text"] = "Anger has #% increased Mana Reservation Efficiency", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2963485753", + ["text"] = "Anger has #% increased Mana Reservation Efficiency", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2003753577", + ["text"] = "Anger has #% reduced Reservation", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_4157143640", + ["text"] = "Animated Guardians deal #% increased Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1819674879", + ["text"] = "Animated Weapons deal #% increased Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2461552986", + ["text"] = "Arc Chains an additional time", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3998182656", + ["text"] = "Arc deals #% increased Damage for each time it has Chained", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_195463427", + ["text"] = "Arc has +#% chance to Shock", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_122106412", + ["text"] = "Arcane Cloak Spends an additional #% of current Mana", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3606492882", + ["text"] = "Arcane Cloak grants Life Regeneration equal to #% of Mana Spent per Second", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1147445274", + ["text"] = "Arcanist Brand has #% increased Cast Speed", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2351239732", + ["text"] = "Arctic Armour has #% increased Mana Reservation Efficiency", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2605040931", + ["text"] = "Arctic Armour has #% increased Mana Reservation Efficiency", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2233726619", + ["text"] = "Arctic Armour has #% reduced Reservation", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2180286756", + ["text"] = "Area can contain Breaches", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1080470148", + ["text"] = "Area contains # additional Clusters of Mysterious Barrels", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1207515735", + ["text"] = "Area contains # additional Clusters of Mysterious Barrels", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1669553893", + ["text"] = "Area contains # additional Clusters of Mysterious Barrels", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_4019701925", + ["text"] = "Area contains # additional Clusters of Mysterious Barrels", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1867024035", + ["text"] = "Area contains # additional pack of Corrupted Vaal Monsters", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_249139784", + ["text"] = "Area contains # additional packs of Monsters that Convert when Killed", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3059368202", + ["text"] = "Area contains # additional packs of Monsters that Heal", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3728052911", + ["text"] = "Area contains # additional packs of Monsters that deal Chaos Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3194736016", + ["text"] = "Area contains # additional packs of Monsters that deal Cold Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2366645974", + ["text"] = "Area contains # additional packs of Monsters that deal Fire Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_545950479", + ["text"] = "Area contains # additional packs of Monsters that deal Lightning Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3989543665", + ["text"] = "Area contains # additional packs of Monsters that deal Physical Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3094365680", + ["text"] = "Area contains # additional packs of Poisonous Monsters", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_21993405", + ["text"] = "Area contains # additional packs with Mirrored Rare Monsters", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1640965354", + ["text"] = "Area contains #% increased number of Runic Monster Markers", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1994562755", + ["text"] = "Area contains Metamorph Monsters", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1145451936", + ["text"] = "Area contains The Sacred Grove", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2459443694", + ["text"] = "Area contains a Blight Encounter", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3960907415", + ["text"] = "Area contains a Smuggler's Cache", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2436559047", + ["text"] = "Area contains an Empowered Mirage which covers the entire Map", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1070816711", + ["text"] = "Area contains an additional Abyss", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1992047981", + ["text"] = "Area contains an additional Gloom Shrine", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_395808938", + ["text"] = "Area contains an additional Imprisoned Monster", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3897451709", + ["text"] = "Area contains an additional Legion Encounter", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1274634881", + ["text"] = "Area contains an additional Resonating Shrine", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1468737867", + ["text"] = "Area contains an additional Shrine", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3240183538", + ["text"] = "Area contains an additional Strongbox", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3747734818", + ["text"] = "Area contains hunted traitors", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1076056376", + ["text"] = "Area has #% chance to contain Gifts of the Red Queen per Mortal Fragment used", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2649372092", + ["text"] = "Area has #% chance to contain Gifts of the Sacrificed per Sacrifice Fragment used", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2862290356", + ["text"] = "Area is Alluring", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_504023787", + ["text"] = "Area is haunted by an additional Tormented Betrayer", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1463704577", + ["text"] = "Area is haunted by an additional Tormented Graverobber", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_373209496", + ["text"] = "Area is haunted by an additional Tormented Heretic", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_279246355", + ["text"] = "Area is inhabited by an additional Invasion Boss", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3550168289", + ["text"] = "Area is inhabited by an additional Rogue Exile", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3564826949", + ["text"] = "Areas can contain Abysses", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1671749203", + ["text"] = "Areas contain Ritual Altars", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2398157267", + ["text"] = "Areas contain a Mirror of Delirium", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2055257822", + ["text"] = "Areas contain an Ultimatum Encounter", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1715805151", + ["text"] = "Armageddon Brand Damage Penetrates #% of Branded Enemy's Fire Resistance", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1699139870", + ["text"] = "Armageddon Brand deals #% increased Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2512194486", + ["text"] = "Armageddon Brand has #% increased Activation Frequency", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1734517294", + ["text"] = "Artillery Ballista Damage Penetrates #% Fire Resistance", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2056176052", + ["text"] = "Artillery Ballista Projectiles fall in two perpendicular lines instead", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3283028259", + ["text"] = "Artillery Ballista fires an additional Arrow", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2170876738", + ["text"] = "Attack Critical Strikes ignore Enemy Monster Elemental Resistances", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1658124062", + ["text"] = "Attack Projectiles Return to you", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3358745905", + ["text"] = "Attacks Cost Life instead of Mana", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2343571547", + ["text"] = "Attacks Exerted by Ambush have +#% to Critical Strike Multiplier", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2146663823", + ["text"] = "Attacks Exerted by Ancestral Cry deal #% increased Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3252913608", + ["text"] = "Attacks Exerted by Seismic Cry deal #% increased Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1501151168", + ["text"] = "Attacks with Energy Blades Penetrate #% Lightning Resistance", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3420683028", + ["text"] = "Ball Lightning fires an additional Projectile", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2206071316", + ["text"] = "Bane deals #% increased Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_4224588066", + ["text"] = "Bane has #% increased Area of Effect", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3009270704", + ["text"] = "Barrage fires an additional Projectile", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_448903047", + ["text"] = "Battlemage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_931713173", + ["text"] = "Battlemage's Cry Exerts # additional Attack", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_918308703", + ["text"] = "Bear Trap has #% increased Cooldown Recovery Rate", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1663783758", + ["text"] = "Berserk has #% increased Buff Effect", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1019790379", + ["text"] = "Berserk has #% reduced Rage loss per second", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_4008016019", + ["text"] = "Beyond Portals have a #% chance to spawn an additional Beyond Demon", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_4008016019", + ["text"] = "Beyond Portals in your Maps have #% chance to spawn an additional Beyond Demon", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2276547155", + ["text"] = "Blade Blast deals #% increased Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3309486263", + ["text"] = "Blade Blast detonates other Lingering Blades within an #% increased Area", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3569393676", + ["text"] = "Blade Blast has #% increased Area of Effect", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_4195549152", + ["text"] = "Blade Trap rotates +# times", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2583039202", + ["text"] = "Blade Vortex has +#% to Critical Strike Multiplier for each blade", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3808171722", + ["text"] = "Bladefall has an additional Volley", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_599289531", + ["text"] = "Bladestorm deals #% increased Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_4014289250", + ["text"] = "Blast Rain deals #% increased Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3519675720", + ["text"] = "Blast Rain fires an additional Arrow", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_574378310", + ["text"] = "Blast Rain has #% increased Area of Effect", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_297308603", + ["text"] = "Blast Rain has a #% chance to fire an additional Arrow", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1785831895", + ["text"] = "Blazing Salvo Projectiles land in a #% increased Area", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_4102281803", + ["text"] = "Blazing Salvo deals #% increased Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3908539803", + ["text"] = "Blazing Salvo fires an additional Projectile", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1000620493", + ["text"] = "Blight Encounters contain up to # additional Blight Boss", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1000620493", + ["text"] = "Blight Encounters in your Maps contain up to # additional Blight Boss", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1837341489", + ["text"] = "Blight Monsters in your Maps spawn #% faster", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1837341489", + ["text"] = "Blight Monsters spawn #% faster", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_4170725899", + ["text"] = "Blight has #% increased Hinder Duration", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1554597333", + ["text"] = "Blink Arrow and Blink Arrow Clones have #% increased Attack Speed", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1967878868", + ["text"] = "Blink Arrow and Blink Arrow Clones have #% increased Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2983274404", + ["text"] = "Blink Arrow has #% increased Cooldown Recovery Rate", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3152806535", + ["text"] = "Blood Rage grants additional #% chance to gain a Frenzy Charge on Kill", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3418033798", + ["text"] = "Blood Rage grants additional #% increased Attack Speed", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2471636515", + ["text"] = "Blood and Sand has #% increased Buff Effect", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3233607638", + ["text"] = "Bone Offering grants an additional +#% Chance to Block Attack Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2870283358", + ["text"] = "Boneshatter has #% chance to grant +1 Trauma", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2224050171", + ["text"] = "Breaches in Area contain # additional Clasped Hand", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1542416476", + ["option"] = { + ["options"] = { + { + ["id"] = 1, + ["text"] = "Uul-Netol", + }, + { + ["id"] = 2, + ["text"] = "Xoph", + }, + { + ["id"] = 3, + ["text"] = "Tul", + }, + { + ["id"] = 4, + ["text"] = "Esh", + }, + { + ["id"] = 5, + ["text"] = "Chayula", + }, + }, + }, + ["text"] = "Breaches in Areas belong to #", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2224050171", + ["text"] = "Breaches in your Maps contain # additional Clasped Hand", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2226973351", + ["text"] = "Burning Arrow Always Ignites", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3738339949", + ["text"] = "Burning Arrow has #% increased Debuff Effect", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1617268696", + ["text"] = "Burning Enemies you kill have a #% chance to Explode, dealing a tenth of their maximum Life as Fire Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2449293016", + ["text"] = "Cages created by Your Glacial Cage Towers are #% larger", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1963398329", + ["text"] = "Can have # additional Crafted Modifier", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1606553462", + ["text"] = "Cast Level # Fire Burst on Hit", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3011365432", + ["text"] = "Catalysts dropped by Metamorphs are duplicated", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3011365432", + ["text"] = "Catalysts dropped by Metamorphs in your Maps are Duplicated", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1993913925", + ["text"] = "Caustic Arrow has #% chance to inflict Withered on Hit for # second base Duration", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_289027663", + ["text"] = "Chain Hook deals #% increased Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2588242810", + ["text"] = "Chain Hook grants 1 Rage if it Hits Enemies", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3269147016", + ["text"] = "Chain Hook has +# metre to radius per 12 Rage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2678511347", + ["text"] = "Chaos Damage with Hits is Lucky", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2505115650", + ["text"] = "Chaos Golems deal #% increased Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_797408710", + ["text"] = "Charged Dash has #% more Movement Speed", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2898302567", + ["text"] = "Charged Dash has +# metre to radius of each Wave's last damage Area", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_644285691", + ["text"] = "Chills from Ice Nova Hits always reduce Action Speed by at least #%", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2668611054", + ["text"] = "Clarity has #% increased Mana Reservation Efficiency", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_453778214", + ["text"] = "Clarity has #% increased Mana Reservation Efficiency", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3738398726", + ["text"] = "Clarity has #% reduced Reservation", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1471796012", + ["text"] = "Cobra Lash Chains an additional time", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2224580362", + ["text"] = "Cobra Lash deals #% increased Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_732631533", + ["text"] = "Cobra Lash has #% increased Projectile Speed", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2289367813", + ["text"] = "Cold Snap has #% increased Cooldown Recovery Rate", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_4225882962", + ["text"] = "Combust has #% increased Area of Effect", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2309146693", + ["text"] = "Completing a Heist generates an additional Reveal", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2807947", + ["text"] = "Consecrated Ground from Holy Flame Totem applies #% increased Damage taken to Enemies", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3100629498", + ["text"] = "Consecrated Ground from Purifying Flame applies #% increased Damage taken to Enemies", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_4047323043", + ["text"] = "Consecrated Path deals #% increased Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3285061858", + ["text"] = "Consecrated Path has #% increased Area of Effect", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2048678824", + ["text"] = "Consecrated Path has #% increased teleport range", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2143519574", + ["text"] = "Conversion Trap #% increased Cooldown Recovery Rate", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_131320052", + ["text"] = "Converted Enemies have #% increased Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2680060124", + ["text"] = "Convocation has #% increased Cooldown Recovery Rate", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_4010544321", + ["text"] = "Corrupting Fever deals #% increased Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3513613206", + ["text"] = "Corrupting Fever has +#% chance to inflict an additional Corrupted Blood Debuff", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3804597710", + ["text"] = "Cost of Building and Upgrading Blight Towers in your Maps is doubled", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3804597710", + ["text"] = "Cost of Building and Upgrading Blight Towers is doubled", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_435519320", + ["text"] = "Crackling Lance deals #% increased Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_617228927", + ["text"] = "Crackling Lance has #% increased Cast Speed", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2896346908", + ["text"] = "Crackling Lance has #% increased branching angle", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2781179464", + ["text"] = "Creeping Frost's Chilling Area has #% increased Movement Speed", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3503624267", + ["text"] = "Cremation can have up to # additional Geyser at a time", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2524254339", + ["text"] = "Culling Strike", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_4139135963", + ["text"] = "Curse Enemies with Temporal Chains on Hit", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_281254371", + ["text"] = "Damage Penetrates #% of Enemy Elemental Resistances if you haven't Killed Recently", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2670993553", + ["text"] = "Damage cannot be Reflected", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_4172171622", + ["text"] = "Dash has +# Cooldown Use", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_4147746721", + ["text"] = "Dash travels #% increased distance", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1105773670", + ["text"] = "Defiance Banner has #% increased Aura Effect", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_4139181362", + ["text"] = "Delirium Reward Bars fill #% faster", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_4139181362", + ["text"] = "Delirium Reward Bars fill #% faster in your Maps", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.delirium_reward_abyss", + ["text"] = "Delirium Reward Type: Abyss Items (×#)", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.delirium_reward_armour", + ["text"] = "Delirium Reward Type: Armour (×#)", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.delirium_reward_blight", + ["text"] = "Delirium Reward Type: Blight Items (×#)", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.delirium_reward_breach", + ["text"] = "Delirium Reward Type: Breach Items (×#)", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.delirium_reward_metamorphosis", + ["text"] = "Delirium Reward Type: Catalysts (×#)", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.delirium_reward_currency", + ["text"] = "Delirium Reward Type: Currency (×#)", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.delirium_reward_harbinger", + ["text"] = "Delirium Reward Type: Currency (×#)", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.delirium_reward_generic", + ["text"] = "Delirium Reward Type: Delirium (×#)", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.delirium_reward_divinationcards", + ["text"] = "Delirium Reward Type: Divination Cards (×#)", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.delirium_reward_essences", + ["text"] = "Delirium Reward Type: Essences (×#)", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.delirium_reward_perandus", + ["text"] = "Delirium Reward Type: Expedition Items (×#)", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.delirium_reward_fossils", + ["text"] = "Delirium Reward Type: Fossils (×#)", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.delirium_reward_fragments", + ["text"] = "Delirium Reward Type: Fragments (×#)", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.delirium_reward_gems", + ["text"] = "Delirium Reward Type: Gems (×#)", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.delirium_reward_incubators", + ["text"] = "Delirium Reward Type: Incubators (×#)", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.delirium_reward_trinkets", + ["text"] = "Delirium Reward Type: Jewellery (×#)", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.delirium_reward_labyrinth", + ["text"] = "Delirium Reward Type: Labyrinth Items (×#)", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.delirium_reward_maps", + ["text"] = "Delirium Reward Type: Map Items (×#)", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.delirium_reward_scarabs", + ["text"] = "Delirium Reward Type: Scarabs (×#)", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.delirium_reward_talismans", + ["text"] = "Delirium Reward Type: Talismans (×#)", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.delirium_reward_uniques", + ["text"] = "Delirium Reward Type: Unique Items (×#)", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.delirium_reward_weapon", + ["text"] = "Delirium Reward Type: Weapons (×#)", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3655654928", + ["text"] = "Desecrate Spawns an additional corpse", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_740609357", + ["text"] = "Desecrate has #% increased Cooldown Recovery Rate", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2721871046", + ["text"] = "Determination has #% increased Mana Reservation Efficiency", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_325889252", + ["text"] = "Determination has #% increased Mana Reservation Efficiency", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3072232736", + ["text"] = "Determination has #% reduced Reservation", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1539846779", + ["text"] = "Detonate Dead has a #% chance to detonate an additional corpse", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_4189505564", + ["text"] = "Devouring Totem has #% Chance to Consume an additional corpse", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1692887998", + ["text"] = "Discipline has #% increased Mana Reservation Efficiency", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2081344089", + ["text"] = "Discipline has #% increased Mana Reservation Efficiency", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2200030809", + ["text"] = "Discipline has #% reduced Reservation", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1477213724", + ["text"] = "Divine Ire Damages an additional nearby Enemy when gaining Stages", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2584129062", + ["text"] = "Divine Ire deals #% increased Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2212298325", + ["text"] = "Divine Ire's beam has #% increased width", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_989837434", + ["text"] = "Does not consume Sextant Uses", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1095160683", + ["text"] = "Dominating Blow can summon an additional Magic Sentinel of Dominance", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2337005967", + ["text"] = "Dominating Blow can summon an additional Rare Sentinel of Dominance", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3125201823", + ["text"] = "Double Strike has a #% chance to deal Double Damage to Bleeding Enemies", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_287319069", + ["text"] = "Dread Banner has #% increased Aura Effect", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2068943099", + ["text"] = "Earthquake deals #% increased Damage per 0.1 seconds Duration", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_701215561", + ["text"] = "Earthshatter creates +# fissures", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_335520087", + ["text"] = "Earthshatter deals #% increased Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3469056056", + ["text"] = "Earthshatter has #% increased Area of Effect", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_261996832", + ["text"] = "Elemental Ailments inflicted on Enemies Exposed by you have #% increased Duration", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3205997967", + ["text"] = "Elemental Hit Always Freezes, Shocks and Ignites", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_4109038270", + ["text"] = "Elemental Hit deals #% increased Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3122413716", + ["text"] = "Encounter duration is # seconds shorter", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2977067558", + ["text"] = "Enduring Cry grants # additional Endurance Charge to you and Allied Players", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3617955571", + ["text"] = "Enduring Cry has #% increased Cooldown Recovery Rate", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_4216282855", + ["text"] = "Enemies Blinded by you have #% increased Critical Strike Chance", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3831546273", + ["text"] = "Enemies Drenched by Hydrosphere have Cold and Lightning Exposure, applying +#% to Resistances", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3709502856", + ["text"] = "Enemies Hindered by you have #% increased Life Regeneration rate", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1919892065", + ["text"] = "Enemies Intimidated by you have #% increased duration of stuns against them", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2970902024", + ["text"] = "Enemies Killed by your Hits are destroyed", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2745149002", + ["text"] = "Enemies Maimed by you take #% increased Damage Over Time", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3169825208", + ["text"] = "Enemies Petrified by Your Stone Gaze Towers take #% increased Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1684204928", + ["text"] = "Enemies Taunted by you deal #% more Area Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1032614900", + ["text"] = "Enemies Withered by you have +#% to all Resistances", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1678345858", + ["text"] = "Enemies affected by Bear Trap take #% increased Damage from Trap or Mine Hits", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_4271709087", + ["text"] = "Enemies in Void Sphere's range take up to #% increased Damage, based on distance from the Void Sphere", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3384161880", + ["text"] = "Enemies inside Glacial Cage take #% increased Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1217516474", + ["text"] = "Energy Blades have #% increased Attack Speed", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1004885987", + ["text"] = "Energy Shield Leech Effects from Attacks are not removed at Full Energy Shield", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2791271819", + ["text"] = "Ensnaring Arrow has #% increased Area of Effect", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1405738574", + ["text"] = "Ensnaring Arrow has #% increased Debuff Effect", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_4264622444", + ["text"] = "Ethereal Knives Pierces an additional Target", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3491968196", + ["text"] = "Ethereal Knives fires Projectiles in a circle", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3764198549", + ["text"] = "Every 3 seconds, Consume a nearby Corpse to Recover #% of Life", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1569101201", + ["text"] = "Exerted Attacks deal #% increased Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3628984170", + ["text"] = "Explosive Arrow deals #% increased Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1041365824", + ["text"] = "Explosive Arrow has #% increased Area of Effect", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3949159285", + ["text"] = "Explosive Arrow has #% increased Attack Speed", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3590425794", + ["text"] = "Explosive Arrow has #% increased Duration", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1907051864", + ["text"] = "Explosive Concoction uses #% increased Flask Charges", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3078026860", + ["text"] = "Explosive Trap causes an additional smaller explosion", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_4207255685", + ["text"] = "Explosive Trap deals #% increased Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1694915226", + ["text"] = "Explosive Trap has #% increased Area of Effect", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2259734653", + ["text"] = "Exsanguinate deals #% increased Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2304517189", + ["text"] = "Exsanguinate has a #% chance to Chain an additional time", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_173612563", + ["text"] = "Eye of Winter fires Shard projectiles with #% increased Frequency during flight", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2483362276", + ["text"] = "Far Shot", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2614099660", + ["text"] = "Fire Nova Mine repeats an additional # times", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2098790581", + ["text"] = "Fireball Always Ignites", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1440798870", + ["text"] = "Flame Dash has #% increased Cooldown Recovery Rate", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1575282859", + ["text"] = "Flame Golems have #% increased Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2189364976", + ["text"] = "Flame Wall deals #% increased Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3881327877", + ["text"] = "Flame Wall grants # to # Added Fire Damage to Projectiles", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_4162139595", + ["text"] = "Flamethrower Trap deals #% increased Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2931005730", + ["text"] = "Flamethrower Trap has #% increased Cast Speed", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2962501808", + ["text"] = "Flamethrower Trap has #% increased Cooldown Recovery Rate", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_525771896", + ["text"] = "Flamethrower Trap has #% increased Skill Effect Duration", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1452255482", + ["text"] = "Flamethrower Trap has an additional Flame", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_513715594", + ["text"] = "Flesh Offering grants an additional #% increased Attack Speed", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1740848995", + ["text"] = "Flesh and Stone has #% increased Mana Reservation Efficiency", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3563089138", + ["text"] = "Flesh and Stone has #% increased Mana Reservation Efficiency", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1537296847", + ["text"] = "Flesh and Stone has #% reduced Reservation", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1398394628", + ["text"] = "Flicker Strike has #% increased Cooldown Recovery Rate", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3047407995", + ["text"] = "Forbidden Rite fires an additional Projectile", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_728267040", + ["text"] = "Found Items have #% chance to drop Corrupted in Area", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1568365503", + ["text"] = "Found Items with Memory Strands have +# Memory Strands", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2933995134", + ["text"] = "Freeze Mine causes Enemies to lose an additional #% Cold Resistance while Frozen", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3524326896", + ["text"] = "Frost Bomb has #% increased Cooldown Recovery Rate", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2109176627", + ["text"] = "Frost Bomb has #% increased Debuff Duration", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_915160899", + ["text"] = "Frost Shield has +# Cooldown Use", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2511493969", + ["text"] = "Frost Shield has +# to maximum Life per Stage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2479762395", + ["text"] = "Frost Wall has #% increased Cooldown Recovery Rate", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3070497632", + ["text"] = "Frostblink has #% increased maximum travel distance", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_815588902", + ["text"] = "Frostblink has #% reduced Cooldown Recovery Rate", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2774873427", + ["text"] = "Frostbolt has +#% chance to Freeze", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3809563078", + ["text"] = "Frozen Legion has #% increased Cooldown Recovery Rate", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2876793597", + ["text"] = "Frozen Legion has +# Cooldown Use", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1048825825", + ["text"] = "Frozen Sweep deals #% increased Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2709367754", + ["text"] = "Gain # Rage on Melee Hit", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1383929411", + ["text"] = "Gain #% of Cold Damage as Extra Fire Damage against Frozen Enemies", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3495544060", + ["text"] = "Gain #% of Elemental Damage as Extra Chaos Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3913265126", + ["text"] = "Gain #% of Weapon Physical Damage as Extra Damage of each Element", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3204560615", + ["text"] = "Gain Arcane Surge after Spending a total of 200 Life", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3581844317", + ["text"] = "Gain Flaming, Icy or Crackling Runesurge at random for # second every 10 seconds", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_351890141", + ["text"] = "Gain Onslaught after Spending a total of 200 Mana", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2959020308", + ["text"] = "Gain Unholy Might for 4 seconds on Critical Strike", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2284520710", + ["text"] = "Gain a random shrine buff every 1 second", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_4123533923", + ["text"] = "Gains no Charges during Effect", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1698558866", + ["text"] = "Galvanic Arrow has #% increased Projectile Speed", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3893203185", + ["text"] = "Galvanic Field Chains an additional time", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3821213705", + ["text"] = "Galvanic Field deals #% increased Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2364563825", + ["text"] = "Galvanic Field has #% increased Cast Speed", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3637727672", + ["text"] = "General's Cry has #% increased Cooldown Recovery Rate", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2889995769", + ["text"] = "General's Cry has +# to maximum number of Mirage Warriors", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3492427828", + ["text"] = "Glacial Cascade gains #% of Physical Damage as Extra Cold Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_288248772", + ["text"] = "Glacial Hammer has +#% chance to Freeze", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1803598623", + ["text"] = "Grace has #% increased Mana Reservation Efficiency", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_900639351", + ["text"] = "Grace has #% increased Mana Reservation Efficiency", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1549898151", + ["text"] = "Grace has #% reduced Reservation", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2421363283", + ["text"] = "Grants #% increased Accuracy per 2% Quality", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_334333797", + ["text"] = "Grants #% increased Area of Effect per 4% Quality", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1482025771", + ["text"] = "Grants #% increased Elemental Damage per 2% Quality", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_452753731", + ["text"] = "Grants +# to Dexterity per 2% Quality", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2748574832", + ["text"] = "Grants +# to Intelligence per 2% Quality", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2711867632", + ["text"] = "Grants +# to Maximum Life per 2% Quality", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3764009282", + ["text"] = "Grants +# to Maximum Mana per 2% Quality", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1519019245", + ["text"] = "Grants +# to Strength per 2% Quality", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1665106429", + ["text"] = "Grants +#% to Cold Resistance per 2% Quality", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2787227226", + ["text"] = "Grants +#% to Fire Resistance per 2% Quality", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2702369635", + ["text"] = "Grants +#% to Lightning Resistance per 2% Quality", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_52953650", + ["text"] = "Grants Level # Envy Skill", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_648647905", + ["text"] = "Ground Slam has a #% increased angle", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_906446422", + ["text"] = "Harbingers drop additional Currency Shards", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_906446422", + ["text"] = "Harbingers in your Maps drop additional Currency Shards", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2067409550", + ["text"] = "Harvest Monsters have #% more Life", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2067409550", + ["text"] = "Harvest Monsters in your Maps have #% more Life", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_832377952", + ["option"] = { + ["options"] = { + { + ["id"] = 1, + ["text"] = "Purple", + }, + { + ["id"] = 2, + ["text"] = "Yellow", + }, + { + ["id"] = 3, + ["text"] = "Blue", + }, + }, + }, + ["text"] = "Harvests in Areas contain at least one Crop of # Plants", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_931294424", + ["text"] = "Has # White Sockets", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_692420067", + ["text"] = "Has #% increased Elemental Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3837805260", + ["text"] = "Has no Blue Sockets", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1615727675", + ["text"] = "Has no Green Sockets", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_320043039", + ["text"] = "Has no Red Sockets", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_804667127", + ["text"] = "Haste has #% increased Mana Reservation Efficiency", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_939320550", + ["text"] = "Haste has #% increased Mana Reservation Efficiency", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_91821600", + ["text"] = "Haste has #% reduced Reservation", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1920370417", + ["text"] = "Hatred has #% increased Mana Reservation Efficiency", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2156140483", + ["text"] = "Hatred has #% increased Mana Reservation Efficiency", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3835483564", + ["text"] = "Hatred has #% reduced Reservation", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1076392774", + ["text"] = "Haunted by Tormented Spirits", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3760588941", + ["text"] = "Heavy Strike has a #% chance to deal Double Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3038236553", + ["text"] = "Heist Chests have #% chance to contain nothing", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2747693610", + ["text"] = "Heist Chests have a #% chance to Duplicate their contents", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_4168369352", + ["text"] = "Heist Targets are always Currency or Scarabs", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3709545805", + ["text"] = "Heist Targets are always Enchanted Armaments", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_4182516619", + ["text"] = "Heist Targets are always Experimented Items", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2619914138", + ["text"] = "Heist Targets are always Replica Unique Items", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1123534836", + ["text"] = "Heist Targets are always Thieves' Trinkets", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1133703802", + ["text"] = "Herald of Agony has #% increased Mana Reservation Efficiency", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1284151528", + ["text"] = "Herald of Agony has #% increased Mana Reservation Efficiency", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_4253105373", + ["text"] = "Herald of Agony has #% reduced Reservation", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2500442851", + ["text"] = "Herald of Ash has #% increased Mana Reservation Efficiency", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3819451758", + ["text"] = "Herald of Ash has #% increased Mana Reservation Efficiency", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2328234364", + ["text"] = "Herald of Ash has #% reduced Reservation", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3059700363", + ["text"] = "Herald of Ice has #% increased Mana Reservation Efficiency", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3395872960", + ["text"] = "Herald of Ice has #% increased Mana Reservation Efficiency", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3537762266", + ["text"] = "Herald of Ice has #% reduced Reservation", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1542765265", + ["text"] = "Herald of Purity has #% increased Mana Reservation Efficiency", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2189040439", + ["text"] = "Herald of Purity has #% increased Mana Reservation Efficiency", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1730304831", + ["text"] = "Herald of Purity has #% reduced Reservation", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3817220109", + ["text"] = "Herald of Thunder has #% increased Mana Reservation Efficiency", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3959101898", + ["text"] = "Herald of Thunder has #% increased Mana Reservation Efficiency", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_966400988", + ["text"] = "Herald of Thunder has #% reduced Reservation", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2318562335", + ["text"] = "Hexblast deals #% increased Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1811698551", + ["text"] = "Hexblast has #% increased Area of Effect", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_120598364", + ["text"] = "Hexblast has +#% chance to remove a Hex", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2090693207", + ["text"] = "Hits against Enemies Unnerved by you have #% increased Spell Critical Strike Chance", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_611022108", + ["text"] = "Hits at Close Range with Shattering Steel Fortify", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2801853811", + ["text"] = "Holy Flame Totem deals #% increased Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_775200811", + ["text"] = "Holy Flame Totem fires an additional Projectile", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_4082863126", + ["text"] = "Holy Flame Totem has #% increased Projectile Speed", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_609916976", + ["text"] = "Holy Sweep has a #% chance to grant an Endurance Charge on Hit", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1040582501", + ["text"] = "Hydrosphere deals #% increased Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1816969033", + ["text"] = "Hydrosphere has #% increased Pulse Frequency", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3816405721", + ["text"] = "Ice Golems deal #% increased Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3269321994", + ["text"] = "Ice Nova Always Freezes", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3781924200", + ["text"] = "Ice Shot has #% increased Area of Effect angle", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3801130154", + ["text"] = "Ice Spear fires an additional Projectile", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3295914630", + ["text"] = "Ice Spear travels #% reduced distance before changing forms", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3698446010", + ["text"] = "Ice Trap Damage Penetrates #% Cold Resistance", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2363866815", + ["text"] = "Icicle Mine deals #% increased Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3162144587", + ["text"] = "Icicle Mine has #% increased Throwing Speed", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1555251", + ["text"] = "Icicle Mine has +#% to Critical Strike Multiplier", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_691673624", + ["text"] = "Immortal Call has #% increased Buff Duration per Endurance Charge removed", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2562208244", + ["text"] = "Incinerate has #% increased Area of Effect", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3867484047", + ["text"] = "Incinerate has +# to maximum stages", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1433144735", + ["text"] = "Increases and Reductions to Minion Damage also affect you at 150% of their value", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_105839441", + ["text"] = "Infernal Blow Debuff deals an additional #% of Damage per Charge", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2702698464", + ["text"] = "Infernal Cry has #% increased Cooldown Recovery Rate", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2461005744", + ["text"] = "Insufficient Life doesn't prevent your Melee Attacks", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1088946611", + ["text"] = "Intimidating Cry has #% increased Area of Effect", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1134560807", + ["text"] = "Intimidating Cry has #% increased Cooldown Recovery Rate", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_573347393", + ["text"] = "Iron Grip", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_4092697134", + ["text"] = "Iron Will", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3045497140", + ["text"] = "Items dropped by Corrupted Vaal Monsters have #% chance to be Corrupted", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3045497140", + ["text"] = "Items dropped by Corrupted Vaal Monsters in your Maps have #% chance to be Corrupted", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_75100665", + ["text"] = "Items found in your Identified Maps are Identified", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_728267040", + ["text"] = "Items found in your Maps have #% chance to be Corrupted", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3105097589", + ["text"] = "Kinetic Blast has a #% chance for an additional explosion", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1460506005", + ["text"] = "Kinetic Bolt changes direction # additional time", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2244239056", + ["text"] = "Kinetic Bolt has #% increased Attack Speed", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2482018205", + ["text"] = "Kinetic Bolt has #% increased Projectile Speed", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_732320584", + ["text"] = "Lacerate deals # to # added Physical Damage against Bleeding Enemies", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2159486200", + ["text"] = "Lancing Steel deals #% increased Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_4081185348", + ["text"] = "Lancing Steel fires an additional Projectile", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2891251105", + ["text"] = "Lancing Steel has #% chance to count as consuming Steel Shards without Consuming them", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_618920318", + ["text"] = "Lancing Steel's additional Projectiles have +#% chance to Impale Enemies", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3031985694", + ["text"] = "Lancing Steel's primary Projectile Pierces 1 additional Target", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3986662538", + ["text"] = "Lanes of Blight Encounters have #% chance for an additional Reward Chest", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3986662538", + ["text"] = "Lanes of Blight Encounters in your Maps have #% chance for an additional Reward Chest", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1829593182", + ["text"] = "Legion Monsters have #% more Life", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1829593182", + ["text"] = "Legion Monsters in your Maps have #% more Life", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1765389199", + ["text"] = "Life Leech from Hits with this Weapon is instant", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3250634678", + ["text"] = "Lifeforce dropped by Harvest Monsters in your Maps is Duplicated", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3250634678", + ["text"] = "Lifeforce dropped by Harvest Monsters is Duplicated", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1901955093", + ["text"] = "Lightning Arrow hits # additional Enemy", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2511245659", + ["text"] = "Lightning Conduit deals #% increased Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2252888886", + ["text"] = "Lightning Conduit has #% increased Area of Effect", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2437571727", + ["text"] = "Lightning Conduit has #% increased Cast Speed", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3280107027", + ["text"] = "Lightning Golems deal #% increased Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_982975385", + ["text"] = "Lightning Spire Trap deals #% increased Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_535507671", + ["text"] = "Lightning Spire Trap has #% increased Cast Speed", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1570047087", + ["text"] = "Lightning Spire Trap has #% increased Cooldown Recovery Rate", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2207890291", + ["text"] = "Lightning Spire Trap has #% increased Skill Effect Duration", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1104507216", + ["text"] = "Lightning Spire Trap strikes an additional area", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1213035889", + ["text"] = "Lightning Strike fires an additional Projectile", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3134777190", + ["text"] = "Lightning Strike pierces an additional Target", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1557531966", + ["text"] = "Lightning Trap Damage Penetrates #% Lightning Resistance", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3764410821", + ["text"] = "Lightning Trap pierces an additional Target", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3266567165", + ["text"] = "Malevolence has #% increased Mana Reservation Efficiency", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3383226338", + ["text"] = "Malevolence has #% increased Mana Reservation Efficiency", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_4120821275", + ["text"] = "Malevolence has #% reduced Reservation", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3287200156", + ["text"] = "Mana Leech from Hits with this Weapon is Instant", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2052200782", + ["text"] = "Manabond Penetrates #% Lightning Resistance while on Low Mana", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3750528071", + ["text"] = "Map Boss is surrounded by Tormented Spirits", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3481854423", + ["text"] = "Map Bosses are accompanied by Bodyguards", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_397012377", + ["text"] = "Map Bosses are accompanied by a mysterious Harbinger", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_124877078", + ["text"] = "Map Bosses deal #% increased Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3917452877", + ["text"] = "Map Bosses deal #% more Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1508220097", + ["text"] = "Map Bosses drop additional Currency Shards", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3760667977", + ["text"] = "Map Bosses drop an additional Unique Item", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1959158336", + ["text"] = "Map Bosses have #% increased Life", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3407367154", + ["text"] = "Map Bosses have #% more Life", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2747603858", + ["text"] = "Map Bosses of your Corrupted Maps drop an additional Vaal Item", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_425606182", + ["text"] = "Map has #% Quality", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_73209495", + ["text"] = "Map has a Vaal Side Area", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1389457945", + ["text"] = "Map has an additional random Modifier from Kirac's Crafting Bench", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1223360315", + ["text"] = "Maps found in your Maps are Corrupted with 8 Modifiers", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1166417447", + ["text"] = "Melee Hits Fortify", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3675300253", + ["text"] = "Melee Strike Skills deal Splash Damage to surrounding targets", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2428040317", + ["text"] = "Metamorphs have #% more Life", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2428040317", + ["text"] = "Metamorphs in your Maps have #% more Life", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1589917703", + ["text"] = "Minions deal #% increased Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2337295272", + ["text"] = "Minions deal #% increased Damage if you've Hit Recently", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_770672621", + ["text"] = "Minions have #% increased maximum Life", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3473724367", + ["text"] = "Minions summoned by Your Scout Towers have #% increased Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1282857477", + ["text"] = "Minions summoned by Your Scout Towers have #% increased Life", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_971955285", + ["text"] = "Minions summoned by Your Scout Towers have #% increased Movement Speed", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_42482990", + ["text"] = "Minions summoned by Your Scout Towers inflict Malediction on Hit", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_4148328809", + ["text"] = "Minions summoned by Your Sentinel Towers Leech #% of Damage as Life", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2013536039", + ["text"] = "Minions summoned by Your Sentinel Towers have #% increased Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3640837971", + ["text"] = "Minions summoned by Your Sentinel Towers have #% increased Life", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1971866993", + ["text"] = "Minions summoned by Your Sentinel Towers have #% increased Movement Speed", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_850390248", + ["text"] = "Minions summoned by Your Summoning Towers have #% increased Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3651039490", + ["text"] = "Minions summoned by Your Summoning Towers have #% increased Life", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1378482149", + ["text"] = "Minions summoned by Your Summoning Towers have #% increased Movement Speed", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_4136186767", + ["text"] = "Mirror Arrow and Mirror Arrow Clones deal #% increased Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3653459847", + ["text"] = "Mirror Arrow and Mirror Arrow Clones have #% increased Attack Speed", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1781106044", + ["text"] = "Mirror Arrow has #% increased Cooldown Recovery Rate", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_4255043252", + ["text"] = "Molten Shell has #% increased Skill Effect Duration", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_995860222", + ["text"] = "Molten Strike fires an additional Projectile", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1439991839", + ["text"] = "Monsters Imprisoned by Essences have a #% chance to contain a Remnant of Corruption", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3026134008", + ["text"] = "Monsters have #% more Life", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2329255938", + ["text"] = "Nemesis Monsters drop # additional Basic Currency Item", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2256808958", + ["text"] = "Non-Unique Heist Contracts found in Area have #% chance to have an additional Implicit Modifier", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2256808958", + ["text"] = "Non-Unique Heist Contracts found in your Maps have #% chance to have an additional Implicit Modifier", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1223360315", + ["text"] = "Non-Unique Maps found in Area are Corrupted with 8 Modifiers", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3259960466", + ["text"] = "Oils found in Area have #% chance to be 1 tier higher", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3259960466", + ["text"] = "Oils found in your Maps have #% chance to be 1 tier higher", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_4084540709", + ["text"] = "Orb of Storms deals #% increased Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2778301298", + ["text"] = "Orb of Storms has #% increased Cast Speed", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_610562666", + ["text"] = "Penance Brand deals #% increased Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1486948114", + ["text"] = "Penance Brand has #% increased Area of Effect", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_709541481", + ["text"] = "Penance Brand has #% increased Cast Speed", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3342959456", + ["text"] = "Perforate creates +# Spike", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2731606134", + ["text"] = "Perforate deals #% increased Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3536566359", + ["text"] = "Perforate has #% increased Area of Effect", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_856157011", + ["text"] = "Pestilent Strike deals #% increased Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3787328468", + ["text"] = "Pestilent Strike has #% increased Area of Effect", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_64670441", + ["text"] = "Pestilent Strike has #% increased Duration", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1779904215", + ["text"] = "Petrified Blood has #% increased Mana Reservation Efficiency", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1829483269", + ["text"] = "Petrified Blood has #% increased Mana Reservation Efficiency", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_4062159806", + ["text"] = "Petrified Blood has #% reduced Reservation", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1967208066", + ["text"] = "Plague Bearer Buff grants +#% to Poison Damage over Time Multiplier while Infecting", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2093796647", + ["text"] = "Plague Bearer deals Damage based on an additional #% of Plague Value", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3651651560", + ["text"] = "Plants Harvested in Area are more likely to give less common Crafting Options", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3651651560", + ["text"] = "Plants Harvested in your Maps are more likely to give less common Crafting Options", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3137138073", + ["text"] = "Player's Life and Mana Recovery from Flasks are instant", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1984484581", + ["text"] = "Players and Monsters take #% increased Chaos Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3207852985", + ["text"] = "Players and Monsters take #% increased Cold Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2187439577", + ["text"] = "Players and Monsters take #% increased Fire Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2400448724", + ["text"] = "Players and Monsters take #% increased Lightning Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3541635261", + ["text"] = "Players and Monsters take #% increased Physical Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3151377452", + ["text"] = "Players and their Minions cannot take Reflected Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1520798835", + ["text"] = "Players deal #% increased Damage for each Poison on them", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3416709884", + ["text"] = "Players gain an additional Vaal Soul on Kill", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_453789911", + ["text"] = "Players have #% increased Movement Speed for each Poison on them", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1715784068", + ["text"] = "Players in Area are #% Delirious", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_977063976", + ["text"] = "Players' Vaal Skills do not apply Soul Gain Prevention", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2896346114", + ["text"] = "Point Blank", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1474722052", + ["text"] = "Poisonous Concoction uses #% increased Flask Charges", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1177831984", + ["text"] = "Power Siphon fires at up to # additional target", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3859865977", + ["text"] = "Precision has #% increased Mana Reservation Efficiency", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_658622139", + ["text"] = "Precision has #% increased Mana Reservation Efficiency", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3468905159", + ["text"] = "Precision has #% increased Reservation", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3484910620", + ["text"] = "Pride has #% increased Mana Reservation Efficiency", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3993865658", + ["text"] = "Pride has #% increased Mana Reservation Efficiency", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_250961191", + ["text"] = "Pride has #% reduced Reservation", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_4159765624", + ["text"] = "Projectiles are fired in random directions", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_944311193", + ["text"] = "Purifying Flame deals #% increased Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1954529734", + ["text"] = "Purifying Flame has #% increased Area of Effect if targeting Consecrated Ground", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3303293173", + ["text"] = "Purity of Elements has #% increased Mana Reservation Efficiency", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_491551762", + ["text"] = "Purity of Elements has #% increased Mana Reservation Efficiency", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1849664701", + ["text"] = "Purity of Elements has #% reduced Reservation", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1135152940", + ["text"] = "Purity of Fire has #% increased Mana Reservation Efficiency", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3003688066", + ["text"] = "Purity of Fire has #% increased Mana Reservation Efficiency", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3215042347", + ["text"] = "Purity of Fire has #% reduced Reservation", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_139925400", + ["text"] = "Purity of Ice has #% increased Mana Reservation Efficiency", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2665518524", + ["text"] = "Purity of Ice has #% increased Mana Reservation Efficiency", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3192966873", + ["text"] = "Purity of Ice has #% reduced Reservation", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1450978702", + ["text"] = "Purity of Lightning has #% increased Mana Reservation Efficiency", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3411256933", + ["text"] = "Purity of Lightning has #% increased Mana Reservation Efficiency", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1285430327", + ["text"] = "Purity of Lightning has #% reduced Reservation", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_4048820315", + ["text"] = "Pyroclast Mine deals #% increased Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_841281094", + ["text"] = "Pyroclast Mine fires an additional Projectile", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2005440071", + ["text"] = "Pyroclast Mine has #% increased Throwing Speed", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2432759583", + ["text"] = "Pyroclast Mine has #% increased Throwing Speed", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_4265846487", + ["text"] = "Quality bonus of your Maps also applies to Rarity of Items found", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2677401098", + ["text"] = "Quality does not increase Defences", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2052525717", + ["text"] = "Quality does not increase Physical Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1957790343", + ["text"] = "Rage Vortex Sacrifices +#% of Rage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3505939359", + ["text"] = "Rain of Arrows has #% chance to fire an additional sequence of arrows", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_4137556603", + ["text"] = "Raised Spectres have #% increased Attack and Cast Speed", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3645693773", + ["text"] = "Raised Spectres have #% increased Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2228518621", + ["text"] = "Raised Zombies deal #% increased Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2499559911", + ["text"] = "Raised Zombies have #% increased Attack Speed", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2871777604", + ["text"] = "Raised Zombies have +#% to Elemental Resistances", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2080441723", + ["text"] = "Rallying Cry Exerts # additional Attack", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1545524769", + ["text"] = "Reap deals #% increased Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_804983774", + ["text"] = "Reckoning has #% increased Cooldown Recovery Rate", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2023107756", + ["text"] = "Recover #% of Life on Kill", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3305072079", + ["text"] = "Recover #% of Life when you Kill an Enemy while you have Rage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1030153674", + ["text"] = "Recover #% of Mana on Kill", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_836936635", + ["text"] = "Regenerate #% of Life per second", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1122635070", + ["text"] = "Regenerate #% of Life per second if you were Hit Recently", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1803063132", + ["text"] = "Rejuvenation Totem also grants Mana Regeneration equal to #% of its Life Regeneration", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2425554673", + ["text"] = "Rerolling Favours at Ritual Altars has no Cost the first time", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2425554673", + ["text"] = "Rerolling Favours at Ritual Altars in your Maps has no Cost the first # time", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1932727102", + ["text"] = "Reused at the end of this Flask's effect", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3316822388", + ["text"] = "Righteous Fire grants #% increased Spell Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2287986752", + ["text"] = "Riposte has #% increased Cooldown Recovery Rate", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1045213941", + ["text"] = "Rogue Equipment cannot be found", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1080855680", + ["text"] = "Rogue Exiles deal #% increased Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_4143730600", + ["text"] = "Rogue Exiles drop an additional Jewel", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_471027242", + ["text"] = "Rogue Exiles have #% increased Maximum Life", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_471027242", + ["text"] = "Rogue Exiles in your Maps have #% increased Life", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_898812928", + ["text"] = "Rogue Perks are doubled", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2589980605", + ["text"] = "Rolling Magma Chains an additional time", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1296244953", + ["text"] = "Rune Blast teleports you to the detonated Rune if you have not detonated Runes in the past 1 second", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_242209782", + ["text"] = "Rune Blast teleports you to the detonated Rune if you have not detonated Runes in the past 1.5 seconds", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1556508042", + ["text"] = "Sand Bladestorms move with #% increased speed", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1044970549", + ["text"] = "Scourge Arrow creates +# Spore Pod", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_192534517", + ["text"] = "Scourge Arrow deals #% increased Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2257652056", + ["text"] = "Scourge Arrow has #% chance to Poison per Stage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_355086768", + ["text"] = "Seismic Cry has a minimum of # Power", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1175282728", + ["text"] = "Seismic Trap deals #% increased Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3618430531", + ["text"] = "Seismic Trap has #% increased Cooldown Recovery Rate", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1615912303", + ["text"] = "Seismic Trap has #% increased Skill Effect Duration", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1389191919", + ["text"] = "Seismic Trap releases an additional Wave", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2313072099", + ["text"] = "Shattering Steel deals #% increased Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2833259811", + ["text"] = "Shattering Steel fires an additional Projectile", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_4072657110", + ["text"] = "Shattering Steel has #% chance to not consume Steel Shards", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2038577923", + ["text"] = "Shepherd of Souls", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_734712401", + ["text"] = "Shield Crush central wave has #% more Area of Effect", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3652051346", + ["text"] = "Shock Nova ring deals #% increased Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1494168614", + ["text"] = "Shrapnel Ballista Pierces an additional Target", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_959534996", + ["text"] = "Shrapnel Ballista fires an additional Arrow", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1213017413", + ["text"] = "Shrapnel Ballista has #% increased Projectile Speed", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_840189382", + ["text"] = "Siege Ballista deals #% increased Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_444858149", + ["text"] = "Siege Ballista has #% increased Attack Speed", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2896357741", + ["text"] = "Siege Ballista has #% increased Totem Placement Speed", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1582465837", + ["text"] = "Sigil of Power requires #% increased Mana Spent to gain a Stage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_479197076", + ["text"] = "Sigil of Power's Buff also grants #% increased Critical Strike Chance per Stage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3686368306", + ["text"] = "Siphoning Trap deals #% increased Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2530563277", + ["text"] = "Siphoning Trap has #% increased Chill Effect", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_4166695945", + ["text"] = "Siphoning Trap has #% increased Skill Effect Duration", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2673745094", + ["text"] = "Siphoning Trap's beam to you grants #% reduced Damage taken for each other beam", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3059357595", + ["text"] = "Skeletons deal #% increased Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_465162370", + ["text"] = "Skills Supported by Spellslinger have #% increased Cooldown Recovery Rate", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2561956001", + ["text"] = "Skills Supported by Spellslinger have #% reduced Mana Reservation", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_74338099", + ["text"] = "Skills fire an additional Projectile", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1837040413", + ["text"] = "Slaying Enemies close together can attract monsters from Beyond this realm", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3901016205", + ["text"] = "Smite deals #% increased Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2294732229", + ["text"] = "Smite has #% increased Aura Effect", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3946561324", + ["text"] = "Smite has a #% chance for lightning to strike another target", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3564777492", + ["text"] = "Smoke Mine grants additional #% increased Movement Speed", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2789561878", + ["text"] = "Sniper's Mark has #% increased Curse Effect", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1654191578", + ["text"] = "Sniper's Mark has #% increased Duration", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1292359483", + ["text"] = "Socketed Vaal Skills do not apply Soul Gain Prevention", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2599305231", + ["text"] = "Socketed Vaal Skills have #% increased Soul Gain Prevention Duration", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_303359279", + ["text"] = "Soulrend also Hinders Enemies when applying its Debuff, with #% reduced Movement Speed", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_4117042530", + ["text"] = "Soulrend deals #% increased Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3371533847", + ["text"] = "Soulrend fires an additional Projectile", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3803013948", + ["text"] = "Spark fires Projectiles in a circle", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_186513618", + ["text"] = "Spark fires an additional Projectile", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_4175166318", + ["text"] = "Spectral Helix Projectile spirals through +# rotations", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3608981617", + ["text"] = "Spectral Shield Throw fires an additional Shard Projectile", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1350243490", + ["text"] = "Spells Triggered by Arcanist Brand Unnerve enemies on Hit for 4 seconds", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3175648755", + ["text"] = "Spells deal added Chaos Damage equal to #% of your maximum Life", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3229261553", + ["text"] = "Spirit Offering grants +#% of Physical Damage as Extra Chaos Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1793005352", + ["text"] = "Spirit Offering grants +#% to Critical Strike Multiplier", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_387722020", + ["text"] = "Splinters and Emblems dropped by Legion Monsters are duplicated", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_387722020", + ["text"] = "Splinters and Emblems dropped by Legion Monsters in your Maps are duplicated", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2278715446", + ["text"] = "Split Arrow fires an additional Projectile", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_866725377", + ["text"] = "Splitting Steel deals #% increased Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3367825241", + ["text"] = "Splitting Steel has #% chance to not consume Steel Shards", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1977935782", + ["text"] = "Splitting Steel has #% increased Area of Effect", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2537202749", + ["text"] = "Static Strike has +# maximum Beam Target", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_4102483123", + ["text"] = "Steelskin Buff can take #% increased amount of Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_680880155", + ["text"] = "Steelskin grants #% additional Physical Damage Reduction", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1171483499", + ["text"] = "Stone Golems deal #% increased Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3318254108", + ["text"] = "Storm Brand Damage Penetrates #% of Branded Enemy's Lightning Resistance", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_531461618", + ["text"] = "Storm Brand deals #% increased Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1510381560", + ["text"] = "Storm Brand has a #% chance to Chain an additional time", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1898356067", + ["text"] = "Storm Burst has a #% chance to create an additional Orb", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_339673147", + ["text"] = "Storm Burst has a 15% chance to create an additional Orb", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3548112418", + ["text"] = "Storm Rain fires an additional Arrow", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1799087078", + ["text"] = "Storm Rain has #% increased Beam frequency", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1235531589", + ["text"] = "Stormbind deals #% increased Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3823033989", + ["text"] = "Stormbind has #% increased Area of Effect", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_494231298", + ["text"] = "Stormblast Mine deals #% increased Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2718657160", + ["text"] = "Stormblast Mine has #% increased Aura Effect", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_321894708", + ["text"] = "Stormblast Mine has #% increased Throwing Speed", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3123392503", + ["text"] = "Strongbox Monsters are Enraged", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1854137416", + ["text"] = "Strongbox Monsters have #% increased Item Quantity", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2681419531", + ["text"] = "Strongboxes in Area are Corrupted", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3522828354", + ["option"] = { + ["options"] = { + { + ["id"] = 1, + ["text"] = "Magic", + }, + { + ["id"] = 2, + ["text"] = "Rare", + }, + { + ["id"] = 3, + ["text"] = "Unique", + }, + }, + }, + ["text"] = "Strongboxes in Area are at least #", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2681419531", + ["text"] = "Strongboxes in your Maps are Corrupted", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1381908541", + ["text"] = "Summon Raging Spirit has #% chance to summon an extra Minion", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_38715141", + ["text"] = "Summon Raging Spirit has #% increased Duration", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1695754537", + ["text"] = "Summon Skitterbots has #% increased Mana Reservation Efficiency", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3818053347", + ["text"] = "Summon Skitterbots has #% increased Mana Reservation Efficiency", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3798244977", + ["text"] = "Summon Skitterbots has #% reduced Reservation", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_155429578", + ["text"] = "Summoned Agony Crawler fires # additional Projectile", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3593547682", + ["text"] = "Summoned Carrion Golems deal #% increased Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_59544006", + ["text"] = "Summoned Carrion Golems have +#% to all Elemental Resistances", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1152784934", + ["text"] = "Summoned Holy Relics deal #% increased Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3026568825", + ["text"] = "Summoned Holy Relics have #% increased Area of Effect", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3080391193", + ["text"] = "Summoned Holy Relics have #% increased Buff Effect", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2085855914", + ["text"] = "Summoned Raging Spirits deal #% increased Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2516903912", + ["text"] = "Summoned Reaper deals #% increased Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1975621585", + ["text"] = "Summoned Reaper has +#% to Physical Damage over Time Multiplier", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_771292654", + ["text"] = "Summoned Sentinels of Absolution have #% increased Area of Effect", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_4040760803", + ["text"] = "Summoned Sentinels of Dominance deal #% increased Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2844839137", + ["text"] = "Summoned Skitterbots have #% increased Area of Effect", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3316767657", + ["text"] = "Sunder has #% increased Area of Effect", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1999307054", + ["text"] = "Sunder has #% increased Attack Speed", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_4033078288", + ["text"] = "Sunder has #% increased Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_40032620", + ["text"] = "Sunder has #% increased delay between Areas in the Wave", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3999206457", + ["text"] = "Tectonic Slam deals #% increased Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3214665792", + ["text"] = "Tectonic Slam has #% chance to create a Charged Slam", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_340193547", + ["text"] = "Tectonic Slam has #% increased Area of Effect", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1522229796", + ["text"] = "Tectonic Slam has +#% fissure branching chance", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2462686988", + ["text"] = "Tectonic Slam has +#% fissure branching chance", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3096183736", + ["text"] = "Tempest Shield chains an additional time", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3614009195", + ["text"] = "Temporal Rift has #% increased Cooldown Recovery Rate", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1480568810", + ["text"] = "The First 3 Possessed Monsters have a #% chance to drop an additional Gilded Scarab", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3340686967", + ["text"] = "The First 3 Possessed Monsters have a #% chance to drop an additional Map", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1317250154", + ["text"] = "The First 3 Possessed Monsters have a #% chance to drop an additional Polished Scarab", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3789079511", + ["text"] = "The First 3 Possessed Monsters have a #% chance to drop an additional Rusted Scarab", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2392278281", + ["text"] = "The First 3 Possessed Monsters have a #% chance to drop an additional Unique Item", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1697321918", + ["text"] = "The First 3 Possessed Monsters have a #% chance to drop an additional Winged Scarab", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_4265846487", + ["text"] = "This Map's Quality also applies to Rarity of Items found", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1219778564", + ["text"] = "Tornado Shot fires an additional secondary Projectile", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3713499406", + ["text"] = "Tornado has #% increased Movement Speed", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1330754855", + ["text"] = "Towers deal #% more Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_865511246", + ["text"] = "Toxic Rain deals #% increased Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2140127102", + ["text"] = "Toxic Rain fires # additional Arrow", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1798919988", + ["text"] = "Toxic Rain gains #% of Physical Damage as Extra Chaos Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1357672429", + ["text"] = "Trigger Level # Icicle Burst when you Hit a Frozen Enemy", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3241494164", + ["text"] = "Trigger Level # Lightning Bolt when you deal a Critical Strike", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2845525306", + ["text"] = "Trigger Level # Shock Ground on Hit", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1662669872", + ["text"] = "Trigger Level # Stalking Pustule on Kill", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3252082366", + ["text"] = "Trigger Level # Summon Phantasm Skill when you Consume a corpse", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1468606528", + ["text"] = "Trigger Level 10 Summon Spectral Wolf on Kill", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3676763995", + ["text"] = "Trigger a Socketed Fire Spell on Hit, with a # second Cooldown", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_586167247", + ["text"] = "Unearth Spawns corpses with +# Level", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_124877078", + ["text"] = "Unique Boss deals #% increased Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3917452877", + ["text"] = "Unique Boss deals #% more Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3760667977", + ["text"] = "Unique Boss drops # additional Unique Item", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1508220097", + ["text"] = "Unique Boss drops additional Currency Shards", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1959158336", + ["text"] = "Unique Boss has #% increased Life", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3407367154", + ["text"] = "Unique Boss has #% more Life", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3481854423", + ["text"] = "Unique Boss is accompanied by Bodyguards", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_397012377", + ["text"] = "Unique Boss is accompanied by a mysterious Harbinger", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_804187877", + ["text"] = "Unique Monsters drop Corrupted Items", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3287581721", + ["text"] = "Used when Charges reach full", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2219523244", + ["text"] = "Used when an adjacent Flask is used", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3831658908", + ["text"] = "Used when you Block", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2247138020", + ["text"] = "Used when you Hit a Rare or Unique Enemy, if not already in effect", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3884539386", + ["text"] = "Used when you Use a Guard Skill", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1260843520", + ["text"] = "Used when you Use a Travel Skill", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3944779636", + ["text"] = "Used when you become Chilled", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1691862754", + ["text"] = "Used when you become Frozen", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_585126960", + ["text"] = "Used when you become Ignited", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1412682799", + ["text"] = "Used when you become Poisoned", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3699444296", + ["text"] = "Used when you become Shocked", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3676540188", + ["text"] = "Used when you start Bleeding", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1914436944", + ["text"] = "Used when you take a Savage Hit", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_359574900", + ["text"] = "Used when you use a Life Flask", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1730598557", + ["text"] = "Varieties of Items contained in # Blight Chests are Lucky", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1730598557", + ["text"] = "Varieties of Items contained in 1 Blight Chest in your Maps are Lucky", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1447427508", + ["text"] = "Vengeance has #% increased Cooldown Recovery Rate", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1404787106", + ["text"] = "Venom Gyre deals #% increased Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2157671820", + ["text"] = "Venom Gyre has a #% chance to inflict Withered for 2 seconds on Hit", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2563177940", + ["text"] = "Venom Gyre has a #% chance to keep each caught Projectile fired with Whirling Blades", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2275055843", + ["text"] = "Vigilant Strike has #% increased Fortification Duration", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1233806203", + ["text"] = "Vitality has #% increased Mana Reservation Efficiency", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3972739758", + ["text"] = "Vitality has #% increased Mana Reservation Efficiency", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1122074043", + ["text"] = "Vitality has #% reduced Reservation", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2690342765", + ["text"] = "Void Sphere has #% increased Cooldown Recovery Rate", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2523663201", + ["text"] = "Void Sphere has #% increased Pulse Frequency", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3034788766", + ["text"] = "Volatile Dead Consumes up to # additional corpse", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_4006050359", + ["text"] = "Volatile Dead Consumes up to 1 additional corpse", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1124690737", + ["text"] = "Volcanic Fissure deals #% increased Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1460853241", + ["text"] = "Volcanic Fissure fires an additional Projectile", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_373677479", + ["text"] = "Volcanic Fissure travels #% faster", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3472104870", + ["text"] = "Voltaxic Burst deals #% increased Damage per 0.1 seconds of Duration", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2295263113", + ["text"] = "Vortex has #% increased Area of Effect when Cast on Frostbolt", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2461424099", + ["text"] = "Vortex has #% increased Cooldown Recovery Rate", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2592211591", + ["text"] = "War Banner has #% increased Aura Effect", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_309198891", + ["text"] = "Wave of Conviction deals #% increased Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2412561418", + ["text"] = "Wave of Conviction has #% increased Duration", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3139672534", + ["text"] = "Wave of Conviction's Exposure applies an extra +#% to Elemental Resistance", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3976991498", + ["text"] = "When you Kill a Magic Monster gain its Modifiers for 60 seconds", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3462132936", + ["text"] = "When you Kill a Shocked Enemy, inflict an equivalent Shock on each nearby Enemy", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2638352064", + ["text"] = "When you Kill an Ignited Enemy, inflict an equivalent Ignite on each nearby Enemy", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2447447843", + ["text"] = "Wild Strike's Beam Chains an additional time", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2200744772", + ["text"] = "Winter Orb deals #% increased Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1017161280", + ["text"] = "Winter Orb has #% increased Area of Effect per Stage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3734339018", + ["text"] = "Winter Orb has +# Maximum Stages", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_770334536", + ["text"] = "Wintertide Brand deals #% increased Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1831757355", + ["text"] = "Wintertide Brand has #% increased Chill Effect", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_35081783", + ["text"] = "Wintertide Brand has +# to maximum Stages", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1810898461", + ["text"] = "Wither has #% increased Area of Effect", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_447560345", + ["text"] = "Wither has #% increased Duration", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_281958409", + ["text"] = "Withering Step has #% increased Elusive Effect", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3782733370", + ["text"] = "Withering Step inflicts # additional Withered Debuffs", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1761642973", + ["text"] = "Wrath has #% increased Mana Reservation Efficiency", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3444518809", + ["text"] = "Wrath has #% increased Mana Reservation Efficiency", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3600749521", + ["text"] = "Wrath has #% reduced Reservation", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3726585224", + ["text"] = "You and Nearby Allies have # to # added Lightning Damage per Blue Socket", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_30642521", + ["text"] = "You can apply # additional Curses", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2047590583", + ["text"] = "You take #% reduced Extra Damage from Critical Strikes if you've taken a Critical Strike Recently", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3011405513", + ["text"] = "Your Arc Towers deal #% increased Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_6032025", + ["text"] = "Your Arc Towers have # additional chains", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_441374889", + ["text"] = "Your Arc Towers have #% chance to inflict Sap", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1572544406", + ["text"] = "Your Arc Towers have #% increased Range", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_4173465567", + ["text"] = "Your Arc Towers repeats # additional Times", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_926530613", + ["text"] = "Your Chilling Towers deal #% increased Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1357120250", + ["text"] = "Your Chilling Towers freeze enemies for # seconds while they are affected by chilling beams", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_889454763", + ["text"] = "Your Chilling Towers have #% increased Duration", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_27499777", + ["text"] = "Your Chilling Towers have #% increased Range", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1139911029", + ["text"] = "Your Chilling Towers have #% increased effect of Chill", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3564606017", + ["text"] = "Your Empowering Towers also grant #% increased Cast Speed", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2166020726", + ["text"] = "Your Empowering Towers also grant #% increased Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_246356360", + ["text"] = "Your Empowering Towers have #% increased Effect", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2097223452", + ["text"] = "Your Empowering Towers have #% increased Range", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2685482716", + ["text"] = "Your Fireball Towers Projectiles fire in a circle", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3026109282", + ["text"] = "Your Fireball Towers deal #% increased Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1008350423", + ["text"] = "Your Fireball Towers fire an additional Projectile", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2410280305", + ["text"] = "Your Fireball Towers have #% increased Cast Speed", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_117905700", + ["text"] = "Your Fireball Towers have #% increased Range", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1478321338", + ["text"] = "Your Flamethrower Towers deal #% increased Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3687716368", + ["text"] = "Your Flamethrower Towers deal full damage to Fire Enemies", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1248361993", + ["text"] = "Your Flamethrower Towers have #% chance to inflict Scorch", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_4039396512", + ["text"] = "Your Flamethrower Towers have #% increased Cast Speed", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_665179774", + ["text"] = "Your Flamethrower Towers have #% increased Range", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2541263647", + ["text"] = "Your Freezebolt Tower deal full damage to Cold Enemies", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2834109076", + ["text"] = "Your Freezebolt Towers deal #% increased Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1797913614", + ["text"] = "Your Freezebolt Towers fire an additional Projectile", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3802588863", + ["text"] = "Your Freezebolt Towers have #% chance to inflict Brittle", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3434272371", + ["text"] = "Your Freezebolt Towers have #% increased Range", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1035680542", + ["text"] = "Your Glacial Cage Towers have #% increased Cooldown Recovery Rate", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1056655244", + ["text"] = "Your Glacial Cage Towers have #% increased Duration", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2454791895", + ["text"] = "Your Glacial Cage Towers have #% increased Range", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3548778396", + ["text"] = "Your Hits against Marked Enemy cannot be Blocked or Suppressed", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3891165938", + ["text"] = "Your Imbuing Towers also grant #% increased Critical Strike Chance", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_639766324", + ["text"] = "Your Imbuing Towers also grant #% increased Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1277406505", + ["text"] = "Your Imbuing Towers also grant Onslaught", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3346280197", + ["text"] = "Your Imbuing Towers have #% increased Effect", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3044601282", + ["text"] = "Your Imbuing Towers have #% increased Range", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3354028437", + ["text"] = "Your Lightning Storm Towers create Storms centred on Enemies", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1960580674", + ["text"] = "Your Lightning Storm Towers deal #% increased Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_197351228", + ["text"] = "Your Lightning Storm Towers have #% increased Impact Delay", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1789548201", + ["text"] = "Your Lightning Storm Towers have #% increased Range", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3849821286", + ["text"] = "Your Lightning Storm Towers have #% increased explosion Area of Effect", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_839907382", + ["text"] = "Your Magic Maps contain # additional packs of Magic Monsters", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2862290356", + ["text"] = "Your Maps are Alluring", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_504023787", + ["text"] = "Your Maps are haunted by an additional Tormented Betrayer", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1463704577", + ["text"] = "Your Maps are haunted by an additional Tormented Graverobber", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_373209496", + ["text"] = "Your Maps are haunted by an additional Tormented Heretic", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_279246355", + ["text"] = "Your Maps are inhabited by an additional Invasion Boss", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3550168289", + ["text"] = "Your Maps are inhabited by an additional Rogue Exile", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3564826949", + ["text"] = "Your Maps can contain Abysses", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2180286756", + ["text"] = "Your Maps can contain Breaches", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3187151138", + ["option"] = { + ["options"] = { + { + ["id"] = 2, + ["text"] = "Einhar", + }, + { + ["id"] = 3, + ["text"] = "Alva", + }, + { + ["id"] = 5, + ["text"] = "Niko", + }, + { + ["id"] = 6, + ["text"] = "Jun", + }, + }, + }, + ["text"] = "Your Maps contain # (Master)", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1080470148", + ["text"] = "Your Maps contain # additional Clusters of Mysterious Barrels", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1207515735", + ["text"] = "Your Maps contain # additional Clusters of Mysterious Barrels", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1669553893", + ["text"] = "Your Maps contain # additional Clusters of Mysterious Barrels", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_4019701925", + ["text"] = "Your Maps contain # additional Clusters of Mysterious Barrels", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_21993405", + ["text"] = "Your Maps contain # additional Packs with Mirrored Rare Monsters", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3240183538", + ["text"] = "Your Maps contain # additional Strongboxes", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1867024035", + ["text"] = "Your Maps contain # additional pack of Corrupted Vaal Monsters", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_249139784", + ["text"] = "Your Maps contain # additional packs of Monsters that Convert when Killed", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3059368202", + ["text"] = "Your Maps contain # additional packs of Monsters that Heal", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3728052911", + ["text"] = "Your Maps contain # additional packs of Monsters that deal Chaos Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3194736016", + ["text"] = "Your Maps contain # additional packs of Monsters that deal Cold Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2366645974", + ["text"] = "Your Maps contain # additional packs of Monsters that deal Fire Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_545950479", + ["text"] = "Your Maps contain # additional packs of Monsters that deal Lightning Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3989543665", + ["text"] = "Your Maps contain # additional packs of Monsters that deal Physical Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3094365680", + ["text"] = "Your Maps contain # additional packs of Poisonous Monsters", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1640965354", + ["text"] = "Your Maps contain #% increased number of Runic Monster Markers", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1671749203", + ["text"] = "Your Maps contain Ritual Altars", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2459443694", + ["text"] = "Your Maps contain a Blight Encounter", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2398157267", + ["text"] = "Your Maps contain a Mirror of Delirium", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2055257822", + ["text"] = "Your Maps contain an Ultimatum Encounter", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1070816711", + ["text"] = "Your Maps contain an additional Abyss", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1992047981", + ["text"] = "Your Maps contain an additional Gloom Shrine", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_395808938", + ["text"] = "Your Maps contain an additional Imprisoned Monster", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3897451709", + ["text"] = "Your Maps contain an additional Legion Encounter", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1274634881", + ["text"] = "Your Maps contain an additional Resonating Shrine", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1468737867", + ["text"] = "Your Maps contain an additional Shrine", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3747734818", + ["text"] = "Your Maps contain hunted traitors", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_425606182", + ["text"] = "Your Maps have #% Quality", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1145451936", + ["text"] = "Your Maps have +#% chance to contain The Sacred Grove", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1076056376", + ["text"] = "Your Maps have a #% chance to contain Gifts of the Red Queen per Mortal Fragment used", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2649372092", + ["text"] = "Your Maps have a #% chance to contain Gifts of the Sacrificed per Sacrifice Fragment used", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1819243251", + ["text"] = "Your Meteor Towers always Stun", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3704937638", + ["text"] = "Your Meteor Towers create Burning Ground for # seconds on Hit", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1084180630", + ["text"] = "Your Meteor Towers deal #% increased Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2396402660", + ["text"] = "Your Meteor Towers drop an additional Meteor", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1270423035", + ["text"] = "Your Meteor Towers have #% increased Range", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_4099989681", + ["text"] = "Your Minions spread Burning Ground on Death, dealing #% of their maximum Life as Fire Damage per second", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3893420071", + ["text"] = "Your Normal Maps contain # additional packs of Normal Monsters", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3672378181", + ["text"] = "Your Rare Maps contain # additional Rare Monster packs", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_4048897123", + ["text"] = "Your Scout Towers have #% increased Range", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1441906885", + ["text"] = "Your Scout Towers summon an additional minion", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1582085030", + ["text"] = "Your Seismic Towers deal #% increased Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2410117075", + ["text"] = "Your Seismic Towers have #% increased Range", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3006815533", + ["text"] = "Your Seismic Towers have #% increased Stun Duration", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3830917556", + ["text"] = "Your Seismic Towers have #% increased length and range of Cascades", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3094610721", + ["text"] = "Your Seismic Towers have an additional Cascade", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1843683045", + ["text"] = "Your Sentinel Towers have #% increased Range", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2882048906", + ["text"] = "Your Shock Nova Towers deal #% increased Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2242331554", + ["text"] = "Your Shock Nova Towers deal full damage to Lightning Enemies", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2731937118", + ["text"] = "Your Shock Nova Towers have #% increased Range", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_21144785", + ["text"] = "Your Shock Nova Towers have #% increased area of effect per repeat", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_439316158", + ["text"] = "Your Shock Nova Towers have #% increased effect of Shock", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_307092526", + ["text"] = "Your Shock Nova Towers repeats # additional Times", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_906949000", + ["text"] = "Your Smothering Towers also grant #% chance to be Frozen, Shocked and Ignited", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2563159607", + ["text"] = "Your Smothering Towers also grant #% increased Damage", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_118036057", + ["text"] = "Your Smothering Towers also grant #% increased Movement Speed", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_726779274", + ["text"] = "Your Smothering Towers have #% increased Effect", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2764047332", + ["text"] = "Your Smothering Towers have #% increased Range", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2911217910", + ["text"] = "Your Stone Gaze Cage Towers have #% increased Range", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1619284089", + ["text"] = "Your Stone Gaze Towers have #% increased Cooldown Recovery Rate", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_573352991", + ["text"] = "Your Stone Gaze Towers have #% increased Duration", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3352207460", + ["text"] = "Your Stone Gaze Towers have #% increased Petrification Delay", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2550660356", + ["text"] = "Your Summoning Towers have #% increased Range", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1261917923", + ["text"] = "Your Summoning Towers summon # additional Minions", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2538402671", + ["text"] = "Your Temporal Towers also grant Stun Immunity", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_3198887051", + ["text"] = "Your Temporal Towers also grant you #% reduced action speed", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_4024383498", + ["text"] = "Your Temporal Towers effects decay #% faster", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2109921176", + ["text"] = "Your Temporal Towers have #% increased Effect", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_4089551985", + ["text"] = "Your Temporal Towers have #% increased Range", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2125952342", + ["text"] = "Your Towers deal #% increased Damage per Type of Tower Active", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_168308685", + ["text"] = "Zealotry has #% increased Mana Reservation Efficiency", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_4216444167", + ["text"] = "Zealotry has #% increased Mana Reservation Efficiency", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_478612089", + ["text"] = "Zealotry has #% reduced Reservation", + ["type"] = "enchant", + }, + }, + ["id"] = "enchant", + ["label"] = "Enchant", + }, + { + ["entries"] = { + { + ["id"] = "scourge.stat_762600725", + ["text"] = "# Life gained when you Block", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_2122183138", + ["text"] = "# Mana gained when you Block", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_2221570601", + ["text"] = "#% Global chance to Blind Enemies on hit", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_311641062", + ["text"] = "#% chance for Flasks you use to not consume Charges", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_1618589784", + ["text"] = "#% chance to Avoid Bleeding", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_3005472710", + ["text"] = "#% chance to Avoid Elemental Ailments", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_3483999943", + ["text"] = "#% chance to Avoid being Chilled", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_1514829491", + ["text"] = "#% chance to Avoid being Frozen", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_1783006896", + ["text"] = "#% chance to Avoid being Ignited", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_4053951709", + ["text"] = "#% chance to Avoid being Poisoned", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_1871765599", + ["text"] = "#% chance to Avoid being Shocked", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_4262448838", + ["text"] = "#% chance to Avoid being Stunned", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_26216403", + ["text"] = "#% chance to Blind Enemies when they Hit you", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_864879045", + ["text"] = "#% chance to Chill Attackers for 4 seconds on Block", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_670088789", + ["text"] = "#% chance to Curse Enemies with Conductivity on Hit", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_1764973832", + ["text"] = "#% chance to Curse Enemies with Despair on Hit", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_636057969", + ["text"] = "#% chance to Curse Enemies with Elemental Weakness on Hit", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_1516661546", + ["text"] = "#% chance to Curse Enemies with Enfeeble on Hit", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_1016707110", + ["text"] = "#% chance to Curse Enemies with Frostbite on Hit", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_1826297223", + ["text"] = "#% chance to Curse Enemies with Vulnerability on Hit", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_3370064078", + ["text"] = "#% chance to Curse you with Silence when Hit", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_2309614417", + ["text"] = "#% chance to Freeze", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_3002506763", + ["text"] = "#% chance to Hinder Enemies on Hit with Spells", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_1335054179", + ["text"] = "#% chance to Ignite", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_3739863694", + ["text"] = "#% chance to Impale Enemies on Hit with Attacks", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_78985352", + ["text"] = "#% chance to Intimidate Enemies for 4 seconds on Hit", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_977908611", + ["text"] = "#% chance to Knock Enemies Back on hit", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_795138349", + ["text"] = "#% chance to Poison on Hit", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_1538773178", + ["text"] = "#% chance to Shock", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_575111651", + ["text"] = "#% chance to Shock Attackers for 4 seconds on Block", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_280213220", + ["text"] = "#% chance to Taunt Enemies on Hit with Attacks", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_763611529", + ["text"] = "#% chance to Unnerve Enemies for 4 seconds on Hit", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_1968872681", + ["text"] = "#% chance to create Consecrated Ground when Hit, lasting 8 seconds", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_2445189705", + ["text"] = "#% chance to deal Triple Damage", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_3023957681", + ["text"] = "#% chance to gain Onslaught for 4 seconds on Kill", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_2918708827", + ["text"] = "#% chance to gain Phasing for 4 seconds on Kill", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_3562211447", + ["text"] = "#% chance to gain Unholy Might for 3 seconds on Kill", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_1826802197", + ["text"] = "#% chance to gain a Frenzy Charge on Kill", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_2483795307", + ["text"] = "#% chance to gain a Power Charge on Kill", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_1054322244", + ["text"] = "#% chance to gain an Endurance Charge on Kill", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_2630708439", + ["text"] = "#% chance to inflict Cold Exposure on Hit", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_3602667353", + ["text"] = "#% chance to inflict Fire Exposure on Hit", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_4265906483", + ["text"] = "#% chance to inflict Lightning Exposure on Hit", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_4251717817", + ["text"] = "#% increased Area Damage", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_280731498", + ["text"] = "#% increased Area of Effect", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_3523867985", + ["text"] = "#% increased Armour, Evasion and Energy Shield (Local)", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_681332047", + ["text"] = "#% increased Attack Speed", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_3639275092", + ["text"] = "#% increased Attribute Requirements", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_4223377453", + ["text"] = "#% increased Brand Attachment range", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_2891184298", + ["text"] = "#% increased Cast Speed", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_736967255", + ["text"] = "#% increased Chaos Damage", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_3291658075", + ["text"] = "#% increased Cold Damage", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_1004011302", + ["text"] = "#% increased Cooldown Recovery Rate", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_2091591880", + ["text"] = "#% increased Critical Strike Chance with Bows", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_4091521421", + ["text"] = "#% increased Damage taken while on Full Life", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_4139681126", + ["text"] = "#% increased Dexterity", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_2419712247", + ["text"] = "#% increased Duration of Ailments on Enemies", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_782230869", + ["text"] = "#% increased Effect of Non-Damaging Ailments", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_2353576063", + ["text"] = "#% increased Effect of your Curses", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_3141070085", + ["text"] = "#% increased Elemental Damage", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_387439868", + ["text"] = "#% increased Elemental Damage with Attack Skills", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_240857668", + ["text"] = "#% increased Elusive Effect", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_2339757871", + ["text"] = "#% increased Energy Shield Recharge Rate", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_988575597", + ["text"] = "#% increased Energy Shield Recovery rate", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_3962278098", + ["text"] = "#% increased Fire Damage", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_3743301799", + ["text"] = "#% increased Fire Damage taken", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_1842038569", + ["text"] = "#% increased Fishing Line Strength", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_170497091", + ["text"] = "#% increased Fishing Range", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_1452809865", + ["text"] = "#% increased Flask Charges gained", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_51994685", + ["text"] = "#% increased Flask Life Recovery rate", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_1412217137", + ["text"] = "#% increased Flask Mana Recovery rate", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_624954515", + ["text"] = "#% increased Global Accuracy Rating", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_587431675", + ["text"] = "#% increased Global Critical Strike Chance", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_1389153006", + ["text"] = "#% increased Global Defences", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_1310194496", + ["text"] = "#% increased Global Physical Damage", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_298173317", + ["text"] = "#% increased Impale Effect", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_656461285", + ["text"] = "#% increased Intelligence", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_821241191", + ["text"] = "#% increased Life Recovery from Flasks", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_3240073117", + ["text"] = "#% increased Life Recovery rate", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_44972811", + ["text"] = "#% increased Life Regeneration rate", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_1263695895", + ["text"] = "#% increased Light Radius", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_2231156303", + ["text"] = "#% increased Lightning Damage", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_2222186378", + ["text"] = "#% increased Mana Recovery from Flasks", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_3513180117", + ["text"] = "#% increased Mana Recovery rate", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_789117908", + ["text"] = "#% increased Mana Regeneration Rate", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_1269219558", + ["text"] = "#% increased Mana Reservation Efficiency of Skills", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_4237190083", + ["text"] = "#% increased Mana Reservation Efficiency of Skills", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_1896971621", + ["text"] = "#% increased Mine Throwing Speed", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_2250533757", + ["text"] = "#% increased Movement Speed", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_2113810473", + ["text"] = "#% increased Pack size in Nightmare", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_3853018505", + ["text"] = "#% increased Physical Damage taken", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_1839076647", + ["text"] = "#% increased Projectile Damage", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_3759663284", + ["text"] = "#% increased Projectile Speed", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_3133835437", + ["text"] = "#% increased Quantity of Items found in Nightmare", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_3310914132", + ["text"] = "#% increased Rarity of Fish Caught", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_3917489142", + ["text"] = "#% increased Rarity of Items found", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_1723063621", + ["text"] = "#% increased Rarity of Items found in Nightmare", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_3332149074", + ["text"] = "#% increased Reeling Stability", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_1771018579", + ["text"] = "#% increased Size of Fish caught during Daytime", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_2974417149", + ["text"] = "#% increased Spell Damage", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_734614379", + ["text"] = "#% increased Strength", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_2517001139", + ["text"] = "#% increased Stun Duration on Enemies", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_2511217560", + ["text"] = "#% increased Stun and Block Recovery", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_2357996603", + ["text"] = "#% increased Totem Duration", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_686254215", + ["text"] = "#% increased Totem Life", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_3374165039", + ["text"] = "#% increased Totem Placement speed", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_118398748", + ["text"] = "#% increased Trap Throwing Speed", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_1316278494", + ["text"] = "#% increased Warcry Speed", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_1880071428", + ["text"] = "#% increased effect of Non-Curse Auras from your Skills", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_983749596", + ["text"] = "#% increased maximum Life", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_2748665614", + ["text"] = "#% increased maximum Mana", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_744082851", + ["text"] = "#% of Chaos Damage Leeched as Life", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_3999401129", + ["text"] = "#% of Cold Damage Leeched as Life", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_1444556985", + ["text"] = "#% of Damage taken Recouped as Life", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_3848282610", + ["text"] = "#% of Fire Damage Leeched as Life", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_80079005", + ["text"] = "#% of Lightning Damage Leeched as Life", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_3593843976", + ["text"] = "#% of Physical Attack Damage Leeched as Life", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_3237948413", + ["text"] = "#% of Physical Attack Damage Leeched as Mana", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_490098963", + ["text"] = "#% of Physical Damage Converted to Chaos Damage", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_2133341901", + ["text"] = "#% of Physical Damage Converted to Cold Damage", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_1533563525", + ["text"] = "#% of Physical Damage Converted to Fire Damage", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_3240769289", + ["text"] = "#% of Physical Damage Converted to Lightning Damage", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_3764265320", + ["text"] = "#% of Physical Damage Leeched as Life", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_4129825612", + ["text"] = "#% of Physical Damage from Hits taken as Chaos Damage", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_1871056256", + ["text"] = "#% of Physical Damage from Hits taken as Cold Damage", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_3342989455", + ["text"] = "#% of Physical Damage from Hits taken as Fire Damage", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_425242359", + ["text"] = "#% of Physical Damage from Hits taken as Lightning Damage", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_2960683632", + ["text"] = "#% reduced Chaos Damage taken", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_3303114033", + ["text"] = "#% reduced Cold Damage taken", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_1478653032", + ["text"] = "#% reduced Effect of Chill on you", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_3407849389", + ["text"] = "#% reduced Effect of Curses on you", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_3801067695", + ["text"] = "#% reduced Effect of Shock on you", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_1745952865", + ["text"] = "#% reduced Elemental Ailment Duration on you", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_1443060084", + ["text"] = "#% reduced Enemy Stun Threshold", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_1550221644", + ["text"] = "#% reduced Fishing Pool Consumption", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_644456512", + ["text"] = "#% reduced Flask Charges used", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_2160282525", + ["text"] = "#% reduced Freeze Duration on you", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_986397080", + ["text"] = "#% reduced Ignite Duration on you", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_1276918229", + ["text"] = "#% reduced Lightning Damage taken", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_1133453872", + ["text"] = "+# Dexterity Requirement", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_2153364323", + ["text"] = "+# Intelligence Requirement", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_2833226514", + ["text"] = "+# Strength Requirement", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_350598685", + ["text"] = "+# metres to Weapon Range", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_3484657501", + ["text"] = "+# to Armour (Local)", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_3261801346", + ["text"] = "+# to Dexterity", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_53045048", + ["text"] = "+# to Evasion Rating (Local)", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_328541901", + ["text"] = "+# to Intelligence", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_2551600084", + ["text"] = "+# to Level of Socketed AoE Gems", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_2452998583", + ["text"] = "+# to Level of Socketed Aura Gems", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_2675603254", + ["text"] = "+# to Level of Socketed Chaos Gems", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_1645459191", + ["text"] = "+# to Level of Socketed Cold Gems", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_3691695237", + ["text"] = "+# to Level of Socketed Curse Gems", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_2718698372", + ["text"] = "+# to Level of Socketed Dexterity Gems", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_2115168758", + ["text"] = "+# to Level of Socketed Duration Gems", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_339179093", + ["text"] = "+# to Level of Socketed Fire Gems", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_2843100721", + ["text"] = "+# to Level of Socketed Gems", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_1719423857", + ["text"] = "+# to Level of Socketed Intelligence Gems", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_4043416969", + ["text"] = "+# to Level of Socketed Lightning Gems", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_829382474", + ["text"] = "+# to Level of Socketed Melee Gems", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_3604946673", + ["text"] = "+# to Level of Socketed Minion Gems", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_2176571093", + ["text"] = "+# to Level of Socketed Projectile Gems", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_916797432", + ["text"] = "+# to Level of Socketed Strength Gems", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_4154259475", + ["text"] = "+# to Level of Socketed Support Gems", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_150668988", + ["text"] = "+# to Level of Socketed Trap or Mine Gems", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_1672793731", + ["text"] = "+# to Level of Socketed Warcry Gems", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_4226189338", + ["text"] = "+# to Level of all Chaos Spell Skill Gems", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_2254480358", + ["text"] = "+# to Level of all Cold Spell Skill Gems", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_591105508", + ["text"] = "+# to Level of all Fire Spell Skill Gems", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_1545858329", + ["text"] = "+# to Level of all Lightning Spell Skill Gems", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_1600707273", + ["text"] = "+# to Level of all Physical Spell Skill Gems", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_124131830", + ["text"] = "+# to Level of all Spell Skill Gems", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_1515657623", + ["text"] = "+# to Maximum Endurance Charges", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_4078695", + ["text"] = "+# to Maximum Frenzy Charges", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_227523295", + ["text"] = "+# to Maximum Power Charges", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_3706959521", + ["text"] = "+# to Minimum Endurance Charges", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_658456881", + ["text"] = "+# to Minimum Frenzy Charges", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_1999711879", + ["text"] = "+# to Minimum Power Charges", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_4080418644", + ["text"] = "+# to Strength", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_4052037485", + ["text"] = "+# to maximum Energy Shield (Local)", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_3299347043", + ["text"] = "+# to maximum Life", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_1050105434", + ["text"] = "+# to maximum Mana", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_966747987", + ["text"] = "+# to maximum number of Raised Zombies", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_1225383362", + ["text"] = "+# to maximum number of Skeletons", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_1702195217", + ["text"] = "+#% Chance to Block Attack Damage", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_19803471", + ["text"] = "+#% Chance to Block Spell Damage", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_3680664274", + ["text"] = "+#% chance to Suppress Spell Damage", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_4055307827", + ["text"] = "+#% to Chaos Damage over Time Multiplier", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_2923486259", + ["text"] = "+#% to Chaos Resistance", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_1950806024", + ["text"] = "+#% to Cold Damage over Time Multiplier", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_4220027924", + ["text"] = "+#% to Cold Resistance", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_1712221299", + ["text"] = "+#% to Critical Strike Multiplier with Bows", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_3988349707", + ["text"] = "+#% to Damage over Time Multiplier", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_3382807662", + ["text"] = "+#% to Fire Damage over Time Multiplier", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_3372524247", + ["text"] = "+#% to Fire Resistance", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_3556824919", + ["text"] = "+#% to Global Critical Strike Multiplier", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_1671376347", + ["text"] = "+#% to Lightning Resistance", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_1314617696", + ["text"] = "+#% to Physical Damage over Time Multiplier", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_1328548975", + ["text"] = "+#% to Quality of Socketed Support Gems", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_2901986750", + ["text"] = "+#% to all Elemental Resistances", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_1978899297", + ["text"] = "+#% to all maximum Elemental Resistances", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_1301765461", + ["text"] = "+#% to maximum Chaos Resistance", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_3676141501", + ["text"] = "+#% to maximum Cold Resistance", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_4095671657", + ["text"] = "+#% to maximum Fire Resistance", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_1011760251", + ["text"] = "+#% to maximum Lightning Resistance", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_383557755", + ["text"] = "Acrobatics", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_770490590", + ["text"] = "Action Speed cannot be modified to below #% of base value", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_2223678961", + ["text"] = "Adds # to # Chaos Damage (Local)", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_1037193709", + ["text"] = "Adds # to # Cold Damage (Local)", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_2469416729", + ["text"] = "Adds # to # Cold Damage to Spells", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_709508406", + ["text"] = "Adds # to # Fire Damage (Local)", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_1133016593", + ["text"] = "Adds # to # Fire Damage to Spells", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_3336890334", + ["text"] = "Adds # to # Lightning Damage (Local)", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_2831165374", + ["text"] = "Adds # to # Lightning Damage to Spells", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_1940865751", + ["text"] = "Adds # to # Physical Damage (Local)", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_2435536961", + ["text"] = "Adds # to # Physical Damage to Spells", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_2648570028", + ["text"] = "Ancestral Bond", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_555053464", + ["text"] = "Area contains an additional Scourge Boss", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_2606808909", + ["text"] = "Arrow Dancing", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_1658124062", + ["text"] = "Attack Projectiles Return to you", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_1510714129", + ["text"] = "Attacks have #% chance to Maim on Hit", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_1923879260", + ["text"] = "Attacks have #% chance to cause Bleeding", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_346029096", + ["text"] = "Avatar of Fire", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_3828375170", + ["text"] = "Bleeding you inflict deals Damage #% faster", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_2801937280", + ["text"] = "Blood Magic", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_3885405204", + ["text"] = "Bow Attacks fire # additional Arrows", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_3089482869", + ["text"] = "Brand Skills have #% increased Duration", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_3292262540", + ["text"] = "Call to Arms", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_60263468", + ["text"] = "Can have up to # additional Remote Mine placed at a time", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_2224292784", + ["text"] = "Can have up to # additional Trap placed at a time", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_3162258068", + ["text"] = "Cannot Block Attack Damage", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_4076910393", + ["text"] = "Cannot Block Spell Damage", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_474452755", + ["text"] = "Cannot Evade Enemy Attacks", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_1831380809", + ["text"] = "Cannot Fish while standing in Water", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_700952022", + ["text"] = "Cannot Leech Energy Shield", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_3769854701", + ["text"] = "Cannot Leech Life", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_1759630226", + ["text"] = "Cannot Leech Mana", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_876831634", + ["text"] = "Cannot be Frozen", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_1500620123", + ["text"] = "Cannot gain Charges", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_1925222248", + ["text"] = "Cannot inflict Curses", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_3913992084", + ["text"] = "Cannot inflict Elemental Ailments", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_2459809121", + ["text"] = "Chill Enemy for # second when Hit, reducing their Action Speed by 30%", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_1994392904", + ["text"] = "Conduit", + ["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", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_300702212", + ["text"] = "Crimson Dance", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_2524254339", + ["text"] = "Culling Strike", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_654274615", + ["text"] = "Curse Enemies with Flammability on Hit", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_4139135963", + ["text"] = "Curse Enemies with Temporal Chains on Hit", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_4264312960", + ["text"] = "Damage Penetrates #% Chaos Resistance", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_3417711605", + ["text"] = "Damage Penetrates #% Cold Resistance", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_2653955271", + ["text"] = "Damage Penetrates #% Fire Resistance", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_818778753", + ["text"] = "Damage Penetrates #% Lightning Resistance", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_697807915", + ["text"] = "Damage Penetrates #% of Enemy Elemental Resistances", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_827991492", + ["text"] = "Damage with Hits is Lucky", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_3643913768", + ["text"] = "Deal #% of your maximum Life as Fire Damage to nearby Enemies when Hit", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_1896269067", + ["text"] = "Deal no Chaos Damage", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_743677006", + ["text"] = "Deal no Cold Damage", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_3763013280", + ["text"] = "Deal no Fire Damage", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_3520498509", + ["text"] = "Deal no Lightning Damage", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_3900877792", + ["text"] = "Deal no Physical Damage", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_2048995720", + ["text"] = "Divine Shield", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_2262736444", + ["text"] = "Eldritch Battery", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_1263158408", + ["text"] = "Elemental Equilibrium", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_3574189159", + ["text"] = "Elemental Overload", + ["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", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_1308467455", + ["text"] = "Eternal Youth", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_261024552", + ["text"] = "Fish Rot upon being Caught", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_450695450", + ["text"] = "Gain # Energy Shield when you Block", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_2797971005", + ["text"] = "Gain # Life per Enemy Hit with Attacks", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_820939409", + ["text"] = "Gain # Mana per Enemy Hit with Attacks", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_2663376056", + ["text"] = "Gain #% of Maximum Mana as Extra Maximum Energy Shield", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_2802961816", + ["text"] = "Gain Exposed to Corruption stacks twice as frequently Lose 1 stack of Exposed to Corruption every 5 seconds", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_3590128077", + ["text"] = "Ghost Dance", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_4272248216", + ["text"] = "Ghost Reaver", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_4266776872", + ["text"] = "Glancing Blows", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_1504952168", + ["text"] = "Grants Level # Herald of Agony Skill", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_3880462354", + ["text"] = "Grants Level # Herald of Ash Skill", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_3846248551", + ["text"] = "Grants Level # Herald of Ice Skill", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_738207023", + ["text"] = "Grants Level # Herald of Purity Skill", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_1665492921", + ["text"] = "Grants Level # Herald of Thunder Skill", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_3536689603", + ["text"] = "Grants Level # Sniper's Mark Skill", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_3150300096", + ["text"] = "Guard Skills have #% increased Cooldown Recovery Rate", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_3849554033", + ["text"] = "Hex Master", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_4152537231", + ["text"] = "Hits have +#% additional Critical Strike Chance against you", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_2443492284", + ["text"] = "Ignites you inflict deal Damage #% faster", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_3868073741", + ["text"] = "Imbalanced Guard", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_573347393", + ["text"] = "Iron Grip", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_326965591", + ["text"] = "Iron Reflexes", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_4092697134", + ["text"] = "Iron Will", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_1678358883", + ["text"] = "Lethe Shade", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_2592686757", + ["text"] = "Life Flasks gain # Charge every 3 seconds", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_2589042711", + ["text"] = "Lose # Mana per Second", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_1854652099", + ["text"] = "Lose Blood from Blood Crucible #% faster", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_4180925106", + ["text"] = "Magebane", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_1193925814", + ["text"] = "Mana Flasks gain # Charge every 3 seconds", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_373964381", + ["text"] = "Mind Over Matter", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_433293234", + ["text"] = "Minion Instability", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_2770782267", + ["text"] = "Minions Leech #% of Damage as Life", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_2479683456", + ["text"] = "Minions Regenerate #% of Life per second", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_1589917703", + ["text"] = "Minions deal #% increased Damage", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_2911442053", + ["text"] = "Minions have #% chance to Taunt on Hit with Attacks", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_3375935924", + ["text"] = "Minions have #% increased Attack Speed", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_4000101551", + ["text"] = "Minions have #% increased Cast Speed", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_770672621", + ["text"] = "Minions have #% increased maximum Life", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_3374054207", + ["text"] = "Minions have +#% Chance to Block Attack Damage", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_2762046953", + ["text"] = "Minions have +#% Chance to Block Spell Damage", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_3837707023", + ["text"] = "Minions have +#% to Chaos Resistance", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_1423639565", + ["text"] = "Minions have +#% to all Elemental Resistances", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_4194727975", + ["text"] = "Monsters in Nightmare Regenerate #% of Life per second", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_1862513109", + ["text"] = "Monsters in Nightmare deal #% more Damage", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_1450558011", + ["text"] = "Monsters in Nightmare grant #% more Experience", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_1037674518", + ["text"] = "Monsters in Nightmare have #% more Maximum Life", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_1272526351", + ["text"] = "Monsters in Nightmare take #% more Damage", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_1902595112", + ["text"] = "Nearby Enemies have +#% to Chaos Resistance", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_2674336304", + ["text"] = "Nearby Enemies have +#% to Cold Resistance", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_3914021960", + ["text"] = "Nearby Enemies have +#% to Fire Resistance", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_1849749435", + ["text"] = "Nearby Enemies have +#% to Lightning Resistance", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_415837237", + ["text"] = "Nearby Enemies take #% increased Physical Damage", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_3638599682", + ["text"] = "Never deal Critical Strikes", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_3227755143", + ["text"] = "Often Shift into Nightmare on Killing a Rare or Unique Enemy", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_834961782", + ["text"] = "Only Shift into and out of Nightmare randomly", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_1721804958", + ["text"] = "Only shift into Nightmare on reaching maximum Blood Lose Blood from Blood Crucible 90% slower Lose 0.4% of Blood on Killing a Scourge Monster Lose all Blood when you shift out of Nightmare", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_98977150", + ["text"] = "Pain Attunement", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_3884934810", + ["text"] = "Perfect Agony", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_1138521520", + ["text"] = "Players have #% additional Physical Damage Reduction while in Nightmare", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_1284275793", + ["text"] = "Players have #% increased Movement Speed while in Nightmare", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_2122435676", + ["text"] = "Players have +#% chance to Block Attack Damage while in Nightmare", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_3078099912", + ["text"] = "Players have +#% chance to Evade Attack Hits while in Nightmare", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_1982917702", + ["text"] = "Players have +#% chance to Suppress Spell Damage while in Nightmare", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_3811376579", + ["text"] = "Players lose # Energy Shield per second while in Nightmare", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_1886325728", + ["text"] = "Players lose # Life per second while in Nightmare", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_2896346114", + ["text"] = "Point Blank", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_2907156609", + ["text"] = "Poisons you inflict deal Damage #% faster", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_2067062068", + ["text"] = "Projectiles Pierce # additional Targets", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_3464380325", + ["text"] = "Projectiles Split towards +# targets", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_1868833914", + ["text"] = "Rare Scourge Monsters drop # additional Abyssal Jewel", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_2614920781", + ["text"] = "Rare Scourge Monsters drop # additional Basic Currency Item", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_2476677955", + ["text"] = "Rare Scourge Monsters drop # additional Blight Oil", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_2138514702", + ["text"] = "Rare Scourge Monsters drop # additional Catalyst", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_3239455349", + ["text"] = "Rare Scourge Monsters drop # additional Enchanted Item", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_4190187707", + ["text"] = "Rare Scourge Monsters drop # additional Essence", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_3749656638", + ["text"] = "Rare Scourge Monsters drop # additional Fossil", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_1080258032", + ["text"] = "Rare Scourge Monsters drop # additional Fractured Item", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_680848795", + ["text"] = "Rare Scourge Monsters drop # additional Gem", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_3071604267", + ["text"] = "Rare Scourge Monsters drop # additional Incubator", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_3007446134", + ["text"] = "Rare Scourge Monsters drop # additional Influenced Item", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_1156260371", + ["text"] = "Rare Scourge Monsters drop # additional Map", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_2537141444", + ["text"] = "Rare Scourge Monsters drop # additional Scarab", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_1111686834", + ["text"] = "Rare Scourge Monsters drop # additional Scourged Item", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_1619848225", + ["text"] = "Rare Scourge Monsters drop # additional Stacked Deck", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_602265718", + ["text"] = "Rare Scourge Monsters drop # additional Tainted Currency Item", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_3507985713", + ["text"] = "Rare Scourge Monsters drop # additional Unique Item", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_1903167683", + ["text"] = "Rare Scourge Monsters drop # additional stack of Breach Splinters", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_1841571309", + ["text"] = "Rare Scourge Monsters drop # additional stack of Expedition Currency", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_500060059", + ["text"] = "Rare Scourge Monsters drop # additional stack of Legion Splinters", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_2717147327", + ["text"] = "Rare Scourge Monsters drop # additional stack of Simulacrum Splinters", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_286664435", + ["text"] = "Rare Scourge Monsters drop items # level higher", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_2406605753", + ["text"] = "Recover #% of Energy Shield on Kill", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_2023107756", + ["text"] = "Recover #% of Life on Kill", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_1030153674", + ["text"] = "Recover #% of Mana on Kill", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_3767873853", + ["text"] = "Reflects # Physical Damage to Melee Attackers", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_3325883026", + ["text"] = "Regenerate # Life per second", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_4291461939", + ["text"] = "Regenerate # Mana per second", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_3943945975", + ["text"] = "Resolute Technique", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_4080245957", + ["text"] = "Runebinder", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_1787073323", + ["text"] = "Skills Chain +# times", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_411460446", + ["text"] = "Socketed Gems are Supported by Level # Added Chaos Damage", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_4020144606", + ["text"] = "Socketed Gems are Supported by Level # Added Cold Damage", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_1647529598", + ["text"] = "Socketed Gems are Supported by Level # Added Lightning Damage", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_112130960", + ["text"] = "Solipsism", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_1533511331", + ["text"] = "Spell Hits have #% chance to Hinder you", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_4039414411", + ["text"] = "Strength's Damage bonus also applies to Reeling Speed at 20% of its value", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_1421267186", + ["text"] = "Supreme Ego", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_3388448809", + ["text"] = "Take # Fire Damage when you Shift into or out of Nightmare", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_3876624283", + ["text"] = "Take # Lightning Damage when you Shift into or out of Nightmare", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_950721230", + ["text"] = "Take # Physical Damage when you Shift into or out of Nightmare", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_1919253863", + ["text"] = "Take Physical Damage equal to #% of Life plus #% of Energy Shield per Second per 1% Blood in the Blood Crucible while you are able to Shift into Nightmare", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_462691314", + ["text"] = "The Agnostic", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_1441799693", + ["text"] = "The Impaler", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_1809006367", + ["text"] = "Totems gain +#% to all Elemental Resistances", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_3616562963", + ["text"] = "Totems have #% additional Physical Damage Reduction", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_1683578560", + ["text"] = "Unwavering Stance", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_2257118425", + ["text"] = "Vaal Pact", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_593845252", + ["text"] = "Versatile Combatant", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_1109343199", + ["text"] = "Wicked Ward", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_4170338365", + ["text"] = "Wind Dancer", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_2160417795", + ["text"] = "You and your Minions take #% reduced Reflected Elemental Damage", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_129035625", + ["text"] = "You and your Minions take #% reduced Reflected Physical Damage", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_4256430383", + ["text"] = "You are Cursed with Conductivity", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_2177148618", + ["text"] = "You are Cursed with Despair", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_916233227", + ["text"] = "You are Cursed with Elemental Weakness", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_2102270408", + ["text"] = "You are Cursed with Enfeeble", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_469425157", + ["text"] = "You are Cursed with Flammability", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_469418792", + ["text"] = "You are Cursed with Frostbite", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_226443538", + ["text"] = "You are Cursed with Temporal Chains", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_3947740014", + ["text"] = "You are Cursed with Vulnerability", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_30642521", + ["text"] = "You can apply # additional Curses", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_2248945598", + ["text"] = "You can't deal Damage with your Skills yourself", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_4164247992", + ["text"] = "You cannot Recharge Energy Shield", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_1052583507", + ["text"] = "You cannot Regenerate Energy Shield", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_2764164760", + ["text"] = "You gain Onslaught for # seconds when Hit", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_854225133", + ["text"] = "You have no Life Regeneration", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_1052246654", + ["text"] = "You have no Mana Regeneration", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_3855016469", + ["text"] = "You take #% reduced Extra Damage from Critical Strikes", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_2578701544", + ["text"] = "Your Chaos Damage cannot Poison", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_4058681894", + ["text"] = "Your Critical Strikes do not deal extra Damage", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_373932729", + ["text"] = "Your Hits cannot Stun Enemies", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_86000920", + ["text"] = "Your Movement Skills are Disabled", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_733138911", + ["text"] = "Your Physical Damage cannot Poison", + ["type"] = "scourge", + }, + { + ["id"] = "scourge.stat_632761194", + ["text"] = "Zealot's Oath", + ["type"] = "scourge", + }, + }, + ["id"] = "scourge", + ["label"] = "Scourge", + }, + { + ["entries"] = { + { + ["id"] = "crafted.stat_2312652600", + ["text"] = "#% Chance to Avoid being Stunned during Effect", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_2530372417", + ["text"] = "#% Chance to Block Attack Damage", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_561307714", + ["text"] = "#% Chance to Block Spell Damage", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_1785942004", + ["text"] = "#% Chance to Trigger Level 18 Summon Spectral Wolf on Kill", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_3771516363", + ["text"] = "#% additional Physical Damage Reduction", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_3753650187", + ["text"] = "#% additional Physical Damage Reduction while Focused", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_301104070", + ["text"] = "#% chance for Flasks to gain a Charge when you take a Critical Strike", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_311641062", + ["text"] = "#% chance for Flasks you use to not consume Charges", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_1618589784", + ["text"] = "#% chance to Avoid Bleeding", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_3005472710", + ["text"] = "#% chance to Avoid Elemental Ailments", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_720398262", + ["text"] = "#% chance to Avoid Elemental Damage from Hits during Soul Gain Prevention", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_3483999943", + ["text"] = "#% chance to Avoid being Chilled", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_1514829491", + ["text"] = "#% chance to Avoid being Frozen", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_1783006896", + ["text"] = "#% chance to Avoid being Ignited", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_2362265695", + ["text"] = "#% chance to Avoid being Knocked Back", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_1871765599", + ["text"] = "#% chance to Avoid being Shocked", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_4262448838", + ["text"] = "#% chance to Avoid being Stunned", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_2301191210", + ["text"] = "#% chance to Blind Enemies on hit", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_2309614417", + ["text"] = "#% chance to Freeze", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_1335054179", + ["text"] = "#% chance to Ignite", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_725880290", + ["text"] = "#% chance to Impale Enemies on Hit with Attacks", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_3885634897", + ["text"] = "#% chance to Poison on Hit (Local)", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_1538773178", + ["text"] = "#% chance to Shock", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_205619502", + ["text"] = "#% chance to Trigger Level 1 Blood Rage when you Kill an Enemy", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_2062792091", + ["text"] = "#% chance to Trigger Socketed Spells when you Focus, with a 0.25 second Cooldown", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_3079007202", + ["text"] = "#% chance to Trigger a Socketed Spell on Using a Skill, with a 8 second Cooldown Spells Triggered this way have 150% more Cost", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_1519615863", + ["text"] = "#% chance to cause Bleeding on Hit", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_1172810729", + ["text"] = "#% chance to deal Double Damage", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_2908886986", + ["text"] = "#% chance to deal Double Damage while Focused", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_573223427", + ["text"] = "#% chance to gain Arcane Surge when you Kill an Enemy", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_3023957681", + ["text"] = "#% chance to gain Onslaught for 4 seconds on Kill", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_3032585258", + ["text"] = "#% chance to gain a Frenzy Charge on Critical Strike", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_1782086450", + ["text"] = "#% faster start of Energy Shield Recharge", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_4251717817", + ["text"] = "#% increased Area Damage", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_280731498", + ["text"] = "#% increased Area of Effect", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_2866361420", + ["text"] = "#% increased Armour", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_1062208444", + ["text"] = "#% increased Armour (Local)", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_3321629045", + ["text"] = "#% increased Armour and Energy Shield (Local)", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_2451402625", + ["text"] = "#% increased Armour and Evasion (Local)", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_3523867985", + ["text"] = "#% increased Armour, Evasion and Energy Shield (Local)", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_681332047", + ["text"] = "#% increased Attack Speed", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_210067635", + ["text"] = "#% increased Attack Speed (Local)", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_314741699", + ["text"] = "#% increased Attack Speed while a Rare or Unique Enemy is Nearby", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_2672805335", + ["text"] = "#% increased Attack and Cast Speed", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_2628163981", + ["text"] = "#% increased Attack and Cast Speed while Focused", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_3143208761", + ["text"] = "#% increased Attributes", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_4223377453", + ["text"] = "#% increased Brand Attachment range", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_2891184298", + ["text"] = "#% increased Cast Speed", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_2481353198", + ["text"] = "#% increased Chance to Block", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_736967255", + ["text"] = "#% increased Chaos Damage", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_3485067555", + ["text"] = "#% increased Chill Duration on Enemies", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_3291658075", + ["text"] = "#% increased Cold Damage", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_1004011302", + ["text"] = "#% increased Cooldown Recovery Rate", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_2375316951", + ["text"] = "#% increased Critical Strike Chance", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_2008255263", + ["text"] = "#% increased Critical Strike Chance during Effect", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_2154246560", + ["text"] = "#% increased Damage", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_2947215268", + ["text"] = "#% increased Damage during any Flask Effect", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_967627487", + ["text"] = "#% increased Damage over Time", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_3515686789", + ["text"] = "#% increased Damage per Endurance Charge", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_902747843", + ["text"] = "#% increased Damage per Frenzy Charge", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_2034658008", + ["text"] = "#% increased Damage per Power Charge", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_310246444", + ["text"] = "#% increased Damage while Leeching", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_1583385065", + ["text"] = "#% increased Damage with Non-Vaal Skills during Soul Gain Prevention", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_2257141320", + ["text"] = "#% increased Damage with Vaal Skills", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_1840751341", + ["text"] = "#% increased Duration of Ailments you inflict while Focused", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_1984113628", + ["text"] = "#% increased Effect of Chill and Shock on you", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_2069161757", + ["text"] = "#% increased Effect of Freeze on you", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_782230869", + ["text"] = "#% increased Effect of Non-Damaging Ailments", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_1519474779", + ["text"] = "#% increased Effect of Non-Damaging Ailments on you", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_2353576063", + ["text"] = "#% increased Effect of your Curses", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_2379781920", + ["text"] = "#% increased Elemental Damage if you've dealt a Critical Strike Recently", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_387439868", + ["text"] = "#% increased Elemental Damage with Attack Skills", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_4015621042", + ["text"] = "#% increased Energy Shield (Local)", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_2339757871", + ["text"] = "#% increased Energy Shield Recharge Rate", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_2106365538", + ["text"] = "#% increased Evasion Rating", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_124859000", + ["text"] = "#% increased Evasion Rating (Local)", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_3839620417", + ["text"] = "#% increased Evasion Rating while Focused", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_1999113824", + ["text"] = "#% increased Evasion and Energy Shield (Local)", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_3962278098", + ["text"] = "#% increased Fire Damage", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_1452809865", + ["text"] = "#% increased Flask Charges gained", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_3741323227", + ["text"] = "#% increased Flask Effect Duration", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_51994685", + ["text"] = "#% increased Flask Life Recovery rate", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_1412217137", + ["text"] = "#% increased Flask Mana Recovery rate", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_1073942215", + ["text"] = "#% increased Freeze Duration on Enemies", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_587431675", + ["text"] = "#% increased Global Critical Strike Chance", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_1310194496", + ["text"] = "#% increased Global Physical Damage", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_1086147743", + ["text"] = "#% increased Ignite Duration on Enemies", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_44972811", + ["text"] = "#% increased Life Regeneration rate", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_2231156303", + ["text"] = "#% increased Lightning Damage", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_683273571", + ["text"] = "#% increased Mana Cost of Skills during Effect", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_789117908", + ["text"] = "#% increased Mana Regeneration Rate", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_1002362373", + ["text"] = "#% increased Melee Damage", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_2137912951", + ["text"] = "#% increased Mine Damage", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_1896971621", + ["text"] = "#% increased Mine Throwing Speed", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_2250533757", + ["text"] = "#% increased Movement Speed", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_3182498570", + ["text"] = "#% increased Movement Speed during Effect", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_1177358866", + ["text"] = "#% increased Movement Speed if you haven't been Hit Recently", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_1509134228", + ["text"] = "#% increased Physical Damage", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_1839076647", + ["text"] = "#% increased Projectile Damage", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_3759663284", + ["text"] = "#% increased Projectile Speed", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_2161689853", + ["text"] = "#% increased Rarity of Items Dropped by Slain Rare or Unique Enemies", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_3917489142", + ["text"] = "#% increased Rarity of Items found", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_3251705960", + ["text"] = "#% increased Rarity of Items found during Effect", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_3668351662", + ["text"] = "#% increased Shock Duration on Enemies", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_737908626", + ["text"] = "#% increased Spell Critical Strike Chance", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_2974417149", + ["text"] = "#% increased Spell Damage", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_2517001139", + ["text"] = "#% increased Stun Duration on Enemies", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_3374165039", + ["text"] = "#% increased Totem Placement speed", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_2941585404", + ["text"] = "#% increased Trap Damage", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_118398748", + ["text"] = "#% increased Trap Throwing Speed", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_3037553757", + ["text"] = "#% increased Warcry Buff Effect", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_1316278494", + ["text"] = "#% increased Warcry Speed", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_2482852589", + ["text"] = "#% increased maximum Energy Shield", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_983749596", + ["text"] = "#% increased maximum Life", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_2748665614", + ["text"] = "#% increased maximum Mana", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_3999401129", + ["text"] = "#% of Cold Damage Leeched as Life", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_3324747104", + ["text"] = "#% of Damage Leeched as Life while Focused", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_497196601", + ["text"] = "#% of Damage Leeched by Enemy as Life while Focused", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_3824033729", + ["text"] = "#% of Damage Taken from Hits is Leeched as Life during Effect", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_603134774", + ["text"] = "#% of Damage from your Hits cannot be Reflected during Effect", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_1588539856", + ["text"] = "#% of Damage is taken from Mana before Life while Focused", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_472520716", + ["text"] = "#% of Damage taken Recouped as Mana", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_3244118730", + ["text"] = "#% of Evasion Rating is Regenerated as Life per second while Focused", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_3848282610", + ["text"] = "#% of Fire Damage Leeched as Life", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_80079005", + ["text"] = "#% of Lightning Damage Leeched as Life", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_3593843976", + ["text"] = "#% of Physical Attack Damage Leeched as Life", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_55876295", + ["text"] = "#% of Physical Attack Damage Leeched as Life (Local)", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_3237948413", + ["text"] = "#% of Physical Attack Damage Leeched as Mana", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_669069897", + ["text"] = "#% of Physical Attack Damage Leeched as Mana (Local)", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_2693705594", + ["text"] = "#% of Physical Attack Damage Leeched by Enemy as Life", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_2133341901", + ["text"] = "#% of Physical Damage Converted to Cold Damage", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_1533563525", + ["text"] = "#% of Physical Damage Converted to Fire Damage", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_3240769289", + ["text"] = "#% of Physical Damage Converted to Lightning Damage", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_3342989455", + ["text"] = "#% of Physical Damage from Hits taken as Fire Damage", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_425242359", + ["text"] = "#% of Physical Damage from Hits taken as Lightning Damage", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_1101403182", + ["text"] = "#% reduced Damage taken from Damage Over Time", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_1478653032", + ["text"] = "#% reduced Effect of Chill on you", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_3407849389", + ["text"] = "#% reduced Effect of Curses on you", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_3801067695", + ["text"] = "#% reduced Effect of Shock on you", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_2477381238", + ["text"] = "#% reduced Enemy Block Chance", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_832404842", + ["text"] = "#% reduced Enemy Stun Threshold with this Weapon", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_986397080", + ["text"] = "#% reduced Ignite Duration on you", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_474294393", + ["text"] = "#% reduced Mana Cost of Skills", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_2264295449", + ["text"] = "+# metres to Melee Strike Range", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_350598685", + ["text"] = "+# metres to Weapon Range", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_803737631", + ["text"] = "+# to Accuracy Rating", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_691932474", + ["text"] = "+# to Accuracy Rating (Local)", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_809229260", + ["text"] = "+# to Armour", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_3484657501", + ["text"] = "+# to Armour (Local)", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_2316658489", + ["text"] = "+# to Armour and Evasion Rating", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_1539825365", + ["text"] = "+# to Armour during Soul Gain Prevention", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_3261801346", + ["text"] = "+# to Dexterity", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_2300185227", + ["text"] = "+# to Dexterity and Intelligence", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_2144192055", + ["text"] = "+# to Evasion Rating", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_53045048", + ["text"] = "+# to Evasion Rating (Local)", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_328541901", + ["text"] = "+# to Intelligence", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_2551600084", + ["text"] = "+# to Level of Socketed AoE Gems", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_829382474", + ["text"] = "+# to Level of Socketed Melee Gems", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_2176571093", + ["text"] = "+# to Level of Socketed Projectile Gems", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_4154259475", + ["text"] = "+# to Level of Socketed Support Gems", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_3706959521", + ["text"] = "+# to Minimum Endurance Charges", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_658456881", + ["text"] = "+# to Minimum Frenzy Charges", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_1999711879", + ["text"] = "+# to Minimum Power Charges", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_4080418644", + ["text"] = "+# to Strength", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_538848803", + ["text"] = "+# to Strength and Dexterity", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_1535626285", + ["text"] = "+# to Strength and Intelligence", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_3736589033", + ["text"] = "+# to Total Mana Cost of Skills", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_1379411836", + ["text"] = "+# to all Attributes", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_3489782002", + ["text"] = "+# to maximum Energy Shield", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_4052037485", + ["text"] = "+# to maximum Energy Shield (Local)", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_922014346", + ["text"] = "+# to maximum Fortification while Focused", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_3299347043", + ["text"] = "+# to maximum Life", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_1050105434", + ["text"] = "+# to maximum Mana", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_966747987", + ["text"] = "+# to maximum number of Raised Zombies", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_1225383362", + ["text"] = "+# to maximum number of Skeletons", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_429867172", + ["text"] = "+# to maximum number of Summoned Totems", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_4253454700", + ["text"] = "+#% Chance to Block (Shields)", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_1702195217", + ["text"] = "+#% Chance to Block Attack Damage", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_2166444903", + ["text"] = "+#% Chance to Block Attack Damage while Dual Wielding", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_2266636761", + ["text"] = "+#% Chaos Resistance against Damage Over Time", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_3992439283", + ["text"] = "+#% Critical Strike Multiplier while a Rare or Unique Enemy is Nearby", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_3680664274", + ["text"] = "+#% chance to Suppress Spell Damage", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_492027537", + ["text"] = "+#% chance to Suppress Spell Damage", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_4055307827", + ["text"] = "+#% to Chaos Damage over Time Multiplier", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_1950806024", + ["text"] = "+#% to Cold Damage over Time Multiplier", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_4220027924", + ["text"] = "+#% to Cold Resistance", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_3393628375", + ["text"] = "+#% to Cold and Chaos Resistances", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_4277795662", + ["text"] = "+#% to Cold and Lightning Resistances", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_536929014", + ["text"] = "+#% to Critical Strike Multiplier if you've Shattered an Enemy Recently", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_3382807662", + ["text"] = "+#% to Fire Damage over Time Multiplier", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_3372524247", + ["text"] = "+#% to Fire Resistance", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_378817135", + ["text"] = "+#% to Fire and Chaos Resistances", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_2915988346", + ["text"] = "+#% to Fire and Cold Resistances", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_3441501978", + ["text"] = "+#% to Fire and Lightning Resistances", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_3556824919", + ["text"] = "+#% to Global Critical Strike Multiplier", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_1671376347", + ["text"] = "+#% to Lightning Resistance", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_3465022881", + ["text"] = "+#% to Lightning and Chaos Resistances", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_1653010703", + ["text"] = "+#% to Non-Ailment Chaos Damage over Time Multiplier", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_1314617696", + ["text"] = "+#% to Physical Damage over Time Multiplier", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_2016708976", + ["text"] = "+#% to Quality", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_3828613551", + ["text"] = "+#% to Quality of Socketed Gems", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_2901986750", + ["text"] = "+#% to all Elemental Resistances", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_2523334466", + ["text"] = "Adds # to # Chaos Damage if you've dealt a Critical Strike Recently", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_674553446", + ["text"] = "Adds # to # Chaos Damage to Attacks", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_385361774", + ["text"] = "Adds # to # Chaos Damage to Attacks against you", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_2387423236", + ["text"] = "Adds # to # Cold Damage", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_1037193709", + ["text"] = "Adds # to # Cold Damage (Local)", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_4067062424", + ["text"] = "Adds # to # Cold Damage to Attacks", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_617462123", + ["text"] = "Adds # to # Cold Damage to Attacks against you", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_3482587079", + ["text"] = "Adds # to # Cold Damage to Hits against you", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_2469416729", + ["text"] = "Adds # to # Cold Damage to Spells", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_321077055", + ["text"] = "Adds # to # Fire Damage", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_709508406", + ["text"] = "Adds # to # Fire Damage (Local)", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_1573130764", + ["text"] = "Adds # to # Fire Damage to Attacks", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_2127433866", + ["text"] = "Adds # to # Fire Damage to Attacks against you", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_1905034712", + ["text"] = "Adds # to # Fire Damage to Hits against you", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_1133016593", + ["text"] = "Adds # to # Fire Damage to Spells", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_1334060246", + ["text"] = "Adds # to # Lightning Damage", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_3336890334", + ["text"] = "Adds # to # Lightning Damage (Local)", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_1754445556", + ["text"] = "Adds # to # Lightning Damage to Attacks", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_2491363440", + ["text"] = "Adds # to # Lightning Damage to Attacks against you", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_2923069345", + ["text"] = "Adds # to # Lightning Damage to Hits against you", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_2831165374", + ["text"] = "Adds # to # Lightning Damage to Spells", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_1940865751", + ["text"] = "Adds # to # Physical Damage (Local)", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_3032590688", + ["text"] = "Adds # to # Physical Damage to Attacks", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_2093523445", + ["text"] = "Adds # to # Physical Damage to Attacks against you", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_1658124062", + ["text"] = "Attack Projectiles Return to you", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_3762412853", + ["text"] = "Attacks with this Weapon Penetrate #% Chaos Resistance", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_4064396395", + ["text"] = "Attacks with this Weapon Penetrate #% Elemental Resistances", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_2729804981", + ["text"] = "Banner Skills have #% increased Aura Effect", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_1859333175", + ["text"] = "Can have up to 3 Crafted Modifiers", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_4122424929", + ["text"] = "Cannot roll Attack Modifiers", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_1149326139", + ["text"] = "Cannot roll Caster Modifiers", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_238314698", + ["text"] = "Cannot roll Modifiers with Required Level above #", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_1178188780", + ["text"] = "Channelling Skills Cost +# Mana", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_2421446548", + ["text"] = "Channelling Skills have +# to Total Mana Cost", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_289885185", + ["text"] = "Chaos Skills have #% increased Skill Effect Duration", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_1435748744", + ["text"] = "Curse Skills have #% increased Skill Effect Duration", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_114734841", + ["text"] = "Flasks applied to you have #% increased Effect", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_3610263531", + ["text"] = "Focus has #% increased Cooldown Recovery Rate", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_2797971005", + ["text"] = "Gain # Life per Enemy Hit with Attacks", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_2915373966", + ["text"] = "Gain #% of Cold Damage as Extra Chaos Damage", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_1599775597", + ["text"] = "Gain #% of Fire Damage as Extra Chaos Damage", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_2402136583", + ["text"] = "Gain #% of Lightning Damage as Extra Chaos Damage", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_67280387", + ["text"] = "Gain #% of Maximum Life as Extra Maximum Energy Shield", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_2063695047", + ["text"] = "Gain #% of Non-Chaos Damage as extra Chaos Damage", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_3319896421", + ["text"] = "Gain #% of Physical Damage as Extra Chaos Damage", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_4126210832", + ["text"] = "Hits can't be Evaded", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_3909846940", + ["text"] = "Item drops on Death if Equipped by an Animated Guardian", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_3836017971", + ["text"] = "Light Radius is based on Energy Shield instead of Life", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_771127912", + ["text"] = "Lose # Life per second", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_838272676", + ["text"] = "Lose # Mana per second", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_3500359417", + ["text"] = "Minions Recover #% of their Life when you Focus", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_1589917703", + ["text"] = "Minions deal #% increased Damage", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_3375935924", + ["text"] = "Minions have #% increased Attack Speed", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_4000101551", + ["text"] = "Minions have #% increased Cast Speed", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_174664100", + ["text"] = "Minions have #% increased Movement Speed", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_770672621", + ["text"] = "Minions have #% increased maximum Life", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_1423639565", + ["text"] = "Minions have +#% to all Elemental Resistances", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_935326447", + ["text"] = "Moving while Bleeding doesn't cause you to take extra Damage", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_849152640", + ["text"] = "Non-Aura Skills Cost no Mana or Life while Focused", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_407482587", + ["text"] = "Non-Channelling Skills Cost +# Mana", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_677564538", + ["text"] = "Non-Channelling Skills have +# to Total Mana Cost", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_2879723104", + ["text"] = "Prefixes Cannot Be Changed", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_2067062068", + ["text"] = "Projectiles Pierce # additional Targets", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_2992263716", + ["text"] = "Recover #% of Mana and Energy Shield when you Focus", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_3767873853", + ["text"] = "Reflects # Physical Damage to Melee Attackers", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_1445684883", + ["text"] = "Reflects # to # Physical Damage to Attackers on Block", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_2238019079", + ["text"] = "Regenerate # Energy Shield per second while a Rare or Unique Enemy is Nearby", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_3325883026", + ["text"] = "Regenerate # Life per second", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_4291461939", + ["text"] = "Regenerate # Mana per second", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_836936635", + ["text"] = "Regenerate #% of Life per second", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_871270154", + ["text"] = "Regenerate #% of Life per second during Effect", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_3500911418", + ["text"] = "Regenerate #% of Life per second during any Flask Effect", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_3031766858", + ["text"] = "Shock nearby Enemies for # Seconds when you Focus", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_3181879507", + ["text"] = "Shock yourself for # Seconds when you Focus", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_3922006600", + ["text"] = "Socketed Gems are Supported by Level # Arrogance", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_1079239905", + ["text"] = "Socketed Gems are Supported by Level # Lifetap", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_3464137628", + ["text"] = "Suffixes Cannot Be Changed", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_1468606528", + ["text"] = "Trigger Level 10 Summon Spectral Wolf on Kill", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_2174134106", + ["text"] = "Warcries cannot Exert Travel Skills", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_1766730250", + ["text"] = "You are Immune to Ailments while Focused", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_30642521", + ["text"] = "You can apply # additional Curses", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_1572897579", + ["text"] = "You have Onslaught during Soul Gain Prevention", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_2022851697", + ["text"] = "You have Vaal Pact while Focused", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_1349659520", + ["text"] = "Your Critical Strike Chance is Lucky while Focused", + ["type"] = "crafted", + }, + }, + ["id"] = "crafted", + ["label"] = "Crafted", + }, + { + ["entries"] = { + { + ["id"] = "crucible.mod_59759", + ["text"] = "(13-17)% increased Spell Damage (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_1035", + ["text"] = "(18-22)% increased Spell Damage (Tier 4)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_50290", + ["text"] = "(23-26)% increased Spell Damage (Tier 5)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_55287", + ["text"] = "(3-7)% increased Spell Damage (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_56135", + ["text"] = "(8-12)% increased Spell Damage (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_62540", + ["text"] = "+0.2 metres to Weapon Range (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_55271", + ["text"] = "+0.2 seconds to Flameblast and Incinerate Cooldown Flameblast and Incinerate cannot inflict Elemental Ailments Flameblast starts with 2 additional Stages Incinerate starts with 2 additional Stages (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_21482", + ["text"] = "+0.3 metres to Weapon Range (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_64981", + ["text"] = "+0.4 seconds to Flameblast and Incinerate Cooldown Flameblast and Incinerate cannot inflict Elemental Ailments Flameblast starts with 4 additional Stages Incinerate starts with 4 additional Stages (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_5089", + ["text"] = "+0.4% to Critical Strike Chance (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_43608", + ["text"] = "+0.4% to Spell Critical Strike Chance (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_17606", + ["text"] = "+0.5% to Spell Critical Strike Chance (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_49170", + ["text"] = "+0.6% to Critical Strike Chance (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_28830", + ["text"] = "+0.6% to Spell Critical Strike Chance (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_35417", + ["text"] = "+0.8% to Critical Strike Chance (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_58547", + ["text"] = "+0.8% to Spell Critical Strike Chance (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_27289", + ["text"] = "+0.9% to Critical Strike Chance -500 to Accuracy Rating (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_3712", + ["text"] = "+0.9% to Spell Critical Strike Chance (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_24421", + ["text"] = "+1 to Level of Socketed Bow Gems (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_53520", + ["text"] = "+1 to Level of Socketed Dexterity Gems (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_63087", + ["text"] = "+1 to Level of Socketed Intelligence Gems (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_46570", + ["text"] = "+1 to Level of Socketed Melee Gems (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_49823", + ["text"] = "+1 to Level of Socketed Minion Gems (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_39532", + ["text"] = "+1 to Level of Socketed Spell Gems (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_27838", + ["text"] = "+1 to Level of Socketed Strength Gems (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_40522", + ["text"] = "+1 to Maximum Endurance Charges -1 to Maximum Frenzy Charges -1 to Maximum Power Charges (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_46646", + ["text"] = "+1 to Minimum Endurance Charges +1 to Minimum Frenzy Charges -1 to Maximum Power Charges (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_29627", + ["text"] = "+1 to Minimum Endurance Charges -1 to Maximum Frenzy Charges +1 to Minimum Power Charges (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_3897", + ["text"] = "+1 to maximum number of Summoned Golems 50% reduced Effect of Buffs granted by your Golems (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_53531", + ["text"] = "+1% to Spell Critical Strike Chance (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_42844", + ["text"] = "+1.2% to Critical Strike Chance -500 to Accuracy Rating (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_53521", + ["text"] = "+1.5% to Critical Strike Chance -500 to Accuracy Rating (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_7667", + ["text"] = "+10 to maximum Energy Shield (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_35885", + ["text"] = "+10% Chance to Block Cannot Block Spell Damage (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_31334", + ["text"] = "+10% Chance to Block You take 10% of Damage from Blocked Hits (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_55654", + ["text"] = "+10% to Wave of Conviction Damage over Time Multiplier per 0.1 seconds of Duration expired (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_31842", + ["text"] = "+10% to all Elemental Resistances -13% to Chaos Resistance (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_55018", + ["text"] = "+10% to all Elemental Resistances -4% Chance to Block (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_61894", + ["text"] = "+100 to Armour 10% increased Damage taken from Damage Over Time (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_56227", + ["text"] = "+100 to Evasion Rating 20% increased Duration of Ailments on You (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_32254", + ["text"] = "+100 to Evasion Rating 25% reduced Stun and Block Recovery (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_10955", + ["text"] = "+100% to Critical Strike Multiplier for Spell Damage -2% to Spell Critical Strike Chance (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_6098", + ["text"] = "+12 to maximum Energy Shield 8% increased maximum Mana (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_10740", + ["text"] = "+12% Chance to Block Cannot Block Spell Damage (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_10653", + ["text"] = "+12% Chance to Block You take 10% of Damage from Blocked Hits (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_8619", + ["text"] = "+12% to Chaos Damage over Time Multiplier -15% to Chaos Resistance (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_35724", + ["text"] = "+12% to Cold Damage over Time Multiplier -15% to Cold Resistance (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_57959", + ["text"] = "+12% to Fire Damage over Time Multiplier -15% to Fire Resistance (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_42365", + ["text"] = "+12% to Physical Damage over Time Multiplier Hits against you Overwhelm 6% of Physical Damage Reduction (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_36830", + ["text"] = "+12% to Quality (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_2115", + ["text"] = "+12% to all Elemental Resistances -13% to Chaos Resistance (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_54378", + ["text"] = "+12% to all Elemental Resistances -4% Chance to Block (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_4318", + ["text"] = "+120 to Dexterity Gain no inherent bonuses from Dexterity (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_48986", + ["text"] = "+120 to Intelligence Gain no inherent bonuses from Intelligence (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_2451", + ["text"] = "+120 to Strength Gain no inherent bonuses from Strength (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_40572", + ["text"] = "+125 to Armour 10% increased Damage taken from Damage Over Time (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_19012", + ["text"] = "+125 to Evasion Rating 20% increased Duration of Ailments on You (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_16486", + ["text"] = "+125 to Evasion Rating 25% reduced Stun and Block Recovery (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_21582", + ["text"] = "+13% to Chaos Resistance Minions deal 1 to 3 additional Chaos Damage (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_26937", + ["text"] = "+13% to Chaos Resistance Minions deal 11 to 17 additional Chaos Damage (Tier 4)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_46630", + ["text"] = "+13% to Chaos Resistance Minions deal 22 to 33 additional Chaos Damage (Tier 5)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_30096", + ["text"] = "+13% to Chaos Resistance Minions deal 3 to 6 additional Chaos Damage (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_5082", + ["text"] = "+13% to Chaos Resistance Minions deal 7 to 10 additional Chaos Damage (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_55762", + ["text"] = "+14% to all Elemental Resistances -13% to Chaos Resistance (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_34456", + ["text"] = "+14% to all Elemental Resistances -4% Chance to Block (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_23156", + ["text"] = "+15 to maximum Energy Shield 8% increased maximum Mana (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_64218", + ["text"] = "+15 to maximum Energy Shield (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_29513", + ["text"] = "+15 to maximum Life 20% increased Stun Threshold (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_23530", + ["text"] = "+15 to maximum Life Recover 1% of Life on Kill (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_13514", + ["text"] = "+15 to maximum Life Regenerate 0.4% of Life per second (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_31198", + ["text"] = "+15% to Vortex Critical Strike Chance when Cast on Frostbolt (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_47483", + ["text"] = "+15% to Wave of Conviction Damage over Time Multiplier per 0.1 seconds of Duration expired (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_20722", + ["text"] = "+150 to Accuracy Rating (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_19595", + ["text"] = "+150 to Armour 10% increased Damage taken from Damage Over Time (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_58827", + ["text"] = "+150 to Evasion Rating 20% increased Duration of Ailments on You (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_21854", + ["text"] = "+150 to Evasion Rating 25% reduced Stun and Block Recovery (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_42622", + ["text"] = "+16% to Chaos Damage over Time Multiplier -15% to Chaos Resistance (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_35512", + ["text"] = "+16% to Cold Damage over Time Multiplier -15% to Cold Resistance (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_30604", + ["text"] = "+16% to Fire Damage over Time Multiplier -15% to Fire Resistance (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_29824", + ["text"] = "+16% to Physical Damage over Time Multiplier Hits against you Overwhelm 6% of Physical Damage Reduction (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_19741", + ["text"] = "+16% to Quality (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_37197", + ["text"] = "+2 to Level of Socketed Melee Gems (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_54268", + ["text"] = "+2 to Level of Socketed Minion Gems (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_23287", + ["text"] = "+2 to Level of Socketed Spell Gems (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_17694", + ["text"] = "+2 to Maximum Endurance Charges -2 to Maximum Frenzy Charges -2 to Maximum Power Charges (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_26641", + ["text"] = "+2 to Minimum Endurance Charges +2 to Minimum Frenzy Charges -2 to Maximum Power Charges (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_35437", + ["text"] = "+2 to Minimum Endurance Charges -2 to Maximum Frenzy Charges +2 to Minimum Power Charges (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_23749", + ["text"] = "+2 to maximum number of Summoned Golems 100% reduced Effect of Buffs granted by your Golems (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_50957", + ["text"] = "+2% to maximum Chance to Block Attack Damage You take 5% of Damage from Blocked Hits (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_32209", + ["text"] = "+2% to maximum Chance to Block Spell Damage You take 5% of Damage from Blocked Hits (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_12422", + ["text"] = "+20 to Armour +2% Chance to Block (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_41721", + ["text"] = "+20 to Armour (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_3583", + ["text"] = "+20 to Evasion Rating (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_63747", + ["text"] = "+20 to maximum Energy Shield (Tier 4)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_32340", + ["text"] = "+20 to maximum Life 20% increased Stun Threshold (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_29491", + ["text"] = "+20 to maximum Life Recover 1% of Life on Kill (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_2200", + ["text"] = "+20 to maximum Life Regenerate 0.4% of Life per second (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_11828", + ["text"] = "+20% chance to Suppress Spell Damage -15% chance to Suppress Spell Damage if you've Suppressed Spell Damage Recently (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_2132", + ["text"] = "+20% chance to be Poisoned 100% chance to Avoid Bleeding (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_58075", + ["text"] = "+20% chance to be Poisoned 60% chance to Avoid Bleeding (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_31159", + ["text"] = "+24% to Chaos Damage over Time Multiplier -30% to Chaos Resistance (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_53003", + ["text"] = "+24% to Cold Damage over Time Multiplier -30% to Cold Resistance (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_21230", + ["text"] = "+24% to Fire Damage over Time Multiplier -30% to Fire Resistance (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_47932", + ["text"] = "+24% to Physical Damage over Time Multiplier Hits against you Overwhelm 12% of Physical Damage Reduction (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_21450", + ["text"] = "+25 to maximum Energy Shield (Tier 5)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_50606", + ["text"] = "+25 to maximum Life 20% increased Stun Threshold (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_65097", + ["text"] = "+25 to maximum Life Recover 1% of Life on Kill (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_37571", + ["text"] = "+25 to maximum Life Regenerate 0.4% of Life per second (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_7830", + ["text"] = "+25% chance to Block Projectile Attack Damage -20% chance to Block Projectile Spell Damage (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_32213", + ["text"] = "+25% chance to Suppress Spell Damage -18% chance to Suppress Spell Damage if you've Suppressed Spell Damage Recently (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_38596", + ["text"] = "+25% to Vortex Critical Strike Chance when Cast on Frostbolt (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_42290", + ["text"] = "+250 to Accuracy Rating (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_39701", + ["text"] = "+28 to maximum Energy Shield 25% reduced Energy Shield Recharge Rate (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_48803", + ["text"] = "+28 to maximum Energy Shield 25% reduced Mana Regeneration Rate (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_47244", + ["text"] = "+3 Wishes per Ancient Fish caught (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_62967", + ["text"] = "+3% Chance to Block (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_36976", + ["text"] = "+3% to maximum Chance to Block Attack Damage You take 5% of Damage from Blocked Hits (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_7741", + ["text"] = "+3% to maximum Chance to Block Spell Damage You take 5% of Damage from Blocked Hits (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_43004", + ["text"] = "+3% to maximum Chaos Resistance -1% to all maximum Elemental Resistances (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_54128", + ["text"] = "+3% to maximum Cold Resistance -2% to maximum Lightning Resistance (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_40960", + ["text"] = "+3% to maximum Fire Resistance -2% to maximum Cold Resistance (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_42954", + ["text"] = "+3% to maximum Fire Resistance -2% to maximum Lightning Resistance (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_7643", + ["text"] = "+30 to Armour +2% Chance to Block (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_8191", + ["text"] = "+30 to maximum Life (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_3655", + ["text"] = "+30% chance to Block Projectile Attack Damage -20% chance to Block Projectile Spell Damage (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_46096", + ["text"] = "+30% to Cold Resistance -20% to Lightning Resistance (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_48170", + ["text"] = "+30% to Fire Resistance -20% to Cold Resistance (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_34076", + ["text"] = "+30% to Fire Resistance -20% to Lightning Resistance (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_12773", + ["text"] = "+32% to Chaos Damage over Time Multiplier -30% to Chaos Resistance (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_39561", + ["text"] = "+32% to Cold Damage over Time Multiplier -30% to Cold Resistance (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_52413", + ["text"] = "+32% to Fire Damage over Time Multiplier -30% to Fire Resistance (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_36838", + ["text"] = "+32% to Physical Damage over Time Multiplier Hits against you Overwhelm 12% of Physical Damage Reduction (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_22147", + ["text"] = "+34 to maximum Energy Shield 25% reduced Energy Shield Recharge Rate (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_14174", + ["text"] = "+34 to maximum Energy Shield 25% reduced Mana Regeneration Rate (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_43217", + ["text"] = "+35 to Armour (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_31364", + ["text"] = "+35 to Evasion Rating (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_18092", + ["text"] = "+35 to maximum Life (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_41211", + ["text"] = "+350 to Accuracy Rating (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_4706", + ["text"] = "+36% to Cold Resistance -20% to Lightning Resistance (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_46255", + ["text"] = "+36% to Fire Resistance -20% to Cold Resistance (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_64548", + ["text"] = "+36% to Fire Resistance -20% to Lightning Resistance (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_53291", + ["text"] = "+4% Chance to Block (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_17841", + ["text"] = "+4% chance to Suppress Spell Damage +20 to Evasion Rating (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_11505", + ["text"] = "+4% chance to Suppress Spell Damage +30 to Evasion Rating (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_26176", + ["text"] = "+4% chance to Suppress Spell Damage +40 to Evasion Rating (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_40971", + ["text"] = "+4% to Critical Strike Chance Your Critical Strikes do not deal extra Damage (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_64170", + ["text"] = "+4% to maximum Chaos Resistance -1% to all maximum Elemental Resistances (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_56323", + ["text"] = "+4% to maximum Cold Resistance -2% to maximum Lightning Resistance (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_8586", + ["text"] = "+4% to maximum Fire Resistance -2% to maximum Cold Resistance (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_38786", + ["text"] = "+4% to maximum Fire Resistance -2% to maximum Lightning Resistance (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_56331", + ["text"] = "+40 to Armour +2% Chance to Block (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_39152", + ["text"] = "+40 to maximum Energy Shield 25% reduced Energy Shield Recharge Rate (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_1235", + ["text"] = "+40 to maximum Energy Shield 25% reduced Mana Regeneration Rate (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_12317", + ["text"] = "+40 to maximum Life (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_31994", + ["text"] = "+40% to Critical Strike Multiplier for Spell Damage -2% to Spell Critical Strike Chance (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_48151", + ["text"] = "+42% to Cold Resistance -20% to Lightning Resistance (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_1939", + ["text"] = "+42% to Fire Resistance -20% to Cold Resistance (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_55594", + ["text"] = "+42% to Fire Resistance -20% to Lightning Resistance (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_62365", + ["text"] = "+45 to maximum Life (Tier 4)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_30804", + ["text"] = "+5 to maximum Energy Shield (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_49101", + ["text"] = "+5% Chance to Block (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_8458", + ["text"] = "+5% to Critical Strike Chance Your Critical Strikes do not deal extra Damage (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_35119", + ["text"] = "+50 to Armour (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_36975", + ["text"] = "+50 to Evasion Rating (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_50864", + ["text"] = "+50 to maximum Life (Tier 5)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_34073", + ["text"] = "+50% to Critical Strike Multiplier for Spell Damage -2% to Spell Critical Strike Chance (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_16745", + ["text"] = "+6% to Critical Strike Chance Your Critical Strikes do not deal extra Damage (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_16930", + ["text"] = "+60 to Dexterity Gain no inherent bonuses from Dexterity (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_51377", + ["text"] = "+60 to Intelligence Gain no inherent bonuses from Intelligence (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_18252", + ["text"] = "+60 to Strength Gain no inherent bonuses from Strength (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_22067", + ["text"] = "+60 to maximum Life -5% to all Elemental Resistances (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_21455", + ["text"] = "+60% to Critical Strike Multiplier for Spell Damage -2% to Spell Critical Strike Chance (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_22364", + ["text"] = "+60% to Critical Strike Multiplier for Spell Damage -2% to Spell Critical Strike Chance (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_35850", + ["text"] = "+65 to Armour (Tier 4)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_45575", + ["text"] = "+65 to Evasion Rating (Tier 4)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_28602", + ["text"] = "+7% to Chaos Resistance Minions deal 1 to 3 additional Chaos Damage (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_36962", + ["text"] = "+7% to Chaos Resistance Minions deal 13 to 20 additional Chaos Damage (Tier 5)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_1553", + ["text"] = "+7% to Chaos Resistance Minions deal 2 to 4 additional Chaos Damage (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_9613", + ["text"] = "+7% to Chaos Resistance Minions deal 4 to 6 additional Chaos Damage (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_40925", + ["text"] = "+7% to Chaos Resistance Minions deal 6 to 10 additional Chaos Damage (Tier 4)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_51677", + ["text"] = "+75 to maximum Life -5% to all Elemental Resistances (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_3453", + ["text"] = "+8% Chance to Block Cannot Block Spell Damage (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_61910", + ["text"] = "+8% Chance to Block You take 10% of Damage from Blocked Hits (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_363", + ["text"] = "+8% to Quality (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_59252", + ["text"] = "+80 to Armour (Tier 5)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_8354", + ["text"] = "+80 to Dexterity Gain no inherent bonuses from Dexterity (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_39768", + ["text"] = "+80 to Evasion Rating (Tier 5)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_10817", + ["text"] = "+80 to Intelligence Gain no inherent bonuses from Intelligence (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_4210", + ["text"] = "+80 to Strength Gain no inherent bonuses from Strength (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_14915", + ["text"] = "+80 to maximum Life -5% to all Elemental Resistances (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_56678", + ["text"] = "+80% to Critical Strike Multiplier for Spell Damage -2% to Spell Critical Strike Chance (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_64807", + ["text"] = "+9 to maximum Energy Shield 8% increased maximum Mana (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_38614", + ["text"] = "+90 to Dexterity Gain no inherent bonuses from Dexterity (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_54004", + ["text"] = "+90 to Intelligence Gain no inherent bonuses from Intelligence (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_8883", + ["text"] = "+90 to Strength Gain no inherent bonuses from Strength (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_65149", + ["text"] = "-0.5% to Critical Strike Chance Allocates Adder's Touch (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_46754", + ["text"] = "-0.5% to Critical Strike Chance Allocates Backstabbing (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_55042", + ["text"] = "-0.5% to Critical Strike Chance Allocates Blacksmith's Clout (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_25501", + ["text"] = "-0.5% to Critical Strike Chance Allocates Bone Breaker (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_38172", + ["text"] = "-0.5% to Critical Strike Chance Allocates Disintegration (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_37831", + ["text"] = "-0.5% to Critical Strike Chance Allocates Elder Power (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_61445", + ["text"] = "-0.5% to Critical Strike Chance Allocates Flaying (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_49729", + ["text"] = "-0.5% to Critical Strike Chance Allocates From the Shadows (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_65074", + ["text"] = "-0.5% to Critical Strike Chance Allocates Fusillade (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_2954", + ["text"] = "-0.5% to Critical Strike Chance Allocates Galvanic Hammer (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_5767", + ["text"] = "-0.5% to Critical Strike Chance Allocates Nightstalker (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_59077", + ["text"] = "-0.5% to Critical Strike Chance Allocates Pain Forger (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_28231", + ["text"] = "-0.5% to Critical Strike Chance Allocates Prism Weave (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_60684", + ["text"] = "-0.5% to Critical Strike Chance Allocates Ribcage Crusher (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_52612", + ["text"] = "-0.5% to Critical Strike Chance Allocates Skull Cracking (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_45449", + ["text"] = "-0.5% to Critical Strike Chance Allocates Spinecruncher (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_58090", + ["text"] = "-0.5% to Critical Strike Chance Allocates Tempest Blast (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_36062", + ["text"] = "-0.5% to Critical Strike Chance Allocates Wandslinger (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_34416", + ["text"] = "-1 to Maximum Endurance Charges +1 to Maximum Frenzy Charges -1 to Maximum Power Charges (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_59397", + ["text"] = "-1 to Maximum Endurance Charges +1 to Minimum Frenzy Charges +1 to Minimum Power Charges (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_56259", + ["text"] = "-1 to Maximum Endurance Charges -1 to Maximum Frenzy Charges +1 to Maximum Power Charges (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_34672", + ["text"] = "-1 to Maximum Endurance Charges 12% increased Area of Effect per Endurance Charge (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_55768", + ["text"] = "-1 to Maximum Endurance Charges 8% increased Area of Effect per Endurance Charge (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_55818", + ["text"] = "-1 to Maximum Endurance, Frenzy and Power Charges +1 to Minimum Endurance, Frenzy and Power Charges (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_19972", + ["text"] = "-1 to Maximum Endurance, Frenzy and Power Charges +2 to Minimum Endurance, Frenzy and Power Charges (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_39284", + ["text"] = "-1 to Maximum Power Charges 4% increased Cooldown Recovery Rate per Power Charge (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_21541", + ["text"] = "-1 to Maximum Power Charges 6% increased Cooldown Recovery Rate per Power Charge (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_5183", + ["text"] = "-1 to maximum number of Summoned Golems 75% increased Effect of Buffs granted by your Golems (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_48398", + ["text"] = "-13% to Chaos Resistance Attacks with this Weapon Penetrate 10% Chaos Resistance (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_47276", + ["text"] = "-13% to Chaos Resistance Attacks with this Weapon Penetrate 8% Chaos Resistance (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_36822", + ["text"] = "-2 to Maximum Endurance Charges +2 to Maximum Frenzy Charges -2 to Maximum Power Charges (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_44116", + ["text"] = "-2 to Maximum Endurance Charges +2 to Minimum Frenzy Charges +2 to Minimum Power Charges (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_30827", + ["text"] = "-2 to Maximum Endurance Charges -2 to Maximum Frenzy Charges +2 to Maximum Power Charges (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_1679", + ["text"] = "-2 to maximum number of Summoned Golems 150% increased Effect of Buffs granted by your Golems (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_28596", + ["text"] = "-2% to maximum Cold Resistance +3% to maximum Lightning Resistance (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_12450", + ["text"] = "-2% to maximum Cold Resistance +4% to maximum Lightning Resistance (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_48755", + ["text"] = "-2% to maximum Fire Resistance +3% to maximum Cold Resistance (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_32353", + ["text"] = "-2% to maximum Fire Resistance +3% to maximum Lightning Resistance (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_1707", + ["text"] = "-2% to maximum Fire Resistance +4% to maximum Cold Resistance (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_43668", + ["text"] = "-2% to maximum Fire Resistance +4% to maximum Lightning Resistance (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_17932", + ["text"] = "-20% chance to Block Projectile Attack Damage +25% chance to Block Projectile Spell Damage (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_6942", + ["text"] = "-20% chance to Block Projectile Attack Damage +30% chance to Block Projectile Spell Damage (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_39456", + ["text"] = "-20% to Cold Resistance +30% to Lightning Resistance (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_33348", + ["text"] = "-20% to Cold Resistance +36% to Lightning Resistance (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_55088", + ["text"] = "-20% to Cold Resistance +42% to Lightning Resistance (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_26425", + ["text"] = "-20% to Fire Resistance +30% to Cold Resistance (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_48524", + ["text"] = "-20% to Fire Resistance +30% to Lightning Resistance (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_63721", + ["text"] = "-20% to Fire Resistance +36% to Cold Resistance (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_4743", + ["text"] = "-20% to Fire Resistance +36% to Lightning Resistance (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_26553", + ["text"] = "-20% to Fire Resistance +42% to Cold Resistance (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_56747", + ["text"] = "-20% to Fire Resistance +42% to Lightning Resistance (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_43899", + ["text"] = "-3% Chance to Block Allocates Aggressive Bastion (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_47301", + ["text"] = "-3% Chance to Block Allocates Arcane Sanctuary (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_17627", + ["text"] = "-3% Chance to Block Allocates Command of Steel (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_60620", + ["text"] = "-3% Chance to Block Allocates Defiance (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_40939", + ["text"] = "-3% Chance to Block Allocates Deflection (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_11912", + ["text"] = "-3% Chance to Block Allocates Retaliation (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_57539", + ["text"] = "-3% Chance to Block Allocates Safeguard (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_45176", + ["text"] = "-3% Chance to Block Allocates Sanctuary (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_4763", + ["text"] = "-3% Chance to Block Allocates Testudo (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_28638", + ["text"] = "-3% to Critical Strike Chance +100% to Global Critical Strike Multiplier (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_24417", + ["text"] = "-3% to Critical Strike Chance +40% to Global Critical Strike Multiplier (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_47514", + ["text"] = "-3% to Critical Strike Chance +50% to Global Critical Strike Multiplier (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_53788", + ["text"] = "-3% to Critical Strike Chance +60% to Global Critical Strike Multiplier (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_34604", + ["text"] = "-3% to Critical Strike Chance +60% to Global Critical Strike Multiplier (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_55592", + ["text"] = "-3% to Critical Strike Chance +80% to Global Critical Strike Multiplier (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_60659", + ["text"] = "-30% to Critical Strike Multiplier for Spell Damage +1% to Spell Critical Strike Chance (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_41102", + ["text"] = "-30% to Critical Strike Multiplier for Spell Damage +1.25% to Spell Critical Strike Chance (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_47468", + ["text"] = "-30% to Critical Strike Multiplier for Spell Damage +1.5% to Spell Critical Strike Chance (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_49071", + ["text"] = "-5% to Critical Strike Chance Hits can't be Evaded (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_54555", + ["text"] = "-5% to amount of Suppressed Spell Damage Prevented +20% chance to Suppress Spell Damage (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_45517", + ["text"] = "-5% to amount of Suppressed Spell Damage Prevented +25% chance to Suppress Spell Damage (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_64699", + ["text"] = "-5% to maximum Chaos Resistance +1% to all maximum Elemental Resistances (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_57187", + ["text"] = "-5% to maximum Chaos Resistance +2% to all maximum Elemental Resistances (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_48210", + ["text"] = "-6% to all Elemental Resistances +19% to Chaos Resistance (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_37612", + ["text"] = "-6% to all Elemental Resistances +23% to Chaos Resistance (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_3023", + ["text"] = "-6% to all Elemental Resistances +27% to Chaos Resistance (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_52168", + ["text"] = "-60% to Critical Strike Multiplier for Spell Damage +1.8% to Spell Critical Strike Chance (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_34915", + ["text"] = "-60% to Critical Strike Multiplier for Spell Damage +2.2% to Spell Critical Strike Chance (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_38785", + ["text"] = "-60% to Critical Strike Multiplier for Spell Damage +2.6% to Spell Critical Strike Chance (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_13134", + ["text"] = "-8% to all Elemental Resistances Attacks with this Weapon Penetrate 10% Elemental Resistances (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_58446", + ["text"] = "-8% to all Elemental Resistances Attacks with this Weapon Penetrate 8% Elemental Resistances (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_46610", + ["text"] = "0.5% of Spell Damage Leeched as Energy Shield 30% increased total Recovery per second from Energy Shield Leech (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_41746", + ["text"] = "0.8% of Spell Damage Leeched as Energy Shield 30% increased total Recovery per second from Energy Shield Leech (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_44243", + ["text"] = "1% of Spell Damage Leeched as Energy Shield 60% increased total Recovery per second from Energy Shield Leech (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_9278", + ["text"] = "1.6% of Spell Damage Leeched as Energy Shield 60% increased total Recovery per second from Energy Shield Leech (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_46204", + ["text"] = "10% Chance to Block Spell Damage -5% Chance to Block (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_45943", + ["text"] = "10% Chance to Block Spell Damage You take 10% of Damage from Blocked Hits (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_38841", + ["text"] = "10% chance to Sap Enemies Cannot inflict Shock (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_5815", + ["text"] = "10% chance to Scorch Enemies Cannot inflict Ignite (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_24721", + ["text"] = "10% chance to Steal Power, Frenzy, and Endurance Charges on Hit (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_19663", + ["text"] = "10% chance to deal Double Damage if Strength is below 100 (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_38951", + ["text"] = "10% chance to gain Phasing for 4 seconds on Kill Buffs on you expire 10% faster (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_29110", + ["text"] = "10% chance to gain Unholy Might for 4 seconds on Kill Buffs on you expire 10% faster (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_47746", + ["text"] = "10% chance to inflict Brittle Cannot inflict Freeze or Chill (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_3992", + ["text"] = "10% chance to inflict Withered for 2 seconds on Hit 25% chance to be Withered for 2 seconds when you take Chaos Damage from a Hit (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_64266", + ["text"] = "10% chance to inflict Withered for 2 seconds on Hit 50% chance to be Withered for 2 seconds when you take Chaos Damage from a Hit (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_11316", + ["text"] = "10% increased Attack Speed (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_13421", + ["text"] = "10% increased Damage over Time 15% reduced Duration of Ailments on You (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_26674", + ["text"] = "10% increased Damage over Time 5% increased Skill Effect Duration (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_4268", + ["text"] = "10% increased Damage over Time (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_64265", + ["text"] = "10% increased Damage per Curse on you 25% increased Effect of Curses on you (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_4740", + ["text"] = "10% increased Dexterity +160 to Accuracy Rating (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_35595", + ["text"] = "10% increased Dexterity +240 to Accuracy Rating (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_12761", + ["text"] = "10% increased Dexterity +80 to Accuracy Rating (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_40721", + ["text"] = "10% increased Dexterity 10% increased Intelligence (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_2302", + ["text"] = "10% increased Explicit Attribute Modifier magnitudes (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_45049", + ["text"] = "10% increased Explicit Caster Damage Modifier magnitudes (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_932", + ["text"] = "10% increased Explicit Critical Modifier magnitudes (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_8402", + ["text"] = "10% increased Explicit Defence Modifier magnitudes (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_53122", + ["text"] = "10% increased Explicit Elemental Damage Modifier magnitudes (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_27218", + ["text"] = "10% increased Explicit Life Modifier magnitudes (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_51812", + ["text"] = "10% increased Explicit Mana Modifier magnitudes (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_44018", + ["text"] = "10% increased Explicit Minion Modifier magnitudes (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_25650", + ["text"] = "10% increased Explicit Physical and Chaos Damage Modifier magnitudes (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_47909", + ["text"] = "10% increased Explicit Resistance Modifier magnitudes (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_46633", + ["text"] = "10% increased Explicit Speed Modifier magnitudes (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_13895", + ["text"] = "10% increased Impale Effect Attack Hits against you have 15% chance to Impale (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_31754", + ["text"] = "10% increased Maximum total Energy Shield Recovery per second from Leech (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_13565", + ["text"] = "10% increased Maximum total Life Recovery per second from Leech (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_37782", + ["text"] = "10% increased Maximum total Mana Recovery per second from Leech (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_32432", + ["text"] = "10% increased Poison Duration 15% increased Poison Duration on you (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_19412", + ["text"] = "10% increased Spell Damage 10% increased maximum Energy Shield (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_9319", + ["text"] = "10% increased Spell Damage 10% increased maximum Mana (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_45521", + ["text"] = "10% increased Strength 10% increased Dexterity (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_24748", + ["text"] = "10% increased Strength 10% increased Intelligence (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_26933", + ["text"] = "10% increased effect of Offerings Offering Skills have 15% reduced Duration (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_16617", + ["text"] = "10% increased maximum Energy Shield Minions deal 10% increased Damage (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_232", + ["text"] = "10% increased maximum Energy Shield Minions deal 13% increased Damage (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_59080", + ["text"] = "10% increased maximum Energy Shield Minions deal 17% increased Damage (Tier 4)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_33234", + ["text"] = "10% increased maximum Energy Shield Minions deal 20% increased Damage (Tier 5)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_48424", + ["text"] = "10% increased maximum Energy Shield Minions deal 7% increased Damage (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_21346", + ["text"] = "10% increased maximum Mana Minions deal 10% increased Damage (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_26923", + ["text"] = "10% increased maximum Mana Minions deal 13% increased Damage (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_27112", + ["text"] = "10% increased maximum Mana Minions deal 17% increased Damage (Tier 4)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_50122", + ["text"] = "10% increased maximum Mana Minions deal 20% increased Damage (Tier 5)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_53895", + ["text"] = "10% increased maximum Mana Minions deal 7% increased Damage (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_10092", + ["text"] = "10% more Cast Speed (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_39700", + ["text"] = "10% of Hexblast and Doom Blast Overkill Damage is Leeched as Life (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_11829", + ["text"] = "10% reduced Area of Effect 25% increased Area of Effect if you've Killed at least 5 Enemies Recently (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_12748", + ["text"] = "10% reduced Area of Effect 30% increased Area of Effect if you've Killed at least 5 Enemies Recently (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_35515", + ["text"] = "10% reduced Effect of your Curses Your Curses have 25% increased Effect if 50% of Curse Duration expired (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_52202", + ["text"] = "10% reduced Effect of your Curses Your Curses have 30% increased Effect if 50% of Curse Duration expired (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_19622", + ["text"] = "10% reduced Minion Duration Minions have 15% increased Cooldown Recovery Rate (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_36321", + ["text"] = "10% reduced Minion Duration Minions have 25% increased Cooldown Recovery Rate (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_5636", + ["text"] = "10% reduced Movement Speed 40% increased Cooldown Recovery Rate of Travel Skills (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_13587", + ["text"] = "10% reduced Movement Speed 60% increased Cooldown Recovery Rate of Travel Skills (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_31146", + ["text"] = "10% reduced Skill Effect Duration 10% increased Cooldown Recovery Rate (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_58058", + ["text"] = "10% reduced Skill Effect Duration 15% increased Cooldown Recovery Rate (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_13068", + ["text"] = "10% reduced Skill Effect Duration 20% increased Cooldown Recovery Rate (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_58671", + ["text"] = "10% reduced Skill Effect Duration 25% increased Cooldown Recovery Rate (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_54731", + ["text"] = "10% reduced effect of Offerings Offering Skills have 25% increased Duration (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_2025", + ["text"] = "10% reduced effect of Offerings Offering Skills have 40% increased Duration (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_57", + ["text"] = "10% reduced maximum Life 12% increased Life Recovery rate (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_15937", + ["text"] = "10% reduced maximum Life 16% increased Life Recovery rate (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_53218", + ["text"] = "10% reduced maximum Life Minions deal 14 to 22 additional Chaos Damage (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_30327", + ["text"] = "10% reduced maximum Life Minions deal 24 to 37 additional Chaos Damage (Tier 4)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_54863", + ["text"] = "10% reduced maximum Life Minions deal 4 to 7 additional Chaos Damage (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_10098", + ["text"] = "10% reduced maximum Life Minions deal 47 to 71 additional Chaos Damage (Tier 5)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_38309", + ["text"] = "10% reduced maximum Life Minions deal 7 to 12 additional Chaos Damage (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_26428", + ["text"] = "10% reduced maximum Mana 12% increased Mana Recovery rate (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_22544", + ["text"] = "10% reduced maximum Mana 16% increased Mana Recovery rate (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_52552", + ["text"] = "100% chance to Avoid Elemental Ailments while on Consecrated Ground 50% reduced Effect of Consecrated Ground you create (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_8132", + ["text"] = "100% chance to Avoid being Frozen +20% chance to be Ignited (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_17900", + ["text"] = "100% chance to Avoid being Ignited +20% chance to be Shocked (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_35743", + ["text"] = "100% chance to Avoid being Poisoned 50% increased Bleed Duration on you (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_29514", + ["text"] = "100% chance to Avoid being Shocked +20% chance to be Frozen (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_31638", + ["text"] = "100% increased Endurance, Frenzy and Power Charge Duration (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_26301", + ["text"] = "100% increased Reeling Stability (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_61011", + ["text"] = "100% increased Reflected Elemental Damage taken 100% reduced Reflected Physical Damage taken (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_18385", + ["text"] = "100% increased Spark Duration when Cast by a Totem while you also have a Lightning Tendrils Spell Totem Lightning Tendrils releases 2 fewer Pulses between Stronger Pulses when Cast by a Totem while you also have a Spark Spell Totem (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_28185", + ["text"] = "100% increased Stun Threshold 50% increased Stun Duration on you (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_11137", + ["text"] = "100% increased Stun and Block Recovery 25% reduced Stun Threshold (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_292", + ["text"] = "100% more Frozen Legion and General's Cry Cooldown Recovery Rate Frozen Sweep deals 30% less Damage General's Cry has -2 to maximum number of Mirage Warriors (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_43045", + ["text"] = "100% of Exsanguinate and Reap Physical Damage Converted to Fire Damage Exsanguinate debuffs deal Fire Damage per second instead of Physical Damage per second Reap debuffs deal Fire Damage per second instead of Physical Damage per second (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_14579", + ["text"] = "100% reduced Reflected Elemental Damage taken 100% increased Reflected Physical Damage taken (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_6568", + ["text"] = "11% increased Damage over Time 10% increased Skill Effect Duration (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_43198", + ["text"] = "11% increased Damage over Time 25% reduced Duration of Ailments on You (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_43893", + ["text"] = "11% increased Spell Damage 20% increased maximum Energy Shield (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_33931", + ["text"] = "11% increased Spell Damage 20% increased maximum Mana (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_61128", + ["text"] = "12% Chance to Block Spell Damage -5% Chance to Block (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_13479", + ["text"] = "12% Chance to Block Spell Damage You take 10% of Damage from Blocked Hits (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_1057", + ["text"] = "12% chance to Sap Enemies Cannot inflict Shock (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_25969", + ["text"] = "12% chance to Scorch Enemies Cannot inflict Ignite (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_8431", + ["text"] = "12% chance to deal Double Damage if Strength is below 100 (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_45525", + ["text"] = "12% chance to inflict Brittle Cannot inflict Freeze or Chill (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_31274", + ["text"] = "12% increased Chaos Damage 3% of Physical Damage from Hits taken as Chaos Damage (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_11052", + ["text"] = "12% increased Cold Damage 3% of Physical Damage from Hits taken as Cold Damage (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_36332", + ["text"] = "12% increased Cost of Skills 6% more Cast Speed (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_55569", + ["text"] = "12% increased Cost of Skills 7% more Cast Speed (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_53040", + ["text"] = "12% increased Cost of Skills 8% more Cast Speed (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_14839", + ["text"] = "12% increased Fire Damage 3% of Physical Damage from Hits taken as Fire Damage (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_36220", + ["text"] = "12% increased Global Physical Damage 2% additional Physical Damage Reduction (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_6074", + ["text"] = "12% increased Lightning Damage 3% of Physical Damage from Hits taken as Lightning Damage (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_13677", + ["text"] = "12% increased Movement Speed Your Travel Skills are Disabled (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_46224", + ["text"] = "12% increased Movement Speed if Dexterity is below 100 (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_32331", + ["text"] = "120% increased Endurance, Frenzy and Power Charge Duration (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_17039", + ["text"] = "13% increased Damage over Time 15% reduced Duration of Ailments on You (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_59741", + ["text"] = "13% increased Damage over Time 5% increased Skill Effect Duration (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_48868", + ["text"] = "13% increased Spell Damage 10% increased maximum Energy Shield (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_39067", + ["text"] = "13% increased Spell Damage 10% increased maximum Mana (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_37005", + ["text"] = "14% increased Area of Effect if Intelligence is below 100 (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_7148", + ["text"] = "14% increased Damage over Time 10% reduced Life Recovery rate (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_36100", + ["text"] = "14% increased Movement Speed Your Travel Skills are Disabled (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_19742", + ["text"] = "14% increased Movement Speed if Dexterity is below 100 (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_30749", + ["text"] = "14% increased Spell Damage 40% reduced Spell Critical Strike Chance (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_27502", + ["text"] = "140% increased Endurance, Frenzy and Power Charge Duration (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_28927", + ["text"] = "15% chance for Firestorm and Bladefall to affect the same area again when they finish (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_30229", + ["text"] = "15% chance to Sap Enemies when you Block their Damage (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_65050", + ["text"] = "15% chance to Scorch Enemies when you Block their Damage (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_22784", + ["text"] = "15% chance to Steal Power, Frenzy, and Endurance Charges on Hit (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_55872", + ["text"] = "15% chance to Steal Power, Frenzy, and Endurance Charges on Hit (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_11222", + ["text"] = "15% chance to gain Phasing for 4 seconds on Kill Buffs on you expire 10% faster (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_15242", + ["text"] = "15% chance to gain Unholy Might for 4 seconds on Kill Buffs on you expire 10% faster (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_40408", + ["text"] = "15% chance to inflict Brittle on Enemies when you Block their Damage (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_5839", + ["text"] = "15% chance to inflict Withered for 2 seconds on Hit 50% chance to be Withered for 2 seconds when you take Chaos Damage from a Hit (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_5634", + ["text"] = "15% increased Chaos Damage 3% of Physical Damage from Hits taken as Chaos Damage (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_12527", + ["text"] = "15% increased Chaos Damage (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_21848", + ["text"] = "15% increased Cold Damage 3% of Physical Damage from Hits taken as Cold Damage (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_55227", + ["text"] = "15% increased Cold Damage (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_63889", + ["text"] = "15% increased Damage over Time (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_48306", + ["text"] = "15% increased Damage per Curse on you 25% increased Effect of Curses on you (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_3777", + ["text"] = "15% increased Damage per Endurance, Frenzy or Power Charge -1 to Maximum Endurance, Frenzy and Power Charges (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_21374", + ["text"] = "15% increased Effect of Chill on you 30% increased Effect of Chill (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_51893", + ["text"] = "15% increased Effect of Curses on you 10% increased Effect of your Curses (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_60536", + ["text"] = "15% increased Effect of Curses on you 8% increased Effect of your Curses (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_52505", + ["text"] = "15% increased Effect of your Marks 100% increased Mana Cost of Mark Skills (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_12799", + ["text"] = "15% increased Enemy Stun Threshold 16% chance to double Stun Duration (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_47136", + ["text"] = "15% increased Enemy Stun Threshold 24% chance to double Stun Duration (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_25253", + ["text"] = "15% increased Evasion Rating +160 to Accuracy Rating (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_12478", + ["text"] = "15% increased Evasion Rating +240 to Accuracy Rating (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_2290", + ["text"] = "15% increased Evasion Rating +80 to Accuracy Rating (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_13085", + ["text"] = "15% increased Explicit Attribute Modifier magnitudes (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_34410", + ["text"] = "15% increased Explicit Caster Damage Modifier magnitudes (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_33462", + ["text"] = "15% increased Explicit Critical Modifier magnitudes (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_23015", + ["text"] = "15% increased Explicit Defence Modifier magnitudes (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_64398", + ["text"] = "15% increased Explicit Elemental Damage Modifier magnitudes (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_10563", + ["text"] = "15% increased Explicit Life Modifier magnitudes (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_59709", + ["text"] = "15% increased Explicit Mana Modifier magnitudes (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_51291", + ["text"] = "15% increased Explicit Minion Modifier magnitudes (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_62121", + ["text"] = "15% increased Explicit Physical and Chaos Damage Modifier magnitudes (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_7842", + ["text"] = "15% increased Explicit Resistance Modifier magnitudes (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_19368", + ["text"] = "15% increased Explicit Speed Modifier magnitudes (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_59992", + ["text"] = "15% increased Fire Damage 3% of Physical Damage from Hits taken as Fire Damage (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_43685", + ["text"] = "15% increased Fire Damage (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_8535", + ["text"] = "15% increased Global Damage (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_61973", + ["text"] = "15% increased Global Physical Damage 2% additional Physical Damage Reduction (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_36639", + ["text"] = "15% increased Global Physical Damage (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_10737", + ["text"] = "15% increased Impale Effect Attack Hits against you have 20% chance to Impale (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_16688", + ["text"] = "15% increased Lightning Damage 3% of Physical Damage from Hits taken as Lightning Damage (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_11891", + ["text"] = "15% increased Lightning Damage (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_42042", + ["text"] = "15% increased Minion Duration Minions have 15% reduced Cooldown Recovery Rate (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_59398", + ["text"] = "15% increased Molten One confusion per Fish Gifted (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_42655", + ["text"] = "15% increased Poison Duration 20% increased Poison Duration on you (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_14934", + ["text"] = "15% increased Skill Effect Duration 10% reduced Cooldown Recovery Rate (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_7899", + ["text"] = "15% increased bonuses gained from Equipped Quiver (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_30290", + ["text"] = "15% increased effect of Offerings Offering Skills have 15% reduced Duration (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_21842", + ["text"] = "15% less Accuracy Rating against Marked Enemy Culling Strike against Marked Enemy (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_34544", + ["text"] = "15% reduced Attack Speed +0.9% to Critical Strike Chance (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_62113", + ["text"] = "15% reduced Attack Speed +1.2% to Critical Strike Chance (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_36032", + ["text"] = "15% reduced Attack Speed +1.5% to Critical Strike Chance (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_65383", + ["text"] = "15% reduced Effect of your Curses Your Curses have 35% increased Effect if 50% of Curse Duration expired (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_24945", + ["text"] = "15% reduced Effect of your Curses Your Curses have 50% increased Effect if 50% of Curse Duration expired (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_38100", + ["text"] = "15% reduced Effect of your Marks 10% chance to gain a Frenzy Charge when you Hit your Marked Enemy (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_40585", + ["text"] = "15% reduced Effect of your Marks 6% chance to gain a Frenzy Charge when you Hit your Marked Enemy (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_26708", + ["text"] = "15% reduced Enemy Stun Threshold with this Weapon 20% chance to gain an Endurance Charge when you Stun an Enemy with a Melee Hit (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_36378", + ["text"] = "15% reduced Flask Charges gained Flasks applied to you have 10% increased Effect (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_46510", + ["text"] = "15% reduced Flask Charges gained Flasks applied to you have 8% increased Effect (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_54008", + ["text"] = "15% reduced Mana Reservation Efficiency of Skills that throw Mines Mines have a 10% chance to be Detonated an Additional Time (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_9503", + ["text"] = "15% reduced Mana Reservation Efficiency of Skills that throw Mines Mines have a 14% chance to be Detonated an Additional Time (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_62418", + ["text"] = "15% reduced Reservation Efficiency of Skills +0.8% to Spell Critical Strike Chance (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_14609", + ["text"] = "15% reduced Reservation Efficiency of Skills +1% to Spell Critical Strike Chance (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_25684", + ["text"] = "15% reduced Reservation Efficiency of Skills +1.2% to Spell Critical Strike Chance (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_42107", + ["text"] = "15% reduced Totem Life Totems Explode on Death, dealing 10% of their Life as Physical Damage (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_40178", + ["text"] = "15% reduced Totem Life Totems Explode on Death, dealing 15% of their Life as Physical Damage (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_10733", + ["text"] = "15% reduced Totem Placement speed Skills that Summon a Totem have 25% chance to Summon two Totems instead of one (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_29042", + ["text"] = "15% reduced Totem Placement speed Skills that Summon a Totem have 40% chance to Summon two Totems instead of one (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_15153", + ["text"] = "15% reduced effect of Non-Curse Auras from your Skills on your Minions Minions have +1% to Critical Strike Chance (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_60254", + ["text"] = "15% reduced effect of Non-Curse Auras from your Skills on your Minions Minions have +1.2% to Critical Strike Chance (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_25573", + ["text"] = "15% reduced effect of Non-Curse Auras from your Skills on your Minions Minions have +1.4% to Critical Strike Chance (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_4381", + ["text"] = "15% reduced effect of Non-Curse Auras from your Skills on your Minions Minions have +1000 to Accuracy Rating (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_63500", + ["text"] = "15% reduced effect of Non-Curse Auras from your Skills on your Minions Minions have +400 to Accuracy Rating (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_8930", + ["text"] = "15% reduced effect of Non-Curse Auras from your Skills on your Minions Minions have +500 to Accuracy Rating (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_55994", + ["text"] = "15% reduced effect of Non-Curse Auras from your Skills on your Minions Minions have +600 to Accuracy Rating (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_37196", + ["text"] = "15% reduced effect of Non-Curse Auras from your Skills on your Minions Minions have +700 to Accuracy Rating (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_13450", + ["text"] = "15% reduced effect of Non-Curse Auras from your Skills on your Minions Minions have +850 to Accuracy Rating (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_25290", + ["text"] = "150% increased Fortification Duration -2 to maximum Fortification (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_62831", + ["text"] = "150% increased Stun Threshold 50% increased Stun Duration on you (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_4138", + ["text"] = "150% increased Stun and Block Recovery 25% reduced Stun Threshold (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_38146", + ["text"] = "16% Chance to Block Spell Damage No Chance to Block (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_59800", + ["text"] = "16% chance to deal Double Damage if Strength is below 100 (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_61298", + ["text"] = "16% increased Damage over Time 10% increased Skill Effect Duration (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_40937", + ["text"] = "16% increased Damage over Time 25% reduced Duration of Ailments on You (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_26817", + ["text"] = "16% increased Damage over Time (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_50192", + ["text"] = "16% increased Spell Damage 20% increased maximum Energy Shield (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_17085", + ["text"] = "16% increased Spell Damage 20% increased maximum Mana (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_55410", + ["text"] = "16% increased Spell Damage (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_25657", + ["text"] = "17% increased Damage over Time 15% reduced Duration of Ailments on You (Tier 4)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_17079", + ["text"] = "17% increased Damage over Time 5% increased Skill Effect Duration (Tier 4)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_63699", + ["text"] = "17% increased Spell Damage 10% increased maximum Energy Shield (Tier 4)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_14939", + ["text"] = "17% increased Spell Damage 10% increased maximum Mana (Tier 4)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_28832", + ["text"] = "18% increased Impale Effect Attack Hits against you have 30% chance to Impale (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_65064", + ["text"] = "18% increased Movement Speed Your Travel Skills are Disabled (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_22538", + ["text"] = "18% increased Poison Duration 30% increased Poison Duration on you (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_23639", + ["text"] = "18% more Cast Speed 10% less Global Damage (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_38645", + ["text"] = "2% Chance to Block Spell Damage 5% more maximum Mana (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_45946", + ["text"] = "20% Chance to Block Spell Damage No Chance to Block (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_15393", + ["text"] = "20% chance to Sap Enemies Cannot inflict Shock (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_2067", + ["text"] = "20% chance to Sap Enemies when you Block their Damage (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_10993", + ["text"] = "20% chance to Scorch Enemies Cannot inflict Ignite (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_46025", + ["text"] = "20% chance to Scorch Enemies when you Block their Damage (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_21828", + ["text"] = "20% chance to Steal Power, Frenzy, and Endurance Charges on Hit (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_48825", + ["text"] = "20% chance to gain Phasing for 4 seconds on Kill Buffs on you expire 20% faster (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_53459", + ["text"] = "20% chance to gain Unholy Might for 4 seconds on Kill Buffs on you expire 20% faster (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_5275", + ["text"] = "20% chance to inflict Brittle Cannot inflict Freeze or Chill (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_16725", + ["text"] = "20% chance to inflict Brittle on Enemies when you Block their Damage (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_23168", + ["text"] = "20% increased Area of Effect 10% reduced Area of Effect if you've Killed Recently (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_12751", + ["text"] = "20% increased Area of Effect if Intelligence is below 100 (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_20196", + ["text"] = "20% increased Bleeding Duration 15% increased Bleed Duration on you (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_17027", + ["text"] = "20% increased Chaining range (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_4723", + ["text"] = "20% increased Chaos Damage (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_52693", + ["text"] = "20% increased Cold Damage (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_51153", + ["text"] = "20% increased Cost of Skills 10% more Cast Speed (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_15989", + ["text"] = "20% increased Cost of Skills 12% more Cast Speed (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_46240", + ["text"] = "20% increased Cost of Skills 14% more Cast Speed (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_29166", + ["text"] = "20% increased Damage over Time 15% reduced Duration of Ailments on You (Tier 5)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_34075", + ["text"] = "20% increased Damage over Time 5% increased Skill Effect Duration (Tier 5)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_49233", + ["text"] = "20% increased Damage over Time (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_16813", + ["text"] = "20% increased Effect of Arcane Surge on you Buffs on you expire 10% faster (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_53498", + ["text"] = "20% increased Effect of Chill on you 40% increased Effect of Chill (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_48120", + ["text"] = "20% increased Effect of Onslaught on you Buffs on you expire 10% faster (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_33393", + ["text"] = "20% increased Effect of your Marks 100% increased Mana Cost of Mark Skills (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_31813", + ["text"] = "20% increased Fire Damage (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_57652", + ["text"] = "20% increased Fishing Pool Consumption (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_52209", + ["text"] = "20% increased Freeze Duration on Enemies 15% increased Freeze Duration on you (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_44426", + ["text"] = "20% increased Freeze Duration on you Minions have 12% chance to Freeze (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_15255", + ["text"] = "20% increased Freeze Duration on you Minions have 8% chance to Freeze (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_60139", + ["text"] = "20% increased Global Damage 10% increased Cost of Skills (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_30278", + ["text"] = "20% increased Global Damage (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_12971", + ["text"] = "20% increased Global Damage (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_55925", + ["text"] = "20% increased Global Physical Damage (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_35919", + ["text"] = "20% increased Ignite Duration on Enemies 15% increased Ignite Duration on you (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_44124", + ["text"] = "20% increased Ignite Duration on you Minions have 12% chance to Ignite (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_65484", + ["text"] = "20% increased Ignite Duration on you Minions have 8% chance to Ignite (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_35012", + ["text"] = "20% increased Lightning Damage (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_45015", + ["text"] = "20% increased Maximum total Energy Shield Recovery per second from Leech (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_22548", + ["text"] = "20% increased Maximum total Life Recovery per second from Leech (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_19876", + ["text"] = "20% increased Maximum total Mana Recovery per second from Leech (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_16531", + ["text"] = "20% increased Minion Duration Minions have 15% reduced Cooldown Recovery Rate (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_50754", + ["text"] = "20% increased Movement Speed if Dexterity is below 100 (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_4067", + ["text"] = "20% increased Quantity of Fish Caught (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_44070", + ["text"] = "20% increased Shock Duration on you Minions have 12% chance to Shock (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_27920", + ["text"] = "20% increased Shock Duration on you Minions have 8% chance to Shock (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_13267", + ["text"] = "20% increased Skill Effect Duration 10% reduced Cooldown Recovery Rate (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_56908", + ["text"] = "20% increased Spell Damage 10% increased maximum Energy Shield (Tier 5)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_44978", + ["text"] = "20% increased Spell Damage 10% increased maximum Mana (Tier 5)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_54071", + ["text"] = "20% increased Valako's Aid per Stormy Day (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_30458", + ["text"] = "20% increased Warcry Buff Effect Warcry Skills have 20% reduced Area of Effect (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_43755", + ["text"] = "20% increased bonuses gained from Equipped Quiver (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_22279", + ["text"] = "20% increased effect of Offerings Offering Skills have 30% reduced Duration (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_49338", + ["text"] = "20% increased maximum Energy Shield Minions deal 11% increased Damage (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_37486", + ["text"] = "20% increased maximum Energy Shield Minions deal 16% increased Damage (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_48152", + ["text"] = "20% increased maximum Energy Shield Minions deal 21% increased Damage (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_7945", + ["text"] = "20% increased maximum Energy Shield Minions deal 26% increased Damage (Tier 4)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_23283", + ["text"] = "20% increased maximum Energy Shield Minions deal 32% increased Damage (Tier 5)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_37938", + ["text"] = "20% increased maximum Mana Minions deal 11% increased Damage (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_3243", + ["text"] = "20% increased maximum Mana Minions deal 16% increased Damage (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_43166", + ["text"] = "20% increased maximum Mana Minions deal 21% increased Damage (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_50505", + ["text"] = "20% increased maximum Mana Minions deal 26% increased Damage (Tier 4)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_6938", + ["text"] = "20% increased maximum Mana Minions deal 32% increased Damage (Tier 5)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_26932", + ["text"] = "20% more Cast Speed 10% less Global Damage (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_34556", + ["text"] = "20% of Damage Dealt by Ancestor Totems Leeched to you as Energy Shield (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_11696", + ["text"] = "20% of Damage you Reflect to Enemies when Hit is leeched as Life (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_33841", + ["text"] = "20% of Hexblast and Doom Blast Overkill Damage is Leeched as Life (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_27279", + ["text"] = "20% reduced Area of Effect 50% increased Area of Effect if you've Killed at least 5 Enemies Recently (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_19630", + ["text"] = "20% reduced Area of Effect 60% increased Area of Effect if you've Killed at least 5 Enemies Recently (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_31704", + ["text"] = "20% reduced Area of Effect of Hex Skills Hex Skills have 40% increased Skill Effect Duration (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_56162", + ["text"] = "20% reduced Area of Effect of Hex Skills Hex Skills have 50% increased Skill Effect Duration (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_34378", + ["text"] = "20% reduced Attack Speed Attacks with this Weapon have 15% chance to deal Double Damage (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_3455", + ["text"] = "20% reduced Attack Speed Attacks with this Weapon have 20% chance to deal Double Damage (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_52903", + ["text"] = "20% reduced Attack Speed Attacks with this Weapon have 25% chance to deal Double Damage (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_9495", + ["text"] = "20% reduced Attribute Requirements (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_28322", + ["text"] = "20% reduced Damage +60 to maximum Life (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_46681", + ["text"] = "20% reduced Damage +75 to maximum Life (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_591", + ["text"] = "20% reduced Damage +80 to maximum Life (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_6566", + ["text"] = "20% reduced Damage per Curse on you 30% reduced Effect of Curses on you (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_257", + ["text"] = "20% reduced Damage per Curse on you 40% reduced Effect of Curses on you (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_46949", + ["text"] = "20% reduced Effect of Arcane Surge on you 10% chance to Gain Arcane Surge when you deal a Critical Strike (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_14555", + ["text"] = "20% reduced Effect of Arcane Surge on you 10% chance to Gain Arcane Surge when you deal a Critical Strike (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_19007", + ["text"] = "20% reduced Effect of Arcane Surge on you 15% chance to Gain Arcane Surge when you deal a Critical Strike (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_31720", + ["text"] = "20% reduced Effect of Arcane Surge on you 15% chance to Gain Arcane Surge when you deal a Critical Strike (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_16415", + ["text"] = "20% reduced Effect of Onslaught on you 10% chance to gain Onslaught for 4 seconds on Kill (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_50638", + ["text"] = "20% reduced Effect of Onslaught on you 15% chance to gain Onslaught for 4 seconds on Kill (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_37854", + ["text"] = "20% reduced Effect of Onslaught on you 20% chance to gain Onslaught for 4 seconds on Kill (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_42653", + ["text"] = "20% reduced Effect of Onslaught on you 30% chance to gain Onslaught for 4 seconds on Kill (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_19078", + ["text"] = "20% reduced Effect of your Marks 12% chance to gain a Frenzy Charge when you Hit your Marked Enemy (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_63122", + ["text"] = "20% reduced Effect of your Marks 20% chance to gain a Frenzy Charge when you Hit your Marked Enemy (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_25013", + ["text"] = "20% reduced Elusive Effect Gain Elusive on reaching Low Life (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_13126", + ["text"] = "20% reduced Flask Charges gained Flasks applied to you have 12% increased Effect (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_17815", + ["text"] = "20% reduced Flask Charges gained Flasks applied to you have 15% increased Effect (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_9234", + ["text"] = "20% reduced Minion Duration Minions have 30% increased Cooldown Recovery Rate (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_54695", + ["text"] = "20% reduced Minion Duration Minions have 50% increased Cooldown Recovery Rate (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_30831", + ["text"] = "20% reduced Tasalio's Ire per Fish caught (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_6206", + ["text"] = "20% reduced effect of Offerings Offering Skills have 50% increased Duration (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_29227", + ["text"] = "20% reduced effect of Offerings Offering Skills have 80% increased Duration (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_8249", + ["text"] = "200% increased Fortification Duration -2 to maximum Fortification (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_48145", + ["text"] = "21% increased Damage over Time 10% increased Skill Effect Duration (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_41615", + ["text"] = "21% increased Damage over Time 10% reduced Life Recovery rate (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_866", + ["text"] = "21% increased Damage over Time 25% reduced Duration of Ailments on You (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_41446", + ["text"] = "21% increased Spell Damage 20% increased maximum Energy Shield (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_55828", + ["text"] = "21% increased Spell Damage 20% increased maximum Mana (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_37032", + ["text"] = "21% increased Spell Damage 40% reduced Spell Critical Strike Chance (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_2644", + ["text"] = "22% increased Damage over Time 16% reduced Life Recovery rate (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_39115", + ["text"] = "22% increased Spell Damage 80% reduced Spell Critical Strike Chance (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_15178", + ["text"] = "22% more Cast Speed 10% less Global Damage (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_47980", + ["text"] = "23% increased Krillson Affection per Fish Gifted (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_15859", + ["text"] = "24% Chance to Block Spell Damage No Chance to Block (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_61296", + ["text"] = "24% increased Area of Effect 10% reduced Area of Effect if you've Killed Recently (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_45395", + ["text"] = "24% increased Area of Effect if Intelligence is below 100 (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_25922", + ["text"] = "24% increased Armour, Evasion and Energy Shield (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_60225", + ["text"] = "24% increased Attack Speed 15% less Global Damage (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_29817", + ["text"] = "24% increased Damage over Time (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_42291", + ["text"] = "24% increased Impale Effect Attack Hits against you have 40% chance to Impale (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_22262", + ["text"] = "24% increased Poison Duration 40% increased Poison Duration on you (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_51830", + ["text"] = "24% increased Spell Damage (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_63401", + ["text"] = "24% more Cast Speed 15% less Global Damage (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_37160", + ["text"] = "25% chance for Bleeding inflicted with Cobra Lash or Venom Gyre to deal 100% more Damage Cobra Lash and Venom Gyre have -60% of Physical Damage Converted to Chaos Damage (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_60714", + ["text"] = "25% chance for Firestorm and Bladefall to affect the same area again when they finish (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_56607", + ["text"] = "25% chance to Steal Power, Frenzy, and Endurance Charges on Hit (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_8978", + ["text"] = "25% increased Attack Damage with Off Hand 15% increased Armour, Evasion and Energy Shield (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_46560", + ["text"] = "25% increased Attack Damage with Off Hand 20% increased Armour, Evasion and Energy Shield (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_23032", + ["text"] = "25% increased Attack Damage with Off Hand 25% increased Armour, Evasion and Energy Shield (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_26529", + ["text"] = "25% increased Chaos Damage (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_22424", + ["text"] = "25% increased Cold Damage (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_40471", + ["text"] = "25% increased Damage over Time (Tier 4)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_34777", + ["text"] = "25% increased Damage per Endurance, Frenzy or Power Charge -1 to Maximum Endurance, Frenzy and Power Charges (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_21824", + ["text"] = "25% increased Effect of Arcane Surge on you Buffs on you expire 10% faster (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_62924", + ["text"] = "25% increased Effect of Curses on you 12% increased Effect of your Curses (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_47411", + ["text"] = "25% increased Effect of Curses on you 15% increased Effect of your Curses (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_62358", + ["text"] = "25% increased Effect of Onslaught on you Buffs on you expire 10% faster (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_13108", + ["text"] = "25% increased Fire Damage (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_49766", + ["text"] = "25% increased Global Damage (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_6337", + ["text"] = "25% increased Global Physical Damage (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_46218", + ["text"] = "25% increased Implicit Modifier magnitudes Adds 1 to 3 Fire Damage to Spells (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_37712", + ["text"] = "25% increased Implicit Modifier magnitudes Adds 1 to 5 Fire Damage (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_5312", + ["text"] = "25% increased Implicit Modifier magnitudes Adds 12 to 19 Fire Damage (Tier 4)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_39015", + ["text"] = "25% increased Implicit Modifier magnitudes Adds 13 to 22 Fire Damage (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_35280", + ["text"] = "25% increased Implicit Modifier magnitudes Adds 16 to 26 Fire Damage to Spells (Tier 4)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_38110", + ["text"] = "25% increased Implicit Modifier magnitudes Adds 18 to 28 Fire Damage to Spells (Tier 5)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_57645", + ["text"] = "25% increased Implicit Modifier magnitudes Adds 2 to 4 Fire Damage to Spells (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_2354", + ["text"] = "25% increased Implicit Modifier magnitudes Adds 2 to 6 Fire Damage to Spells (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_3293", + ["text"] = "25% increased Implicit Modifier magnitudes Adds 23 to 36 Fire Damage (Tier 4)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_55457", + ["text"] = "25% increased Implicit Modifier magnitudes Adds 25 to 39 Fire Damage (Tier 5)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_29891", + ["text"] = "25% increased Implicit Modifier magnitudes Adds 3 to 6 Fire Damage (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_24211", + ["text"] = "25% increased Implicit Modifier magnitudes Adds 34 to 51 Fire Damage to Spells (Tier 5)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_48429", + ["text"] = "25% increased Implicit Modifier magnitudes Adds 4 to 9 Fire Damage (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_40760", + ["text"] = "25% increased Implicit Modifier magnitudes Adds 4 to 9 Fire Damage to Spells (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_5480", + ["text"] = "25% increased Implicit Modifier magnitudes Adds 48 to 71 Fire Damage (Tier 5)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_38526", + ["text"] = "25% increased Implicit Modifier magnitudes Adds 5 to 8 Fire Damage to Spells (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_46838", + ["text"] = "25% increased Implicit Modifier magnitudes Adds 7 to 11 Fire Damage (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_45738", + ["text"] = "25% increased Implicit Modifier magnitudes Adds 7 to 12 Fire Damage (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_51555", + ["text"] = "25% increased Implicit Modifier magnitudes Adds 8 to 14 Fire Damage to Spells (Tier 4)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_23898", + ["text"] = "25% increased Implicit Modifier magnitudes Adds 9 to 16 Fire Damage to Spells (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_12622", + ["text"] = "25% increased Implicit Modifier magnitudes Minions deal 1 to 3 additional Fire Damage (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_47035", + ["text"] = "25% increased Implicit Modifier magnitudes Minions deal 16 to 26 additional Fire Damage (Tier 4)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_19454", + ["text"] = "25% increased Implicit Modifier magnitudes Minions deal 18 to 28 additional Fire Damage (Tier 5)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_36252", + ["text"] = "25% increased Implicit Modifier magnitudes Minions deal 2 to 4 additional Fire Damage (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_52919", + ["text"] = "25% increased Implicit Modifier magnitudes Minions deal 2 to 6 additional Fire Damage (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_1865", + ["text"] = "25% increased Implicit Modifier magnitudes Minions deal 34 to 51 additional Fire Damage (Tier 5)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_56874", + ["text"] = "25% increased Implicit Modifier magnitudes Minions deal 4 to 9 additional Fire Damage (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_33621", + ["text"] = "25% increased Implicit Modifier magnitudes Minions deal 5 to 8 additional Fire Damage (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_62282", + ["text"] = "25% increased Implicit Modifier magnitudes Minions deal 8 to 14 additional Fire Damage (Tier 4)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_62448", + ["text"] = "25% increased Implicit Modifier magnitudes Minions deal 9 to 16 additional Fire Damage (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_29865", + ["text"] = "25% increased Lightning Damage (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_56727", + ["text"] = "25% increased Projectile Speed 15% reduced Projectile Damage (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_53927", + ["text"] = "25% less Accuracy Rating against Marked Enemy Culling Strike against Marked Enemy (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_62750", + ["text"] = "25% reduced Armour, Evasion and Energy Shield +10% to all Elemental Resistances (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_13326", + ["text"] = "25% reduced Armour, Evasion and Energy Shield +12% to all Elemental Resistances (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_39333", + ["text"] = "25% reduced Armour, Evasion and Energy Shield +14% to all Elemental Resistances (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_43063", + ["text"] = "25% reduced Attack Speed Attacks with this Weapon have 20% chance to deal Double Damage (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_4773", + ["text"] = "25% reduced Attack Speed Attacks with this Weapon have 25% chance to deal Double Damage (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_31759", + ["text"] = "25% reduced Attack Speed Attacks with this Weapon have 30% chance to deal Double Damage (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_37711", + ["text"] = "25% reduced Enemy Stun Threshold with this Weapon 20% chance to gain an Endurance Charge when you Stun an Enemy with a Melee Hit (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_23076", + ["text"] = "25% reduced Energy Shield 12% increased Energy Shield Recovery rate (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_42584", + ["text"] = "25% reduced Energy Shield 16% increased Energy Shield Recovery rate (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_101", + ["text"] = "25% reduced Essence Drain and Soulrend Projectile Speed Essence Drain and Soulrend fire 2 additional Projectiles (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_61911", + ["text"] = "25% reduced Mana Reservation Efficiency of Skills that throw Mines Mines have a 16% chance to be Detonated an Additional Time (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_29399", + ["text"] = "25% reduced Mana Reservation Efficiency of Skills that throw Mines Mines have a 20% chance to be Detonated an Additional Time (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_38275", + ["text"] = "25% reduced Reservation Efficiency of Skills +1.2% to Spell Critical Strike Chance (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_6129", + ["text"] = "25% reduced Reservation Efficiency of Skills +1.6% to Spell Critical Strike Chance (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_48410", + ["text"] = "25% reduced Reservation Efficiency of Skills +2% to Spell Critical Strike Chance (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_53390", + ["text"] = "25% reduced Totem Life Totems Explode on Death, dealing 20% of their Life as Physical Damage (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_27222", + ["text"] = "25% reduced Totem Life Totems Explode on Death, dealing 30% of their Life as Physical Damage (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_13996", + ["text"] = "25% reduced Totem Placement speed Skills that Summon a Totem have 50% chance to Summon two Totems instead of one (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_21957", + ["text"] = "25% reduced Totem Placement speed Skills that Summon a Totem have 70% chance to Summon two Totems instead of one (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_27039", + ["text"] = "25% reduced Trap Spread Traps from Skills are thrown randomly around targeted location (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_65092", + ["text"] = "25% reduced Trap Spread Traps from Skills are thrown randomly around targeted location (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_39645", + ["text"] = "25% reduced chance to catch Boots (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_461", + ["text"] = "25% reduced effect of Non-Curse Auras from your Skills on your Minions Minions have +1.7% to Critical Strike Chance (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_45166", + ["text"] = "25% reduced effect of Non-Curse Auras from your Skills on your Minions Minions have +2% to Critical Strike Chance (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_6040", + ["text"] = "25% reduced effect of Non-Curse Auras from your Skills on your Minions Minions have +2.3% to Critical Strike Chance (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_28656", + ["text"] = "26% increased Damage over Time 10% increased Skill Effect Duration (Tier 4)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_5261", + ["text"] = "26% increased Damage over Time 25% reduced Duration of Ailments on You (Tier 4)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_22342", + ["text"] = "26% increased Spell Damage 20% increased maximum Energy Shield (Tier 4)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_13328", + ["text"] = "26% increased Spell Damage 20% increased maximum Mana (Tier 4)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_50569", + ["text"] = "27% increased Attack Speed 15% less Global Damage (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_29927", + ["text"] = "27% more Cast Speed 15% less Global Damage (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_4920", + ["text"] = "28% increased Damage over Time 10% reduced Life Recovery rate (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_50952", + ["text"] = "28% increased Spell Damage 40% reduced Spell Critical Strike Chance (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_27584", + ["text"] = "3% Chance to Block Spell Damage 5% more maximum Mana (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_44918", + ["text"] = "3% Chance to Block Spell Damage (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_33471", + ["text"] = "3% increased Attack Speed 6% chance to gain Onslaught for 4 seconds on Kill (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_16269", + ["text"] = "3% increased Attack Speed 6% chance to gain a Frenzy Charge on Kill (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_22831", + ["text"] = "30 Life gained when you Block +2% Chance to Block (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_35461", + ["text"] = "30 Life gained when you Block +3% Chance to Block (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_43398", + ["text"] = "30 Mana gained when you Block (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_42310", + ["text"] = "30% chance for Blade Vortex and Blade Blast to Impale Enemies on Hit Blade Vortex and Blade Blast deal no Non-Physical Damage (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_44702", + ["text"] = "30% chance to gain Phasing for 4 seconds on Kill Buffs on you expire 20% faster (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_51046", + ["text"] = "30% chance to gain Unholy Might for 4 seconds on Kill Buffs on you expire 20% faster (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_25963", + ["text"] = "30% increased Attack Speed 15% less Global Damage (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_32823", + ["text"] = "30% increased Attack Speed 20% less Global Damage (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_15345", + ["text"] = "30% increased Bleeding Duration 20% increased Bleed Duration on you (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_26072", + ["text"] = "30% increased Block Recovery +2% Chance to Block (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_58091", + ["text"] = "30% increased Block Recovery +3% Chance to Block (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_8887", + ["text"] = "30% increased Chaining range (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_47499", + ["text"] = "30% increased Chaos Damage -10% to Chaos Resistance (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_23285", + ["text"] = "30% increased Cold Damage -10% to Cold Resistance (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_46628", + ["text"] = "30% increased Damage over Time (Tier 5)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_39737", + ["text"] = "30% increased Effect of Chill on you 60% increased Effect of Chill (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_10968", + ["text"] = "30% increased Effect of Chill on you Unaffected by Chill while Channelling (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_37050", + ["text"] = "30% increased Effect of Shock 15% increased Effect of Shock on you (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_8946", + ["text"] = "30% increased Effect of Shock on you Unaffected by Shock while Channelling (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_43737", + ["text"] = "30% increased Effect of your Marks 200% increased Mana Cost of Mark Skills (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_56505", + ["text"] = "30% increased Enemy Stun Threshold 35% chance to double Stun Duration (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_3899", + ["text"] = "30% increased Enemy Stun Threshold 45% chance to double Stun Duration (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_60140", + ["text"] = "30% increased Evasion Rating +160 to Accuracy Rating (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_24831", + ["text"] = "30% increased Evasion Rating +240 to Accuracy Rating (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_50707", + ["text"] = "30% increased Evasion Rating +80 to Accuracy Rating (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_40475", + ["text"] = "30% increased Fire Damage -10% to Fire Resistance (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_12534", + ["text"] = "30% increased Fishing Line Strength (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_47635", + ["text"] = "30% increased Freeze Duration on Enemies 20% increased Freeze Duration on you (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_47650", + ["text"] = "30% increased Global Damage 10% increased Cost of Skills (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_10616", + ["text"] = "30% increased Global Damage (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_9880", + ["text"] = "30% increased Global Physical Damage 10% reduced Life Regeneration rate (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_10714", + ["text"] = "30% increased Ignite Duration on Enemies 20% increased Ignite Duration on you (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_62777", + ["text"] = "30% increased Lightning Damage -10% to Lightning Resistance (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_39283", + ["text"] = "30% increased Minion Duration Minions have 30% reduced Cooldown Recovery Rate (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_12659", + ["text"] = "30% increased Skill Effect Duration 20% reduced Cooldown Recovery Rate (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_6296", + ["text"] = "30% increased Stun Duration on Enemies 15% increased Stun Duration on you (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_12271", + ["text"] = "30% increased Warcry Buff Effect Warcry Skills have 20% reduced Area of Effect (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_14722", + ["text"] = "30% increased effect of Offerings Offering Skills have 30% reduced Duration (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_11868", + ["text"] = "30% increased total Recovery per second from Life Leech 0.5% of Attack Damage Leeched as Life (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_16333", + ["text"] = "30% increased total Recovery per second from Life Leech 0.8% of Attack Damage Leeched as Life (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_2957", + ["text"] = "30% increased total Recovery per second from Mana Leech 0.5% of Attack Damage Leeched as Mana (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_48517", + ["text"] = "30% increased total Recovery per second from Mana Leech 0.8% of Attack Damage Leeched as Mana (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_34039", + ["text"] = "30% more Cast Speed 15% less Global Damage (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_65033", + ["text"] = "30% of Damage you Reflect to Enemies when Hit is leeched as Life (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_13592", + ["text"] = "30% reduced Area of Effect of Hex Skills Hex Skills have 100% increased Skill Effect Duration (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_26338", + ["text"] = "30% reduced Area of Effect of Hex Skills Hex Skills have 80% increased Skill Effect Duration (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_13152", + ["text"] = "30% reduced Attribute Requirements (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_235", + ["text"] = "30% reduced Damage 25% increased Damage for each time you've Warcried Recently (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_56597", + ["text"] = "30% reduced Damage 40% increased Damage for each time you've Warcried Recently (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_9657", + ["text"] = "30% reduced Elusive Effect Gain Elusive on reaching Low Life (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_63697", + ["text"] = "30% reduced Fortification Duration Melee Hits which Stun have 15% chance to Fortify (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_47914", + ["text"] = "30% reduced Fortification Duration Melee Hits which Stun have 20% chance to Fortify (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_25591", + ["text"] = "30% reduced Fortification Duration Melee Hits which Stun have 30% chance to Fortify (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_28041", + ["text"] = "30% reduced Fortification Duration Melee Hits which Stun have 40% chance to Fortify (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_45341", + ["text"] = "32% increased Area of Effect 20% reduced Area of Effect if you've Killed Recently (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_54589", + ["text"] = "32% increased Area of Effect if Intelligence is below 100 (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_51270", + ["text"] = "32% increased Armour, Evasion and Energy Shield (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_42376", + ["text"] = "32% increased Damage over Time 10% increased Skill Effect Duration (Tier 5)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_52801", + ["text"] = "32% increased Damage over Time 25% reduced Duration of Ailments on You (Tier 5)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_39435", + ["text"] = "32% increased Damage over Time (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_12305", + ["text"] = "32% increased Spell Damage 20% increased maximum Energy Shield (Tier 5)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_23877", + ["text"] = "32% increased Spell Damage 20% increased maximum Mana (Tier 5)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_56515", + ["text"] = "32% increased Spell Damage (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_39139", + ["text"] = "34% increased Damage over Time 16% reduced Life Recovery rate (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_36040", + ["text"] = "34% increased Spell Damage 80% reduced Spell Critical Strike Chance (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_858", + ["text"] = "35% increased Attack Speed 20% less Global Damage (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_7506", + ["text"] = "35% increased Bleeding Duration 30% increased Bleed Duration on you (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_43557", + ["text"] = "35% increased Chaos Damage -10% to Chaos Resistance (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_40580", + ["text"] = "35% increased Cold Damage -10% to Cold Resistance (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_32414", + ["text"] = "35% increased Damage over Time 10% reduced Life Recovery rate (Tier 4)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_23778", + ["text"] = "35% increased Fire Damage -10% to Fire Resistance (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_36444", + ["text"] = "35% increased Freeze Duration on Enemies 30% increased Freeze Duration on you (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_27675", + ["text"] = "35% increased Global Physical Damage 10% reduced Life Regeneration rate (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_60228", + ["text"] = "35% increased Ignite Duration on Enemies 30% increased Ignite Duration on you (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_63805", + ["text"] = "35% increased Lightning Damage -10% to Lightning Resistance (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_7664", + ["text"] = "35% increased Projectile Speed 15% reduced Projectile Damage (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_20811", + ["text"] = "35% increased Spell Damage 40% reduced Spell Critical Strike Chance (Tier 4)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_37061", + ["text"] = "35% increased Warcry Buff Effect Warcry Skills have 30% reduced Area of Effect (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_37309", + ["text"] = "4% Chance to Block Spell Damage (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_33250", + ["text"] = "4% increased Attack Speed 6% chance to gain Onslaught for 4 seconds on Kill (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_38536", + ["text"] = "4% increased Attack Speed 6% chance to gain Onslaught for 4 seconds on Kill (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_54143", + ["text"] = "4% increased Attack Speed 6% chance to gain a Frenzy Charge on Kill (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_1610", + ["text"] = "4% increased Attack Speed 6% chance to gain a Frenzy Charge on Kill (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_33285", + ["text"] = "4% increased Attributes 12% increased Global Damage (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_18430", + ["text"] = "4% increased Attributes 16% increased Global Damage (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_21705", + ["text"] = "4% increased Attributes 8% increased Global Damage (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_38885", + ["text"] = "4% increased Dexterity 4% increased Intelligence (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_13733", + ["text"] = "4% increased Lightning Damage taken Minions deal 1 to 15 additional Lightning Damage (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_41152", + ["text"] = "4% increased Lightning Damage taken Minions deal 1 to 29 additional Lightning Damage (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_47515", + ["text"] = "4% increased Lightning Damage taken Minions deal 1 to 9 additional Lightning Damage (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_6571", + ["text"] = "4% increased Lightning Damage taken Minions deal 2 to 48 additional Lightning Damage (Tier 4)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_18583", + ["text"] = "4% increased Lightning Damage taken Minions deal 5 to 94 additional Lightning Damage (Tier 5)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_30545", + ["text"] = "4% increased Movement Speed per Frenzy Charge -1 to Maximum Frenzy Charges (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_56664", + ["text"] = "4% increased Strength 4% increased Dexterity (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_63732", + ["text"] = "4% increased Strength 4% increased Intelligence (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_37408", + ["text"] = "4% more Cast Speed (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_16087", + ["text"] = "40% increased Area of Effect 20% reduced Area of Effect if you've Killed Recently (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_12299", + ["text"] = "40% increased Armour, Evasion and Energy Shield -5% Chance to Block (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_767", + ["text"] = "40% increased Armour, Evasion and Energy Shield 5% reduced maximum Life (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_56743", + ["text"] = "40% increased Armour, Evasion and Energy Shield (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_48515", + ["text"] = "40% increased Attack Speed 20% less Global Damage (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_33564", + ["text"] = "40% increased Chaining range (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_45555", + ["text"] = "40% increased Chaos Damage -10% to Chaos Resistance (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_56284", + ["text"] = "40% increased Cold Damage -10% to Cold Resistance (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_52142", + ["text"] = "40% increased Damage over Time (Tier 4)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_7072", + ["text"] = "40% increased Effect of Arcane Surge on you Buffs on you expire 20% faster (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_43954", + ["text"] = "40% increased Effect of Chill on you 80% increased Effect of Chill (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_7250", + ["text"] = "40% increased Effect of Onslaught on you Buffs on you expire 20% faster (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_15591", + ["text"] = "40% increased Effect of Shock 20% increased Effect of Shock on you (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_27026", + ["text"] = "40% increased Effect of your Marks 200% increased Mana Cost of Mark Skills (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_45201", + ["text"] = "40% increased Fire Damage -10% to Fire Resistance (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_16843", + ["text"] = "40% increased Freeze Duration on you Minions have 16% chance to Freeze (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_15403", + ["text"] = "40% increased Freeze Duration on you Minions have 24% chance to Freeze (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_32547", + ["text"] = "40% increased Global Damage 10% increased Cost of Skills (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_12247", + ["text"] = "40% increased Global Damage 20% increased Cost of Skills (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_14461", + ["text"] = "40% increased Global Damage (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_37999", + ["text"] = "40% increased Global Physical Damage 10% reduced Life Regeneration rate (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_11581", + ["text"] = "40% increased Ignite Duration on you Minions have 16% chance to Ignite (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_37981", + ["text"] = "40% increased Ignite Duration on you Minions have 24% chance to Ignite (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_12413", + ["text"] = "40% increased Life of Fish caught with this Fishing Rod (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_31784", + ["text"] = "40% increased Lightning Damage -10% to Lightning Resistance (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_47588", + ["text"] = "40% increased Minion Duration Minions have 30% reduced Cooldown Recovery Rate (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_8711", + ["text"] = "40% increased Projectile Speed 30% reduced Projectile Damage (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_12959", + ["text"] = "40% increased Rarity of Fish Caught (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_263", + ["text"] = "40% increased Shock Duration on you Minions have 16% chance to Shock (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_8029", + ["text"] = "40% increased Shock Duration on you Minions have 24% chance to Shock (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_57477", + ["text"] = "40% increased Skill Effect Duration 20% reduced Cooldown Recovery Rate (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_42864", + ["text"] = "40% increased Spell Damage (Tier 4)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_8367", + ["text"] = "40% increased Stun Duration on Enemies 20% increased Stun Duration on you (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_4198", + ["text"] = "40% of Damage Dealt by Ancestor Totems Leeched to you as Energy Shield (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_17105", + ["text"] = "40% of Damage from your Hits cannot be Reflected 15% increased Armour, Evasion and Energy Shield (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_7426", + ["text"] = "40% of Damage from your Hits cannot be Reflected 20% increased Armour, Evasion and Energy Shield (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_1499", + ["text"] = "40% of Damage from your Hits cannot be Reflected 25% increased Armour, Evasion and Energy Shield (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_38253", + ["text"] = "40% reduced Armour, Evasion and Energy Shield +6% Chance to Block (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_55499", + ["text"] = "40% reduced Armour, Evasion and Energy Shield +7% Chance to Block (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_53967", + ["text"] = "40% reduced Armour, Evasion and Energy Shield +8% Chance to Block (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_33321", + ["text"] = "40% reduced Trap Trigger Area of Effect 12% increased Trap Throwing Speed (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_59272", + ["text"] = "40% reduced Trap Trigger Area of Effect 16% increased Trap Throwing Speed (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_33745", + ["text"] = "42% increased Damage over Time 10% reduced Life Recovery rate (Tier 5)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_51994", + ["text"] = "42% increased Spell Damage 40% reduced Spell Critical Strike Chance (Tier 5)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_22683", + ["text"] = "45% increased Damage over Time 16% reduced Life Recovery rate (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_34251", + ["text"] = "45% increased Spell Damage 80% reduced Spell Critical Strike Chance (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_44265", + ["text"] = "48% increased Damage over Time (Tier 5)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_29079", + ["text"] = "48% increased Spell Damage (Tier 5)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_21290", + ["text"] = "5% Chance to Block Spell Damage (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_65108", + ["text"] = "5% chance to Steal Power, Frenzy, and Endurance Charges on Hit (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_118", + ["text"] = "5% increased Attack Speed 6% chance to gain Onslaught for 4 seconds on Kill (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_14078", + ["text"] = "5% increased Attack Speed 6% chance to gain Onslaught for 4 seconds on Kill (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_61003", + ["text"] = "5% increased Attack Speed 6% chance to gain a Frenzy Charge on Kill (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_61889", + ["text"] = "5% increased Attack Speed 6% chance to gain a Frenzy Charge on Kill (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_15868", + ["text"] = "5% increased Attack Speed (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_32932", + ["text"] = "5% increased Dexterity +160 to Accuracy Rating (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_51176", + ["text"] = "5% increased Dexterity +20 to Evasion Rating (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_28958", + ["text"] = "5% increased Dexterity +240 to Accuracy Rating (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_31790", + ["text"] = "5% increased Dexterity +30 to Evasion Rating (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_10779", + ["text"] = "5% increased Dexterity +40 to Evasion Rating (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_61397", + ["text"] = "5% increased Dexterity +80 to Accuracy Rating (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_27116", + ["text"] = "5% increased Intelligence +12 to maximum Energy Shield (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_13687", + ["text"] = "5% increased Intelligence +15 to maximum Energy Shield (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_24867", + ["text"] = "5% increased Intelligence +9 to maximum Energy Shield (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_5670", + ["text"] = "5% increased Strength +20 to Armour (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_40285", + ["text"] = "5% increased Strength +30 to Armour (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_2900", + ["text"] = "5% increased Strength +40 to Armour (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_36068", + ["text"] = "5% increased chance to catch a Divine Orb (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_45878", + ["text"] = "5% more Cast Speed (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_26352", + ["text"] = "5% reduced Attack Speed Allocates Blade Master (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_55102", + ["text"] = "5% reduced Attack Speed Allocates Blade of Cunning (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_15254", + ["text"] = "5% reduced Attack Speed Allocates Bladedancer (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_14008", + ["text"] = "5% reduced Attack Speed Allocates Brutal Blade (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_7564", + ["text"] = "5% reduced Attack Speed Allocates Claws of the Falcon (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_28407", + ["text"] = "5% reduced Attack Speed Allocates Claws of the Hawk (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_15353", + ["text"] = "5% reduced Attack Speed Allocates Claws of the Magpie (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_55147", + ["text"] = "5% reduced Attack Speed Allocates Cleaving (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_11190", + ["text"] = "5% reduced Attack Speed Allocates Fatal Blade (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_32956", + ["text"] = "5% reduced Attack Speed Allocates Feller of Foes (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_13478", + ["text"] = "5% reduced Attack Speed Allocates Harvester of Foes (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_57395", + ["text"] = "5% reduced Attack Speed Allocates Hatchet Master (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_11983", + ["text"] = "5% reduced Attack Speed Allocates Life Raker (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_65141", + ["text"] = "5% reduced Attack Speed Allocates Poisonous Fangs (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_64677", + ["text"] = "5% reduced Attack Speed Allocates Razor's Edge (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_39346", + ["text"] = "5% reduced Attack Speed Allocates Slaughter (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_57650", + ["text"] = "5% reduced Movement Speed 20% increased Cooldown Recovery Rate of Travel Skills (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_47350", + ["text"] = "5% reduced Movement Speed 30% increased Cooldown Recovery Rate of Travel Skills (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_52469", + ["text"] = "5% reduced maximum Life +19% to Chaos Resistance (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_20074", + ["text"] = "5% reduced maximum Life +23% to Chaos Resistance (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_53851", + ["text"] = "5% reduced maximum Life +27% to Chaos Resistance (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_51285", + ["text"] = "50 Mana gained when you Block (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_8925", + ["text"] = "50% chance to Chill Attackers for 4 seconds on Block (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_36676", + ["text"] = "50% chance to Shock Attackers for 4 seconds on Block (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_26435", + ["text"] = "50% chance to avoid Ailments from Critical Strikes (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_53537", + ["text"] = "50% chance to gain Soul Eater for 20 seconds on Killing Blow against Rare and Unique Enemies with Double Strike or Dual Strike (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_35506", + ["text"] = "50% increased Armour, Evasion and Energy Shield -5% Chance to Block (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_7636", + ["text"] = "50% increased Armour, Evasion and Energy Shield 5% reduced maximum Life (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_51336", + ["text"] = "50% increased Bleeding Duration 40% increased Bleed Duration on you (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_15873", + ["text"] = "50% increased Effect of Arcane Surge on you Buffs on you expire 20% faster (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_6636", + ["text"] = "50% increased Effect of Link Buffs on Animated Guardian Link Skills can target Animated Guardian (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_36479", + ["text"] = "50% increased Effect of Onslaught on you Buffs on you expire 20% faster (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_41852", + ["text"] = "50% increased Endurance, Frenzy and Power Charge Duration (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_45720", + ["text"] = "50% increased Fish Bite Sensitivity (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_53058", + ["text"] = "50% increased Freeze Duration on Enemies 40% increased Freeze Duration on you (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_333", + ["text"] = "50% increased Global Damage 20% increased Cost of Skills (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_44882", + ["text"] = "50% increased Ignite Duration on Enemies 40% increased Ignite Duration on you (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_27282", + ["text"] = "50% increased Implicit Modifier magnitudes +12 to maximum Energy Shield (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_32464", + ["text"] = "50% increased Implicit Modifier magnitudes +15 to maximum Energy Shield (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_22071", + ["text"] = "50% increased Implicit Modifier magnitudes +20 to Armour (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_33157", + ["text"] = "50% increased Implicit Modifier magnitudes +20 to Evasion Rating (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_8466", + ["text"] = "50% increased Implicit Modifier magnitudes +30 to Armour (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_36846", + ["text"] = "50% increased Implicit Modifier magnitudes +30 to Evasion Rating (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_37110", + ["text"] = "50% increased Implicit Modifier magnitudes +40 to Armour (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_11736", + ["text"] = "50% increased Implicit Modifier magnitudes +40 to Evasion Rating (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_28288", + ["text"] = "50% increased Implicit Modifier magnitudes +9 to maximum Energy Shield (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_30149", + ["text"] = "50% increased Siege and Shrapnel Ballista attack speed per maximum Summoned Totem 45% reduced Shrapnel Ballista attack speed per Shrapnel Ballista Totem 45% reduced Siege Ballista attack speed per Siege Ballista Totem (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_6094", + ["text"] = "50% increased Spark Duration when Cast by a Totem while you also have a Lightning Tendrils Spell Totem Lightning Tendrils releases 1 fewer Pulse between Stronger Pulses when Cast by a Totem while you also have a Spark Spell Totem (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_42216", + ["text"] = "50% increased Warcry Buff Effect Warcry Skills have 30% reduced Area of Effect (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_27846", + ["text"] = "50% increased effect of Wishes granted by Ancient Fish (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_8830", + ["text"] = "50% reduced Armour, Evasion and Energy Shield +60 to maximum Life (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_23471", + ["text"] = "50% reduced Armour, Evasion and Energy Shield +75 to maximum Life (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_47529", + ["text"] = "50% reduced Armour, Evasion and Energy Shield +80 to maximum Life (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_32122", + ["text"] = "50% reduced Attack Speed Hits can't be Evaded (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_32031", + ["text"] = "50% reduced Consecrated Ground Area 30% increased Effect of Consecrated Ground you create (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_59438", + ["text"] = "50% reduced Consecrated Ground Area 50% increased Effect of Consecrated Ground you create (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_45237", + ["text"] = "50% reduced Damage 40% increased Damage for each time you've Warcried Recently (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_53485", + ["text"] = "50% reduced Damage 60% increased Damage for each time you've Warcried Recently (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_43492", + ["text"] = "50% reduced Endurance Charge Duration Gain an Endurance Charge on Kill (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_33893", + ["text"] = "50% reduced Essence Drain and Soulrend Projectile Speed Essence Drain and Soulrend fire 4 additional Projectiles (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_42069", + ["text"] = "50% reduced Frenzy Charge Duration Gain a Frenzy Charge on Kill (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_40621", + ["text"] = "50% reduced Power Charge Duration Gain a Power Charge on Kill (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_14571", + ["text"] = "55% increased Projectile Speed 30% reduced Projectile Damage (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_40014", + ["text"] = "56% increased Damage over Time 16% reduced Life Recovery rate (Tier 4)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_11734", + ["text"] = "56% increased Spell Damage 80% reduced Spell Critical Strike Chance (Tier 4)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_28578", + ["text"] = "6% chance to Sap Enemies Cannot inflict Shock (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_8745", + ["text"] = "6% chance to Scorch Enemies Cannot inflict Ignite (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_40803", + ["text"] = "6% chance to deal Double Damage if Strength is below 100 (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_7406", + ["text"] = "6% chance to inflict Brittle Cannot inflict Freeze or Chill (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_50147", + ["text"] = "6% chance to inflict Withered for 2 seconds on Hit 25% chance to be Withered for 2 seconds when you take Chaos Damage from a Hit (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_26022", + ["text"] = "6% increased Attack Speed 6% chance to gain Onslaught for 4 seconds on Kill (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_34535", + ["text"] = "6% increased Attack Speed 6% chance to gain a Frenzy Charge on Kill (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_26108", + ["text"] = "6% increased Attack Speed (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_20500", + ["text"] = "6% increased Attributes 15% increased Global Damage (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_28343", + ["text"] = "6% increased Attributes 20% increased Global Damage (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_35076", + ["text"] = "6% increased Attributes 25% increased Global Damage (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_9827", + ["text"] = "6% increased Dexterity 6% increased Intelligence (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_21514", + ["text"] = "6% increased Dexterity 6% increased Intelligence (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_8560", + ["text"] = "6% increased Lightning Damage taken Minions deal 1 to 16 additional Lightning Damage (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_15932", + ["text"] = "6% increased Lightning Damage taken Minions deal 1 to 28 additional Lightning Damage (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_42416", + ["text"] = "6% increased Lightning Damage taken Minions deal 2 to 53 additional Lightning Damage (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_32847", + ["text"] = "6% increased Lightning Damage taken Minions deal 4 to 88 additional Lightning Damage (Tier 4)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_39733", + ["text"] = "6% increased Lightning Damage taken Minions deal 9 to 173 additional Lightning Damage (Tier 5)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_26796", + ["text"] = "6% increased Movement Speed per Frenzy Charge -1 to Maximum Frenzy Charges (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_59736", + ["text"] = "6% increased Strength 6% increased Dexterity (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_63937", + ["text"] = "6% increased Strength 6% increased Dexterity (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_54063", + ["text"] = "6% increased Strength 6% increased Intelligence (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_5411", + ["text"] = "6% increased Strength 6% increased Intelligence (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_33499", + ["text"] = "6% more Cast Speed (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_60625", + ["text"] = "6% reduced maximum Life Minions deal 14 to 22 additional Chaos Damage (Tier 4)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_30920", + ["text"] = "6% reduced maximum Life Minions deal 2 to 5 additional Chaos Damage (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_50673", + ["text"] = "6% reduced maximum Life Minions deal 28 to 42 additional Chaos Damage (Tier 5)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_63472", + ["text"] = "6% reduced maximum Life Minions deal 5 to 7 additional Chaos Damage (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_43892", + ["text"] = "6% reduced maximum Life Minions deal 8 to 14 additional Chaos Damage (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_36800", + ["text"] = "60% chance for Blade Vortex and Blade Blast to Impale Enemies on Hit Blade Vortex and Blade Blast deal no Non-Physical Damage (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_27169", + ["text"] = "60% chance to Avoid being Frozen +20% chance to be Ignited (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_64359", + ["text"] = "60% chance to Avoid being Ignited +20% chance to be Shocked (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_37792", + ["text"] = "60% chance to Avoid being Poisoned 50% increased Bleed Duration on you (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_22615", + ["text"] = "60% chance to Avoid being Shocked +20% chance to be Frozen (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_49542", + ["text"] = "60% increased Armour, Evasion and Energy Shield -5% Chance to Block (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_28204", + ["text"] = "60% increased Armour, Evasion and Energy Shield 5% reduced maximum Life (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_6460", + ["text"] = "60% increased Chaining range (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_34516", + ["text"] = "60% increased Effect of Shock 30% increased Effect of Shock on you (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_52765", + ["text"] = "60% increased Global Damage 20% increased Cost of Skills (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_47066", + ["text"] = "60% increased Stun Duration on Enemies 30% increased Stun Duration on you (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_7749", + ["text"] = "60% increased total Recovery per second from Life Leech 1% of Attack Damage Leeched as Life (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_42585", + ["text"] = "60% increased total Recovery per second from Life Leech 1.6% of Attack Damage Leeched as Life (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_21744", + ["text"] = "60% increased total Recovery per second from Mana Leech 1% of Attack Damage Leeched as Mana (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_44519", + ["text"] = "60% increased total Recovery per second from Mana Leech 1.6% of Attack Damage Leeched as Mana (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_55819", + ["text"] = "60% reduced Trap Trigger Area of Effect 18% increased Trap Throwing Speed (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_24408", + ["text"] = "60% reduced Trap Trigger Area of Effect 25% increased Trap Throwing Speed (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_3367", + ["text"] = "65% increased Endurance, Frenzy and Power Charge Duration (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_27694", + ["text"] = "68% increased Damage over Time 16% reduced Life Recovery rate (Tier 5)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_61669", + ["text"] = "68% increased Spell Damage 80% reduced Spell Critical Strike Chance (Tier 5)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_1368", + ["text"] = "7% increased Attack Speed (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_37213", + ["text"] = "7% increased Damage over Time 15% reduced Duration of Ailments on You (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_65319", + ["text"] = "7% increased Damage over Time 5% increased Skill Effect Duration (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_31155", + ["text"] = "7% increased Spell Damage 10% increased maximum Energy Shield (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_60047", + ["text"] = "7% increased Spell Damage 10% increased maximum Mana (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_31967", + ["text"] = "75% chance to avoid Ailments from Critical Strikes (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_7343", + ["text"] = "75% reduced Endurance, Frenzy and Power Charge Duration Gain a Power, Frenzy or Endurance Charge on Kill (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_16794", + ["text"] = "8% Chance to Block Spell Damage -5% Chance to Block (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_29676", + ["text"] = "8% Chance to Block Spell Damage You take 10% of Damage from Blocked Hits (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_24626", + ["text"] = "8% increased Attack Speed (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_8907", + ["text"] = "8% increased Movement Speed Your Travel Skills are Disabled (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_15586", + ["text"] = "8% increased Movement Speed if Dexterity is below 100 (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_54292", + ["text"] = "8% more Cast Speed (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_23770", + ["text"] = "80% increased Effect of Shock 40% increased Effect of Shock on you (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_46253", + ["text"] = "80% increased Endurance, Frenzy and Power Charge Duration (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_24790", + ["text"] = "80% increased Stun Duration on Enemies 40% increased Stun Duration on you (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_58373", + ["text"] = "9% increased Attack Speed (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_19138", + ["text"] = "9% increased Chaos Damage 3% of Physical Damage from Hits taken as Chaos Damage (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_49806", + ["text"] = "9% increased Cold Damage 3% of Physical Damage from Hits taken as Cold Damage (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_63302", + ["text"] = "9% increased Fire Damage 3% of Physical Damage from Hits taken as Fire Damage (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_3449", + ["text"] = "9% increased Global Physical Damage 2% additional Physical Damage Reduction (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_12577", + ["text"] = "9% increased Lightning Damage 3% of Physical Damage from Hits taken as Lightning Damage (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_38842", + ["text"] = "9% more Cast Speed (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_55846", + ["text"] = "Acrobatics (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_64600", + ["text"] = "Adds 1 to 10 Lightning Damage 10% chance to Shock (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_30845", + ["text"] = "Adds 1 to 10 Lightning Damage 10% increased Critical Strike Chance (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_64083", + ["text"] = "Adds 1 to 10 Lightning Damage 10% increased Critical Strike Chance (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_59525", + ["text"] = "Adds 1 to 10 Lightning Damage 20% chance to Shock (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_21850", + ["text"] = "Adds 1 to 12 Lightning Damage 4% increased Lightning Damage taken (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_34147", + ["text"] = "Adds 1 to 12 Lightning Damage to Spells (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_44428", + ["text"] = "Adds 1 to 12 Lightning Damage to Spells (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_40676", + ["text"] = "Adds 1 to 13 Lightning Damage to Spells 20% chance to Shock (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_43267", + ["text"] = "Adds 1 to 13 Lightning Damage to Spells 40% increased Spell Critical Strike Chance (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_8885", + ["text"] = "Adds 1 to 14 Lightning Damage to Spells 10% chance to Shock (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_57431", + ["text"] = "Adds 1 to 14 Lightning Damage to Spells 25% increased Spell Critical Strike Chance (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_16838", + ["text"] = "Adds 1 to 15 Lightning Damage to Spells 4% increased Lightning Damage taken (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_18134", + ["text"] = "Adds 1 to 16 Lightning Damage (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_60934", + ["text"] = "Adds 1 to 16 Lightning Damage to Spells 6% increased Lightning Damage taken (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_11676", + ["text"] = "Adds 1 to 17 Lightning Damage (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_4512", + ["text"] = "Adds 1 to 18 Lightning Damage 10% chance to Shock (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_39498", + ["text"] = "Adds 1 to 18 Lightning Damage 10% increased Critical Strike Chance (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_37645", + ["text"] = "Adds 1 to 19 Lightning Damage 10% increased Critical Strike Chance (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_20475", + ["text"] = "Adds 1 to 19 Lightning Damage 20% chance to Shock (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_64192", + ["text"] = "Adds 1 to 20 Lightning Damage 4% increased Lightning Damage taken (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_58772", + ["text"] = "Adds 1 to 21 Lightning Damage 6% increased Lightning Damage taken (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_44958", + ["text"] = "Adds 1 to 21 Lightning Damage to Spells (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_60651", + ["text"] = "Adds 1 to 22 Lightning Damage to Spells (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_51545", + ["text"] = "Adds 1 to 28 Lightning Damage to Spells 6% increased Lightning Damage taken (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_50331", + ["text"] = "Adds 1 to 29 Lightning Damage (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_20004", + ["text"] = "Adds 1 to 29 Lightning Damage to Spells 4% increased Lightning Damage taken (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_43950", + ["text"] = "Adds 1 to 3 Chaos Damage to Spells 10% chance to Poison on Hit with Spell Damage (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_19477", + ["text"] = "Adds 1 to 3 Chaos Damage to Spells 10% increased Effect of Withered (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_49656", + ["text"] = "Adds 1 to 3 Chaos Damage to Spells 20% chance to Poison on Hit with Spell Damage (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_22564", + ["text"] = "Adds 1 to 3 Chaos Damage to Spells 20% increased Effect of Withered (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_17194", + ["text"] = "Adds 1 to 3 Cold Damage to Attacks with this Weapon per 10 Dexterity (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_4889", + ["text"] = "Adds 1 to 3 Cold Damage to Spells 10% chance to Freeze (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_53496", + ["text"] = "Adds 1 to 3 Cold Damage to Spells 5% increased Cast Speed (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_54726", + ["text"] = "Adds 1 to 3 Fire Damage to Attacks with this Weapon per 10 Strength (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_47615", + ["text"] = "Adds 1 to 3 Fire Damage to Spells 10% chance to Ignite (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_25630", + ["text"] = "Adds 1 to 3 Lightning Damage to Attacks with this Weapon per 10 Intelligence (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_57703", + ["text"] = "Adds 1 to 3 Physical Damage 15% chance to Impale Enemies on Hit with Attacks (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_64268", + ["text"] = "Adds 1 to 3 Physical Damage 15% chance to cause Bleeding on Hit (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_26442", + ["text"] = "Adds 1 to 3 Physical Damage 15% of Physical Damage Converted to Chaos Damage (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_9502", + ["text"] = "Adds 1 to 3 Physical Damage 15% of Physical Damage Converted to Cold Damage (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_48262", + ["text"] = "Adds 1 to 3 Physical Damage 15% of Physical Damage Converted to Fire Damage (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_19998", + ["text"] = "Adds 1 to 3 Physical Damage 15% of Physical Damage Converted to Lightning Damage (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_15253", + ["text"] = "Adds 1 to 3 Physical Damage 20% of Physical Damage converted to a random Element (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_6968", + ["text"] = "Adds 1 to 3 Physical Damage to Spells 15% of Physical Damage Converted to Chaos Damage (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_2537", + ["text"] = "Adds 1 to 3 Physical Damage to Spells 15% of Physical Damage Converted to Cold Damage (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_38894", + ["text"] = "Adds 1 to 3 Physical Damage to Spells 15% of Physical Damage Converted to Fire Damage (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_5361", + ["text"] = "Adds 1 to 3 Physical Damage to Spells 15% of Physical Damage Converted to Lightning Damage (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_36247", + ["text"] = "Adds 1 to 3 Physical Damage to Spells 25% of Physical Damage Converted to Chaos Damage (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_10727", + ["text"] = "Adds 1 to 3 Physical Damage to Spells 25% of Physical Damage Converted to Cold Damage (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_48760", + ["text"] = "Adds 1 to 3 Physical Damage to Spells 25% of Physical Damage Converted to Fire Damage (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_48103", + ["text"] = "Adds 1 to 3 Physical Damage to Spells 25% of Physical Damage Converted to Lightning Damage (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_63918", + ["text"] = "Adds 1 to 3 Physical Damage to Spells Overwhelm 10% Physical Damage Reduction (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_55437", + ["text"] = "Adds 1 to 3 Physical Damage to Spells Overwhelm 5% Physical Damage Reduction (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_16589", + ["text"] = "Adds 1 to 30 Lightning Damage (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_47211", + ["text"] = "Adds 1 to 38 Lightning Damage 6% increased Lightning Damage taken (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_53584", + ["text"] = "Adds 1 to 4 Physical Damage 15% chance to Impale Enemies on Hit with Attacks (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_452", + ["text"] = "Adds 1 to 4 Physical Damage 15% chance to cause Bleeding on Hit (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_7846", + ["text"] = "Adds 1 to 4 Physical Damage 15% of Physical Damage Converted to Chaos Damage (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_42157", + ["text"] = "Adds 1 to 4 Physical Damage 15% of Physical Damage Converted to Cold Damage (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_54503", + ["text"] = "Adds 1 to 4 Physical Damage 15% of Physical Damage Converted to Fire Damage (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_50630", + ["text"] = "Adds 1 to 4 Physical Damage 15% of Physical Damage Converted to Lightning Damage (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_24002", + ["text"] = "Adds 1 to 4 Physical Damage 20% of Physical Damage converted to a random Element (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_59436", + ["text"] = "Adds 1 to 41 Lightning Damage 4% increased Lightning Damage taken (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_18265", + ["text"] = "Adds 1 to 5 Chaos Damage 10% increased Effect of Withered (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_17840", + ["text"] = "Adds 1 to 5 Chaos Damage 15% chance to Poison on Hit (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_34553", + ["text"] = "Adds 1 to 5 Chaos Damage 15% chance to Poison on Hit (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_5998", + ["text"] = "Adds 1 to 5 Chaos Damage 20% increased Effect of Withered (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_34956", + ["text"] = "Adds 1 to 5 Chaos Damage to Spells (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_64377", + ["text"] = "Adds 1 to 5 Cold Damage 10% chance to Freeze (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_6602", + ["text"] = "Adds 1 to 5 Cold Damage 4% increased Attack Speed (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_34655", + ["text"] = "Adds 1 to 5 Fire Damage 10% chance to Ignite (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_42504", + ["text"] = "Adds 1 to 5 Lightning Damage to Attacks with this Weapon per 10 Intelligence (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_12692", + ["text"] = "Adds 1 to 5 Lightning Damage to Spells 10% chance to Shock (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_61845", + ["text"] = "Adds 1 to 5 Lightning Damage to Spells 25% increased Spell Critical Strike Chance (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_53045", + ["text"] = "Adds 1 to 5 Physical Damage to Spells (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_5117", + ["text"] = "Adds 1 to 6 Chaos Damage (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_5940", + ["text"] = "Adds 1 to 6 Lightning Damage 10% chance to Shock (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_58047", + ["text"] = "Adds 1 to 6 Lightning Damage 10% increased Critical Strike Chance (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_14289", + ["text"] = "Adds 1 to 6 Lightning Damage to Spells (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_25397", + ["text"] = "Adds 1 to 7 Lightning Damage to Spells 10% chance to Shock (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_59835", + ["text"] = "Adds 1 to 7 Lightning Damage to Spells 20% chance to Shock (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_33978", + ["text"] = "Adds 1 to 7 Lightning Damage to Spells 25% increased Spell Critical Strike Chance (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_9832", + ["text"] = "Adds 1 to 7 Lightning Damage to Spells 40% increased Spell Critical Strike Chance (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_4424", + ["text"] = "Adds 1 to 9 Lightning Damage (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_9156", + ["text"] = "Adds 1 to 9 Lightning Damage to Spells 4% increased Lightning Damage taken (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_63835", + ["text"] = "Adds 10 to 16 Cold Damage to Spells Your Cold Damage cannot Chill (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_7388", + ["text"] = "Adds 10 to 17 Chaos Damage 7% reduced maximum Life (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_15671", + ["text"] = "Adds 10 to 17 Chaos Damage to Spells (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_45961", + ["text"] = "Adds 10 to 17 Cold Damage (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_54352", + ["text"] = "Adds 10 to 17 Cold Damage to Spells Your Cold Damage cannot Chill (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_21009", + ["text"] = "Adds 10 to 17 Fire Damage Adds 10 to 17 Cold Damage Adds 3 to 26 Lightning Damage (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_6140", + ["text"] = "Adds 10 to 17 Physical Damage to Spells (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_7619", + ["text"] = "Adds 10 to 186 Lightning Damage (Tier 5)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_4488", + ["text"] = "Adds 102 to 153 Fire Damage 6% reduced Attack Speed (Tier 5)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_41492", + ["text"] = "Adds 11 to 15 Fire Damage Adds 11 to 15 Cold Damage Adds 3 to 25 Lightning Damage 15% increased Effect of Non-Damaging Ailments (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_44129", + ["text"] = "Adds 11 to 17 Chaos Damage to Spells 20% chance to Poison on Hit with Spell Damage (Tier 4)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_39104", + ["text"] = "Adds 11 to 17 Chaos Damage to Spells 20% increased Effect of Withered (Tier 4)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_13309", + ["text"] = "Adds 11 to 17 Chaos Damage to Spells (Tier 4)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_34594", + ["text"] = "Adds 11 to 17 Fire Damage to Spells 10% reduced Cast Speed (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_60489", + ["text"] = "Adds 11 to 17 Physical Damage to Spells 25% of Physical Damage Converted to Chaos Damage (Tier 4)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_43554", + ["text"] = "Adds 11 to 17 Physical Damage to Spells 25% of Physical Damage Converted to Cold Damage (Tier 4)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_63657", + ["text"] = "Adds 11 to 17 Physical Damage to Spells 25% of Physical Damage Converted to Fire Damage (Tier 4)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_4189", + ["text"] = "Adds 11 to 17 Physical Damage to Spells 25% of Physical Damage Converted to Lightning Damage (Tier 4)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_19601", + ["text"] = "Adds 11 to 17 Physical Damage to Spells Overwhelm 10% Physical Damage Reduction (Tier 4)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_43622", + ["text"] = "Adds 11 to 17 Physical Damage to Spells (Tier 4)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_22332", + ["text"] = "Adds 11 to 25 Physical Damage 6% reduced Attack Speed (Tier 4)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_1490", + ["text"] = "Adds 11 to 26 Physical Damage (Tier 5)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_18947", + ["text"] = "Adds 12 to 18 Chaos Damage 5% reduced maximum Life (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_25482", + ["text"] = "Adds 12 to 18 Cold Damage (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_5360", + ["text"] = "Adds 12 to 18 Fire Damage Adds 12 to 18 Cold Damage Adds 3 to 29 Lightning Damage Cannot inflict Elemental Ailments (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_4131", + ["text"] = "Adds 12 to 18 Fire Damage to Spells 6% reduced Cast Speed (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_27407", + ["text"] = "Adds 12 to 19 Cold Damage 10% chance to Freeze (Tier 4)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_50690", + ["text"] = "Adds 12 to 19 Cold Damage 4% increased Attack Speed (Tier 4)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_17381", + ["text"] = "Adds 12 to 19 Fire Damage 10% chance to Ignite (Tier 4)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_9772", + ["text"] = "Adds 12 to 20 Fire Damage Adds 12 to 20 Cold Damage Adds 3 to 25 Lightning Damage 10% chance to Freeze, Shock and Ignite (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_51974", + ["text"] = "Adds 13 to 18 Fire Damage (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_32429", + ["text"] = "Adds 13 to 19 Fire Damage (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_24863", + ["text"] = "Adds 13 to 20 Chaos Damage to Spells 10% chance to Poison on Hit with Spell Damage (Tier 5)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_34674", + ["text"] = "Adds 13 to 20 Chaos Damage to Spells 10% increased Effect of Withered (Tier 5)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_30676", + ["text"] = "Adds 13 to 20 Fire Damage Adds 13 to 20 Cold Damage Adds 3 to 25 Lightning Damage 5% chance to Freeze, Shock and Ignite (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_64977", + ["text"] = "Adds 13 to 20 Physical Damage to Spells 15% of Physical Damage Converted to Chaos Damage (Tier 5)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_2252", + ["text"] = "Adds 13 to 20 Physical Damage to Spells 15% of Physical Damage Converted to Cold Damage (Tier 5)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_24267", + ["text"] = "Adds 13 to 20 Physical Damage to Spells 15% of Physical Damage Converted to Fire Damage (Tier 5)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_7125", + ["text"] = "Adds 13 to 20 Physical Damage to Spells 15% of Physical Damage Converted to Lightning Damage (Tier 5)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_54859", + ["text"] = "Adds 13 to 20 Physical Damage to Spells Overwhelm 5% Physical Damage Reduction (Tier 5)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_741", + ["text"] = "Adds 13 to 21 Cold Damage 20% chance to Freeze (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_6546", + ["text"] = "Adds 13 to 21 Cold Damage 4% increased Attack Speed (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_23976", + ["text"] = "Adds 13 to 22 Fire Damage 20% chance to Ignite (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_2995", + ["text"] = "Adds 13 to 242 Lightning Damage 6% increased Lightning Damage taken (Tier 5)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_12769", + ["text"] = "Adds 14 to 21 Cold Damage to Spells (Tier 4)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_54382", + ["text"] = "Adds 14 to 22 Chaos Damage to Spells 5% reduced maximum Life (Tier 4)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_48564", + ["text"] = "Adds 14 to 22 Chaos Damage to Spells 7% reduced maximum Life (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_1766", + ["text"] = "Adds 14 to 22 Physical Damage to Spells 10% reduced Cast Speed (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_27249", + ["text"] = "Adds 14 to 22 Physical Damage to Spells 6% reduced Cast Speed (Tier 4)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_39084", + ["text"] = "Adds 14 to 23 Cold Damage Your Cold Damage cannot Chill (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_12476", + ["text"] = "Adds 14 to 23 Fire Damage Adds 14 to 23 Cold Damage Adds 3 to 33 Lightning Damage Cannot inflict Elemental Ailments (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_4467", + ["text"] = "Adds 14 to 33 Physical Damage 6% reduced Attack Speed (Tier 5)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_16474", + ["text"] = "Adds 15 to 24 Chaos Damage 15% chance to Poison on Hit (Tier 4)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_1636", + ["text"] = "Adds 15 to 24 Chaos Damage 20% increased Effect of Withered (Tier 4)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_46252", + ["text"] = "Adds 15 to 24 Chaos Damage (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_54260", + ["text"] = "Adds 15 to 24 Chaos Damage (Tier 4)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_21311", + ["text"] = "Adds 15 to 24 Cold Damage Your Cold Damage cannot Chill (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_60600", + ["text"] = "Adds 15 to 24 Cold Damage to Spells (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_35511", + ["text"] = "Adds 15 to 24 Fire Damage to Spells (Tier 4)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_39077", + ["text"] = "Adds 16 to 24 Fire Damage 6% reduced Attack Speed (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_3471", + ["text"] = "Adds 16 to 25 Cold Damage to Spells 10% increased Cast Speed (Tier 4)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_27558", + ["text"] = "Adds 16 to 25 Cold Damage to Spells 20% chance to Freeze (Tier 4)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_54465", + ["text"] = "Adds 16 to 26 Fire Damage 6% reduced Attack Speed (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_30045", + ["text"] = "Adds 16 to 26 Fire Damage to Spells 20% chance to Ignite (Tier 4)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_10201", + ["text"] = "Adds 16 to 26 Fire Damage to Spells (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_62311", + ["text"] = "Adds 17 to 25 Cold Damage to Spells 10% chance to Freeze (Tier 5)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_12029", + ["text"] = "Adds 17 to 25 Cold Damage to Spells 5% increased Cast Speed (Tier 5)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_63570", + ["text"] = "Adds 17 to 26 Fire Damage Adds 17 to 26 Cold Damage Adds 3 to 42 Lightning Damage (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_25806", + ["text"] = "Adds 18 to 27 Fire Damage Adds 18 to 27 Cold Damage Adds 3 to 42 Lightning Damage (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_31463", + ["text"] = "Adds 18 to 28 Chaos Damage 10% increased Effect of Withered (Tier 5)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_52362", + ["text"] = "Adds 18 to 28 Chaos Damage 15% chance to Poison on Hit (Tier 5)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_60397", + ["text"] = "Adds 18 to 28 Chaos Damage to Spells (Tier 4)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_64962", + ["text"] = "Adds 18 to 28 Cold Damage to Spells Your Cold Damage cannot Chill (Tier 4)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_20146", + ["text"] = "Adds 18 to 28 Fire Damage to Spells 10% chance to Ignite (Tier 5)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_39355", + ["text"] = "Adds 18 to 28 Physical Damage to Spells (Tier 4)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_39882", + ["text"] = "Adds 19 to 30 Cold Damage (Tier 4)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_50658", + ["text"] = "Adds 19 to 30 Fire Damage to Spells 6% reduced Cast Speed (Tier 4)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_30283", + ["text"] = "Adds 19 to 31 Chaos Damage 5% reduced maximum Life (Tier 4)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_5491", + ["text"] = "Adds 2 to 22 Lightning Damage to Spells 10% chance to Shock (Tier 4)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_40017", + ["text"] = "Adds 2 to 22 Lightning Damage to Spells 25% increased Spell Critical Strike Chance (Tier 4)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_31739", + ["text"] = "Adds 2 to 24 Lightning Damage to Spells 20% chance to Shock (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_28686", + ["text"] = "Adds 2 to 24 Lightning Damage to Spells 40% increased Spell Critical Strike Chance (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_43163", + ["text"] = "Adds 2 to 37 Lightning Damage to Spells (Tier 4)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_9998", + ["text"] = "Adds 2 to 4 Chaos Damage to Attacks with this Weapon per 10 of your lowest Attribute (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_1270", + ["text"] = "Adds 2 to 4 Chaos Damage to Spells 10% chance to Poison on Hit with Spell Damage (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_32325", + ["text"] = "Adds 2 to 4 Chaos Damage to Spells 10% increased Effect of Withered (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_56001", + ["text"] = "Adds 2 to 4 Cold Damage to Attacks with this Weapon per 10 Dexterity (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_56717", + ["text"] = "Adds 2 to 4 Cold Damage to Spells 10% chance to Freeze (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_18814", + ["text"] = "Adds 2 to 4 Cold Damage to Spells 5% increased Cast Speed (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_37224", + ["text"] = "Adds 2 to 4 Fire Damage to Attacks with this Weapon per 10 Strength (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_2663", + ["text"] = "Adds 2 to 4 Fire Damage to Spells 10% chance to Ignite (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_41288", + ["text"] = "Adds 2 to 4 Physical Damage to Spells 15% of Physical Damage Converted to Chaos Damage (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_17075", + ["text"] = "Adds 2 to 4 Physical Damage to Spells 15% of Physical Damage Converted to Cold Damage (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_47310", + ["text"] = "Adds 2 to 4 Physical Damage to Spells 15% of Physical Damage Converted to Fire Damage (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_10049", + ["text"] = "Adds 2 to 4 Physical Damage to Spells 15% of Physical Damage Converted to Lightning Damage (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_7879", + ["text"] = "Adds 2 to 4 Physical Damage to Spells Overwhelm 5% Physical Damage Reduction (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_53189", + ["text"] = "Adds 2 to 41 Lightning Damage to Spells (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_3496", + ["text"] = "Adds 2 to 43 Lightning Damage to Spells 10% chance to Shock (Tier 5)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_46439", + ["text"] = "Adds 2 to 43 Lightning Damage to Spells 25% increased Spell Critical Strike Chance (Tier 5)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_13771", + ["text"] = "Adds 2 to 48 Lightning Damage to Spells 4% increased Lightning Damage taken (Tier 4)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_62856", + ["text"] = "Adds 2 to 5 Chaos Damage to Spells 5% reduced maximum Life (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_8001", + ["text"] = "Adds 2 to 5 Chaos Damage to Spells (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_60122", + ["text"] = "Adds 2 to 5 Cold Damage to Spells 10% increased Cast Speed (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_41494", + ["text"] = "Adds 2 to 5 Cold Damage to Spells 20% chance to Freeze (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_7221", + ["text"] = "Adds 2 to 5 Cold Damage to Spells (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_41540", + ["text"] = "Adds 2 to 5 Fire Damage to Spells (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_16058", + ["text"] = "Adds 2 to 5 Physical Damage to Spells 6% reduced Cast Speed (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_37998", + ["text"] = "Adds 2 to 5 Physical Damage to Spells (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_37788", + ["text"] = "Adds 2 to 53 Lightning Damage to Spells 6% increased Lightning Damage taken (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_60686", + ["text"] = "Adds 2 to 6 Chaos Damage to Spells (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_4180", + ["text"] = "Adds 2 to 6 Cold Damage to Spells Your Cold Damage cannot Chill (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_5887", + ["text"] = "Adds 2 to 6 Fire Damage to Spells 20% chance to Ignite (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_58769", + ["text"] = "Adds 2 to 6 Physical Damage 15% chance to Impale Enemies on Hit with Attacks (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_62527", + ["text"] = "Adds 2 to 6 Physical Damage 15% chance to Impale Enemies on Hit with Attacks (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_15398", + ["text"] = "Adds 2 to 6 Physical Damage 15% chance to cause Bleeding on Hit (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_62", + ["text"] = "Adds 2 to 6 Physical Damage 15% chance to cause Bleeding on Hit (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_57561", + ["text"] = "Adds 2 to 6 Physical Damage 15% of Physical Damage Converted to Chaos Damage (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_58280", + ["text"] = "Adds 2 to 6 Physical Damage 15% of Physical Damage Converted to Cold Damage (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_49446", + ["text"] = "Adds 2 to 6 Physical Damage 15% of Physical Damage Converted to Fire Damage (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_42341", + ["text"] = "Adds 2 to 6 Physical Damage 15% of Physical Damage Converted to Lightning Damage (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_13318", + ["text"] = "Adds 2 to 6 Physical Damage 20% of Physical Damage converted to a random Element (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_13422", + ["text"] = "Adds 2 to 6 Physical Damage 25% of Physical Damage Converted to Chaos Damage (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_35090", + ["text"] = "Adds 2 to 6 Physical Damage 25% of Physical Damage Converted to Cold Damage (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_28724", + ["text"] = "Adds 2 to 6 Physical Damage 25% of Physical Damage Converted to Fire Damage (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_53227", + ["text"] = "Adds 2 to 6 Physical Damage 25% of Physical Damage Converted to Lightning Damage (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_43606", + ["text"] = "Adds 2 to 6 Physical Damage 35% of Physical Damage converted to a random Element (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_7394", + ["text"] = "Adds 2 to 6 Physical Damage (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_12689", + ["text"] = "Adds 2 to 6 Physical Damage to Spells (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_58320", + ["text"] = "Adds 2 to 7 Physical Damage 6% reduced Attack Speed (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_24582", + ["text"] = "Adds 2 to 8 Physical Damage (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_14627", + ["text"] = "Adds 20 to 29 Fire Damage Adds 20 to 29 Cold Damage Adds 4 to 46 Lightning Damage 25% increased Effect of Non-Damaging Ailments (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_57950", + ["text"] = "Adds 20 to 30 Chaos Damage 7% reduced maximum Life (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_39641", + ["text"] = "Adds 20 to 32 Cold Damage to Spells Your Cold Damage cannot Chill (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_57471", + ["text"] = "Adds 21 to 33 Chaos Damage to Spells (Tier 5)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_14210", + ["text"] = "Adds 21 to 33 Physical Damage to Spells (Tier 5)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_7106", + ["text"] = "Adds 21 to 34 Cold Damage (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_46484", + ["text"] = "Adds 21 to 34 Fire Damage to Spells 10% reduced Cast Speed (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_51463", + ["text"] = "Adds 22 to 32 Fire Damage (Tier 4)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_65008", + ["text"] = "Adds 22 to 33 Chaos Damage to Spells 20% chance to Poison on Hit with Spell Damage (Tier 5)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_16291", + ["text"] = "Adds 22 to 33 Chaos Damage to Spells 20% increased Effect of Withered (Tier 5)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_11109", + ["text"] = "Adds 22 to 33 Physical Damage to Spells 25% of Physical Damage Converted to Chaos Damage (Tier 5)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_24082", + ["text"] = "Adds 22 to 33 Physical Damage to Spells 25% of Physical Damage Converted to Cold Damage (Tier 5)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_3613", + ["text"] = "Adds 22 to 33 Physical Damage to Spells 25% of Physical Damage Converted to Fire Damage (Tier 5)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_53095", + ["text"] = "Adds 22 to 33 Physical Damage to Spells 25% of Physical Damage Converted to Lightning Damage (Tier 5)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_56142", + ["text"] = "Adds 22 to 33 Physical Damage to Spells Overwhelm 10% Physical Damage Reduction (Tier 5)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_35180", + ["text"] = "Adds 23 to 34 Fire Damage Adds 23 to 34 Cold Damage Adds 4 to 56 Lightning Damage Cannot inflict Elemental Ailments (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_25316", + ["text"] = "Adds 23 to 35 Cold Damage 20% chance to Freeze (Tier 4)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_23822", + ["text"] = "Adds 23 to 35 Cold Damage 4% increased Attack Speed (Tier 4)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_19004", + ["text"] = "Adds 23 to 36 Fire Damage 20% chance to Ignite (Tier 4)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_52619", + ["text"] = "Adds 24 to 35 Cold Damage 10% chance to Freeze (Tier 5)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_61585", + ["text"] = "Adds 24 to 35 Cold Damage 4% increased Attack Speed (Tier 5)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_46485", + ["text"] = "Adds 24 to 35 Fire Damage Adds 24 to 35 Cold Damage Adds 3 to 55 Lightning Damage Cannot inflict Elemental Ailments (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_23098", + ["text"] = "Adds 24 to 35 Fire Damage Adds 24 to 35 Cold Damage Adds 4 to 46 Lightning Damage 10% chance to Freeze, Shock and Ignite (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_5561", + ["text"] = "Adds 24 to 35 Fire Damage (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_60066", + ["text"] = "Adds 24 to 37 Chaos Damage to Spells 7% reduced maximum Life (Tier 4)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_49935", + ["text"] = "Adds 24 to 37 Physical Damage to Spells 10% reduced Cast Speed (Tier 4)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_56300", + ["text"] = "Adds 25 to 39 Fire Damage 10% chance to Ignite (Tier 5)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_55950", + ["text"] = "Adds 26 to 39 Chaos Damage (Tier 4)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_7504", + ["text"] = "Adds 26 to 39 Cold Damage Your Cold Damage cannot Chill (Tier 4)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_26963", + ["text"] = "Adds 26 to 40 Cold Damage to Spells (Tier 4)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_52222", + ["text"] = "Adds 27 to 42 Fire Damage 6% reduced Attack Speed (Tier 4)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_17425", + ["text"] = "Adds 28 to 42 Chaos Damage to Spells 5% reduced maximum Life (Tier 5)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_15149", + ["text"] = "Adds 28 to 42 Physical Damage to Spells 6% reduced Cast Speed (Tier 5)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_30193", + ["text"] = "Adds 28 to 43 Fire Damage to Spells (Tier 4)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_49032", + ["text"] = "Adds 28 to 44 Cold Damage Your Cold Damage cannot Chill (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_60102", + ["text"] = "Adds 29 to 43 Cold Damage to Spells (Tier 5)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_55286", + ["text"] = "Adds 29 to 46 Chaos Damage (Tier 5)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_12551", + ["text"] = "Adds 3 to 10 Physical Damage 15% chance to Impale Enemies on Hit with Attacks (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_61223", + ["text"] = "Adds 3 to 10 Physical Damage 15% chance to cause Bleeding on Hit (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_22547", + ["text"] = "Adds 3 to 10 Physical Damage 25% of Physical Damage Converted to Chaos Damage (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_58310", + ["text"] = "Adds 3 to 10 Physical Damage 25% of Physical Damage Converted to Cold Damage (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_9703", + ["text"] = "Adds 3 to 10 Physical Damage 25% of Physical Damage Converted to Fire Damage (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_3893", + ["text"] = "Adds 3 to 10 Physical Damage 25% of Physical Damage Converted to Lightning Damage (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_25664", + ["text"] = "Adds 3 to 10 Physical Damage 35% of Physical Damage converted to a random Element (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_31100", + ["text"] = "Adds 3 to 10 Physical Damage (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_2397", + ["text"] = "Adds 3 to 11 Physical Damage 6% reduced Attack Speed (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_38707", + ["text"] = "Adds 3 to 31 Lightning Damage 10% chance to Shock (Tier 4)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_5507", + ["text"] = "Adds 3 to 31 Lightning Damage 10% increased Critical Strike Chance (Tier 4)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_47415", + ["text"] = "Adds 3 to 34 Lightning Damage 10% increased Critical Strike Chance (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_56853", + ["text"] = "Adds 3 to 34 Lightning Damage 20% chance to Shock (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_2961", + ["text"] = "Adds 3 to 41 Lightning Damage to Spells 20% chance to Shock (Tier 4)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_31432", + ["text"] = "Adds 3 to 41 Lightning Damage to Spells 40% increased Spell Critical Strike Chance (Tier 4)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_42984", + ["text"] = "Adds 3 to 5 Chaos Damage to Attacks with this Weapon per 10 of your lowest Attribute (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_17672", + ["text"] = "Adds 3 to 51 Lightning Damage (Tier 4)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_24278", + ["text"] = "Adds 3 to 58 Lightning Damage (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_25509", + ["text"] = "Adds 3 to 6 Chaos Damage 10% increased Effect of Withered (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_5349", + ["text"] = "Adds 3 to 6 Chaos Damage 15% chance to Poison on Hit (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_6224", + ["text"] = "Adds 3 to 6 Chaos Damage to Spells 20% chance to Poison on Hit with Spell Damage (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_51341", + ["text"] = "Adds 3 to 6 Chaos Damage to Spells 20% increased Effect of Withered (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_9893", + ["text"] = "Adds 3 to 6 Cold Damage 10% chance to Freeze (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_22317", + ["text"] = "Adds 3 to 6 Cold Damage 4% increased Attack Speed (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_31456", + ["text"] = "Adds 3 to 6 Fire Damage 10% chance to Ignite (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_13110", + ["text"] = "Adds 3 to 6 Fire Damage Adds 3 to 6 Cold Damage Adds 1 to 8 Lightning Damage 15% increased Effect of Non-Damaging Ailments (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_48691", + ["text"] = "Adds 3 to 6 Fire Damage Adds 3 to 6 Cold Damage Adds 1 to 8 Lightning Damage 5% chance to Freeze, Shock and Ignite (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_65204", + ["text"] = "Adds 3 to 6 Physical Damage to Spells 25% of Physical Damage Converted to Chaos Damage (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_34534", + ["text"] = "Adds 3 to 6 Physical Damage to Spells 25% of Physical Damage Converted to Cold Damage (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_26215", + ["text"] = "Adds 3 to 6 Physical Damage to Spells 25% of Physical Damage Converted to Fire Damage (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_40271", + ["text"] = "Adds 3 to 6 Physical Damage to Spells 25% of Physical Damage Converted to Lightning Damage (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_28715", + ["text"] = "Adds 3 to 6 Physical Damage to Spells Overwhelm 10% Physical Damage Reduction (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_42997", + ["text"] = "Adds 3 to 60 Lightning Damage 10% chance to Shock (Tier 5)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_2816", + ["text"] = "Adds 3 to 60 Lightning Damage 10% increased Critical Strike Chance (Tier 5)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_8937", + ["text"] = "Adds 3 to 66 Lightning Damage 4% increased Lightning Damage taken (Tier 4)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_15896", + ["text"] = "Adds 3 to 68 Lightning Damage to Spells (Tier 4)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_27339", + ["text"] = "Adds 3 to 7 Cold Damage to Spells (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_7016", + ["text"] = "Adds 3 to 7 Physical Damage 15% chance to Impale Enemies on Hit with Attacks (Tier 4)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_61454", + ["text"] = "Adds 3 to 7 Physical Damage 15% chance to cause Bleeding on Hit (Tier 4)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_671", + ["text"] = "Adds 3 to 7 Physical Damage 15% of Physical Damage Converted to Chaos Damage (Tier 4)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_34572", + ["text"] = "Adds 3 to 7 Physical Damage 15% of Physical Damage Converted to Cold Damage (Tier 4)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_24057", + ["text"] = "Adds 3 to 7 Physical Damage 15% of Physical Damage Converted to Fire Damage (Tier 4)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_12038", + ["text"] = "Adds 3 to 7 Physical Damage 15% of Physical Damage Converted to Lightning Damage (Tier 4)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_5806", + ["text"] = "Adds 3 to 7 Physical Damage 20% of Physical Damage converted to a random Element (Tier 4)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_32660", + ["text"] = "Adds 3 to 75 Lightning Damage 6% increased Lightning Damage taken (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_6852", + ["text"] = "Adds 3 to 8 Chaos Damage (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_11894", + ["text"] = "Adds 3 to 8 Physical Damage 15% chance to Impale Enemies on Hit with Attacks (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_26710", + ["text"] = "Adds 3 to 8 Physical Damage 15% chance to cause Bleeding on Hit (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_36266", + ["text"] = "Adds 3 to 8 Physical Damage 25% of Physical Damage Converted to Chaos Damage (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_59590", + ["text"] = "Adds 3 to 8 Physical Damage 25% of Physical Damage Converted to Cold Damage (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_17154", + ["text"] = "Adds 3 to 8 Physical Damage 25% of Physical Damage Converted to Fire Damage (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_57439", + ["text"] = "Adds 3 to 8 Physical Damage 25% of Physical Damage Converted to Lightning Damage (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_5172", + ["text"] = "Adds 3 to 8 Physical Damage 35% of Physical Damage converted to a random Element (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_8502", + ["text"] = "Adds 30 to 45 Fire Damage to Spells (Tier 5)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_22393", + ["text"] = "Adds 30 to 47 Fire Damage 6% reduced Attack Speed (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_59841", + ["text"] = "Adds 31 to 46 Chaos Damage 15% chance to Poison on Hit (Tier 5)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_62579", + ["text"] = "Adds 31 to 46 Chaos Damage 20% increased Effect of Withered (Tier 5)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_65047", + ["text"] = "Adds 32 to 47 Cold Damage to Spells 10% increased Cast Speed (Tier 5)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_59529", + ["text"] = "Adds 32 to 47 Cold Damage to Spells 20% chance to Freeze (Tier 5)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_27395", + ["text"] = "Adds 34 to 49 Fire Damage Adds 34 to 49 Cold Damage Adds 4 to 78 Lightning Damage (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_3066", + ["text"] = "Adds 34 to 51 Chaos Damage 7% reduced maximum Life (Tier 4)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_56432", + ["text"] = "Adds 34 to 51 Fire Damage to Spells 20% chance to Ignite (Tier 5)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_33090", + ["text"] = "Adds 34 to 52 Cold Damage to Spells Your Cold Damage cannot Chill (Tier 4)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_18508", + ["text"] = "Adds 36 to 55 Chaos Damage to Spells (Tier 5)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_52206", + ["text"] = "Adds 36 to 55 Physical Damage to Spells (Tier 5)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_60744", + ["text"] = "Adds 37 to 55 Cold Damage (Tier 4)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_19083", + ["text"] = "Adds 37 to 55 Fire Damage to Spells 10% reduced Cast Speed (Tier 4)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_47547", + ["text"] = "Adds 37 to 56 Cold Damage to Spells Your Cold Damage cannot Chill (Tier 5)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_31388", + ["text"] = "Adds 39 to 59 Chaos Damage 5% reduced maximum Life (Tier 5)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_63183", + ["text"] = "Adds 39 to 59 Fire Damage to Spells 6% reduced Cast Speed (Tier 5)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_40598", + ["text"] = "Adds 39 to 61 Fire Damage (Tier 4)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_25161", + ["text"] = "Adds 4 to 12 Physical Damage 6% reduced Attack Speed (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_12538", + ["text"] = "Adds 4 to 58 Lightning Damage 10% increased Critical Strike Chance (Tier 4)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_27326", + ["text"] = "Adds 4 to 58 Lightning Damage 20% chance to Shock (Tier 4)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_23529", + ["text"] = "Adds 4 to 6 Chaos Damage 5% reduced maximum Life (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_35963", + ["text"] = "Adds 4 to 6 Chaos Damage (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_65446", + ["text"] = "Adds 4 to 6 Chaos Damage to Spells 10% chance to Poison on Hit with Spell Damage (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_746", + ["text"] = "Adds 4 to 6 Chaos Damage to Spells 10% increased Effect of Withered (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_23395", + ["text"] = "Adds 4 to 6 Cold Damage 20% chance to Freeze (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_21944", + ["text"] = "Adds 4 to 6 Cold Damage 4% increased Attack Speed (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_31374", + ["text"] = "Adds 4 to 6 Cold Damage (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_64191", + ["text"] = "Adds 4 to 6 Fire Damage (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_35319", + ["text"] = "Adds 4 to 6 Fire Damage to Spells 6% reduced Cast Speed (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_21473", + ["text"] = "Adds 4 to 6 Physical Damage to Spells 15% of Physical Damage Converted to Chaos Damage (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_55490", + ["text"] = "Adds 4 to 6 Physical Damage to Spells 15% of Physical Damage Converted to Cold Damage (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_46411", + ["text"] = "Adds 4 to 6 Physical Damage to Spells 15% of Physical Damage Converted to Fire Damage (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_34390", + ["text"] = "Adds 4 to 6 Physical Damage to Spells 15% of Physical Damage Converted to Lightning Damage (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_29758", + ["text"] = "Adds 4 to 6 Physical Damage to Spells Overwhelm 5% Physical Damage Reduction (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_9388", + ["text"] = "Adds 4 to 7 Chaos Damage to Spells 7% reduced maximum Life (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_25832", + ["text"] = "Adds 4 to 7 Cold Damage to Spells (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_13412", + ["text"] = "Adds 4 to 7 Physical Damage to Spells 10% reduced Cast Speed (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_52539", + ["text"] = "Adds 4 to 72 Lightning Damage to Spells (Tier 5)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_31320", + ["text"] = "Adds 4 to 8 Cold Damage to Spells 10% chance to Freeze (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_55477", + ["text"] = "Adds 4 to 8 Cold Damage to Spells 5% increased Cast Speed (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_22429", + ["text"] = "Adds 4 to 80 Lightning Damage to Spells 20% chance to Shock (Tier 5)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_30612", + ["text"] = "Adds 4 to 80 Lightning Damage to Spells 40% increased Spell Critical Strike Chance (Tier 5)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_9920", + ["text"] = "Adds 4 to 88 Lightning Damage to Spells 6% increased Lightning Damage taken (Tier 4)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_62341", + ["text"] = "Adds 4 to 9 Cold Damage Your Cold Damage cannot Chill (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_15317", + ["text"] = "Adds 4 to 9 Fire Damage 20% chance to Ignite (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_1775", + ["text"] = "Adds 4 to 9 Fire Damage Adds 4 to 9 Cold Damage Adds 1 to 13 Lightning Damage 15% increased Effect of Non-Damaging Ailments (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_44375", + ["text"] = "Adds 4 to 9 Fire Damage to Spells 10% chance to Ignite (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_37103", + ["text"] = "Adds 4 to 9 Physical Damage (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_42223", + ["text"] = "Adds 4 to 94 Lightning Damage (Tier 4)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_16563", + ["text"] = "Adds 41 to 60 Cold Damage (Tier 5)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_556", + ["text"] = "Adds 42 to 63 Fire Damage (Tier 5)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_7669", + ["text"] = "Adds 43 to 64 Fire Damage Adds 43 to 64 Cold Damage Adds 6 to 102 Lightning Damage Cannot inflict Elemental Ailments (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_10646", + ["text"] = "Adds 45 to 66 Cold Damage 20% chance to Freeze (Tier 5)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_34415", + ["text"] = "Adds 45 to 66 Cold Damage 4% increased Attack Speed (Tier 5)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_32924", + ["text"] = "Adds 47 to 71 Chaos Damage to Spells 7% reduced maximum Life (Tier 5)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_50230", + ["text"] = "Adds 47 to 71 Physical Damage to Spells 10% reduced Cast Speed (Tier 5)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_22572", + ["text"] = "Adds 47 to 73 Cold Damage Your Cold Damage cannot Chill (Tier 4)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_38637", + ["text"] = "Adds 48 to 71 Fire Damage 20% chance to Ignite (Tier 5)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_58910", + ["text"] = "Adds 5 to 10 Chaos Damage 7% reduced maximum Life (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_44609", + ["text"] = "Adds 5 to 10 Chaos Damage to Spells (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_55976", + ["text"] = "Adds 5 to 10 Cold Damage (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_44815", + ["text"] = "Adds 5 to 10 Cold Damage (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_60772", + ["text"] = "Adds 5 to 10 Cold Damage to Spells Your Cold Damage cannot Chill (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_28768", + ["text"] = "Adds 5 to 10 Fire Damage Adds 5 to 10 Cold Damage Adds 1 to 15 Lightning Damage (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_63422", + ["text"] = "Adds 5 to 10 Physical Damage to Spells (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_50747", + ["text"] = "Adds 5 to 13 Physical Damage 15% chance to Impale Enemies on Hit with Attacks (Tier 4)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_33265", + ["text"] = "Adds 5 to 13 Physical Damage 15% chance to cause Bleeding on Hit (Tier 4)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_46249", + ["text"] = "Adds 5 to 13 Physical Damage 25% of Physical Damage Converted to Chaos Damage (Tier 4)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_21596", + ["text"] = "Adds 5 to 13 Physical Damage 25% of Physical Damage Converted to Cold Damage (Tier 4)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_11236", + ["text"] = "Adds 5 to 13 Physical Damage 25% of Physical Damage Converted to Fire Damage (Tier 4)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_10615", + ["text"] = "Adds 5 to 13 Physical Damage 25% of Physical Damage Converted to Lightning Damage (Tier 4)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_8271", + ["text"] = "Adds 5 to 13 Physical Damage 35% of Physical Damage converted to a random Element (Tier 4)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_65423", + ["text"] = "Adds 5 to 13 Physical Damage (Tier 4)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_9716", + ["text"] = "Adds 5 to 7 Chaos Damage to Spells 5% reduced maximum Life (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_63780", + ["text"] = "Adds 5 to 7 Fire Damage to Spells (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_31448", + ["text"] = "Adds 5 to 7 Fire Damage to Spells (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_36536", + ["text"] = "Adds 5 to 7 Physical Damage to Spells 6% reduced Cast Speed (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_22352", + ["text"] = "Adds 5 to 8 Chaos Damage 15% chance to Poison on Hit (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_54019", + ["text"] = "Adds 5 to 8 Chaos Damage 20% increased Effect of Withered (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_46434", + ["text"] = "Adds 5 to 8 Cold Damage to Spells 10% increased Cast Speed (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_44622", + ["text"] = "Adds 5 to 8 Cold Damage to Spells 20% chance to Freeze (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_32431", + ["text"] = "Adds 5 to 8 Cold Damage to Spells Your Cold Damage cannot Chill (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_59541", + ["text"] = "Adds 5 to 8 Fire Damage to Spells 20% chance to Ignite (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_55724", + ["text"] = "Adds 5 to 8 Physical Damage 15% chance to Impale Enemies on Hit with Attacks (Tier 5)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_30556", + ["text"] = "Adds 5 to 8 Physical Damage 15% chance to cause Bleeding on Hit (Tier 5)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_8915", + ["text"] = "Adds 5 to 8 Physical Damage 15% of Physical Damage Converted to Chaos Damage (Tier 5)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_10664", + ["text"] = "Adds 5 to 8 Physical Damage 15% of Physical Damage Converted to Cold Damage (Tier 5)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_61453", + ["text"] = "Adds 5 to 8 Physical Damage 15% of Physical Damage Converted to Fire Damage (Tier 5)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_39503", + ["text"] = "Adds 5 to 8 Physical Damage 15% of Physical Damage Converted to Lightning Damage (Tier 5)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_25097", + ["text"] = "Adds 5 to 8 Physical Damage 20% of Physical Damage converted to a random Element (Tier 5)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_51716", + ["text"] = "Adds 5 to 9 Fire Damage 6% reduced Attack Speed (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_34675", + ["text"] = "Adds 5 to 94 Lightning Damage to Spells 4% increased Lightning Damage taken (Tier 5)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_64292", + ["text"] = "Adds 50 to 77 Chaos Damage (Tier 5)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_63596", + ["text"] = "Adds 52 to 77 Fire Damage 6% reduced Attack Speed (Tier 4)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_58336", + ["text"] = "Adds 52 to 78 Cold Damage Your Cold Damage cannot Chill (Tier 5)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_50869", + ["text"] = "Adds 53 to 79 Cold Damage to Spells (Tier 5)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_57667", + ["text"] = "Adds 55 to 83 Fire Damage 6% reduced Attack Speed (Tier 5)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_46855", + ["text"] = "Adds 56 to 84 Fire Damage to Spells (Tier 5)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_11624", + ["text"] = "Adds 6 to 10 Chaos Damage to Spells 10% chance to Poison on Hit with Spell Damage (Tier 4)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_18750", + ["text"] = "Adds 6 to 10 Chaos Damage to Spells 10% increased Effect of Withered (Tier 4)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_50449", + ["text"] = "Adds 6 to 10 Chaos Damage to Spells (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_61524", + ["text"] = "Adds 6 to 10 Fire Damage Adds 6 to 10 Cold Damage Adds 1 to 13 Lightning Damage 5% chance to Freeze, Shock and Ignite (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_46990", + ["text"] = "Adds 6 to 10 Fire Damage to Spells 6% reduced Cast Speed (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_47009", + ["text"] = "Adds 6 to 10 Physical Damage to Spells 15% of Physical Damage Converted to Chaos Damage (Tier 4)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_10996", + ["text"] = "Adds 6 to 10 Physical Damage to Spells 15% of Physical Damage Converted to Cold Damage (Tier 4)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_3386", + ["text"] = "Adds 6 to 10 Physical Damage to Spells 15% of Physical Damage Converted to Fire Damage (Tier 4)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_21381", + ["text"] = "Adds 6 to 10 Physical Damage to Spells 15% of Physical Damage Converted to Lightning Damage (Tier 4)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_36730", + ["text"] = "Adds 6 to 10 Physical Damage to Spells Overwhelm 5% Physical Damage Reduction (Tier 4)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_8935", + ["text"] = "Adds 6 to 10 Physical Damage to Spells (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_26133", + ["text"] = "Adds 6 to 101 Lightning Damage (Tier 5)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_21788", + ["text"] = "Adds 6 to 11 Physical Damage (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_61644", + ["text"] = "Adds 6 to 112 Lightning Damage 10% increased Critical Strike Chance (Tier 5)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_9341", + ["text"] = "Adds 6 to 112 Lightning Damage 20% chance to Shock (Tier 5)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_20412", + ["text"] = "Adds 6 to 12 Physical Damage 6% reduced Attack Speed (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_64902", + ["text"] = "Adds 6 to 124 Lightning Damage 6% increased Lightning Damage taken (Tier 4)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_32892", + ["text"] = "Adds 6 to 15 Physical Damage 15% chance to Impale Enemies on Hit with Attacks (Tier 5)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_8452", + ["text"] = "Adds 6 to 15 Physical Damage 15% chance to cause Bleeding on Hit (Tier 5)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_44096", + ["text"] = "Adds 6 to 15 Physical Damage 25% of Physical Damage Converted to Chaos Damage (Tier 5)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_30768", + ["text"] = "Adds 6 to 15 Physical Damage 25% of Physical Damage Converted to Cold Damage (Tier 5)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_924", + ["text"] = "Adds 6 to 15 Physical Damage 25% of Physical Damage Converted to Fire Damage (Tier 5)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_50927", + ["text"] = "Adds 6 to 15 Physical Damage 25% of Physical Damage Converted to Lightning Damage (Tier 5)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_36251", + ["text"] = "Adds 6 to 15 Physical Damage 35% of Physical Damage converted to a random Element (Tier 5)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_53268", + ["text"] = "Adds 6 to 15 Physical Damage (Tier 5)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_1163", + ["text"] = "Adds 6 to 16 Physical Damage 6% reduced Attack Speed (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_51047", + ["text"] = "Adds 6 to 16 Physical Damage 6% reduced Attack Speed (Tier 4)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_15164", + ["text"] = "Adds 66 to 99 Chaos Damage 7% reduced maximum Life (Tier 5)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_37311", + ["text"] = "Adds 68 to 103 Cold Damage to Spells Your Cold Damage cannot Chill (Tier 5)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_8526", + ["text"] = "Adds 7 to 10 Chaos Damage 5% reduced maximum Life (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_44112", + ["text"] = "Adds 7 to 10 Chaos Damage to Spells 20% chance to Poison on Hit with Spell Damage (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_5900", + ["text"] = "Adds 7 to 10 Chaos Damage to Spells 20% increased Effect of Withered (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_44638", + ["text"] = "Adds 7 to 10 Cold Damage 10% chance to Freeze (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_20897", + ["text"] = "Adds 7 to 10 Cold Damage 4% increased Attack Speed (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_11659", + ["text"] = "Adds 7 to 10 Fire Damage Adds 7 to 10 Cold Damage Adds 3 to 15 Lightning Damage 25% increased Effect of Non-Damaging Ailments (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_12162", + ["text"] = "Adds 7 to 10 Fire Damage (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_28272", + ["text"] = "Adds 7 to 10 Fire Damage to Spells 10% reduced Cast Speed (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_29911", + ["text"] = "Adds 7 to 10 Physical Damage to Spells 25% of Physical Damage Converted to Chaos Damage (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_15300", + ["text"] = "Adds 7 to 10 Physical Damage to Spells 25% of Physical Damage Converted to Cold Damage (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_21032", + ["text"] = "Adds 7 to 10 Physical Damage to Spells 25% of Physical Damage Converted to Fire Damage (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_60447", + ["text"] = "Adds 7 to 10 Physical Damage to Spells 25% of Physical Damage Converted to Lightning Damage (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_17739", + ["text"] = "Adds 7 to 10 Physical Damage to Spells Overwhelm 10% Physical Damage Reduction (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_26947", + ["text"] = "Adds 7 to 11 Cold Damage 20% chance to Freeze (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_61470", + ["text"] = "Adds 7 to 11 Cold Damage 4% increased Attack Speed (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_65300", + ["text"] = "Adds 7 to 11 Cold Damage Your Cold Damage cannot Chill (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_44858", + ["text"] = "Adds 7 to 11 Fire Damage 20% chance to Ignite (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_61405", + ["text"] = "Adds 7 to 11 Fire Damage Adds 7 to 11 Cold Damage Adds 1 to 19 Lightning Damage Cannot inflict Elemental Ailments (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_41601", + ["text"] = "Adds 7 to 11 Fire Damage Adds 7 to 11 Cold Damage Adds 3 to 15 Lightning Damage 10% chance to Freeze, Shock and Ignite (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_31054", + ["text"] = "Adds 7 to 12 Chaos Damage to Spells 7% reduced maximum Life (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_1750", + ["text"] = "Adds 7 to 12 Cold Damage to Spells (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_29983", + ["text"] = "Adds 7 to 12 Fire Damage 10% chance to Ignite (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_50121", + ["text"] = "Adds 7 to 12 Physical Damage to Spells 10% reduced Cast Speed (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_26177", + ["text"] = "Adds 7 to 13 Chaos Damage (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_1934", + ["text"] = "Adds 7 to 132 Lightning Damage 4% increased Lightning Damage taken (Tier 5)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_3424", + ["text"] = "Adds 7 to 133 Lightning Damage to Spells (Tier 5)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_37668", + ["text"] = "Adds 7 to 16 Physical Damage (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_4715", + ["text"] = "Adds 7 to 9 Chaos Damage 10% increased Effect of Withered (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_5479", + ["text"] = "Adds 7 to 9 Chaos Damage 15% chance to Poison on Hit (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_44944", + ["text"] = "Adds 73 to 109 Fire Damage to Spells 10% reduced Cast Speed (Tier 5)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_19599", + ["text"] = "Adds 74 to 111 Cold Damage (Tier 5)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_56502", + ["text"] = "Adds 78 to 118 Fire Damage (Tier 5)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_57276", + ["text"] = "Adds 8 to 10 Fire Damage (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_29319", + ["text"] = "Adds 8 to 14 Chaos Damage (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_49298", + ["text"] = "Adds 8 to 14 Chaos Damage to Spells 5% reduced maximum Life (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_5614", + ["text"] = "Adds 8 to 14 Cold Damage Your Cold Damage cannot Chill (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_25836", + ["text"] = "Adds 8 to 14 Cold Damage to Spells 10% chance to Freeze (Tier 4)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_10387", + ["text"] = "Adds 8 to 14 Cold Damage to Spells 5% increased Cast Speed (Tier 4)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_27792", + ["text"] = "Adds 8 to 14 Cold Damage to Spells (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_56003", + ["text"] = "Adds 8 to 14 Fire Damage to Spells 10% chance to Ignite (Tier 4)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_42973", + ["text"] = "Adds 8 to 14 Physical Damage to Spells 6% reduced Cast Speed (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_61196", + ["text"] = "Adds 8 to 15 Chaos Damage 10% increased Effect of Withered (Tier 4)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_32010", + ["text"] = "Adds 8 to 15 Chaos Damage 15% chance to Poison on Hit (Tier 4)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_28634", + ["text"] = "Adds 8 to 19 Physical Damage 6% reduced Attack Speed (Tier 5)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_65328", + ["text"] = "Adds 8 to 19 Physical Damage (Tier 4)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_34545", + ["text"] = "Adds 9 to 13 Fire Damage 6% reduced Attack Speed (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_59188", + ["text"] = "Adds 9 to 13 Fire Damage to Spells (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_62789", + ["text"] = "Adds 9 to 14 Chaos Damage 15% chance to Poison on Hit (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_31718", + ["text"] = "Adds 9 to 14 Chaos Damage 20% increased Effect of Withered (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_22336", + ["text"] = "Adds 9 to 14 Fire Damage 6% reduced Attack Speed (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_55254", + ["text"] = "Adds 9 to 14 Fire Damage to Spells (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_64064", + ["text"] = "Adds 9 to 15 Cold Damage to Spells 10% increased Cast Speed (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_5961", + ["text"] = "Adds 9 to 15 Cold Damage to Spells 20% chance to Freeze (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_60306", + ["text"] = "Adds 9 to 15 Fire Damage Adds 9 to 15 Cold Damage Adds 1 to 23 Lightning Damage (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_10877", + ["text"] = "Adds 9 to 16 Fire Damage to Spells 20% chance to Ignite (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_31799", + ["text"] = "Adds 9 to 17 Fire Damage Adds 9 to 17 Cold Damage Adds 3 to 25 Lightning Damage 25% increased Effect of Non-Damaging Ailments (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_18073", + ["text"] = "Adds 9 to 173 Lightning Damage to Spells 6% increased Lightning Damage taken (Tier 5)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_52531", + ["text"] = "Adds 9 to 20 Physical Damage 6% reduced Attack Speed (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_33118", + ["text"] = "Adds 95 to 144 Cold Damage Your Cold Damage cannot Chill (Tier 5)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_25324", + ["text"] = "All Damage from Blast Rain and Artillery Ballista Hits can Poison 25% chance for Poisons inflicted with Blast Rain or Artillery Ballista to deal 100% more Damage (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_47007", + ["text"] = "All Damage from Cold Snap and Creeping Frost can Sap 25% chance for Cold Snap and Creeping Frost to Sap Enemies in Chilling Areas (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_22434", + ["text"] = "All Damage from Cold Snap and Creeping Frost can Sap 50% chance for Cold Snap and Creeping Frost to Sap Enemies in Chilling Areas (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_3659", + ["text"] = "All Damage from Hits with Freezing Pulse and Eye of Winter can Poison 15% chance for Poisons inflicted with Freezing Pulse and Eye of Winter to deal 100% more Damage (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_20294", + ["text"] = "All Damage from Hits with Freezing Pulse and Eye of Winter can Poison 25% chance for Poisons inflicted with Freezing Pulse and Eye of Winter to deal 100% more Damage (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_6978", + ["text"] = "All Damage from Lightning Arrow and Ice Shot Hits can Ignite 25% chance for Ignites inflicted with Lightning Arrow or Ice Shot to deal 100% more Damage (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_10115", + ["text"] = "All Damage from Lightning Strike and Frost Blades Hits can Ignite 15% chance for Ignites inflicted with Lightning Strike or Frost Blades to deal 100% more Damage (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_45053", + ["text"] = "All Damage from Lightning Strike and Frost Blades Hits can Ignite 25% chance for Ignites inflicted with Lightning Strike or Frost Blades to deal 100% more Damage (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_17605", + ["text"] = "All Damage from Shock Nova and Storm Call Hits can Ignite 15% chance for Ignites inflicted with Shock Nova or Storm Call to deal 100% more Damage (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_57547", + ["text"] = "All Damage from Shock Nova and Storm Call Hits can Ignite 25% chance for Ignites inflicted with Shock Nova or Storm Call to deal 100% more Damage (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_33664", + ["text"] = "Allocates Aspect of the Eagle (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_20233", + ["text"] = "Allocates Avatar of the Hunt (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_62298", + ["text"] = "Allocates Blacksmith's Clout (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_35529", + ["text"] = "Allocates Blade Master (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_51508", + ["text"] = "Allocates Blade of Cunning (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_59490", + ["text"] = "Allocates Bladedancer (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_12315", + ["text"] = "Allocates Blunt Trauma (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_8288", + ["text"] = "Allocates Bone Breaker (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_25571", + ["text"] = "Allocates Brutal Blade (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_35745", + ["text"] = "Allocates Cleaving (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_754", + ["text"] = "Allocates Counterweight (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_11135", + ["text"] = "Allocates Deadly Draw (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_51220", + ["text"] = "Allocates Enigmatic Defence (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_26236", + ["text"] = "Allocates Enigmatic Reach (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_23716", + ["text"] = "Allocates Farsight (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_18825", + ["text"] = "Allocates Fatal Blade (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_64867", + ["text"] = "Allocates Feller of Foes (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_53120", + ["text"] = "Allocates Galvanic Hammer (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_31444", + ["text"] = "Allocates Harvester of Foes (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_28030", + ["text"] = "Allocates Hatchet Master (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_34918", + ["text"] = "Allocates Heavy Draw (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_63592", + ["text"] = "Allocates Hunter's Gambit (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_52601", + ["text"] = "Allocates King of the Hill (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_11463", + ["text"] = "Allocates Master Fletcher (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_23099", + ["text"] = "Allocates One with the River (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_544", + ["text"] = "Allocates Pain Forger (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_18556", + ["text"] = "Allocates Razor's Edge (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_5812", + ["text"] = "Allocates Ribcage Crusher (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_26349", + ["text"] = "Allocates Safeguard (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_63647", + ["text"] = "Allocates Serpent Stance (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_54251", + ["text"] = "Allocates Skull Cracking (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_44720", + ["text"] = "Allocates Slaughter (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_14648", + ["text"] = "Allocates Smashing Strikes (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_52732", + ["text"] = "Allocates Spinecruncher (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_17284", + ["text"] = "Allocates Steelwood Stance (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_57628", + ["text"] = "Allocates Whirling Barrier (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_19913", + ["text"] = "Always inflict Scorch, Brittle and Sapped with Elemental Hit and Wild Strike Hits Cannot Ignite, Chill, Freeze or Shock (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_1524", + ["text"] = "Ancestral Bond (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_9783", + ["text"] = "Anger has 20% increased Aura Effect Anger has 25% increased Reservation (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_48119", + ["text"] = "Anger has 25% increased Aura Effect Anger has 25% increased Reservation (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_55655", + ["text"] = "Anger has 30% increased Aura Effect Anger has 25% increased Reservation (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_14270", + ["text"] = "Anger has 40% increased Aura Effect Anger has 50% increased Reservation (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_28432", + ["text"] = "Anger has 50% increased Aura Effect Anger has 50% increased Reservation (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_664", + ["text"] = "Anger has 60% increased Aura Effect Anger has 50% increased Reservation (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_8849", + ["text"] = "Animated Lingering Blades have +1.5% to Critical Strike Chance (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_63769", + ["text"] = "Animated Lingering Blades have +2.5% to Critical Strike Chance (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_31945", + ["text"] = "Arc and Crackling Lance gains Added Cold Damage equal to 12% of Mana Cost, if Mana Cost is not higher than the maximum you could spend 15% increased Cost of Arc and Crackling Lance (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_30093", + ["text"] = "Arc and Crackling Lance gains Added Cold Damage equal to 20% of Mana Cost, if Mana Cost is not higher than the maximum you could spend 25% increased Cost of Arc and Crackling Lance (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_55817", + ["text"] = "Arrow Dancing (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_14756", + ["text"] = "Arrows Chain +1 times 50% reduced Chaining range (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_41810", + ["text"] = "Attack Hits have 20% chance to Maim you for 4 seconds Immune to Exposure (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_734", + ["text"] = "Avatar of Fire (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_33868", + ["text"] = "Banner Skills have 20% increased Aura Effect 25% increased Reservation of Banner Skills (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_28382", + ["text"] = "Banner Skills have 25% increased Aura Effect 25% increased Reservation of Banner Skills (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_17546", + ["text"] = "Banner Skills have 30% increased Aura Effect 25% increased Reservation of Banner Skills (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_8067", + ["text"] = "Banner Skills have 40% increased Aura Effect 50% increased Reservation of Banner Skills (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_2028", + ["text"] = "Banner Skills have 50% increased Aura Effect 50% increased Reservation of Banner Skills (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_40992", + ["text"] = "Banner Skills have 60% increased Aura Effect 50% increased Reservation of Banner Skills (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_36169", + ["text"] = "Barrage and Frenzy have 25% increased Critical Strike Chance per Endurance Charge (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_13505", + ["text"] = "Barrage and Frenzy have 40% increased Critical Strike Chance per Endurance Charge (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_21872", + ["text"] = "Bear Trap and Siphoning Trap Debuffs also apply 15% reduced Cooldown Recovery Rate to affected Enemies (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_16035", + ["text"] = "Bear Trap and Siphoning Trap Debuffs also apply 25% reduced Cooldown Recovery Rate to affected Enemies (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_45031", + ["text"] = "Blazing Salvo Projectiles Fork when they pass through a Flame Wall (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_24028", + ["text"] = "Blight has 50% increased Area of Effect per second you have been Channelling, up to a maximum of 200% Wither has 50% increased Area of Effect per second you have been Channelling, up to a maximum of 200% (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_7729", + ["text"] = "Blight has 80% increased Area of Effect per second you have been Channelling, up to a maximum of 200% Wither has 80% increased Area of Effect per second you have been Channelling, up to a maximum of 200% (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_40831", + ["text"] = "Blood Magic (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_55709", + ["text"] = "Brand Recall has 40% reduced Cooldown Recovery Rate 40% increased Brand Attachment range (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_30416", + ["text"] = "Brand Recall has 40% reduced Cooldown Recovery Rate 60% increased Brand Attachment range (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_2129", + ["text"] = "Brand Recall has 60% reduced Cooldown Recovery Rate 100% increased Brand Attachment range (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_21875", + ["text"] = "Brand Recall has 60% reduced Cooldown Recovery Rate 75% increased Brand Attachment range (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_23336", + ["text"] = "Brands have 25% increased Area of Effect if 50% of Attached Duration expired Brand Skills have 20% reduced Duration (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_60324", + ["text"] = "Brands have 40% increased Area of Effect if 50% of Attached Duration expired Brand Skills have 20% reduced Duration (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_46069", + ["text"] = "Brands have 45% increased Area of Effect if 50% of Attached Duration expired Brand Skills have 30% reduced Duration (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_60029", + ["text"] = "Brands have 60% increased Area of Effect if 50% of Attached Duration expired Brand Skills have 30% reduced Duration (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_43883", + ["text"] = "Call to Arms (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_47493", + ["text"] = "Can use Bestiary Lures at Fishing Holes (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_62833", + ["text"] = "Cannot be Stunned when on Low Life 5% increased Damage taken while on Low Life (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_5579", + ["text"] = "Cannot be Stunned when on Low Life 8% increased Damage taken while on Low Life (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_16086", + ["text"] = "Caustic Arrow and Scourge Arrow fire 25% more projectiles (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_37758", + ["text"] = "Chill Attackers for 4 seconds on Block (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_13026", + ["text"] = "Conduit (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_41803", + ["text"] = "Consecrated Path and Purifying Flame create Profane Ground instead of Consecrated Ground 100% of Consecrated Path and Purifying Flame Fire Damage Converted to Chaos Damage (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_21521", + ["text"] = "Convocation has 25% increased Cooldown Recovery Rate 20% reduced Convocation Buff Effect (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_18249", + ["text"] = "Convocation has 40% increased Cooldown Recovery Rate 20% reduced Convocation Buff Effect (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_24409", + ["text"] = "Convocation has 50% increased Cooldown Recovery Rate 40% reduced Convocation Buff Effect (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_16325", + ["text"] = "Convocation has 80% increased Cooldown Recovery Rate 40% reduced Convocation Buff Effect (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_12815", + ["text"] = "Corrupted Blood cannot be inflicted on you 50% increased Effect of Exposure on you (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_54305", + ["text"] = "Corrupted Fish have 10% chance to be Cleansed (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_5964", + ["text"] = "Crimson Dance (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_5779", + ["text"] = "Crucible Passives that sell for items sell for twice as much (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_48224", + ["text"] = "Debuffs on you expire 15% faster (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_35946", + ["text"] = "Debuffs on you expire 25% faster (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_23155", + ["text"] = "Decoy, Devouring and Rejuvenation Totems Reflect 100% of their maximum Life as Fire Damage to nearby Enemies when Hit (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_47012", + ["text"] = "Decoy, Devouring and Rejuvenation Totems Reflect 200% of their maximum Life as Fire Damage to nearby Enemies when Hit (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_60654", + ["text"] = "Desecrate and Unearth have +1 to Maximum number of corpses allowed Corpses you Spawn have 5% reduced Maximum Life (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_46735", + ["text"] = "Desecrate and Unearth have +2 to Maximum number of corpses allowed Corpses you Spawn have 10% reduced Maximum Life (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_31926", + ["text"] = "Desecrate and Unearth have +2 to Maximum number of corpses allowed Corpses you Spawn have 5% reduced Maximum Life (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_54123", + ["text"] = "Desecrate and Unearth have +4 to Maximum number of corpses allowed Corpses you Spawn have 10% reduced Maximum Life (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_28005", + ["text"] = "Desecrate and Unearth have -1 to Maximum number of corpses allowed Corpses you Spawn have 10% increased Maximum Life (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_54783", + ["text"] = "Desecrate and Unearth have -1 to Maximum number of corpses allowed Corpses you Spawn have 15% increased Maximum Life (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_19563", + ["text"] = "Desecrate and Unearth have -2 to Maximum number of corpses allowed Corpses you Spawn have 20% increased Maximum Life (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_3913", + ["text"] = "Desecrate and Unearth have -2 to Maximum number of corpses allowed Corpses you Spawn have 30% increased Maximum Life (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_8511", + ["text"] = "Determination has 20% increased Aura Effect Determination has 25% increased Reservation (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_46305", + ["text"] = "Determination has 25% increased Aura Effect Determination has 25% increased Reservation (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_24731", + ["text"] = "Determination has 30% increased Aura Effect Determination has 25% increased Reservation (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_48251", + ["text"] = "Discharge and Voltaxic Burst are Cast at the targeted location instead of around you (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_31101", + ["text"] = "Discipline has 20% increased Aura Effect Discipline has 25% increased Reservation (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_23435", + ["text"] = "Discipline has 25% increased Aura Effect Discipline has 25% increased Reservation (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_27793", + ["text"] = "Discipline has 30% increased Aura Effect Discipline has 25% increased Reservation (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_33292", + ["text"] = "Divine Shield (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_16687", + ["text"] = "Each Projectile from Spectral Helix or Spectral Throw has between 40% more and 40% less Projectile Speed at random (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_16468", + ["text"] = "Each Projectile from Spectral Helix or Spectral Throw has between 75% more and 75% less Projectile Speed at random (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_13138", + ["text"] = "Eldritch Battery (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_54440", + ["text"] = "Elemental Equilibrium (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_5084", + ["text"] = "Elemental Overload (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_12418", + ["text"] = "Enemies Branded by Wintertide Brand or Arcanist Brand Explode on Death dealing a quarter of their maximum Life as Chaos damage (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_1345", + ["text"] = "Enemies Frozen by Ice Crash or Glacial Hammer become Covered in Frost for 4 seconds as they Unfreeze (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_64041", + ["text"] = "Enemies in your Rage Vortex or Bladestorms are Hindered and Unnerved (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_27307", + ["text"] = "Enemies inflicted with Bane or Contagion are Chilled (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_38853", + ["text"] = "Enemies you Kill with Puncture or Ensnaring Arrow Hits Explode, dealing 10% of their Life as Physical Damage (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_63167", + ["text"] = "Eternal Youth (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_22295", + ["text"] = "Ethereal Knives requires 1 fewer Projectile Fired to leave each Lingering Blade (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_18766", + ["text"] = "Ethereal Knives requires 2 fewer Projectiles Fired to leave each Lingering Blade (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_41467", + ["text"] = "Fire Trap and Explosive Trap Throw an additional Trap when used by a Mine (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_26541", + ["text"] = "Fire Trap and Explosive Trap Throws 2 additional Traps when used by a Mine (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_42442", + ["text"] = "Fireball and Rolling Magma have 100% more Area of Effect Modifiers to number of Projectiles do not apply to Fireball and Rolling Magma (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_26179", + ["text"] = "Fireball and Rolling Magma have 200% more Area of Effect Modifiers to number of Projectiles do not apply to Fireball and Rolling Magma (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_61359", + ["text"] = "Fish caught from Magmatic Fishing Holes are already Cooked (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_11897", + ["text"] = "Fish caught with this Fishing Rod will always tell the truth (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_1542", + ["text"] = "Flamethrower, Seismic and Lightning Spire Trap have 30% increased Cooldown Recovery Rate Flamethrower, Seismic and Lightning Spire Trap have -1 Cooldown Use (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_38414", + ["text"] = "Flamethrower, Seismic and Lightning Spire Trap have 50% increased Cooldown Recovery Rate Flamethrower, Seismic and Lightning Spire Trap have -2 Cooldown Uses (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_18557", + ["text"] = "Flasks applied to you have 10% reduced Effect 40% chance to gain a Flask Charge when you deal a Critical Strike (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_19445", + ["text"] = "Flasks applied to you have 10% reduced Effect 50% chance to gain a Flask Charge when you deal a Critical Strike (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_27098", + ["text"] = "Flasks applied to you have 10% reduced Effect 80% chance to gain a Flask Charge when you deal a Critical Strike (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_32798", + ["text"] = "Flasks applied to you have 10% reduced Effect Gain a Flask Charge when you deal a Critical Strike (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_11098", + ["text"] = "Flicker Strike and Vigilant Strike's Cooldown can be bypassed by Power Charges instead of Frenzy or Endurance Charges (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_58877", + ["text"] = "Forbidden Rite and Dark Pact gains Added Chaos Damage equal to 12% of Mana Cost, if Mana Cost is not higher than the maximum you could spend (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_48442", + ["text"] = "Forbidden Rite and Dark Pact gains Added Chaos Damage equal to 20% of Mana Cost, if Mana Cost is not higher than the maximum you could spend (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_49502", + ["text"] = "Frost Bombs gain 50% increased Area of Effect when you Cast Frostblink Strikes from Orb of Storms caused by Channelling near the Orb occur with 40% increased frequency (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_27519", + ["text"] = "Frost Bombs gain 75% increased Area of Effect when you Cast Frostblink Strikes from Orb of Storms caused by Channelling near the Orb occur with 60% increased frequency (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_35818", + ["text"] = "Gain 30 Energy Shield when you Block (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_2697", + ["text"] = "Gain 50 Energy Shield when you Block (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_18808", + ["text"] = "Gain Soul Eater for 20 seconds on Killing Blow against Rare and Unique Enemies with Double Strike or Dual Strike (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_2281", + ["text"] = "Galvanic Arrow and Storm Rain Repeat an additional time when used by a Mine (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_51989", + ["text"] = "Ghost Dance (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_54546", + ["text"] = "Ghost Reaver (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_13719", + ["text"] = "Glancing Blows (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_63776", + ["text"] = "Grace has 20% increased Aura Effect Grace has 25% increased Reservation (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_4815", + ["text"] = "Grace has 25% increased Aura Effect Grace has 25% increased Reservation (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_9545", + ["text"] = "Grace has 30% increased Aura Effect Grace has 25% increased Reservation (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_51609", + ["text"] = "Grants 15 Life per Enemy Hit Removes 2 of your Mana per Enemy Hit (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_27695", + ["text"] = "Grants 25 Life per Enemy Hit Removes 2 of your Mana per Enemy Hit (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_4513", + ["text"] = "Guard Skills have 60% increased Cooldown Recovery Rate Guard Skills have 50% reduced Duration (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_34164", + ["text"] = "Guard Skills have 80% increased Cooldown Recovery Rate Guard Skills have 50% reduced Duration (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_29873", + ["text"] = "Haste has 20% increased Aura Effect Haste has 25% increased Reservation (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_61538", + ["text"] = "Haste has 25% increased Aura Effect Haste has 25% increased Reservation (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_17551", + ["text"] = "Haste has 30% increased Aura Effect Haste has 25% increased Reservation (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_7933", + ["text"] = "Haste has 40% increased Aura Effect Haste has 50% increased Reservation (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_42361", + ["text"] = "Haste has 50% increased Aura Effect Haste has 50% increased Reservation (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_32906", + ["text"] = "Haste has 60% increased Aura Effect Haste has 50% increased Reservation (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_28369", + ["text"] = "Hatred has 20% increased Aura Effect Hatred has 25% increased Reservation (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_4375", + ["text"] = "Hatred has 25% increased Aura Effect Hatred has 25% increased Reservation (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_31466", + ["text"] = "Hatred has 30% increased Aura Effect Hatred has 25% increased Reservation (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_27243", + ["text"] = "Hatred has 40% increased Aura Effect Hatred has 50% increased Reservation (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_15818", + ["text"] = "Hatred has 50% increased Aura Effect Hatred has 50% increased Reservation (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_59980", + ["text"] = "Hatred has 60% increased Aura Effect Hatred has 50% increased Reservation (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_42598", + ["text"] = "Herald of Agony has 25% increased Buff Effect Herald of Agony has 25% increased Reservation (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_9188", + ["text"] = "Herald of Agony has 35% increased Buff Effect Herald of Agony has 25% increased Reservation (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_63823", + ["text"] = "Herald of Agony has 45% increased Buff Effect Herald of Agony has 25% increased Reservation (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_29958", + ["text"] = "Herald of Agony has 50% increased Buff Effect Herald of Agony has 50% increased Reservation (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_8086", + ["text"] = "Herald of Agony has 70% increased Buff Effect Herald of Agony has 50% increased Reservation (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_56374", + ["text"] = "Herald of Agony has 90% increased Buff Effect Herald of Agony has 50% increased Reservation (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_60575", + ["text"] = "Herald of Ash has 25% increased Reservation Herald of Ash has 25% increased Buff Effect (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_53850", + ["text"] = "Herald of Ash has 25% increased Reservation Herald of Ash has 35% increased Buff Effect (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_56899", + ["text"] = "Herald of Ash has 25% increased Reservation Herald of Ash has 45% increased Buff Effect (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_23508", + ["text"] = "Herald of Ash has 50% increased Reservation Herald of Ash has 50% increased Buff Effect (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_1799", + ["text"] = "Herald of Ash has 50% increased Reservation Herald of Ash has 70% increased Buff Effect (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_20166", + ["text"] = "Herald of Ash has 50% increased Reservation Herald of Ash has 90% increased Buff Effect (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_53799", + ["text"] = "Herald of Ice has 25% increased Reservation Herald of Ice has 25% increased Buff Effect (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_8465", + ["text"] = "Herald of Ice has 25% increased Reservation Herald of Ice has 35% increased Buff Effect (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_7267", + ["text"] = "Herald of Ice has 25% increased Reservation Herald of Ice has 45% increased Buff Effect (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_22706", + ["text"] = "Herald of Ice has 50% increased Reservation Herald of Ice has 50% increased Buff Effect (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_26021", + ["text"] = "Herald of Ice has 50% increased Reservation Herald of Ice has 70% increased Buff Effect (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_27341", + ["text"] = "Herald of Ice has 50% increased Reservation Herald of Ice has 90% increased Buff Effect (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_2859", + ["text"] = "Herald of Purity has 25% increased Buff Effect Herald of Purity has 25% increased Reservation (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_1683", + ["text"] = "Herald of Purity has 35% increased Buff Effect Herald of Purity has 25% increased Reservation (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_34384", + ["text"] = "Herald of Purity has 45% increased Buff Effect Herald of Purity has 25% increased Reservation (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_2937", + ["text"] = "Herald of Purity has 50% increased Buff Effect Herald of Purity has 50% increased Reservation (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_3954", + ["text"] = "Herald of Purity has 70% increased Buff Effect Herald of Purity has 50% increased Reservation (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_49133", + ["text"] = "Herald of Purity has 90% increased Buff Effect Herald of Purity has 50% increased Reservation (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_777", + ["text"] = "Herald of Thunder has 25% increased Reservation Herald of Thunder has 25% increased Buff Effect (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_58154", + ["text"] = "Herald of Thunder has 25% increased Reservation Herald of Thunder has 35% increased Buff Effect (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_19425", + ["text"] = "Herald of Thunder has 25% increased Reservation Herald of Thunder has 45% increased Buff Effect (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_29156", + ["text"] = "Herald of Thunder has 50% increased Reservation Herald of Thunder has 50% increased Buff Effect (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_9075", + ["text"] = "Herald of Thunder has 50% increased Reservation Herald of Thunder has 70% increased Buff Effect (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_34256", + ["text"] = "Herald of Thunder has 50% increased Reservation Herald of Thunder has 90% increased Buff Effect (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_11654", + ["text"] = "Hex Master (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_20624", + ["text"] = "Holy Flame Totem and Shockwave Totem gain 35% of Physical Damage as Extra Fire Damage when Cast by a Totem linked to by Searing Bond (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_16909", + ["text"] = "Holy Flame Totem and Shockwave Totem gain 60% of Physical Damage as Extra Fire Damage when Cast by a Totem linked to by Searing Bond (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_11439", + ["text"] = "Ice Spear and Ball Lightning fire Projectiles in a circle Ice Spear and Ball Lightning Projectiles Return to you (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_46814", + ["text"] = "Ice Trap and Lightning Trap Damage Penetrates 15% of Enemy Elemental Resistances Ice Traps and Lightning Traps are triggered by your Warcries Ice Traps and Lightning Traps cannot be triggered by Enemies (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_16167", + ["text"] = "Ice Trap and Lightning Trap Damage Penetrates 25% of Enemy Elemental Resistances Ice Traps and Lightning Traps are triggered by your Warcries Ice Traps and Lightning Traps cannot be triggered by Enemies (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_14475", + ["text"] = "If Poisonous Concoction or Explosive Concoction consume Charges from a Sulphur Flask, Enemies Killed by their Hits have 25% chance to Explode, dealing 10% of their Life as Physical Damage Poisonous Concoction and Explosive Concoction also consume Charges from 1 Sulphur Flask, if possible (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_8413", + ["text"] = "If Poisonous Concoction or Explosive Concoction consume Charges from a Sulphur Flask, Enemies Killed by their Hits have 40% chance to Explode, dealing 10% of their Life as Physical Damage Poisonous Concoction and Explosive Concoction also consume Charges from 1 Sulphur Flask, if possible (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_54463", + ["text"] = "Imbalanced Guard (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_19478", + ["text"] = "Increases and Reductions to Minion Damage also affect Dominating Blow and Absolution at 150% of their value (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_64950", + ["text"] = "Inflict Cold Exposure on Hit 25% chance to be inflicted with Cold Exposure when you take Cold Damage from a Hit (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_61410", + ["text"] = "Inflict Fire Exposure on Hit 25% chance to be inflicted with Fire Exposure when you take Fire Damage from a Hit (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_31006", + ["text"] = "Inflict Fire, Cold, and Lightning Exposure on Hit 25% chance to be inflicted with a random Exposure when you take Elemental Damage from a Hit (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_63373", + ["text"] = "Inflict Lightning Exposure on Hit 25% chance to be inflicted with Lightning Exposure when you take Lightning Damage from a Hit (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_49401", + ["text"] = "Iron Grip (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_28028", + ["text"] = "Iron Reflexes (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_23672", + ["text"] = "Iron Will (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_47569", + ["text"] = "Item sells for 10 additional Blessed Orbs (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_60323", + ["text"] = "Item sells for 10 additional Regal Orbs (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_45159", + ["text"] = "Item sells for 15 additional Gemcutter's Prisms (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_30417", + ["text"] = "Item sells for 15 additional Orbs of Regret (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_1189", + ["text"] = "Item sells for 15 additional Vaal Orbs (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_42738", + ["text"] = "Item sells for 2 additional Cartography Scarabs of every type (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_59749", + ["text"] = "Item sells for 20 additional Blessed Orbs (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_49649", + ["text"] = "Item sells for 20 additional Chaos Orbs (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_20871", + ["text"] = "Item sells for 20 additional Orbs of Scouring (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_38368", + ["text"] = "Item sells for 20 additional Regal Orbs (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_6400", + ["text"] = "Item sells for 3 additional Divine Orbs (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_64992", + ["text"] = "Item sells for 3 additional Exalted Orbs (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_1751", + ["text"] = "Item sells for 3 additional Orbs of Annulment (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_54710", + ["text"] = "Item sells for 3 additional Sacred Orbs (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_2456", + ["text"] = "Item sells for 30 additional Gemcutter's Prisms (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_49711", + ["text"] = "Item sells for 30 additional Orbs of Regret (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_45250", + ["text"] = "Item sells for 30 additional Vaal Orbs (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_52895", + ["text"] = "Item sells for 40 additional Chaos Orbs (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_4343", + ["text"] = "Item sells for 40 additional Orbs of Scouring (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_48243", + ["text"] = "Item sells for an additional Cartography Scarab of every type (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_4855", + ["text"] = "Item sells for an additional Crystalline Geode (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_18496", + ["text"] = "Item sells for an additional Divine Orb (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_2402", + ["text"] = "Item sells for an additional Exalted Orb (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_8869", + ["text"] = "Item sells for an additional Igneous Geode (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_47181", + ["text"] = "Item sells for an additional Magmatic Ore (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_62042", + ["text"] = "Item sells for an additional Orb of Annulment (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_36660", + ["text"] = "Item sells for an additional Sacred Orb (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_30352", + ["text"] = "Item sells for an additional Unique of this Base Type (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_40918", + ["text"] = "Killing Blows from Smite and Static Strike Consume corpses to Recover 5% of Life (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_7137", + ["text"] = "Killing Blows with Burning Arrow or Explosive Arrow Shatter Enemies as though Frozen (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_11560", + ["text"] = "Killing Blows with Earthquake and Earthshatter Shatter Enemies as though Frozen (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_31906", + ["text"] = "Killing Blows with Lightning Conduit and Galvanic Field Shatter Enemies as though Frozen (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_21968", + ["text"] = "Kinetic Bolt, Kinetic Blast and Power Siphon have 20% reduced Enemy Stun Threshold 100% chance for Kinetic Bolt, Kinetic Blast and Power Siphon to double Stun Duration (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_21178", + ["text"] = "Knockback direction is reversed with Cyclone and Holy Sweep Knock Enemies Back on hit with Cyclone and Holy Sweep (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_48723", + ["text"] = "Lethe Shade (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_47594", + ["text"] = "Link Skills have 12% increased Buff Effect 20% increased Mana Cost of Link Skills (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_41316", + ["text"] = "Link Skills have 16% increased Buff Effect 40% increased Mana Cost of Link Skills (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_41817", + ["text"] = "Link Skills have 20% reduced Buff Effect Link Skills Link to 1 additional random target (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_48159", + ["text"] = "Link Skills have 24% increased Buff Effect 40% increased Mana Cost of Link Skills (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_45", + ["text"] = "Link Skills have 30% reduced Buff Effect Link Skills Link to 2 additional random targets (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_15845", + ["text"] = "Link Skills have 8% increased Buff Effect 20% increased Mana Cost of Link Skills (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_17221", + ["text"] = "Magebane (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_30596", + ["text"] = "Malevolence has 20% increased Aura Effect Malevolence has 25% increased Reservation (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_33445", + ["text"] = "Malevolence has 25% increased Aura Effect Malevolence has 25% increased Reservation (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_27914", + ["text"] = "Malevolence has 30% increased Aura Effect Malevolence has 25% increased Reservation (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_51011", + ["text"] = "Malevolence has 40% increased Aura Effect Malevolence has 50% increased Reservation (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_35548", + ["text"] = "Malevolence has 50% increased Aura Effect Malevolence has 50% increased Reservation (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_34560", + ["text"] = "Malevolence has 60% increased Aura Effect Malevolence has 50% increased Reservation (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_55980", + ["text"] = "Manabond and Stormbind Freeze enemies as though dealing 200% more Damage 50% of Manabond and Stormbind Lightning Damage Converted to Cold Damage (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_33472", + ["text"] = "Manabond and Stormbind Freeze enemies as though dealing 300% more Damage 100% of Manabond and Stormbind Lightning Damage Converted to Cold Damage (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_56226", + ["text"] = "Maximum Life of Summoned Elemental Golems is Doubled (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_17413", + ["text"] = "Maximum number of Summoned Raging Spirits is 3 Maximum number of Summoned Phantasms is 3 Summoned Raging Spirits have Diamond Shrine and Massive Shrine Buffs Summoned Phantasms have Diamond Shrine and Massive Shrine Buffs (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_20902", + ["text"] = "Mind Over Matter (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_47597", + ["text"] = "Minion Instability (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_49790", + ["text"] = "Minions convert 15% of Physical Damage to Chaos Damage Minions deal 1 to 3 additional Physical Damage (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_9962", + ["text"] = "Minions convert 15% of Physical Damage to Chaos Damage Minions deal 13 to 20 additional Physical Damage (Tier 5)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_48927", + ["text"] = "Minions convert 15% of Physical Damage to Chaos Damage Minions deal 2 to 4 additional Physical Damage (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_6668", + ["text"] = "Minions convert 15% of Physical Damage to Chaos Damage Minions deal 4 to 6 additional Physical Damage (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_58472", + ["text"] = "Minions convert 15% of Physical Damage to Chaos Damage Minions deal 6 to 10 additional Physical Damage (Tier 4)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_46527", + ["text"] = "Minions convert 15% of Physical Damage to Cold Damage Minions deal 1 to 3 additional Physical Damage (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_52144", + ["text"] = "Minions convert 15% of Physical Damage to Cold Damage Minions deal 13 to 20 additional Physical Damage (Tier 5)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_19471", + ["text"] = "Minions convert 15% of Physical Damage to Cold Damage Minions deal 2 to 4 additional Physical Damage (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_38672", + ["text"] = "Minions convert 15% of Physical Damage to Cold Damage Minions deal 4 to 6 additional Physical Damage (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_16912", + ["text"] = "Minions convert 15% of Physical Damage to Cold Damage Minions deal 6 to 10 additional Physical Damage (Tier 4)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_41068", + ["text"] = "Minions convert 15% of Physical Damage to Fire Damage Minions deal 1 to 3 additional Physical Damage (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_31636", + ["text"] = "Minions convert 15% of Physical Damage to Fire Damage Minions deal 13 to 20 additional Physical Damage (Tier 5)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_8324", + ["text"] = "Minions convert 15% of Physical Damage to Fire Damage Minions deal 2 to 4 additional Physical Damage (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_32417", + ["text"] = "Minions convert 15% of Physical Damage to Fire Damage Minions deal 4 to 6 additional Physical Damage (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_5529", + ["text"] = "Minions convert 15% of Physical Damage to Fire Damage Minions deal 6 to 10 additional Physical Damage (Tier 4)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_34280", + ["text"] = "Minions convert 15% of Physical Damage to Lightning Damage Minions deal 1 to 3 additional Physical Damage (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_54298", + ["text"] = "Minions convert 15% of Physical Damage to Lightning Damage Minions deal 13 to 20 additional Physical Damage (Tier 5)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_16704", + ["text"] = "Minions convert 15% of Physical Damage to Lightning Damage Minions deal 2 to 4 additional Physical Damage (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_54326", + ["text"] = "Minions convert 15% of Physical Damage to Lightning Damage Minions deal 4 to 6 additional Physical Damage (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_35240", + ["text"] = "Minions convert 15% of Physical Damage to Lightning Damage Minions deal 6 to 10 additional Physical Damage (Tier 4)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_37617", + ["text"] = "Minions convert 25% of Physical Damage to Chaos Damage Minions deal 1 to 3 additional Physical Damage (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_47484", + ["text"] = "Minions convert 25% of Physical Damage to Chaos Damage Minions deal 11 to 17 additional Physical Damage (Tier 4)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_33929", + ["text"] = "Minions convert 25% of Physical Damage to Chaos Damage Minions deal 22 to 33 additional Physical Damage (Tier 5)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_22872", + ["text"] = "Minions convert 25% of Physical Damage to Chaos Damage Minions deal 3 to 6 additional Physical Damage (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_13797", + ["text"] = "Minions convert 25% of Physical Damage to Chaos Damage Minions deal 7 to 10 additional Physical Damage (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_63303", + ["text"] = "Minions convert 25% of Physical Damage to Cold Damage Minions deal 1 to 3 additional Physical Damage (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_34959", + ["text"] = "Minions convert 25% of Physical Damage to Cold Damage Minions deal 11 to 17 additional Physical Damage (Tier 4)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_30377", + ["text"] = "Minions convert 25% of Physical Damage to Cold Damage Minions deal 22 to 33 additional Physical Damage (Tier 5)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_55703", + ["text"] = "Minions convert 25% of Physical Damage to Cold Damage Minions deal 3 to 6 additional Physical Damage (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_61396", + ["text"] = "Minions convert 25% of Physical Damage to Cold Damage Minions deal 7 to 10 additional Physical Damage (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_48387", + ["text"] = "Minions convert 25% of Physical Damage to Fire Damage Minions deal 1 to 3 additional Physical Damage (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_5131", + ["text"] = "Minions convert 25% of Physical Damage to Fire Damage Minions deal 11 to 17 additional Physical Damage (Tier 4)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_5011", + ["text"] = "Minions convert 25% of Physical Damage to Fire Damage Minions deal 22 to 33 additional Physical Damage (Tier 5)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_64900", + ["text"] = "Minions convert 25% of Physical Damage to Fire Damage Minions deal 3 to 6 additional Physical Damage (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_25659", + ["text"] = "Minions convert 25% of Physical Damage to Fire Damage Minions deal 7 to 10 additional Physical Damage (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_28694", + ["text"] = "Minions convert 25% of Physical Damage to Lightning Damage Minions deal 1 to 3 additional Physical Damage (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_51988", + ["text"] = "Minions convert 25% of Physical Damage to Lightning Damage Minions deal 11 to 17 additional Physical Damage (Tier 4)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_25789", + ["text"] = "Minions convert 25% of Physical Damage to Lightning Damage Minions deal 22 to 33 additional Physical Damage (Tier 5)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_49124", + ["text"] = "Minions convert 25% of Physical Damage to Lightning Damage Minions deal 3 to 6 additional Physical Damage (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_32059", + ["text"] = "Minions convert 25% of Physical Damage to Lightning Damage Minions deal 7 to 10 additional Physical Damage (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_562", + ["text"] = "Minions deal 1 to 12 additional Lightning Damage (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_17346", + ["text"] = "Minions deal 1 to 12 additional Lightning Damage (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_36608", + ["text"] = "Minions deal 1 to 13 additional Lightning Damage Minions have 16% chance to Shock (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_36637", + ["text"] = "Minions deal 1 to 13 additional Lightning Damage Minions have 40% increased Critical Strike Chance (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_22229", + ["text"] = "Minions deal 1 to 14 additional Lightning Damage Minions have 25% increased Critical Strike Chance (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_40344", + ["text"] = "Minions deal 1 to 14 additional Lightning Damage Minions have 8% chance to Shock (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_52863", + ["text"] = "Minions deal 1 to 21 additional Lightning Damage (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_1895", + ["text"] = "Minions deal 1 to 22 additional Lightning Damage (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_31319", + ["text"] = "Minions deal 1 to 3 additional Cold Damage Minions have 6% increased Attack and Cast Speed (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_57934", + ["text"] = "Minions deal 1 to 3 additional Fire Damage Minions have 8% chance to Ignite (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_427", + ["text"] = "Minions deal 1 to 3 additional Physical Damage Minions Attacks Overwhelm 10% Physical Damage Reduction (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_55101", + ["text"] = "Minions deal 1 to 3 additional Physical Damage Minions Attacks Overwhelm 5% Physical Damage Reduction (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_61815", + ["text"] = "Minions deal 1 to 5 additional Chaos Damage (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_22221", + ["text"] = "Minions deal 1 to 5 additional Lightning Damage Minions have 25% increased Critical Strike Chance (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_12388", + ["text"] = "Minions deal 1 to 5 additional Lightning Damage Minions have 8% chance to Shock (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_59259", + ["text"] = "Minions deal 1 to 5 additional Physical Damage (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_59256", + ["text"] = "Minions deal 1 to 6 additional Lightning Damage (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_33325", + ["text"] = "Minions deal 1 to 7 additional Lightning Damage Minions have 16% chance to Shock (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_62897", + ["text"] = "Minions deal 1 to 7 additional Lightning Damage Minions have 25% increased Critical Strike Chance (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_46195", + ["text"] = "Minions deal 1 to 7 additional Lightning Damage Minions have 40% increased Critical Strike Chance (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_7793", + ["text"] = "Minions deal 1 to 7 additional Lightning Damage Minions have 8% chance to Shock (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_51244", + ["text"] = "Minions deal 10 to 16 additional Cold Damage (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_30186", + ["text"] = "Minions deal 10 to 17 additional Chaos Damage (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_58840", + ["text"] = "Minions deal 10 to 17 additional Cold Damage (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_65111", + ["text"] = "Minions deal 10 to 17 additional Physical Damage (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_51892", + ["text"] = "Minions deal 10% increased Damage (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_33317", + ["text"] = "Minions deal 11 to 17 additional Chaos Damage (Tier 4)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_7870", + ["text"] = "Minions deal 11 to 17 additional Cold Damage Minions have 80% reduced Critical Strike Chance (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_63882", + ["text"] = "Minions deal 11 to 17 additional Fire Damage Minions have 10% reduced Attack and Cast Speed (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_7278", + ["text"] = "Minions deal 11 to 17 additional Physical Damage Minions Attacks Overwhelm 10% Physical Damage Reduction (Tier 4)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_22812", + ["text"] = "Minions deal 11 to 17 additional Physical Damage (Tier 4)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_32535", + ["text"] = "Minions deal 12 to 18 additional Cold Damage Minions have 40% reduced Critical Strike Chance (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_911", + ["text"] = "Minions deal 12 to 18 additional Fire Damage Minions have 6% reduced Attack and Cast Speed (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_33356", + ["text"] = "Minions deal 13 to 20 additional Physical Damage Minions Attacks Overwhelm 5% Physical Damage Reduction (Tier 5)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_22209", + ["text"] = "Minions deal 14 to 21 additional Cold Damage Minions have 8% chance to Freeze (Tier 4)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_49079", + ["text"] = "Minions deal 14 to 22 additional Physical Damage Minions have 10% reduced Attack and Cast Speed (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_33685", + ["text"] = "Minions deal 14 to 22 additional Physical Damage Minions have 6% reduced Attack and Cast Speed (Tier 4)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_30633", + ["text"] = "Minions deal 14% increased Damage Minions have 40% reduced Critical Strike Chance (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_18164", + ["text"] = "Minions deal 15 to 24 additional Cold Damage Minions have 16% chance to Freeze (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_41258", + ["text"] = "Minions deal 15 to 24 additional Fire Damage (Tier 4)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_17640", + ["text"] = "Minions deal 15% increased Damage (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_2619", + ["text"] = "Minions deal 15% reduced Damage Minions have 20% increased Area of Effect (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_4643", + ["text"] = "Minions deal 15% reduced Damage Minions have 30% increased Area of Effect (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_58687", + ["text"] = "Minions deal 16 to 25 additional Cold Damage Minions have 10% increased Attack and Cast Speed (Tier 4)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_60865", + ["text"] = "Minions deal 16 to 26 additional Fire Damage Minions have 16% chance to Ignite (Tier 4)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_36159", + ["text"] = "Minions deal 16 to 26 additional Fire Damage (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_20288", + ["text"] = "Minions deal 16% increased Damage (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_46315", + ["text"] = "Minions deal 17 to 25 additional Cold Damage Minions have 6% increased Attack and Cast Speed (Tier 5)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_23081", + ["text"] = "Minions deal 18 to 28 additional Chaos Damage (Tier 4)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_16557", + ["text"] = "Minions deal 18 to 28 additional Cold Damage (Tier 4)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_822", + ["text"] = "Minions deal 18 to 28 additional Fire Damage Minions have 8% chance to Ignite (Tier 5)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_58965", + ["text"] = "Minions deal 18 to 28 additional Physical Damage (Tier 4)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_59606", + ["text"] = "Minions deal 19 to 30 additional Cold Damage Minions have 40% reduced Critical Strike Chance (Tier 4)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_18043", + ["text"] = "Minions deal 19 to 30 additional Fire Damage Minions have 6% reduced Attack and Cast Speed (Tier 4)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_52729", + ["text"] = "Minions deal 2 to 22 additional Lightning Damage Minions have 25% increased Critical Strike Chance (Tier 4)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_44344", + ["text"] = "Minions deal 2 to 22 additional Lightning Damage Minions have 8% chance to Shock (Tier 4)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_27178", + ["text"] = "Minions deal 2 to 24 additional Lightning Damage Minions have 16% chance to Shock (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_64105", + ["text"] = "Minions deal 2 to 24 additional Lightning Damage Minions have 40% increased Critical Strike Chance (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_63645", + ["text"] = "Minions deal 2 to 37 additional Lightning Damage (Tier 4)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_52578", + ["text"] = "Minions deal 2 to 4 additional Cold Damage Minions have 6% increased Attack and Cast Speed (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_797", + ["text"] = "Minions deal 2 to 4 additional Fire Damage Minions have 8% chance to Ignite (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_14291", + ["text"] = "Minions deal 2 to 4 additional Physical Damage Minions Attacks Overwhelm 5% Physical Damage Reduction (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_33763", + ["text"] = "Minions deal 2 to 41 additional Lightning Damage (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_4446", + ["text"] = "Minions deal 2 to 43 additional Lightning Damage Minions have 25% increased Critical Strike Chance (Tier 5)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_5604", + ["text"] = "Minions deal 2 to 43 additional Lightning Damage Minions have 8% chance to Shock (Tier 5)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_4365", + ["text"] = "Minions deal 2 to 5 additional Chaos Damage (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_1715", + ["text"] = "Minions deal 2 to 5 additional Cold Damage Minions have 10% increased Attack and Cast Speed (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_23242", + ["text"] = "Minions deal 2 to 5 additional Cold Damage Minions have 8% chance to Freeze (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_34723", + ["text"] = "Minions deal 2 to 5 additional Fire Damage (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_33074", + ["text"] = "Minions deal 2 to 5 additional Physical Damage Minions have 6% reduced Attack and Cast Speed (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_14494", + ["text"] = "Minions deal 2 to 5 additional Physical Damage (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_23448", + ["text"] = "Minions deal 2 to 6 additional Chaos Damage (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_62339", + ["text"] = "Minions deal 2 to 6 additional Cold Damage (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_41177", + ["text"] = "Minions deal 2 to 6 additional Fire Damage Minions have 16% chance to Ignite (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_63983", + ["text"] = "Minions deal 2 to 6 additional Physical Damage (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_52471", + ["text"] = "Minions deal 20 to 32 additional Cold Damage (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_18058", + ["text"] = "Minions deal 20% increased Damage (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_56788", + ["text"] = "Minions deal 21 to 33 additional Chaos Damage (Tier 5)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_37830", + ["text"] = "Minions deal 21 to 33 additional Physical Damage (Tier 5)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_8684", + ["text"] = "Minions deal 21 to 34 additional Cold Damage Minions have 80% reduced Critical Strike Chance (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_7684", + ["text"] = "Minions deal 21 to 34 additional Fire Damage Minions have 10% reduced Attack and Cast Speed (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_21298", + ["text"] = "Minions deal 21% increased Damage Minions have 40% reduced Critical Strike Chance (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_42224", + ["text"] = "Minions deal 22 to 33 additional Physical Damage Minions Attacks Overwhelm 10% Physical Damage Reduction (Tier 5)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_27394", + ["text"] = "Minions deal 22% increased Damage Minions have 80% reduced Critical Strike Chance (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_21042", + ["text"] = "Minions deal 24 to 37 additional Physical Damage Minions have 10% reduced Attack and Cast Speed (Tier 4)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_37459", + ["text"] = "Minions deal 24% increased Damage (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_35929", + ["text"] = "Minions deal 25% increased Damage (Tier 4)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_2341", + ["text"] = "Minions deal 26 to 40 additional Cold Damage Minions have 16% chance to Freeze (Tier 4)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_46564", + ["text"] = "Minions deal 28 to 42 additional Physical Damage Minions have 6% reduced Attack and Cast Speed (Tier 5)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_39499", + ["text"] = "Minions deal 28 to 43 additional Fire Damage (Tier 4)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_44376", + ["text"] = "Minions deal 28% increased Damage Minions have 40% reduced Critical Strike Chance (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_43533", + ["text"] = "Minions deal 29 to 43 additional Cold Damage Minions have 8% chance to Freeze (Tier 5)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_11377", + ["text"] = "Minions deal 3 to 41 additional Lightning Damage Minions have 16% chance to Shock (Tier 4)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_8376", + ["text"] = "Minions deal 3 to 41 additional Lightning Damage Minions have 40% increased Critical Strike Chance (Tier 4)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_45079", + ["text"] = "Minions deal 3 to 6 additional Physical Damage Minions Attacks Overwhelm 10% Physical Damage Reduction (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_9845", + ["text"] = "Minions deal 3 to 68 additional Lightning Damage (Tier 4)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_18130", + ["text"] = "Minions deal 3 to 7 additional Cold Damage Minions have 8% chance to Freeze (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_50723", + ["text"] = "Minions deal 30 to 45 additional Fire Damage (Tier 5)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_64645", + ["text"] = "Minions deal 30% increased Damage (Tier 5)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_49539", + ["text"] = "Minions deal 30% reduced Damage Minions have 40% increased Area of Effect (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_7122", + ["text"] = "Minions deal 30% reduced Damage Minions have 60% increased Area of Effect (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_51658", + ["text"] = "Minions deal 32 to 47 additional Cold Damage Minions have 10% increased Attack and Cast Speed (Tier 5)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_26395", + ["text"] = "Minions deal 32% increased Damage (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_43972", + ["text"] = "Minions deal 34 to 51 additional Fire Damage Minions have 16% chance to Ignite (Tier 5)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_32893", + ["text"] = "Minions deal 34 to 52 additional Cold Damage (Tier 4)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_12091", + ["text"] = "Minions deal 34% increased Damage Minions have 80% reduced Critical Strike Chance (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_22075", + ["text"] = "Minions deal 35% increased Damage Minions have 40% reduced Critical Strike Chance (Tier 4)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_44901", + ["text"] = "Minions deal 36 to 55 additional Chaos Damage (Tier 5)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_43619", + ["text"] = "Minions deal 36 to 55 additional Physical Damage (Tier 5)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_50791", + ["text"] = "Minions deal 37 to 55 additional Cold Damage Minions have 80% reduced Critical Strike Chance (Tier 4)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_37266", + ["text"] = "Minions deal 37 to 55 additional Fire Damage Minions have 10% reduced Attack and Cast Speed (Tier 4)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_56911", + ["text"] = "Minions deal 37 to 56 additional Cold Damage (Tier 5)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_40148", + ["text"] = "Minions deal 39 to 59 additional Cold Damage Minions have 40% reduced Critical Strike Chance (Tier 5)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_54492", + ["text"] = "Minions deal 39 to 59 additional Fire Damage Minions have 6% reduced Attack and Cast Speed (Tier 5)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_1843", + ["text"] = "Minions deal 4 to 6 additional Cold Damage Minions have 40% reduced Critical Strike Chance (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_58222", + ["text"] = "Minions deal 4 to 6 additional Fire Damage Minions have 6% reduced Attack and Cast Speed (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_18189", + ["text"] = "Minions deal 4 to 6 additional Physical Damage Minions Attacks Overwhelm 5% Physical Damage Reduction (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_27276", + ["text"] = "Minions deal 4 to 7 additional Cold Damage Minions have 16% chance to Freeze (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_6782", + ["text"] = "Minions deal 4 to 7 additional Physical Damage Minions have 10% reduced Attack and Cast Speed (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_5013", + ["text"] = "Minions deal 4 to 72 additional Lightning Damage (Tier 5)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_64206", + ["text"] = "Minions deal 4 to 8 additional Cold Damage Minions have 6% increased Attack and Cast Speed (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_42162", + ["text"] = "Minions deal 4 to 80 additional Lightning Damage Minions have 16% chance to Shock (Tier 5)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_5783", + ["text"] = "Minions deal 4 to 80 additional Lightning Damage Minions have 40% increased Critical Strike Chance (Tier 5)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_59717", + ["text"] = "Minions deal 4 to 9 additional Fire Damage Minions have 8% chance to Ignite (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_18110", + ["text"] = "Minions deal 40% increased Damage (Tier 4)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_23715", + ["text"] = "Minions deal 42% increased Damage Minions have 40% reduced Critical Strike Chance (Tier 5)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_64784", + ["text"] = "Minions deal 45% increased Damage Minions have 80% reduced Critical Strike Chance (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_45709", + ["text"] = "Minions deal 47 to 71 additional Physical Damage Minions have 10% reduced Attack and Cast Speed (Tier 5)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_30015", + ["text"] = "Minions deal 48% increased Damage (Tier 5)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_12328", + ["text"] = "Minions deal 5 to 10 additional Chaos Damage (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_30083", + ["text"] = "Minions deal 5 to 10 additional Cold Damage (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_43725", + ["text"] = "Minions deal 5 to 10 additional Physical Damage (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_32288", + ["text"] = "Minions deal 5 to 7 additional Fire Damage (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_6871", + ["text"] = "Minions deal 5 to 7 additional Fire Damage (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_7163", + ["text"] = "Minions deal 5 to 7 additional Physical Damage Minions have 6% reduced Attack and Cast Speed (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_48820", + ["text"] = "Minions deal 5 to 8 additional Cold Damage Minions have 10% increased Attack and Cast Speed (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_10108", + ["text"] = "Minions deal 5 to 8 additional Cold Damage (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_38082", + ["text"] = "Minions deal 5 to 8 additional Fire Damage Minions have 16% chance to Ignite (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_53920", + ["text"] = "Minions deal 53 to 79 additional Cold Damage Minions have 16% chance to Freeze (Tier 5)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_11819", + ["text"] = "Minions deal 56 to 84 additional Fire Damage (Tier 5)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_63279", + ["text"] = "Minions deal 56% increased Damage Minions have 80% reduced Critical Strike Chance (Tier 4)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_13136", + ["text"] = "Minions deal 6 to 10 additional Chaos Damage (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_33210", + ["text"] = "Minions deal 6 to 10 additional Cold Damage Minions have 40% reduced Critical Strike Chance (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_45922", + ["text"] = "Minions deal 6 to 10 additional Fire Damage Minions have 6% reduced Attack and Cast Speed (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_27773", + ["text"] = "Minions deal 6 to 10 additional Physical Damage Minions Attacks Overwhelm 5% Physical Damage Reduction (Tier 4)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_3117", + ["text"] = "Minions deal 6 to 10 additional Physical Damage (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_53931", + ["text"] = "Minions deal 68 to 103 additional Cold Damage (Tier 5)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_26117", + ["text"] = "Minions deal 68% increased Damage Minions have 80% reduced Critical Strike Chance (Tier 5)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_8327", + ["text"] = "Minions deal 7 to 10 additional Cold Damage Minions have 80% reduced Critical Strike Chance (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_3437", + ["text"] = "Minions deal 7 to 10 additional Fire Damage Minions have 10% reduced Attack and Cast Speed (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_4647", + ["text"] = "Minions deal 7 to 10 additional Physical Damage Minions Attacks Overwhelm 10% Physical Damage Reduction (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_33139", + ["text"] = "Minions deal 7 to 12 additional Cold Damage Minions have 16% chance to Freeze (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_27604", + ["text"] = "Minions deal 7 to 12 additional Physical Damage Minions have 10% reduced Attack and Cast Speed (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_51239", + ["text"] = "Minions deal 7 to 133 additional Lightning Damage (Tier 5)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_46632", + ["text"] = "Minions deal 73 to 109 additional Cold Damage Minions have 80% reduced Critical Strike Chance (Tier 5)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_31521", + ["text"] = "Minions deal 73 to 109 additional Fire Damage Minions have 10% reduced Attack and Cast Speed (Tier 5)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_50744", + ["text"] = "Minions deal 8 to 14 additional Cold Damage Minions have 6% increased Attack and Cast Speed (Tier 4)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_58836", + ["text"] = "Minions deal 8 to 14 additional Cold Damage Minions have 8% chance to Freeze (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_53810", + ["text"] = "Minions deal 8 to 14 additional Fire Damage Minions have 8% chance to Ignite (Tier 4)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_5688", + ["text"] = "Minions deal 8 to 14 additional Physical Damage Minions have 6% reduced Attack and Cast Speed (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_37836", + ["text"] = "Minions deal 9 to 13 additional Fire Damage (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_57885", + ["text"] = "Minions deal 9 to 14 additional Fire Damage (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_63368", + ["text"] = "Minions deal 9 to 15 additional Cold Damage Minions have 10% increased Attack and Cast Speed (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_5094", + ["text"] = "Minions deal 9 to 16 additional Fire Damage Minions have 16% chance to Ignite (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_61306", + ["text"] = "Minions have +0.2% to Critical Strike Chance Minions have +25% to Critical Strike Multiplier (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_10891", + ["text"] = "Minions have +0.3% to Critical Strike Chance Minions have +25% to Critical Strike Multiplier (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_23328", + ["text"] = "Minions have +0.3% to Critical Strike Chance Minions have +35% to Critical Strike Multiplier (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_16716", + ["text"] = "Minions have +0.4% to Critical Strike Chance Minions have +25% to Critical Strike Multiplier (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_65116", + ["text"] = "Minions have +0.4% to Critical Strike Chance (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_34473", + ["text"] = "Minions have +0.5% to Critical Strike Chance Minions have +35% to Critical Strike Multiplier (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_37113", + ["text"] = "Minions have +0.6% to Critical Strike Chance (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_7914", + ["text"] = "Minions have +0.7% to Critical Strike Chance Minions have +35% to Critical Strike Multiplier (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_60460", + ["text"] = "Minions have +0.7% to Critical Strike Chance (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_20535", + ["text"] = "Minions have +0.8% to Critical Strike Chance (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_55506", + ["text"] = "Minions have +1% to Critical Strike Chance Minions have 10% reduced Attack and Cast Speed (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_63053", + ["text"] = "Minions have +1% to Critical Strike Chance (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_45474", + ["text"] = "Minions have +1% to all maximum Elemental Resistances (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_63201", + ["text"] = "Minions have +1.2% to Critical Strike Chance Minions have 10% reduced Attack and Cast Speed (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_33715", + ["text"] = "Minions have +1.3% to Critical Strike Chance (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_43718", + ["text"] = "Minions have +1.4% to Critical Strike Chance Minions have 10% reduced Attack and Cast Speed (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_59604", + ["text"] = "Minions have +1.7% to Critical Strike Chance Minions have 15% reduced Attack and Cast Speed (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_23662", + ["text"] = "Minions have +100 to Accuracy Rating Minions have 25% increased Evasion Rating (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_61142", + ["text"] = "Minions have +1000 to Armour (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_31864", + ["text"] = "Minions have +12% to all Elemental Resistances Minions have -11% to Chaos Resistance (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_41323", + ["text"] = "Minions have +150 to Accuracy Rating Minions have 25% increased Evasion Rating (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_48570", + ["text"] = "Minions have +16% to all Elemental Resistances Minions have -11% to Chaos Resistance (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_35654", + ["text"] = "Minions have +160 to Accuracy Rating Minions have 40% increased Evasion Rating (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_18089", + ["text"] = "Minions have +2% to Critical Strike Chance Minions have 15% reduced Attack and Cast Speed (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_21700", + ["text"] = "Minions have +2% to all maximum Elemental Resistances (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_19694", + ["text"] = "Minions have +2.3% to Critical Strike Chance Minions have 15% reduced Attack and Cast Speed (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_13658", + ["text"] = "Minions have +20% Chance to Block Attack Damage Minions have -10% Chance to Block Spell Damage (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_59684", + ["text"] = "Minions have +200 to Accuracy Rating Minions have 25% increased Evasion Rating (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_47097", + ["text"] = "Minions have +200 to Accuracy Rating (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_50537", + ["text"] = "Minions have +240 to Accuracy Rating Minions have 40% increased Evasion Rating (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_14679", + ["text"] = "Minions have +25% Chance to Block Attack Damage Minions have -10% Chance to Block Spell Damage (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_58834", + ["text"] = "Minions have +25% to all Elemental Resistances Minions have -23% to Chaos Resistance (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_10038", + ["text"] = "Minions have +250 to Accuracy Rating (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_30998", + ["text"] = "Minions have +30% Chance to Block Attack Damage Minions have -15% Chance to Block Spell Damage (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_65408", + ["text"] = "Minions have +300 to Accuracy Rating (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_63695", + ["text"] = "Minions have +300 to Accuracy Rating (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_36539", + ["text"] = "Minions have +320 to Accuracy Rating Minions have 40% increased Evasion Rating (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_54906", + ["text"] = "Minions have +35% to all Elemental Resistances Minions have -23% to Chaos Resistance (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_2975", + ["text"] = "Minions have +350 to Armour (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_39160", + ["text"] = "Minions have +40% Chance to Block Attack Damage Minions have -15% Chance to Block Spell Damage (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_52588", + ["text"] = "Minions have +400 to Accuracy Rating (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_13322", + ["text"] = "Minions have +500 to Accuracy Rating (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_7437", + ["text"] = "Minions have +500 to Armour (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_12389", + ["text"] = "Minions have +700 to Armour (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_14857", + ["text"] = "Minions have -1.5% to Critical Strike Chance Minions have +100% to Critical Strike Multiplier (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_15181", + ["text"] = "Minions have -1.5% to Critical Strike Chance Minions have +100% to Critical Strike Multiplier (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_59962", + ["text"] = "Minions have -1.5% to Critical Strike Chance Minions have +130% to Critical Strike Multiplier (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_35425", + ["text"] = "Minions have -1.5% to Critical Strike Chance Minions have +160% to Critical Strike Multiplier (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_19183", + ["text"] = "Minions have -1.5% to Critical Strike Chance Minions have +60% to Critical Strike Multiplier (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_27623", + ["text"] = "Minions have -1.5% to Critical Strike Chance Minions have +80% to Critical Strike Multiplier (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_12754", + ["text"] = "Minions have -10% Chance to Block Attack Damage Minions have +20% Chance to Block Spell Damage (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_15875", + ["text"] = "Minions have -10% Chance to Block Attack Damage Minions have +25% Chance to Block Spell Damage (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_62631", + ["text"] = "Minions have -12% to all Elemental Resistances Minions gain 30% of Maximum Life as Extra Maximum Energy Shield (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_25448", + ["text"] = "Minions have -12% to all Elemental Resistances Minions gain 40% of Maximum Life as Extra Maximum Energy Shield (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_11254", + ["text"] = "Minions have -12% to all Elemental Resistances Minions have +37% to Chaos Resistance (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_40035", + ["text"] = "Minions have -12% to all Elemental Resistances Minions have +47% to Chaos Resistance (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_351", + ["text"] = "Minions have -15% Chance to Block Attack Damage Minions have +30% Chance to Block Spell Damage (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_22717", + ["text"] = "Minions have -15% Chance to Block Attack Damage Minions have +40% Chance to Block Spell Damage (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_52340", + ["text"] = "Minions have -6% to all Elemental Resistances Minions gain 15% of Maximum Life as Extra Maximum Energy Shield (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_36548", + ["text"] = "Minions have -6% to all Elemental Resistances Minions gain 20% of Maximum Life as Extra Maximum Energy Shield (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_15427", + ["text"] = "Minions have -6% to all Elemental Resistances Minions have +17% to Chaos Resistance (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_49966", + ["text"] = "Minions have -6% to all Elemental Resistances Minions have +23% to Chaos Resistance (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_19707", + ["text"] = "Minions have -7% to Chaos Resistance Minions have 10% chance to gain Unholy Might for 4 seconds on Kill (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_11287", + ["text"] = "Minions have -7% to Chaos Resistance Minions have 15% chance to gain Unholy Might for 4 seconds on Kill (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_54301", + ["text"] = "Minions have -7% to Chaos Resistance Minions have 20% chance to gain Unholy Might for 4 seconds on Kill (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_32077", + ["text"] = "Minions have -7% to Chaos Resistance Minions have 30% chance to gain Unholy Might for 4 seconds on Kill (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_11024", + ["text"] = "Minions have 10% chance to Blind on Hit with Attacks (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_14928", + ["text"] = "Minions have 10% chance to Hinder Enemies on Hit with Spells (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_23110", + ["text"] = "Minions have 10% increased Attack and Cast Speed Minions take 15% reduced Damage (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_1439", + ["text"] = "Minions have 10% increased Attack and Cast Speed (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_49305", + ["text"] = "Minions have 10% reduced Life Recovery rate Minions have 20% increased maximum Life (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_17906", + ["text"] = "Minions have 10% reduced Life Recovery rate Minions have 30% increased maximum Life (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_17021", + ["text"] = "Minions have 10% reduced Movement Speed Minions have 10% chance to gain Onslaught for 4 seconds on Kill (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_35882", + ["text"] = "Minions have 10% reduced Movement Speed Minions have 15% chance to gain Onslaught for 4 seconds on Kill (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_63110", + ["text"] = "Minions have 10% reduced Movement Speed Minions have 20% chance to gain Onslaught for 4 seconds on Kill (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_8656", + ["text"] = "Minions have 10% reduced Movement Speed Minions have 30% chance to gain Onslaught for 4 seconds on Kill (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_14545", + ["text"] = "Minions have 10% reduced maximum Life Minions Recover 3% of their Life when they Block (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_53587", + ["text"] = "Minions have 10% reduced maximum Life Minions Recover 4% of their Life when they Block (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_22264", + ["text"] = "Minions have 12% chance to Poison Enemies on Hit 20% increased Poison Duration on you (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_47420", + ["text"] = "Minions have 12% chance to cause Bleeding with Attacks 20% increased Bleed Duration on you (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_35298", + ["text"] = "Minions have 12% increased Attack and Cast Speed Minion Critical Strikes do not deal extra Damage (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_32286", + ["text"] = "Minions have 12% increased Attack and Cast Speed Minions take 15% increased Damage (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_32879", + ["text"] = "Minions have 12% increased Attack and Cast Speed Minions take 15% reduced Damage (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_33886", + ["text"] = "Minions have 12% increased Attack and Cast Speed (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_14096", + ["text"] = "Minions have 12% increased Movement Speed (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_9467", + ["text"] = "Minions have 14% increased Attack and Cast Speed (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_56587", + ["text"] = "Minions have 15% chance to Blind on Hit with Attacks (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_19140", + ["text"] = "Minions have 15% chance to Hinder Enemies on Hit with Spells (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_41655", + ["text"] = "Minions have 15% increased Life Recovery rate Minions have 15% reduced maximum Life (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_62349", + ["text"] = "Minions have 15% increased Projectile Speed (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_19084", + ["text"] = "Minions have 15% reduced Evasion Rating Minions have +15% chance to Suppress Spell Damage (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_45781", + ["text"] = "Minions have 15% reduced Evasion Rating Minions have +25% chance to Suppress Spell Damage (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_63899", + ["text"] = "Minions have 16% chance to Poison Enemies on Hit 40% increased Poison Duration on you (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_62323", + ["text"] = "Minions have 16% chance to Poison Enemies on Hit Minions deal 1 to 3 additional Chaos Damage (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_3733", + ["text"] = "Minions have 16% chance to Poison Enemies on Hit Minions deal 11 to 17 additional Chaos Damage (Tier 4)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_53281", + ["text"] = "Minions have 16% chance to Poison Enemies on Hit Minions deal 22 to 33 additional Chaos Damage (Tier 5)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_24625", + ["text"] = "Minions have 16% chance to Poison Enemies on Hit Minions deal 3 to 6 additional Chaos Damage (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_58150", + ["text"] = "Minions have 16% chance to Poison Enemies on Hit Minions deal 7 to 10 additional Chaos Damage (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_46451", + ["text"] = "Minions have 16% chance to cause Bleeding with Attacks 40% increased Bleed Duration on you (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_38943", + ["text"] = "Minions have 16% increased Attack and Cast Speed Minion Critical Strikes do not deal extra Damage (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_19795", + ["text"] = "Minions have 16% increased Attack and Cast Speed Minions take 15% increased Damage (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_3294", + ["text"] = "Minions have 16% increased Movement Speed (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_3646", + ["text"] = "Minions have 18% increased Attack and Cast Speed Minion Critical Strikes do not deal extra Damage (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_35834", + ["text"] = "Minions have 18% increased Attack and Cast Speed Minions take 25% increased Damage (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_38455", + ["text"] = "Minions have 18% increased Attack and Cast Speed (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_2099", + ["text"] = "Minions have 20% chance to Blind on Hit with Attacks (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_17065", + ["text"] = "Minions have 20% chance to Hinder Enemies on Hit with Spells (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_30738", + ["text"] = "Minions have 20% increased Attack and Cast Speed Minion Critical Strikes do not deal extra Damage (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_953", + ["text"] = "Minions have 20% increased Attack and Cast Speed Minions take 15% increased Damage (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_22251", + ["text"] = "Minions have 20% increased Evasion Rating (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_33652", + ["text"] = "Minions have 20% increased Life Recovery rate Minions have 15% reduced maximum Life (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_44022", + ["text"] = "Minions have 20% increased Projectile Speed (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_17847", + ["text"] = "Minions have 20% reduced Life Recovery rate Minions have 40% increased maximum Life (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_25369", + ["text"] = "Minions have 20% reduced Life Recovery rate Minions have 60% increased maximum Life (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_25937", + ["text"] = "Minions have 20% reduced maximum Life Minions Recover 6% of their Life when they Block (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_34844", + ["text"] = "Minions have 20% reduced maximum Life Minions Recover 8% of their Life when they Block (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_18132", + ["text"] = "Minions have 22% increased Attack and Cast Speed (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_35465", + ["text"] = "Minions have 24% chance to Poison Enemies on Hit 40% increased Poison Duration on you (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_5974", + ["text"] = "Minions have 24% chance to cause Bleeding with Attacks 40% increased Bleed Duration on you (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_1020", + ["text"] = "Minions have 24% increased Attack and Cast Speed Minion Critical Strikes do not deal extra Damage (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_23800", + ["text"] = "Minions have 24% increased Attack and Cast Speed Minions take 25% increased Damage (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_40752", + ["text"] = "Minions have 24% increased Movement Speed (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_63115", + ["text"] = "Minions have 30% chance to Blind on Hit with Attacks (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_55412", + ["text"] = "Minions have 30% chance to Hinder Enemies on Hit with Spells (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_40386", + ["text"] = "Minions have 30% increased Attack and Cast Speed Minion Critical Strikes do not deal extra Damage (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_4631", + ["text"] = "Minions have 30% increased Attack and Cast Speed Minions take 25% increased Damage (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_15170", + ["text"] = "Minions have 30% increased Evasion Rating (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_360", + ["text"] = "Minions have 30% increased Life Recovery rate Minions have 30% reduced maximum Life (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_36540", + ["text"] = "Minions have 30% increased Projectile Speed (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_47161", + ["text"] = "Minions have 30% reduced Evasion Rating Minions have +30% chance to Suppress Spell Damage (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_41497", + ["text"] = "Minions have 30% reduced Evasion Rating Minions have +50% chance to Suppress Spell Damage (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_60343", + ["text"] = "Minions have 32% increased Movement Speed (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_62716", + ["text"] = "Minions have 4% increased Attack and Cast Speed Minions take 10% reduced Damage (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_29318", + ["text"] = "Minions have 40% increased Evasion Rating (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_27878", + ["text"] = "Minions have 40% increased Life Recovery rate Minions have 30% reduced maximum Life (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_17656", + ["text"] = "Minions have 40% increased Projectile Speed (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_37671", + ["text"] = "Minions have 5% increased Attack and Cast Speed Minions take 10% reduced Damage (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_21079", + ["text"] = "Minions have 6% increased Attack and Cast Speed Minions take 10% reduced Damage (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_3834", + ["text"] = "Minions have 60% increased Evasion Rating (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_10699", + ["text"] = "Minions have 8% chance to Poison Enemies on Hit 20% increased Poison Duration on you (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_32284", + ["text"] = "Minions have 8% chance to Poison Enemies on Hit Minions deal 1 to 3 additional Chaos Damage (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_52766", + ["text"] = "Minions have 8% chance to Poison Enemies on Hit Minions deal 13 to 20 additional Chaos Damage (Tier 5)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_64805", + ["text"] = "Minions have 8% chance to Poison Enemies on Hit Minions deal 2 to 4 additional Chaos Damage (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_58292", + ["text"] = "Minions have 8% chance to Poison Enemies on Hit Minions deal 4 to 6 additional Chaos Damage (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_29145", + ["text"] = "Minions have 8% chance to Poison Enemies on Hit Minions deal 6 to 10 additional Chaos Damage (Tier 4)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_48032", + ["text"] = "Minions have 8% chance to cause Bleeding with Attacks 20% increased Bleed Duration on you (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_12574", + ["text"] = "Minions have 8% increased Attack and Cast Speed Minions take 15% reduced Damage (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_41072", + ["text"] = "Minions have 8% increased Attack and Cast Speed (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_64231", + ["text"] = "Minions never deal Critical Strikes Minions' Hits can't be Evaded (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_58438", + ["text"] = "Overwhelm 15% Physical Damage Reduction Hits against you Overwhelm 5% of Physical Damage Reduction (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_5001", + ["text"] = "Overwhelm 20% Physical Damage Reduction Hits against you Overwhelm 5% of Physical Damage Reduction (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_61314", + ["text"] = "Overwhelm 24% Physical Damage Reduction Hits against you Overwhelm 10% of Physical Damage Reduction (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_31469", + ["text"] = "Overwhelm 32% Physical Damage Reduction Hits against you Overwhelm 10% of Physical Damage Reduction (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_40058", + ["text"] = "Pain Attunement (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_26382", + ["text"] = "Perfect Agony (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_55555", + ["text"] = "Point Blank (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_44433", + ["text"] = "Poisons inflicted by Sunder or Ground Slam on non-Poisoned Enemies deal 400% increased Damage (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_64182", + ["text"] = "Poisons inflicted by Sunder or Ground Slam on non-Poisoned Enemies deal 600% increased Damage (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_58601", + ["text"] = "Precise Technique (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_18416", + ["text"] = "Precision has 20% increased Aura Effect Precision has 25% increased Reservation (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_32121", + ["text"] = "Precision has 25% increased Aura Effect Precision has 25% increased Reservation (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_10647", + ["text"] = "Precision has 30% increased Aura Effect Precision has 25% increased Reservation (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_16175", + ["text"] = "Precision has 40% increased Aura Effect Precision has 50% increased Reservation (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_2821", + ["text"] = "Precision has 50% increased Aura Effect Precision has 50% increased Reservation (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_24956", + ["text"] = "Precision has 60% increased Aura Effect Precision has 50% increased Reservation (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_25739", + ["text"] = "Prevent +2% of Suppressed Spell Damage -10% chance to Suppress Spell Damage (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_34924", + ["text"] = "Prevent +3% of Suppressed Spell Damage -10% chance to Suppress Spell Damage (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_21373", + ["text"] = "Pride has 20% increased Aura Effect Pride has 25% increased Reservation (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_57855", + ["text"] = "Pride has 25% increased Aura Effect Pride has 25% increased Reservation (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_51920", + ["text"] = "Pride has 30% increased Aura Effect Pride has 25% increased Reservation (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_23802", + ["text"] = "Pride has 40% increased Aura Effect Pride has 50% increased Reservation (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_46544", + ["text"] = "Pride has 50% increased Aura Effect Pride has 50% increased Reservation (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_47160", + ["text"] = "Pride has 60% increased Aura Effect Pride has 50% increased Reservation (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_19393", + ["text"] = "Projectiles Pierce 2 additional Targets (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_24366", + ["text"] = "Projectiles Pierce an additional Target (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_47557", + ["text"] = "Projectiles Pierce an additional Target (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_17809", + ["text"] = "Projectiles have 30% chance for an additional Projectile when Forking (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_26983", + ["text"] = "Projectiles have 40% chance for an additional Projectile when Forking (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_62302", + ["text"] = "Projectiles have 50% chance for an additional Projectile when Forking (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_46279", + ["text"] = "Projectiles have 75% chance for an additional Projectile when Forking (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_4891", + ["text"] = "Purity of Elements has 20% increased Aura Effect Purity of Elements has 25% increased Reservation (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_19414", + ["text"] = "Purity of Elements has 25% increased Aura Effect Purity of Elements has 25% increased Reservation (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_31468", + ["text"] = "Purity of Elements has 30% increased Aura Effect Purity of Elements has 25% increased Reservation (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_53250", + ["text"] = "Purity of Fire has 20% increased Aura Effect Purity of Fire has 25% increased Reservation (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_44607", + ["text"] = "Purity of Fire has 25% increased Aura Effect Purity of Fire has 25% increased Reservation (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_37703", + ["text"] = "Purity of Fire has 30% increased Aura Effect Purity of Fire has 25% increased Reservation (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_64062", + ["text"] = "Purity of Ice has 20% increased Aura Effect Purity of Ice has 25% increased Reservation (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_60707", + ["text"] = "Purity of Ice has 25% increased Aura Effect Purity of Ice has 25% increased Reservation (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_54096", + ["text"] = "Purity of Ice has 30% increased Aura Effect Purity of Ice has 25% increased Reservation (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_22630", + ["text"] = "Purity of Lightning has 20% increased Aura Effect Purity of Lightning has 25% increased Reservation (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_15792", + ["text"] = "Purity of Lightning has 25% increased Aura Effect Purity of Lightning has 25% increased Reservation (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_49397", + ["text"] = "Purity of Lightning has 30% increased Aura Effect Purity of Lightning has 25% increased Reservation (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_49661", + ["text"] = "Rain of Arrows and Toxic Rain deal 300% more Damage with Bleeding -60% of Toxic Rain Physical Damage Converted to Chaos Damage (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_48348", + ["text"] = "Raised Zombies and Spectres gain Adrenaline for 14 seconds when Raised (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_56565", + ["text"] = "Raised Zombies and Spectres gain Adrenaline for 8 seconds when Raised (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_27393", + ["text"] = "Rampage (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_20692", + ["text"] = "Recover 1% of Energy Shield per Steel Shard Consumed (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_39897", + ["text"] = "Recover 2% of Energy Shield per Steel Shard Consumed (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_63571", + ["text"] = "Recover 2% of Life when you Suppress Spell Damage (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_55865", + ["text"] = "Recover 3% of Life when you Suppress Spell Damage (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_21274", + ["text"] = "Recover 30 Life when you Block (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_2611", + ["text"] = "Recover 50 Life when you Block (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_11967", + ["text"] = "Regenerate 0.2% of Mana per second 10% increased Mana Cost of Skills (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_62254", + ["text"] = "Regenerate 0.2% of Mana per second 5% more maximum Mana (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_45101", + ["text"] = "Regenerate 0.3% of Mana per second 10% increased Mana Cost of Skills (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_53499", + ["text"] = "Regenerate 0.3% of Mana per second 5% more maximum Mana (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_52532", + ["text"] = "Regenerate 0.4% of Mana per second 10% increased Mana Cost of Skills (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_56648", + ["text"] = "Regenerate 0.4% of Mana per second 5% more maximum Mana (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_7155", + ["text"] = "Regenerate 0.5% of Mana per second 15% increased Mana Cost of Skills (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_37137", + ["text"] = "Regenerate 0.5% of Mana per second 8% more maximum Mana (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_27842", + ["text"] = "Regenerate 0.5% of Mana per second (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_5289", + ["text"] = "Regenerate 0.6% of Mana per second 15% increased Mana Cost of Skills (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_43592", + ["text"] = "Regenerate 0.6% of Mana per second 8% more maximum Mana (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_12001", + ["text"] = "Regenerate 0.6% of Mana per second (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_61183", + ["text"] = "Regenerate 0.7% of Mana per second 15% increased Mana Cost of Skills (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_50252", + ["text"] = "Regenerate 0.7% of Mana per second 8% more maximum Mana (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_16250", + ["text"] = "Regenerate 0.7% of Mana per second (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_54022", + ["text"] = "Regenerate 0.8% of Mana per second (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_5949", + ["text"] = "Regenerate 0.9% of Mana per second (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_29064", + ["text"] = "Regenerate 1% of Mana per second 20% reduced Reservation Efficiency of Skills (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_44531", + ["text"] = "Regenerate 1% of Mana per second (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_14608", + ["text"] = "Regenerate 1.2% of Mana per second 20% reduced Reservation Efficiency of Skills (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_37261", + ["text"] = "Regenerate 1.5% of Mana per second 15% less maximum Mana (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_37115", + ["text"] = "Regenerate 1.5% of Mana per second 20% reduced Reservation Efficiency of Skills (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_195", + ["text"] = "Regenerate 1.5% of Mana per second 30% reduced Reservation Efficiency of Skills (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_39008", + ["text"] = "Regenerate 1.8% of Mana per second 15% less maximum Mana (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_5727", + ["text"] = "Regenerate 15 Mana per second while any Enemy is in your Righteous Fire or Scorching Ray (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_3323", + ["text"] = "Regenerate 2% of Energy Shield per second while on Low Life (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_8527", + ["text"] = "Regenerate 2% of Life per second while on Low Life (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_62936", + ["text"] = "Regenerate 2% of Mana per second 15% less maximum Mana (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_20780", + ["text"] = "Regenerate 2% of Mana per second 25% less maximum Mana (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_24763", + ["text"] = "Regenerate 2% of Mana per second 30% reduced Reservation Efficiency of Skills (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_30287", + ["text"] = "Regenerate 2.5% of Mana per second 25% less maximum Mana (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_52914", + ["text"] = "Regenerate 2.5% of Mana per second 30% reduced Reservation Efficiency of Skills (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_26652", + ["text"] = "Regenerate 25 Mana per second while any Enemy is in your Righteous Fire or Scorching Ray (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_16411", + ["text"] = "Regenerate 3% of Energy Shield per second while on Low Life (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_37946", + ["text"] = "Regenerate 3% of Life per second while on Low Life (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_19977", + ["text"] = "Regenerate 3% of Mana per second 25% less maximum Mana (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_57442", + ["text"] = "Removes 4 of your Life per Enemy Hit Grants 6 Mana per Enemy Hit (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_21451", + ["text"] = "Removes 4 of your Life per Enemy Hit Grants 8 Mana per Enemy Hit (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_53600", + ["text"] = "Resolute Technique (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_11043", + ["text"] = "Retaliation Skills have 30% reduced Cooldown Recovery Rate Retaliation Skills deal 45% more Damage (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_48221", + ["text"] = "Retaliation Skills have 30% reduced Cooldown Recovery Rate Retaliation Skills deal 60% more Damage (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_31512", + ["text"] = "Runebinder (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_44299", + ["text"] = "Shield Charge and Chain Hook have 2% increased Attack Speed per 10 Rampage Kills (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_20227", + ["text"] = "Shield Crush and Spectral Shield Throw do not gain Added Physical Damage based on Armour or Evasion on shield Shield Crush and Spectral Shield Throw gains 15 to 25 Added Lightning Damage per 15 Energy Shield on Shield 100% of Shield Crush and Spectral Shield Throw Physical Damage Converted to Lightning Damage (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_60578", + ["text"] = "Shield Crush and Spectral Shield Throw do not gain Added Physical Damage based on Armour or Evasion on shield Shield Crush and Spectral Shield Throw gains 30 to 50 Added Lightning Damage per 15 Energy Shield on Shield 100% of Shield Crush and Spectral Shield Throw Physical Damage Converted to Lightning Damage (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_26956", + ["text"] = "Shock Attackers for 4 seconds on Block (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_65267", + ["text"] = "Skills used by Mines have 40% reduced Area of Effect 25% increased Effect of Auras from Mines (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_2040", + ["text"] = "Skills used by Mines have 40% reduced Area of Effect 40% increased Effect of Auras from Mines (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_31177", + ["text"] = "Skills used by Mines have 60% reduced Area of Effect 50% increased Effect of Auras from Mines (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_28618", + ["text"] = "Skills used by Mines have 60% reduced Area of Effect 70% increased Effect of Auras from Mines (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_24860", + ["text"] = "Socketed Gems are Supported by Level 10 Advanced Traps (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_47622", + ["text"] = "Socketed Gems are Supported by Level 10 Advanced Traps (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_4505", + ["text"] = "Socketed Gems are Supported by Level 10 Ancestral Call (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_54847", + ["text"] = "Socketed Gems are Supported by Level 10 Ancestral Call (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_51860", + ["text"] = "Socketed Gems are Supported by Level 10 Arcane Surge (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_7059", + ["text"] = "Socketed Gems are Supported by Level 10 Arcane Surge (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_14595", + ["text"] = "Socketed Gems are Supported by Level 10 Arrow Nova (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_42041", + ["text"] = "Socketed Gems are Supported by Level 10 Arrow Nova (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_54648", + ["text"] = "Socketed Gems are Supported by Level 10 Behead (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_59639", + ["text"] = "Socketed Gems are Supported by Level 10 Behead (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_16157", + ["text"] = "Socketed Gems are Supported by Level 10 Chain (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_62681", + ["text"] = "Socketed Gems are Supported by Level 10 Chain (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_38664", + ["text"] = "Socketed Gems are Supported by Level 10 Chance To Bleed (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_49653", + ["text"] = "Socketed Gems are Supported by Level 10 Chance To Bleed (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_26244", + ["text"] = "Socketed Gems are Supported by Level 10 Chance to Poison (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_44530", + ["text"] = "Socketed Gems are Supported by Level 10 Chance to Poison (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_5018", + ["text"] = "Socketed Gems are Supported by Level 10 Combustion (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_62296", + ["text"] = "Socketed Gems are Supported by Level 10 Combustion (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_22375", + ["text"] = "Socketed Gems are Supported by Level 10 Culling Strike (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_38566", + ["text"] = "Socketed Gems are Supported by Level 10 Culling Strike (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_26088", + ["text"] = "Socketed Gems are Supported by Level 10 Elemental Army Support (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_29608", + ["text"] = "Socketed Gems are Supported by Level 10 Elemental Army Support (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_26551", + ["text"] = "Socketed Gems are Supported by Level 10 Elemental Proliferation (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_55379", + ["text"] = "Socketed Gems are Supported by Level 10 Elemental Proliferation (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_21019", + ["text"] = "Socketed Gems are Supported by Level 10 Energy Leech (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_47374", + ["text"] = "Socketed Gems are Supported by Level 10 Energy Leech (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_26522", + ["text"] = "Socketed Gems are Supported by Level 10 Faster Casting (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_40805", + ["text"] = "Socketed Gems are Supported by Level 10 Faster Casting (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_41860", + ["text"] = "Socketed Gems are Supported by Level 10 Feeding Frenzy (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_56354", + ["text"] = "Socketed Gems are Supported by Level 10 Feeding Frenzy (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_18070", + ["text"] = "Socketed Gems are Supported by Level 10 Fortify (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_20818", + ["text"] = "Socketed Gems are Supported by Level 10 Fortify (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_16669", + ["text"] = "Socketed Gems are Supported by Level 10 Ignite Proliferation (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_18624", + ["text"] = "Socketed Gems are Supported by Level 10 Ignite Proliferation (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_55393", + ["text"] = "Socketed Gems are Supported by Level 10 Impale (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_57406", + ["text"] = "Socketed Gems are Supported by Level 10 Impale (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_25007", + ["text"] = "Socketed Gems are Supported by Level 10 Increased Area of Effect (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_4568", + ["text"] = "Socketed Gems are Supported by Level 10 Increased Area of Effect (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_28083", + ["text"] = "Socketed Gems are Supported by Level 10 Intensify (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_36288", + ["text"] = "Socketed Gems are Supported by Level 10 Intensify (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_10869", + ["text"] = "Socketed Gems are Supported by Level 10 Iron Grip (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_24540", + ["text"] = "Socketed Gems are Supported by Level 10 Iron Grip (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_14505", + ["text"] = "Socketed Gems are Supported by Level 10 Iron Will (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_32183", + ["text"] = "Socketed Gems are Supported by Level 10 Iron Will (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_13231", + ["text"] = "Socketed Gems are Supported by Level 10 Item Rarity (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_60863", + ["text"] = "Socketed Gems are Supported by Level 10 Item Rarity (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_56855", + ["text"] = "Socketed Gems are Supported by Level 10 Knockback (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_61653", + ["text"] = "Socketed Gems are Supported by Level 10 Knockback (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_10402", + ["text"] = "Socketed Gems are Supported by Level 10 Less Duration (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_50107", + ["text"] = "Socketed Gems are Supported by Level 10 Less Duration (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_48478", + ["text"] = "Socketed Gems are Supported by Level 10 Lifetap (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_51911", + ["text"] = "Socketed Gems are Supported by Level 10 Lifetap (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_19671", + ["text"] = "Socketed Gems are Supported by Level 10 Maim (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_40150", + ["text"] = "Socketed Gems are Supported by Level 10 Maim (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_28586", + ["text"] = "Socketed Gems are Supported by Level 10 Mana Leech (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_32875", + ["text"] = "Socketed Gems are Supported by Level 10 Mana Leech (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_16548", + ["text"] = "Socketed Gems are Supported by Level 10 Minion Life (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_59753", + ["text"] = "Socketed Gems are Supported by Level 10 Minion Life (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_17987", + ["text"] = "Socketed Gems are Supported by Level 10 Minion Speed (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_21302", + ["text"] = "Socketed Gems are Supported by Level 10 Minion Speed (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_17523", + ["text"] = "Socketed Gems are Supported by Level 10 Momentum (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_4006", + ["text"] = "Socketed Gems are Supported by Level 10 Momentum (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_39526", + ["text"] = "Socketed Gems are Supported by Level 10 Multiple Projectiles (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_44253", + ["text"] = "Socketed Gems are Supported by Level 10 Multiple Projectiles (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_50319", + ["text"] = "Socketed Gems are Supported by Level 10 Overcharge (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_9520", + ["text"] = "Socketed Gems are Supported by Level 10 Overcharge (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_11880", + ["text"] = "Socketed Gems are Supported by Level 10 Physical To Lightning (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_36228", + ["text"] = "Socketed Gems are Supported by Level 10 Physical To Lightning (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_33576", + ["text"] = "Socketed Gems are Supported by Level 10 Pinpoint (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_4687", + ["text"] = "Socketed Gems are Supported by Level 10 Pinpoint (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_26574", + ["text"] = "Socketed Gems are Supported by Level 10 Point Blank (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_3749", + ["text"] = "Socketed Gems are Supported by Level 10 Point Blank (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_20961", + ["text"] = "Socketed Gems are Supported by Level 10 Predator (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_50055", + ["text"] = "Socketed Gems are Supported by Level 10 Predator (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_2830", + ["text"] = "Socketed Gems are Supported by Level 10 Rage (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_59412", + ["text"] = "Socketed Gems are Supported by Level 10 Rage (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_52004", + ["text"] = "Socketed Gems are Supported by Level 10 Shockwave (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_62098", + ["text"] = "Socketed Gems are Supported by Level 10 Shockwave (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_15933", + ["text"] = "Socketed Gems are Supported by Level 10 Slower Projectiles (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_30297", + ["text"] = "Socketed Gems are Supported by Level 10 Slower Projectiles (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_21714", + ["text"] = "Socketed Gems are Supported by Level 10 Spell Cascade (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_53361", + ["text"] = "Socketed Gems are Supported by Level 10 Spell Cascade (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_48196", + ["text"] = "Socketed Gems are Supported by Level 10 Swift Assembly (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_62518", + ["text"] = "Socketed Gems are Supported by Level 10 Swift Assembly (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_21043", + ["text"] = "Socketed Gems are Supported by Level 10 Swiftbrand (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_7315", + ["text"] = "Socketed Gems are Supported by Level 10 Swiftbrand (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_52621", + ["text"] = "Socketed Gems are Supported by Level 10 Volley (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_59155", + ["text"] = "Socketed Gems are Supported by Level 10 Volley (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_42834", + ["text"] = "Socketed Gems are Supported by Level 10 Withering Touch (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_7023", + ["text"] = "Socketed Gems are Supported by Level 10 Withering Touch (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_38869", + ["text"] = "Socketed Gems are Supported by Level 15 Decay (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_40092", + ["text"] = "Socketed Gems are Supported by Level 15 Decay (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_57446", + ["text"] = "Socketed Gems are Supported by Level 15 Impending Doom (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_62692", + ["text"] = "Socketed Gems are Supported by Level 15 Impending Doom (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_49150", + ["text"] = "Socketed Gems are Supported by Level 15 Infernal Legion (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_55874", + ["text"] = "Socketed Gems are Supported by Level 15 Infernal Legion (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_37236", + ["text"] = "Socketed Gems are Supported by Level 15 Life Gain On Hit (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_50613", + ["text"] = "Socketed Gems are Supported by Level 15 Life Gain On Hit (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_42627", + ["text"] = "Socketed Gems are Supported by Level 15 Summon Phantasm (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_7156", + ["text"] = "Socketed Gems are Supported by Level 15 Summon Phantasm (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_12962", + ["text"] = "Socketed Gems are Supported by Level 25 Arrogance (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_27356", + ["text"] = "Socketed Gems are Supported by Level 25 Arrogance (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_52066", + ["text"] = "Socketed Gems are Supported by Level 25 Blasphemy (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_58553", + ["text"] = "Socketed Gems are Supported by Level 25 Blasphemy (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_16150", + ["text"] = "Socketed Gems are Supported by Level 25 Cursed Ground (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_65411", + ["text"] = "Socketed Gems are Supported by Level 25 Cursed Ground (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_24083", + ["text"] = "Socketed Gems are Supported by Level 25 Divine Blessing (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_26284", + ["text"] = "Socketed Gems are Supported by Level 25 Divine Blessing (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_25227", + ["text"] = "Socketed Gems are Supported by Level 25 Eternal Blessing (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_63804", + ["text"] = "Socketed Gems are Supported by Level 25 Eternal Blessing (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_23311", + ["text"] = "Socketed Gems are Supported by Level 25 Generosity (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_44326", + ["text"] = "Socketed Gems are Supported by Level 25 Generosity (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_19653", + ["text"] = "Socketed Gems are Supported by Level 25 Hex Bloom (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_27843", + ["text"] = "Socketed Gems are Supported by Level 25 Hex Bloom (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_36845", + ["text"] = "Socketed Gems are Supported by Level 25 Second Wind (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_43937", + ["text"] = "Socketed Gems are Supported by Level 25 Second Wind (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_24639", + ["text"] = "Socketed Gems are Supported by Level 25 Urgent Orders (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_31465", + ["text"] = "Socketed Gems are Supported by Level 25 Urgent Orders (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_48569", + ["text"] = "Socketed Gems are Supported by Level 3 Empower (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_7514", + ["text"] = "Socketed Gems are Supported by Level 3 Empower (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_26703", + ["text"] = "Socketed Gems are Supported by Level 3 Enhance (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_40943", + ["text"] = "Socketed Gems are Supported by Level 3 Enhance (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_18839", + ["text"] = "Socketed Gems are Supported by Level 3 Enlighten (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_1950", + ["text"] = "Socketed Gems are Supported by Level 3 Enlighten (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_20387", + ["text"] = "Socketed Gems are Supported by Level 30 Added Chaos Damage (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_51067", + ["text"] = "Socketed Gems are Supported by Level 30 Added Cold Damage (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_32855", + ["text"] = "Socketed Gems are Supported by Level 30 Added Lightning Damage (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_9992", + ["text"] = "Socketed Gems are Supported by Level 30 Arcane Surge (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_47182", + ["text"] = "Socketed Gems are Supported by Level 30 Archmage (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_52828", + ["text"] = "Socketed Gems are Supported by Level 30 Bonechill (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_45950", + ["text"] = "Socketed Gems are Supported by Level 30 Burning Damage (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_20469", + ["text"] = "Socketed Gems are Supported by Level 30 Cold Penetration (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_6705", + ["text"] = "Socketed Gems are Supported by Level 30 Cold to Fire (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_16631", + ["text"] = "Socketed Gems are Supported by Level 30 Combustion (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_64293", + ["text"] = "Socketed Gems are Supported by Level 30 Concentrated Effect (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_18084", + ["text"] = "Socketed Gems are Supported by Level 30 Controlled Destruction (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_23600", + ["text"] = "Socketed Gems are Supported by Level 30 Critical Strike Affliction (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_21266", + ["text"] = "Socketed Gems are Supported by Level 30 Deadly Ailments (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_47133", + ["text"] = "Socketed Gems are Supported by Level 30 Decay (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_43613", + ["text"] = "Socketed Gems are Supported by Level 30 Efficacy (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_49734", + ["text"] = "Socketed Gems are Supported by Level 30 Elemental Focus (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_48244", + ["text"] = "Socketed Gems are Supported by Level 30 Elemental Penetration (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_44300", + ["text"] = "Socketed Gems are Supported by Level 30 Elemental Proliferation (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_42115", + ["text"] = "Socketed Gems are Supported by Level 30 Energy Leech (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_63346", + ["text"] = "Socketed Gems are Supported by Level 30 Faster Casting (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_45600", + ["text"] = "Socketed Gems are Supported by Level 30 Fire Penetration (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_63124", + ["text"] = "Socketed Gems are Supported by Level 30 Hypothermia (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_26563", + ["text"] = "Socketed Gems are Supported by Level 30 Ice Bite (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_56134", + ["text"] = "Socketed Gems are Supported by Level 30 Ignite Proliferation (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_42265", + ["text"] = "Socketed Gems are Supported by Level 30 Immolate (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_54278", + ["text"] = "Socketed Gems are Supported by Level 30 Increased Critical Strikes (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_25513", + ["text"] = "Socketed Gems are Supported by Level 30 Infused Channelling (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_1810", + ["text"] = "Socketed Gems are Supported by Level 30 Innervate (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_10770", + ["text"] = "Socketed Gems are Supported by Level 30 Inspiration (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_46858", + ["text"] = "Socketed Gems are Supported by Level 30 Intensify (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_42728", + ["text"] = "Socketed Gems are Supported by Level 30 Lightning Penetration (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_52502", + ["text"] = "Socketed Gems are Supported by Level 30 Overcharge (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_65339", + ["text"] = "Socketed Gems are Supported by Level 30 Physical To Lightning (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_61170", + ["text"] = "Socketed Gems are Supported by Level 30 Pinpoint (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_37407", + ["text"] = "Socketed Gems are Supported by Level 30 Power Charge On Critical Strike (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_64913", + ["text"] = "Socketed Gems are Supported by Level 30 Spell Cascade (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_3342", + ["text"] = "Socketed Gems are Supported by Level 30 Spell Echo (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_51163", + ["text"] = "Socketed Gems are Supported by Level 30 Summon Phantasm (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_22697", + ["text"] = "Socketed Gems are Supported by Level 30 Swift Affliction (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_33117", + ["text"] = "Socketed Gems are Supported by Level 30 Swiftbrand (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_5003", + ["text"] = "Socketed Gems are Supported by Level 30 Trinity (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_8484", + ["text"] = "Socketed Gems are Supported by Level 30 Unbound Ailments (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_12731", + ["text"] = "Socketed Gems are Supported by Level 30 Unleash (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_35486", + ["text"] = "Socketed Gems are supported by Level 10 Blind (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_5927", + ["text"] = "Socketed Gems are supported by Level 10 Blind (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_18820", + ["text"] = "Socketed Gems are supported by Level 10 Chance to Flee (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_24552", + ["text"] = "Socketed Gems are supported by Level 10 Chance to Flee (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_3110", + ["text"] = "Socketed Gems are supported by Level 10 Faster Projectiles (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_62468", + ["text"] = "Socketed Gems are supported by Level 10 Faster Projectiles (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_36837", + ["text"] = "Socketed Gems are supported by Level 10 Fork (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_61066", + ["text"] = "Socketed Gems are supported by Level 10 Fork (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_29206", + ["text"] = "Socketed Gems are supported by Level 10 Life Leech (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_8862", + ["text"] = "Socketed Gems are supported by Level 10 Life Leech (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_45258", + ["text"] = "Socketed Gems are supported by Level 10 Melee Splash (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_50080", + ["text"] = "Socketed Gems are supported by Level 10 Melee Splash (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_12911", + ["text"] = "Socketed Gems are supported by Level 10 Pierce (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_64810", + ["text"] = "Socketed Gems are supported by Level 10 Pierce (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_53398", + ["text"] = "Socketed Gems are supported by Level 10 Stun (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_7170", + ["text"] = "Socketed Gems are supported by Level 10 Stun (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_11814", + ["text"] = "Socketed Gems are supported by Level 15 Additional Accuracy (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_53347", + ["text"] = "Socketed Gems are supported by Level 15 Additional Accuracy (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_3151", + ["text"] = "Socketed Gems are supported by Level 30 Increased Critical Damage (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_11917", + ["text"] = "Solipsism (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_7248", + ["text"] = "Spells you Cast have Added Spell Damage equal to 12% of the Damage of this Weapon 10% less Cast Speed (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_60533", + ["text"] = "Spells you Cast have Added Spell Damage equal to 16% of the Damage of this Weapon 10% less Cast Speed (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_22879", + ["text"] = "Spells you Cast have Added Spell Damage equal to 20% of the Damage of this Weapon 10% less Cast Speed (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_56322", + ["text"] = "Spells you Cast have Added Spell Damage equal to 20% of the Damage of this Weapon 15% less Cast Speed (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_40437", + ["text"] = "Spells you Cast have Added Spell Damage equal to 25% of the Damage of this Weapon 15% less Cast Speed (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_63146", + ["text"] = "Spells you Cast have Added Spell Damage equal to 30% of the Damage of this Weapon 15% less Cast Speed (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_16249", + ["text"] = "Storm and Armageddon Brands can be attached to your Summoned Reaper (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_52958", + ["text"] = "Stormblast, Icicle and Pyroclast Mine have 150% increased Aura Effect Stormblast, Icicle and Pyroclast Mine deal no Damage (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_14176", + ["text"] = "Stormblast, Icicle and Pyroclast Mine have 300% increased Aura Effect Stormblast, Icicle and Pyroclast Mine deal no Damage (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_64468", + ["text"] = "Summoned Carrion Golems Impale on Hit if you have the same number of them as Summoned Chaos Golems Summoned Chaos Golems Impale on Hit if you have the same number of them as Summoned Stone Golems Summoned Stone Golems Impale on Hit if you have the same number of them as Summoned Carrion Golems (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_12341", + ["text"] = "Summoned Skeletons and Holy Relics convert 100% of their Physical Damage to a random Element 100% increased Effect of Non-Damaging Ailments inflicted by Summoned Skeletons and Holy Relics (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_58543", + ["text"] = "Summoned Skeletons and Holy Relics convert 100% of their Physical Damage to a random Element 200% increased Effect of Non-Damaging Ailments inflicted by Summoned Skeletons and Holy Relics (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_9834", + ["text"] = "Supreme Ego (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_20261", + ["text"] = "Tectonic Slam and Infernal Blow deal 1% increased Attack Damage per 450 Armour (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_7655", + ["text"] = "Tectonic Slam and Infernal Blow deal 1% increased Attack Damage per 700 Armour (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_47429", + ["text"] = "The Agnostic (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_17222", + ["text"] = "The Ghastly Fisherman always appears behind you (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_13569", + ["text"] = "The Ghastly Fisherman cannot spawn (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_2589", + ["text"] = "The Impaler (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_53153", + ["text"] = "Trigger Level 20 Blink Arrow when you Attack with Mirror Arrow Trigger Level 20 Mirror Arrow when you Attack with Blink Arrow (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_49146", + ["text"] = "Trigger Level 20 Bodyswap when you Explode a Corpse with Detonate Dead (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_5366", + ["text"] = "Trigger Level 20 Bone Corpses when you Stun an Enemy with Heavy Strike or Boneshatter (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_23452", + ["text"] = "Trigger Level 20 Gravity Sphere when you Cast Storm Burst or Divine Ire (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_18389", + ["text"] = "Trigger Level 20 Hydrosphere while you Channel Winter Orb (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_38413", + ["text"] = "Trigger Level 20 Ice Nova from the Final Burst location of Glacial Cascades you Cast (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_42448", + ["text"] = "Trigger Level 20 Stance Swap when you Attack with Perforate or Lacerate (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_22704", + ["text"] = "Trigger Level 20 Summon Spectral Wolf on Critical Strike with Cleave or Reave (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_2899", + ["text"] = "Trigger Level 20 Tornado when you Attack with Split Arrow or Tornado Shot (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_27861", + ["text"] = "Trigger a Socketed Spell every second while Channelling Blade Flurry or Charged Dash (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_63722", + ["text"] = "Unwavering Stance (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_32554", + ["text"] = "Vaal Pact (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_29593", + ["text"] = "Vaal Volcanic Fissure and Vaal Molten Strike have 40% reduced Soul Gain Prevention Duration (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_40979", + ["text"] = "Vaal Volcanic Fissure and Vaal Molten Strike have 80% reduced Soul Gain Prevention Duration (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_12316", + ["text"] = "Versatile Combatant (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_45635", + ["text"] = "Viper Strike and Pestilent Strike deal 25% increased Attack Damage per Frenzy Charge (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_62670", + ["text"] = "Viper Strike and Pestilent Strike deal 40% increased Attack Damage per Frenzy Charge (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_23345", + ["text"] = "Volatile Dead and Cremation Penetrate 2% Fire Resistance per 100 Dexterity (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_10239", + ["text"] = "Volatile Dead and Cremation Penetrate 4% Fire Resistance per 100 Dexterity (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_23100", + ["text"] = "Wicked Ward (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_38218", + ["text"] = "Wind Dancer (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_37134", + ["text"] = "Wrath has 20% increased Aura Effect Wrath has 25% increased Reservation (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_53288", + ["text"] = "Wrath has 25% increased Aura Effect Wrath has 25% increased Reservation (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_24561", + ["text"] = "Wrath has 30% increased Aura Effect Wrath has 25% increased Reservation (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_54997", + ["text"] = "Wrath has 40% increased Aura Effect Wrath has 50% increased Reservation (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_57370", + ["text"] = "Wrath has 50% increased Aura Effect Wrath has 50% increased Reservation (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_3285", + ["text"] = "Wrath has 60% increased Aura Effect Wrath has 50% increased Reservation (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_13623", + ["text"] = "You can catch Divine Fish (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_735", + ["text"] = "You can catch Exotic Fish (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_27060", + ["text"] = "You take 20% increased Extra Damage from Critical Strikes +100 to Armour (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_15661", + ["text"] = "You take 20% increased Extra Damage from Critical Strikes +125 to Armour (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_39258", + ["text"] = "You take 20% increased Extra Damage from Critical Strikes +150 to Armour (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_16501", + ["text"] = "You take 20% increased Extra Damage from Critical Strikes Hits have 50% reduced Critical Strike Chance against you (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_7656", + ["text"] = "You take 20% increased Extra Damage from Critical Strikes Hits have 70% reduced Critical Strike Chance against you (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_42324", + ["text"] = "You take 30% reduced Extra Damage from Critical Strikes Hits have 100% increased Critical Strike Chance against you (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_19498", + ["text"] = "You take 40% reduced Extra Damage from Critical Strikes Hits have 100% increased Critical Strike Chance against you (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_23367", + ["text"] = "Your Critical Strikes do not deal extra Damage +5% to Spell Critical Strike Chance (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_9085", + ["text"] = "Your Critical Strikes do not deal extra Damage +5.5% to Spell Critical Strike Chance (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_11462", + ["text"] = "Your Critical Strikes do not deal extra Damage +6% to Spell Critical Strike Chance (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_16787", + ["text"] = "Your Critical Strikes do not deal extra Damage +7% to Spell Critical Strike Chance (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_47469", + ["text"] = "Your Critical Strikes do not deal extra Damage +8% to Spell Critical Strike Chance (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_24273", + ["text"] = "Your Critical Strikes do not deal extra Damage +9% to Spell Critical Strike Chance (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_57589", + ["text"] = "Zealot's Oath (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_56503", + ["text"] = "Zealotry has 20% increased Aura Effect Zealotry has 25% increased Reservation (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_5905", + ["text"] = "Zealotry has 25% increased Aura Effect Zealotry has 25% increased Reservation (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_25064", + ["text"] = "Zealotry has 30% increased Aura Effect Zealotry has 25% increased Reservation (Tier 3)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_16180", + ["text"] = "Zealotry has 40% increased Aura Effect Zealotry has 50% increased Reservation (Tier 1)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_60674", + ["text"] = "Zealotry has 50% increased Aura Effect Zealotry has 50% increased Reservation (Tier 2)", + ["type"] = "crucible", + }, + { + ["id"] = "crucible.mod_58603", + ["text"] = "Zealotry has 60% increased Aura Effect Zealotry has 50% increased Reservation (Tier 3)", + ["type"] = "crucible", + }, + }, + ["id"] = "crucible", + ["label"] = "Crucible", + }, + { + ["entries"] = { + { + ["id"] = "veiled.mod_63772", + ["text"] = "Catarina's Veiled", + ["type"] = "veiled", + }, + { + ["id"] = "veiled.mod_5769", + ["text"] = "Elreon's Veiled", + ["type"] = "veiled", + }, + { + ["id"] = "veiled.mod_38872", + ["text"] = "Gravicius' Veiled", + ["type"] = "veiled", + }, + { + ["id"] = "veiled.mod_6779", + ["text"] = "Guff's Veiled", + ["type"] = "veiled", + }, + { + ["id"] = "veiled.mod_39023", + ["text"] = "Haku's Veiled", + ["type"] = "veiled", + }, + { + ["id"] = "veiled.mod_55787", + ["text"] = "It That Fled's Veiled", + ["type"] = "veiled", + }, + { + ["id"] = "veiled.mod_44855", + ["text"] = "Korell's Veiled", + ["type"] = "veiled", + }, + { + ["id"] = "veiled.mod_3258", + ["text"] = "Leo's Veiled", + ["type"] = "veiled", + }, + { + ["id"] = "veiled.mod_6131", + ["text"] = "Rin's Veiled", + ["type"] = "veiled", + }, + { + ["id"] = "veiled.mod_8541", + ["text"] = "Tora's Veiled", + ["type"] = "veiled", + }, + { + ["id"] = "veiled.mod_14269", + ["text"] = "Vagan's Veiled", + ["type"] = "veiled", + }, + { + ["id"] = "veiled.mod_65000", + ["text"] = "Veiled", + ["type"] = "veiled", + }, + { + ["id"] = "veiled.mod_47933", + ["text"] = "Vorici's Veiled", + ["type"] = "veiled", + }, + { + ["id"] = "veiled.mod_48007", + ["text"] = "of Aisling's Veil", + ["type"] = "veiled", + }, + { + ["id"] = "veiled.mod_65163", + ["text"] = "of Cameria's Veil", + ["type"] = "veiled", + }, + { + ["id"] = "veiled.mod_3975", + ["text"] = "of Hillock's Veil", + ["type"] = "veiled", + }, + { + ["id"] = "veiled.mod_11536", + ["text"] = "of Janus' Veil", + ["type"] = "veiled", + }, + { + ["id"] = "veiled.mod_62955", + ["text"] = "of Jorgin's Veil", + ["type"] = "veiled", + }, + { + ["id"] = "veiled.mod_48408", + ["text"] = "of Riker's Veil", + ["type"] = "veiled", + }, + { + ["id"] = "veiled.mod_63099", + ["text"] = "of the Veil", + ["type"] = "veiled", + }, + }, + ["id"] = "veiled", + ["label"] = "Veiled", + }, + { + ["entries"] = { + { + ["id"] = "delve.delve_corrupted_implicit", + ["text"] = "Corrupted Has a Corrupted implicit modifier", + ["type"] = "delve", + }, + { + ["id"] = "delve.delve_duplicate", + ["text"] = "Creates a split copy", + ["type"] = "delve", + }, + { + ["id"] = "delve.delve_less_attack", + ["text"] = "Fewer Attack modifiers", + ["type"] = "delve", + }, + { + ["id"] = "delve.delve_less_caster", + ["text"] = "Fewer Caster modifiers", + ["type"] = "delve", + }, + { + ["id"] = "delve.delve_greatly_more_ailment", + ["text"] = "Greatly more Ailment modifiers", + ["type"] = "delve", + }, + { + ["id"] = "delve.delve_greatly_more_attack", + ["text"] = "Greatly more Attack modifiers", + ["type"] = "delve", + }, + { + ["id"] = "delve.delve_greatly_more_attribute", + ["text"] = "Greatly more Attribute modifiers", + ["type"] = "delve", + }, + { + ["id"] = "delve.delve_greatly_more_aura", + ["text"] = "Greatly more Aura modifiers", + ["type"] = "delve", + }, + { + ["id"] = "delve.delve_greatly_more_caster", + ["text"] = "Greatly more Caster modifiers", + ["type"] = "delve", + }, + { + ["id"] = "delve.delve_greatly_more_chaos", + ["text"] = "Greatly more Chaos modifiers", + ["type"] = "delve", + }, + { + ["id"] = "delve.delve_greatly_more_cold", + ["text"] = "Greatly more Cold modifiers", + ["type"] = "delve", + }, + { + ["id"] = "delve.delve_greatly_more_critical", + ["text"] = "Greatly more Critical modifiers", + ["type"] = "delve", + }, + { + ["id"] = "delve.delve_greatly_more_curse", + ["text"] = "Greatly more Curse modifiers", + ["type"] = "delve", + }, + { + ["id"] = "delve.delve_greatly_more_damage", + ["text"] = "Greatly more Damage modifiers", + ["type"] = "delve", + }, + { + ["id"] = "delve.delve_greatly_more_defences", + ["text"] = "Greatly more Defences modifiers", + ["type"] = "delve", + }, + { + ["id"] = "delve.delve_greatly_more_elemental", + ["text"] = "Greatly more Elemental modifiers", + ["type"] = "delve", + }, + { + ["id"] = "delve.delve_greatly_more_fire", + ["text"] = "Greatly more Fire modifiers", + ["type"] = "delve", + }, + { + ["id"] = "delve.delve_greatly_more_gem", + ["text"] = "Greatly more Gem modifiers", + ["type"] = "delve", + }, + { + ["id"] = "delve.delve_greatly_more_life", + ["text"] = "Greatly more Life modifiers", + ["type"] = "delve", + }, + { + ["id"] = "delve.delve_greatly_more_lightning", + ["text"] = "Greatly more Lightning modifiers", + ["type"] = "delve", + }, + { + ["id"] = "delve.delve_greatly_more_mana", + ["text"] = "Greatly more Mana modifiers", + ["type"] = "delve", + }, + { + ["id"] = "delve.delve_greatly_more_minion", + ["text"] = "Greatly more Minion modifiers", + ["type"] = "delve", + }, + { + ["id"] = "delve.delve_greatly_more_physical", + ["text"] = "Greatly more Physical modifiers", + ["type"] = "delve", + }, + { + ["id"] = "delve.delve_greatly_more_resistance", + ["text"] = "Greatly more Resistance modifiers", + ["type"] = "delve", + }, + { + ["id"] = "delve.delve_greatly_more_speed", + ["text"] = "Greatly more Speed modifiers", + ["type"] = "delve", + }, + { + ["id"] = "delve.delve_corrupt_essence", + ["text"] = "Has a Corrupt Essence modifier", + ["type"] = "delve", + }, + { + ["id"] = "delve.delve_labryinth_enchant", + ["text"] = "Has a Labyrinth Enchantment", + ["type"] = "delve", + }, + { + ["id"] = "delve.delve_abyss_socket", + ["text"] = "Has an Abyssal socket", + ["type"] = "delve", + }, + { + ["id"] = "delve.delve_quality", + ["text"] = "Improved Quality", + ["type"] = "delve", + }, + { + ["id"] = "delve.delve_better_sell_price", + ["text"] = "Item is overvalued by vendors", + ["type"] = "delve", + }, + { + ["id"] = "delve.delve_more_ailment", + ["text"] = "More Ailment modifiers", + ["type"] = "delve", + }, + { + ["id"] = "delve.delve_more_attack", + ["text"] = "More Attack modifiers", + ["type"] = "delve", + }, + { + ["id"] = "delve.delve_more_attribute", + ["text"] = "More Attribute modifiers", + ["type"] = "delve", + }, + { + ["id"] = "delve.delve_more_aura", + ["text"] = "More Aura modifiers", + ["type"] = "delve", + }, + { + ["id"] = "delve.delve_more_caster", + ["text"] = "More Caster modifiers", + ["type"] = "delve", + }, + { + ["id"] = "delve.delve_more_chaos", + ["text"] = "More Chaos modifiers", + ["type"] = "delve", + }, + { + ["id"] = "delve.delve_more_cold", + ["text"] = "More Cold modifiers", + ["type"] = "delve", + }, + { + ["id"] = "delve.delve_more_critical", + ["text"] = "More Critical modifiers", + ["type"] = "delve", + }, + { + ["id"] = "delve.delve_more_curse", + ["text"] = "More Curse modifiers", + ["type"] = "delve", + }, + { + ["id"] = "delve.delve_more_damage", + ["text"] = "More Damage modifiers", + ["type"] = "delve", + }, + { + ["id"] = "delve.delve_more_defences", + ["text"] = "More Defence modifiers", + ["type"] = "delve", + }, + { + ["id"] = "delve.delve_more_drop", + ["text"] = "More Drop modifiers", + ["type"] = "delve", + }, + { + ["id"] = "delve.delve_more_elemental", + ["text"] = "More Elemental modifiers", + ["type"] = "delve", + }, + { + ["id"] = "delve.delve_more_fire", + ["text"] = "More Fire modifiers", + ["type"] = "delve", + }, + { + ["id"] = "delve.delve_more_gem", + ["text"] = "More Gem modifiers", + ["type"] = "delve", + }, + { + ["id"] = "delve.delve_more_gem_level", + ["text"] = "More Gem modifiers", + ["type"] = "delve", + }, + { + ["id"] = "delve.delve_more_life", + ["text"] = "More Life modifiers", + ["type"] = "delve", + }, + { + ["id"] = "delve.delve_more_lightning", + ["text"] = "More Lightning modifiers", + ["type"] = "delve", + }, + { + ["id"] = "delve.delve_more_mana", + ["text"] = "More Mana modifiers", + ["type"] = "delve", + }, + { + ["id"] = "delve.delve_more_minion", + ["text"] = "More Minion modifiers", + ["type"] = "delve", + }, + { + ["id"] = "delve.delve_more_minion_aura", + ["text"] = "More Minion, Aura or Curse modifiers", + ["type"] = "delve", + }, + { + ["id"] = "delve.delve_more_bleed_poison", + ["text"] = "More Physical Ailment or Chaos Ailment modifiers", + ["type"] = "delve", + }, + { + ["id"] = "delve.delve_more_physical", + ["text"] = "More Physical modifiers", + ["type"] = "delve", + }, + { + ["id"] = "delve.delve_more_resistance", + ["text"] = "More Resistance modifiers", + ["type"] = "delve", + }, + { + ["id"] = "delve.delve_more_speed", + ["text"] = "More Speed modifiers", + ["type"] = "delve", + }, + { + ["id"] = "delve.delve_no_ailment", + ["text"] = "No Ailment modifiers", + ["type"] = "delve", + }, + { + ["id"] = "delve.delve_no_attack", + ["text"] = "No Attack modifiers", + ["type"] = "delve", + }, + { + ["id"] = "delve.delve_no_attribute", + ["text"] = "No Attribute modifiers", + ["type"] = "delve", + }, + { + ["id"] = "delve.delve_no_aura", + ["text"] = "No Aura modifiers", + ["type"] = "delve", + }, + { + ["id"] = "delve.delve_no_caster", + ["text"] = "No Caster modifiers", + ["type"] = "delve", + }, + { + ["id"] = "delve.delve_no_chaos", + ["text"] = "No Chaos modifiers", + ["type"] = "delve", + }, + { + ["id"] = "delve.delve_no_cold", + ["text"] = "No Cold modifiers", + ["type"] = "delve", + }, + { + ["id"] = "delve.delve_no_critical", + ["text"] = "No Critical modifiers", + ["type"] = "delve", + }, + { + ["id"] = "delve.delve_no_curse", + ["text"] = "No Curse modifiers", + ["type"] = "delve", + }, + { + ["id"] = "delve.delve_no_damage", + ["text"] = "No Damage modifiers", + ["type"] = "delve", + }, + { + ["id"] = "delve.delve_no_defences", + ["text"] = "No Defence modifiers", + ["type"] = "delve", + }, + { + ["id"] = "delve.delve_no_elemental", + ["text"] = "No Elemental modifiers", + ["type"] = "delve", + }, + { + ["id"] = "delve.delve_no_fire", + ["text"] = "No Fire modifiers", + ["type"] = "delve", + }, + { + ["id"] = "delve.delve_no_gem", + ["text"] = "No Gem modifiers", + ["type"] = "delve", + }, + { + ["id"] = "delve.delve_no_life", + ["text"] = "No Life modifiers", + ["type"] = "delve", + }, + { + ["id"] = "delve.delve_no_lightning", + ["text"] = "No Lightning modifiers", + ["type"] = "delve", + }, + { + ["id"] = "delve.delve_no_mana", + ["text"] = "No Mana modifiers", + ["type"] = "delve", + }, + { + ["id"] = "delve.delve_no_minion", + ["text"] = "No Minion modifiers", + ["type"] = "delve", + }, + { + ["id"] = "delve.delve_no_bleed_poison", + ["text"] = "No Physical Ailment or Chaos Ailment Modifiers", + ["type"] = "delve", + }, + { + ["id"] = "delve.delve_no_physical", + ["text"] = "No Physical modifiers", + ["type"] = "delve", + }, + { + ["id"] = "delve.delve_no_resistance", + ["text"] = "No Resistance modifiers", + ["type"] = "delve", + }, + { + ["id"] = "delve.delve_no_speed", + ["text"] = "No Speed modifiers", + ["type"] = "delve", + }, + { + ["id"] = "delve.delve_no_tagless", + ["text"] = "No Tagless modifiers", + ["type"] = "delve", + }, + { + ["id"] = "delve.delve_lucky_mods", + ["text"] = "Numeric modifier values are lucky High Level modifiers are more common", + ["type"] = "delve", + }, + { + ["id"] = "delve.delve_random_modifier", + ["text"] = "Random effects revealed when resonator is fully socketed", + ["type"] = "delve", + }, + }, + ["id"] = "delve", + ["label"] = "Delve", + }, + { + ["entries"] = { + { + ["id"] = "ultimatum.umod_11872", + ["text"] = "Ailment and Curse Reflection", + ["type"] = "ultimatum", + }, + { + ["id"] = "ultimatum.umod_13648", + ["text"] = "Blistering Cold", + ["type"] = "ultimatum", + }, + { + ["id"] = "ultimatum.umod_62444", + ["text"] = "Blistering Cold II", + ["type"] = "ultimatum", + }, + { + ["id"] = "ultimatum.umod_28497", + ["text"] = "Blistering Cold III", + ["type"] = "ultimatum", + }, + { + ["id"] = "ultimatum.umod_3273", + ["text"] = "Blistering Cold IV", + ["type"] = "ultimatum", + }, + { + ["id"] = "ultimatum.umod_29421", + ["text"] = "Buffs Expire Faster", + ["type"] = "ultimatum", + }, + { + ["id"] = "ultimatum.umod_40225", + ["text"] = "Choking Miasma", + ["type"] = "ultimatum", + }, + { + ["id"] = "ultimatum.umod_54213", + ["text"] = "Choking Miasma II", + ["type"] = "ultimatum", + }, + { + ["id"] = "ultimatum.umod_12812", + ["text"] = "Choking Miasma III", + ["type"] = "ultimatum", + }, + { + ["id"] = "ultimatum.umod_38838", + ["text"] = "Deadly Monsters", + ["type"] = "ultimatum", + }, + { + ["id"] = "ultimatum.umod_10506", + ["text"] = "Dexterous Monsters", + ["type"] = "ultimatum", + }, + { + ["id"] = "ultimatum.umod_15668", + ["text"] = "Drought", + ["type"] = "ultimatum", + }, + { + ["id"] = "ultimatum.umod_57621", + ["text"] = "Escalating Damage Taken", + ["type"] = "ultimatum", + }, + { + ["id"] = "ultimatum.umod_7961", + ["text"] = "Escalating Monster Speed", + ["type"] = "ultimatum", + }, + { + ["id"] = "ultimatum.umod_27491", + ["text"] = "Hindering Flasks", + ["type"] = "ultimatum", + }, + { + ["id"] = "ultimatum.umod_39295", + ["text"] = "Less Cooldown Recovery", + ["type"] = "ultimatum", + }, + { + ["id"] = "ultimatum.umod_50320", + ["text"] = "Lessened Reach", + ["type"] = "ultimatum", + }, + { + ["id"] = "ultimatum.umod_47347", + ["text"] = "Lethal Rare Monsters", + ["type"] = "ultimatum", + }, + { + ["id"] = "ultimatum.umod_58901", + ["text"] = "Lightning Damage from Mana Costs", + ["type"] = "ultimatum", + }, + { + ["id"] = "ultimatum.umod_65051", + ["text"] = "Occasional Impotence", + ["type"] = "ultimatum", + }, + { + ["id"] = "ultimatum.umod_59748", + ["text"] = "Overwhelming Monsters", + ["type"] = "ultimatum", + }, + { + ["id"] = "ultimatum.umod_33891", + ["text"] = "Precise Monsters", + ["type"] = "ultimatum", + }, + { + ["id"] = "ultimatum.umod_39785", + ["text"] = "Prismatic Monsters", + ["type"] = "ultimatum", + }, + { + ["id"] = "ultimatum.umod_18354", + ["text"] = "Profane Monsters", + ["type"] = "ultimatum", + }, + { + ["id"] = "ultimatum.umod_28673", + ["text"] = "Raging Dead", + ["type"] = "ultimatum", + }, + { + ["id"] = "ultimatum.umod_62391", + ["text"] = "Raging Dead", + ["type"] = "ultimatum", + }, + { + ["id"] = "ultimatum.umod_26465", + ["text"] = "Raging Dead II", + ["type"] = "ultimatum", + }, + { + ["id"] = "ultimatum.umod_38306", + ["text"] = "Raging Dead II", + ["type"] = "ultimatum", + }, + { + ["id"] = "ultimatum.umod_49977", + ["text"] = "Raging Dead III", + ["type"] = "ultimatum", + }, + { + ["id"] = "ultimatum.umod_6748", + ["text"] = "Raging Dead III", + ["type"] = "ultimatum", + }, + { + ["id"] = "ultimatum.umod_24954", + ["text"] = "Raging Dead IV", + ["type"] = "ultimatum", + }, + { + ["id"] = "ultimatum.umod_39655", + ["text"] = "Raging Dead IV", + ["type"] = "ultimatum", + }, + { + ["id"] = "ultimatum.umod_7052", + ["text"] = "Razor Dance", + ["type"] = "ultimatum", + }, + { + ["id"] = "ultimatum.umod_45148", + ["text"] = "Razor Dance II", + ["type"] = "ultimatum", + }, + { + ["id"] = "ultimatum.umod_22941", + ["text"] = "Razor Dance III", + ["type"] = "ultimatum", + }, + { + ["id"] = "ultimatum.umod_15044", + ["text"] = "Razor Dance IV", + ["type"] = "ultimatum", + }, + { + ["id"] = "ultimatum.umod_5772", + ["text"] = "Reduced Recovery", + ["type"] = "ultimatum", + }, + { + ["id"] = "ultimatum.umod_37639", + ["text"] = "Reduced Recovery II", + ["type"] = "ultimatum", + }, + { + ["id"] = "ultimatum.umod_25457", + ["text"] = "Resistant Monsters", + ["type"] = "ultimatum", + }, + { + ["id"] = "ultimatum.umod_27548", + ["text"] = "Restless Ground", + ["type"] = "ultimatum", + }, + { + ["id"] = "ultimatum.umod_63601", + ["text"] = "Restless Ground II", + ["type"] = "ultimatum", + }, + { + ["id"] = "ultimatum.umod_24728", + ["text"] = "Ruin II", + ["type"] = "ultimatum", + }, + { + ["id"] = "ultimatum.umod_35694", + ["text"] = "Ruin III", + ["type"] = "ultimatum", + }, + { + ["id"] = "ultimatum.umod_60794", + ["text"] = "Ruin IV", + ["type"] = "ultimatum", + }, + { + ["id"] = "ultimatum.umod_43095", + ["text"] = "Shattered Shield", + ["type"] = "ultimatum", + }, + { + ["id"] = "ultimatum.umod_36548", + ["text"] = "Shielding Monsters", + ["type"] = "ultimatum", + }, + { + ["id"] = "ultimatum.umod_21966", + ["text"] = "Siphoned Charges", + ["type"] = "ultimatum", + }, + { + ["id"] = "ultimatum.umod_45921", + ["text"] = "Siphoning Monsters", + ["type"] = "ultimatum", + }, + { + ["id"] = "ultimatum.umod_7958", + ["text"] = "Stalking Ruin", + ["type"] = "ultimatum", + }, + { + ["id"] = "ultimatum.umod_32061", + ["text"] = "Stalking Ruin II", + ["type"] = "ultimatum", + }, + { + ["id"] = "ultimatum.umod_47172", + ["text"] = "Stalking Ruin III", + ["type"] = "ultimatum", + }, + { + ["id"] = "ultimatum.umod_49847", + ["text"] = "Stalking Ruin IV", + ["type"] = "ultimatum", + }, + { + ["id"] = "ultimatum.umod_11866", + ["text"] = "Stormcaller Runes", + ["type"] = "ultimatum", + }, + { + ["id"] = "ultimatum.umod_19821", + ["text"] = "Stormcaller Runes", + ["type"] = "ultimatum", + }, + { + ["id"] = "ultimatum.umod_13955", + ["text"] = "Stormcaller Runes II", + ["type"] = "ultimatum", + }, + { + ["id"] = "ultimatum.umod_40295", + ["text"] = "Stormcaller Runes II", + ["type"] = "ultimatum", + }, + { + ["id"] = "ultimatum.umod_43498", + ["text"] = "Stormcaller Runes III", + ["type"] = "ultimatum", + }, + { + ["id"] = "ultimatum.umod_53101", + ["text"] = "Stormcaller Runes IV", + ["type"] = "ultimatum", + }, + { + ["id"] = "ultimatum.umod_8887", + ["text"] = "Totem of Costly Might", + ["type"] = "ultimatum", + }, + { + ["id"] = "ultimatum.umod_58910", + ["text"] = "Totem of Costly Potency", + ["type"] = "ultimatum", + }, + { + ["id"] = "ultimatum.umod_12730", + ["text"] = "Treacherous Auras", + ["type"] = "ultimatum", + }, + { + ["id"] = "ultimatum.umod_40124", + ["text"] = "Unlucky Criticals", + ["type"] = "ultimatum", + }, + { + ["id"] = "ultimatum.umod_11559", + ["text"] = "Unstoppable Monsters", + ["type"] = "ultimatum", + }, + }, + ["id"] = "ultimatum", + ["label"] = "Ultimatum", + }, + { + ["entries"] = { + { + ["id"] = "sanctum.stat_2410906123", + ["text"] = "# Resolve Aegis", + ["type"] = "sanctum", + }, + { + ["id"] = "sanctum.stat_142859883", + ["text"] = "#% Resolve Mitigation from Enemy Hits", + ["type"] = "sanctum", + }, + { + ["id"] = "sanctum.stat_774484840", + ["text"] = "#% chance for Resolve Mitigation to be doubled when Hit by an Enemy", + ["type"] = "sanctum", + }, + { + ["id"] = "sanctum.stat_2878762585", + ["text"] = "#% chance to Avoid Resolve loss from Enemy Hits", + ["type"] = "sanctum", + }, + { + ["id"] = "sanctum.stat_2284543592", + ["text"] = "#% chance to Avoid Resolve loss from Enemy Hits if you've been Hit recently", + ["type"] = "sanctum", + }, + { + ["id"] = "sanctum.stat_1960517795", + ["text"] = "#% chance to Avoid gaining an Affliction", + ["type"] = "sanctum", + }, + { + ["id"] = "sanctum.stat_3866860190", + ["text"] = "#% increased Maximum Resolve", + ["type"] = "sanctum", + }, + { + ["id"] = "sanctum.stat_3096446459", + ["text"] = "#% increased Merchant Prices", + ["type"] = "sanctum", + }, + { + ["id"] = "sanctum.stat_1680962389", + ["text"] = "#% increased Quantity of Relics Dropped by Monsters", + ["type"] = "sanctum", + }, + { + ["id"] = "sanctum.stat_1388771661", + ["text"] = "#% increased Resolve Aegis", + ["type"] = "sanctum", + }, + { + ["id"] = "sanctum.stat_1306482168", + ["text"] = "#% increased Resolve Recovered", + ["type"] = "sanctum", + }, + { + ["id"] = "sanctum.stat_3134588943", + ["text"] = "#% increased chance to Avoid Resolve Loss from Enemy Melee Hits", + ["type"] = "sanctum", + }, + { + ["id"] = "sanctum.stat_1798691236", + ["text"] = "#% increased chance to Avoid Resolve Loss from Enemy Projectile Hits", + ["type"] = "sanctum", + }, + { + ["id"] = "sanctum.stat_1054634989", + ["text"] = "+# to Maximum Resolve", + ["type"] = "sanctum", + }, + { + ["id"] = "sanctum.stat_386901949", + ["text"] = "An additional Room is revealed on the Sanctum Map", + ["type"] = "sanctum", + }, + { + ["id"] = "sanctum.stat_1307773596", + ["text"] = "Aureus Coins are converted to Experience upon defeating the Herald of the Scourge", + ["type"] = "sanctum", + }, + { + ["id"] = "sanctum.stat_315260783", + ["text"] = "Aureus Coins are converted to Relics upon defeating the Herald of the Scourge", + ["type"] = "sanctum", + }, + { + ["id"] = "sanctum.stat_1019656601", + ["text"] = "Aureus Coins are converted to Tainted Currency upon defeating the Herald of the Scourge", + ["type"] = "sanctum", + }, + { + ["id"] = "sanctum.stat_2207905451", + ["text"] = "Bosses impact #% increased Resolve", + ["type"] = "sanctum", + }, + { + ["id"] = "sanctum.stat_3226329527", + ["text"] = "Bosses take #% increased Damage", + ["type"] = "sanctum", + }, + { + ["id"] = "sanctum.stat_1512067281", + ["text"] = "Cannot be used with Forbidden Tomes below level #", + ["type"] = "sanctum", + }, + { + ["id"] = "sanctum.stat_2283325632", + ["text"] = "Cannot have Boons", + ["type"] = "sanctum", + }, + { + ["id"] = "sanctum.stat_3381591146", + ["text"] = "Cannot have Inspiration", + ["type"] = "sanctum", + }, + { + ["id"] = "sanctum.stat_624917333", + ["text"] = "Cannot recover Resolve", + ["type"] = "sanctum", + }, + { + ["id"] = "sanctum.stat_3926246735", + ["text"] = "Chests have #% chance to drop Double Aureus Coins", + ["type"] = "sanctum", + }, + { + ["id"] = "sanctum.stat_502549687", + ["text"] = "Duplicates up to # random Offer Reward upon defeating the Herald of the Scourge", + ["type"] = "sanctum", + }, + { + ["id"] = "sanctum.stat_2393318075", + ["text"] = "Gain # Aureus Coins at the start of the Sanctum", + ["type"] = "sanctum", + }, + { + ["id"] = "sanctum.stat_4057192895", + ["text"] = "Gain # Aureus Coins when you complete a Room", + ["type"] = "sanctum", + }, + { + ["id"] = "sanctum.stat_2942028778", + ["text"] = "Gain # Inspiration at the start of each Floor", + ["type"] = "sanctum", + }, + { + ["id"] = "sanctum.stat_3102760194", + ["text"] = "Gain # Inspiration at the start of the Sanctum", + ["type"] = "sanctum", + }, + { + ["id"] = "sanctum.stat_1518851624", + ["text"] = "Gain # Inspiration when you receive an Affliction", + ["type"] = "sanctum", + }, + { + ["id"] = "sanctum.stat_3817232752", + ["text"] = "Gain # Maximum Resolve when you kill a Boss", + ["type"] = "sanctum", + }, + { + ["id"] = "sanctum.stat_3722564733", + ["text"] = "Gain # Maximum Resolve when you use a Fountain", + ["type"] = "sanctum", + }, + { + ["id"] = "sanctum.stat_889527415", + ["text"] = "Gain # Resolve when you kill a Boss", + ["type"] = "sanctum", + }, + { + ["id"] = "sanctum.stat_2607697594", + ["text"] = "Gain # Resolve when you use a Fountain", + ["type"] = "sanctum", + }, + { + ["id"] = "sanctum.stat_199414195", + ["text"] = "Guards impact #% increased Resolve", + ["type"] = "sanctum", + }, + { + ["id"] = "sanctum.stat_408585189", + ["text"] = "Guards take #% increased Damage", + ["type"] = "sanctum", + }, + { + ["id"] = "sanctum.sanctum_effect_19751", + ["text"] = "Has Accursed Prism", + ["type"] = "sanctum", + }, + { + ["id"] = "sanctum.sanctum_effect_59406", + ["text"] = "Has Adrenaline Vial", + ["type"] = "sanctum", + }, + { + ["id"] = "sanctum.sanctum_effect_9121", + ["text"] = "Has All-Seeing Eye", + ["type"] = "sanctum", + }, + { + ["id"] = "sanctum.sanctum_effect_51626", + ["text"] = "Has Anomaly Attractor", + ["type"] = "sanctum", + }, + { + ["id"] = "sanctum.sanctum_effect_41950", + ["text"] = "Has Apex Pact", + ["type"] = "sanctum", + }, + { + ["id"] = "sanctum.sanctum_effect_44006", + ["text"] = "Has Arcane Aegis", + ["type"] = "sanctum", + }, + { + ["id"] = "sanctum.sanctum_effect_6090", + ["text"] = "Has Assassin's Blade", + ["type"] = "sanctum", + }, + { + ["id"] = "sanctum.sanctum_effect_36376", + ["text"] = "Has Austerity Pact", + ["type"] = "sanctum", + }, + { + ["id"] = "sanctum.sanctum_effect_41498", + ["text"] = "Has Black Pearl", + ["type"] = "sanctum", + }, + { + ["id"] = "sanctum.sanctum_effect_34448", + ["text"] = "Has Black Smoke", + ["type"] = "sanctum", + }, + { + ["id"] = "sanctum.sanctum_effect_40008", + ["text"] = "Has Blunt Sword", + ["type"] = "sanctum", + }, + { + ["id"] = "sanctum.sanctum_effect_42759", + ["text"] = "Has Bronze Coin", + ["type"] = "sanctum", + }, + { + ["id"] = "sanctum.sanctum_effect_17929", + ["text"] = "Has Bronze Descry", + ["type"] = "sanctum", + }, + { + ["id"] = "sanctum.sanctum_effect_25062", + ["text"] = "Has Chains of Binding", + ["type"] = "sanctum", + }, + { + ["id"] = "sanctum.sanctum_effect_22125", + ["text"] = "Has Charred Coin", + ["type"] = "sanctum", + }, + { + ["id"] = "sanctum.sanctum_effect_60796", + ["text"] = "Has Chipped Dice", + ["type"] = "sanctum", + }, + { + ["id"] = "sanctum.sanctum_effect_6958", + ["text"] = "Has Chiselled Stone", + ["type"] = "sanctum", + }, + { + ["id"] = "sanctum.sanctum_effect_18271", + ["text"] = "Has Concealed Anomaly", + ["type"] = "sanctum", + }, + { + ["id"] = "sanctum.sanctum_effect_55502", + ["text"] = "Has Corrosive Concoction", + ["type"] = "sanctum", + }, + { + ["id"] = "sanctum.sanctum_effect_21215", + ["text"] = "Has Corrupted Lockpick", + ["type"] = "sanctum", + }, + { + ["id"] = "sanctum.sanctum_effect_52811", + ["text"] = "Has Crystal Chalice", + ["type"] = "sanctum", + }, + { + ["id"] = "sanctum.sanctum_effect_30042", + ["text"] = "Has Crystal Shard", + ["type"] = "sanctum", + }, + { + ["id"] = "sanctum.sanctum_effect_44526", + ["text"] = "Has Cutpurse", + ["type"] = "sanctum", + }, + { + ["id"] = "sanctum.sanctum_effect_62584", + ["text"] = "Has Dark Pit", + ["type"] = "sanctum", + }, + { + ["id"] = "sanctum.sanctum_effect_41768", + ["text"] = "Has Dauntless Pact", + ["type"] = "sanctum", + }, + { + ["id"] = "sanctum.sanctum_effect_41921", + ["text"] = "Has Deadly Snare", + ["type"] = "sanctum", + }, + { + ["id"] = "sanctum.sanctum_effect_59642", + ["text"] = "Has Death Toll", + ["type"] = "sanctum", + }, + { + ["id"] = "sanctum.sanctum_effect_14131", + ["text"] = "Has Deceptive Mirror", + ["type"] = "sanctum", + }, + { + ["id"] = "sanctum.sanctum_effect_16345", + ["text"] = "Has Demonic Skull", + ["type"] = "sanctum", + }, + { + ["id"] = "sanctum.sanctum_effect_6743", + ["text"] = "Has Divinia's Gift ", + ["type"] = "sanctum", + }, + { + ["id"] = "sanctum.sanctum_effect_33903", + ["text"] = "Has Door Tax", + ["type"] = "sanctum", + }, + { + ["id"] = "sanctum.sanctum_effect_42282", + ["text"] = "Has Doubling Pact", + ["type"] = "sanctum", + }, + { + ["id"] = "sanctum.sanctum_effect_7865", + ["text"] = "Has Empty Trove", + ["type"] = "sanctum", + }, + { + ["id"] = "sanctum.sanctum_effect_38167", + ["text"] = "Has Enchanted Urn", + ["type"] = "sanctum", + }, + { + ["id"] = "sanctum.sanctum_effect_64207", + ["text"] = "Has Engraved Orb", + ["type"] = "sanctum", + }, + { + ["id"] = "sanctum.sanctum_effect_28313", + ["text"] = "Has Fiendish Wings", + ["type"] = "sanctum", + }, + { + ["id"] = "sanctum.sanctum_effect_38121", + ["text"] = "Has Floor Tax", + ["type"] = "sanctum", + }, + { + ["id"] = "sanctum.sanctum_effect_40142", + ["text"] = "Has Fountain of Youth", + ["type"] = "sanctum", + }, + { + ["id"] = "sanctum.sanctum_effect_15442", + ["text"] = "Has Fright Mask", + ["type"] = "sanctum", + }, + { + ["id"] = "sanctum.sanctum_effect_24579", + ["text"] = "Has Gargoyle Totem", + ["type"] = "sanctum", + }, + { + ["id"] = "sanctum.sanctum_effect_32300", + ["text"] = "Has Ghastly Scythe", + ["type"] = "sanctum", + }, + { + ["id"] = "sanctum.sanctum_effect_40522", + ["text"] = "Has Gilded Lyre", + ["type"] = "sanctum", + }, + { + ["id"] = "sanctum.sanctum_effect_45600", + ["text"] = "Has Glass Shard", + ["type"] = "sanctum", + }, + { + ["id"] = "sanctum.sanctum_effect_3157", + ["text"] = "Has Glowing Orb", + ["type"] = "sanctum", + }, + { + ["id"] = "sanctum.sanctum_effect_12732", + ["text"] = "Has Gold Coin", + ["type"] = "sanctum", + }, + { + ["id"] = "sanctum.sanctum_effect_278", + ["text"] = "Has Gold Magnet", + ["type"] = "sanctum", + }, + { + ["id"] = "sanctum.sanctum_effect_50425", + ["text"] = "Has Gold Mine", + ["type"] = "sanctum", + }, + { + ["id"] = "sanctum.sanctum_effect_704", + ["text"] = "Has Gold Trophy", + ["type"] = "sanctum", + }, + { + ["id"] = "sanctum.sanctum_effect_17551", + ["text"] = "Has Golden Descry", + ["type"] = "sanctum", + }, + { + ["id"] = "sanctum.sanctum_effect_1198", + ["text"] = "Has Golden Smoke", + ["type"] = "sanctum", + }, + { + ["id"] = "sanctum.sanctum_effect_34171", + ["text"] = "Has Haemorrhage", + ["type"] = "sanctum", + }, + { + ["id"] = "sanctum.sanctum_effect_13820", + ["text"] = "Has Hare Foot", + ["type"] = "sanctum", + }, + { + ["id"] = "sanctum.sanctum_effect_39513", + ["text"] = "Has Holy Descry", + ["type"] = "sanctum", + }, + { + ["id"] = "sanctum.sanctum_effect_28826", + ["text"] = "Has Holy Water", + ["type"] = "sanctum", + }, + { + ["id"] = "sanctum.sanctum_effect_62326", + ["text"] = "Has Honed Claws", + ["type"] = "sanctum", + }, + { + ["id"] = "sanctum.sanctum_effect_359", + ["text"] = "Has Hungry Fangs", + ["type"] = "sanctum", + }, + { + ["id"] = "sanctum.sanctum_effect_44836", + ["text"] = "Has Imperial Seal", + ["type"] = "sanctum", + }, + { + ["id"] = "sanctum.sanctum_effect_44096", + ["text"] = "Has Indomitable Pact", + ["type"] = "sanctum", + }, + { + ["id"] = "sanctum.sanctum_effect_35578", + ["text"] = "Has Iron Manacles", + ["type"] = "sanctum", + }, + { + ["id"] = "sanctum.sanctum_effect_35508", + ["text"] = "Has Lilting Melody", + ["type"] = "sanctum", + }, + { + ["id"] = "sanctum.sanctum_effect_45177", + ["text"] = "Has Liquid Cowardice", + ["type"] = "sanctum", + }, + { + ["id"] = "sanctum.sanctum_effect_379", + ["text"] = "Has Lustrous Lacquer", + ["type"] = "sanctum", + }, + { + ["id"] = "sanctum.sanctum_effect_51140", + ["text"] = "Has Lustrous Pearl", + ["type"] = "sanctum", + }, + { + ["id"] = "sanctum.sanctum_effect_37967", + ["text"] = "Has Mark of Terror", + ["type"] = "sanctum", + }, + { + ["id"] = "sanctum.sanctum_effect_57101", + ["text"] = "Has Mellifluous Chorus", + ["type"] = "sanctum", + }, + { + ["id"] = "sanctum.sanctum_effect_45428", + ["text"] = "Has Mirror of Fortune", + ["type"] = "sanctum", + }, + { + ["id"] = "sanctum.sanctum_effect_64286", + ["text"] = "Has Musty Wine", + ["type"] = "sanctum", + }, + { + ["id"] = "sanctum.sanctum_effect_43834", + ["text"] = "Has Orb of Negation", + ["type"] = "sanctum", + }, + { + ["id"] = "sanctum.sanctum_effect_29924", + ["text"] = "Has Ornate Dagger", + ["type"] = "sanctum", + }, + { + ["id"] = "sanctum.sanctum_effect_9205", + ["text"] = "Has Phantom Illusion", + ["type"] = "sanctum", + }, + { + ["id"] = "sanctum.sanctum_effect_26160", + ["text"] = "Has Poisoned Water", + ["type"] = "sanctum", + }, + { + ["id"] = "sanctum.sanctum_effect_26808", + ["text"] = "Has Prayer Beads", + ["type"] = "sanctum", + }, + { + ["id"] = "sanctum.sanctum_effect_5686", + ["text"] = "Has Priest's Descry", + ["type"] = "sanctum", + }, + { + ["id"] = "sanctum.sanctum_effect_28906", + ["text"] = "Has Purple Smoke", + ["type"] = "sanctum", + }, + { + ["id"] = "sanctum.sanctum_effect_47662", + ["text"] = "Has Pyrrhic Pact", + ["type"] = "sanctum", + }, + { + ["id"] = "sanctum.sanctum_effect_56047", + ["text"] = "Has Rapid Quicksand", + ["type"] = "sanctum", + }, + { + ["id"] = "sanctum.sanctum_effect_17084", + ["text"] = "Has Red Smoke", + ["type"] = "sanctum", + }, + { + ["id"] = "sanctum.sanctum_effect_37341", + ["text"] = "Has Rusted Chimes", + ["type"] = "sanctum", + }, + { + ["id"] = "sanctum.sanctum_effect_45792", + ["text"] = "Has Rusted Coin", + ["type"] = "sanctum", + }, + { + ["id"] = "sanctum.sanctum_effect_45794", + ["text"] = "Has Rusted Descry", + ["type"] = "sanctum", + }, + { + ["id"] = "sanctum.sanctum_effect_30450", + ["text"] = "Has Rusted Mallet", + ["type"] = "sanctum", + }, + { + ["id"] = "sanctum.sanctum_effect_27130", + ["text"] = "Has Sacred Mirror", + ["type"] = "sanctum", + }, + { + ["id"] = "sanctum.sanctum_effect_41741", + ["text"] = "Has Sanguine Vial", + ["type"] = "sanctum", + }, + { + ["id"] = "sanctum.sanctum_effect_44243", + ["text"] = "Has Scrying Crystal", + ["type"] = "sanctum", + }, + { + ["id"] = "sanctum.sanctum_effect_48487", + ["text"] = "Has Sharpened Arrowhead", + ["type"] = "sanctum", + }, + { + ["id"] = "sanctum.sanctum_effect_16335", + ["text"] = "Has Shattered Shield", + ["type"] = "sanctum", + }, + { + ["id"] = "sanctum.sanctum_effect_51458", + ["text"] = "Has Silver Chalice", + ["type"] = "sanctum", + }, + { + ["id"] = "sanctum.sanctum_effect_16400", + ["text"] = "Has Silver Coin", + ["type"] = "sanctum", + }, + { + ["id"] = "sanctum.sanctum_effect_8698", + ["text"] = "Has Silver Descry", + ["type"] = "sanctum", + }, + { + ["id"] = "sanctum.sanctum_effect_24536", + ["text"] = "Has Silver Tongue", + ["type"] = "sanctum", + }, + { + ["id"] = "sanctum.sanctum_effect_53929", + ["text"] = "Has Spiked Exit", + ["type"] = "sanctum", + }, + { + ["id"] = "sanctum.sanctum_effect_13875", + ["text"] = "Has Spiked Shell", + ["type"] = "sanctum", + }, + { + ["id"] = "sanctum.sanctum_effect_4558", + ["text"] = "Has Spilt Purse", + ["type"] = "sanctum", + }, + { + ["id"] = "sanctum.sanctum_effect_37919", + ["text"] = "Has Tarnished Coin", + ["type"] = "sanctum", + }, + { + ["id"] = "sanctum.sanctum_effect_27017", + ["text"] = "Has Tarnished Descry", + ["type"] = "sanctum", + }, + { + ["id"] = "sanctum.sanctum_effect_48875", + ["text"] = "Has Tattered Blindfold", + ["type"] = "sanctum", + }, + { + ["id"] = "sanctum.sanctum_effect_61518", + ["text"] = "Has Tight Choker", + ["type"] = "sanctum", + }, + { + ["id"] = "sanctum.sanctum_effect_50613", + ["text"] = "Has Unassuming Brick", + ["type"] = "sanctum", + }, + { + ["id"] = "sanctum.sanctum_effect_12494", + ["text"] = "Has Unhallowed Amulet", + ["type"] = "sanctum", + }, + { + ["id"] = "sanctum.sanctum_effect_11449", + ["text"] = "Has Unhallowed Ring", + ["type"] = "sanctum", + }, + { + ["id"] = "sanctum.sanctum_effect_61947", + ["text"] = "Has Unholy Urn", + ["type"] = "sanctum", + }, + { + ["id"] = "sanctum.sanctum_effect_38381", + ["text"] = "Has Unquenched Thirst", + ["type"] = "sanctum", + }, + { + ["id"] = "sanctum.sanctum_effect_16490", + ["text"] = "Has Untuned Lute", + ["type"] = "sanctum", + }, + { + ["id"] = "sanctum.sanctum_effect_43384", + ["text"] = "Has Veiled Sight", + ["type"] = "sanctum", + }, + { + ["id"] = "sanctum.sanctum_effect_57507", + ["text"] = "Has Viscous Ichor", + ["type"] = "sanctum", + }, + { + ["id"] = "sanctum.sanctum_effect_18740", + ["text"] = "Has Voodoo Doll", + ["type"] = "sanctum", + }, + { + ["id"] = "sanctum.sanctum_effect_24131", + ["text"] = "Has Weakened Flesh", + ["type"] = "sanctum", + }, + { + ["id"] = "sanctum.sanctum_effect_46977", + ["text"] = "Has Wooden Effigy", + ["type"] = "sanctum", + }, + { + ["id"] = "sanctum.sanctum_effect_30473", + ["text"] = "Has Worn Sandals", + ["type"] = "sanctum", + }, + { + ["id"] = "sanctum.stat_1471840332", + ["text"] = "Maximum Resolve is 1", + ["type"] = "sanctum", + }, + { + ["id"] = "sanctum.stat_231205265", + ["text"] = "Monsters have #% chance to drop Double Aureus Coins", + ["type"] = "sanctum", + }, + { + ["id"] = "sanctum.stat_3554249693", + ["text"] = "Monsters impact #% increased Resolve", + ["type"] = "sanctum", + }, + { + ["id"] = "sanctum.stat_2549512259", + ["text"] = "Monsters take #% increased Damage", + ["type"] = "sanctum", + }, + { + ["id"] = "sanctum.stat_1278905604", + ["text"] = "No Resolve Mitigation, chance to Avoid Resolve loss or Resolve Aegis", + ["type"] = "sanctum", + }, + { + ["id"] = "sanctum.sanctum_floor_reward_ancient_orb", + ["text"] = "Receive #x Ancient Orbs at the end of the Floor", + ["type"] = "sanctum", + }, + { + ["id"] = "sanctum.sanctum_final_reward_ancient_orb", + ["text"] = "Receive #x Ancient Orbs on completing the Sanctum", + ["type"] = "sanctum", + }, + { + ["id"] = "sanctum.sanctum_floor_reward_scrap", + ["text"] = "Receive #x Armourer's Scraps at the end of the Floor", + ["type"] = "sanctum", + }, + { + ["id"] = "sanctum.sanctum_final_reward_scrap", + ["text"] = "Receive #x Armourer's Scraps on completing the Sanctum", + ["type"] = "sanctum", + }, + { + ["id"] = "sanctum.sanctum_floor_reward_awakened_sextant", + ["text"] = "Receive #x Awakened Sextants at the end of the Floor", + ["type"] = "sanctum", + }, + { + ["id"] = "sanctum.sanctum_final_reward_awakened_sextant", + ["text"] = "Receive #x Awakened Sextants on completing the Sanctum", + ["type"] = "sanctum", + }, + { + ["id"] = "sanctum.sanctum_floor_reward_whetstone", + ["text"] = "Receive #x Blacksmith's Whetstones at the end of the Floor", + ["type"] = "sanctum", + }, + { + ["id"] = "sanctum.sanctum_final_reward_whetstone", + ["text"] = "Receive #x Blacksmith's Whetstones on completing the Sanctum", + ["type"] = "sanctum", + }, + { + ["id"] = "sanctum.sanctum_floor_reward_blessed", + ["text"] = "Receive #x Blessed Orbs at the end of the Floor", + ["type"] = "sanctum", + }, + { + ["id"] = "sanctum.sanctum_final_reward_blessed", + ["text"] = "Receive #x Blessed Orbs on completing the Sanctum", + ["type"] = "sanctum", + }, + { + ["id"] = "sanctum.sanctum_floor_reward_chisel", + ["text"] = "Receive #x Cartographer's Chisels at the end of the Floor", + ["type"] = "sanctum", + }, + { + ["id"] = "sanctum.sanctum_final_reward_chisel", + ["text"] = "Receive #x Cartographer's Chisels on completing the Sanctum", + ["type"] = "sanctum", + }, + { + ["id"] = "sanctum.sanctum_floor_reward_chaos", + ["text"] = "Receive #x Chaos Orbs at the end of the Floor", + ["type"] = "sanctum", + }, + { + ["id"] = "sanctum.sanctum_final_reward_chaos", + ["text"] = "Receive #x Chaos Orbs on completing the Sanctum", + ["type"] = "sanctum", + }, + { + ["id"] = "sanctum.sanctum_floor_reward_chrome", + ["text"] = "Receive #x Chromatic Orbs at the end of the Floor", + ["type"] = "sanctum", + }, + { + ["id"] = "sanctum.sanctum_final_reward_chrome", + ["text"] = "Receive #x Chromatic Orbs on completing the Sanctum", + ["type"] = "sanctum", + }, + { + ["id"] = "sanctum.sanctum_floor_reward_divine", + ["text"] = "Receive #x Divine Orbs at the end of the Floor", + ["type"] = "sanctum", + }, + { + ["id"] = "sanctum.sanctum_final_reward_divine", + ["text"] = "Receive #x Divine Orbs on completing the Sanctum", + ["type"] = "sanctum", + }, + { + ["id"] = "sanctum.sanctum_floor_reward_divine_vessel", + ["text"] = "Receive #x Divine Vessels at the end of the Floor", + ["type"] = "sanctum", + }, + { + ["id"] = "sanctum.sanctum_final_reward_divine_vessel", + ["text"] = "Receive #x Divine Vessels on completing the Sanctum", + ["type"] = "sanctum", + }, + { + ["id"] = "sanctum.sanctum_floor_reward_enkindling_orb", + ["text"] = "Receive #x Enkindling Orbs at the end of the Floor", + ["type"] = "sanctum", + }, + { + ["id"] = "sanctum.sanctum_final_reward_enkindling_orb", + ["text"] = "Receive #x Enkindling Orbs on completing the Sanctum", + ["type"] = "sanctum", + }, + { + ["id"] = "sanctum.sanctum_floor_reward_exalted", + ["text"] = "Receive #x Exalted Orbs at the end of the Floor", + ["type"] = "sanctum", + }, + { + ["id"] = "sanctum.sanctum_final_reward_exalted", + ["text"] = "Receive #x Exalted Orbs on completing the Sanctum", + ["type"] = "sanctum", + }, + { + ["id"] = "sanctum.sanctum_floor_reward_fracturing_orb", + ["text"] = "Receive #x Fracturing Orbs at the end of the Floor", + ["type"] = "sanctum", + }, + { + ["id"] = "sanctum.sanctum_final_reward_fracturing_orb", + ["text"] = "Receive #x Fracturing Orbs on completing the Sanctum", + ["type"] = "sanctum", + }, + { + ["id"] = "sanctum.sanctum_floor_reward_gcp", + ["text"] = "Receive #x Gemcutter's Prisms at the end of the Floor", + ["type"] = "sanctum", + }, + { + ["id"] = "sanctum.sanctum_final_reward_gcp", + ["text"] = "Receive #x Gemcutter's Prisms on completing the Sanctum", + ["type"] = "sanctum", + }, + { + ["id"] = "sanctum.sanctum_floor_reward_bauble", + ["text"] = "Receive #x Glassblower's Baubles at the end of the Floor", + ["type"] = "sanctum", + }, + { + ["id"] = "sanctum.sanctum_final_reward_bauble", + ["text"] = "Receive #x Glassblower's Baubles on completing the Sanctum", + ["type"] = "sanctum", + }, + { + ["id"] = "sanctum.sanctum_floor_reward_instilling_orb", + ["text"] = "Receive #x Instilling Orbs at the end of the Floor", + ["type"] = "sanctum", + }, + { + ["id"] = "sanctum.sanctum_final_reward_instilling_orb", + ["text"] = "Receive #x Instilling Orbs on completing the Sanctum", + ["type"] = "sanctum", + }, + { + ["id"] = "sanctum.sanctum_floor_reward_jewellers", + ["text"] = "Receive #x Jeweller's Orbs at the end of the Floor", + ["type"] = "sanctum", + }, + { + ["id"] = "sanctum.sanctum_final_reward_jewellers", + ["text"] = "Receive #x Jeweller's Orbs on completing the Sanctum", + ["type"] = "sanctum", + }, + { + ["id"] = "sanctum.sanctum_floor_reward_mirror", + ["text"] = "Receive #x Mirrors of Kalandra at the end of the Floor", + ["type"] = "sanctum", + }, + { + ["id"] = "sanctum.sanctum_final_reward_mirror", + ["text"] = "Receive #x Mirrors of Kalandra on completing the Sanctum", + ["type"] = "sanctum", + }, + { + ["id"] = "sanctum.sanctum_floor_reward_alch", + ["text"] = "Receive #x Orbs of Alchemy at the end of the Floor", + ["type"] = "sanctum", + }, + { + ["id"] = "sanctum.sanctum_final_reward_alch", + ["text"] = "Receive #x Orbs of Alchemy on completing the Sanctum", + ["type"] = "sanctum", + }, + { + ["id"] = "sanctum.sanctum_floor_reward_alt", + ["text"] = "Receive #x Orbs of Alteration at the end of the Floor", + ["type"] = "sanctum", + }, + { + ["id"] = "sanctum.sanctum_final_reward_alt", + ["text"] = "Receive #x Orbs of Alteration on completing the Sanctum", + ["type"] = "sanctum", + }, + { + ["id"] = "sanctum.sanctum_floor_reward_annul", + ["text"] = "Receive #x Orbs of Annulment at the end of the Floor", + ["type"] = "sanctum", + }, + { + ["id"] = "sanctum.sanctum_final_reward_annul", + ["text"] = "Receive #x Orbs of Annulment on completing the Sanctum", + ["type"] = "sanctum", + }, + { + ["id"] = "sanctum.sanctum_floor_reward_aug", + ["text"] = "Receive #x Orbs of Augmentation at the end of the Floor", + ["type"] = "sanctum", + }, + { + ["id"] = "sanctum.sanctum_final_reward_aug", + ["text"] = "Receive #x Orbs of Augmentation on completing the Sanctum", + ["type"] = "sanctum", + }, + { + ["id"] = "sanctum.sanctum_floor_reward_orb_of_binding", + ["text"] = "Receive #x Orbs of Binding at the end of the Floor", + ["type"] = "sanctum", + }, + { + ["id"] = "sanctum.sanctum_final_reward_orb_of_binding", + ["text"] = "Receive #x Orbs of Binding on completing the Sanctum", + ["type"] = "sanctum", + }, + { + ["id"] = "sanctum.sanctum_floor_reward_chance", + ["text"] = "Receive #x Orbs of Chance at the end of the Floor", + ["type"] = "sanctum", + }, + { + ["id"] = "sanctum.sanctum_final_reward_chance", + ["text"] = "Receive #x Orbs of Chance on completing the Sanctum", + ["type"] = "sanctum", + }, + { + ["id"] = "sanctum.sanctum_floor_reward_fusing", + ["text"] = "Receive #x Orbs of Fusing at the end of the Floor", + ["type"] = "sanctum", + }, + { + ["id"] = "sanctum.sanctum_final_reward_fusing", + ["text"] = "Receive #x Orbs of Fusing on completing the Sanctum", + ["type"] = "sanctum", + }, + { + ["id"] = "sanctum.sanctum_floor_reward_orb_of_horizons", + ["text"] = "Receive #x Orbs of Horizon at the end of the Floor", + ["type"] = "sanctum", + }, + { + ["id"] = "sanctum.sanctum_final_reward_orb_of_horizons", + ["text"] = "Receive #x Orbs of Horizon on completing the Sanctum", + ["type"] = "sanctum", + }, + { + ["id"] = "sanctum.sanctum_floor_reward_regret", + ["text"] = "Receive #x Orbs of Regret at the end of the Floor", + ["type"] = "sanctum", + }, + { + ["id"] = "sanctum.sanctum_final_reward_regret", + ["text"] = "Receive #x Orbs of Regret on completing the Sanctum", + ["type"] = "sanctum", + }, + { + ["id"] = "sanctum.sanctum_floor_reward_scour", + ["text"] = "Receive #x Orbs of Scouring at the end of the Floor", + ["type"] = "sanctum", + }, + { + ["id"] = "sanctum.sanctum_final_reward_scour", + ["text"] = "Receive #x Orbs of Scouring on completing the Sanctum", + ["type"] = "sanctum", + }, + { + ["id"] = "sanctum.sanctum_floor_reward_transmute", + ["text"] = "Receive #x Orbs of Transmutation at the end of the Floor", + ["type"] = "sanctum", + }, + { + ["id"] = "sanctum.sanctum_final_reward_transmute", + ["text"] = "Receive #x Orbs of Transmutation on completing the Sanctum", + ["type"] = "sanctum", + }, + { + ["id"] = "sanctum.sanctum_floor_reward_orb_of_unmaking", + ["text"] = "Receive #x Orbs of Unmaking at the end of the Floor", + ["type"] = "sanctum", + }, + { + ["id"] = "sanctum.sanctum_final_reward_orb_of_unmaking", + ["text"] = "Receive #x Orbs of Unmaking on completing the Sanctum", + ["type"] = "sanctum", + }, + { + ["id"] = "sanctum.sanctum_floor_reward_regal", + ["text"] = "Receive #x Regal Orbs at the end of the Floor", + ["type"] = "sanctum", + }, + { + ["id"] = "sanctum.sanctum_final_reward_regal", + ["text"] = "Receive #x Regal Orbs on completing the Sanctum", + ["type"] = "sanctum", + }, + { + ["id"] = "sanctum.sanctum_floor_reward_sacred_orb", + ["text"] = "Receive #x Sacred Orbs at the end of the Floor", + ["type"] = "sanctum", + }, + { + ["id"] = "sanctum.sanctum_final_reward_sacred_orb", + ["text"] = "Receive #x Sacred Orbs on completing the Sanctum", + ["type"] = "sanctum", + }, + { + ["id"] = "sanctum.sanctum_floor_reward_stacked_deck", + ["text"] = "Receive #x Stacked Decks at the end of the Floor", + ["type"] = "sanctum", + }, + { + ["id"] = "sanctum.sanctum_final_reward_stacked_deck", + ["text"] = "Receive #x Stacked Decks on completing the Sanctum", + ["type"] = "sanctum", + }, + { + ["id"] = "sanctum.sanctum_floor_reward_vaal", + ["text"] = "Receive #x Vaal Orbs at the end of the Floor", + ["type"] = "sanctum", + }, + { + ["id"] = "sanctum.sanctum_final_reward_vaal", + ["text"] = "Receive #x Vaal Orbs on completing the Sanctum", + ["type"] = "sanctum", + }, + { + ["id"] = "sanctum.sanctum_floor_reward_veiled_exalted_orb", + ["text"] = "Receive #x Veiled Orbs at the end of the Floor", + ["type"] = "sanctum", + }, + { + ["id"] = "sanctum.sanctum_final_reward_veiled_exalted_orb", + ["text"] = "Receive #x Veiled Orbs on completing the Sanctum", + ["type"] = "sanctum", + }, + { + ["id"] = "sanctum.sanctum_floor_reward_veiled_scarab", + ["text"] = "Receive #x Veiled Scarabs at the end of the Floor", + ["type"] = "sanctum", + }, + { + ["id"] = "sanctum.sanctum_final_reward_veiled_scarab", + ["text"] = "Receive #x Veiled Scarabs on completing the Sanctum", + ["type"] = "sanctum", + }, + { + ["id"] = "sanctum.stat_3002663227", + ["text"] = "Recover # Resolve when you complete a Room", + ["type"] = "sanctum", + }, + { + ["id"] = "sanctum.stat_3889616543", + ["text"] = "Resolve Aegis Recovers #% faster while not losing Resolve", + ["type"] = "sanctum", + }, + { + ["id"] = "sanctum.stat_3621177126", + ["text"] = "Resolve Mitigation from Enemy Hits is based on +#% of Armour", + ["type"] = "sanctum", + }, + { + ["id"] = "sanctum.stat_3237367570", + ["text"] = "Rooms are unknown on the Sanctum Map", + ["type"] = "sanctum", + }, + { + ["id"] = "sanctum.stat_2149490821", + ["text"] = "The Herald of the Scourge deals #% more Damage", + ["type"] = "sanctum", + }, + { + ["id"] = "sanctum.stat_1059486105", + ["text"] = "The Herald of the Scourge drops Eternal Damnation", + ["type"] = "sanctum", + }, + { + ["id"] = "sanctum.stat_2995848279", + ["text"] = "The Herald of the Scourge drops Sandstorm Visage", + ["type"] = "sanctum", + }, + { + ["id"] = "sanctum.stat_3878191575", + ["text"] = "The Herald of the Scourge drops an additional Forbidden Tome", + ["type"] = "sanctum", + }, + { + ["id"] = "sanctum.stat_1175354969", + ["text"] = "The Herald of the Scourge drops an additional Invocation", + ["type"] = "sanctum", + }, + { + ["id"] = "sanctum.stat_85125881", + ["text"] = "The Herald of the Scourge drops the Balance of Terror", + ["type"] = "sanctum", + }, + { + ["id"] = "sanctum.stat_1133899331", + ["text"] = "The Herald of the Scourge drops the Original Sin", + ["type"] = "sanctum", + }, + { + ["id"] = "sanctum.stat_4204412707", + ["text"] = "The Herald of the Scourge drops the Winds of Fate", + ["type"] = "sanctum", + }, + { + ["id"] = "sanctum.stat_2226900052", + ["text"] = "The Herald of the Scourge takes #% more Damage", + ["type"] = "sanctum", + }, + { + ["id"] = "sanctum.stat_290775436", + ["text"] = "The Merchant has an additional Choice", + ["type"] = "sanctum", + }, + { + ["id"] = "sanctum.stat_3182333322", + ["text"] = "This item is destroyed when applied to a Sanctum", + ["type"] = "sanctum", + }, + }, + ["id"] = "sanctum", + ["label"] = "Sanctum", + }, +} +-- spell-checker: enable \ No newline at end of file diff --git a/src/Export/Scripts/cluster.lua b/src/Export/Scripts/cluster.lua index d761795e981..e0b00db8f24 100644 --- a/src/Export/Scripts/cluster.lua +++ b/src/Export/Scripts/cluster.lua @@ -30,6 +30,17 @@ for jewel in dat("PassiveTreeExpansionJewels"):Rows() do if skill.Mastery then out:write('\t\t\t\t\tmasteryIcon = "', skill.Mastery.Icon:gsub("dds$","png"), '",\n') end + -- -- find and write id + -- local idx = 1 + -- while dat("PassiveTreeExpansionSkills"):GetRowByIndex(idx) do + -- local v = dat("PassiveTreeExpansionSkills"):GetRowByIndex(idx) + -- if v.Node.Id == skill.Node.Id then + -- out:write("\t\t\t\t\tid = ", idx, ",\n") + -- break + -- end + -- idx = idx + 1 + -- end + out:write('\t\t\t\t\ttag = "', skill.Tag.Id, '",\n') local stats = { } for index, stat in ipairs(skill.Node.Stats) do diff --git a/src/Export/Scripts/crucible.lua b/src/Export/Scripts/crucible.lua index 7665c96aba4..6ae26d9074d 100644 --- a/src/Export/Scripts/crucible.lua +++ b/src/Export/Scripts/crucible.lua @@ -44,6 +44,11 @@ for crucible in dat("WeaponPassiveSkills"):Rows() do end end out:write('modTags = { ', stats.modTags, ' }, ') + + -- -- trade hashes for crucible passives simply use the mod hash, + -- -- unlike other things which use stat hashes + -- out:write("tradeHash = ", crucible.Mod.Hash, ", ") + out:write('},\n') else print("Mod '"..crucible.Mod.Id.."' has no stats") diff --git a/src/Export/Scripts/mods.lua b/src/Export/Scripts/mods.lua index 381b3186bf8..c890a799185 100644 --- a/src/Export/Scripts/mods.lua +++ b/src/Export/Scripts/mods.lua @@ -64,6 +64,11 @@ local function writeMods(outName, condFunc) goto continue end end + -- game data has 0 and 0, which means no description is generated + if mod.Id == "JewelExpansionPassiveNodes" then + mod.Stat2Value[1] = 2 + mod.Stat2Value[2] = 12 + end local stats, orders = describeMod(mod) if #orders > 0 then out:write('\t["', mod.Id, '"] = { ') @@ -147,15 +152,9 @@ local function writeMods(outName, condFunc) end out:write('modTags = { ', stats.modTags, ' }, ') - -- Note that some of the resulting hashes might not be correct. - -- Some of the trade hashes are also associated with another - -- value. For example, some mods have a variant value appended - -- to it like: explicit.stat_3642528642|7. Timeless jewels have - -- special trade ids, such as + -- Timeless jewels have special trade ids, such as -- "explicit.pseudo_timeless_jewel_doryani". See the below API - -- for more info. - - -- This API contains all of the current trade site IDs: + -- for more info: -- https://www.pathofexile.com/api/trade/data/stats local modIdx = 1 local tradeHashes = {} @@ -216,16 +215,6 @@ writeMods("../Data/ModExplicit.lua", function(mod) and not (mod.GenerationType == GenTypes.SearingExarch or mod.GenerationType == GenTypes.EaterOfWorlds) and #mod.AuraFlags == 0 end) --- generic implicit mods -writeMods("../Data/ModImplicit.lua", function(mod) - return (mod.GenerationType == GenTypes.Intrinsic and mod.Domain == Domains.Item - ) - and not mod.Id:match("Royale") - and not mod.Id:match("Necropolis") - and not mod.Id:match("^Synthesis") - and not (mod.GenerationType == GenTypes.SearingExarch or mod.GenerationType == GenTypes.EaterOfWorlds) - and #mod.AuraFlags == 0 -end) writeMods("../Data/ModCorrupted.lua", function(mod) return mod.GenerationType == GenTypes.Corrupted and mod.Domain == Domains.Item end) @@ -302,7 +291,7 @@ writeMods("../Data/BeastCraft.lua", function(mod) return (mod.Id:match("Aspect") and mod.GenerationType == GenTypes.Suffix) -- Aspect Crafts end) writeMods("../Data/ModFoulborn.lua", function(mod) - return mod.Domain == Domains.Item and mod.GenerationType == GenTypes.Intrinsic and mod.Id:match("^MutatedUnique") + return (mod.Domain == Domains.Item or mod.Domain == Domains.Jewel) and mod.GenerationType == GenTypes.Intrinsic and mod.Id:match("^MutatedUnique") end) -- Generate unique mod mappings from text to mod diff --git a/src/Export/Uniques/ModTextMap.lua b/src/Export/Uniques/ModTextMap.lua index 6e13da61d27..2d6f578a918 100644 --- a/src/Export/Uniques/ModTextMap.lua +++ b/src/Export/Uniques/ModTextMap.lua @@ -5131,6 +5131,7 @@ return { ["adds # to maximum life per # intelligence allocated in radius"] = { "LifePerIntelligenceInRadusUniqueJewel52", }, ["adds #% of your maximum energy shield as cold damage to attacks with this weapon"] = { "VillageAttackColdDamageEnergyShield", }, ["adds #% of your maximum mana as fire damage to attacks with this weapon"] = { "VillageAttackFireDamageMaximumMana", }, + ["adds (#) passive skills"] = { "JewelExpansionPassiveNodes", }, ["adds (#) to # cold damage to spells"] = { "SpellAddedColdDamageUnique__2", }, ["adds (#) to # fire damage to spells"] = { "SpellAddedFireDamageUnique__2_", }, ["adds (#) to (#) chaos damage"] = { "AddedChaosDamageToAttacksAndSpellsUnique__1", "AddedChaosDamageToAttacksAndSpellsUnique__2", "AddedChaosDamageUniqueBow12", "GlobalAddedChaosDamageUnique__1", "GlobalAddedChaosDamageUnique__2", "GlobalAddedChaosDamageUnique__3", "GlobalAddedChaosDamageUnique__4__", "GlobalAddedChaosDamageUnique__5_", "GlobalAddedChaosDamageUnique__6_", "GlobalAddedChaosDamageUnique__7", "LocalAddedChaosDamageImplicitE1", "LocalAddedChaosDamageImplicitE2", "LocalAddedChaosDamageImplicitE3_", "LocalAddedChaosDamageUnique__2", "LocalAddedChaosDamageUnique__3", "LocalAddedChaosDamageUnique__4", "LocalChaosDamageUniqueOneHandSword3", "LocalChaosDamageUniqueTwoHandSword7", "VillageLocalChaosDamage1", "VillageLocalChaosDamage2", "VillageLocalChaosDamage3", "VillageLocalChaosDamageTwoHand1", "VillageLocalChaosDamageTwoHand2", "VillageLocalChaosDamageTwoHand3", }, @@ -5267,6 +5268,7 @@ return { ["adds (180-230) to (310-360) fire damage"] = { "LocalAddedFireDamageUnique__8", }, ["adds (19-22) to (30-35) cold damage to spells and attacks"] = { "AddedColdDamageUnique__3", }, ["adds (19-22) to (30-35) fire damage to spells and attacks"] = { "AddedFireDamageUnique__2", }, + ["adds (2-12) passive skills"] = { "JewelExpansionPassiveNodes", }, ["adds (2-3) to (22-26) physical damage to attacks"] = { "AddedPhysicalDamageUnique__11__", }, ["adds (2-3) to (4-7) cold damage to spells and attacks"] = { "AddedColdDamageSpellsAndAttacksImplicit1", }, ["adds (2-3) to (5-6) cold damage to spells"] = { "SpellAddedColdDamageUnique__3", }, diff --git a/src/Export/statdesc.lua b/src/Export/statdesc.lua index 60444d9eb0e..b228f57498a 100644 --- a/src/Export/statdesc.lua +++ b/src/Export/statdesc.lua @@ -443,3 +443,10 @@ function describeMod(mod) out.modTags = describeModTags(mod.ImplicitTags) return out, orders end + +function getStatDescriptors(fileName) + if not statDescriptors[fileName] then + loadStatFile(fileName) + end + return statDescriptors[fileName] +end \ No newline at end of file diff --git a/src/Modules/Common.lua b/src/Modules/Common.lua index ae49f477825..efec33b3583 100644 --- a/src/Modules/Common.lua +++ b/src/Modules/Common.lua @@ -829,38 +829,40 @@ function supportEnabled(skillName, activeSkill) return true end +-- will remove newlines from strings so that they are valid lua +---@param thing string | table | number +---@return string function stringify(thing) if type(thing) == 'string' then - return thing + local s = thing:gsub("\n", " ") + return s elseif type(thing) == 'number' then - return ""..thing; + return "" .. thing; elseif type(thing) == 'table' then local s = "{"; - local keys = { } - for key in pairs(thing) do table.insert(keys, key) end + local keys = {} + for key in pairs(thing) do t_insert(keys, key) end table.sort(keys) for _, k in ipairs(keys) do local v = thing[k] - s = s.."\n\t" - if type(k) == 'number' then - s = s.."["..k.."] = " - else - s = s.."[\""..k.."\"] = " + s = s .. "\n\t" + if type(k) ~= 'number' then + s = s .. "[\"" .. k .. "\"] = " end if type(v) == 'string' then - s = s.."\""..stringify(v).."\", " + s = s .. "\"" .. stringify(v) .. "\"," else if type(v) == "boolean" then v = v and "true" or "false" end - val = stringify(v)..", " + val = stringify(v) .. "," if type(v) == "table" then val = string.gsub(val, "\n", "\n\t") end - s = s..val; + s = s .. val; end end - return s.."\n}" + return s .. "\n}" end end @@ -984,3 +986,23 @@ function GetVirtualScreenSize() end return width, height end + +-- used for calculating the hash field of a stat +local GGG_STAT_HASH32_SEED = 0xC58F1A7B +-- used for calculating the trade hash from stat hash fields +local GGG_TRADE_SEED = 0x02312233 +---@param stats string[] +---@param extraStat string extra stat for time-lost jewels +---@return integer +function HashStats(stats, extraStat) + if extraStat then + stats = copyTable(stats) + table.insert(stats, extraStat) + end + local statHashes = "" + for _, statName in ipairs(stats) do + local newHash = intToBytes(murmurHash2(statName, GGG_STAT_HASH32_SEED)) + statHashes = statHashes .. newHash + end + return murmurHash2(statHashes, GGG_TRADE_SEED) +end diff --git a/src/Modules/Data.lua b/src/Modules/Data.lua index a880019c7f8..93253315443 100644 --- a/src/Modules/Data.lua +++ b/src/Modules/Data.lua @@ -574,7 +574,8 @@ data.describeStats = LoadModule("Modules/StatDescriber") -- Load item modifiers data.itemMods = { Explicit = LoadModule("Data/ModExplicit"), - Implicit = LoadModule("Data/ModImplicit"), + -- implicit mods and unique explicit mods + ItemExclusive = LoadModule("Data/ModItemExclusive"), Corrupted = LoadModule("Data/ModCorrupted"), Delve = LoadModule("Data/ModDelve"), Synthesis = LoadModule("Data/ModSynthesis"), @@ -587,6 +588,7 @@ data.itemMods = { JewelAbyss = LoadModule("Data/ModJewelAbyss"), JewelCluster = LoadModule("Data/ModJewelCluster"), JewelCharm = LoadModule("Data/ModJewelCharm"), + Foulborn = LoadModule("Data/ModFoulborn"), } data.masterMods = LoadModule("Data/ModMaster") data.enchantments = { @@ -601,7 +603,7 @@ data.enchantments = { -- combined table of many mod categories data.itemMods.Item = {} -for _, key in ipairs({ "Explicit", "Implicit", "Corrupted", "Delve", "Synthesis", "Scourge", "Eldritch" }) do +for _, key in ipairs({ "Explicit", "ItemExclusive", "Corrupted", "Delve", "Synthesis", "Scourge", "Eldritch" }) do local itemData = data.itemMods[key] for k, v in pairs(itemData) do data.itemMods.Item[k] = v @@ -1164,6 +1166,7 @@ for _, modId in ipairs(sortedMods) do mod = unsortedMods[modId], }) end +data.itemMods.WatchersEye = unsortedMods LoadModule("Data/Uniques/Special/Generated") LoadModule("Data/Uniques/Special/New") diff --git a/src/Modules/ItemSlotHelper.lua b/src/Modules/ItemSlotHelper.lua new file mode 100644 index 00000000000..49055361eb1 --- /dev/null +++ b/src/Modules/ItemSlotHelper.lua @@ -0,0 +1,40 @@ +local M = {} + +-- Draws a small display window of a jewel socket's position. Note that this will reset the +-- viewport and the draw layer. +---@param nodeId integer +---@param x integer +---@param y integer +---@param w integer +---@param h integer +function M.DrawViewer(itemsTab, nodeId, x, y, w, h) + local node = itemsTab.build.spec.nodes[nodeId] + if not node then return end + SetDrawLayer(nil, 15) + SetDrawColor(1, 1, 1) + + local borderWidth = 1 + DrawImage(nil, x, y, w + 2 * borderWidth, h + 2 * borderWidth) + + local viewer = itemsTab.socketViewer + + viewer.zoom = 17 + + local viewPortSize = math.min(w, h) + local scale = itemsTab.build.spec.tree.size / (viewPortSize * viewer.zoom) + viewer.zoomX = -node.x / scale + viewer.zoomY = -node.y / scale + -- offset viewport to be inside borders + SetViewport(x + borderWidth, y + borderWidth, w, h) + -- draw the actual image + viewer:Draw(itemsTab.build, { x = 0, y = 0, width = w, height = h }, {}) + SetDrawLayer(nil, 30) + SetDrawColor(1, 1, 1, 0.2) + -- draw crosshair + DrawImage(nil, math.floor(w / 2) - 1, 0, 2, h) + DrawImage(nil, 0, math.floor(h / 2) - 1, w, 2) + SetViewport() + SetDrawLayer(nil, 0) +end + +return M